@charset "UTF-8";
/*======================================================================================
*
*
*     App
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Application
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Helpers
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Helpers / Functions
*
*
======================================================================================*/
/* Pick color */
/* Breakpoint picker */
/* Strip unit */
/* Pixels  to rems */
/* Z index value */
/* Depth */
/*======================================================================================
*
*
*     Helpers / Mixins
*
*
======================================================================================*/
/* Font size with rems */
/* Box */
/* Mask */
/* Arrow */
/* Progress */
/*======================================================================================
*
*
*     Helpers / Animations
*
*
======================================================================================*/
@keyframes body-preloading {
  from {
    width: 0%;
  }
  to {
    width: 20%;
  }
}
@keyframes body-loading {
  from {
    width: 20%;
  }
  to {
    width: 50%;
  }
}
@keyframes body-loaded {
  from {
    width: 50%;
  }
  to {
    width: 100%;
  }
}
@keyframes button-on-progress {
  from {
    background-color: #9c27b0;
    color: #fff;
  }
  33% {
    background-color: #ff9800;
  }
  66% {
    background-color: #2196F3;
  }
  100% {
    background-color: #9c27b0;
    color: #fff;
  }
}
@keyframes progress-cir {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*======================================================================================
*
*
*     Global variables
*
*
======================================================================================*/
/* Colors */
/* Typography */
/* Grid */
/* Z-index */
/* Border */
/* Shadows */
/*======================================================================================
*
*
*     Helpers / Grid
*
*
======================================================================================*/
.row {
  width: 100%;
  display: flex;
  align-items: center;
}

/* Grid */
/* Media queries */
.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 1600px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }

  .col-xl-2 {
    width: 16.6666666667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.3333333333%;
  }

  .col-xl-5 {
    width: 41.6666666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.3333333333%;
  }

  .col-xl-8 {
    width: 66.6666666667%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.3333333333%;
  }

  .col-xl-11 {
    width: 91.6666666667%;
  }

  .col-xl-12 {
    width: 100%;
  }
}
@media (max-width: 1400px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .col-xs-1 {
    width: 8.3333333333%;
  }

  .col-xs-2 {
    width: 16.6666666667%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-4 {
    width: 33.3333333333%;
  }

  .col-xs-5 {
    width: 41.6666666667%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-7 {
    width: 58.3333333333%;
  }

  .col-xs-8 {
    width: 66.6666666667%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-10 {
    width: 83.3333333333%;
  }

  .col-xs-11 {
    width: 91.6666666667%;
  }

  .col-xs-12 {
    width: 100%;
  }
}
/*======================================================================================
*
*
*     Helpers / Classes
*
*
======================================================================================*/
/* Main colors */
.bg-white {
  background-color: #fff;
}

.tc-white {
  color: #fff;
}

.bg-blue {
  background-color: #2196F3;
}

.tc-blue {
  color: #2196F3;
}

.bg-green {
  background-color: #4CAF50;
}

.tc-green {
  color: #4CAF50;
}

.bg-red {
  background-color: #F44336;
}

.tc-red {
  color: #F44336;
}

.bg-dark {
  background-color: #424242;
}

.tc-dark {
  color: #424242;
}

.bg-light {
  background-color: #eeeeee;
}

.tc-light {
  color: #eeeeee;
}

/* Truncate */
.trun {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Linked */
.link {
  color: #2196F3;
}
.link:hover {
  text-decoration: underline;
}

/* Description */
.description {
  color: #949494;
  font-size: 0.75rem;
  font-size: 12px;
}

/* Progress */
.progress:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  animation: progress-cir 1s cubic-bezier(0.6, 0.4, 0.87, 0.7) infinite;
  border-top: 3px solid #2196F3;
  border-right: 3px solid #2196F3;
  border-bottom: 3px solid #2196F3;
  border-left: 3px solid transparent;
}
.progress:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
}

/* Animated */
.animated {
  backface-visibility: hidden;
  perspective: 1000;
}

/* Fixed */
.fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Blured */
.blur {
  filter: blur(2px);
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Disabled */
[disabled],
.disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

/* Floats */
.left {
  float: left;
}

.right {
  float: right;
}

/* Flex */
.flex {
  display: flex;
}

.f-align-center {
  align-items: center;
}

.f-justify-center {
  justify-content: center;
}

.f-left {
  margin-right: auto;
}

.f-right {
  margin-left: auto;
}

.f-top {
  margin-bottom: auto;
}

.f-bottom {
  margin-top: auto;
}

.f-center {
  margin-left: auto;
  margin-right: auto;
}

/* Text align */
.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

/* Paddings and margins */
.plr-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.ptb-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.plr-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.ptb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.plr-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.ptb-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.plr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.ptb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.plr-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.ptb-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.plr-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.plr-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.ptb-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.plr-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.plr-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.ptb-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.plr-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* Depths (shadows)  */
.depth-1 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.depth-2 {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.depth-3 {
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.depth-4 {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

.depth-5 {
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

/*======================================================================================
*
*
*     Base
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Base / Normalize
*
*
======================================================================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  outline: 0;
}

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

html,
body {
  height: 100%;
}

article,
aside,
footer,
header,
nav,
section,
caption,
figure,
main {
  display: block;
}

html,
input,
button,
select,
textarea {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #616161;
  vertical-align: baseline;
  font-size: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
a, span, b, p, i, img,
input, select, textarea, label, button {
  display: inline-block;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Inputs and buttons */
button,
input,
select,
textarea,
a {
  font-family: inherit;
  vertical-align: middle;
  border: none;
}

input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  background-color: transparent;
  resize: none;
  vertical-align: middle;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

button,
input[type=submit],
a {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Images and icons */
img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

/* Tables and lists */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol,
li {
  list-style: none;
}

/*======================================================================================
*
*
*     Layout / Preload
*
*
======================================================================================*/
body.loading:after, body.loading:before, body.preloading:after, body.preloading:before, body.loaded:after, body.loaded:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  height: 4px;
  transition: opacity 0.3s 0.3s;
}
body.loading:before, body.preloading:before, body.loaded:before {
  background-color: #fff;
  width: 100%;
}
body.loading:after, body.preloading:after, body.loaded:after {
  background-color: #2196F3;
}
body.loading:before, body.loading:after {
  transition: none;
}
body.loading:after {
  animation: body-loading 0.3s forwards;
}
body.preloading:after {
  width: 30%;
  animation: body-preloading 0.5s forwards;
}
body.loaded:after {
  width: 90%;
  animation: body-loaded 0.3s forwards;
}
body.loaded:after, body.loaded:before {
  opacity: 0;
}

/*======================================================================================
*
*
*     Components
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Components / Buttons
*
*
======================================================================================*/
.btn {
  cursor: pointer;
  line-height: 40px;
  padding: 0 15px;
  font-size: 0.75rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  border-radius: 3px;
  transition: background-color 0.25s, box-shadow 0.25s;
  /* On progress */
  /* Sizes */
  /* Bubble */
  /* Floating */
}
.btn > .icon {
  pointer-events: none;
  margin: 0 5px 2px 0;
  vertical-align: middle;
}
.btn.on-progress {
  cursor: default;
  pointer-events: none;
  animation: button-on-progress 3s infinite;
}
.btn.on-progress:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: middle;
  animation: progress-cir 1s cubic-bezier(0.6, 0.4, 0.87, 0.7) infinite;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-left: 3px solid transparent;
  margin: 0 0 1px 7px;
}
.btn-small {
  line-height: 30px;
  padding: 0 12px;
  font-size: 0.625rem;
  font-size: 10px;
}
.btn-tiny {
  line-height: 25px;
  padding: 0 8px;
  font-size: 0.625rem;
  font-size: 10px;
}
.btn-large {
  line-height: 50px;
  padding: 0 20px;
}
.btn-bubble {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}
.btn-bubble > .icon {
  margin: 0;
}
.btn-bubble.btn-small {
  width: 30px;
  height: 30px;
}
.btn-bubble.btn-tiny {
  width: 20px;
  height: 20px;
}
.btn-floating {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.btn-floating:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-floating:active {
  box-shadow: none;
}
.btn-default {
  background-color: #eeeeee;
  border: #e6e6e6 solid 1px;
}
.btn-default:hover {
  background-color: #d5d5d5;
}
.btn-default:active {
  background-color: #c8c8c8;
}
.btn-blue, .btn-green, .btn-red, .btn-orange, .btn-dark {
  color: #fff;
}
.btn-blue {
  background-color: #2196F3;
}
.btn-blue:hover {
  background-color: #51adf6;
}
.btn-blue:active {
  background-color: #0c7cd5;
}
.btn-green {
  background-color: #4CAF50;
}
.btn-green:hover {
  background-color: #6ec071;
}
.btn-green:active {
  background-color: #3d8b40;
}
.btn-red {
  background-color: #F44336;
}
.btn-red:hover {
  background-color: #f77066;
}
.btn-red:active {
  background-color: #ea1c0d;
}
.btn-orange {
  background-color: #ff9800;
}
.btn-orange:hover {
  background-color: #ffad33;
}
.btn-orange:active {
  background-color: #cc7a00;
}
.btn-dark {
  background-color: #424242;
}
.btn-dark:hover {
  background-color: #5c5c5c;
}
.btn-dark:active {
  background-color: #292929;
}

/*======================================================================================
*
*
*     Components / Inputs
*
*
======================================================================================*/
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  background-color: #fff;
  width: 100%;
  padding: 0 10px;
  font-size: 0.875rem;
  font-size: 14px;
  border: #e0e0e0 solid 1px;
  border-radius: 3px;
  transition: box-shadow 0.3s;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 2px 1px rgba(33, 150, 243, 0.8);
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
textarea::placeholder,
select::placeholder {
  font-weight: 400;
  color: #aeaeae;
}
input[type=text].has-error,
input[type=number].has-error,
input[type=password].has-error,
textarea.has-error,
select.has-error {
  box-shadow: 0 0 2px 1px rgba(244, 67, 54, 0.8);
}

input[type=text],
input[type=number],
input[type=password],
select {
  line-height: 40px;
  height: 40px;
}

textarea {
  min-height: 120px;
  padding: 10px;
  resize: none;
}

/*======================================================================================
*
*
*     Components / Checkbox
*
*
======================================================================================*/
.checkbox {
  display: flex;
}
.checkbox input {
  cursor: pointer;
  width: 20px;
  height: 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.checkbox input:checked + label {
  font-weight: 700;
}
.checkbox input:checked + label:before {
  background-color: #2196F3;
  border-color: #2196F3;
}
.checkbox input:checked + label:after {
  border-color: #fff;
  animation: checkbox 0.35s cubic-bezier(0.13, 0.63, 0.56, 0.88) forwards;
}
.checkbox label {
  font-weight: 400;
  text-transform: none;
  font-size: 0.875rem;
  font-size: 14px;
}
.checkbox label:before, .checkbox label:after {
  content: "";
}
.checkbox label:before {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: -2px 7px 0 0;
  vertical-align: middle;
  border: #e0e0e0 solid 2px;
  border-radius: 3px;
  transition: background-color 0.3s;
}
.checkbox label:after {
  position: absolute;
  left: 9px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #c7c7c7;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkbox-small input {
  width: 15px;
  height: 15px;
}
.checkbox-small label:before {
  width: 15px;
  height: 15px;
}
.checkbox-small label:after {
  position: absolute;
  left: 6px;
  top: 1px;
  width: 4px;
  height: 8px;
}

@keyframes checkbox {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}
/*======================================================================================
*
*
*     Components / Form
*
*
======================================================================================*/
label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-size: 12px;
  font-weight: 700;
}

.input {
  width: 100%;
  margin-bottom: 20px;
}
.input > label {
  margin-bottom: 8px;
}

.input-group {
  width: 100%;
  display: table;
}
.input-group-row {
  display: table-row;
}
.input-group-cell {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 20px;
}

/*======================================================================================
*
*
*     Components / Icons
*
*
======================================================================================*/
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v38/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
.icon {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 1rem;
  font-size: 16px;
  margin: 0 5px 0 0;
  vertical-align: text-bottom;
}
.icon-tiny {
  font-size: 0.75rem;
  font-size: 12px;
  width: 12px;
  height: 12px;
}
.icon-small {
  font-size: 0.875rem;
  font-size: 14px;
  width: 14px;
  height: 14px;
}
.icon-big {
  font-size: 1.125rem;
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.icon-large {
  font-size: 1.5rem;
  font-size: 24px;
  width: 24px;
  height: 24px;
}

/*======================================================================================
*
*
*     Components / Typography
*
*
======================================================================================*/
.empty {
  width: 100%;
  padding: 40px;
  font-size: 0.75rem;
  font-size: 12px;
  font-style: italic;
  text-align: center;
  color: #878787;
}

/*======================================================================================
*
*
*     Components / Table
*
*
======================================================================================*/
.table {
  width: 100%;
  display: table;
}
.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
}

/*======================================================================================
*
*
*     Components / Chip
*
*
======================================================================================*/
.chip {
  background-color: #eeeeee;
  display: inline-block;
  padding: 0 20px;
  line-height: 30px;
  text-transform: uppercase;
  font-size: 0.625rem;
  font-size: 10px;
  font-weight: 700;
  border-radius: 30px;
}
.chip-green {
  color: #fff;
}
.chip-green {
  background-color: #4CAF50;
}

/*======================================================================================
*
*
*     Application status
*
*
======================================================================================*/
.status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.status--active {
  background-color: #4CAF50;
}
.status--inactive {
  background-color: #F44336;
}

/*======================================================================================
*
*
*     Components / Pagintion
*
*
======================================================================================*/
.pagination {
  display: flex;
  padding: 10px;
}
.pagination .page-item {
  margin: 0 2px;
  font-size: 0.75rem;
  font-size: 12px;
  border: #ccc solid 1px;
  border-radius: 3px;
}
.pagination .page-item.active {
  border-color: #2196F3;
  border-width: 2px;
}
.pagination .page-item.active .page-link {
  color: #2196F3;
}
.pagination .page-link {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.pagination .page-link:hover {
  background-color: #eeeeee;
}

/*======================================================================================
*
*
*     Plugins
*
*
======================================================================================*/
.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Datepicker cells
   ------------------------------------------------- */
.datepicker--cells {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.datepicker--cell {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  z-index: 1;
}

.datepicker--cell.-focus- {
  background: #f0f0f0;
}

.datepicker--cell.-current- {
  color: #4EB5E6;
}

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
  color: #4EB5E6;
}

.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0;
}

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}

.datepicker--cell.-selected- {
  color: #fff;
  border: none;
  background: #5cc4ef;
}

.datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #5cc4ef;
}

.datepicker--cell.-selected-.-focus- {
  background: #45bced;
}

.datepicker--cell:empty {
  cursor: default;
}

.datepicker--days-names {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}

.datepicker--day-name {
  color: #FF9A19;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.datepicker--cell-day {
  width: 14.28571%;
}

.datepicker--cells-months {
  height: 170px;
}

.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}

.datepicker--years {
  height: 170px;
}

.datepicker--cells-years {
  height: 170px;
}

.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Datepicker
   ------------------------------------------------- */
.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}

@media print {
  .datepickers-container {
    display: none;
  }
}
.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 999999999;
}

.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
}

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.datepicker-inline .datepicker--pointer {
  display: none;
}

.datepicker--content {
  box-sizing: content-box;
  padding: 4px;
}

.-only-timepicker- .datepicker--content {
  display: none;
}

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}

.-top-left- .datepicker--pointer, .-top-center- .datepicker--pointer, .-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.-right-top- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.-bottom-left- .datepicker--pointer, .-bottom-center- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.-left-top- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-bottom- .datepicker--pointer {
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-top-left- .datepicker--pointer, .-bottom-left- .datepicker--pointer {
  left: 10px;
}

.-top-right- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  right: 10px;
}

.-top-center- .datepicker--pointer, .-bottom-center- .datepicker--pointer {
  left: calc(50% - 10px / 2);
}

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  top: 10px;
}

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  bottom: 10px;
}

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2);
}

.datepicker--body {
  display: none;
}

.datepicker--body.active {
  display: block;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Navigation
   ------------------------------------------------- */
.datepicker--nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}

.-only-timepicker- .datepicker--nav {
  display: none;
}

.datepicker--nav-title,
.datepicker--nav-action {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker--nav-action:hover {
  background: #f0f0f0;
}

.datepicker--nav-action.-disabled- {
  visibility: hidden;
}

.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}

.datepicker--nav-title:hover {
  background: #f0f0f0;
}

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: none;
}

.datepicker--buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 4px;
  border-top: 1px solid #efefef;
}

.datepicker--button {
  color: #4EB5E6;
  cursor: pointer;
  border-radius: 4px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
}

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Timepicker
   ------------------------------------------------- */
.datepicker--time {
  border-top: 1px solid #efefef;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  position: relative;
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
  -webkit-flex: 0 1 138px;
  -ms-flex: 0 1 138px;
  flex: 0 1 138px;
  max-width: 138px;
}

.-only-timepicker- .datepicker--time {
  border-top: none;
}

.datepicker--time-sliders {
  -webkit-flex: 0 1 153px;
  -ms-flex: 0 1 153px;
  flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}

.datepicker--time-label {
  display: none;
  font-size: 12px;
}

.datepicker--time-current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.datepicker--time-current-hours,
.datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
  content: "";
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}

.datepicker--time-current-ampm {
  text-transform: uppercase;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.datepicker--time-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}

.datepicker--time-row:first-child {
  margin-bottom: 4px;
}

.datepicker--time-row input[type=range] {
  background: none;
  cursor: pointer;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.datepicker--time-row input[type=range]::-ms-tooltip {
  display: none;
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:focus {
  outline: none;
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  margin-top: -6px;
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.datepicker--time-row input[type=range]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.datepicker--time-row input[type=range]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.datepicker--time-row input[type=range]::-ms-fill-lower {
  background: transparent;
}

.datepicker--time-row input[type=range]::-ms-fill-upper {
  background: transparent;
}

.datepicker--time-row span {
  padding: 0 12px;
}

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}

.datepicker--time-icon:after, .datepicker--time-icon:before {
  content: "";
  background: currentColor;
  position: absolute;
}

.datepicker--time-icon:after {
  height: 0.4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.datepicker--time-icon:before {
  width: 0.4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/*======================================================================================
*
*
*     Application Form
*
*
======================================================================================*/
.form {
  width: 100%;
}
.form.on-progress .form-submit {
  cursor: default;
  pointer-events: none;
  animation: button-on-progress 3s infinite;
}
.form.on-progress .form-submit:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: middle;
  animation: progress-cir 1s cubic-bezier(0.6, 0.4, 0.87, 0.7) infinite;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-left: 3px solid transparent;
  margin: 0 0 1px 7px;
}
.form-errors {
  background-color: #EF5350;
  opacity: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}
.form-errors.has-error {
  opacity: 1;
  padding: 5px 10px;
  margin: 10px 0;
}
.form-errors .error {
  width: 100%;
  padding: 5px 0;
  font-size: 0.75rem;
  font-size: 12px;
  color: #fff;
}
.form-footer {
  display: flex;
  margin-top: 20px;
}

/*======================================================================================
*
*
*     Application Modal
*
*
======================================================================================*/
.modal-overlay {
  opacity: 0;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
  backface-visibility: hidden;
  perspective: 1000px;
}
.modal-overlay.active {
  opacity: 0.3;
  width: 100%;
  height: 100%;
  z-index: 99991;
}

.modal {
  opacity: 1;
  background-color: #fff;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: 0;
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  margin-left: -250px;
  transition: opacity 0.3s, top 0.3s;
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.modal.active {
  opacity: 1;
  top: 50px;
  width: 500px;
  height: auto;
  z-index: 99999991;
}
.modal-close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.modal-content {
  width: 100%;
  flex: 1;
}

.popup-title {
  margin: 10px 0 0 0;
  padding: 10px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  font-size: 18px;
}
.popup-body {
  padding: 20px 20px;
  text-align: center;
}
.popup-footer {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
}
.popup-footer .btn {
  margin-right: 10px;
}

/*======================================================================================
*
*
*     Modules /
*
*
======================================================================================*/
.messages {
  position: fixed;
  display: flex;
  flex-direction: column;
}
.messages.active {
  z-index: 9999;
}
.messages--top {
  top: 10px;
}
.messages--bottom {
  bottom: 10px;
}
.messages--left {
  left: 10px;
}
.messages--right {
  right: 10px;
}

.message {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 0.75rem;
  font-size: 12px;
  transform: translateY(-30px);
  transition: opacity 0.3s, transform 0.3s, width 0s 0.3s, height 0s 0.3s;
}
.message.active, .message.inactive {
  width: 100%;
  height: auto;
}
.message.active {
  opacity: 1;
  transform: none;
  transition: opacity 0.3s, transform 0.3s;
}
.message.inactive {
  opacity: 0;
  transform: translateY(-30px);
}
.message--basic {
  background-color: #efefef;
}
.message--success {
  background-color: #4CAF50;
  color: #fff;
}
.message--danger {
  background-color: #F44336;
  color: #fff;
}

/**
 * selectize.default.css (v0.12.6) - Default Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #0073bb;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #aaaaaa;
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}

.selectize-input.full {
  background-color: #fff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #fff;
  border: 1px solid #0073bb;
}

.selectize-control.multi .selectize-input > div.active {
  background: #92c836;
  color: #fff;
  border: 1px solid #00578d;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #ffffff;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 1px !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.selectize-dropdown [data-selectable].option {
  opacity: 1;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

.selectize-control.multi .selectize-input.has-items {
  padding-left: 5px;
  padding-right: 5px;
}

.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: none;
}

.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1b9dec;
  background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
  background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff1da7ee", endColorstr="#ff178ee9", GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
  background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
  background-image: -o-linear-gradient(top, #008fd8, #0075cf);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff008fd8", endColorstr="#ff0075cf", GradientType=0);
}

.selectize-control.single .selectize-input {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fffefefe", endColorstr="#fff2f2f2", GradientType=0);
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #b8b8b8;
}

.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: 0.85em;
}

.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}

/*======================================================================================
*
*
*     Modules /
*
*
======================================================================================*/
.messages {
  position: fixed;
  display: flex;
  flex-direction: column;
}
.messages.active {
  z-index: 9999;
}
.messages--top {
  top: 10px;
}
.messages--bottom {
  bottom: 10px;
}
.messages--left {
  left: 10px;
}
.messages--right {
  right: 10px;
}

.message {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 0.75rem;
  font-size: 12px;
  transform: translateY(-30px);
  transition: opacity 0.3s, transform 0.3s, width 0s 0.3s, height 0s 0.3s;
}
.message.active, .message.inactive {
  width: 100%;
  height: auto;
}
.message.active {
  opacity: 1;
  transform: none;
  transition: opacity 0.3s, transform 0.3s;
}
.message.inactive {
  opacity: 0;
  transform: translateY(-30px);
}
.message--basic {
  background-color: #efefef;
}
.message--success {
  background-color: #4CAF50;
  color: #fff;
}
.message--danger {
  background-color: #F44336;
  color: #fff;
}

@font-face {
  font-family: "lg";
  src: url("../fonts/lg.eot?n1z373");
  src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lg-icon {
  font-family: "lg";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  border: none;
  outline: none;
}

.lg-actions {
  position: absolute;
  top: 50%;
  width: 100%;
}

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}

.lg-actions .lg-next {
  right: 20px;
}

.lg-actions .lg-next:before {
  content: "";
}

.lg-actions .lg-prev {
  left: 20px;
}

.lg-actions .lg-prev:after {
  content: "";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #FFF;
}

.lg-toolbar .lg-close:after {
  content: "";
}

.lg-toolbar .lg-download:after {
  content: "";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}

.lg-outer .lg-toogle-thumb:after {
  content: "";
}

.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-iframe .lg-video {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "";
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/*# sourceMappingURL=lightgallery.css.map */
/*======================================================================================
*
*
*     Layputs
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Routes / Report / Layout
*
*
======================================================================================*/
main {
  width: 100%;
  height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.head,
.body {
  display: flex;
  flex: 1;
}
.head-left,
.body-left {
  min-width: 300px;
  max-width: 300px;
}

.head {
  z-index: 4;
  max-height: 125px;
  border-bottom: #e0e0e0 solid 1px;
  z-index: 9999;
}
.head-left, .head-right {
  display: flex;
  flex: 1;
}
.head-left {
  background: url(../img/logo.jpg);
  background-size: contain;
  max-width: 300px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.head-right {
  background-color: #deebf3;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.head-right-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.body-left, .body-right {
  display: flex;
  flex: 1;
}
.body-left {
  background-color: #ccc;
  max-width: 300px;
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  z-index: 99999;
}
.body-left-content {
  overflow: hidden;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
}
.body-right-content {
  overflow: scroll;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
}

/*======================================================================================
*
*
*     Theme
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Table
*
*
======================================================================================*/
.simple-table thead {
  background-color: #c0d1de;
}
.simple-table th {
  padding: 15px 5px;
}
.simple-table th, .simple-table td {
  font-size: 0.75rem;
  font-size: 12px;
}

/*======================================================================================
*
*
*     Modules
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Filter
*
*
======================================================================================*/
.filter {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.filter.active {
  width: 600px;
}
.filter.active .filter-placeholder {
  display: none;
}
.filter.active .filter-dropdown {
  display: flex;
}
.filter-placeholder {
  background-color: #525354;
  cursor: pointer;
  display: flex;
  flex: 1;
  align-items: center;
  font-size: 0.75rem;
  font-size: 12px;
  font-weight: 700;
  padding: 0 20px;
  color: #fff;
}
.filter-placeholder:hover {
  background-color: #6b6d6e;
}
.filter-placeholder:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin-left: auto;
}
.filter-dropdown {
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}
.filter-dropdown-head {
  display: flex;
  margin-bottom: 20px;
}
.filter-dropdown-head .btn-blue {
  width: 100%;
  margin-left: 5px;
}
.filter-country {
  width: 100%;
}
.filter-datepicker > input {
  padding-left: 30px;
  max-width: 200px;
  margin-left: auto;
}
.filter-datepicker > i {
  opacity: 0.7;
  position: absolute;
  top: 11px;
  left: 10px;
  z-index: 2;
}
.filter-head {
  display: flex;
  align-items: center;
  margin: 10px 0 20px 0;
}
.filter-head .btn {
  max-height: 50px;
}
.filter-head .form-submit {
  margin-left: 5px;
}

/*======================================================================================
*
*
*     //
*
*
======================================================================================*/
.Cpc.active {
  width: 1000px;
  margin-left: -500px;
}
.Cpc-body {
  width: 100%;
  min-height: 250px;
  margin-top: 40px;
}
.Cpc-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Cpc-table-head table, .Cpc-table-body table {
  width: 100%;
  table-layout: fixed;
}
.Cpc-table-head > table {
  width: calc(100% - 17px);
}
.Cpc-table-body {
  max-height: 450px;
  overflow-y: auto;
}
.Cpc-table-body td {
  padding: 10px 5px;
  border-bottom: #ccc solid 1px;
}
.Cpc-table-body tr:hover {
  background-color: #efefef;
}
.Cpc-table-footer {
  background-color: #efefef;
}
.Cpc-table-footer > td {
  font-weight: 700;
  padding-bottom: 30px;
}
.Cpc-campaign, .Cpc-group, .Cpc-ad_id, .Cpc-ad_name {
  width: 100%;
  font-size: 0.75rem;
  font-size: 12px;
  max-width: 490px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.Cpc-provider {
  width: 100%;
  font-size: 0.75rem;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.Cpc-ad_id {
  font-size: 0.625rem;
  font-size: 10px;
  margin-bottom: 4px;
}
.Cpc-group {
  margin-bottom: 10px;
}
.Cpc-ad_name {
  color: #2196F3;
  font-weight: 700;
}

/*======================================================================================
*
*
*     //
*
*
======================================================================================*/
.plans-edit.active {
  width: 1000px;
  margin-left: -500px;
}
.plans-edit-search {
  display: flex;
  margin-top: 30px;
  padding: 10px;
  flex-shrink: 0;
  align-items: flex-end;
}
.plans-edit-search > .btn {
  height: 39px;
}
.plans-edit-countries {
  width: 100%;
}
.plans-edit .selectize-control.multi .selectize-input.has-items {
  padding: 7px 8px 4px;
}
.plans-edit-range {
  width: 180px;
  max-width: 180px;
  margin: 0 5px;
}
.plans-edit-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.plans-edit-table-head table {
  width: calc(100% - 17px);
  table-layout: fixed;
}
.plans-edit-table-body {
  width: 100%;
  overflow-y: scroll;
  min-height: 200px;
  max-height: 350px;
}
.plans-edit-table-body table {
  width: 100%;
  table-layout: fixed;
}
.plans-edit-table-body table tr:hover {
  background-color: #efefef;
}
.plans-edit-table-body table td {
  padding: 2px;
}
.plans-edit-table-body table td > input {
  border: none;
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  text-align: center;
}
.plans-edit-table-body table td > input:hover {
  background-color: #ccc;
}

.plans-import-body {
  width: 100%;
  padding: 20px;
}
.plans-import-upload {
  overflow: hidden;
}
.plans-import-upload > label {
  background-color: #7affbd;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px;
  border: #3fab75 dashed 2px;
  border-radius: 5px;
}
.plans-import-upload > input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 99;
  width: 200%;
  height: 200%;
}

/*======================================================================================
*
*
*     Anlytics
*
*
======================================================================================*/
.analytics.active {
  width: 1000px;
  margin-left: -500px;
}
.analytics-body {
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  margin: 40px 0 20px 0;
}
.analytics-body table {
  width: 100%;
  max-width: 100%;
}
.analytics-body table tr:hover {
  background-color: #efefef;
}
.analytics-body table td {
  padding: 5px;
}
.analytics-path {
  display: inline-block;
  max-width: 890px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*======================================================================================
*
*
*     Routes
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Report
*
*
======================================================================================*/
/*======================================================================================
*
*
*     Report Items
*
*
======================================================================================*/
.report-items {
  width: 100%;
  margin-bottom: 17px;
}
.report-items .report-group-plan {
  background-color: #f7f2c1;
}
.report-items .report-group-plan:hover {
  background-color: #faf7d8;
}
.report-items .report-group-row {
  background-color: #efefef;
}
.report-items .report-group-row:hover {
  background-color: #fff;
}
.report-items .report-group-row > td {
  text-align: left;
}
.report-items .report-group-title {
  background-color: #4291d4;
}
.report-items .report-group-title:hover {
  background-color: #6ca9dd;
}
.report-items .report-group-plan {
  background-color: rgba(247, 225, 120, 0.4);
  border-bottom: #e2d369 solid 1px;
  border-top: #e2d369 solid 1px;
}
.report-items .report-group-plan:hover {
  background-color: rgba(247, 225, 120, 0.2);
}

/*======================================================================================
*
*
*     Report Fields
*
*
======================================================================================*/
.report-fields {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 17px;
  height: 30px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.report-fields > table {
  background-color: #5d5d5d;
  width: 100%;
  border-bottom: #484646 solid 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.report-fields > table th {
  height: 30px;
  min-width: 90px;
  max-width: 90px;
  text-align: center;
  color: #fff;
  font-size: 0.625rem;
  font-size: 10px;
  border-right: #484646 solid 1px;
}

/*======================================================================================
*
*
*     Report table
*
*
======================================================================================*/
.report-table {
  min-width: 100%;
  table-layout: fixed;
}

/*======================================================================================
*
*
*     Report Group
*
*
======================================================================================*/
.report-group:not(.expanded) .report-group-row {
  display: none;
}
.report-group:not(.expanded) .report-group-tools__minimize {
  transform: rotate(-90deg);
}
.report-group-row {
  height: 25px;
  border-bottom: #e0e0e0 solid 1px;
}
.report-group-row:hover {
  background-color: #efefef;
}
.report-group-column {
  min-width: 90px;
  max-width: 90px;
  height: 25px;
  max-height: 25px;
  padding: 0 10px;
  font-size: 0.75rem;
  font-size: 12px;
  text-align: center;
  border-right: #e0e0e0 solid 1px;
}
.report-group-column-content {
  display: flex;
  flex: 1;
  align-items: center;
}
.report-group-title {
  display: table-row !important;
  background-color: #4291d4;
  border-bottom: #2a77b9 solid 1px;
  border-top: #2a77b9 solid 1px;
}
.report-group-title:hover {
  background-color: #6ca9dd;
}
.report-group-title--viso {
  background-color: #212122 !important;
}
.report-group-title--viso:hover {
  background-color: #3a3a3c !important;
}
.report-group-title--viso > .report-group-column {
  border-right: #2f2f2f solid 1px !important;
}
.report-group-title .report-group-column {
  border-right: #2a77b9 solid 1px;
  color: #fff;
  font-weight: 700;
}
.report-group-plan {
  display: table-row !important;
  background-color: rgba(247, 225, 120, 0.4);
  border-bottom: #e2d369 solid 1px;
  border-top: #e2d369 solid 1px;
}
.report-group-plan:hover {
  background-color: rgba(247, 225, 120, 0.2);
}
.report-group-plan .report-group-column {
  font-weight: 700;
  border-right: #e2d369 solid 1px;
}
.report-group-tools {
  margin-left: auto;
}
.report-group-tools__minimize {
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: transform 0.25s;
}
.report-group-tools__minimize:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: 8px;
  left: 5px;
}

/*======================================================================================
*
*
*     Tools
*
*
======================================================================================*/
.tools {
  background-color: #fff;
  display: flex;
  width: 100%;
  padding: 3px 1px;
  border-radius: 3px;
}
.tools-plans {
  display: flex;
  margin-left: auto;
}
.tools-plans .btn {
  margin: 0 2px;
}
.tools-download-formats {
  width: 150px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 999;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.tools-download-formats:not(.active) {
  display: none;
}
.tools-download-formats > li {
  font-size: 0.75rem;
  font-size: 12px;
  padding: 5px 10px;
}
.tools-download-formats > li:hover {
  background-color: #efefef;
}
.tools-download-formats > li:hover > a {
  text-decoration: underline;
}
.tools-download-formats > li > a {
  width: 100%;
}

/*======================================================================================
*
*
*     Links
*
*
======================================================================================*/
.search {
  width: 600px;
  overflow: hidden;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 99999;
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.search-close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  font-size: 1.875rem;
  font-size: 30px;
  margin: 0 10px;
}
.search-form {
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.search-input {
  display: flex;
  align-items: center;
}
.search-input-icon {
  opacity: 0.8;
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  font-size: 1.375rem;
  font-size: 22px;
}
.search-input > input {
  padding-left: 40px;
}
.search-types {
  width: 531px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 5px;
  border-radius: 5px;
  border: #efefef solid 1px;
}
.search-types-type {
  width: 25%;
  padding: 10px;
  overflow: hidden;
  border-right: #efefef solid 1px;
  text-align: center;
}
.search-types-type > input {
  opacity: 0;
  width: 200%;
  height: 200%;
  cursor: pointer;
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 3;
}
.search-types-type > input:checked + label {
  color: #fff;
}
.search-types-type > input:checked + label + span {
  background-color: #2196F3;
}
.search-types-type > label {
  display: inline;
  z-index: 2;
}
.search-types-type > span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.search-body {
  height: 100%;
  overflow-y: auto;
  padding: 10px;
}
.search-results {
  display: flex;
  flex-direction: column;
}
.search-result {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-size: 12px;
  padding: 10px 5px;
  border-bottom: #e0e0e0 solid 1px;
}
.search-result:hover {
  background-color: #f5f5f5;
}
.search-result > p {
  color: #adadad;
}

/*======================================================================================
*
*
*     Logs
*
*
======================================================================================*/
.logs.active {
  width: 800px;
  margin-left: -400px;
}
.logs .modal-close {
  z-index: 99;
}
.logs table {
  width: 100%;
  table-layout: fixed;
}
.logs table tr:hover td {
  background-color: #f5f5f5;
}
.logs table td {
  font-size: 0.875rem;
  font-size: 14px;
  text-align: left;
}
.logs-head {
  padding: 0 17px 0 5px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.logs-head table tr th {
  text-align: left;
  font-size: 0.875rem;
  font-size: 14px;
  padding: 10px 5px;
  border-right: #e0e0e0 solid 1px;
}
.logs-head table tr:last-of-type th {
  border: none;
}
.logs-body {
  max-height: 400px;
  overflow-y: auto;
  min-height: 400px;
  padding: 5px;
}
.logs-body table td {
  padding: 5px;
  border: #e0e0e0 solid 1px;
}
.logs-head th:first-of-type, .logs-body td:first-of-type {
  width: 50%;
}
.logs-datepicker {
  max-width: 150px;
}

/*======================================================================================
*
*
*     Database
*
*
======================================================================================*/
.database.active {
  width: 800px;
  margin-left: -400px;
}
.database .modal-close {
  z-index: 99;
}
.database table {
  width: 100%;
  table-layout: fixed;
}
.database table tr:hover td {
  background-color: #f5f5f5;
}
.database table td {
  font-size: 0.875rem;
  font-size: 14px;
  text-align: left;
}
.database-head {
  padding: 0 17px 0 5px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.database-head table tr th {
  text-align: left;
  font-size: 0.875rem;
  font-size: 14px;
  padding: 10px 5px;
  border-right: #e0e0e0 solid 1px;
}
.database-head table tr:last-of-type th {
  border: none;
}
.database-body {
  max-height: 400px;
  overflow-y: auto;
  min-height: 400px;
  padding: 5px;
}
.database-body table td {
  padding: 5px;
  border: #e0e0e0 solid 1px;
}
.database-head th:first-of-type, .database-body td:first-of-type {
  width: 50%;
}
.database-datepicker {
  max-width: 150px;
}

/*======================================================================================
*
*
*     Logs
*
*
======================================================================================*/
.sales.active {
  width: 800px;
  margin-left: -400px;
}
.sales .modal-close {
  z-index: 99;
}
.sales table {
  width: 100%;
  table-layout: fixed;
}
.sales table tr:hover td {
  background-color: #f5f5f5;
}
.sales table td, .sales table th {
  font-size: 0.75rem;
  font-size: 12px;
  text-align: left;
}
.sales-head {
  padding: 0 17px 0 5px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.sales-head table tr th {
  text-align: left;
  font-size: 0.875rem;
  font-size: 14px;
  padding: 10px 5px;
  border-right: #e0e0e0 solid 1px;
}
.sales-head table tr:last-of-type th {
  border: none;
}
.sales-body {
  max-height: 400px;
  overflow-y: auto;
  min-height: 400px;
  padding: 5px;
}
.sales-body table td {
  padding: 5px;
  border: #e0e0e0 solid 1px;
}
.sales-head th:nth-of-type(2), .sales-body td:nth-of-type(2) {
  width: 50%;
}
.sales-datepicker {
  max-width: 150px;
}

/*# sourceMappingURL=../public/css/app.css.map */
