@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*!
 * Bootstrap v4.0.0-alpha.6 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption, figure, main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

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

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details, menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@media print {
  *, ::after, ::before, blockquote::first-letter, blockquote::first-line, div::first-letter, div::first-line, li::first-letter, li::first-line, p::first-letter, p::first-line {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  blockquote, pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  img, tr {
    page-break-inside: avoid;
  }

  h2, h3, p {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td, .table th {
    background-color: #fff !important;
  }

  .table-bordered td, .table-bordered th {
    border: 1px solid #ddd !important;
  }
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, ::after, ::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@-ms-viewport {
  width: device-width;
}
html {
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #292b2c;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[data-original-title], abbr[title] {
  cursor: help;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

a {
  color: #0275d8;
  text-decoration: none;
}

a:focus, a:hover {
  color: #014c8c;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
}

[role=button] {
  cursor: pointer;
}

[role=button], a, area, button, input, label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

table {
  border-collapse: collapse;
  background-color: transparent;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #636c72;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: left;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button, input, select, textarea {
  line-height: inherit;
}

input[type=checkbox]:disabled, input[type=radio]:disabled {
  cursor: not-allowed;
}

input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
}

input[type=search] {
  -webkit-appearance: none;
}

output {
  display: inline-block;
}

[hidden] {
  display: none !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.h1, h1 {
  font-size: 2.5rem;
}

.h2, h2 {
  font-size: 2rem;
}

.h3, h3 {
  font-size: 1.75rem;
}

.h4, h4 {
  font-size: 1.5rem;
}

.h5, h5 {
  font-size: 1.25rem;
}

.h6, h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.small, small {
  font-size: 80%;
  font-weight: 400;
}

.mark, mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 5px;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #636c72;
}

.blockquote-footer::before {
  content: "— ";
}

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0;
}

.blockquote-reverse .blockquote-footer::before {
  content: "";
}

.blockquote-reverse .blockquote-footer::after {
  content: " —";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #636c72;
}

code, kbd, pre, samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  border-radius: 0.25rem;
}

a > code {
  padding: 0;
  color: inherit;
  background-color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #fff;
  background-color: #292b2c;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  color: #292b2c;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}
.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.pull-0 {
  right: auto;
}

.pull-1 {
  right: 8.333333%;
}

.pull-2 {
  right: 16.666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.333333%;
}

.pull-5 {
  right: 41.666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.333333%;
}

.pull-8 {
  right: 66.666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.333333%;
}

.pull-11 {
  right: 91.666667%;
}

.pull-12 {
  right: 100%;
}

.push-0 {
  left: auto;
}

.push-1 {
  left: 8.333333%;
}

.push-2 {
  left: 16.666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.333333%;
}

.push-5 {
  left: 41.666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.333333%;
}

.push-8 {
  left: 66.666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.333333%;
}

.push-11 {
  left: 91.666667%;
}

.push-12 {
  left: 100%;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-sm-0 {
    right: auto;
  }

  .pull-sm-1 {
    right: 8.333333%;
  }

  .pull-sm-2 {
    right: 16.666667%;
  }

  .pull-sm-3 {
    right: 25%;
  }

  .pull-sm-4 {
    right: 33.333333%;
  }

  .pull-sm-5 {
    right: 41.666667%;
  }

  .pull-sm-6 {
    right: 50%;
  }

  .pull-sm-7 {
    right: 58.333333%;
  }

  .pull-sm-8 {
    right: 66.666667%;
  }

  .pull-sm-9 {
    right: 75%;
  }

  .pull-sm-10 {
    right: 83.333333%;
  }

  .pull-sm-11 {
    right: 91.666667%;
  }

  .pull-sm-12 {
    right: 100%;
  }

  .push-sm-0 {
    left: auto;
  }

  .push-sm-1 {
    left: 8.333333%;
  }

  .push-sm-2 {
    left: 16.666667%;
  }

  .push-sm-3 {
    left: 25%;
  }

  .push-sm-4 {
    left: 33.333333%;
  }

  .push-sm-5 {
    left: 41.666667%;
  }

  .push-sm-6 {
    left: 50%;
  }

  .push-sm-7 {
    left: 58.333333%;
  }

  .push-sm-8 {
    left: 66.666667%;
  }

  .push-sm-9 {
    left: 75%;
  }

  .push-sm-10 {
    left: 83.333333%;
  }

  .push-sm-11 {
    left: 91.666667%;
  }

  .push-sm-12 {
    left: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-md-0 {
    right: auto;
  }

  .pull-md-1 {
    right: 8.333333%;
  }

  .pull-md-2 {
    right: 16.666667%;
  }

  .pull-md-3 {
    right: 25%;
  }

  .pull-md-4 {
    right: 33.333333%;
  }

  .pull-md-5 {
    right: 41.666667%;
  }

  .pull-md-6 {
    right: 50%;
  }

  .pull-md-7 {
    right: 58.333333%;
  }

  .pull-md-8 {
    right: 66.666667%;
  }

  .pull-md-9 {
    right: 75%;
  }

  .pull-md-10 {
    right: 83.333333%;
  }

  .pull-md-11 {
    right: 91.666667%;
  }

  .pull-md-12 {
    right: 100%;
  }

  .push-md-0 {
    left: auto;
  }

  .push-md-1 {
    left: 8.333333%;
  }

  .push-md-2 {
    left: 16.666667%;
  }

  .push-md-3 {
    left: 25%;
  }

  .push-md-4 {
    left: 33.333333%;
  }

  .push-md-5 {
    left: 41.666667%;
  }

  .push-md-6 {
    left: 50%;
  }

  .push-md-7 {
    left: 58.333333%;
  }

  .push-md-8 {
    left: 66.666667%;
  }

  .push-md-9 {
    left: 75%;
  }

  .push-md-10 {
    left: 83.333333%;
  }

  .push-md-11 {
    left: 91.666667%;
  }

  .push-md-12 {
    left: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-lg-0 {
    right: auto;
  }

  .pull-lg-1 {
    right: 8.333333%;
  }

  .pull-lg-2 {
    right: 16.666667%;
  }

  .pull-lg-3 {
    right: 25%;
  }

  .pull-lg-4 {
    right: 33.333333%;
  }

  .pull-lg-5 {
    right: 41.666667%;
  }

  .pull-lg-6 {
    right: 50%;
  }

  .pull-lg-7 {
    right: 58.333333%;
  }

  .pull-lg-8 {
    right: 66.666667%;
  }

  .pull-lg-9 {
    right: 75%;
  }

  .pull-lg-10 {
    right: 83.333333%;
  }

  .pull-lg-11 {
    right: 91.666667%;
  }

  .pull-lg-12 {
    right: 100%;
  }

  .push-lg-0 {
    left: auto;
  }

  .push-lg-1 {
    left: 8.333333%;
  }

  .push-lg-2 {
    left: 16.666667%;
  }

  .push-lg-3 {
    left: 25%;
  }

  .push-lg-4 {
    left: 33.333333%;
  }

  .push-lg-5 {
    left: 41.666667%;
  }

  .push-lg-6 {
    left: 50%;
  }

  .push-lg-7 {
    left: 58.333333%;
  }

  .push-lg-8 {
    left: 66.666667%;
  }

  .push-lg-9 {
    left: 75%;
  }

  .push-lg-10 {
    left: 83.333333%;
  }

  .push-lg-11 {
    left: 91.666667%;
  }

  .push-lg-12 {
    left: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-xl-0 {
    right: auto;
  }

  .pull-xl-1 {
    right: 8.333333%;
  }

  .pull-xl-2 {
    right: 16.666667%;
  }

  .pull-xl-3 {
    right: 25%;
  }

  .pull-xl-4 {
    right: 33.333333%;
  }

  .pull-xl-5 {
    right: 41.666667%;
  }

  .pull-xl-6 {
    right: 50%;
  }

  .pull-xl-7 {
    right: 58.333333%;
  }

  .pull-xl-8 {
    right: 66.666667%;
  }

  .pull-xl-9 {
    right: 75%;
  }

  .pull-xl-10 {
    right: 83.333333%;
  }

  .pull-xl-11 {
    right: 91.666667%;
  }

  .pull-xl-12 {
    right: 100%;
  }

  .push-xl-0 {
    left: auto;
  }

  .push-xl-1 {
    left: 8.333333%;
  }

  .push-xl-2 {
    left: 16.666667%;
  }

  .push-xl-3 {
    left: 25%;
  }

  .push-xl-4 {
    left: 33.333333%;
  }

  .push-xl-5 {
    left: 41.666667%;
  }

  .push-xl-6 {
    left: 50%;
  }

  .push-xl-7 {
    left: 58.333333%;
  }

  .push-xl-8 {
    left: 66.666667%;
  }

  .push-xl-9 {
    left: 75%;
  }

  .push-xl-10 {
    left: 83.333333%;
  }

  .push-xl-11 {
    left: 91.666667%;
  }

  .push-xl-12 {
    left: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.table td, .table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #eceeef;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eceeef;
}

.table tbody + tbody {
  border-top: 2px solid #eceeef;
}

.table .table {
  background-color: #fff;
}

.table-sm td, .table-sm th {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #eceeef;
}

.table-bordered td, .table-bordered th {
  border: 1px solid #eceeef;
}

.table-bordered thead td, .table-bordered thead th {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-active, .table-active > td, .table-active > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-success, .table-success > td, .table-success > th {
  background-color: #dff0d8;
}

.table-hover .table-success:hover {
  background-color: #d0e9c6;
}

.table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
  background-color: #d0e9c6;
}

.table-info, .table-info > td, .table-info > th {
  background-color: #d9edf7;
}

.table-hover .table-info:hover {
  background-color: #c4e3f3;
}

.table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
  background-color: #c4e3f3;
}

.table-warning, .table-warning > td, .table-warning > th {
  background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
  background-color: #faf2cc;
}

.table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
  background-color: #faf2cc;
}

.table-danger, .table-danger > td, .table-danger > th {
  background-color: #f2dede;
}

.table-hover .table-danger:hover {
  background-color: #ebcccc;
}

.table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
  background-color: #ebcccc;
}

.thead-inverse th {
  color: #fff;
  background-color: #292b2c;
}

.thead-default th {
  color: #464a4c;
  background-color: #eceeef;
}

.table-inverse {
  color: #fff;
  background-color: #292b2c;
}

.table-inverse td, .table-inverse th, .table-inverse thead th {
  border-color: #fff;
}

.table-inverse.table-bordered {
  border: 0;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive.table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #464a4c;
  background-color: #fff;
  background-image: none;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #464a4c;
  background-color: #fff;
  border-color: #5cb3fd;
  outline: 0;
}

.form-control::-webkit-input-placeholder {
  color: #636c72;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #636c72;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #636c72;
  opacity: 1;
}

.form-control::placeholder {
  color: #636c72;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #eceeef;
  opacity: 1;
}

.form-control:disabled {
  cursor: not-allowed;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
  color: #464a4c;
  background-color: #fff;
}

.form-control-file, .form-control-range {
  display: block;
}

.col-form-label {
  padding-top: calc(0.5rem - 2px);
  padding-bottom: calc(0.5rem - 2px);
  margin-bottom: 0;
}

.col-form-label-lg {
  padding-top: calc(0.75rem - 2px);
  padding-bottom: calc(0.75rem - 2px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem - 2px);
  padding-bottom: calc(0.25rem - 2px);
  font-size: 0.875rem;
}

.col-form-legend {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.form-control-static {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  line-height: 1.25;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-static.form-control-lg, .form-control-static.form-control-sm, .input-group-lg > .form-control-static.form-control, .input-group-lg > .form-control-static.input-group-addon, .input-group-lg > .input-group-btn > .form-control-static.btn, .input-group-sm > .form-control-static.form-control, .input-group-sm > .form-control-static.input-group-addon, .input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), .input-group-sm > select.input-group-addon:not([size]):not([multiple]), select.form-control-sm:not([size]):not([multiple]) {
  height: 1.8125rem;
}

.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), .input-group-lg > select.input-group-addon:not([size]):not([multiple]), select.form-control-lg:not([size]):not([multiple]) {
  height: 3.166667rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
}

.form-check.disabled .form-check-label {
  color: #636c72;
  cursor: not-allowed;
}

.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0;
  cursor: pointer;
}

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.25rem;
}

.form-check-input:only-child {
  position: static;
}

.form-check-inline {
  display: inline-block;
}

.form-check-inline .form-check-label {
  vertical-align: middle;
}

.form-check-inline + .form-check-inline {
  margin-left: 0.75rem;
}

.form-control-feedback {
  margin-top: 0.25rem;
}

.form-control-danger, .form-control-success, .form-control-warning {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  -webkit-background-size: 1.125rem 1.125rem;
  background-size: 1.125rem 1.125rem;
}

.has-success .col-form-label, .has-success .custom-control, .has-success .form-check-label, .has-success .form-control-feedback, .has-success .form-control-label {
  color: #5cb85c;
}

.has-success .form-control {
  border-color: #5cb85c;
}

.has-success .input-group-addon {
  color: #5cb85c;
  border-color: #5cb85c;
  background-color: #eaf6ea;
}

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}

.has-warning .col-form-label, .has-warning .custom-control, .has-warning .form-check-label, .has-warning .form-control-feedback, .has-warning .form-control-label {
  color: #f0ad4e;
}

.has-warning .form-control {
  border-color: #f0ad4e;
}

.has-warning .input-group-addon {
  color: #f0ad4e;
  border-color: #f0ad4e;
  background-color: #fff;
}

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-danger .col-form-label, .has-danger .custom-control, .has-danger .form-check-label, .has-danger .form-control-feedback, .has-danger .form-control-label {
  color: #d9534f;
}

.has-danger .form-control {
  border-color: #d9534f;
}

.has-danger .input-group-addon {
  color: #d9534f;
  border-color: #d9534f;
  background-color: #fdf7f7;
}

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
}

.form-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    width: auto;
  }

  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-check {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .form-inline .form-check-label {
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
  }

  .form-inline .custom-control-indicator {
    position: static;
    display: inline-block;
    margin-right: 0.25rem;
    vertical-align: text-bottom;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn:focus, .btn:hover {
  text-decoration: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
  box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
}

.btn.disabled, .btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.btn.active, .btn:active {
  background-image: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary:hover {
  color: #fff;
  background-color: #025aa5;
  border-color: #01549b;
}

.btn-primary.focus, .btn-primary:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
  box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #025aa5;
  background-image: none;
  border-color: #01549b;
}

.btn-secondary {
  color: #292b2c;
  background-color: #fff;
  border-color: #ccc;
}

.btn-secondary:hover {
  color: #292b2c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-secondary.focus, .btn-secondary:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #fff;
  border-color: #ccc;
}

.btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
  color: #292b2c;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}

.btn-info.focus, .btn-info:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
  box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info.active, .btn-info:active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #2aabd2;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}

.btn-success.focus, .btn-success:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
  box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-success.active, .btn-success:active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #419641;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}

.btn-warning.focus, .btn-warning:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
  box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-warning.active, .btn-warning:active, .show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #eb9316;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}

.btn-danger.focus, .btn-danger:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
  box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-danger.active, .btn-danger:active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #c12e2a;
}

.btn-outline-primary {
  color: #0275d8;
  background-image: none;
  background-color: transparent;
  border-color: #0275d8;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
  box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0275d8;
  background-color: transparent;
}

.btn-outline-primary.active, .btn-outline-primary:active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.btn-outline-secondary {
  color: #ccc;
  background-image: none;
  background-color: transparent;
  border-color: #ccc;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-outline-secondary.focus, .btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #ccc;
  background-color: transparent;
}

.btn-outline-secondary.active, .btn-outline-secondary:active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-outline-info {
  color: #5bc0de;
  background-image: none;
  background-color: transparent;
  border-color: #5bc0de;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-outline-info.focus, .btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
  box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #5bc0de;
  background-color: transparent;
}

.btn-outline-info.active, .btn-outline-info:active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-outline-success {
  color: #5cb85c;
  background-image: none;
  background-color: transparent;
  border-color: #5cb85c;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-outline-success.focus, .btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
  box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #5cb85c;
  background-color: transparent;
}

.btn-outline-success.active, .btn-outline-success:active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.btn-outline-warning {
  color: #f0ad4e;
  background-image: none;
  background-color: transparent;
  border-color: #f0ad4e;
}

.btn-outline-warning:hover {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-outline-warning.focus, .btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
  box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #f0ad4e;
  background-color: transparent;
}

.btn-outline-warning.active, .btn-outline-warning:active, .show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-outline-danger {
  color: #d9534f;
  background-image: none;
  background-color: transparent;
  border-color: #d9534f;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-outline-danger.focus, .btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
  box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #d9534f;
  background-color: transparent;
}

.btn-outline-danger.active, .btn-outline-danger:active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.btn-link {
  font-weight: 400;
  color: #0275d8;
  border-radius: 0;
}

.btn-link, .btn-link.active, .btn-link:active, .btn-link:disabled {
  background-color: transparent;
}

.btn-link, .btn-link:active, .btn-link:focus {
  border-color: transparent;
}

.btn-link:hover {
  border-color: transparent;
}

.btn-link:focus, .btn-link:hover {
  color: #014c8c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link:disabled {
  color: #636c72;
}

.btn-link:disabled:focus, .btn-link:disabled:hover {
  text-decoration: none;
}

.btn-group-lg > .btn, .btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-group-sm > .btn, .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.dropdown, .dropup {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #292b2c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #eceeef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: 400;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #1d1e1f;
  text-decoration: none;
  background-color: #f7f7f9;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0275d8;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #636c72;
  cursor: not-allowed;
  background-color: transparent;
}

.show > .dropdown-menu {
  display: block;
}

.show > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #636c72;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 0.125rem;
}

.btn-group, .btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.btn-group-vertical > .btn:hover, .btn-group > .btn:hover {
  z-index: 2;
}

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus {
  z-index: 2;
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn + .dropdown-toggle-split::after {
  margin-left: 0;
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.btn-group-vertical {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical .btn, .btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group .form-control:active, .input-group .form-control:focus, .input-group .form-control:hover {
  z-index: 3;
}

.input-group .form-control, .input-group-addon, .input-group-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon, .input-group-btn {
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #464a4c;
  text-align: center;
  background-color: #eceeef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.input-group-addon.form-control-sm, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-addon.form-control-lg, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
  margin-top: 0;
}

.input-group .form-control:not(:last-child), .input-group-addon:not(:last-child), .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn, .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group > .btn, .input-group-btn:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:not(:last-child) {
  border-right: 0;
}

.input-group .form-control:not(:first-child), .input-group-addon:not(:first-child), .input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group > .btn, .input-group-btn:not(:first-child) > .dropdown-toggle, .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn, .input-group-btn:not(:last-child) > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.form-control + .input-group-addon:not(:first-child) {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
  z-index: 3;
}

.input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group {
  margin-right: -1px;
}

.input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.input-group-btn:not(:first-child) > .btn-group:active, .input-group-btn:not(:first-child) > .btn-group:focus, .input-group-btn:not(:first-child) > .btn-group:hover, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .btn:hover {
  z-index: 3;
}

.custom-control {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-right: 1rem;
  cursor: pointer;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-indicator {
  color: #fff;
  background-color: #0275d8;
}

.custom-control-input:focus ~ .custom-control-indicator {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
}

.custom-control-input:active ~ .custom-control-indicator {
  color: #fff;
  background-color: #8fcafe;
}

.custom-control-input:disabled ~ .custom-control-indicator {
  cursor: not-allowed;
  background-color: #eceeef;
}

.custom-control-input:disabled ~ .custom-control-description {
  color: #636c72;
  cursor: not-allowed;
}

.custom-control-indicator {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: 50% 50%;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-indicator {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background-color: #0275d8;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-indicator {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-controls-stacked {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-controls-stacked .custom-control {
  margin-bottom: 0.25rem;
}

.custom-controls-stacked .custom-control + .custom-control {
  margin-left: 0;
}

.custom-select {
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.25;
  color: #464a4c;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  -webkit-background-size: 8px 10px;
  background-size: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.custom-select:focus {
  border-color: #5cb3fd;
  outline: 0;
}

.custom-select:focus::-ms-value {
  color: #464a4c;
  background-color: #fff;
}

.custom-select:disabled {
  color: #636c72;
  cursor: not-allowed;
  background-color: #eceeef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-file {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 2.5rem;
  margin-bottom: 0;
  cursor: pointer;
}

.custom-file-input {
  min-width: 14rem;
  max-width: 100%;
  height: 2.5rem;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0;
}

.custom-file-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  color: #464a4c;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.custom-file-control:lang(en)::after {
  content: "Choose file...";
}

.custom-file-control::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 6;
  display: block;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  color: #464a4c;
  background-color: #eceeef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-file-control:lang(en)::before {
  content: "Browse";
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5em 1em;
}

.nav-link:focus, .nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #636c72;
  cursor: not-allowed;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #eceeef #eceeef #ddd;
}

.nav-tabs .nav-link.disabled {
  color: #636c72;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #464a4c;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-item.show .nav-link, .nav-pills .nav-link.active {
  color: #fff;
  cursor: default;
  background-color: #0275d8;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.425rem;
  padding-bottom: 0.425rem;
}

.navbar-toggler {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: 0 0;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}

.navbar-toggler-left {
  position: absolute;
  left: 1rem;
}

.navbar-toggler-right {
  position: absolute;
  right: 1rem;
}

@media (max-width: 575px) {
  .navbar-toggleable .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }

  .navbar-toggleable > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-toggleable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-toggleable .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-toggleable > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }

  .navbar-toggleable .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }

  .navbar-toggleable-sm > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-toggleable-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-toggleable-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-toggleable-sm > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }

  .navbar-toggleable-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }

  .navbar-toggleable-md > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-toggleable-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-toggleable-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-toggleable-md > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }

  .navbar-toggleable-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }

  .navbar-toggleable-lg > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-toggleable-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-toggleable-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-toggleable-lg > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-toggleable-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }

  .navbar-toggleable-lg .navbar-toggler {
    display: none;
  }
}
.navbar-toggleable-xl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggleable-xl .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-toggleable-xl > .container {
  padding-right: 0;
  padding-left: 0;
}

.navbar-toggleable-xl .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-toggleable-xl .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-toggleable-xl > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggleable-xl .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}

.navbar-toggleable-xl .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand, .navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover, .navbar-light .navbar-toggler:focus, .navbar-light .navbar-toggler:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.open, .navbar-light .navbar-nav .open > .nav-link {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-toggler {
  color: #fff;
}

.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-toggler:focus, .navbar-inverse .navbar-toggler:hover {
  color: #fff;
}

.navbar-inverse .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-inverse .navbar-nav .nav-link:focus, .navbar-inverse .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-inverse .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-inverse .navbar-nav .active > .nav-link, .navbar-inverse .navbar-nav .nav-link.active, .navbar-inverse .navbar-nav .nav-link.open, .navbar-inverse .navbar-nav .open > .nav-link {
  color: #fff;
}

.navbar-inverse .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-inverse .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-inverse .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f7f7f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f7f7f9;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-primary {
  background-color: #0275d8;
  border-color: #0275d8;
}

.card-primary .card-footer, .card-primary .card-header {
  background-color: transparent;
}

.card-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.card-success .card-footer, .card-success .card-header {
  background-color: transparent;
}

.card-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.card-info .card-footer, .card-info .card-header {
  background-color: transparent;
}

.card-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.card-warning .card-footer, .card-warning .card-header {
  background-color: transparent;
}

.card-danger {
  background-color: #d9534f;
  border-color: #d9534f;
}

.card-danger .card-footer, .card-danger .card-header {
  background-color: transparent;
}

.card-outline-primary {
  background-color: transparent;
  border-color: #0275d8;
}

.card-outline-secondary {
  background-color: transparent;
  border-color: #ccc;
}

.card-outline-info {
  background-color: transparent;
  border-color: #5bc0de;
}

.card-outline-success {
  background-color: transparent;
  border-color: #5cb85c;
}

.card-outline-warning {
  background-color: transparent;
  border-color: #f0ad4e;
}

.card-outline-danger {
  background-color: transparent;
  border-color: #d9534f;
}

.card-inverse {
  color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-footer, .card-inverse .card-header {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.card-inverse .card-blockquote, .card-inverse .card-footer, .card-inverse .card-header, .card-inverse .card-title {
  color: #fff;
}

.card-inverse .card-blockquote .blockquote-footer, .card-inverse .card-link, .card-inverse .card-subtitle, .card-inverse .card-text {
  color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-link:focus, .card-inverse .card-link:hover {
  color: #fff;
}

.card-blockquote {
  padding: 0;
  margin-bottom: 0;
  border-left: 0;
}

.card-img {
  border-radius: calc(0.25rem - 1px);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img-top {
  border-top-right-radius: calc(0.25rem - 1px);
  border-top-left-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

@media (min-width: 576px) {
  .card-deck {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .card-deck .card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .card-deck .card:not(:first-child) {
    margin-left: 15px;
  }

  .card-deck .card:not(:last-child) {
    margin-right: 15px;
  }
}
@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .card-group .card {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .card-group .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group .card:first-child {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }

  .card-group .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }

  .card-group .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }

  .card-group .card:last-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }

  .card-group .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }

  .card-group .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }

  .card-group .card:not(:first-child):not(:last-child) {
    border-radius: 0;
  }

  .card-group .card:not(:first-child):not(:last-child) .card-img-bottom, .card-group .card:not(:first-child):not(:last-child) .card-img-top {
    border-radius: 0;
  }
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.75rem;
  }
}
.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eceeef;
  border-radius: 0.25rem;
}

.breadcrumb::after {
  display: block;
  content: "";
  clear: both;
}

.breadcrumb-item {
  float: left;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #636c72;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #636c72;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.page-item.disabled .page-link {
  color: #636c72;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #0275d8;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-link:focus, .page-link:hover {
  color: #014c8c;
  text-decoration: none;
  background-color: #eceeef;
  border-color: #ddd;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
  border-bottom-left-radius: 0.3rem;
  border-top-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-bottom-right-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-bottom-left-radius: 0.2rem;
  border-top-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-bottom-right-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

a.badge:focus, a.badge:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-default {
  background-color: #636c72;
}

.badge-default[href]:focus, .badge-default[href]:hover {
  background-color: #4b5257;
}

.badge-primary {
  background-color: #0275d8;
}

.badge-primary[href]:focus, .badge-primary[href]:hover {
  background-color: #025aa5;
}

.badge-success {
  background-color: #5cb85c;
}

.badge-success[href]:focus, .badge-success[href]:hover {
  background-color: #449d44;
}

.badge-info {
  background-color: #5bc0de;
}

.badge-info[href]:focus, .badge-info[href]:hover {
  background-color: #31b0d5;
}

.badge-warning {
  background-color: #f0ad4e;
}

.badge-warning[href]:focus, .badge-warning[href]:hover {
  background-color: #ec971f;
}

.badge-danger {
  background-color: #d9534f;
}

.badge-danger[href]:focus, .badge-danger[href]:hover {
  background-color: #c9302c;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eceeef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-hr {
  border-top-color: #d0d5d8;
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible .close {
  position: relative;
  top: -0.75rem;
  right: -1.25rem;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c1e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6d5ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7ecb5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9b9;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: #eceeef;
  border-radius: 0.25rem;
}

.progress-bar {
  height: 1rem;
  color: #fff;
  background-color: #0275d8;
}

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 1rem 1rem;
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  -o-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.list-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #464a4c;
  text-align: inherit;
}

.list-group-item-action .list-group-item-heading {
  color: #292b2c;
}

.list-group-item-action:focus, .list-group-item-action:hover {
  color: #464a4c;
  text-decoration: none;
  background-color: #f7f7f9;
}

.list-group-item-action:active {
  color: #292b2c;
  background-color: #eceeef;
}

.list-group-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item:focus, .list-group-item:hover {
  text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #636c72;
  cursor: not-allowed;
  background-color: #fff;
}

.list-group-item.disabled .list-group-item-heading, .list-group-item:disabled .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text, .list-group-item:disabled .list-group-item-text {
  color: #636c72;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8;
}

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small {
  color: inherit;
}

.list-group-item.active .list-group-item-text {
  color: #daeeff;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success, button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active, button.list-group-item-success.active {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info, button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active, button.list-group-item-info.active {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning, button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active, button.list-group-item-warning.active {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger, button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active, button.list-group-item-danger.active {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:focus, .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eceeef;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
}

.modal-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #eceeef;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip.bs-tether-element-attached-bottom, .tooltip.tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.bs-tether-element-attached-bottom .tooltip-inner::before, .tooltip.tooltip-top .tooltip-inner::before {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.bs-tether-element-attached-left, .tooltip.tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bs-tether-element-attached-left .tooltip-inner::before, .tooltip.tooltip-right .tooltip-inner::before {
  top: 50%;
  left: 0;
  margin-top: -5px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.bs-tether-element-attached-top, .tooltip.tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.bs-tether-element-attached-top .tooltip-inner::before, .tooltip.tooltip-bottom .tooltip-inner::before {
  top: 0;
  left: 50%;
  margin-left: -5px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bs-tether-element-attached-right, .tooltip.tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip.bs-tether-element-attached-right .tooltip-inner::before, .tooltip.tooltip-left .tooltip-inner::before {
  top: 50%;
  right: 0;
  margin-top: -5px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.tooltip-inner::before {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover.bs-tether-element-attached-bottom, .popover.popover-top {
  margin-top: -10px;
}

.popover.bs-tether-element-attached-bottom::after, .popover.bs-tether-element-attached-bottom::before, .popover.popover-top::after, .popover.popover-top::before {
  left: 50%;
  border-bottom-width: 0;
}

.popover.bs-tether-element-attached-bottom::before, .popover.popover-top::before {
  bottom: -11px;
  margin-left: -11px;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.popover.bs-tether-element-attached-bottom::after, .popover.popover-top::after {
  bottom: -10px;
  margin-left: -10px;
  border-top-color: #fff;
}

.popover.bs-tether-element-attached-left, .popover.popover-right {
  margin-left: 10px;
}

.popover.bs-tether-element-attached-left::after, .popover.bs-tether-element-attached-left::before, .popover.popover-right::after, .popover.popover-right::before {
  top: 50%;
  border-left-width: 0;
}

.popover.bs-tether-element-attached-left::before, .popover.popover-right::before {
  left: -11px;
  margin-top: -11px;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.bs-tether-element-attached-left::after, .popover.popover-right::after {
  left: -10px;
  margin-top: -10px;
  border-right-color: #fff;
}

.popover.bs-tether-element-attached-top, .popover.popover-bottom {
  margin-top: 10px;
}

.popover.bs-tether-element-attached-top::after, .popover.bs-tether-element-attached-top::before, .popover.popover-bottom::after, .popover.popover-bottom::before {
  left: 50%;
  border-top-width: 0;
}

.popover.bs-tether-element-attached-top::before, .popover.popover-bottom::before {
  top: -11px;
  margin-left: -11px;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bs-tether-element-attached-top::after, .popover.popover-bottom::after {
  top: -10px;
  margin-left: -10px;
  border-bottom-color: #f7f7f7;
}

.popover.bs-tether-element-attached-top .popover-title::before, .popover.popover-bottom .popover-title::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 20px;
  margin-left: -10px;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.popover.bs-tether-element-attached-right, .popover.popover-left {
  margin-left: -10px;
}

.popover.bs-tether-element-attached-right::after, .popover.bs-tether-element-attached-right::before, .popover.popover-left::after, .popover.popover-left::before {
  top: 50%;
  border-right-width: 0;
}

.popover.bs-tether-element-attached-right::before, .popover.popover-left::before {
  right: -11px;
  margin-top: -11px;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.bs-tether-element-attached-right::after, .popover.popover-left::after {
  right: -10px;
  margin-top: -10px;
  border-left-color: #fff;
}

.popover-title {
  padding: 8px 14px;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-right-radius: calc(0.3rem - 1px);
  border-top-left-radius: calc(0.3rem - 1px);
}

.popover-title:empty {
  display: none;
}

.popover-content {
  padding: 9px 14px;
}

.popover::after, .popover::before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover::before {
  content: "";
  border-width: 11px;
}

.popover::after {
  content: "";
  border-width: 10px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  width: 100%;
}

@media (-webkit-transform-3d) {
  .carousel-item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
}
@supports (-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0)) {
  .carousel-item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.carousel-item-next, .carousel-item-prev {
  position: absolute;
  top: 0;
}

@media (-webkit-transform-3d) {
  .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .active.carousel-item-right, .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  .active.carousel-item-left, .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@supports (-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0)) {
  .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .active.carousel-item-right, .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  .active.carousel-item-left, .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  max-width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-faded {
  background-color: #f7f7f7;
}

.bg-primary {
  background-color: #0275d8 !important;
}

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #025aa5 !important;
}

.bg-success {
  background-color: #5cb85c !important;
}

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44 !important;
}

.bg-info {
  background-color: #5bc0de !important;
}

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5 !important;
}

.bg-warning {
  background-color: #f0ad4e !important;
}

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f !important;
}

.bg-danger {
  background-color: #d9534f !important;
}

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c !important;
}

.bg-inverse {
  background-color: #292b2c !important;
}

a.bg-inverse:focus, a.bg-inverse:hover {
  background-color: #101112 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-top {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.rounded-right {
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-left {
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-0 {
  border-radius: 0;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.flex-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.flex-unordered {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-sm-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-sm-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-md-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-md-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-lg-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-lg-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .flex-xl-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-xl-unordered {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 3rem 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 0 !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem 0.25rem !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem 0.5rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem 1rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3 {
    margin-left: 1rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem 1.5rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem 3rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5 {
    margin-left: 3rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 0 !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem 0.25rem !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem 0.5rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem 1rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3 {
    padding-left: 1rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem 1.5rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem 3rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5 {
    padding-left: 3rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto {
    margin-left: auto !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 0 !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem 0.25rem !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1 {
    margin-left: 0.25rem !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem 0.5rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2 {
    margin-left: 0.5rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem 1rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3 {
    margin-left: 1rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem 1.5rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4 {
    margin-left: 1.5rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem 3rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5 {
    margin-left: 3rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .p-md-0 {
    padding: 0 0 !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem 0.25rem !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1 {
    padding-left: 0.25rem !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem 0.5rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2 {
    padding-left: 0.5rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem 1rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3 {
    padding-left: 1rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem 1.5rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4 {
    padding-left: 1.5rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem 3rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5 {
    padding-left: 3rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto {
    margin-left: auto !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 0 !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem 0.25rem !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem 0.5rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem 1rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3 {
    margin-left: 1rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem 1.5rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem 3rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5 {
    margin-left: 3rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 0 !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem 0.25rem !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem 0.5rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem 1rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3 {
    padding-left: 1rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem 1.5rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem 3rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5 {
    padding-left: 3rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 0 !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0 {
    margin-left: 0 !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem 0.25rem !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem 0.5rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem 1rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3 {
    margin-left: 1rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem 1.5rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem 3rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5 {
    margin-left: 3rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 0 !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0 {
    padding-left: 0 !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem 0.25rem !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem 0.5rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem 1rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3 {
    padding-left: 1rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem 1.5rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem 3rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5 {
    padding-left: 3rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto {
    margin-left: auto !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-bold {
  font-weight: 700;
}

.font-italic {
  font-style: italic;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: #636c72 !important;
}

a.text-muted:focus, a.text-muted:hover {
  color: #4b5257 !important;
}

.text-primary {
  color: #0275d8 !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: #025aa5 !important;
}

.text-success {
  color: #5cb85c !important;
}

a.text-success:focus, a.text-success:hover {
  color: #449d44 !important;
}

.text-info {
  color: #5bc0de !important;
}

a.text-info:focus, a.text-info:hover {
  color: #31b0d5 !important;
}

.text-warning {
  color: #f0ad4e !important;
}

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f !important;
}

.text-danger {
  color: #d9534f !important;
}

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c !important;
}

.text-gray-dark {
  color: #292b2c !important;
}

a.text-gray-dark:focus, a.text-gray-dark:hover {
  color: #101112 !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.invisible {
  visibility: hidden !important;
}

.hidden-xs-up {
  display: none !important;
}

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}
.hidden-xl-down {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap.min.css.map */
.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 1.75em;
  user-select: none;
  -webkit-user-select: none;
  color: inherit;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-placeholder {
  color: #999999;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #aaaaaa transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  display: inline-block;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  float: left;
  background-color: transparent;
  text-indent: 2px;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #eeeeee;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.ember-power-select-multiple-options {
  padding: 0;
  margin: 0;
}

.ember-power-select-multiple-option {
  border: 1px solid gray;
  border-radius: 4px;
  color: #333333;
  background-color: #e4e4e4;
  padding: 0 4px;
  display: inline-block;
  line-height: 1.45;
  float: left;
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: 1px solid #aaaaaa;
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-power-select-dropdown {
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  line-height: 1.75;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 1px solid #aaaaaa;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below, .ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid #aaaaaa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto;
  /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: 12.25em;
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 8px;
}

.ember-power-select-group[aria-disabled=true] {
  color: #999999;
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: #999999;
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: #dddddd;
}

.ember-power-select-option[aria-current=true] {
  background-color: #5897fb;
  color: #ffffff;
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #eeeeee;
}

.ember-power-select-trigger {
  padding: 0 16px 0 0;
}

.ember-power-select-selected-item, .ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: 25px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=rtl] {
  padding: 0 0 0 16px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item, .ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: 25px;
  right: initial;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

/* 
$light:             #f8f8f8;
$grey:              #424242;
$dark:              #2e3e4e;
$black:				      #2a2b3c;
$white:				      #ffffff;
*/
html {
  background-color: #e0e0e0;
}

body {
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.875rem;
  background-color: #f0f0f0;
  -webkit-font-smoothing: antialiased;
}

*:focus {
  outline: 0 !important;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

pre {
  color: inherit;
  background-color: #f8f8f8;
  border-color: rgba(120, 130, 140, 0.13);
}

blockquote {
  border-color: rgba(120, 130, 140, 0.13);
}

small {
  font-size: 90%;
}

sup {
  position: relative;
  top: -1em;
  font-size: 75%;
}

.pull-center {
  position: absolute;
  left: 50%;
}

.close {
  font-size: 1.3rem;
}

.img-responsive {
  width: 100%;
  height: auto;
}

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

.text-left {
  text-align: left;
}

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

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.center-block {
  margin: 0 auto;
}

.img-circle {
  border-radius: 100%;
}

.collapse.in,
.tooltip.in,
.fade.in {
  display: block;
  opacity: 1;
}

@media (max-width: 767px) {
  .pull-none-sm {
    float: none !important;
  }
}
@media (max-width: 575px) {
  .pull-none-xs {
    float: none !important;
  }
}
.label {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 90%;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  font-weight: bold;
  background-color: #b8b8b8;
  color: #fff;
  border-radius: 0.2rem;
}
.label.no-bg {
  background-color: transparent;
  color: inherit;
}

.label.up {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 4px;
  min-height: 4px;
  display: inline-block;
}

.label-lg {
  font-size: 1.33rem;
  padding: 5px 9px;
}

.label-sm {
  padding: 0.15em 0.35em;
}

.label-xs {
  padding: 0.1em 0.25em;
}

.list-group-item.active > .label,
.nav-pills > .active > a > .label {
  color: rgba(0, 0, 0, 0.87);
}

.btn .label {
  position: relative;
  top: -1px;
}

.btn {
  font-weight: 500;
  outline: 0 !important;
}
.btn:not([disabled]):hover, .btn:not([disabled]):focus, .btn:not([disabled]).active {
  box-shadow: inset 0 -10rem 0px rgba(158, 158, 158, 0.2);
}
.btn > i.pull-left, .btn > i.pull-right {
  line-height: 1.5;
}
.btn.rounded {
  padding-left: 1.2em;
  padding-right: 1.2em;
}

.btn-md {
  padding: 0.4695rem 0.75rem;
  font-size: 0.9rem;
}

.btn-xs {
  padding: 0.2195rem 0.5rem;
  font-size: 0.8rem;
}

.btn-outline {
  border-width: 1px;
  background-color: transparent;
  box-shadow: none !important;
}

.btn.b-primary:hover, .btn.b-primary:focus, .btn.primary:hover, .btn.primary:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #0cc2aa;
}
.btn.b-accent:hover, .btn.b-accent:focus, .btn.accent:hover, .btn.accent:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #a88add;
}
.btn.b-warn:hover, .btn.b-warn:focus, .btn.warn:hover, .btn.warn:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #fcc100;
}
.btn.b-success:hover, .btn.b-success:focus, .btn.success:hover, .btn.success:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #6cc788;
}
.btn.b-info:hover, .btn.b-info:focus, .btn.info:hover, .btn.info:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #6887ff;
}
.btn.b-warning:hover, .btn.b-warning:focus, .btn.warning:hover, .btn.warning:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #f77a99;
}
.btn.b-danger:hover, .btn.b-danger:focus, .btn.danger:hover, .btn.danger:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #f44455;
}
.btn.b-dark:hover, .btn.b-dark:focus, .btn.dark:hover, .btn.dark:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #132B2F;
}
.btn.b-black:hover, .btn.b-black:focus, .btn.black:hover, .btn.black:focus {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #102125;
}
.btn.b-white:hover, .btn.b-white:focus {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #ffffff;
}
.btn.b-light:hover, .btn.b-light:focus {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #f8f8f8;
}

.btn-icon {
  text-align: center;
  padding: 0 !important;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  position: relative;
  overflow: hidden;
}
.btn-icon i {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  line-height: inherit;
  border-radius: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-icon.btn-xs {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
}
.btn-icon.btn-sm {
  width: 1.775rem;
  height: 1.775rem;
  line-height: 1.775rem;
}
.btn-icon.btn-lg {
  width: 3.167rem;
  height: 3.167rem;
  line-height: 3.167rem;
}
.btn-icon.btn-social i:last-child {
  top: 100%;
}
.btn-icon.btn-social:hover i:first-child, .btn-icon.btn-social:focus i:first-child, .btn-icon.btn-social.active i:first-child {
  top: -100%;
}
.btn-icon.btn-social:hover i:last-child, .btn-icon.btn-social:focus i:last-child, .btn-icon.btn-social.active i:last-child {
  top: 0;
  color: #fff;
}
.btn-icon.btn-social-colored i:first-child {
  color: #fff;
}

.btn.white,
.btn.btn-default,
.btn.btn-secondary {
  border-color: rgba(120, 130, 140, 0.13);
}

.btn-default {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.btn-groups .btn {
  margin-bottom: 0.25rem;
}

.btn-fw {
  min-width: 7rem;
}

.card {
  border-color: rgba(120, 130, 140, 0.13);
}

.carousel-control .glyphicon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
  margin-left: -10px;
}

.dropdown-menu {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.87);
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
.dropdown-menu > li:not(.dropdown-item) > a {
  display: block;
  padding: 3px 20px;
}
.dropdown-menu > li:not(.dropdown-item) > a:hover, .dropdown-menu > li:not(.dropdown-item) > a:focus {
  background-color: rgba(0, 0, 0, 0.065);
}
.dropdown-menu > .divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: rgba(120, 130, 140, 0.13);
}
.dropdown-menu .active {
  background-color: rgba(0, 0, 0, 0.065);
}
.dropdown-menu.pull-left {
  left: auto !important;
  right: 100%;
}
.dropdown-menu.pull-right {
  left: auto;
  right: 0;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
}
.dropdown-menu.pull-up {
  top: 0;
}
.dropdown-menu.pull-down {
  top: 100% !important;
  left: 0 !important;
}
.dropup .dropdown-menu {
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.dropup .dropdown-menu.pull-right {
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.dropdown-menu.datepicker, .dropdown-menu.timepicker {
  padding: 6px;
  font-size: 0.8rem;
}
.dropdown-menu.datepicker .btn, .dropdown-menu.timepicker .btn {
  font-size: 0.8rem;
}
.dropdown-menu.datepicker .btn.btn-primary, .dropdown-menu.timepicker .btn.btn-primary {
  background-color: #6887ff;
  color: #fff;
}
.dropdown-menu.datepicker .btn:not(:hover), .dropdown-menu.timepicker .btn:not(:hover) {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.dropdown-item {
  color: inherit;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: inherit;
  background-color: rgba(0, 0, 0, 0.065);
}

.dropdown-divider {
  background-color: rgba(120, 130, 140, 0.13);
}

.flex-row > .nav-item > .dropdown-menu {
  position: absolute !important;
}

.dropdown-menu-scale {
  display: block;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 250ms cubic-bezier(0.24, 0.22, 0.015, 1.56);
  transition: all 250ms cubic-bezier(0.24, 0.22, 0.015, 1.56);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

.open > .dropdown-menu {
  display: block;
}

.show > .dropdown-menu-scale {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  pointer-events: auto;
  display: block !important;
}

.dropdown-header {
  padding: 8px 16px;
}

.dropdown-submenu {
  position: relative;
}
.dropdown-submenu:hover > .dropdown-menu, .dropdown-submenu:focus > .dropdown-menu {
  display: block;
}
.dropdown-submenu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-top: -6px;
  margin-left: -1px;
}
.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-bottom: -6px;
}

.popover {
  color: rgba(0, 0, 0, 0.87);
}

@media (max-width: 575px) {
  .dropdown-menu.pull-none-xs {
    left: 0;
  }
}
.form-control {
  border-color: rgba(120, 130, 140, 0.2);
  border-radius: 0;
}
.form-control:focus {
  border-color: rgba(120, 130, 140, 0.3);
}

.form-control-label {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

.custom-select {
  border-color: rgba(120, 130, 140, 0.13);
}

.form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

.form-control::-moz-placeholder {
  color: inherit;
  opacity: 0.3;
}

.form-control:-ms-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

.form-control-spin {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 50%;
  margin-top: -7px;
}

.input-group-addon {
  border-color: rgba(120, 130, 140, 0.2) !important;
  background-color: transparent;
  color: inherit;
}

.form-group-stack .form-control {
  margin-top: -1px;
  position: relative;
  border-radius: 0;
}
.form-group-stack .form-control:focus, .form-group-stack .form-control:active {
  z-index: 1;
}

.form-validation .form-control.ng-dirty.ng-invalid {
  border-color: #f44455;
}
.form-validation .form-control.ng-dirty.ng-valid, .form-validation .form-control.ng-dirty.ng-valid:focus {
  border-color: #6cc788;
}
.form-validation .ui-checks .ng-invalid.ng-dirty + i {
  border-color: #f44455;
}

.form-file {
  position: relative;
}
.form-file input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.input-group-sm > .form-control {
  min-height: 1.95rem;
}

.active-checked {
  opacity: 0;
}

input:checked + .active-checked {
  opacity: 1;
}

.list-group {
  border-radius: 3px;
  background: #fff;
}
.list-group.no-radius .list-group-item {
  border-radius: 0 !important;
}
.list-group.no-borders .list-group-item {
  border: none;
}
.list-group.no-border .list-group-item {
  border-width: 1px 0;
}
.list-group.no-border .list-group-item {
  border-width: 1px 0;
}
.list-group.no-border .list-group-item:first-child {
  border-top-width: 0;
}
.list-group.no-border .list-group-item:last-child {
  border-bottom-width: 0;
}
.list-group.no-bg .list-group-item {
  background-color: transparent;
}
.list-group.list-group-gap {
  background: transparent;
}

.list-group-item {
  border-color: rgba(120, 130, 140, 0.065);
  background: transparent;
  padding: 12px 16px;
  background-clip: padding-box;
}
.list-group-item.media {
  margin-top: 0;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  color: inherit;
  background-color: rgba(0, 0, 0, 0.065);
  border-color: rgba(120, 130, 140, 0.065);
  border-bottom-color: rgba(120, 130, 140, 0.065);
}
.list-group-item.active a, .list-group-item.active:hover a, .list-group-item.active:focus a {
  color: inherit;
}
.list-group-item:first-child {
  border-top-color: rgba(120, 130, 140, 0.13);
}
.list-group-item:last-child {
  border-bottom-color: rgba(120, 130, 140, 0.13);
}
.list-group-alt .list-group-item:nth-child(2n+2) {
  background-color: rgba(0, 0, 0, 0.065);
}
.list-group-alt .list-group-item.active:nth-child(2n+2) {
  background-color: rgba(0, 0, 0, 0.065);
}
.list-group-lg .list-group-item {
  padding: 16px 24px;
}
.list-group-md .list-group-item {
  padding-top: 16px;
  padding-bottom: 16px;
}
.list-group-sm .list-group-item {
  padding: 10px 12px;
}
.list-group-gap .list-group-item {
  margin-bottom: 5px;
  border-radius: 3px;
}
.list-group-gap .list-group-item:first-child {
  border-top-color: rgba(120, 130, 140, 0.065);
}
.list-group-gap .list-group-item:last-child {
  border-bottom-color: rgba(120, 130, 140, 0.065);
}

a.list-group-item {
  color: inherit;
}
a.list-group-item:hover, a.list-group-item:focus, a.list-group-item.hover {
  color: inherit;
  background-color: rgba(0, 0, 0, 0.065);
}

.modal .left {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal .right {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal .top {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal .bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal.in .left,
.modal.in .right,
.modal.in .top,
.modal.in .bottom, .modal.show .left,
.modal.show .right,
.modal.show .top,
.modal.show .bottom {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal.inactive {
  bottom: auto;
  overflow: visible;
}

.modal-open-aside {
  overflow: visible;
}

.modal > .left {
  position: fixed;
  z-index: 1055;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
}

.modal > .right {
  position: fixed;
  z-index: 1055;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
}

.modal > .top {
  position: fixed;
  z-index: 1055;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
}

.modal > .bottom {
  position: fixed;
  z-index: 1055;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-header,
.modal-content,
.modal-footer {
  border-color: rgba(120, 130, 140, 0.13);
}

.modal-content {
  color: #102125;
}

.black .modal-content {
  color: rgb(255, 255, 255);
  background: #464a4c;
}

.black .close {
  color: rgb(255, 255, 255);
}

.aside {
  color: rgba(0, 0, 0, 0.87);
}

.aside-header,
.aside-header .close {
  color: inherit !important;
  background-color: transparent !important;
}

.aside-header,
.aside-footer {
  border-color: rgba(120, 130, 140, 0.13) !important;
}

.aside-title {
  font-size: 1.2rem;
  margin: 0.45rem 0;
}

.modal.animate .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal.animate .fade-right-big {
  -webkit-animation: fadeOutLeftBig 0.5s;
  animation: fadeOutLeftBig 0.5s;
}
.modal.animate .fade-left-big {
  -webkit-animation: fadeOutRightBig 0.5s;
  animation: fadeOutRightBig 0.5s;
}
.modal.animate .fade-up-big {
  -webkit-animation: fadeOutUpBig 0.5s;
  animation: fadeOutUpBig 0.5s;
}
.modal.animate .fade-down-big {
  -webkit-animation: fadeOutDownBig 0.5s;
  animation: fadeOutDownBig 0.5s;
}
.modal.animate .fade-right {
  -webkit-animation: fadeOutLeft 0.5s;
  animation: fadeOutLeft 0.5s;
}
.modal.animate .fade-left {
  -webkit-animation: fadeOutRight 0.5s;
  animation: fadeOutRight 0.5s;
}
.modal.animate .fade-up {
  -webkit-animation: fadeOutUp 0.5s;
  animation: fadeOutUp 0.5s;
}
.modal.animate .fade-down {
  -webkit-animation: fadeOutDown 0.5s;
  animation: fadeOutDown 0.5s;
}
.modal.animate .flip-x {
  -webkit-animation: flipOutX 0.5s;
  animation: flipOutX 0.5s;
}
.modal.animate .flip-y {
  -webkit-animation: flipOutY 0.5s;
  animation: flipOutY 0.5s;
}
.modal.animate .zoom {
  -webkit-animation: zoomOut 0.5s;
  animation: zoomOut 0.5s;
}
.modal.animate .roll {
  -webkit-animation: rollOut 0.5s;
  animation: rollOut 0.5s;
}
.modal.animate .bounce {
  -webkit-animation: bounceOut 0.5s;
  animation: bounceOut 0.5s;
}
.modal.animate .rotate {
  -webkit-animation: rotateOut 0.5s;
  animation: rotateOut 0.5s;
}
.modal.animate.in .fade-right-big, .modal.animate.show .fade-right-big {
  -webkit-animation: fadeInRightBig 0.5s;
  animation: fadeInRightBig 0.5s;
}
.modal.animate.in .fade-left-big, .modal.animate.show .fade-left-big {
  -webkit-animation: fadeInLeftBig 0.5s;
  animation: fadeInLeftBig 0.5s;
}
.modal.animate.in .fade-up-big, .modal.animate.show .fade-up-big {
  -webkit-animation: fadeInUpBig 0.5s;
  animation: fadeInUpBig 0.5s;
}
.modal.animate.in .fade-down-big, .modal.animate.show .fade-down-big {
  -webkit-animation: fadeInDownBig 0.5s;
  animation: fadeInDownBig 0.5s;
}
.modal.animate.in .fade-right, .modal.animate.show .fade-right {
  -webkit-animation: fadeInRight 0.5s;
  animation: fadeInRight 0.5s;
}
.modal.animate.in .fade-left, .modal.animate.show .fade-left {
  -webkit-animation: fadeInLeft 0.5s;
  animation: fadeInLeft 0.5s;
}
.modal.animate.in .fade-up, .modal.animate.show .fade-up {
  -webkit-animation: fadeInUp 0.5s;
  animation: fadeInUp 0.5s;
}
.modal.animate.in .fade-down, .modal.animate.show .fade-down {
  -webkit-animation: fadeInDown 0.5s;
  animation: fadeInDown 0.5s;
}
.modal.animate.in .flip-x, .modal.animate.show .flip-x {
  -webkit-animation: flipInX 0.5s;
  animation: flipInX 0.5s;
}
.modal.animate.in .flip-y, .modal.animate.show .flip-y {
  -webkit-animation: flipInY 0.5s;
  animation: flipInY 0.5s;
}
.modal.animate.in .zoom, .modal.animate.show .zoom {
  -webkit-animation: zoomIn 0.5s;
  animation: zoomIn 0.5s;
}
.modal.animate.in .roll, .modal.animate.show .roll {
  -webkit-animation: rollIn 0.5s;
  animation: rollIn 0.5s;
}
.modal.animate.in .bounce, .modal.animate.show .bounce {
  -webkit-animation: bounceIn 0.5s;
  animation: bounceIn 0.5s;
}
.modal.animate.in .rotate, .modal.animate.show .rotate {
  -webkit-animation: rotateIn 0.5s;
  animation: rotateIn 0.5s;
}

.nav {
  border: inherit;
}

.nav-item {
  border: inherit;
}

.nav-link {
  border: inherit;
  position: relative;
}

.flex-row .nav-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.nav-md .nav-link {
  padding: 0.5rem 1rem;
}

.nav-sm .nav-link {
  padding: 0.25rem 0.75rem;
}

.nav-xs .nav-link {
  padding: 0.15rem 0.5rem;
  font-size: 90%;
}

.nav-rounded .nav-link {
  border-radius: 2rem;
}

.nav-tabs {
  border-bottom-width: 0;
  position: relative;
  z-index: 1;
}
.nav-tabs .nav-link {
  background: transparent !important;
  color: inherit !important;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:hover, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: rgba(120, 130, 140, 0.13);
  border-bottom-color: transparent;
}

.tab-content.tab-alt .tab-pane {
  display: block;
  height: 0;
  overflow: hidden;
}
.tab-content.tab-alt .tab-pane.active {
  height: auto;
  overflow: visible;
}

.nav-justified .nav-item {
  display: table-cell;
  width: 1%;
  float: none !important;
  text-align: center;
}

.nav-lists .nav-item {
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
  background-clip: padding-box;
}

.nav-active-border .nav-link:before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  left: 50%;
  right: 50%;
  bottom: 0;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
}
.nav-active-border .nav-link:hover:before, .nav-active-border .nav-link:focus:before, .nav-active-border .nav-link.active:before {
  left: 0%;
  right: 0%;
  border-bottom-color: inherit;
}
.nav-active-border.top .nav-link:before {
  bottom: auto;
  top: 0;
}
.nav-active-border.left .nav-link {
  float: none;
}
.nav-active-border.left .nav-link:before {
  border-bottom-width: 0;
  right: auto;
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: transparent;
  left: 0;
  top: 50%;
  bottom: 50%;
}
.nav-active-border.left .nav-link:hover:before, .nav-active-border.left .nav-link:focus:before, .nav-active-border.left .nav-link.active:before {
  top: 0%;
  bottom: 0%;
  border-left-color: inherit;
}
.nav-active-border.left.right .nav-link:before {
  left: auto;
  right: 0;
}

.breadcrumb {
  background-color: rgba(0, 0, 0, 0.065);
}
.breadcrumb > li + li:before {
  content: "/ ";
}

.navbar {
  background: inherit;
  min-height: 3.5rem;
}
.navbar .up {
  margin: 0 -0.6em;
}
.navbar .avatar {
  top: -2px;
}

.navbar-md {
  min-height: 4rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.navbar-md .navbar {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-sm {
  min-height: 3rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.navbar-sm .navbar {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  font-weight: bold;
}
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-brand img,
.navbar-brand svg {
  max-height: 24px;
  vertical-align: -4px;
  display: inline-block;
}
.navbar-brand > span {
  display: inline-block;
  line-height: 0.8;
  margin-left: 10px;
}
.navbar-brand.md img,
.navbar-brand.md svg {
  max-height: 32px;
  vertical-align: -8px;
}
.navbar-brand.lg img,
.navbar-brand.lg svg {
  max-height: 48px;
  vertical-align: -16px;
}
.pull-center .navbar-brand {
  margin-left: -50%;
  float: left;
}

.navbar-collapse.collapsing,
.navbar-collapse.collapse.show {
  background: inherit;
  left: 0;
  top: 100%;
  max-height: 100vh;
  overflow: auto;
  width: 100%;
}
.navbar-collapse.collapsing .nav-active-border,
.navbar-collapse.collapse.show .nav-active-border {
  border-color: transparent;
}

@media (max-width: 575px) {
  .navbar-toggleable .navbar-collapse.collapsing,
.navbar-toggleable .navbar-collapse.collapse.show {
    padding: 0 1rem 4rem 1rem;
    position: absolute;
    z-index: 1040;
  }
}
@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-collapse.collapsing,
.navbar-toggleable-sm .navbar-collapse.collapse.show {
    padding: 0 1rem 4rem 1rem;
    position: absolute;
    z-index: 1040;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-collapse.collapsing,
.navbar-toggleable-md .navbar-collapse.collapse.show {
    padding: 0 1rem 4rem 1rem;
    position: absolute;
    z-index: 1040;
  }
}
@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-collapse.collapsing,
.navbar-toggleable-lg .navbar-collapse.collapse.show {
    padding: 0 1rem 4rem 1rem;
    position: absolute;
    z-index: 1040;
  }
}
.navbar-toggleable-xl .navbar-collapse.collapsing,
.navbar-toggleable-xl .navbar-collapse.collapse.show {
  padding: 0 1rem 4rem 1rem;
  position: absolute;
  z-index: 1040;
}

.pagination .page-item,
.pagination > li > a,
.pagination > li > span,
.pager .page-item,
.pager > li > a,
.pager > li > span {
  color: inherit !important;
  background-color: transparent !important;
  border-color: rgba(120, 130, 140, 0.13) !important;
}
.pagination .page-item:hover, .pagination .page-item:focus,
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus,
.pager .page-item:hover,
.pager .page-item:focus,
.pager > li > a:hover,
.pager > li > a:focus,
.pager > li > span:hover,
.pager > li > span:focus {
  border-color: rgba(120, 130, 140, 0.13);
  background-color: rgba(0, 0, 0, 0.065);
  color: inherit;
}
.pagination .page-item.active,
.pagination > .active > a,
.pagination > .active > span,
.pager .page-item.active,
.pager > .active > a,
.pager > .active > span {
  color: rgb(255, 255, 255) !important;
  background-color: #0cc2aa !important;
  border-color: #0cc2aa !important;
}

.pagination > li {
  display: inline;
  list-style: none;
}
.pagination > li > a {
  position: relative;
  float: left;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.5;
  color: #0275d8;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a:focus {
  color: #014c8c;
  background-color: #eceeef;
  border-color: #ddd;
}
.pagination > li > a:hover {
  color: #014c8c;
  background-color: #eceeef;
  border-color: #ddd;
}

.pager {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  list-style: none;
}
.pager::after {
  display: block;
  content: "";
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: rgba(0, 0, 0, 0.065);
  border: 1px solid rgba(120, 130, 140, 0.13);
  border-radius: 500px;
}
.pager li > a:focus {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.065);
}
.pager li > a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.065);
}
.pager .disabled > a, .pager .disabled > a:focus {
  cursor: inherit;
  background-color: rgba(0, 0, 0, 0.065);
}
.pager .disabled > a:hover {
  cursor: inherit;
  background-color: rgba(0, 0, 0, 0.065);
}
.pager .disabled > span {
  cursor: inherit;
  background-color: rgba(0, 0, 0, 0.065);
}

.pager-next > a,
.pager-next > span {
  float: right;
}

.pager-prev > a,
.pager-prev > span {
  float: left;
}

.progress {
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.065);
}

.progress-xxs {
  height: 4px;
}

.progress-xs {
  height: 8px;
}

.progress-sm {
  height: 12px;
  font-size: 0.8em;
}

.col-0 {
  clear: left;
}

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.row.no-gutter [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row {
  margin-left: -12px;
  margin-right: -12px;
}
.row [class*=col-] {
  padding-left: 12px;
  padding-right: 12px;
}

.row-sm {
  margin-left: -8px;
  margin-right: -8px;
}
.row-sm [class*=col-] {
  padding-left: 8px;
  padding-right: 8px;
}

.row-xs {
  margin-left: -4px;
  margin-right: -4px;
}
.row-xs [class*=col-] {
  padding-left: 4px;
  padding-right: 4px;
}

@media (max-width: 991px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .row [class*=col-] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .row-2 [class*=col] {
    width: 50%;
    float: left;
  }

  .row-2 .col-0 {
    clear: none;
  }

  .row-2 li:nth-child(odd) {
    clear: left;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: -4px;
    margin-right: -4px;
  }
  .row [class*=col-] {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.panel .table {
  border-color: rgba(120, 130, 140, 0.045) !important;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th {
  padding-left: 16px;
  padding-right: 16px;
  border-color: rgba(120, 130, 140, 0.045);
}
.table > thead > tr > th {
  padding: 10px 16px;
  border-color: rgba(120, 130, 140, 0.045);
}

.table-condensed thead > tr > th,
.table-condensed tbody > tr > th,
.table-condensed tfoot > tr > th,
.table-condensed thead > tr > td,
.table-condensed tbody > tr > td,
.table-condensed tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border-color: rgba(120, 130, 140, 0.045);
}

.table-striped > tbody > tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.025);
  background-clip: padding-box;
}
.table-striped > thead > th {
  background-color: rgba(0, 0, 0, 0.025);
  border-right: 1px solid rgba(120, 130, 140, 0.045);
}
.table-striped > thead > th:last-child {
  border-right: none;
}

.table-hover tr:hover,
.table tr.active,
.table td.active,
.table th.active {
  background-color: rgba(0, 0, 0, 0.065) !important;
}

.arrow {
  position: absolute;
  z-index: 10;
}
.arrow:before, .arrow:after {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 9px;
  border-color: transparent;
  border-style: solid;
}
.arrow:after {
  border-width: 8px;
}
.arrow.top {
  top: -9px;
  left: 50%;
  margin-left: -9px;
}
.arrow.top.pull-in {
  top: -4px;
}
.arrow.top:before {
  border-bottom-color: rgba(120, 130, 140, 0.13);
  border-top-width: 0;
}
.arrow.top:after {
  top: 1px;
  left: 1px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: inherit;
  border-left-color: transparent;
  border-top-width: 0;
}
.arrow.right {
  top: 50%;
  right: 0;
  margin-top: -9px;
}
.arrow.right.pull-in {
  right: 4px;
}
.arrow.right:before {
  border-left-color: rgba(120, 130, 140, 0.13);
  border-right-width: 0;
}
.arrow.right:after {
  top: 1px;
  left: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: inherit;
  border-right-width: 0;
}
.arrow.bottom {
  bottom: 0;
  left: 50%;
  margin-left: -9px;
}
.arrow.bottom.pull-in {
  bottom: 4px;
}
.arrow.bottom:before {
  border-top-color: rgba(120, 130, 140, 0.13);
  border-bottom-width: 0;
}
.arrow.bottom:after {
  top: 0px;
  left: 1px;
  border-top-color: inherit;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-bottom-width: 0;
}
.arrow.left {
  top: 50%;
  left: -9px;
  margin-top: -9px;
}
.arrow.left.pull-in {
  left: -4px;
}
.arrow.left:before {
  border-right-color: rgba(120, 130, 140, 0.13);
  border-left-width: 0;
}
.arrow.left:after {
  top: 1px;
  left: 1px;
  border-top-color: transparent;
  border-right-color: inherit;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-left-width: 0;
}
.arrow.pull-left {
  left: 18px;
}
.arrow.pull-right {
  left: auto;
  right: 26px;
}
.arrow.pull-top {
  top: 18px;
}
.arrow.pull-bottom {
  top: auto;
  bottom: 26px;
}
.arrow.b-primary:before, .arrow.b-info:before, .arrow.b-success:before, .arrow.b-warning:before, .arrow.b-danger:before, .arrow.b-accent:before, .arrow.b-dark:before {
  border-color: transparent;
}

.avatar {
  position: relative;
  display: inline-block;
  width: 40px;
  line-height: 1;
  border-radius: 500px;
  white-space: nowrap;
  font-weight: bold;
}
.avatar img {
  border-radius: 500px;
  width: 100%;
}
.avatar i {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  margin: 1px;
  border-width: 2px;
  border-style: solid;
  border-radius: 100%;
}
.avatar i.right {
  left: auto;
  right: 0;
}
.avatar i.bottom {
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
}
.avatar i.left {
  top: auto;
  bottom: 0;
}
.avatar i.on {
  background-color: #6cc788;
}
.avatar i.off {
  background-color: #f8f8f8;
}
.avatar i.away {
  background-color: #f77a99;
}
.avatar i.busy {
  background-color: #f44455;
}
.avatar.w-32 i {
  margin: 0px;
}
.avatar.w-48 i {
  margin: 2px;
}
.avatar.w-56 i {
  margin: 3px;
}
.avatar.w-64 i {
  margin: 4px;
}
.avatar.w-96 i {
  margin: 9px;
}
.avatar.w-128 i {
  margin: 14px;
}

.row-col {
  display: table;
  table-layout: fixed;
  border-spacing: 0;
  width: 100%;
  height: 100%;
}
.row-col > [class*=col-],
.row-col > [class*=" col-"] {
  vertical-align: top;
  float: none;
  padding: 0;
  position: static;
}

.row-row {
  display: table-row;
  height: 100%;
}

.row-cell {
  display: table-cell;
  vertical-align: top;
}

.row-body {
  position: relative;
  height: 100%;
  width: 100%;
}
.ie .row-body {
  display: table-cell;
  overflow: auto;
}
.ie .row-body .row-inner {
  overflow: visible !important;
}

.row-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.v-m {
  vertical-align: middle !important;
}

.v-t {
  vertical-align: top !important;
}

.v-b {
  vertical-align: bottom !important;
}

.v-c {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .row-col > [class*=col-lg],
.row-col > [class*=" col-lg"] {
    display: table-cell;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .row-col > [class*=col-md],
.row-col > [class*=" col-md"] {
    display: table-cell;
    height: 100%;
  }
}
@media (min-width: 576px) {
  .row-col > [class*=col-sm],
.row-col > [class*=" col-sm"] {
    display: table-cell;
    height: 100%;
  }
}
.row-col > [class*=col-xs],
.row-col > [class*=" col-xs"] {
  display: table-cell;
  height: 100%;
}

@media (max-width: 575px) {
  .row-col-xs {
    display: block;
  }
  .row-col-xs .row-body {
    overflow: visible !important;
  }
  .row-col-xs .row-inner {
    position: static;
  }
}
.box,
.box-color {
  background-color: #fff;
  position: relative;
  margin-bottom: 1.5rem;
}

.box-header {
  position: relative;
  padding: 1rem;
}
.box-header h2,
.box-header h3,
.box-header h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
}
.box-header h3 {
  font-size: 16px;
}
.box-header h4 {
  font-size: 15px;
}
.box-header small {
  display: block;
  margin-top: 4px;
  opacity: 0.6;
}

.box-body {
  padding: 1rem;
}

.box-footer {
  padding: 1rem;
}

.box-divider {
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0 16px;
  height: 0;
}

.box-tool {
  position: absolute;
  right: 10px;
  top: 10px;
}
.box-tool .nav-link {
  padding: 0.25rem 0.35rem;
}

.box-shadow,
.box-shadow .box,
.box-shadow .box-color {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03), 0 1px 0 rgba(0, 0, 0, 0.03);
}

.box-shadow-z0,
.box-shadow-z0 .box,
.box-shadow-z0 .box-color {
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.15);
}

.box-shadow-z1,
.box-shadow-z1 .box,
.box-shadow-z1 .box-color {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-shadow-z2,
.box-shadow-z2 .box,
.box-shadow-z2 .box-color {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-shadow-z3,
.box-shadow-z3 .box,
.box-shadow-z3 .box-color {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-shadow-z4,
.box-shadow-z4 .box,
.box-shadow-z4 .box-color {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

.box-radius-1x,
.box-radius-1x .box,
.box-radius-1x .box-color {
  border-radius: 2px;
}

.box-radius-2x,
.box-radius-2x .box,
.box-radius-2x .box-color {
  border-radius: 3px;
}

.box-radius-3x,
.box-radius-3x .box,
.box-radius-3x .box-color {
  border-radius: 4px;
}

.ui-check {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}
.ui-check input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.ui-check input:checked + i:before {
  left: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  background-color: #0cc2aa;
}
.ui-check input:checked + span .active {
  display: inherit;
}
.ui-check input[type=radio] + i, .ui-check input[type=radio] + i:before {
  border-radius: 50%;
}
.ui-check input[disabled] + i, fieldset[disabled] .ui-check input + i {
  border-color: rgba(134, 143, 152, 0.2);
}
.ui-check input[disabled] + i:before, fieldset[disabled] .ui-check input + i:before {
  background-color: rgba(134, 143, 152, 0.2);
}
.ui-check > i {
  width: 16px;
  height: 16px;
  line-height: 1;
  box-shadow: 0 0 1px rgba(120, 130, 140, 0.35);
  margin-left: -20px;
  margin-top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  background-clip: padding-box;
  position: relative;
}
.ui-check > i:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0px;
  height: 0px;
  background-color: transparent;
}
.ui-check > span {
  margin-left: -20px;
}
.ui-check > span .active {
  display: none;
}
.ui-check.ui-check-color input:checked + i:before {
  background-color: #fff;
}

.ui-check-md input:checked + i:before {
  left: 6px;
  top: 6px;
}
.ui-check-md > i {
  width: 18px;
  height: 18px;
}

.ui-check-lg input:checked + i:before {
  width: 12px;
  height: 12px;
  left: 9px;
  top: 9px;
}
.ui-check-lg > i {
  width: 30px;
  height: 30px;
}

/*
Flexbox
*/
[layout],
[data-layout] {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

[layout=column],
[data-layout=column] {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

[layout=row],
[data-layout=row] {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

[flex],
[data-flex] {
  box-sizing: border-box;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*layout*/
html {
  height: 100%;
}

body {
  height: auto;
  min-height: 100%;
  position: relative;
}

.app-aside {
  position: fixed !important;
  z-index: 1030;
  float: left;
  height: 100%;
}

.app-content {
  box-shadow: none;
}
.app-content::after {
  display: block;
  content: "";
  clear: both;
}

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: inherit;
  z-index: 1020;
}
.app-header ~ .app-body {
  padding-top: 3.5rem;
}
.app-header.navbar-md ~ .app-body {
  padding-top: 4rem;
}
.app-header.navbar-sm ~ .app-body {
  padding-top: 3rem;
}

.app-body-inner {
  padding-top: inherit !important;
  padding-bottom: inherit !important;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.app-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: inherit;
}
.app-footer:not(.hide) ~ .app-body {
  padding-bottom: 3.125rem;
}

.app-fixed {
  overflow: hidden;
}
.app-fixed .app {
  height: 100%;
}
.app-fixed .app-content {
  position: relative;
  min-height: 100%;
}
.app-fixed .app-footer {
  margin-left: 0;
}

@media (min-width: 992px) {
  .app-aside {
    opacity: 1;
    display: block !important;
  }
  .app-aside,
.app-aside .scroll {
    width: 12.5rem;
  }
  .app-aside.lg:not(.folded), .app-aside.lg:not(.folded) .scroll {
    width: 13.75rem;
  }
  .app-aside.lg:not(.hide) ~ .app-content {
    margin-left: 13.75rem;
  }
  .app-aside.sm:not(.folded), .app-aside.sm:not(.folded) .scroll {
    width: 11.25rem;
  }
  .app-aside.sm:not(.hide) ~ .app-content {
    margin-left: 11.25rem;
  }
  .app-aside.folded {
    width: 4rem;
  }
  .app-aside.folded:not(.hide) ~ .app-content {
    margin-left: 4rem;
  }
  .app-aside.folded.md {
    width: 5rem;
  }
  .app-aside.folded.md:not(.hide) ~ .app-content {
    margin-left: 5rem;
  }
  .app-aside:not(.hide) ~ .app-content {
    margin-left: 12.5rem;
  }
  .app-aside .left {
    position: absolute;
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .hide-scroll {
    width: auto;
    margin-right: -17px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991px) {
  .app-aside.modal {
    width: 100%;
    position: fixed;
    z-index: 1050;
  }
  .app-aside .left {
    position: fixed;
    width: 190px;
  }
}
@media print {
  .app-aside,
.app-header,
.app-footer,
.switcher {
    display: none;
  }
}
/* fix ie9 */
.ie9 .app-aside {
  position: static !important;
}
.ie9 .app-aside .left {
  width: inherit;
  position: absolute;
}

@media (max-width: 991px) {
  body.container,
.app .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  body.container {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }
  body.container,
body.container .container {
    padding-left: 0;
    padding-right: 0;
  }
  body.container .app-aside {
    left: inherit;
    right: auto;
  }
  body.container .app-aside.lg ~ .app-content .app-header {
    width: 45rem;
  }
  body.container .app-aside.sm ~ .app-content .app-header {
    width: 47.5rem;
  }
  body.container .app-aside.folded ~ .app-content .app-header {
    width: 54.75rem;
  }
  body.container .app-aside.folded.md ~ .app-content .app-header {
    width: 53.75rem;
  }
  body.container .app-aside ~ .app-content .app-header {
    width: 46.25rem;
  }
  body.container .app-header {
    left: inherit;
    right: auto;
    margin-left: 0;
    width: 58.75rem;
  }
}
@media (min-width: 1200px) {
  body.container .app-aside.lg ~ .app-content .app-header {
    width: 57.5rem;
  }
  body.container .app-aside.sm ~ .app-content .app-header {
    width: 60rem;
  }
  body.container .app-aside.folded ~ .app-content .app-header {
    width: 67.25rem;
  }
  body.container .app-aside.folded.md ~ .app-content .app-header {
    width: 66.25rem;
  }
  body.container .app-aside ~ .app-content .app-header {
    width: 58.75rem;
  }
  body.container .app-header {
    width: 71.25rem;
  }
}
.list {
  padding-left: 0;
  padding-right: 0;
  border-radius: 3px;
}
.list.no-border {
  padding-top: 8px;
  padding-bottom: 8px;
}

.list-item {
  display: block;
  position: relative;
  padding: 12px 16px;
}
.list-item::after {
  display: block;
  content: "";
  clear: both;
}
.list-item:last-child .list-body:after {
  border: none;
}
.no-border .list-item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.no-padding .list-item {
  padding-left: 0;
  padding-right: 0;
}

.list-left {
  float: left;
  padding-right: 1rem;
}
.list-left + .list-body {
  margin-left: 56px;
}

.list-right {
  float: right;
  padding-left: 1rem;
  text-align: right;
}
.list-right + .list-body {
  margin-right: 100px;
}

.list-body h3 {
  font-size: 16px;
  margin: 0 0 3px 0;
  font-weight: normal;
}
.list-body:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid rgba(120, 130, 140, 0.065);
}
.inset .list-body:after {
  left: 72px;
}
.no-border .list-body:after {
  display: none;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #0cc2aa;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #0cc2aa;
  border-left-color: #0cc2aa;
  border-radius: 10px;
  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation: loading-bar-spinner 400ms linear infinite;
  -ms-animation: loading-bar-spinner 400ms linear infinite;
  -o-animation: loading-bar-spinner 400ms linear infinite;
  animation: loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loading-bar-spinner {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes loading-bar-spinner {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes loading-bar-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-bar-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes subdomain-spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.subdomain-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #7C1D2B;
  background-image: url("/images/rsk-login-bg-opt-7cd5a1b3700e43c6939136bb88ae991f.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subdomain-loading-content {
  text-align: center;
  color: black;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 50px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.subdomain-loading-spinner {
  display: inline-block;
  width: 2em;
  height: 2em;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: black;
  border-radius: 50%;
  animation: subdomain-spinner-spin 1s linear infinite;
  margin: 0 auto 10px;
}

.subdomain-loading-text {
  color: black;
}

.subdomain-loading-overlay-ember {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.navside {
  border: inherit;
}
.navside ul {
  padding-left: 0;
  padding-right: 0;
  list-style: none;
  display: block;
}
.navside [flex] {
  overflow: auto;
}
.navside .nav {
  border: inherit;
}
.navside .nav li {
  border: inherit;
  position: relative;
}
.navside .nav li li a {
  line-height: 2rem;
  padding-left: 3.5rem;
}
.navside .nav li li a .nav-text {
  padding: 0.4375rem 0;
}
.navside .nav li li li a {
  padding-left: 4.5rem;
}
.navside .nav li li li li a {
  padding-left: 5.5rem;
}
.navside .nav li a {
  display: block;
  padding: 0 1rem;
  line-height: 2.25rem;
  position: relative;
}
.navside .nav li a::after {
  display: block;
  content: "";
  clear: both;
}
.navside .nav li a:hover, .navside .nav li a:focus {
  background-color: rgba(0, 0, 0, 0.065);
}
.navside .nav li.active {
  background-color: rgba(0, 0, 0, 0.065);
}
.navside .nav li.active > a {
  background-color: transparent;
}
.navside .nav li.active > a .nav-caret i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navside .nav-header {
  padding: 0 1rem;
  line-height: 2.25rem;
}
.navside .nav-header:hover, .navside .nav-header:focus {
  background-color: transparent !important;
}
.navside .nav-header:after {
  display: none;
}
.navside .navbar-brand {
  float: none;
  margin-right: 0;
}

.nav-fold {
  padding: 0.75rem 1rem;
}

.nav-text {
  display: block;
  line-height: 1.125rem;
  padding: 0.5625rem 0;
}
.nav > li > a .nav-text {
  font-weight: 500;
}
.nav-text span,
.nav-text small {
  display: block;
}
.navside .nav-text {
  opacity: 0.75;
}
.navside a:hover > .nav-text, .navside a:focus > .nav-text, .navside .active > a > .nav-text {
  opacity: 1;
}
.navbar .nav-text {
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  padding: 0;
}
.navbar .nav-text span.text-xs {
  margin-top: 0.25rem;
}

.nav-icon {
  float: left;
  line-height: inherit;
  margin-right: 1rem;
  top: 0;
  min-width: 1.5rem;
  text-align: center;
}
.nav-icon i {
  position: relative;
}
.nav-icon i svg,
.nav-icon i img {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.navbar .nav-icon {
  margin-right: 0.5rem;
}

.nav-label {
  float: right;
  margin-left: 1rem;
  font-style: normal;
  z-index: 1;
}
.navbar .nav-label {
  margin-left: 0.5rem;
}

.nav-caret {
  float: right;
  margin-left: 1rem;
  opacity: 0.45;
}
.nav-caret i {
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.navbar .nav-caret {
  margin-left: 0.5rem;
}

.nav-sub {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease 0s;
  transition: max-height 0.4s ease 0s;
}
.active > .nav-sub {
  max-height: 50rem;
}

@media (min-width: 992px) {
  .folded,
.folded .scroll {
    width: 4rem;
  }
  .folded.md,
.folded.md .scroll {
    width: 5rem;
  }
  .folded .hidden-folded {
    display: none;
  }
  .folded .nav li ul {
    display: none;
  }
  .folded .nav > li > a {
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
  }
  .folded .nav > li > a .nav-caret,
.folded .nav > li > a .nav-text {
    display: none;
  }
  .folded .nav > li > a .nav-label {
    position: absolute;
    top: -6px;
    right: 6px;
  }
  .folded .nav > li > a .nav-icon {
    float: none;
    line-height: 2.5rem;
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }
  .folded.show-text .nav > li > a .nav-text {
    display: block;
    margin-top: -18px;
    font-size: 0.85em;
  }
  .folded .navbar {
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
  }
  .folded .navbar-brand {
    float: none;
    margin: 0;
  }
  .folded .nav-stacked .nav {
    margin: 0 12px;
  }
  .folded .nav-fold {
    padding: 8px 16px;
  }
  .folded .nav-fold .pull-left {
    float: none !important;
    margin: 0;
  }
  .folded .nav-fold .pull-left img {
    width: 100%;
    height: auto;
  }

  .folded.nav-expand {
    -webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
  }
  .folded.nav-expand:hover,
.folded.nav-expand:hover .scroll, .folded.nav-expand:focus,
.folded.nav-expand:focus .scroll, .folded.nav-expand.active,
.folded.nav-expand.active .scroll {
    width: 12.5rem !important;
  }
  .folded.nav-expand:hover > *, .folded.nav-expand:focus > *, .folded.nav-expand.active > * {
    width: 12.5rem;
  }
  .folded.nav-expand:hover .hidden-folded, .folded.nav-expand:focus .hidden-folded, .folded.nav-expand.active .hidden-folded {
    display: block;
  }
  .folded.nav-expand:hover .hidden-folded.inline, .folded.nav-expand:focus .hidden-folded.inline, .folded.nav-expand.active .hidden-folded.inline {
    display: inline-block;
  }
  .folded.nav-expand:hover .nav li ul, .folded.nav-expand:focus .nav li ul, .folded.nav-expand.active .nav li ul {
    display: inherit;
  }
  .folded.nav-expand:hover .nav > li > a, .folded.nav-expand:focus .nav > li > a, .folded.nav-expand.active .nav > li > a {
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
  }
  .folded.nav-expand:hover .nav > li > a .nav-caret,
.folded.nav-expand:hover .nav > li > a .nav-text, .folded.nav-expand:focus .nav > li > a .nav-caret,
.folded.nav-expand:focus .nav > li > a .nav-text, .folded.nav-expand.active .nav > li > a .nav-caret,
.folded.nav-expand.active .nav > li > a .nav-text {
    display: block;
  }
  .folded.nav-expand:hover .nav > li > a .nav-text, .folded.nav-expand:focus .nav > li > a .nav-text, .folded.nav-expand.active .nav > li > a .nav-text {
    font-size: 1em;
    margin: 0;
  }
  .folded.nav-expand:hover .nav > li > a .nav-label, .folded.nav-expand:focus .nav > li > a .nav-label, .folded.nav-expand.active .nav > li > a .nav-label {
    position: static;
  }
  .folded.nav-expand:hover .nav > li > a .nav-icon, .folded.nav-expand:focus .nav > li > a .nav-icon, .folded.nav-expand.active .nav > li > a .nav-icon {
    float: left;
    line-height: inherit;
    margin-right: 16px;
  }
  .folded.nav-expand:hover .navbar, .folded.nav-expand:focus .navbar, .folded.nav-expand.active .navbar {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .folded.nav-expand:hover .nav-stacked .nav, .folded.nav-expand:focus .nav-stacked .nav, .folded.nav-expand.active .nav-stacked .nav {
    margin: 0 8px;
  }
  .folded.nav-expand:hover .nav-stacked .nav > li > a, .folded.nav-expand:focus .nav-stacked .nav > li > a, .folded.nav-expand.active .nav-stacked .nav > li > a {
    padding: 0 8px;
  }
  .folded.nav-expand:hover .nav-fold, .folded.nav-expand:focus .nav-fold, .folded.nav-expand.active .nav-fold {
    padding: 12px 16px;
  }
  .folded.nav-expand:hover .nav-fold .pull-left, .folded.nav-expand:focus .nav-fold .pull-left, .folded.nav-expand.active .nav-fold .pull-left {
    float: left !important;
  }
  .folded.nav-expand:hover .nav-fold .pull-left img, .folded.nav-expand:focus .nav-fold .pull-left img, .folded.nav-expand.active .nav-fold .pull-left img {
    height: auto;
  }
  .folded.nav-expand:hover .nav-fold .pull-left img.w-40, .folded.nav-expand:focus .nav-fold .pull-left img.w-40, .folded.nav-expand.active .nav-fold .pull-left img.w-40 {
    width: 40px;
  }
  .folded.nav-expand:hover .nav-fold .pull-left img.w-48, .folded.nav-expand:focus .nav-fold .pull-left img.w-48, .folded.nav-expand.active .nav-fold .pull-left img.w-48 {
    width: 48px;
  }

  .nav-dropup.modal,
.nav-dropup [flex],
.nav-dropup .row-body,
.folded.nav-dropdown.modal,
.folded.nav-dropdown [flex],
.folded.nav-dropdown .row-body {
    overflow: visible !important;
  }
  .nav-dropup .nav > li:hover > ul, .nav-dropup .nav > li:focus > ul,
.folded.nav-dropdown .nav > li:hover > ul,
.folded.nav-dropdown .nav > li:focus > ul {
    display: block;
  }
  .nav-dropup .nav > li > ul,
.folded.nav-dropdown .nav > li > ul {
    display: none;
    overflow: visible;
    max-height: 999px;
    color: rgba(255, 255, 255, 0.87);
    background-color: rgba(0, 0, 0, 0.87);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: 0;
    padding: 6px 0;
  }
  .nav-dropup .nav > li > ul a,
.folded.nav-dropdown .nav > li > ul a {
    padding-left: 16px !important;
    padding-right: 16px !important;
    min-width: 160px;
  }
  .nav-dropup .nav > li > ul li.active ul,
.folded.nav-dropdown .nav > li > ul li.active ul {
    display: block;
  }
  .nav-dropup .nav > li > ul .nav-text,
.folded.nav-dropdown .nav > li > ul .nav-text {
    padding: 6px 0 !important;
  }
  .nav-dropup .nav > li .nav-mega,
.folded.nav-dropdown .nav > li .nav-mega {
    width: 320px;
  }
  .nav-dropup .nav > li .nav-mega > li,
.folded.nav-dropdown .nav > li .nav-mega > li {
    width: 160px;
    float: left;
  }
  .nav-dropup .nav > li .nav-mega.nav-mega-3,
.folded.nav-dropdown .nav > li .nav-mega.nav-mega-3 {
    width: 480px;
  }
}
.nav-border .nav > li.active:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left-color: inherit;
  border-left-width: 3px;
  border-left-style: solid;
}

.nav-stacked .nav {
  margin: 0 8px;
}
.nav-stacked .nav > li > a {
  line-height: 2rem;
  padding: 0 0.5rem;
  margin: 2px 0;
}
.nav-stacked .nav > li > a .nav-text {
  padding: 0.4375rem 0;
}
.nav-stacked .nav > li li a {
  padding-left: 3rem;
}
.nav-stacked .nav > li li li a {
  padding-left: 4rem;
}
.nav-stacked .nav > li li li li a {
  padding-left: 5rem;
}
.nav-stacked .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87);
  background-color: #0cc2aa;
}
.nav-stacked .nav li a {
  border-radius: 3px;
}
.nav-stacked .nav .nav-header {
  padding-left: 8px;
  padding-right: 8px;
}

.nav-light .nav .nav-icon i svg,
.nav-light .nav .nav-icon i img {
  display: block;
}

.nav-center {
  text-align: center;
}
.nav-center .nav-icon {
  display: none;
}
.nav-center .nav-caret {
  position: absolute;
  right: 10px;
}
.nav-center .nav-label {
  position: absolute;
  padding-left: 10px;
}
.nav-center .nav a {
  padding-left: 16px !important;
}
.nav-center .nav-fold .pull-left {
  float: none !important;
  margin-bottom: 10px;
  display: inline-block;
}

.nav-active-bg .nav-link.active,
.nav-active-bg .nav > li.active > a {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #f0f0f0 !important;
}

.nav-active-dark .nav-link.active,
.nav-active-dark .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #132B2F !important;
}

.nav-active-black .nav-link.active,
.nav-active-black .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #102125 !important;
}

.nav-active-primary .nav-link.active,
.nav-active-primary .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #0cc2aa !important;
}

.nav-active-accent .nav-link.active,
.nav-active-accent .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #a88add !important;
}

.nav-active-warn .nav-link.active,
.nav-active-warn .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #fcc100 !important;
}

.nav-active-success .nav-link.active,
.nav-active-success .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #6cc788 !important;
}

.nav-active-info .nav-link.active,
.nav-active-info .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #6887ff !important;
}

.nav-active-warning .nav-link.active,
.nav-active-warning .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #f77a99 !important;
}

.nav-active-danger .nav-link.active,
.nav-active-danger .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #f44455 !important;
}

.nav-active-light .nav-link.active,
.nav-active-light .nav > li.active > a {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #f8f8f8 !important;
}

.nav-active-white .nav-link.active,
.nav-active-white .nav > li.active > a {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #ffffff !important;
}

.nav-active-red .nav-link.active,
.nav-active-red .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #f44336 !important;
}

.nav-active-pink .nav-link.active,
.nav-active-pink .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #e91e63 !important;
}

.nav-active-purple .nav-link.active,
.nav-active-purple .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #9c27b0 !important;
}

.nav-active-deep-purple .nav-link.active,
.nav-active-deep-purple .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #673ab7 !important;
}

.nav-active-indigo .nav-link.active,
.nav-active-indigo .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #3f51b5 !important;
}

.nav-active-blue .nav-link.active,
.nav-active-blue .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #2196f3 !important;
}

.nav-active-light-blue .nav-link.active,
.nav-active-light-blue .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #03a9f4 !important;
}

.nav-active-cyan .nav-link.active,
.nav-active-cyan .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #00bcd4 !important;
}

.nav-active-teal .nav-link.active,
.nav-active-teal .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #009688 !important;
}

.nav-active-green .nav-link.active,
.nav-active-green .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #4caf50 !important;
}

.nav-active-light-green .nav-link.active,
.nav-active-light-green .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #8bc34a !important;
}

.nav-active-lime .nav-link.active,
.nav-active-lime .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #cddc39 !important;
}

.nav-active-yellow .nav-link.active,
.nav-active-yellow .nav > li.active > a {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #ffeb3b !important;
}

.nav-active-amber .nav-link.active,
.nav-active-amber .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #ffc107 !important;
}

.nav-active-orange .nav-link.active,
.nav-active-orange .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #ff9800 !important;
}

.nav-active-deep-orange .nav-link.active,
.nav-active-deep-orange .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #ff5722 !important;
}

.nav-active-brown .nav-link.active,
.nav-active-brown .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #795548 !important;
}

.nav-active-blue-grey .nav-link.active,
.nav-active-blue-grey .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #607d8b !important;
}

.nav-active-grey .nav-link.active,
.nav-active-grey .nav > li.active > a {
  color: rgba(255, 255, 255, 0.87) !important;
  background-color: #424242 !important;
}

.ui-icon {
  display: inline-block;
  text-align: center;
  height: 1em;
  background: transparent !important;
}
.ui-icon:before {
  position: relative;
  z-index: 1;
}
.ui-icon:after {
  content: "";
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 2em;
  width: 2em;
  height: 2em;
  top: -1.5em;
  display: block;
  position: relative;
  z-index: 0;
  background-clip: padding-box;
}
.ui-icon.b-2x:after {
  border-width: 2px;
}
.ui-icon.b-3x:after {
  border-width: 3px;
}
.ui-icon.ui-icon-sm:after {
  width: 1.7em;
  height: 1.7em;
  top: -1.35em;
}
.ui-icon.primary:after {
  background-color: #0cc2aa;
}
.ui-icon.success:after {
  background-color: #6cc788;
}
.ui-icon.info:after {
  background-color: #6887ff;
}
.ui-icon.warning:after {
  background-color: #f77a99;
}
.ui-icon.danger:after {
  background-color: #f44455;
}
.ui-icon.accent:after {
  background-color: #a88add;
}
.ui-icon.dark:after {
  background-color: #132B2F;
}
.ui-icon.light:after {
  background-color: #f8f8f8;
}
.ui-icon.white:after {
  background-color: #fff;
}

.item {
  position: relative;
}
.item .top {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
}
.item .bottom {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}
.item .center {
  position: absolute;
  right: 0;
  left: 0;
  top: 42%;
}

.item-overlay {
  position: absolute;
  right: 0;
  left: 0;
  display: none;
}
.item-overlay.active,
.item-overlay .item:focus, .item:hover .item-overlay {
  display: block;
}
.item-overlay.w-full {
  text-align: center;
  top: 0;
  bottom: 0;
}

.item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.item-bg img {
  position: absolute;
  width: 110%;
  left: 50%;
  top: 50%;
  margin-left: -55%;
  margin-top: -55%;
}

.blur {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}

.blur-5 {
  opacity: 0.5;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.opacity {
  opacity: 0.5;
}

.opacity-3 {
  opacity: 0.3;
}

.switcher {
  z-index: 1050;
  position: fixed;
  top: 78px;
  right: -240px;
  width: 240px;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
  border: 1px solid rgba(120, 120, 120, 0.1);
  background-clip: padding-box;
}
.switcher.active {
  right: -2px;
  z-index: 1060;
}

.switcher .sw-btn {
  position: absolute;
  left: -43px;
  top: -1px;
  padding: 10px 15px;
  z-index: 1045;
  border: 1px solid rgba(120, 120, 120, 0.1);
  border-right-width: 0;
  background-clip: padding-box;
}

#sw-demo {
  top: 118px;
}
#sw-demo.active {
  top: 78px;
}

.list-icon i {
  margin-right: 16px;
}

.list-icon div {
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*Charts*/
.jqstooltip {
  background-color: rgba(0, 0, 0, 0.8) !important;
  border: solid 1px #000 !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 10px !important;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.easyPieChart {
  position: relative;
  text-align: center;
}
.easyPieChart > div {
  position: absolute;
  width: 100%;
  line-height: 1;
  top: 40%;
}
.easyPieChart > div img {
  margin-top: -4px;
}
.easyPieChart canvas {
  vertical-align: middle;
}

#flotTip,
.flotTip {
  padding: 4px 10px;
  background-color: rgba(0, 0, 0, 0.8) !important;
  border: solid 1px #000 !important;
  z-index: 100;
  font-size: 12px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.legendColorBox > div {
  border: none !important;
  margin: 5px;
}
.legendColorBox > div > div {
  border-radius: 10px;
}

.st-sort-ascent:before {
  content: "▲";
}

.st-sort-descent:before {
  content: "▼";
}

.st-selected td {
  background: rgba(0, 0, 0, 0.065);
}

.dark .btn-default.form-control,
.black .btn-default.form-control,
.grey .btn-default.form-control {
  background: transparent !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: inherit !important;
}

.ui-select-bootstrap > .ui-select-choices {
  overflow-y: scroll;
}

.box .dataTables_wrapper {
  padding-top: 10px;
}

.box .dataTables_wrapper > .row {
  margin: 0;
  width: 100%;
}

.box .dataTables_wrapper > .row > .col-sm-12 {
  padding: 0;
}

.dataTables_wrapper.form-inline .form-control {
  width: auto;
}

div.dataTables_length label,
div.dataTables_filter label {
  display: inline-block;
}

div.dataTables_paginate ul.pagination {
  display: inline-block;
}

.footable-odd {
  background-color: rgba(0, 0, 0, 0.025) !important;
}

.note-editor {
  border-width: 0 !important;
  overflow: visible !important;
  background-color: inherit;
}

.note-toolbar .note-color .dropdown-toggle {
  padding-left: 2px !important;
}

.note-editor .note-editing-area .note-editable,
.note-editor .note-statusbar {
  background-color: transparent !important;
  color: inherit !important;
}

.note-toolbar {
  background-color: rgba(120, 130, 140, 0.1);
}

.ie .ie-show {
  display: block;
}

.nav a.waves-effect {
  -webkit-mask-image: -webkit-radial-gradient(circle, #ffffff 100%, #000000 100%);
}

.sortable-placeholder {
  list-style: none;
  border: 1px dashed #fff;
  min-height: 40px;
}

.abn-tree {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.input-group > .ui-select-bootstrap.dropdown,
div.input-group > .select2-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
}

.input-group > .ui-select-bootstrap.dropdown .form-control,
div.input-group > .select2-container > .selection {
  width: 100%;
}

.streamline {
  position: relative;
  border-color: rgba(120, 130, 140, 0.13);
}
.streamline:after,
.streamline .sl-item:before,
.streamline .sl-icon:before {
  content: "";
  position: absolute;
  border-color: inherit;
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-left: -4px;
  top: 6px;
  left: 0;
}
.streamline:after {
  top: auto;
  bottom: 0;
}

.sl-icon {
  position: absolute;
  left: -10px;
  z-index: 1;
  border: inherit;
}
.sl-icon > i {
  width: 20px;
  height: 20px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}
.streamline .sl-icon:before {
  width: 20px;
  height: 20px;
  border-width: 10px;
  margin: 0 !important;
  top: 0 !important;
}

.sl-item {
  border-color: rgba(120, 130, 140, 0.13);
  position: relative;
  padding-bottom: 1px;
}
.sl-item::after {
  display: block;
  content: "";
  clear: both;
}
.sl-item:after {
  top: 2px;
  bottom: auto;
}
.sl-item.b-l {
  margin-left: -1px;
}

.sl-left {
  float: left;
  position: relative;
  z-index: 1;
  margin-left: -20px;
  margin-bottom: 24px;
}
.sl-left img {
  max-width: 40px;
}
.sl-left + .sl-content {
  margin-left: 36px;
}

.sl-content {
  margin-left: 24px;
  padding-bottom: 16px;
}

.sl-author {
  margin-bottom: 10px;
}

.sl-date {
  font-size: 0.85em;
}

.sl-footer {
  margin-bottom: 10px;
}

.ui-switch {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
  border-radius: 30px;
  background-color: #6cc788;
  margin: 0;
}
.ui-switch input {
  position: absolute;
  opacity: 0;
}
.ui-switch input:checked + i:before {
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 5px;
  border-width: 0;
  border-radius: 5px;
}
.ui-switch input:checked + i:after {
  margin-left: 15px;
}
.ui-switch i:before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ui-switch i:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 16px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -webkit-transition: margin 0.3s;
  transition: margin 0.3s;
}

.ui-switch-md {
  width: 40px;
  height: 24px;
}
.ui-switch-md input:checked + i:after {
  margin-left: 17px;
}
.ui-switch-md i:after {
  width: 22px;
}

.ui-switch-lg {
  width: 50px;
  height: 30px;
}
.ui-switch-lg input:checked + i:after {
  margin-left: 21px;
}
.ui-switch-lg i:after {
  width: 28px;
}

.timeline {
  margin: 0;
  padding: 0;
}

.tl-item {
  display: block;
}
.tl-item::after {
  display: block;
  content: "";
  clear: both;
}

.visible-left {
  display: none;
}

.tl-wrap {
  display: block;
  margin-left: 6em;
  padding: 15px 0 15px 20px;
  border-style: solid;
  border-color: rgba(120, 130, 140, 0.13);
  border-width: 0 0 0 2px;
}
.tl-wrap::after {
  display: block;
  content: "";
  clear: both;
}
.tl-wrap:before {
  position: relative;
  content: "";
  float: left;
  top: 15px;
  margin-left: -26px;
  width: 10px;
  height: 10px;
  border-color: inherit;
  border-width: 3px;
  border-radius: 50%;
  border-style: solid;
  background: #f8f8f8;
  box-shadow: 0 0 0 4px #f0f0f0;
}

.tl-date {
  position: relative;
  top: 10px;
  float: left;
  margin-left: -7.5em;
  display: block;
  width: 4.5em;
  text-align: right;
}

.tl-content {
  display: inline-block;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.tl-content.block {
  display: block;
  width: 100%;
}
.tl-content.panel {
  margin-bottom: 0;
}

.tl-header {
  display: block;
  width: 12em;
  text-align: center;
  margin-left: 1px;
}

.timeline-center .tl-item {
  margin-left: 50%;
}
.timeline-center .tl-item .tl-wrap {
  margin-left: -2px;
}
.timeline-center .tl-header {
  width: auto;
  margin-left: -1px;
}
.timeline-center .tl-left {
  margin-left: 0;
  margin-right: 50%;
}
.timeline-center .tl-left .hidden-left {
  display: none !important;
}
.timeline-center .tl-left .visible-left {
  display: inherit;
}
.timeline-center .tl-left .tl-wrap {
  float: right;
  margin-right: 0px;
  border-left-width: 0;
  border-right-width: 2px;
  padding-left: 0;
  padding-right: 20px;
}
.timeline-center .tl-left .tl-wrap:before {
  float: right;
  margin-left: 0;
  margin-right: -26px;
}
.timeline-center .tl-left .tl-date {
  float: right;
  margin-left: 0;
  margin-right: -8.5em;
  text-align: left;
}

.lter {
  background-color: rgba(255, 255, 255, 0.035);
}

.dker {
  background-color: rgba(0, 0, 0, 0.035);
}

.light {
  background-color: #f8f8f8;
}

.white {
  background-color: #fff;
}

.dark-white {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fff;
}

.blue {
  background: #1FB0C1;
}

.black {
  color: rgba(255, 255, 255, 0.87);
  background-color: #102125;
}
.black .lt {
  background-color: #14292e;
}
.black .dk {
  background-color: #0c191c;
}
.black .bg {
  background-color: #102125;
}

.dark {
  color: rgba(255, 255, 255, 0.87);
  background-color: #132B2F;
}
.dark .lt {
  background-color: #173338;
}
.dark .dk {
  background-color: #0f2326;
}
.dark .bg {
  background-color: #132B2F;
}

.grey {
  color: rgba(255, 255, 255, 0.87);
  background-color: #424242;
}
.grey .lt {
  background-color: #484848;
}
.grey .dk {
  background-color: #3c3c3c;
}
.grey .bg {
  background-color: #424242;
}

.primary {
  color: rgba(255, 255, 255, 0.87);
  background-color: #0cc2aa;
}
.primary .lt {
  background-color: #0dceb5;
}
.primary .dk {
  background-color: #0bb69f;
}
.primary .bg {
  background-color: #0cc2aa;
}

.accent {
  color: rgba(255, 255, 255, 0.87);
  background-color: #a88add;
}
.accent .lt {
  background-color: #af94e0;
}
.accent .dk {
  background-color: #a180da;
}
.accent .bg {
  background-color: #a88add;
}

.warn {
  color: rgba(255, 255, 255, 0.87);
  background-color: #fcc100;
}
.warn .lt {
  background-color: #ffc60a;
}
.warn .dk {
  background-color: #efb700;
}
.warn .bg {
  background-color: #fcc100;
}

.success {
  color: rgba(255, 255, 255, 0.87);
  background-color: #6cc788;
}
.success .lt {
  background-color: #75cb8f;
}
.success .dk {
  background-color: #63c381;
}
.success .bg {
  background-color: #6cc788;
}

.info {
  color: rgba(255, 255, 255, 0.87);
  background-color: #6887ff;
}
.info .lt {
  background-color: #7591ff;
}
.info .dk {
  background-color: #5b7dff;
}
.info .bg {
  background-color: #6887ff;
}

.warning {
  color: rgba(255, 255, 255, 0.87);
  background-color: #f77a99;
}
.warning .lt {
  background-color: #f886a2;
}
.warning .dk {
  background-color: #f66e90;
}
.warning .bg {
  background-color: #f77a99;
}

.danger {
  color: rgba(255, 255, 255, 0.87);
  background-color: #f44455;
}
.danger .lt {
  background-color: #f55060;
}
.danger .dk {
  background-color: #f3384a;
}
.danger .bg {
  background-color: #f44455;
}

.blue {
  color: rgba(255, 255, 255, 0.87);
  background-color: #2196f3;
}
.blue .lt {
  background-color: #2d9cf4;
}
.blue .dk {
  background-color: #1590f2;
}
.blue .bg {
  background-color: #2196f3;
}

.white-overlay {
  background-color: rgba(255, 255, 255, 0.85);
}

.black-overlay {
  background-color: rgba(0, 0, 0, 0.85);
}

.gd-overlay {
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
}

.bg-auto:before {
  content: "";
  position: absolute;
  width: inherit;
  top: 0;
  bottom: 0;
  background-color: inherit;
  border: inherit;
}
.bg-auto.b-l:before {
  margin-left: -1px;
}
.bg-auto.b-r:before {
  margin-right: -1px;
}

.bg-clip {
  background-clip: padding-box;
}

.no-bg {
  background-color: transparent !important;
}

@media (max-width: 767px) {
  .no-bg-xs {
    background-color: transparent;
  }
}
.dark .white,
.dark .box {
  background-color: #18373c;
}
.dark.app {
  background-color: #132B2F;
}

.black .white,
.black .box {
  background-color: #152c31;
}
.black.app {
  background-color: #102125;
}

.grey .white,
.grey .box {
  background-color: #4b4b4b;
}
.grey.app {
  background-color: #424242;
}

.dark .form-control,
.dark .ember-power-select-options,
.black .form-control,
.black .ember-power-select-options,
.grey .form-control,
.grey .ember-power-select-options {
  background: transparent;
  background-color: rgba(255, 255, 255, 0.1);
  color: inherit;
}
.dark .form-control:focus,
.dark .ember-power-select-options:focus,
.black .form-control:focus,
.black .ember-power-select-options:focus,
.grey .form-control:focus,
.grey .ember-power-select-options:focus {
  border-color: rgba(255, 255, 255, 0.125);
}
.dark .input-group-btn .btn,
.black .input-group-btn .btn,
.grey .input-group-btn .btn {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: inherit !important;
}
.dark .list-group,
.black .list-group,
.grey .list-group {
  background-color: transparent;
}

.dark-bg {
  background: #071215;
}

.black .pell-actionbar,
.black .ember-power-select-options,
.black .ember-power-select-trigger,
.black .ember-power-select-search-input,
.black .ember-power-select-trigger-multiple-input .black .ember-basic-dropdown-content {
  background-color: #2C292D;
  color: #F3F5F5;
}

.ember-power-select-search-input {
  border: 1px solid #1FB0C1;
  color: #fff;
}

.ember-power-select-option[aria-current=true] {
  background-color: #1FB0C1;
}

.black .ember-power-select-option[aria-selected=true] {
  background: #000;
}

.pos-rlt {
  position: relative;
  z-index: 1;
}

.pos-abt {
  position: absolute;
}

.pos-fix {
  position: fixed !important;
}

.pos-stc {
  position: static !important;
}

.block {
  display: block;
}

.block.hide {
  display: none;
}

.pull-none {
  float: none;
}

.inline {
  display: inline-block;
}

.inline-16 {
  width: 16px;
  height: 16px;
}

.inline-24 {
  width: 24px;
  height: 24px;
}

.none {
  display: none;
}

.active > .inline,
.active > .auto .inline {
  display: none;
}

.active > .none,
.active > .auto .none {
  display: inline-block;
}

.hide {
  display: none !important;
}

.pointer {
  cursor: pointer;
}

.rounded,
.circle {
  border-radius: 500px;
}

.clear {
  display: block;
  overflow: hidden;
}

.no-shadow {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .pos-stc-sm {
    position: static !important;
  }
}
@media (max-width: 575px) {
  .pos-stc-xs {
    position: static !important;
  }
}
.no-border {
  border-color: transparent;
  border-width: 0;
}

.no-borders {
  border-width: 0 !important;
}

.b {
  border-color: rgba(120, 130, 140, 0.13);
  background-clip: padding-box;
}

.b-a {
  border: 1px solid rgba(120, 130, 140, 0.13);
}

.b-t {
  border-top: 1px solid rgba(120, 130, 140, 0.13);
}

.b-r {
  border-right: 1px solid rgba(120, 130, 140, 0.13);
}

.b-b {
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
}

.b-l {
  border-left: 1px solid rgba(120, 130, 140, 0.13);
}

.b-2x {
  border-width: 2px;
}

.b-3x {
  border-width: 3px;
}

.b-4x {
  border-width: 4px;
}

.b-5x {
  border-width: 5px;
}

.b-t-2x {
  border-top-width: 2px !important;
}

.b-t-3x {
  border-top-width: 3px !important;
}

.b-t-4x {
  border-top-width: 4px !important;
}

.b-t-5x {
  border-top-width: 5px !important;
}

.b-r-2x {
  border-right-width: 2px !important;
}

.b-r-3x {
  border-right-width: 3px !important;
}

.b-r-4x {
  border-right-width: 4px !important;
}

.b-r-5x {
  border-right-width: 5px !important;
}

.b-b-2x {
  border-bottom-width: 2px !important;
}

.b-b-3x {
  border-bottom-width: 3px !important;
}

.b-b-4x {
  border-bottom-width: 4px !important;
}

.b-b-5x {
  border-bottom-width: 5px !important;
}

.b-l-2x {
  border-left-width: 2px !important;
}

.b-l-3x {
  border-left-width: 3px !important;
}

.b-l-4x {
  border-left-width: 4px !important;
}

.b-l-5x {
  border-left-width: 5px !important;
}

.b-light {
  border-color: #f8f8f8;
}

.b-white {
  border-color: #fff;
}

.b-primary {
  border-color: #0cc2aa;
}

.b-t-primary {
  border-top-color: #0cc2aa;
}

.b-r-primary {
  border-right-color: #0cc2aa;
}

.b-b-primary {
  border-bottom-color: #0cc2aa;
}

.b-l-primary {
  border-left-color: #0cc2aa;
}

.b-accent {
  border-color: #a88add;
}

.b-t-accent {
  border-top-color: #a88add;
}

.b-r-accent {
  border-right-color: #a88add;
}

.b-b-accent {
  border-bottom-color: #a88add;
}

.b-l-accent {
  border-left-color: #a88add;
}

.b-warn {
  border-color: #fcc100;
}

.b-t-warn {
  border-top-color: #fcc100;
}

.b-r-warn {
  border-right-color: #fcc100;
}

.b-b-warn {
  border-bottom-color: #fcc100;
}

.b-l-warn {
  border-left-color: #fcc100;
}

.b-success {
  border-color: #6cc788;
}

.b-t-success {
  border-top-color: #6cc788;
}

.b-r-success {
  border-right-color: #6cc788;
}

.b-b-success {
  border-bottom-color: #6cc788;
}

.b-l-success {
  border-left-color: #6cc788;
}

.b-info {
  border-color: #6887ff;
}

.b-t-info {
  border-top-color: #6887ff;
}

.b-r-info {
  border-right-color: #6887ff;
}

.b-b-info {
  border-bottom-color: #6887ff;
}

.b-l-info {
  border-left-color: #6887ff;
}

.b-warning {
  border-color: #f77a99;
}

.b-t-warning {
  border-top-color: #f77a99;
}

.b-r-warning {
  border-right-color: #f77a99;
}

.b-b-warning {
  border-bottom-color: #f77a99;
}

.b-l-warning {
  border-left-color: #f77a99;
}

.b-danger {
  border-color: #f44455;
}

.b-t-danger {
  border-top-color: #f44455;
}

.b-r-danger {
  border-right-color: #f44455;
}

.b-b-danger {
  border-bottom-color: #f44455;
}

.b-l-danger {
  border-left-color: #f44455;
}

.b-light {
  border-color: #f8f8f8;
}

.b-t-light {
  border-top-color: #f8f8f8;
}

.b-r-light {
  border-right-color: #f8f8f8;
}

.b-b-light {
  border-bottom-color: #f8f8f8;
}

.b-l-light {
  border-left-color: #f8f8f8;
}

.b-grey {
  border-color: #424242;
}

.b-t-grey {
  border-top-color: #424242;
}

.b-r-grey {
  border-right-color: #424242;
}

.b-b-grey {
  border-bottom-color: #424242;
}

.b-l-grey {
  border-left-color: #424242;
}

.b-dark {
  border-color: #132B2F;
}

.b-t-dark {
  border-top-color: #132B2F;
}

.b-r-dark {
  border-right-color: #132B2F;
}

.b-b-dark {
  border-bottom-color: #132B2F;
}

.b-l-dark {
  border-left-color: #132B2F;
}

.b-black {
  border-color: #102125;
}

.b-t-black {
  border-top-color: #102125;
}

.b-r-black {
  border-right-color: #102125;
}

.b-b-black {
  border-bottom-color: #102125;
}

.b-l-black {
  border-left-color: #102125;
}

.b-white {
  border-color: #ffffff;
}

.b-t-white {
  border-top-color: #ffffff;
}

.b-r-white {
  border-right-color: #ffffff;
}

.b-b-white {
  border-bottom-color: #ffffff;
}

.b-l-white {
  border-left-color: #ffffff;
}

.b-blue {
  border-color: #2196f3;
}

.b-t-blue {
  border-top-color: #2196f3;
}

.b-r-blue {
  border-right-color: #2196f3;
}

.b-b-blue {
  border-bottom-color: #2196f3;
}

.b-l-blue {
  border-left-color: #2196f3;
}

.no-b-t {
  border-top-width: 0;
}

.no-b-r {
  border-right-width: 0;
}

.no-b-b {
  border-bottom-width: 0;
}

.no-b-l {
  border-left-width: 0;
}

.b-dashed {
  border-style: dashed !important;
}

@media (max-width: 991px) {
  .no-border-sm {
    border-width: 0;
  }
}
@media (max-width: 767px) {
  .no-border-xs {
    border-width: 0;
  }
}
.hover-action {
  display: none;
}

.hover-rotate {
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
}

.hover-anchor:hover .hover-action,
.hover-anchor:focus .hover-action,
.hover-anchor:active .hover-action {
  display: inherit;
}
.hover-anchor:hover .hover-rotate,
.hover-anchor:focus .hover-rotate,
.hover-anchor:active .hover-rotate {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hover-top:hover,
.hover-top:focus {
  position: relative;
  z-index: 1000;
}

.m-a {
  margin: 1rem !important;
}

.m-t {
  margin-top: 1rem !important;
}

.m-r {
  margin-right: 1rem !important;
}

.m-b {
  margin-bottom: 1rem !important;
}

.m-l {
  margin-left: 1rem !important;
}

.m-x {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.m-y {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-a-lg {
  margin: 3rem !important;
}

.m-t-lg {
  margin-top: 3rem !important;
}

.m-r-lg {
  margin-right: 3rem !important;
}

.m-b-lg {
  margin-bottom: 3rem !important;
}

.m-l-lg {
  margin-left: 3rem !important;
}

.m-x-lg {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.m-y-lg {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-a-md {
  margin: 1.5rem !important;
}

.m-t-md {
  margin-top: 1.5rem !important;
}

.m-r-md {
  margin-right: 1.5rem !important;
}

.m-b-md {
  margin-bottom: 1.5rem !important;
}

.m-l-md {
  margin-left: 1.5rem !important;
}

.m-x-md {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.m-y-md {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-a-sm {
  margin: 0.5rem !important;
}

.m-t-sm {
  margin-top: 0.5rem !important;
}

.m-r-sm {
  margin-right: 0.5rem !important;
}

.m-b-sm {
  margin-bottom: 0.5rem !important;
}

.m-l-sm {
  margin-left: 0.5rem !important;
}

.m-x-sm {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.m-y-sm {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-a-xs {
  margin: 0.25rem !important;
}

.m-t-xs {
  margin-top: 0.25rem !important;
}

.m-r-xs {
  margin-right: 0.25rem !important;
}

.m-b-xs {
  margin-bottom: 0.25rem !important;
}

.m-l-xs {
  margin-left: 0.25rem !important;
}

.m-x-xs {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.m-y-xs {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-a {
  padding: 1rem !important;
}

.p-t {
  padding-top: 1rem !important;
}

.p-r {
  padding-right: 1rem !important;
}

.p-b {
  padding-bottom: 1rem !important;
}

.p-l {
  padding-left: 1rem !important;
}

.p-x {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.p-y {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-a-lg {
  padding: 3rem !important;
}

.p-t-lg {
  padding-top: 3rem !important;
}

.p-r-lg {
  padding-right: 3rem !important;
}

.p-b-lg {
  padding-bottom: 3rem !important;
}

.p-l-lg {
  padding-left: 3rem !important;
}

.p-x-lg {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.p-y-lg {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-a-md {
  padding: 1.5rem !important;
}

.p-t-md {
  padding-top: 1.5rem !important;
}

.p-r-md {
  padding-right: 1.5rem !important;
}

.p-b-md {
  padding-bottom: 1.5rem !important;
}

.p-l-md {
  padding-left: 1.5rem !important;
}

.p-x-md {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.p-y-md {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-a-sm {
  padding: 0.5rem !important;
}

.p-t-sm {
  padding-top: 0.5rem !important;
}

.p-r-sm {
  padding-right: 0.5rem !important;
}

.p-b-sm {
  padding-bottom: 0.5rem !important;
}

.p-l-sm {
  padding-left: 0.5rem !important;
}

.p-x-sm {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.p-y-sm {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-a-xs {
  padding: 0.25rem !important;
}

.p-t-xs {
  padding-top: 0.25rem !important;
}

.p-r-xs {
  padding-right: 0.25rem !important;
}

.p-b-xs {
  padding-bottom: 0.25rem !important;
}

.p-l-xs {
  padding-left: 0.25rem !important;
}

.p-x-xs {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.p-y-xs {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.padding {
  padding: 1.5rem 1.5rem;
}

.margin {
  margin-bottom: 1.5rem;
}

.padding-out {
  margin: -1.5rem -1.5rem;
}

@media (max-width: 991px) {
  .padding {
    padding: 1rem 1rem;
  }

  .padding-out {
    margin: -1rem -1rem;
  }

  .margin {
    margin-bottom: 1rem;
  }

  .box,
.box-color {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .padding {
    padding: 0.5rem 0.5rem;
  }

  .padding-out {
    margin: -0.5rem -0.5rem;
  }

  .margin {
    margin-bottom: 0.5rem;
  }

  .box,
.box-color {
    margin-bottom: 0.5rem;
  }

  .no-padding-xs {
    padding: 0;
  }
}
.no-radius {
  border-radius: 0 !important;
}

.no-r-t {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.no-r-r {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.no-r-b {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.no-r-l {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.r {
  border-radius: 3px;
}

.r-t {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.r-r {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.r-b {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.r-l {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.r-2x {
  border-radius: 6px;
}

.r-3x {
  border-radius: 9px;
}

.scrollable {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.scrollable.hover,
.scrollable.hover > .row-inner {
  overflow-y: hidden;
}
.scrollable.hover > * {
  margin-top: -1px;
}
.scrollable.hover:hover, .scrollable.hover:focus, .scrollable.hover:active {
  overflow: visible;
  overflow-y: auto;
}
.scrollable.hover:hover > .row-inner, .scrollable.hover:focus > .row-inner, .scrollable.hover:active > .row-inner {
  overflow-y: auto;
}
.smart .scrollable,
.smart .scrollable > .row-inner {
  overflow-y: auto !important;
}

.scroll-x,
.scroll-y {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.scroll-y {
  overflow-y: auto;
}

.scroll-x {
  overflow-x: auto;
}

a.primary:hover {
  background-color: #0bb69f;
}

a.text-primary:hover {
  color: #0bb69f;
}

.text-primary,
.text-primary-hover a:hover {
  color: #0cc2aa !important;
}

a.warn:hover {
  background-color: #efb700;
}

a.text-warn:hover {
  color: #efb700;
}

.text-warn,
.text-warn-hover a:hover {
  color: #fcc100 !important;
}

a.accent:hover {
  background-color: #a180da;
}

a.text-accent:hover {
  color: #a180da;
}

.text-accent,
.text-accent-hover a:hover {
  color: #a88add !important;
}

a.success:hover {
  background-color: #63c381;
}

a.text-success:hover {
  color: #63c381;
}

.text-success,
.text-success-hover a:hover {
  color: #6cc788 !important;
}

a.info:hover {
  background-color: #5b7dff;
}

a.text-info:hover {
  color: #5b7dff;
}

.text-info,
.text-info-hover a:hover {
  color: #6887ff !important;
}

a.warning:hover {
  background-color: #f66e90;
}

a.text-warning:hover {
  color: #f66e90;
}

.text-warning,
.text-warning-hover a:hover {
  color: #f77a99 !important;
}

a.danger:hover {
  background-color: #f3384a;
}

a.text-danger:hover {
  color: #f3384a;
}

.text-danger,
.text-danger-hover a:hover {
  color: #f44455 !important;
}

a.dark:hover {
  background-color: #0f2326;
}

a.text-dark:hover {
  color: #0f2326;
}

.text-dark,
.text-dark-hover a:hover {
  color: #132B2F !important;
}

a.blue:hover {
  background-color: #1590f2;
}

a.text-blue:hover {
  color: #1590f2;
}

.text-blue,
.text-blue-hover a:hover {
  color: #2196f3 !important;
}

.text-white {
  color: rgb(255, 255, 255) !important;
}

.text-white-lt {
  color: rgba(255, 255, 255, 0.54);
}

.text-white-dk {
  color: rgba(255, 255, 255, 0.87);
}

.text-black {
  color: rgb(0, 0, 0);
}

.text-black-lt {
  color: rgba(0, 0, 0, 0.54);
}

.text-black-dk {
  color: rgba(0, 0, 0, 0.87);
}

.text-muted {
  color: inherit !important;
  opacity: 0.6;
}

.text-color {
  color: rgba(0, 0, 0, 0.87);
}

._100 {
  font-weight: 100;
}

._200 {
  font-weight: 200;
}

._300 {
  font-weight: 300;
}

._400 {
  font-weight: 400;
}

._500 {
  font-weight: 500;
}

._600 {
  font-weight: 600;
}

._700 {
  font-weight: 700;
}

._800 {
  font-weight: 800;
}

.text {
  font-size: 1rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.8rem;
}

.text-md {
  font-size: 1.125rem;
}

.text-lg {
  font-size: 1.5rem;
}

.text-2x {
  font-size: 2em;
}

.text-3x {
  font-size: 3em;
}

.text-4x {
  font-size: 4em;
}

.l-h {
  line-height: 1.5;
}

.l-h-1x {
  line-height: 1;
}

.l-h-2x {
  line-height: 2em;
}

.l-s-1x {
  letter-spacing: 1px;
}

.l-s-2x {
  letter-spacing: 2px;
}

.l-s-3x {
  letter-spacing: 3px;
}

.l-s-4x {
  letter-spacing: 4px;
}

.l-s-n-1x {
  letter-spacing: -1px;
}

.l-s-n-2x {
  letter-spacing: -2px;
}

.l-s-n-3x {
  letter-spacing: -3px;
}

.l-s-n-4x {
  letter-spacing: -4px;
}

.h-1x {
  height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.h-2x {
  height: 2.625rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.h-3x {
  height: 3.9375rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.h-4x {
  height: 5.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.text-u-c {
  text-transform: uppercase;
}

.text-l-t {
  text-decoration: line-through;
}

.text-u-l {
  text-decoration: underline;
}

.text-ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-shadow {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.w-8 {
  width: 8px;
  height: 8px;
  display: inline-block;
}

.w-16 {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.w-20 {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.w-24 {
  width: 24px;
  height: 24px;
  display: inline-block;
  text-align: center;
}

.w-32 {
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
}

.w-40 {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
}

.w-48 {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
}

.w-56 {
  width: 56px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  text-align: center;
}

.w-64 {
  width: 64px;
}

.w-96 {
  width: 96px;
}

.w-128 {
  width: 128px;
}

.w-xxs {
  width: 60px;
}

.w-xs {
  width: 90px;
}

.w-sm {
  width: 120px;
}

.w {
  width: 180px;
}

.w-md {
  width: 200px;
}

.w-lg {
  width: 240px;
}

.w-xl {
  width: 280px;
}

.w-xxl {
  width: 320px;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-v {
  height: 100vh;
}

.h-v-5 {
  height: 50vh;
}

@media (max-width: 767px) {
  .w-auto-sm {
    width: auto;
  }

  .w-full-sm {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .w-auto-xs {
    width: auto;
  }

  .w-full-xs {
    width: 100%;
  }
}
.md-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  outline: none;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: inherit;
  font-variant: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.md-flat {
  background: transparent;
}

.md-btn.md-flat:not([disabled]):hover,
.md-btn.md-flat:not([disabled]):focus {
  background-color: rgba(158, 158, 158, 0.2);
}

.md-btn-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 2px;
}

.md-btn[disabled],
.md-btn.md-raised[disabled],
.md-btn.md-fab[disabled] {
  color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
  cursor: not-allowed;
}

.md-fab {
  line-height: 44px;
}

.md-fab-offset {
  margin-top: -20px;
  margin-bottom: -20px;
}

.md-btn:focus {
  outline: none;
}

.md-btn:hover {
  text-decoration: none;
}

.md-btn.md-cornered {
  border-radius: 0;
}

.md-btn.md-icon {
  padding: 0;
  background: none;
}

.md-btn.md-raised {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.md-btn.md-fab {
  z-index: 20;
  /*width: 56px;
  height: 56px;*/
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: 0.2s linear;
  transition-property: -webkit-transform, box-shadow;
  transition-property: transform, box-shadow;
}

.md-btn.md-raised:not([disabled]),
.md-btn.md-fab {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.md-btn.md-raised:not([disabled]):focus,
.md-btn.md-raised:not([disabled]):hover,
.md-btn.md-fab:not([disabled]):focus,
.md-btn.md-fab:not([disabled]):hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  -webkit-transform: translate3d(0, -1px, 0);
  transform: translate3d(0, -1px, 0);
}

.md-fab-bottom-right {
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  position: absolute;
}

.md-fab-bottom-left {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  position: absolute;
}

.md-fab-top-right {
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  position: absolute;
}

.md-fab-top-left {
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  position: absolute;
}

.md-btn.md-fab.md-mini {
  width: 40px;
  height: 40px;
  line-height: 28px;
}

.md-btn.btn-small {
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  font-size: 0.7em;
  margin: 0 !important;
}

.actions {
  display: inline-block;
  position: relative;
  top: 0.3em;
}

.red {
  background-color: #f44336;
  color: rgba(255, 255, 255, 0.87);
}

.red-50 {
  background-color: #ffebee;
  color: rgba(0, 0, 0, 0.87);
}

.red-100 {
  background-color: #ffcdd2;
  color: rgba(0, 0, 0, 0.87);
}

.red-200 {
  background-color: #ef9a9a;
  color: rgba(0, 0, 0, 0.87);
}

.red-300 {
  background-color: #e57373;
  color: rgba(0, 0, 0, 0.87);
}

.red-400 {
  background-color: #ef5350;
  color: rgba(0, 0, 0, 0.87);
}

.red-500 {
  background-color: #f44336;
  color: rgba(255, 255, 255, 0.87);
}

.red-600 {
  background-color: #e53935;
  color: rgba(255, 255, 255, 0.87);
}

.red-700 {
  background-color: #d32f2f;
  color: rgba(255, 255, 255, 0.87);
}

.red-800 {
  background-color: #c62828;
  color: rgba(255, 255, 255, 0.87);
}

.red-900 {
  background-color: #b71c1c;
  color: rgba(255, 255, 255, 0.87);
}

.red-A100 {
  background-color: #ff8a80;
  color: rgba(0, 0, 0, 0.87);
}

.red-A200 {
  background-color: #ff5252;
  color: rgba(255, 255, 255, 0.87);
}

.red-A400 {
  background-color: #ff1744;
  color: rgba(255, 255, 255, 0.87);
}

.red-A700 {
  background-color: #d50000;
  color: rgba(255, 255, 255, 0.87);
}

.pink {
  background-color: #e91e63;
  color: rgba(255, 255, 255, 0.87);
}

.pink-50 {
  background-color: #fce4ec;
  color: rgba(0, 0, 0, 0.87);
}

.pink-100 {
  background-color: #f8bbd0;
  color: rgba(0, 0, 0, 0.87);
}

.pink-200 {
  background-color: #f48fb1;
  color: rgba(0, 0, 0, 0.87);
}

.pink-300 {
  background-color: #f06292;
  color: rgba(0, 0, 0, 0.87);
}

.pink-400 {
  background-color: #ec407a;
  color: rgba(0, 0, 0, 0.87);
}

.pink-500 {
  background-color: #e91e63;
  color: rgba(255, 255, 255, 0.87);
}

.pink-600 {
  background-color: #d81b60;
  color: rgba(255, 255, 255, 0.87);
}

.pink-700 {
  background-color: #c2185b;
  color: rgba(255, 255, 255, 0.87);
}

.pink-800 {
  background-color: #ad1457;
  color: rgba(255, 255, 255, 0.87);
}

.pink-900 {
  background-color: #880e4f;
  color: rgba(255, 255, 255, 0.87);
}

.pink-A100 {
  background-color: #ff80ab;
  color: rgba(0, 0, 0, 0.87);
}

.pink-A200 {
  background-color: #ff4081;
  color: rgba(255, 255, 255, 0.87);
}

.pink-A400 {
  background-color: #f50057;
  color: rgba(255, 255, 255, 0.87);
}

.pink-A700 {
  background-color: #c51162;
  color: rgba(255, 255, 255, 0.87);
}

.purple {
  background-color: #9c27b0;
  color: rgba(255, 255, 255, 0.87);
}

.purple-50 {
  background-color: #f3e5f5;
  color: rgba(0, 0, 0, 0.87);
}

.purple-100 {
  background-color: #e1bee7;
  color: rgba(0, 0, 0, 0.87);
}

.purple-200 {
  background-color: #ce93d8;
  color: rgba(0, 0, 0, 0.87);
}

.purple-300 {
  background-color: #ba68c8;
  color: rgba(255, 255, 255, 0.87);
}

.purple-400 {
  background-color: #ab47bc;
  color: rgba(255, 255, 255, 0.87);
}

.purple-500 {
  background-color: #9c27b0;
  color: rgba(255, 255, 255, 0.87);
}

.purple-600 {
  background-color: #8e24aa;
  color: rgba(255, 255, 255, 0.87);
}

.purple-700 {
  background-color: #7b1fa2;
  color: rgba(255, 255, 255, 0.87);
}

.purple-800 {
  background-color: #6a1b9a;
  color: rgba(255, 255, 255, 0.87);
}

.purple-900 {
  background-color: #4a148c;
  color: rgba(255, 255, 255, 0.87);
}

.purple-A100 {
  background-color: #ea80fc;
  color: rgba(0, 0, 0, 0.87);
}

.purple-A200 {
  background-color: #e040fb;
  color: rgba(255, 255, 255, 0.87);
}

.purple-A400 {
  background-color: #d500f9;
  color: rgba(255, 255, 255, 0.87);
}

.purple-A700 {
  background-color: #aa00ff;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple {
  background-color: #673ab7;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-50 {
  background-color: #ede7f6;
  color: rgba(0, 0, 0, 0.87);
}

.deep-purple-100 {
  background-color: #d1c4e9;
  color: rgba(0, 0, 0, 0.87);
}

.deep-purple-200 {
  background-color: #b39ddb;
  color: rgba(0, 0, 0, 0.87);
}

.deep-purple-300 {
  background-color: #9575cd;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-400 {
  background-color: #7e57c2;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-500 {
  background-color: #673ab7;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-600 {
  background-color: #5e35b1;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-700 {
  background-color: #512da8;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-800 {
  background-color: #4527a0;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-900 {
  background-color: #311b92;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-A100 {
  background-color: #b388ff;
  color: rgba(0, 0, 0, 0.87);
}

.deep-purple-A200 {
  background-color: #7c4dff;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-A400 {
  background-color: #651fff;
  color: rgba(255, 255, 255, 0.87);
}

.deep-purple-A700 {
  background-color: #6200ea;
  color: rgba(255, 255, 255, 0.87);
}

.indigo {
  background-color: #3f51b5;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-50 {
  background-color: #e8eaf6;
  color: rgba(0, 0, 0, 0.87);
}

.indigo-100 {
  background-color: #c5cae9;
  color: rgba(0, 0, 0, 0.87);
}

.indigo-200 {
  background-color: #9fa8da;
  color: rgba(0, 0, 0, 0.87);
}

.indigo-300 {
  background-color: #7986cb;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-400 {
  background-color: #5c6bc0;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-500 {
  background-color: #3f51b5;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-600 {
  background-color: #3949ab;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-700 {
  background-color: #303f9f;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-800 {
  background-color: #283593;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-900 {
  background-color: #1a237e;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-A100 {
  background-color: #8c9eff;
  color: rgba(0, 0, 0, 0.87);
}

.indigo-A200 {
  background-color: #536dfe;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-A400 {
  background-color: #3d5afe;
  color: rgba(255, 255, 255, 0.87);
}

.indigo-A700 {
  background-color: #304ffe;
  color: rgba(255, 255, 255, 0.87);
}

.blue {
  background-color: #2196f3;
  color: rgba(255, 255, 255, 0.87);
}

.blue-50 {
  background-color: #e3f2fd;
  color: rgba(0, 0, 0, 0.87);
}

.blue-100 {
  background-color: #bbdefb;
  color: rgba(0, 0, 0, 0.87);
}

.blue-200 {
  background-color: #90caf9;
  color: rgba(0, 0, 0, 0.87);
}

.blue-300 {
  background-color: #64b5f6;
  color: rgba(0, 0, 0, 0.87);
}

.blue-400 {
  background-color: #42a5f5;
  color: rgba(0, 0, 0, 0.87);
}

.blue-500 {
  background-color: #2196f3;
  color: rgba(255, 255, 255, 0.87);
}

.blue-600 {
  background-color: #1e88e5;
  color: rgba(255, 255, 255, 0.87);
}

.blue-700 {
  background-color: #1976d2;
  color: rgba(255, 255, 255, 0.87);
}

.blue-800 {
  background-color: #1565c0;
  color: rgba(255, 255, 255, 0.87);
}

.blue-900 {
  background-color: #0d47a1;
  color: rgba(255, 255, 255, 0.87);
}

.blue-A100 {
  background-color: #82b1ff;
  color: rgba(0, 0, 0, 0.87);
}

.blue-A200 {
  background-color: #448aff;
  color: rgba(255, 255, 255, 0.87);
}

.blue-A400 {
  background-color: #2979ff;
  color: rgba(255, 255, 255, 0.87);
}

.blue-A700 {
  background-color: #2962ff;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue {
  background-color: #03a9f4;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue-50 {
  background-color: #e1f5fe;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-100 {
  background-color: #b3e5fc;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-200 {
  background-color: #81d4fa;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-300 {
  background-color: #4fc3f7;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-400 {
  background-color: #29b6f6;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-500 {
  background-color: #03a9f4;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue-600 {
  background-color: #039be5;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue-700 {
  background-color: #0288d1;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue-800 {
  background-color: #0277bd;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue-900 {
  background-color: #01579b;
  color: rgba(255, 255, 255, 0.87);
}

.light-blue-A100 {
  background-color: #80d8ff;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-A200 {
  background-color: #40c4ff;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-A400 {
  background-color: #00b0ff;
  color: rgba(0, 0, 0, 0.87);
}

.light-blue-A700 {
  background-color: #0091ea;
  color: rgba(255, 255, 255, 0.87);
}

.cyan {
  background-color: #00bcd4;
  color: rgba(255, 255, 255, 0.87);
}

.cyan-50 {
  background-color: #e0f7fa;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-100 {
  background-color: #b2ebf2;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-200 {
  background-color: #80deea;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-300 {
  background-color: #4dd0e1;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-400 {
  background-color: #26c6da;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-500 {
  background-color: #00bcd4;
  color: rgba(255, 255, 255, 0.87);
}

.cyan-600 {
  background-color: #00acc1;
  color: rgba(255, 255, 255, 0.87);
}

.cyan-700 {
  background-color: #0097a7;
  color: rgba(255, 255, 255, 0.87);
}

.cyan-800 {
  background-color: #00838f;
  color: rgba(255, 255, 255, 0.87);
}

.cyan-900 {
  background-color: #006064;
  color: rgba(255, 255, 255, 0.87);
}

.cyan-A100 {
  background-color: #84ffff;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-A200 {
  background-color: #18ffff;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-A400 {
  background-color: #00e5ff;
  color: rgba(0, 0, 0, 0.87);
}

.cyan-A700 {
  background-color: #00b8d4;
  color: rgba(0, 0, 0, 0.87);
}

.teal {
  background-color: #009688;
  color: rgba(255, 255, 255, 0.87);
}

.teal-50 {
  background-color: #e0f2f1;
  color: rgba(0, 0, 0, 0.87);
}

.teal-100 {
  background-color: #b2dfdb;
  color: rgba(0, 0, 0, 0.87);
}

.teal-200 {
  background-color: #80cbc4;
  color: rgba(0, 0, 0, 0.87);
}

.teal-300 {
  background-color: #4db6ac;
  color: rgba(0, 0, 0, 0.87);
}

.teal-400 {
  background-color: #26a69a;
  color: rgba(0, 0, 0, 0.87);
}

.teal-500 {
  background-color: #009688;
  color: rgba(255, 255, 255, 0.87);
}

.teal-600 {
  background-color: #00897b;
  color: rgba(255, 255, 255, 0.87);
}

.teal-700 {
  background-color: #00796b;
  color: rgba(255, 255, 255, 0.87);
}

.teal-800 {
  background-color: #00695c;
  color: rgba(255, 255, 255, 0.87);
}

.teal-900 {
  background-color: #004d40;
  color: rgba(255, 255, 255, 0.87);
}

.teal-A100 {
  background-color: #a7ffeb;
  color: rgba(0, 0, 0, 0.87);
}

.teal-A200 {
  background-color: #64ffda;
  color: rgba(0, 0, 0, 0.87);
}

.teal-A400 {
  background-color: #1de9b6;
  color: rgba(0, 0, 0, 0.87);
}

.teal-A700 {
  background-color: #00bfa5;
  color: rgba(0, 0, 0, 0.87);
}

.green {
  background-color: #4caf50;
  color: rgba(255, 255, 255, 0.87);
}

.green-50 {
  background-color: #e8f5e9;
  color: rgba(0, 0, 0, 0.87);
}

.green-100 {
  background-color: #c8e6c9;
  color: rgba(0, 0, 0, 0.87);
}

.green-200 {
  background-color: #a5d6a7;
  color: rgba(0, 0, 0, 0.87);
}

.green-300 {
  background-color: #81c784;
  color: rgba(0, 0, 0, 0.87);
}

.green-400 {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}

.green-500 {
  background-color: #4caf50;
  color: rgba(255, 255, 255, 0.87);
}

.green-600 {
  background-color: #43a047;
  color: rgba(255, 255, 255, 0.87);
}

.green-700 {
  background-color: #388e3c;
  color: rgba(255, 255, 255, 0.87);
}

.green-800 {
  background-color: #2e7d32;
  color: rgba(255, 255, 255, 0.87);
}

.green-900 {
  background-color: #1b5e20;
  color: rgba(255, 255, 255, 0.87);
}

.green-A100 {
  background-color: #b9f6ca;
  color: rgba(0, 0, 0, 0.87);
}

.green-A200 {
  background-color: #69f0ae;
  color: rgba(0, 0, 0, 0.87);
}

.green-A400 {
  background-color: #00e676;
  color: rgba(0, 0, 0, 0.87);
}

.green-A700 {
  background-color: #00c853;
  color: rgba(0, 0, 0, 0.87);
}

.light-green {
  background-color: #8bc34a;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-50 {
  background-color: #f1f8e9;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-100 {
  background-color: #dcedc8;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-200 {
  background-color: #c5e1a5;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-300 {
  background-color: #aed581;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-400 {
  background-color: #9ccc65;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-500 {
  background-color: #8bc34a;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-600 {
  background-color: #7cb342;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-700 {
  background-color: #689f38;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-800 {
  background-color: #558b2f;
  color: rgba(255, 255, 255, 0.87);
}

.light-green-900 {
  background-color: #33691e;
  color: rgba(255, 255, 255, 0.87);
}

.light-green-A100 {
  background-color: #ccff90;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-A200 {
  background-color: #b2ff59;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-A400 {
  background-color: #76ff03;
  color: rgba(0, 0, 0, 0.87);
}

.light-green-A700 {
  background-color: #64dd17;
  color: rgba(0, 0, 0, 0.87);
}

.lime {
  background-color: #cddc39;
  color: rgba(0, 0, 0, 0.87);
}

.lime-50 {
  background-color: #f9fbe7;
  color: rgba(0, 0, 0, 0.87);
}

.lime-100 {
  background-color: #f0f4c3;
  color: rgba(0, 0, 0, 0.87);
}

.lime-200 {
  background-color: #e6ee9c;
  color: rgba(0, 0, 0, 0.87);
}

.lime-300 {
  background-color: #dce775;
  color: rgba(0, 0, 0, 0.87);
}

.lime-400 {
  background-color: #d4e157;
  color: rgba(0, 0, 0, 0.87);
}

.lime-500 {
  background-color: #cddc39;
  color: rgba(0, 0, 0, 0.87);
}

.lime-600 {
  background-color: #c0ca33;
  color: rgba(0, 0, 0, 0.87);
}

.lime-700 {
  background-color: #afb42b;
  color: rgba(0, 0, 0, 0.87);
}

.lime-800 {
  background-color: #9e9d24;
  color: rgba(0, 0, 0, 0.87);
}

.lime-900 {
  background-color: #827717;
  color: rgba(255, 255, 255, 0.87);
}

.lime-A100 {
  background-color: #f4ff81;
  color: rgba(0, 0, 0, 0.87);
}

.lime-A200 {
  background-color: #eeff41;
  color: rgba(0, 0, 0, 0.87);
}

.lime-A400 {
  background-color: #c6ff00;
  color: rgba(0, 0, 0, 0.87);
}

.lime-A700 {
  background-color: #aeea00;
  color: rgba(0, 0, 0, 0.87);
}

.yellow {
  background-color: #ffeb3b;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-50 {
  background-color: #fffde7;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-100 {
  background-color: #fff9c4;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-200 {
  background-color: #fff59d;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-300 {
  background-color: #fff176;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-400 {
  background-color: #ffee58;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-500 {
  background-color: #ffeb3b;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-600 {
  background-color: #fdd835;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-700 {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-800 {
  background-color: #f9a825;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-900 {
  background-color: #f57f17;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-A100 {
  background-color: #ffff8d;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-A200 {
  background-color: #ffff00;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-A400 {
  background-color: #ffea00;
  color: rgba(0, 0, 0, 0.87);
}

.yellow-A700 {
  background-color: #ffd600;
  color: rgba(0, 0, 0, 0.87);
}

.amber {
  background-color: #ffc107;
  color: rgba(0, 0, 0, 0.87);
}

.amber-50 {
  background-color: #fff8e1;
  color: rgba(0, 0, 0, 0.87);
}

.amber-100 {
  background-color: #ffecb3;
  color: rgba(0, 0, 0, 0.87);
}

.amber-200 {
  background-color: #ffe082;
  color: rgba(0, 0, 0, 0.87);
}

.amber-300 {
  background-color: #ffd54f;
  color: rgba(0, 0, 0, 0.87);
}

.amber-400 {
  background-color: #ffca28;
  color: rgba(0, 0, 0, 0.87);
}

.amber-500 {
  background-color: #ffc107;
  color: rgba(0, 0, 0, 0.87);
}

.amber-600 {
  background-color: #ffb300;
  color: rgba(0, 0, 0, 0.87);
}

.amber-700 {
  background-color: #ffa000;
  color: rgba(0, 0, 0, 0.87);
}

.amber-800 {
  background-color: #ff8f00;
  color: rgba(0, 0, 0, 0.87);
}

.amber-900 {
  background-color: #ff6f00;
  color: rgba(0, 0, 0, 0.87);
}

.amber-A100 {
  background-color: #ffe57f;
  color: rgba(0, 0, 0, 0.87);
}

.amber-A200 {
  background-color: #ffd740;
  color: rgba(0, 0, 0, 0.87);
}

.amber-A400 {
  background-color: #ffc400;
  color: rgba(0, 0, 0, 0.87);
}

.amber-A700 {
  background-color: #ffab00;
  color: rgba(0, 0, 0, 0.87);
}

.orange {
  background-color: #ff9800;
  color: rgba(0, 0, 0, 0.87);
}

.orange-50 {
  background-color: #fff3e0;
  color: rgba(0, 0, 0, 0.87);
}

.orange-100 {
  background-color: #ffe0b2;
  color: rgba(0, 0, 0, 0.87);
}

.orange-200 {
  background-color: #ffcc80;
  color: rgba(0, 0, 0, 0.87);
}

.orange-300 {
  background-color: #ffb74d;
  color: rgba(0, 0, 0, 0.87);
}

.orange-400 {
  background-color: #ffa726;
  color: rgba(0, 0, 0, 0.87);
}

.orange-500 {
  background-color: #ff9800;
  color: rgba(0, 0, 0, 0.87);
}

.orange-600 {
  background-color: #fb8c00;
  color: rgba(0, 0, 0, 0.87);
}

.orange-700 {
  background-color: #f57c00;
  color: rgba(0, 0, 0, 0.87);
}

.orange-800 {
  background-color: #ef6c00;
  color: rgba(255, 255, 255, 0.87);
}

.orange-900 {
  background-color: #e65100;
  color: rgba(255, 255, 255, 0.87);
}

.orange-A100 {
  background-color: #ffd180;
  color: rgba(0, 0, 0, 0.87);
}

.orange-A200 {
  background-color: #ffab40;
  color: rgba(0, 0, 0, 0.87);
}

.orange-A400 {
  background-color: #ff9100;
  color: rgba(0, 0, 0, 0.87);
}

.orange-A700 {
  background-color: #ff6d00;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange {
  background-color: #ff5722;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-50 {
  background-color: #fbe9e7;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-100 {
  background-color: #ffccbc;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-200 {
  background-color: #ffab91;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-300 {
  background-color: #ff8a65;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-400 {
  background-color: #ff7043;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-500 {
  background-color: #ff5722;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-600 {
  background-color: #f4511e;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-700 {
  background-color: #e64a19;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-800 {
  background-color: #d84315;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-900 {
  background-color: #bf360c;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-A100 {
  background-color: #ff9e80;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-A200 {
  background-color: #ff6e40;
  color: rgba(0, 0, 0, 0.87);
}

.deep-orange-A400 {
  background-color: #ff3d00;
  color: rgba(255, 255, 255, 0.87);
}

.deep-orange-A700 {
  background-color: #dd2c00;
  color: rgba(255, 255, 255, 0.87);
}

.brown {
  background-color: #795548;
  color: rgba(255, 255, 255, 0.87);
}

.brown-50 {
  background-color: #efebe9;
  color: rgba(0, 0, 0, 0.87);
}

.brown-100 {
  background-color: #d7ccc8;
  color: rgba(0, 0, 0, 0.87);
}

.brown-200 {
  background-color: #bcaaa4;
  color: rgba(0, 0, 0, 0.87);
}

.brown-300 {
  background-color: #a1887f;
  color: rgba(255, 255, 255, 0.87);
}

.brown-400 {
  background-color: #8d6e63;
  color: rgba(255, 255, 255, 0.87);
}

.brown-500 {
  background-color: #795548;
  color: rgba(255, 255, 255, 0.87);
}

.brown-600 {
  background-color: #6d4c41;
  color: rgba(255, 255, 255, 0.87);
}

.brown-700 {
  background-color: #5d4037;
  color: rgba(255, 255, 255, 0.87);
}

.brown-800 {
  background-color: #4e342e;
  color: rgba(255, 255, 255, 0.87);
}

.brown-900 {
  background-color: #3e2723;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey {
  background-color: #607d8b;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey-50 {
  background-color: #eceff1;
  color: rgba(0, 0, 0, 0.87);
}

.blue-grey-100 {
  background-color: #cfd8dc;
  color: rgba(0, 0, 0, 0.87);
}

.blue-grey-200 {
  background-color: #b0bec5;
  color: rgba(0, 0, 0, 0.87);
}

.blue-grey-300 {
  background-color: #90a4ae;
  color: rgba(0, 0, 0, 0.87);
}

.blue-grey-400 {
  background-color: #78909c;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey-500 {
  background-color: #607d8b;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey-600 {
  background-color: #546e7a;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey-700 {
  background-color: #455a64;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey-800 {
  background-color: #37474f;
  color: rgba(255, 255, 255, 0.87);
}

.blue-grey-900 {
  background-color: #263238;
  color: rgba(255, 255, 255, 0.87);
}

.grey-50 {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

.grey-100 {
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.87);
}

.grey-200 {
  background-color: #eeeeee;
  color: rgba(0, 0, 0, 0.87);
}

.grey-300 {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

.grey-400 {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}

.grey-500 {
  background-color: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
}

.grey-600 {
  background-color: #757575;
  color: rgba(255, 255, 255, 0.87);
}

.grey-700 {
  background-color: #616161;
  color: rgba(255, 255, 255, 0.87);
}

.grey-800 {
  background-color: #424242;
  color: rgba(255, 255, 255, 0.87);
}

.grey-900 {
  background-color: #212121;
  color: rgba(255, 255, 255, 0.87);
}

.md-form-group {
  padding: 18px 0 24px 0;
  position: relative;
}

.md-input {
  background: transparent;
  position: relative;
  z-index: 5;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(160, 160, 160, 0.2);
  width: 100%;
  height: 34px;
  padding: 2px;
  color: inherit;
}
.md-input:focus, .md-input.focus {
  border-color: #0cc2aa;
  border-bottom-width: 2px;
  padding-bottom: 1px;
}
.md-input:focus ~ label, .md-input.focus ~ label {
  color: #0cc2aa;
  opacity: 1;
  top: 0 !important;
  font-size: 0.85em !important;
}
.float-label .md-input ~ label {
  top: 20px;
  font-size: 1em;
}
.float-label .md-input.ng-dirty ~ label, .float-label .md-input.has-value ~ label {
  top: 0;
  font-size: 0.85em;
}
.md-input ~ label {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.85em;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
  display: inline-block;
  top: 0px;
  left: 0;
}
.md-input.disabled, .md-input[disabled] {
  opacity: 0.5;
}

textarea.md-input {
  height: auto;
}

.md-input-white:focus, .md-input-white.focus {
  border-color: #fff;
}
.md-input-white:focus ~ label, .md-input-white.focus ~ label {
  color: #fff;
}

.md-input-msg {
  position: absolute;
  bottom: 0;
  line-height: 24px;
  font-size: 0.85em;
}

.md-input-msg.right {
  right: 0;
}

.md-check {
  cursor: pointer;
  padding-left: 1.25rem;
  margin: 0;
  display: inline-block;
  position: relative;
}
.md-check input {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  margin-left: -1.25rem;
}
.md-check input:checked + i:before {
  border-width: 0;
  background-color: inherit;
}
.md-check input:checked + span .active {
  display: inherit;
}
.md-check input[type=radio] + i, .md-check input[type=radio] + i:before {
  border-radius: 50%;
}
.md-check input[type=checkbox]:checked + i:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 2px;
  display: table;
  width: 6px;
  height: 12px;
  border: 2px solid;
  border-top: 0;
  border-left: 0;
  content: " ";
}
.md-check input[type=radio]:checked + i:after {
  position: absolute;
  left: 6px;
  top: 6px;
  display: table;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  content: " ";
}
.md-check input[disabled] + i:before, fieldset[disabled] .md-check input + i:before {
  opacity: 0.5;
}
.md-check input[disabled]:checked + i:before {
  opacity: 0.5;
}
.md-check > i {
  width: 0;
  height: 18px;
  line-height: 1;
  margin-left: -20px;
  margin-top: 1px;
  float: left;
  display: inline-block;
  vertical-align: middle;
  margin-right: 28px;
  position: relative;
}
.md-check > i:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 100%;
  border: 2px solid #9e9e9e;
  border-radius: 2px;
}
.md-check > i.no-icon:after {
  display: none !important;
}

.md-switch {
  cursor: pointer;
  padding-left: 36px;
  margin: 0;
  min-height: 20px;
}
.md-switch input {
  position: absolute;
  cursor: pointer;
  width: 36px;
  height: 20px;
  z-index: 1;
  opacity: 0;
  margin-left: -36px;
}
.md-switch input:checked + i:before {
  background: inherit;
  opacity: 0.5;
}
.md-switch input:checked + i:after {
  background: inherit;
  left: 16px;
}
.md-switch input[disabled] + i:before, fieldset[disabled] .md-switch input + i:before {
  background-color: rgba(0, 0, 0, 0.12);
}
.md-switch input[disabled] + i:after, fieldset[disabled] .md-switch input + i:after {
  background-color: rgb(189, 189, 189);
}
.md-switch i {
  width: 0px;
  height: 18px;
  line-height: 1;
  margin-left: -36px;
  margin-top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 44px;
  position: relative;
}
.md-switch i:before {
  content: "";
  left: 1px;
  width: 34px;
  top: 3px;
  height: 14px;
  border-radius: 8px;
  position: absolute;
  background-color: rgb(158, 158, 158);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.md-switch i:after {
  content: "";
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  outline: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.26);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 1.75em;
  user-select: none;
  -webkit-user-select: none;
  color: inherit;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-placeholder {
  color: #999999;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #aaaaaa transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  display: inline-block;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  float: left;
  background-color: transparent;
  text-indent: 2px;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #eeeeee;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.ember-power-select-multiple-options {
  padding: 0;
  margin: 0;
}

.ember-power-select-multiple-option {
  border: 1px solid gray;
  border-radius: 4px;
  color: #333333;
  background-color: #e4e4e4;
  padding: 0 4px;
  display: inline-block;
  line-height: 1.45;
  float: left;
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: 1px solid #aaaaaa;
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-power-select-dropdown {
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  line-height: 1.75;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 1px solid #aaaaaa;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below, .ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid #aaaaaa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto;
  /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: 12.25em;
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 8px;
}

.ember-power-select-group[aria-disabled=true] {
  color: #999999;
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: #999999;
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: #dddddd;
}

.ember-power-select-option[aria-current=true] {
  background-color: #5897fb;
  color: #ffffff;
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #eeeeee;
}

.ember-power-select-trigger {
  padding: 0 16px 0 0;
}

.ember-power-select-selected-item, .ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: 25px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=rtl] {
  padding: 0 0 0 16px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item, .ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: 25px;
  right: initial;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

.map-container {
  width: 100%;
  height: 100%;
}

#mapPointerDetails {
  position: absolute;
  bottom: 50px;
  left: 10px;
  background: #222;
  color: #fff;
  padding: 10px;
}

#AdvisoryMap {
  height: 300px;
}

list-item .alert-title.v11 {
  font-size: 14px;
  font-weight: 600;
  color: #486064;
}
list-item:hover .alert-title.v11 {
  color: #00B0BF !important;
}

.country-names-list {
  border-left: 2px solid #b4bec0;
  padding-left: 5px;
  color: #476064;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.model-country-list {
  color: #476064;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.single-alert-topinfo .alert-topinfo-notice {
  float: right;
  color: #fff;
}

.single-alert-topinfo .alert-topinfo-breaking {
  margin-left: 10px;
  float: right;
  color: #fff;
}

.alert-country-list .single-alert-topflag {
  display: inline-block;
  margin-right: 20px;
}

.single-alert h2 {
  font-size: 22px;
  margin-bottom: 50px;
  color: #363636;
}
.single-alert h5 {
  font-size: 15px;
}
.single-alert .single-alert-main-view {
  padding-right: 40px;
  padding-bottom: 40px;
}
.single-alert .last-changes-alert-view {
  color: #E1E4E5 !important;
}
.single-alert .small-level-bullet .risk-level-bullet {
  width: 11px;
  height: 11px;
  margin-right: 4px;
}

.single-alert-topflag {
  margin-bottom: 50px;
}
.single-alert-topflag img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.single-alert-divider {
  margin: 25px 0;
  border-bottom: 1px solid #E1E4E5;
}

.single-alert-topinfo {
  border-top: 1px solid #E1E4E5;
  border-bottom: 1px solid #E1E4E5;
  color: #E1E4E5;
  max-width: 100%;
  padding: 10px 0;
  margin-bottom: 30px;
  font-size: 14px;
  padding-bottom: 5px;
}
.single-alert-topinfo .category-with-icon {
  margin-left: 5px;
}
.single-alert-topinfo span {
  color: #2C292D;
}

.alert-date {
  margin-bottom: 30px;
}

span.label.primary {
  background: #00B0BF;
  padding: 5px 7px;
  border-radius: 5px;
}

.right-sidebar-list {
  padding-right: 40px;
}
.right-sidebar-list h5 {
  border-bottom: 1px solid #E1E4E5;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.related-alerts-inner .list-item {
  margin-left: 30px;
}

.related-alerts-inner .list-item:first-child {
  margin-left: 0px;
}

.v11 .modal-content .related-alerts-inner .list-item {
  padding: 10px 0;
}

.alert-draft-text {
  margin-left: 5px;
  padding: 0 5px;
}

.alert-validation-errors {
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
}

.advice-box {
  background: #444;
}

.alert-status {
  width: 10px;
  display: inline-block;
  height: 1rem;
}

.analyst-alerts-table .column-countries {
  max-width: 300px;
}

.form-group.autocomplete {
  margin-bottom: 0 !important;
}

.autocomplete-items {
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  max-height: 15em;
  overflow-y: auto;
  margin-bottom: 1em;
}

.autocomplete-items div {
  padding: 5px 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #F2F5F5;
}

.advice-suggestion-toggle {
  margin-left: 3em;
}
.advice-suggestion-toggle label {
  font-size: 0.8em;
  vertical-align: middle;
}
.advice-suggestion-toggle .rsk-toggle {
  width: 2em;
  height: 1em;
  border: 1px solid #CED8D9;
  background: white;
  border-radius: 10px;
  padding: 0.1em;
  display: inline-block;
  margin-right: 0.5em;
}
.advice-suggestion-toggle .rsk-toggle .thumb {
  width: 0.7em;
  height: 0.7em;
  border-radius: 100%;
}

.alert-global-radius {
  display: inline-flex;
}

.alert-global-radius .ember-power-select-options {
  height: 20em;
}

.alerts-or-and-toggle {
  display: flex;
  padding-top: 5px;
}
.alerts-or-and-toggle .rsk-toggle {
  margin-right: 2px !important;
}

.alert-timezones {
  display: grid;
}
.alert-timezones .timezone-entry span {
  display: inline-block;
}
.alert-timezones .timezone-entry .timezone-hour {
  font-weight: 700;
  width: 7em;
}
.alert-timezones .timezone-entry .timezone-abbr {
  width: 3em;
  text-align: center;
}
.alert-timezones .timezone-entry .timezone-offset {
  width: 3em;
  text-align: center;
}
.alert-timezones .timezone-entry .timezone-name {
  padding-left: 1em;
}

.alert-edit-warning {
  position: absolute;
  margin-left: 25%;
}

.grouped-subcategories-select .ember-power-select-options[role=listbox] {
  max-height: 30em;
}
.grouped-subcategories-select .ember-power-select-options[role=group] {
  box-shadow: none;
}
.grouped-subcategories-select .ember-power-select-options[role=group] li {
  margin-left: 0.5em;
  padding: 0.1em 1em;
}

.alert-sources {
  word-wrap: break-word;
}

.alert-audits span {
  display: list-item;
  margin-left: 1.5em;
}

.rl-chart {
  padding: 2em 2em 0 2em;
}
.rl-chart .google-chart {
  padding: 0.5em;
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
}
.rl-chart .google-chart svg {
  max-width: 100%;
}

.alert-countries-chart .google-chart {
  max-width: calc(100% - 1em);
}

.rl-chart-table .chart-max-90 .google-chart {
  max-width: 90% !important;
}
.rl-chart-table .google-chart {
  margin-bottom: 2em;
}

.statistics-table-header-cell {
  min-width: 90px;
  white-space: normal;
  text-align: center;
}

.alert-sources-table-cell {
  min-width: 90px;
  max-width: 600px;
  white-space: normal !important;
}

.rl-chart-table.advisory-updates table thead th:nth-child(1) {
  width: 30%;
}
.rl-chart-table.advisory-updates table thead th:nth-child(3) {
  width: 10%;
}
.rl-chart-table.advisory-updates table thead th:nth-child(4) {
  width: 10%;
}

.statistics-table {
  padding-top: 10px !important;
  margin-bottom: 100px;
}

.statistics-table .table-chart table thead th {
  white-space: normal;
  text-align: center;
}
.statistics-table .table-chart table tbody tr td:not(:first-child) {
  text-align: center;
}

.tab-content .info-link-group > div {
  margin: 0 0 10px;
}
.tab-content .info-external-link {
  font-size: 13px;
  font-weight: 700;
  color: #486064;
}
.tab-content .place {
  font-size: 13px;
  margin-bottom: 30px;
}
.tab-content .place .place-header h4 {
  color: #00B0BF;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
  margin-top: 0;
}
.tab-content .box.v11 .box-header.v11 {
  padding: 0 0 0 40px;
  margin-bottom: 25px;
}
.tab-content .box.v11 .box-body.v11 {
  padding: 0 0 0 40px;
  margin-bottom: 25px;
}

.global-boxes .draggable-item {
  background-color: #fff;
  padding: 1em;
  margin-bottom: 1em;
}

.black .global-boxes .draggable-item {
  background-color: #152c31;
}

.links-remove {
  margin-top: 60px;
}

.company-header {
  display: flex;
  align-items: center;
  padding: 0 0 20px 0;
}

.company-header img {
  margin-right: 15px;
}

.modal-content .widget-service textarea {
  font-weight: 400;
  resize: none;
}

/* Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
  .country-header .country-flag {
    float: left;
    margin-right: 1em;
    max-width: 4rem;
  }

  .country-header {
    text-align: left;
  }

  .country-header .risk-level-header {
    font-size: 1rem;
    margin-bottom: .5rem;
    position: relative;
    top: -2.3rem;
  }

  .country-header .risk-level-header .risk-level-bullet {
    font-size: 1rem;
  }

  .country-header .country-flag + h1 {
    position: relative;
    top: 1.5rem;
  }
} */
.country-header {
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.country-header-details {
  display: flex;
  padding-bottom: 30px;
}

.country-header-details .hd {
  flex: 1 100%;
  flex-flow: row wrap;
  display: flex;
  align-content: center;
  padding-left: 12px;
}
.country-header-details .hd h1 {
  font-size: 19px;
  font-weight: bold;
  color: #363636;
}

.country-header-details .hd > * {
  flex: 1 100%;
}

.country-header .country-flag {
  /*float: left;
  width: 1.75em;
  margin-right: 1em;*/
  width: 46px;
  height: 46px;
}

.country-header h1 {
  margin: 0;
}

.risk-level-header {
  font-style: italic;
  font-size: 13px;
  padding-top: 5px;
}

.country-header .risk-level-bullet {
  width: 14px;
  height: 14px;
  padding: 0;
  margin-right: 4px;
  font-size: 0.7em;
  line-height: 1.4;
  top: -2px;
  position: relative;
}

.tab-content .city-list h3 {
  font-size: 15px;
  color: #2C292D;
  font-weight: 600px;
  margin-bottom: 20px;
}
.tab-content .suggest-city {
  color: #486064 !important;
  font-size: 14px;
  font-weight: 600;
  background: none;
  text-transform: capitalize;
  font-family: "open sans";
}
.tab-content .suggest-city span {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #00B0BF;
  color: white;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  margin-right: 5px;
}
.tab-content .city {
  padding-left: 50px;
}
.tab-content .city .has-level {
  border-bottom: 1px solid #E1E4E5;
  border-top: 1px solid #E1E4E5;
  padding: 10px 0;
}
.tab-content .city h3 {
  font-weight: 600;
  font-size: 17px;
  color: #2C292D;
  margin-top: 30px;
}
.tab-content #ReportSidebar .list-group,
.tab-content .city-list .list-group {
  border-bottom: 1px solid #E1E4E5;
}
.tab-content #ReportSidebar .list-group-item,
.tab-content .city-list .list-group-item {
  margin: 0;
  padding: 12 10px !important;
  background: white;
  color: #486064;
  font-size: 14px;
  border-top: 1px solid #E1E4E5;
}
.tab-content #ReportSidebar .list-group-item.active .chapter-trim,
.tab-content .city-list .list-group-item.active .chapter-trim {
  color: #363636 !important;
}
.tab-content #ReportSidebar .list-group-item.active,
.tab-content .city-list .list-group-item.active {
  background: white;
}
.tab-content #ReportSidebar .list-group-item .chapter-trim,
.tab-content .city-list .list-group-item .chapter-trim {
  display: inherit;
  position: relative;
  padding-left: 10px;
  margin-left: 0;
  background: none;
}
.tab-content #ReportBody .scrooling-content-tabs {
  padding-left: 50px;
}
.tab-content #ReportBody .scrooling-content-tabs h4 {
  margin-bottom: 20px;
}
.tab-content #ReportBody .scrooling-content-tabs .list.white {
  margin-bottom: 30px;
}
.tab-content #ReportBody .scrooling-content-tabs .list-item {
  margin-bottom: -1px !important;
  background: none;
  border-top: 1px solid #E1E4E5;
  border-bottom: 1px solid #E1E4E5;
}
.tab-content #ReportBody .scrooling-content-tabs .list-item:hover .alert-title {
  color: #00B0BF;
}
.tab-content #ReportBody .risk-level-row {
  margin: 5px 0;
}
.tab-content #ReportBody .risk-level-row .risk-level-name, .tab-content #ReportBody .risk-level-row .risk-level-value {
  display: inline-block;
}
.tab-content #ReportBody .risk-level-row .risk-level-name {
  width: 10.2em;
}
.tab-content #ReportBody .risk-level-description {
  padding-left: 5em;
}

#ReportBody .risk-level-bullet,
#ReportSidebar .risk-level-bullet,
.country-tabs + .skin-content-block .risk-level-bullet {
  font-size: 0.9rem;
  padding: 3px 7px;
}

.hazard .safety-icon {
  max-width: 100px;
  width: 3em;
}

.hazard .st0 {
  color: #4C6064;
}

.country-natural-hazard,
.row.hazard {
  padding-top: 10px;
  padding-bottom: 10px;
}

.hazard-advice {
  border-left: 3px solid #e1e4e5;
  padding: 10px 10px 10px 20px;
}
.hazard-advice p {
  margin-bottom: 0px !important;
}

.vaccine-section h5 {
  padding-left: 0.7em;
  padding-top: 0.7em;
}

.vaccine-item {
  padding: 1em;
  border-bottom: 1px solid #d5d5d5;
}

.black .vaccine-item {
  border-bottom: 1px solid #1FB0C1;
}

.black .vaccine-item {
  background: #0c191c;
}

.safety-icons {
  display: inline-block;
  vertical-align: middle;
}

.safety-icon {
  position: relative;
  padding: 0.7em;
  margin: 0.5em;
  border: 1px solid #244d56;
  border-radius: 100%;
  width: 3em;
  height: 3em;
  float: left;
  display: inline-block;
}

.safety-icon-text {
  display: none;
  background: #d5d5d5;
  color: #000;
  width: 500px;
  padding: 1.4em 1.4em 0;
  border-radius: 5px;
  position: absolute;
  bottom: 50px;
  left: calc(-50% - 15px);
  z-index: 10;
}

.black .safety-icon-text {
  background: #273032;
  color: #dfe3e3;
}

.safety-icon:hover {
  cursor: pointer;
}

.safety-icon:hover .safety-icon-text {
  display: inline-block;
}

.safety-icon-text:before {
  display: block;
  content: " ";
  width: 10px;
  height: 10px;
  background: #d5d5d5;
  position: absolute;
  bottom: -5px;
  transform: rotate(45deg);
  left: 3.5em;
}

.black .safety-icon-text:before {
  background: #273032;
}

.vaccine-title {
  font-size: 1.3em;
}

.chapter-trim {
  display: block;
  position: relative;
  padding-left: 1em;
  margin-left: 1em;
}

#ReportBody,
#ReportSidebar {
  /*padding-top: 1.25rem;*/
}

.black #ReportBody .list-item:before,
.black #ReportSidebar .list-group-item:before,
.black .btn-rsk-sec:before,
.black .country-tabs + .skin-content-block .list-group-item:before,
.black .country-tabs + .skin-content-block .list-item:before,
.black .general-list-item:before {
  background: #2C292D;
}

#ReportBody .list-item,
.country-tabs + .skin-content-block .list-item,
.general-list-item {
  border-top: 1px solid #E1E4E5;
  border-bottom: 1px solid #E1E4E5;
  border-radius: 0;
  background: white;
  margin-bottom: -1px !important;
  display: flex;
  align-content: center;
  flex-direction: row;
  padding: 10px 0;
}

#ReportBody .list-item:hover a,
.country-tabs + .skin-content-block .list-item:hover a,
.general-list-item:hover a {
  color: #00B0BF;
}

.black #ReportBody .list-item,
.black .country-tabs + .skin-content-block .list-item,
.black .general-list-item {
  background: #3C393C;
}

.black #ReportBody .list-item:hover,
.black .country-tabs + .skin-content-block .list-item:hover,
.black .general-list-item:hover {
  background: #5A797E;
}

#ReportBody .list-left + .list-body,
.country-tabs + .skin-content-block .list-left + .list-body,
.general-list-item .list-body {
  margin-left: 10px;
}

#ReportBody .list-item .list-left,
.country-tabs + .skin-content-block .list-item .list-left,
.general-list-item .list-left {
  align-self: center;
  width: 3em;
  text-align: center;
  padding: 0;
}

#ReportBody .list-item:before,
.country-tabs + .skin-content-block .list-item:before,
.general-list-item:before {
  left: 4em;
}

#ReportBody .alert-item .text-muted,
.column-box .text-muted,
.country-tabs + .skin-content-block .alert-item .text-muted,
.right-panel .text-muted,
.tab-content .text-muted {
  color: #9E9E9E !important;
  font-weight: bold;
  opacity: 1;
  font-size: 13px;
}

.black #ReportBody .alert-item .text-muted,
.black .country-tabs + .skin-content-block .alert-item .text-muted,
.black .right-panel .text-muted,
.black .tab-content .text-muted {
  color: #A7B8BA !important;
}

.tab-content .natural-health-risks h3,
.health-medical-section h3 {
  margin-bottom: 15px;
  margin-top: 45px;
}
.tab-content .natural-health-risks .country-risk-level,
.health-medical-section .country-risk-level {
  margin-bottom: 25px;
}

.tab-content .health-medical-section .vaccine-section {
  margin-bottom: 40px;
}
.tab-content .health-medical-section .vaccine-section h4 {
  background-color: #f8f8f8;
  color: #4c6367;
  padding: 8px;
  margin-top: 5px;
}

.ailments .vaccine-title {
  font-size: 1.1em;
  font-weight: 600;
}

.tab-content #ReportBody .natural-hazard-section .natural-hazard-header .natural-hazard-icon {
  display: inline-flex;
  vertical-align: middle;
}
.tab-content #ReportBody .natural-hazard-section .safety-icon {
  margin-left: 0px;
}
.tab-content #ReportBody .natural-hazard-section .natural-hazard-title {
  margin-bottom: 5px;
}
.tab-content #ReportBody .natural-hazard-section .natural-hazard-body p {
  margin-bottom: 25px;
}

.country-action {
  display: inline;
  margin-left: 15px;
}
.country-action .v11.pdf-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url("/images/svg/icon_pdf.svg") no-repeat center center;
  margin-bottom: -12px;
}
.country-action .v11.pta-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url("/images/svg/icon_eye.svg") no-repeat center center;
  margin-bottom: -12px;
}
.country-action .v11.pta-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url("/images/svg/icon_eye.svg") no-repeat center center;
  margin-bottom: -12px;
}
.country-action .v11.levels-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url("/images/svg/icon_download.svg") no-repeat center center;
  margin-bottom: -12px;
}
.country-action .v11.change-levels-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url("/images/svg/icon_settings.svg") no-repeat center center;
  margin-bottom: -12px;
}
.country-action .download-label {
  font-size: 13px;
  color: #486064;
  font-weight: bold;
}

.countrycontainer {
  position: relative;
  padding: 40px 20px 30px;
}
.countrycontainer .nav-item .nav-link {
  padding: 8px 20px;
  margin-bottom: 1px;
}
.countrycontainer .nav-item .nav-link.active {
  background-color: #F2F5F5 !important;
  color: black !important;
}
.countrycontainer h1 {
  padding-bottom: 30px;
  font-weight: 800;
  font-size: 19px;
}
.countrycontainer .region {
  font-size: 13px;
  line-height: 13px;
}
.countrycontainer .reg-country-name {
  font-size: 11px;
  text-transform: uppercase;
}
.countrycontainer .searchcountries {
  width: 200px;
  position: absolute;
  right: 20px;
  top: 40px;
}
.countrycontainer .bulk-change-risk-levels {
  position: absolute;
  right: 240px;
  top: 40px;
}

.bulk-change-risk-level-row {
  margin-top: 10px;
  padding: 5px 0px;
}

.bulk-change-risk-level-row:nth-child(odd) {
  background-color: #F2F5F5;
}

.bulk-change-alert {
  background-color: #68d2db !important;
}

.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rl-country-select {
  min-width: 300px;
}

.country-summary .risk-level-row {
  margin: 5px 0;
}
.country-summary .risk-level-row .risk-level-name, .country-summary .risk-level-row .risk-level-value {
  display: inline-block;
}
.country-summary .risk-level-row .risk-level-name {
  width: 10.2em;
}
.country-summary .risk-level-description {
  padding-left: 5em !important;
}

.emergency-numbers-editor .btn-actions {
  padding-top: 32px;
}

.last-update-muted {
  color: #9E9E9E !important;
  opacity: 1;
  font-size: 13px;
}

.daily-brief-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.daily-brief-container .nothing {
  text-align: center;
  margin: 30px auto;
  font-style: italic;
  color: #363636;
  font-size: 16px;
}
.daily-brief-container .header .daily-brief-logo {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
.daily-brief-container .header .daily-brief-logo img {
  width: 46px;
}
.daily-brief-container .header h1 {
  font-size: 33px;
  color: #0E3B43;
  font-family: "Frank Ruhl Libre", serif;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}
.daily-brief-container .header h2 {
  font-size: 16px;
  color: #2C292D;
  text-align: center;
  margin-bottom: 60px;
  font-weight: normal;
}
.daily-brief-container .header h3 {
  font-size: 17px;
  color: #486064;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

h3.daily-brief-continent {
  color: #0E3B43;
  font-size: 20px;
  background: #CED8D9;
  padding: 20px 80px;
  font-family: "Frank Ruhl Libre", serif;
  background-repeat: no-repeat;
  background-position: left center;
}
h3.daily-brief-continent.continent-bg-1 {
  background-image: url("/images/continent1-cc31b92581f24746e866cb30bdd30dfa.png");
}
h3.daily-brief-continent.continent-bg-2 {
  background-image: url("/images/continent2-c64369ee261226f175fc3449b16592cb.png");
}
h3.daily-brief-continent.continent-bg-3 {
  background-image: url("/images/continent3-7a9fc94a877e7e86933e66335bb4db64.png");
}
h3.daily-brief-continent.continent-bg-4 {
  background-image: url("/images/continent4-fa99d2920322983dde5327da34a5629a.png");
}
h3.daily-brief-continent.continent-bg-5 {
  background-image: url("/images/continent5-12de5afc76a7cd8d290196dd150388fa.png");
}

.daily-brief-alert {
  background: #FAFAFA;
  padding: 40px;
  border-bottom: 1px solid #EAEAEA;
  /* font-family: 'Frank Ruhl Libre', serif; */
}
.daily-brief-alert .daily-brief-alert-header {
  margin-bottom: 30px;
}
.daily-brief-alert .daily-brief-alert-header .flag-ds {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  margin-top: -8px;
  border-radius: 50%;
}
.daily-brief-alert .daily-brief-alert-header .divider {
  color: #E1E4E5;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 25px;
}
.daily-brief-alert .daily-brief-alert-header .risk-level-bullet {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 10px;
  line-height: 25px;
}
.daily-brief-alert .daily-brief-alert-header .country {
  color: #2C292D;
  font-size: 17px;
  font-weight: bold;
  line-height: 25px;
}
.daily-brief-alert .daily-brief-alert-header .risk {
  color: #363636;
  font-size: 15px;
  font-style: italic;
  line-height: 25px;
}
.daily-brief-alert .daily-brief-alert-title {
  margin-left: 10px;
  padding-left: 30px;
  border-left: 1px solid #707070;
}
.daily-brief-alert .daily-brief-alert-title .titel {
  color: #2C292D;
  font-size: 20px;
  font-weight: bold;
}
.daily-brief-alert .daily-brief-alert-title .text {
  color: #2C292D;
  font-size: 15px;
}
.daily-brief-alert .daily-brief-alert-btn {
  margin-left: 10px;
  padding-left: 30px;
  margin-top: 30px;
}
.daily-brief-alert .daily-brief-alert-btn .btn {
  color: #486064;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 12px;
  border: 1px solid #AFBABC;
  border-radius: 6px;
}

.daily-brief-alert.danger {
  background: #fff0f0 !important;
}

.continent-1 {
  background: url("/images/ssa-light-912410d897a1ecf51c26bfdeaf6c35aa.png") no-repeat;
}

.black .continent-1 {
  background: url("/images/ssa-dark-c84d4dbba866f031d8c11a447505625c.png") no-repeat;
}

.continent-2 {
  background: url("/images/mena-light-9e7e8e301b40f67ff4b77bf6afd6dace.png") no-repeat;
}

.black .continent-2 {
  background: url("/images/mena-dark-69a121105b61d297aee87efb6c6e343b.png") no-repeat;
}

.continent-3 {
  background: url("/images/europe-light-59c61c6d991f0fe040ef84c52c054021.png") no-repeat;
}

.black .continent-3 {
  background: url("/images/europe-dark-9641736f9808b8dbe5c55243d55a7270.png") no-repeat;
}

.continent-4 {
  background: url("/images/apac-light-7ae2185603c449196c0f4578d99696dd.png") no-repeat;
}

.black .continent-4 {
  background: url("/images/apac-dark-6670ddb3aea8327944fc863526ff413c.png") no-repeat;
}

.continent-5 {
  background: url("/images/amer-light-a4a9890b9d69b1d0e61ff4555b2fd898.png") no-repeat;
}

.black .continent-5 {
  background: url("/images/amer-dark-07ee5ae17dedbcfbed29e810c7e0d116.png") no-repeat;
}

.continent {
  min-height: 9em;
  background-size: 100% auto !important;
  border-radius: 5px;
  margin-bottom: 1em;
  background-position: center center;
}

.alert-box {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1em;
  font-size: 11px;
  border: 1px solid #E1E4E5;
  border-radius: 4px;
  padding: 15px 15px 10px;
  background: none;
}
.alert-box .expand-arrow {
  display: none;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("/images/expand-arrow-ac5ac3d00c02745583c958feac7690f4.png");
}
.alert-box[data-hover=yes]:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1921568627);
  cursor: pointer;
}
.alert-box[data-hover=yes]:hover .expand-arrow {
  display: block;
}
.alert-box .risk-level-bullet {
  font-size: 10px;
  padding: 0.2em 0.4em;
}
.alert-box .box-header {
  color: #2C292D;
  padding: 0;
  margin-bottom: 8px;
}
.alert-box .box-header h3 {
  color: #2C292D;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}
.alert-box img.flag-ds {
  border: 1px solid #E1E4E5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.alert-box p {
  margin-bottom: 5px;
}
.alert-box .box-body {
  padding: 0;
}

.black .alert-box {
  background: #3C393C;
}

.alerts-dashboard .text-muted {
  color: #A7B8BA !important;
  font-weight: bold;
  opacity: 1;
}

.black .alerts-dashboard .text-muted {
  color: #F3F5F5 !important;
}

.alerts-dashboard .list-left {
  padding-right: 0.8em;
}

.alerts-dashboard .rl-load-spinner {
  margin: auto;
  width: 0px;
}

.alerts-dashboard p {
  margin-bottom: 0.5rem;
}

.alerts-dashboard .list-left + .list-body {
  margin-left: 0;
}

.dashboard-risk-level {
  display: block;
  width: 2em;
  line-height: 1.8em;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 100%;
  margin: 0 auto;
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-risk-level {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.force-overflow .alerts-dashboard {
  /*padding-left: 20px;*/
}

.box-container {
  background-color: #fff !important;
}

.multi-country-alert {
  transition: transform 0.5s;
  display: block;
}

.country-column-display {
  display: none;
}

.alerts-dashboard {
  position: relative;
  font-family: "Open Sans", sans-serif !important;
}
.alerts-dashboard h4 {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 18px;
}
.alerts-dashboard .col-sm-2 {
  padding-left: 20px !important;
  padding-right: 20px !important;
  border-right: 1px solid #E1E4E5;
}
.alerts-dashboard .col-sm-2:last-child {
  border-right: none;
}

.alert-box-container:hover {
  position: relative;
  width: 100%;
}

.box-container.risk-level-5 .alert-box[data-hover=yes]:hover {
  border: 2px solid #bd2f35;
}

.alert-box-container .text-muted {
  white-space: unset;
}

@media (min-width: 576px) and (max-width: 1900px) {
  .alert-box .media img {
    display: none;
  }

  .alerts-dashboard .text-muted {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .alerts-dashboard.h-scroll {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .alerts-dashboard.h-scroll .col-sm-2 {
    display: inline-block !important;
    width: 40%;
  }
}
@media (min-width: 992px) {
  .alerts-dashboard .col-sm-2 {
    /*flex: 0 0 50%;
    max-width: 50%;*/
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .alerts-dashboard .col-sm-2 {
    /*flex: 0 0 50%;
    max-width: 50%;*/
    flex: 0 0 20%;
    max-width: 20%;
  }

  .alerts-dashboard .box-header .media-body {
    max-width: 100%;
  }

  .alerts-dashboard .flag-icon {
    display: none;
  }

  .alerts-dashboard [class*=col-] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .alerts-dashboard .text-muted,
.alerts-dashboard p {
    font-size: 0.7rem;
    margin-bottom: 0;
    height: auto;
    line-height: 1.3;
  }

  .alerts-dashboard .box-body,
.alerts-dashboard .box-header {
    padding: 0.5rem;
  }
}
@media (min-width: 768px) {
  .alerts-dashboard .col-sm-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.dashboard-container {
  margin-left: 2rem;
  margin-top: 2rem;
}

.alerts-dashboard-list {
  display: grid;
}
.alerts-dashboard-list .list-header {
  display: inline;
}
.alerts-dashboard-list .list-header img.flag-ds {
  border: 1px solid #E1E4E5;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.alerts-dashboard-list .list-header .risk-level-bullet {
  font-size: 10px;
  padding: 0.2em 0.4em;
}
.alerts-dashboard-list .list-body p {
  margin-bottom: 2px;
  font-size: 0.8rem;
}
.alerts-dashboard-list .list-body .alert-title {
  font-size: 0.95rem;
  font-weight: bold;
}
.alerts-dashboard-list .list-body .alert-category {
  font-weight: 600;
  color: #A7B8BA !important;
  opacity: 1;
}
.alerts-dashboard-list .list-body .alert-subcategories {
  font-weight: 400;
  color: #A7B8BA !important;
  opacity: 1;
}

.risk-levels-nav-menu {
  padding: 20px 0 0 20px;
}

.scrooling-content-risk-levels-view-tab {
  max-height: calc(100vh - 15rem);
  overflow: auto;
}

.risk-levels-view-table {
  text-align: center;
}
.risk-levels-view-table th {
  text-align: center;
  position: sticky;
  top: 0;
}
.risk-levels-view-table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}
.risk-levels-view-table .rl-view {
  border: 2px solid #F2F5F5 !important;
}

.rl-low {
  background-color: #2f835a !important;
}

.rl-moderate {
  background-color: #3eaf70 !important;
}

.rl-medium {
  background-color: #fbc93a !important;
}

.rl-high {
  background-color: #e1874d !important;
}

.rl-extreme {
  background-color: #bd2f35 !important;
}

.rl-load-spinner {
  display: flex;
}

.login-bg {
  background: url("/images/rsk-login-bg-opt-7cd5a1b3700e43c6939136bb88ae991f.png") no-repeat center center fixed;
  background-size: cover;
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-bg .modal-content {
  padding: 30px;
}
.login-bg .modal-content label {
  color: #486064 !important;
}

.w-login .btn.btn-primary {
  width: 100%;
}

.travel-risk-name {
  font-size: 36px;
  line-height: 56px;
  font-weight: 800;
}

/* start global map */
.mapboxgl-ctrl-group {
  box-shadow: none;
}

.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
  border: none;
}

.mapboxgl-ctrl-group > button + button {
  border-top: 1px solid #486064;
}

.mapbox-gl-draw_ctrl-draw-btn,
.mapboxgl-ctrl-icon {
  background-color: #5A797E !important;
}

.mapbox-gl-draw_point:hover,
.mapbox-gl-draw_polygon:hover,
.mapbox-gl-draw_trash:hover,
.mapboxgl-ctrl-icon.mapboxgl-ctrl-fullscreen:hover,
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-in:hover,
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-out:hover {
  background-color: #486064 !important;
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-in {
  background: url("/images/plus-e1efc34c737e0b50d49c0ba14fc5f2e1.png") no-repeat center center;
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-out {
  background: url("/images/minus-ec54991cbc2caecc1c73d36e34e1d241.png") no-repeat center center;
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-fullscreen {
  background: url("/images/full-3e7b38db1bfea47272118ba3a9ea5672.png") no-repeat center center;
}

.mapboxgl-ctrl-styles {
  display: flex;
}
.mapboxgl-ctrl-styles button {
  width: auto;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: white;
}
.mapboxgl-ctrl-styles button.active {
  font-weight: bold;
  background: #1FB0C1 !important;
}

.mapboxgl-ctrl-risk-levels {
  position: fixed;
  margin-left: 130px !important;
  display: flex;
}
.mapboxgl-ctrl-risk-levels button.mapboxgl-ctrl-risk-levels-select {
  width: auto;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: white;
}
.mapboxgl-ctrl-risk-levels .mapboxgl-ctrl-risk-levels-items {
  width: 100%;
  display: inline-grid;
  position: absolute;
  margin-top: 29px;
  background: white;
}
.mapboxgl-ctrl-risk-levels .mapboxgl-ctrl-risk-levels-items button {
  padding: 0 8px;
  width: auto;
  display: inline-block;
}
.mapboxgl-ctrl-risk-levels .mapboxgl-ctrl-risk-levels-items button.active {
  color: white;
  font-weight: bold;
  background: #1FB0C1 !important;
}

.mapboxgl-ctrl-risk-levels-analysts {
  margin-left: 196px !important;
}

.mapboxgl-ctrl-rl-marker button.-active {
  background-color: #1FB0C1 !important;
}

.mapbox-gl-draw_polygon {
  background: url("/images/draw-white.svg") no-repeat center/60%;
}

.mapbox-gl-draw_point {
  background: url("/images/pin-white.svg") no-repeat center/60%;
}

.mapbox-gl-draw_trash {
  background: url("/images/delete-white.svg") no-repeat center/60%;
}

#GlobalMapWrapper,
.globalMapView {
  height: 100%;
}

#GlobalMapWrapper {
  position: relative;
}

#CountryMap .map-container {
  height: calc(100vh - 19rem);
}

#ManagerMapWrapper,
.managerMapView {
  height: 100%;
}

#ManagerMapWrapper {
  position: relative;
  margin-left: -15px;
}

#CityMap .map-container {
  height: 300px;
}

.map-cities-details h4:first-child {
  margin-top: 0px;
}

.traveler-bio-info-section .map-container {
  height: 300px;
}

.form-map .map-container {
  /*height: calc(100vh - 25rem);*/
  height: 25rem;
}

.modal-map .map-container {
  height: 32rem;
}

#travelingForm .map-container {
  height: 300px;
}

#RiskLegend {
  width: 9rem;
  position: absolute;
  height: 3rem;
  z-index: 11;
  bottom: 4.5rem;
  left: 1rem;
}

.legend-item {
  padding: 0.2rem 0.5rem;
}

.mapboxgl-popup-content {
  width: 40em;
  height: auto;
}

.map-user-name-popup .mapboxgl-popup-content {
  width: auto;
  height: auto;
  padding: 4px;
}
.map-user-name-popup .mapboxgl-popup-tip {
  display: none;
}

.spider-leg-user-name [data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}
.spider-leg-user-name [data-title]:after {
  content: attr(data-title);
  position: absolute;
  top: 0%;
  right: 80%;
  background-color: #FFF;
  color: #000;
  font: 1.1em "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 4px;
  white-space: nowrap;
  pointer-events: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 3px;
  z-index: 99999;
  visibility: hidden;
}

.black .mapboxgl-popup-content {
  background: #0c191c;
}

.black .mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip,
.black .mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  border-top-color: #0c191c;
}

.mapAdvisoriesDetails ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mapAdvisoriesDetails ul li {
  margin-bottom: 1em;
  border-bottom: 1px solid #CED8D9;
}
.mapAdvisoriesDetails ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.black .mapAdvisoriesDetails li {
  border-bottom: 1px solid #3C393C;
}
.black .mapAdvisoriesDetails li:last-child {
  border-bottom: none;
}

/* end global map */
/* start risk map */
.rm-panel-height {
  height: calc(100vh - 65px);
  border-radius: 0;
  border: none;
}

.v11-risk-map-overlay {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 8px;
  bottom: 0;
}
.v11-risk-map-overlay .global-map-cities h3 {
  margin-bottom: 5px;
}
.v11-risk-map-overlay .global-map-cities h3:not(:first-child) {
  margin-top: 20px;
}

.risk-map-nav {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 1049;
}
.risk-map-nav .stats-item,
.risk-map-nav a.nav-link {
  color: #486064 !important;
  font-size: 15px !important;
  font-weight: bold !important;
  padding: 5px 10px;
  border: none;
  background: none;
}
.risk-map-nav.nav-active-bg .nav > li.active > a,
.risk-map-nav .stats-item.active {
  color: white !important;
  background: #00B0BF !important;
  border-radius: 6px !important;
}

.add-asset {
  color: white;
  background: #00B0BF;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  font-size: 10px;
  border-radius: 11px;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 26px;
}
.add-asset:hover {
  color: white !important;
}

.asset-details p.asset-address {
  white-space: pre-line;
}

.right-panel-inner {
  padding: 30px 26px;
  overflow-x: visible;
  font-size: 13px;
}
.right-panel-inner .flag {
  width: 28px;
  margin-bottom: 12px;
}
.right-panel-inner .flag img {
  width: 100%;
}
.right-panel-inner h3 {
  font-size: 14px;
  color: #2C292D;
  font-weight: bold;
  margin-bottom: 15px;
}
.right-panel-inner p.risk-level {
  margin-bottom: 25px;
}
.right-panel-inner h5.location {
  padding-left: 20px;
  background: url("/images/location-38688d0445fc5e15a4f2ab66cb7a3647.png") left center no-repeat;
  font-weight: 600;
  margin-top: 30px;
  line-height: 25px;
}
.right-panel-inner p.affected {
  padding-left: 25px;
  background: url("/images/traveler-46f56196a1efb8e813bc5ae76910c961.png") -7px 0 no-repeat;
  margin-top: 30px;
  line-height: 25px;
}
.right-panel-inner p.title {
  font-weight: bold;
}
.right-panel-inner p.advice {
  padding: 25px;
  background: #FFF9D0;
  text-transform: uppercase;
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: -30px;
  font-weight: 600;
  font-size: 12px;
}
.right-panel-inner p.advice strong {
  font-weight: bold;
}

.third-lvl-tabs .nav-item {
  margin-right: 0;
}

.third-lvl-tabs.traveler {
  background: #f4f4f4;
  padding-top: 10px;
  margin-left: -26px;
  margin-right: -26px;
  padding-bottom: 0;
  border: none;
}
.third-lvl-tabs.traveler .nav-item {
  margin-right: 0;
  width: 50%;
}
.third-lvl-tabs.traveler .nav-item a {
  border-radius: 0;
  font-size: 12px;
  font-weight: bold;
  border: none;
}

.alertpanel-country,
.traveler-panel {
  padding-top: 10px;
}
.alertpanel-country .ember-power-select-trigger,
.traveler-panel .ember-power-select-trigger {
  padding: 0 16px 0 0;
  border: none;
  margin-left: 10px;
}

#risk-map-search .form-group {
  margin-bottom: 0;
}

#risk-map-results {
  padding: 0.7em 1em;
}

.v11-traveler-list-item {
  padding: 20px 15px;
  border-bottom: 1px solid #E1E4E5;
}
.v11-traveler-list-item .list-left {
  padding-right: 10px;
}
.v11-traveler-list-item .list-body {
  padding-left: 0;
  margin-left: 0;
}
.v11-traveler-list-item .avatar {
  border: 1px solid #CED8D9;
  width: 36px;
  height: 36px;
}
.v11-traveler-list-item .avatar img {
  width: 34px;
  height: 34px;
  border: 1px solid white;
}
.v11-traveler-list-item h3 {
  font-size: 13px;
  color: #2C292D;
  font-weight: bold;
}
.v11-traveler-list-item .phone {
  font-size: 13px;
  color: #363636;
  margin: 0;
}

.v11-traveler-item {
  margin-left: -26px;
  margin-right: -26px;
}
.v11-traveler-item h3 {
  font-size: 13px;
  color: #2C292D;
  font-weight: bold;
  margin-bottom: 5px;
}
.v11-traveler-item .phone {
  font-size: 13px;
  color: #363636;
  margin: 0;
}
.v11-traveler-item .avatar {
  border: 1px solid #CED8D9;
  width: 36px;
  height: 36px;
}
.v11-traveler-item .avatar img {
  width: 34px;
  height: 34px;
  border: 1px solid white;
}
.v11-traveler-item .left {
  padding-left: 30px;
  padding-right: 10px;
  float: left;
}
.v11-traveler-item .body {
  padding-left: 0;
  margin-left: 0;
  float: left;
  margin-bottom: 20px;
}
.v11-traveler-item .location {
  clear: both;
  border-top: 1px solid #E1E4E5;
  border-bottom: 1px solid #E1E4E5;
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 55px;
  padding-bottom: 20px;
}
.v11-traveler-item .location h5 {
  font-weight: 600;
  font-size: 13px;
  background: url("/images/location-38688d0445fc5e15a4f2ab66cb7a3647.png") left center no-repeat;
  padding-left: 20px;
  line-height: 20px;
}
.v11-traveler-item .location p {
  padding-left: 20px;
  margin-bottom: 0;
}

.tab-content.traveler-info {
  padding-top: 0;
  margin-left: -26px;
  margin-right: -26px;
  margin-bottom: -30px;
}
.tab-content.traveler-info .scroll-height {
  height: calc(100vh - 400px);
}
.tab-content.traveler-info .list-item.simple.v11 {
  padding: 20px 15px;
}
.tab-content.traveler-info .list-item.simple.v11 .date {
  color: #9E9E9E;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}
.tab-content.traveler-info .list-item.simple.v11 .head {
  color: #363636;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.tab-content.traveler-info .list-item.simple.v11 .location {
  color: #363636;
  font-size: 13px;
  background: url("/images/location-38688d0445fc5e15a4f2ab66cb7a3647.png") left center no-repeat;
  padding-left: 20px;
  margin-bottom: 0;
}
.tab-content.traveler-info .fixedDates.v11.from {
  color: #00B0BF;
  position: absolute;
  top: -15px;
  font-size: 13px;
  font-weight: 600;
}
.tab-content.traveler-info .fixedDates.v11.to {
  color: #00B0BF;
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 13px;
  font-weight: 600;
}
.tab-content.traveler-info .noUi-handle {
  background: #00B0BF;
}
.tab-content.traveler-info .noUi-connects {
  height: 3px;
}

.filters-riskline.traveler-checkins {
  border-bottom: 1px solid #E1E4E5;
  padding: 20px 15px;
}

.traveler-checking-date-range .fixedDates {
  display: block;
}
.traveler-checking-date-range .noUi-tooltip {
  display: none;
}

.right-panel + .rsk-list-item {
  padding-top: 0;
}

.right-panel + .rsk-list-item:hover {
  background: none;
}

.rm-panel-height .text-right + .column-box {
  margin-top: 1rem;
}

.v11-asset {
  color: #363636;
  font-size: 13px;
}
.v11-asset h5 {
  font-size: 13px;
  font-weight: bold;
  color: #2C292D;
}

.area-nav {
  border-bottom: 1px solid #E1E4E5;
}

.area-details h3 {
  font-size: 16px;
  color: #2C292D;
  font-weight: bold;
  margin-top: 40px;
}
.area-details .risk {
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  color: #363636;
  margin-bottom: 40px;
}
.area-details .risk .risk-level-bullet {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  padding: 0;
  font-style: normal;
}
.area-details p {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #F2F5F5;
}

.add-area {
  color: white;
  background: #00B0BF;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  font-size: 10px;
  border-radius: 11px;
  margin-right: 26px;
  margin-top: 30px;
}
.add-area:hover {
  color: white !important;
}

.area-item.v11 {
  padding: 25px;
}
.area-item.v11 h5 {
  font-size: 15px;
  color: #2C292D;
  font-weight: bold;
  margin-bottom: 10px;
}
.area-item.v11 .risk {
  font-size: 13px;
  color: #363636;
  font-style: italic;
}
.area-item.v11 .risk .risk-level-bullet {
  font-size: 10px;
  color: #363636;
  font-style: normal;
  width: 18px;
  height: 18px;
  padding: 0;
  line-height: 18px;
  text-alert: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.alert-impacted-location-map {
  height: 400px;
}

#places-search-results {
  padding-bottom: 10px;
}

#places-search-results ul {
  margin-bottom: 10px;
}

#places-search-results li {
  padding: 2px 0;
}

#search-providers {
  padding: 10px 0;
}

/* end risk map */
.rl-conflict-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M13.7,31.68c-0.03-0.01-0.05-0.02-0.08-0.03c-0.11-0.07-0.16-0.2-0.12-0.33l2.3-6.9l-9.93,1.22c-0.14,0.02-0.27-0.07-0.3-0.21c-0.03-0.14,0.04-0.28,0.17-0.33l8.21-3.23l-4.42-0.74C9.39,21.12,9.29,21,9.29,20.86s0.1-0.25,0.24-0.27l4.54-0.64l-5.48-5.98c-0.09-0.1-0.1-0.26-0.01-0.36c0.09-0.11,0.24-0.13,0.36-0.06l6.55,3.93l-1.42-3.9c-0.04-0.12,0-0.26,0.11-0.33c0.11-0.07,0.26-0.05,0.35,0.04l3.07,3.22l-0.7-7.44c-0.01-0.14,0.08-0.27,0.22-0.3c0.14-0.03,0.27,0.04,0.32,0.17l2.88,7.75l3.7-5.15c0.08-0.11,0.22-0.15,0.34-0.09c0.12,0.06,0.19,0.19,0.15,0.32l-1.49,6.2l8.17-3.85c0.12-0.06,0.27-0.02,0.35,0.1c0.08,0.11,0.06,0.27-0.04,0.36l-6.99,6.49l4.53,2.49c0.11,0.06,0.17,0.19,0.14,0.31s-0.14,0.21-0.27,0.21l-5.12,0.04l2.37,10.33c0.03,0.13-0.04,0.26-0.16,0.32c-0.12,0.05-0.26,0.01-0.34-0.1l-6.1-8.79l-5.59,5.73C13.9,31.68,13.8,31.7,13.7,31.68z M18.07,21.69c0.05,0.01,0.1,0.04,0.14,0.08c0.06,0.07,0.09,0.17,0.06,0.26l-0.63,2.46l2.1-1.59c0.12-0.09,0.29-0.07,0.39,0.05l1.12,1.41l-0.28-1.51c-0.01-0.08,0-0.16,0.05-0.22c0.05-0.06,0.12-0.1,0.2-0.11l1.97-0.19l-0.99-1.37c-0.08-0.12-0.07-0.28,0.04-0.37l1.45-1.26l-2.71,0.5c-0.11,0.02-0.23-0.03-0.29-0.13l-1.13-1.9l-0.06,1.34c0,0.08-0.04,0.15-0.09,0.2c-0.06,0.05-0.13,0.07-0.21,0.07l-1.79-0.13l0.78,0.67c0.06,0.05,0.1,0.13,0.1,0.21c0,0.08-0.04,0.16-0.1,0.21l-1.98,1.61l1.77-0.28C17.99,21.68,18.03,21.68,18.07,21.69z"/></svg>') center center no-repeat;
}

.rl-conflict-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M13.7,31.68c-0.03-0.01-0.05-0.02-0.08-0.03c-0.11-0.07-0.16-0.2-0.12-0.33l2.3-6.9l-9.93,1.22c-0.14,0.02-0.27-0.07-0.3-0.21c-0.03-0.14,0.04-0.28,0.17-0.33l8.21-3.23l-4.42-0.74C9.39,21.12,9.29,21,9.29,20.86s0.1-0.25,0.24-0.27l4.54-0.64l-5.48-5.98c-0.09-0.1-0.1-0.26-0.01-0.36c0.09-0.11,0.24-0.13,0.36-0.06l6.55,3.93l-1.42-3.9c-0.04-0.12,0-0.26,0.11-0.33c0.11-0.07,0.26-0.05,0.35,0.04l3.07,3.22l-0.7-7.44c-0.01-0.14,0.08-0.27,0.22-0.3c0.14-0.03,0.27,0.04,0.32,0.17l2.88,7.75l3.7-5.15c0.08-0.11,0.22-0.15,0.34-0.09c0.12,0.06,0.19,0.19,0.15,0.32l-1.49,6.2l8.17-3.85c0.12-0.06,0.27-0.02,0.35,0.1c0.08,0.11,0.06,0.27-0.04,0.36l-6.99,6.49l4.53,2.49c0.11,0.06,0.17,0.19,0.14,0.31s-0.14,0.21-0.27,0.21l-5.12,0.04l2.37,10.33c0.03,0.13-0.04,0.26-0.16,0.32c-0.12,0.05-0.26,0.01-0.34-0.1l-6.1-8.79l-5.59,5.73C13.9,31.68,13.8,31.7,13.7,31.68z M18.07,21.69c0.05,0.01,0.1,0.04,0.14,0.08c0.06,0.07,0.09,0.17,0.06,0.26l-0.63,2.46l2.1-1.59c0.12-0.09,0.29-0.07,0.39,0.05l1.12,1.41l-0.28-1.51c-0.01-0.08,0-0.16,0.05-0.22c0.05-0.06,0.12-0.1,0.2-0.11l1.97-0.19l-0.99-1.37c-0.08-0.12-0.07-0.28,0.04-0.37l1.45-1.26l-2.71,0.5c-0.11,0.02-0.23-0.03-0.29-0.13l-1.13-1.9l-0.06,1.34c0,0.08-0.04,0.15-0.09,0.2c-0.06,0.05-0.13,0.07-0.21,0.07l-1.79-0.13l0.78,0.67c0.06,0.05,0.1,0.13,0.1,0.21c0,0.08-0.04,0.16-0.1,0.21l-1.98,1.61l1.77-0.28C17.99,21.68,18.03,21.68,18.07,21.69z"/></svg>') center center no-repeat;
}

.rl-conflict-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M13.7,31.68c-0.03-0.01-0.05-0.02-0.08-0.03c-0.11-0.07-0.16-0.2-0.12-0.33l2.3-6.9l-9.93,1.22c-0.14,0.02-0.27-0.07-0.3-0.21c-0.03-0.14,0.04-0.28,0.17-0.33l8.21-3.23l-4.42-0.74C9.39,21.12,9.29,21,9.29,20.86s0.1-0.25,0.24-0.27l4.54-0.64l-5.48-5.98c-0.09-0.1-0.1-0.26-0.01-0.36c0.09-0.11,0.24-0.13,0.36-0.06l6.55,3.93l-1.42-3.9c-0.04-0.12,0-0.26,0.11-0.33c0.11-0.07,0.26-0.05,0.35,0.04l3.07,3.22l-0.7-7.44c-0.01-0.14,0.08-0.27,0.22-0.3c0.14-0.03,0.27,0.04,0.32,0.17l2.88,7.75l3.7-5.15c0.08-0.11,0.22-0.15,0.34-0.09c0.12,0.06,0.19,0.19,0.15,0.32l-1.49,6.2l8.17-3.85c0.12-0.06,0.27-0.02,0.35,0.1c0.08,0.11,0.06,0.27-0.04,0.36l-6.99,6.49l4.53,2.49c0.11,0.06,0.17,0.19,0.14,0.31s-0.14,0.21-0.27,0.21l-5.12,0.04l2.37,10.33c0.03,0.13-0.04,0.26-0.16,0.32c-0.12,0.05-0.26,0.01-0.34-0.1l-6.1-8.79l-5.59,5.73C13.9,31.68,13.8,31.7,13.7,31.68z M18.07,21.69c0.05,0.01,0.1,0.04,0.14,0.08c0.06,0.07,0.09,0.17,0.06,0.26l-0.63,2.46l2.1-1.59c0.12-0.09,0.29-0.07,0.39,0.05l1.12,1.41l-0.28-1.51c-0.01-0.08,0-0.16,0.05-0.22c0.05-0.06,0.12-0.1,0.2-0.11l1.97-0.19l-0.99-1.37c-0.08-0.12-0.07-0.28,0.04-0.37l1.45-1.26l-2.71,0.5c-0.11,0.02-0.23-0.03-0.29-0.13l-1.13-1.9l-0.06,1.34c0,0.08-0.04,0.15-0.09,0.2c-0.06,0.05-0.13,0.07-0.21,0.07l-1.79-0.13l0.78,0.67c0.06,0.05,0.1,0.13,0.1,0.21c0,0.08-0.04,0.16-0.1,0.21l-1.98,1.61l1.77-0.28C17.99,21.68,18.03,21.68,18.07,21.69z"/></svg>') center center no-repeat;
}

.rl-conflict-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M13.7,31.68c-0.03-0.01-0.05-0.02-0.08-0.03c-0.11-0.07-0.16-0.2-0.12-0.33l2.3-6.9l-9.93,1.22c-0.14,0.02-0.27-0.07-0.3-0.21c-0.03-0.14,0.04-0.28,0.17-0.33l8.21-3.23l-4.42-0.74C9.39,21.12,9.29,21,9.29,20.86s0.1-0.25,0.24-0.27l4.54-0.64l-5.48-5.98c-0.09-0.1-0.1-0.26-0.01-0.36c0.09-0.11,0.24-0.13,0.36-0.06l6.55,3.93l-1.42-3.9c-0.04-0.12,0-0.26,0.11-0.33c0.11-0.07,0.26-0.05,0.35,0.04l3.07,3.22l-0.7-7.44c-0.01-0.14,0.08-0.27,0.22-0.3c0.14-0.03,0.27,0.04,0.32,0.17l2.88,7.75l3.7-5.15c0.08-0.11,0.22-0.15,0.34-0.09c0.12,0.06,0.19,0.19,0.15,0.32l-1.49,6.2l8.17-3.85c0.12-0.06,0.27-0.02,0.35,0.1c0.08,0.11,0.06,0.27-0.04,0.36l-6.99,6.49l4.53,2.49c0.11,0.06,0.17,0.19,0.14,0.31s-0.14,0.21-0.27,0.21l-5.12,0.04l2.37,10.33c0.03,0.13-0.04,0.26-0.16,0.32c-0.12,0.05-0.26,0.01-0.34-0.1l-6.1-8.79l-5.59,5.73C13.9,31.68,13.8,31.7,13.7,31.68z M18.07,21.69c0.05,0.01,0.1,0.04,0.14,0.08c0.06,0.07,0.09,0.17,0.06,0.26l-0.63,2.46l2.1-1.59c0.12-0.09,0.29-0.07,0.39,0.05l1.12,1.41l-0.28-1.51c-0.01-0.08,0-0.16,0.05-0.22c0.05-0.06,0.12-0.1,0.2-0.11l1.97-0.19l-0.99-1.37c-0.08-0.12-0.07-0.28,0.04-0.37l1.45-1.26l-2.71,0.5c-0.11,0.02-0.23-0.03-0.29-0.13l-1.13-1.9l-0.06,1.34c0,0.08-0.04,0.15-0.09,0.2c-0.06,0.05-0.13,0.07-0.21,0.07l-1.79-0.13l0.78,0.67c0.06,0.05,0.1,0.13,0.1,0.21c0,0.08-0.04,0.16-0.1,0.21l-1.98,1.61l1.77-0.28C17.99,21.68,18.03,21.68,18.07,21.69z"/></svg>') center center no-repeat;
}

.rl-conflict-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M13.7,31.68c-0.03-0.01-0.05-0.02-0.08-0.03c-0.11-0.07-0.16-0.2-0.12-0.33l2.3-6.9l-9.93,1.22c-0.14,0.02-0.27-0.07-0.3-0.21c-0.03-0.14,0.04-0.28,0.17-0.33l8.21-3.23l-4.42-0.74C9.39,21.12,9.29,21,9.29,20.86s0.1-0.25,0.24-0.27l4.54-0.64l-5.48-5.98c-0.09-0.1-0.1-0.26-0.01-0.36c0.09-0.11,0.24-0.13,0.36-0.06l6.55,3.93l-1.42-3.9c-0.04-0.12,0-0.26,0.11-0.33c0.11-0.07,0.26-0.05,0.35,0.04l3.07,3.22l-0.7-7.44c-0.01-0.14,0.08-0.27,0.22-0.3c0.14-0.03,0.27,0.04,0.32,0.17l2.88,7.75l3.7-5.15c0.08-0.11,0.22-0.15,0.34-0.09c0.12,0.06,0.19,0.19,0.15,0.32l-1.49,6.2l8.17-3.85c0.12-0.06,0.27-0.02,0.35,0.1c0.08,0.11,0.06,0.27-0.04,0.36l-6.99,6.49l4.53,2.49c0.11,0.06,0.17,0.19,0.14,0.31s-0.14,0.21-0.27,0.21l-5.12,0.04l2.37,10.33c0.03,0.13-0.04,0.26-0.16,0.32c-0.12,0.05-0.26,0.01-0.34-0.1l-6.1-8.79l-5.59,5.73C13.9,31.68,13.8,31.7,13.7,31.68z M18.07,21.69c0.05,0.01,0.1,0.04,0.14,0.08c0.06,0.07,0.09,0.17,0.06,0.26l-0.63,2.46l2.1-1.59c0.12-0.09,0.29-0.07,0.39,0.05l1.12,1.41l-0.28-1.51c-0.01-0.08,0-0.16,0.05-0.22c0.05-0.06,0.12-0.1,0.2-0.11l1.97-0.19l-0.99-1.37c-0.08-0.12-0.07-0.28,0.04-0.37l1.45-1.26l-2.71,0.5c-0.11,0.02-0.23-0.03-0.29-0.13l-1.13-1.9l-0.06,1.34c0,0.08-0.04,0.15-0.09,0.2c-0.06,0.05-0.13,0.07-0.21,0.07l-1.79-0.13l0.78,0.67c0.06,0.05,0.1,0.13,0.1,0.21c0,0.08-0.04,0.16-0.1,0.21l-1.98,1.61l1.77-0.28C17.99,21.68,18.03,21.68,18.07,21.69z"/></svg>') center center no-repeat;
}

.rl-crime-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.74,19.3c0-9.53,7.72-17.25,17.25-17.25S36.24,9.78,36.24,19.3c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.16,28.2,1.74,26.26,1.74,19.3z"/><path fill="%23FFFFFF" d="M26.62,10.52c-0.2-0.06-0.39-0.04-0.56,0.06l-0.21,0.1l6.16,11.26c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-17.96,9.79l0.2,0.41c0.1,0.18,0.24,0.29,0.44,0.35c0.2,0.06,0.39,0.04,0.56-0.06l18.17-9.89c0.18-0.1,0.29-0.24,0.35-0.44c0.06-0.2,0.04-0.39-0.06-0.56l-6.36-11.68C26.97,10.69,26.82,10.58,26.62,10.52z"/><path fill="%23FFFFFF" d="M24.28,9.65l6.36,11.68c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-18.17,9.89c-0.18,0.1-0.36,0.11-0.56,0.06c-0.2-0.06-0.35-0.18-0.44-0.35L4.81,20.25c-0.1-0.18-0.11-0.36-0.06-0.56c0.06-0.2,0.18-0.35,0.35-0.44l18.17-9.89c0.18-0.1,0.36-0.11,0.56-0.06C24.03,9.36,24.18,9.48,24.28,9.65z M27.57,18.79l-2.83-5.19c-0.72,0.39-1.47,0.47-2.25,0.24c-0.78-0.23-1.37-0.7-1.76-1.42L9.06,18.78c0.39,0.72,0.47,1.47,0.24,2.25c-0.23,0.78-0.7,1.37-1.42,1.76l2.83,5.19c0.72-0.39,1.47-0.47,2.25-0.24c0.78,0.23,1.37,0.71,1.76,1.42l11.68-6.36c-0.39-0.72-0.47-1.47-0.24-2.25S26.86,19.18,27.57,18.79z"/><path fill="%23FFFFFF" d="M19.24,22.29l-0.63,0.34c-1.07,0.57-2.41,0.16-2.98-0.92l0,0c-0.57-1.07-0.16-2.41,0.92-2.98l0.63-0.34c1.07-0.57,2.41-0.16,2.98,0.92l0,0C20.72,20.38,20.31,21.72,19.24,22.29z"/></svg>') center center no-repeat;
}

.rl-crime-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.74,19.3c0-9.53,7.72-17.25,17.25-17.25S36.24,9.78,36.24,19.3c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.16,28.2,1.74,26.26,1.74,19.3z"/><path fill="%23FFFFFF" d="M26.62,10.52c-0.2-0.06-0.39-0.04-0.56,0.06l-0.21,0.1l6.16,11.26c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-17.96,9.79l0.2,0.41c0.1,0.18,0.24,0.29,0.44,0.35c0.2,0.06,0.39,0.04,0.56-0.06l18.17-9.89c0.18-0.1,0.29-0.24,0.35-0.44c0.06-0.2,0.04-0.39-0.06-0.56l-6.36-11.68C26.97,10.69,26.82,10.58,26.62,10.52z"/><path fill="%23FFFFFF" d="M24.28,9.65l6.36,11.68c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-18.17,9.89c-0.18,0.1-0.36,0.11-0.56,0.06c-0.2-0.06-0.35-0.18-0.44-0.35L4.81,20.25c-0.1-0.18-0.11-0.36-0.06-0.56c0.06-0.2,0.18-0.35,0.35-0.44l18.17-9.89c0.18-0.1,0.36-0.11,0.56-0.06C24.03,9.36,24.18,9.48,24.28,9.65z M27.57,18.79l-2.83-5.19c-0.72,0.39-1.47,0.47-2.25,0.24c-0.78-0.23-1.37-0.7-1.76-1.42L9.06,18.78c0.39,0.72,0.47,1.47,0.24,2.25c-0.23,0.78-0.7,1.37-1.42,1.76l2.83,5.19c0.72-0.39,1.47-0.47,2.25-0.24c0.78,0.23,1.37,0.71,1.76,1.42l11.68-6.36c-0.39-0.72-0.47-1.47-0.24-2.25S26.86,19.18,27.57,18.79z"/><path fill="%23FFFFFF" d="M19.24,22.29l-0.63,0.34c-1.07,0.57-2.41,0.16-2.98-0.92l0,0c-0.57-1.07-0.16-2.41,0.92-2.98l0.63-0.34c1.07-0.57,2.41-0.16,2.98,0.92l0,0C20.72,20.38,20.31,21.72,19.24,22.29z"/></svg>') center center no-repeat;
}

.rl-crime-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.74,19.3c0-9.53,7.72-17.25,17.25-17.25S36.24,9.78,36.24,19.3c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.16,28.2,1.74,26.26,1.74,19.3z"/><path fill="%23FFFFFF" d="M26.62,10.52c-0.2-0.06-0.39-0.04-0.56,0.06l-0.21,0.1l6.16,11.26c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-17.96,9.79l0.2,0.41c0.1,0.18,0.24,0.29,0.44,0.35c0.2,0.06,0.39,0.04,0.56-0.06l18.17-9.89c0.18-0.1,0.29-0.24,0.35-0.44c0.06-0.2,0.04-0.39-0.06-0.56l-6.36-11.68C26.97,10.69,26.82,10.58,26.62,10.52z"/><path fill="%23FFFFFF" d="M24.28,9.65l6.36,11.68c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-18.17,9.89c-0.18,0.1-0.36,0.11-0.56,0.06c-0.2-0.06-0.35-0.18-0.44-0.35L4.81,20.25c-0.1-0.18-0.11-0.36-0.06-0.56c0.06-0.2,0.18-0.35,0.35-0.44l18.17-9.89c0.18-0.1,0.36-0.11,0.56-0.06C24.03,9.36,24.18,9.48,24.28,9.65z M27.57,18.79l-2.83-5.19c-0.72,0.39-1.47,0.47-2.25,0.24c-0.78-0.23-1.37-0.7-1.76-1.42L9.06,18.78c0.39,0.72,0.47,1.47,0.24,2.25c-0.23,0.78-0.7,1.37-1.42,1.76l2.83,5.19c0.72-0.39,1.47-0.47,2.25-0.24c0.78,0.23,1.37,0.71,1.76,1.42l11.68-6.36c-0.39-0.72-0.47-1.47-0.24-2.25S26.86,19.18,27.57,18.79z"/><path fill="%23FFFFFF" d="M19.24,22.29l-0.63,0.34c-1.07,0.57-2.41,0.16-2.98-0.92l0,0c-0.57-1.07-0.16-2.41,0.92-2.98l0.63-0.34c1.07-0.57,2.41-0.16,2.98,0.92l0,0C20.72,20.38,20.31,21.72,19.24,22.29z"/></svg>') center center no-repeat;
}

.rl-crime-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.74,19.3c0-9.53,7.72-17.25,17.25-17.25S36.24,9.78,36.24,19.3c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.16,28.2,1.74,26.26,1.74,19.3z"/><path fill="%23FFFFFF" d="M26.62,10.52c-0.2-0.06-0.39-0.04-0.56,0.06l-0.21,0.1l6.16,11.26c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-17.96,9.79l0.2,0.41c0.1,0.18,0.24,0.29,0.44,0.35c0.2,0.06,0.39,0.04,0.56-0.06l18.17-9.89c0.18-0.1,0.29-0.24,0.35-0.44c0.06-0.2,0.04-0.39-0.06-0.56l-6.36-11.68C26.97,10.69,26.82,10.58,26.62,10.52z"/><path fill="%23FFFFFF" d="M24.28,9.65l6.36,11.68c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-18.17,9.89c-0.18,0.1-0.36,0.11-0.56,0.06c-0.2-0.06-0.35-0.18-0.44-0.35L4.81,20.25c-0.1-0.18-0.11-0.36-0.06-0.56c0.06-0.2,0.18-0.35,0.35-0.44l18.17-9.89c0.18-0.1,0.36-0.11,0.56-0.06C24.03,9.36,24.18,9.48,24.28,9.65z M27.57,18.79l-2.83-5.19c-0.72,0.39-1.47,0.47-2.25,0.24c-0.78-0.23-1.37-0.7-1.76-1.42L9.06,18.78c0.39,0.72,0.47,1.47,0.24,2.25c-0.23,0.78-0.7,1.37-1.42,1.76l2.83,5.19c0.72-0.39,1.47-0.47,2.25-0.24c0.78,0.23,1.37,0.71,1.76,1.42l11.68-6.36c-0.39-0.72-0.47-1.47-0.24-2.25S26.86,19.18,27.57,18.79z"/><path fill="%23FFFFFF" d="M19.24,22.29l-0.63,0.34c-1.07,0.57-2.41,0.16-2.98-0.92l0,0c-0.57-1.07-0.16-2.41,0.92-2.98l0.63-0.34c1.07-0.57,2.41-0.16,2.98,0.92l0,0C20.72,20.38,20.31,21.72,19.24,22.29z"/></svg>') center center no-repeat;
}

.rl-crime-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.74,19.3c0-9.53,7.72-17.25,17.25-17.25S36.24,9.78,36.24,19.3c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.16,28.2,1.74,26.26,1.74,19.3z"/><path fill="%23FFFFFF" d="M26.62,10.52c-0.2-0.06-0.39-0.04-0.56,0.06l-0.21,0.1l6.16,11.26c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-17.96,9.79l0.2,0.41c0.1,0.18,0.24,0.29,0.44,0.35c0.2,0.06,0.39,0.04,0.56-0.06l18.17-9.89c0.18-0.1,0.29-0.24,0.35-0.44c0.06-0.2,0.04-0.39-0.06-0.56l-6.36-11.68C26.97,10.69,26.82,10.58,26.62,10.52z"/><path fill="%23FFFFFF" d="M24.28,9.65l6.36,11.68c0.1,0.18,0.11,0.36,0.06,0.56c-0.06,0.2-0.18,0.35-0.35,0.44l-18.17,9.89c-0.18,0.1-0.36,0.11-0.56,0.06c-0.2-0.06-0.35-0.18-0.44-0.35L4.81,20.25c-0.1-0.18-0.11-0.36-0.06-0.56c0.06-0.2,0.18-0.35,0.35-0.44l18.17-9.89c0.18-0.1,0.36-0.11,0.56-0.06C24.03,9.36,24.18,9.48,24.28,9.65z M27.57,18.79l-2.83-5.19c-0.72,0.39-1.47,0.47-2.25,0.24c-0.78-0.23-1.37-0.7-1.76-1.42L9.06,18.78c0.39,0.72,0.47,1.47,0.24,2.25c-0.23,0.78-0.7,1.37-1.42,1.76l2.83,5.19c0.72-0.39,1.47-0.47,2.25-0.24c0.78,0.23,1.37,0.71,1.76,1.42l11.68-6.36c-0.39-0.72-0.47-1.47-0.24-2.25S26.86,19.18,27.57,18.79z"/><path fill="%23FFFFFF" d="M19.24,22.29l-0.63,0.34c-1.07,0.57-2.41,0.16-2.98-0.92l0,0c-0.57-1.07-0.16-2.41,0.92-2.98l0.63-0.34c1.07-0.57,2.41-0.16,2.98,0.92l0,0C20.72,20.38,20.31,21.72,19.24,22.29z"/></svg>') center center no-repeat;
}

.rl-medical-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M30.8,12.24V26.6c0,0.22-0.01,0.92-0.29,1.2c-0.33,0.34-1,0.32-1.22,0.32h-1.75c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97c-0.9,0-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33h-4.89c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97s-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33H7.97c-0.22,0-0.41-0.08-0.57-0.24c-0.16-0.16-0.24-0.36-0.24-0.58c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24v-5.36c0-0.22,0.06-0.47,0.17-0.75c0.11-0.27,0.25-0.49,0.41-0.66l2.52-2.55c0.16-0.16,0.38-0.3,0.65-0.41c0.27-0.11,0.52-0.17,0.74-0.17h2.04v-4.34c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24h14.68c0.22,0,0.41,0.08,0.57,0.24C30.72,11.83,30.8,12.02,30.8,12.24z M9.6,21.53h4.89v-3.3h-2.01c-0.12,0.02-0.21,0.06-0.28,0.12l-2.48,2.51c-0.06,0.1-0.1,0.2-0.11,0.28V21.53z M14.01,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C13.31,29.77,13.7,29.61,14.01,29.29z M27.54,19.47v-2.47c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.85V13.7c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.45c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.89h-2.85c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.47c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.85v2.89c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.45c0.12,0,0.22-0.04,0.29-0.12c0.08-0.08,0.11-0.18,0.11-0.3v-2.89h2.85c0.12,0,0.22-0.04,0.29-0.12C27.5,19.69,27.54,19.59,27.54,19.47z M25.43,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C24.73,29.77,25.11,29.61,25.43,29.29z"/></svg>') center center no-repeat;
}

.rl-medical-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M30.8,12.24V26.6c0,0.22-0.01,0.92-0.29,1.2c-0.33,0.34-1,0.32-1.22,0.32h-1.75c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97c-0.9,0-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33h-4.89c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97s-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33H7.97c-0.22,0-0.41-0.08-0.57-0.24c-0.16-0.16-0.24-0.36-0.24-0.58c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24v-5.36c0-0.22,0.06-0.47,0.17-0.75c0.11-0.27,0.25-0.49,0.41-0.66l2.52-2.55c0.16-0.16,0.38-0.3,0.65-0.41c0.27-0.11,0.52-0.17,0.74-0.17h2.04v-4.34c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24h14.68c0.22,0,0.41,0.08,0.57,0.24C30.72,11.83,30.8,12.02,30.8,12.24z M9.6,21.53h4.89v-3.3h-2.01c-0.12,0.02-0.21,0.06-0.28,0.12l-2.48,2.51c-0.06,0.1-0.1,0.2-0.11,0.28V21.53z M14.01,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C13.31,29.77,13.7,29.61,14.01,29.29z M27.54,19.47v-2.47c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.85V13.7c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.45c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.89h-2.85c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.47c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.85v2.89c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.45c0.12,0,0.22-0.04,0.29-0.12c0.08-0.08,0.11-0.18,0.11-0.3v-2.89h2.85c0.12,0,0.22-0.04,0.29-0.12C27.5,19.69,27.54,19.59,27.54,19.47z M25.43,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C24.73,29.77,25.11,29.61,25.43,29.29z"/></svg>') center center no-repeat;
}

.rl-medical-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M30.8,12.24V26.6c0,0.22-0.01,0.92-0.29,1.2c-0.33,0.34-1,0.32-1.22,0.32h-1.75c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97c-0.9,0-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33h-4.89c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97s-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33H7.97c-0.22,0-0.41-0.08-0.57-0.24c-0.16-0.16-0.24-0.36-0.24-0.58c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24v-5.36c0-0.22,0.06-0.47,0.17-0.75c0.11-0.27,0.25-0.49,0.41-0.66l2.52-2.55c0.16-0.16,0.38-0.3,0.65-0.41c0.27-0.11,0.52-0.17,0.74-0.17h2.04v-4.34c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24h14.68c0.22,0,0.41,0.08,0.57,0.24C30.72,11.83,30.8,12.02,30.8,12.24z M9.6,21.53h4.89v-3.3h-2.01c-0.12,0.02-0.21,0.06-0.28,0.12l-2.48,2.51c-0.06,0.1-0.1,0.2-0.11,0.28V21.53z M14.01,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C13.31,29.77,13.7,29.61,14.01,29.29z M27.54,19.47v-2.47c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.85V13.7c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.45c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.89h-2.85c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.47c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.85v2.89c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.45c0.12,0,0.22-0.04,0.29-0.12c0.08-0.08,0.11-0.18,0.11-0.3v-2.89h2.85c0.12,0,0.22-0.04,0.29-0.12C27.5,19.69,27.54,19.59,27.54,19.47z M25.43,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C24.73,29.77,25.11,29.61,25.43,29.29z"/></svg>') center center no-repeat;
}

.rl-medical-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M30.8,12.24V26.6c0,0.22-0.01,0.92-0.29,1.2c-0.33,0.34-1,0.32-1.22,0.32h-1.75c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97c-0.9,0-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33h-4.89c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97s-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33H7.97c-0.22,0-0.41-0.08-0.57-0.24c-0.16-0.16-0.24-0.36-0.24-0.58c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24v-5.36c0-0.22,0.06-0.47,0.17-0.75c0.11-0.27,0.25-0.49,0.41-0.66l2.52-2.55c0.16-0.16,0.38-0.3,0.65-0.41c0.27-0.11,0.52-0.17,0.74-0.17h2.04v-4.34c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24h14.68c0.22,0,0.41,0.08,0.57,0.24C30.72,11.83,30.8,12.02,30.8,12.24z M9.6,21.53h4.89v-3.3h-2.01c-0.12,0.02-0.21,0.06-0.28,0.12l-2.48,2.51c-0.06,0.1-0.1,0.2-0.11,0.28V21.53z M14.01,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C13.31,29.77,13.7,29.61,14.01,29.29z M27.54,19.47v-2.47c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.85V13.7c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.45c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.89h-2.85c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.47c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.85v2.89c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.45c0.12,0,0.22-0.04,0.29-0.12c0.08-0.08,0.11-0.18,0.11-0.3v-2.89h2.85c0.12,0,0.22-0.04,0.29-0.12C27.5,19.69,27.54,19.59,27.54,19.47z M25.43,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C24.73,29.77,25.11,29.61,25.43,29.29z"/></svg>') center center no-repeat;
}

.rl-medical-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M30.8,12.24V26.6c0,0.22-0.01,0.92-0.29,1.2c-0.33,0.34-1,0.32-1.22,0.32h-1.75c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97c-0.9,0-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33h-4.89c0,0.91-0.32,1.69-0.96,2.33c-0.64,0.64-1.41,0.97-2.31,0.97s-1.67-0.32-2.31-0.97c-0.64-0.64-0.96-1.42-0.96-2.33H7.97c-0.22,0-0.41-0.08-0.57-0.24c-0.16-0.16-0.24-0.36-0.24-0.58c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24v-5.36c0-0.22,0.06-0.47,0.17-0.75c0.11-0.27,0.25-0.49,0.41-0.66l2.52-2.55c0.16-0.16,0.38-0.3,0.65-0.41c0.27-0.11,0.52-0.17,0.74-0.17h2.04v-4.34c0-0.22,0.08-0.42,0.24-0.58c0.16-0.16,0.35-0.24,0.57-0.24h14.68c0.22,0,0.41,0.08,0.57,0.24C30.72,11.83,30.8,12.02,30.8,12.24z M9.6,21.53h4.89v-3.3h-2.01c-0.12,0.02-0.21,0.06-0.28,0.12l-2.48,2.51c-0.06,0.1-0.1,0.2-0.11,0.28V21.53z M14.01,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C13.31,29.77,13.7,29.61,14.01,29.29z M27.54,19.47v-2.47c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.85V13.7c0-0.12-0.04-0.22-0.11-0.3c-0.08-0.08-0.17-0.12-0.29-0.12h-2.45c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.89h-2.85c-0.12,0-0.22,0.04-0.29,0.12c-0.08,0.08-0.11,0.18-0.11,0.3v2.47c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.85v2.89c0,0.12,0.04,0.22,0.11,0.3c0.08,0.08,0.17,0.12,0.29,0.12h2.45c0.12,0,0.22-0.04,0.29-0.12c0.08-0.08,0.11-0.18,0.11-0.3v-2.89h2.85c0.12,0,0.22-0.04,0.29-0.12C27.5,19.69,27.54,19.59,27.54,19.47z M25.43,29.29c0.32-0.32,0.48-0.71,0.48-1.17c0-0.46-0.16-0.84-0.48-1.17c-0.32-0.32-0.7-0.48-1.15-0.48c-0.45,0-0.83,0.16-1.15,0.48c-0.32,0.32-0.48,0.71-0.48,1.17c0,0.45,0.16,0.84,0.48,1.17c0.32,0.32,0.7,0.48,1.15,0.48C24.73,29.77,25.11,29.61,25.43,29.29z"/></svg>') center center no-repeat;
}

.rl-natural-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M28.99,14.11c2.24,6.66-0.04,13.47-5.72,15.87c-2.89,1.34-5.72,0.49-7.5-0.8c-1.34,2.29-1.49,4.24-1.49,4.4c-0.04,0.71-0.63,1.25-1.33,1.19c-0.69-0.05-1.22-0.68-1.19-1.39c0.12-2.53,2.08-9.81,11.42-12.95c0.33-0.11,0.5-0.48,0.39-0.82c-0.11-0.34-0.48-0.53-0.8-0.42c-4.85,1.63-7.77,4.28-9.54,6.84c-0.11-0.25-0.23-0.5-0.32-0.77c-1.38-4.09,0.7-8.49,4.64-9.81l2.97-1c2.35-0.79,3.98-2.78,4.43-5.25c0.1-0.54,0.7-0.72,1.07-0.31C27.27,10.3,28.34,12.17,28.99,14.11z"/></svg>') center center no-repeat;
}

.rl-natural-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M28.99,14.11c2.24,6.66-0.04,13.47-5.72,15.87c-2.89,1.34-5.72,0.49-7.5-0.8c-1.34,2.29-1.49,4.24-1.49,4.4c-0.04,0.71-0.63,1.25-1.33,1.19c-0.69-0.05-1.22-0.68-1.19-1.39c0.12-2.53,2.08-9.81,11.42-12.95c0.33-0.11,0.5-0.48,0.39-0.82c-0.11-0.34-0.48-0.53-0.8-0.42c-4.85,1.63-7.77,4.28-9.54,6.84c-0.11-0.25-0.23-0.5-0.32-0.77c-1.38-4.09,0.7-8.49,4.64-9.81l2.97-1c2.35-0.79,3.98-2.78,4.43-5.25c0.1-0.54,0.7-0.72,1.07-0.31C27.27,10.3,28.34,12.17,28.99,14.11z"/></svg>') center center no-repeat;
}

.rl-natural-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M28.99,14.11c2.24,6.66-0.04,13.47-5.72,15.87c-2.89,1.34-5.72,0.49-7.5-0.8c-1.34,2.29-1.49,4.24-1.49,4.4c-0.04,0.71-0.63,1.25-1.33,1.19c-0.69-0.05-1.22-0.68-1.19-1.39c0.12-2.53,2.08-9.81,11.42-12.95c0.33-0.11,0.5-0.48,0.39-0.82c-0.11-0.34-0.48-0.53-0.8-0.42c-4.85,1.63-7.77,4.28-9.54,6.84c-0.11-0.25-0.23-0.5-0.32-0.77c-1.38-4.09,0.7-8.49,4.64-9.81l2.97-1c2.35-0.79,3.98-2.78,4.43-5.25c0.1-0.54,0.7-0.72,1.07-0.31C27.27,10.3,28.34,12.17,28.99,14.11z"/></svg>') center center no-repeat;
}

.rl-natural-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M28.99,14.11c2.24,6.66-0.04,13.47-5.72,15.87c-2.89,1.34-5.72,0.49-7.5-0.8c-1.34,2.29-1.49,4.24-1.49,4.4c-0.04,0.71-0.63,1.25-1.33,1.19c-0.69-0.05-1.22-0.68-1.19-1.39c0.12-2.53,2.08-9.81,11.42-12.95c0.33-0.11,0.5-0.48,0.39-0.82c-0.11-0.34-0.48-0.53-0.8-0.42c-4.85,1.63-7.77,4.28-9.54,6.84c-0.11-0.25-0.23-0.5-0.32-0.77c-1.38-4.09,0.7-8.49,4.64-9.81l2.97-1c2.35-0.79,3.98-2.78,4.43-5.25c0.1-0.54,0.7-0.72,1.07-0.31C27.27,10.3,28.34,12.17,28.99,14.11z"/></svg>') center center no-repeat;
}

.rl-natural-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M28.99,14.11c2.24,6.66-0.04,13.47-5.72,15.87c-2.89,1.34-5.72,0.49-7.5-0.8c-1.34,2.29-1.49,4.24-1.49,4.4c-0.04,0.71-0.63,1.25-1.33,1.19c-0.69-0.05-1.22-0.68-1.19-1.39c0.12-2.53,2.08-9.81,11.42-12.95c0.33-0.11,0.5-0.48,0.39-0.82c-0.11-0.34-0.48-0.53-0.8-0.42c-4.85,1.63-7.77,4.28-9.54,6.84c-0.11-0.25-0.23-0.5-0.32-0.77c-1.38-4.09,0.7-8.49,4.64-9.81l2.97-1c2.35-0.79,3.98-2.78,4.43-5.25c0.1-0.54,0.7-0.72,1.07-0.31C27.27,10.3,28.34,12.17,28.99,14.11z"/></svg>') center center no-repeat;
}

.rl-political-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M29.98,14.63c0,0.2-0.16,0.37-0.37,0.37h-1.1v0.55c0,0.3-0.25,0.55-0.55,0.55H10.03c-0.3,0-0.55-0.25-0.55-0.55v-0.55h-1.1c-0.2,0-0.37-0.16-0.37-0.37V13.9c0-0.14,0.1-0.29,0.23-0.34l10.61-4.03C18.9,9.51,18.96,9.5,19,9.5s0.1,0.01,0.14,0.03l10.61,4.03c0.12,0.05,0.23,0.2,0.23,0.34V14.63z M29.98,28.9v0.3c0,0.33-0.26,0.59-0.59,0.59H8.61c-0.33,0-0.59-0.26-0.59-0.59v-0.3c0-0.61,0.49-1.1,1.1-1.1h19.77C29.49,27.8,29.98,28.3,29.98,28.9z M14.39,16.82v8.79h3.36v-8.79h2.61v8.79h3.25v-8.79h2.71v8.79h1.65c0.3,0,0.55,0.25,0.55,0.55v0.92H9.48v-0.92c0-0.3,0.25-0.55,0.55-0.55h1.65v-8.79H14.39z"/></svg>') center center no-repeat;
}

.rl-political-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M29.98,14.63c0,0.2-0.16,0.37-0.37,0.37h-1.1v0.55c0,0.3-0.25,0.55-0.55,0.55H10.03c-0.3,0-0.55-0.25-0.55-0.55v-0.55h-1.1c-0.2,0-0.37-0.16-0.37-0.37V13.9c0-0.14,0.1-0.29,0.23-0.34l10.61-4.03C18.9,9.51,18.96,9.5,19,9.5s0.1,0.01,0.14,0.03l10.61,4.03c0.12,0.05,0.23,0.2,0.23,0.34V14.63z M29.98,28.9v0.3c0,0.33-0.26,0.59-0.59,0.59H8.61c-0.33,0-0.59-0.26-0.59-0.59v-0.3c0-0.61,0.49-1.1,1.1-1.1h19.77C29.49,27.8,29.98,28.3,29.98,28.9z M14.39,16.82v8.79h3.36v-8.79h2.61v8.79h3.25v-8.79h2.71v8.79h1.65c0.3,0,0.55,0.25,0.55,0.55v0.92H9.48v-0.92c0-0.3,0.25-0.55,0.55-0.55h1.65v-8.79H14.39z"/></svg>') center center no-repeat;
}

.rl-political-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M29.98,14.63c0,0.2-0.16,0.37-0.37,0.37h-1.1v0.55c0,0.3-0.25,0.55-0.55,0.55H10.03c-0.3,0-0.55-0.25-0.55-0.55v-0.55h-1.1c-0.2,0-0.37-0.16-0.37-0.37V13.9c0-0.14,0.1-0.29,0.23-0.34l10.61-4.03C18.9,9.51,18.96,9.5,19,9.5s0.1,0.01,0.14,0.03l10.61,4.03c0.12,0.05,0.23,0.2,0.23,0.34V14.63z M29.98,28.9v0.3c0,0.33-0.26,0.59-0.59,0.59H8.61c-0.33,0-0.59-0.26-0.59-0.59v-0.3c0-0.61,0.49-1.1,1.1-1.1h19.77C29.49,27.8,29.98,28.3,29.98,28.9z M14.39,16.82v8.79h3.36v-8.79h2.61v8.79h3.25v-8.79h2.71v8.79h1.65c0.3,0,0.55,0.25,0.55,0.55v0.92H9.48v-0.92c0-0.3,0.25-0.55,0.55-0.55h1.65v-8.79H14.39z"/></svg>') center center no-repeat;
}

.rl-political-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M29.98,14.63c0,0.2-0.16,0.37-0.37,0.37h-1.1v0.55c0,0.3-0.25,0.55-0.55,0.55H10.03c-0.3,0-0.55-0.25-0.55-0.55v-0.55h-1.1c-0.2,0-0.37-0.16-0.37-0.37V13.9c0-0.14,0.1-0.29,0.23-0.34l10.61-4.03C18.9,9.51,18.96,9.5,19,9.5s0.1,0.01,0.14,0.03l10.61,4.03c0.12,0.05,0.23,0.2,0.23,0.34V14.63z M29.98,28.9v0.3c0,0.33-0.26,0.59-0.59,0.59H8.61c-0.33,0-0.59-0.26-0.59-0.59v-0.3c0-0.61,0.49-1.1,1.1-1.1h19.77C29.49,27.8,29.98,28.3,29.98,28.9z M14.39,16.82v8.79h3.36v-8.79h2.61v8.79h3.25v-8.79h2.71v8.79h1.65c0.3,0,0.55,0.25,0.55,0.55v0.92H9.48v-0.92c0-0.3,0.25-0.55,0.55-0.55h1.65v-8.79H14.39z"/></svg>') center center no-repeat;
}

.rl-political-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" stroke-miterlimit="10" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M29.98,14.63c0,0.2-0.16,0.37-0.37,0.37h-1.1v0.55c0,0.3-0.25,0.55-0.55,0.55H10.03c-0.3,0-0.55-0.25-0.55-0.55v-0.55h-1.1c-0.2,0-0.37-0.16-0.37-0.37V13.9c0-0.14,0.1-0.29,0.23-0.34l10.61-4.03C18.9,9.51,18.96,9.5,19,9.5s0.1,0.01,0.14,0.03l10.61,4.03c0.12,0.05,0.23,0.2,0.23,0.34V14.63z M29.98,28.9v0.3c0,0.33-0.26,0.59-0.59,0.59H8.61c-0.33,0-0.59-0.26-0.59-0.59v-0.3c0-0.61,0.49-1.1,1.1-1.1h19.77C29.49,27.8,29.98,28.3,29.98,28.9z M14.39,16.82v8.79h3.36v-8.79h2.61v8.79h3.25v-8.79h2.71v8.79h1.65c0.3,0,0.55,0.25,0.55,0.55v0.92H9.48v-0.92c0-0.3,0.25-0.55,0.55-0.55h1.65v-8.79H14.39z"/></svg>') center center no-repeat;
}

.rl-travel-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M9.37,29.2c-1.23,0-2.22-0.99-2.22-2.22V15.13c0-1.23,0.99-2.22,2.22-2.22h2.22V29.2H9.37z M13.08,10.69c0-1.23,0.99-2.22,2.22-2.22h7.4c1.23,0,2.22,0.99,2.22,2.22V29.2H13.08V10.69z M16.04,12.91h5.92v-1.48h-5.92V12.91z M30.85,26.98c0,1.23-0.99,2.22-2.22,2.22H26.4V12.91h2.22c1.23,0,2.22,0.99,2.22,2.22V26.98z"/></svg>') center center no-repeat;
}

.rl-travel-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M9.37,29.2c-1.23,0-2.22-0.99-2.22-2.22V15.13c0-1.23,0.99-2.22,2.22-2.22h2.22V29.2H9.37z M13.08,10.69c0-1.23,0.99-2.22,2.22-2.22h7.4c1.23,0,2.22,0.99,2.22,2.22V29.2H13.08V10.69z M16.04,12.91h5.92v-1.48h-5.92V12.91z M30.85,26.98c0,1.23-0.99,2.22-2.22,2.22H26.4V12.91h2.22c1.23,0,2.22,0.99,2.22,2.22V26.98z"/></svg>') center center no-repeat;
}

.rl-travel-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M9.37,29.2c-1.23,0-2.22-0.99-2.22-2.22V15.13c0-1.23,0.99-2.22,2.22-2.22h2.22V29.2H9.37z M13.08,10.69c0-1.23,0.99-2.22,2.22-2.22h7.4c1.23,0,2.22,0.99,2.22,2.22V29.2H13.08V10.69z M16.04,12.91h5.92v-1.48h-5.92V12.91z M30.85,26.98c0,1.23-0.99,2.22-2.22,2.22H26.4V12.91h2.22c1.23,0,2.22,0.99,2.22,2.22V26.98z"/></svg>') center center no-repeat;
}

.rl-travel-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M9.37,29.2c-1.23,0-2.22-0.99-2.22-2.22V15.13c0-1.23,0.99-2.22,2.22-2.22h2.22V29.2H9.37z M13.08,10.69c0-1.23,0.99-2.22,2.22-2.22h7.4c1.23,0,2.22,0.99,2.22,2.22V29.2H13.08V10.69z M16.04,12.91h5.92v-1.48h-5.92V12.91z M30.85,26.98c0,1.23-0.99,2.22-2.22,2.22H26.4V12.91h2.22c1.23,0,2.22,0.99,2.22,2.22V26.98z"/></svg>') center center no-repeat;
}

.rl-travel-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M9.37,29.2c-1.23,0-2.22-0.99-2.22-2.22V15.13c0-1.23,0.99-2.22,2.22-2.22h2.22V29.2H9.37z M13.08,10.69c0-1.23,0.99-2.22,2.22-2.22h7.4c1.23,0,2.22,0.99,2.22,2.22V29.2H13.08V10.69z M16.04,12.91h5.92v-1.48h-5.92V12.91z M30.85,26.98c0,1.23-0.99,2.22-2.22,2.22H26.4V12.91h2.22c1.23,0,2.22,0.99,2.22,2.22V26.98z"/></svg>') center center no-repeat;
}

.rl-unrest-low {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%232f835a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M20.11,14.88C20.11,14.88,20.11,14.88,20.11,14.88c0,1.13-0.01,2.27,0.01,3.4c0.02,0.8,0.65,1.43,1.4,1.44c0.32,0,0.64,0,0.95,0c0.89-0.01,1.48-0.59,1.48-1.51c0.01-2.21,0.01-4.43,0-6.64c-0.01-0.86-0.59-1.44-1.41-1.46c-0.34-0.01-0.67,0-1.01,0c-0.81,0.01-1.42,0.66-1.42,1.53C20.1,12.72,20.11,13.8,20.11,14.88z"/><path fill="%23FFFFFF" d="M28.67,15.55C28.67,15.55,28.67,15.55,28.67,15.55c-0.01-1.02,0-2.05-0.01-3.07c-0.01-0.91-0.6-1.53-1.46-1.54c-0.35,0-0.71-0.01-1.06,0c-0.75,0.02-1.33,0.55-1.34,1.35c-0.03,2.16-0.04,4.31-0.01,6.47c0.01,0.79,0.64,1.37,1.38,1.38c0.32,0,0.64,0,0.95,0c0.94,0,1.53-0.64,1.54-1.64C28.68,17.53,28.67,16.54,28.67,15.55z"/><path fill="%23FFFFFF" d="M14.08,13.85c0.31-0.01,0.49-0.13,0.48-0.46c-0.01-0.56,0-1.11,0-1.67c-0.01-1.02-0.57-1.62-1.54-1.62c-0.32,0-0.64-0.01-0.95,0c-0.68,0.02-1.32,0.65-1.35,1.37c-0.02,0.65,0,1.3-0.01,1.95c-0.01,0.34,0.14,0.45,0.45,0.45C11.67,13.88,13.48,13.87,14.08,13.85z"/><path fill="%23FFFFFF" d="M15.42,10.92c0,0.84-0.01,1.87,0,2.55c0,0.22,0.21,0.39,0.48,0.4c0.63,0.01,1.29,0,1.78,0.38c0.27,0.21,0.41,0.53,0.43,0.87c-0.06,1.75-0.61,2.44-1.78,3.49c-0.07,0.07-0.18,0.16-0.27,0.33c0.19,0.08,0.35,0.14,0.63,0.17c0.35,0.04,0.71,0.02,1.06,0.01c0.85-0.01,1.51-0.67,1.52-1.57c0.01-2.23,0-4.47,0-6.7c0-0.76-0.43-1.56-1.95-1.56C15.81,9.29,15.43,10.1,15.42,10.92z"/><path fill="%23FFFFFF" d="M28.65,20.63c0-0.03-0.01-0.06-0.03-0.09c-0.09-0.14-0.3-0.08-0.45-0.02c-1.16,0.48-2.56,0.28-3.55-0.49c-0.12-0.09-0.25-0.2-0.4-0.21c-0.16-0.01-0.3,0.08-0.44,0.16c-1.28,0.74-3.04,0.51-4.09-0.52c-0.09-0.09-0.18-0.19-0.31-0.21c-0.16-0.03-0.32,0.06-0.46,0.14c-1.13,0.62-2.51,0.22-3.78,0.02c-0.56-0.09-1.32,0-1.41,0.56c-0.08,0.48,0.44,0.82,0.89,1.02c0.52,0.24,1.05,0.48,1.57,0.72c0.57,0.26,1.17,0.55,1.56,1.04c0.43,0.54,0.49,1.23,0.65,1.9c0.08,0.33-0.02,0.51-0.11,0.53c-0.24,0.05-0.41-0.76-0.46-0.95c-0.11-0.38-0.22-0.76-0.47-1.07c-0.3-0.37-0.76-0.56-1.19-0.75c-0.62-0.26-1.23-0.52-1.85-0.77c-0.44-0.19-0.9-0.45-1.15-0.75c-0.31-0.37-0.44-0.84-0.2-1.26c0.29-0.52,0.85-0.63,1.37-0.77c1.51-0.4,2.76-1.69,3.09-3.22c0.06-0.29,0.08-0.63-0.13-0.83c-0.17-0.16-0.42-0.18-0.65-0.19c-2.24-0.08-4.49-0.07-6.73,0.04c-0.33,0.02-0.69,0.04-0.95,0.26c-0.23,0.19-0.32,0.5-0.4,0.78c-0.46,1.57-0.91,3.13-1.37,4.7c-0.23,0.8-0.47,1.65-0.25,2.46c0.17,0.6,0.57,1.1,0.97,1.58c2.15,2.57,4.7,5.08,7.97,5.83c0.14,0.03,0.33,0.2,0.2,0.28c-0.65-0.06-1.3-0.12-1.96-0.18c-0.12-0.01-0.24-0.02-0.34,0.05c-0.12,0.08-0.15,0.25-0.17,0.4c-0.09,0.88-0.1,1.78-0.03,2.66c0.02,0.2,0.02,0.42,0.07,0.62c0.03,0.12,0.1,0.19,0.19,0.28c0.24,0.24,0.51,0.38,0.85,0.45c0.27,0.05,0.54,0.06,0.81,0.06c2.92,0,5.84,0,8.76-0.01c0.56,0,1.19-0.03,1.57-0.45c0.32-0.36,0.33-0.89,0.33-1.38c-0.01-0.87-0.01-1.74-0.02-2.61c0-0.13-0.01-0.28-0.1-0.37c-0.11-0.11-0.29-0.1-0.45-0.08c-0.92,0.12-1.84,0.24-2.76,0.36c0.86-0.64,1.76-1.21,2.71-1.71c1.04-0.56,2.19-1.1,2.74-2.14c0.4-0.76,0.4-1.66,0.38-2.52c-0.01-1.09-0.03-2.17-0.04-3.26C28.66,20.7,28.66,20.66,28.65,20.63z"/></svg>') center center no-repeat;
}

.rl-unrest-moderate {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%233eaf70" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M20.11,14.88C20.11,14.88,20.11,14.88,20.11,14.88c0,1.13-0.01,2.27,0.01,3.4c0.02,0.8,0.65,1.43,1.4,1.44c0.32,0,0.64,0,0.95,0c0.89-0.01,1.48-0.59,1.48-1.51c0.01-2.21,0.01-4.43,0-6.64c-0.01-0.86-0.59-1.44-1.41-1.46c-0.34-0.01-0.67,0-1.01,0c-0.81,0.01-1.42,0.66-1.42,1.53C20.1,12.72,20.11,13.8,20.11,14.88z"/><path fill="%23FFFFFF" d="M28.67,15.55C28.67,15.55,28.67,15.55,28.67,15.55c-0.01-1.02,0-2.05-0.01-3.07c-0.01-0.91-0.6-1.53-1.46-1.54c-0.35,0-0.71-0.01-1.06,0c-0.75,0.02-1.33,0.55-1.34,1.35c-0.03,2.16-0.04,4.31-0.01,6.47c0.01,0.79,0.64,1.37,1.38,1.38c0.32,0,0.64,0,0.95,0c0.94,0,1.53-0.64,1.54-1.64C28.68,17.53,28.67,16.54,28.67,15.55z"/><path fill="%23FFFFFF" d="M14.08,13.85c0.31-0.01,0.49-0.13,0.48-0.46c-0.01-0.56,0-1.11,0-1.67c-0.01-1.02-0.57-1.62-1.54-1.62c-0.32,0-0.64-0.01-0.95,0c-0.68,0.02-1.32,0.65-1.35,1.37c-0.02,0.65,0,1.3-0.01,1.95c-0.01,0.34,0.14,0.45,0.45,0.45C11.67,13.88,13.48,13.87,14.08,13.85z"/><path fill="%23FFFFFF" d="M15.42,10.92c0,0.84-0.01,1.87,0,2.55c0,0.22,0.21,0.39,0.48,0.4c0.63,0.01,1.29,0,1.78,0.38c0.27,0.21,0.41,0.53,0.43,0.87c-0.06,1.75-0.61,2.44-1.78,3.49c-0.07,0.07-0.18,0.16-0.27,0.33c0.19,0.08,0.35,0.14,0.63,0.17c0.35,0.04,0.71,0.02,1.06,0.01c0.85-0.01,1.51-0.67,1.52-1.57c0.01-2.23,0-4.47,0-6.7c0-0.76-0.43-1.56-1.95-1.56C15.81,9.29,15.43,10.1,15.42,10.92z"/><path fill="%23FFFFFF" d="M28.65,20.63c0-0.03-0.01-0.06-0.03-0.09c-0.09-0.14-0.3-0.08-0.45-0.02c-1.16,0.48-2.56,0.28-3.55-0.49c-0.12-0.09-0.25-0.2-0.4-0.21c-0.16-0.01-0.3,0.08-0.44,0.16c-1.28,0.74-3.04,0.51-4.09-0.52c-0.09-0.09-0.18-0.19-0.31-0.21c-0.16-0.03-0.32,0.06-0.46,0.14c-1.13,0.62-2.51,0.22-3.78,0.02c-0.56-0.09-1.32,0-1.41,0.56c-0.08,0.48,0.44,0.82,0.89,1.02c0.52,0.24,1.05,0.48,1.57,0.72c0.57,0.26,1.17,0.55,1.56,1.04c0.43,0.54,0.49,1.23,0.65,1.9c0.08,0.33-0.02,0.51-0.11,0.53c-0.24,0.05-0.41-0.76-0.46-0.95c-0.11-0.38-0.22-0.76-0.47-1.07c-0.3-0.37-0.76-0.56-1.19-0.75c-0.62-0.26-1.23-0.52-1.85-0.77c-0.44-0.19-0.9-0.45-1.15-0.75c-0.31-0.37-0.44-0.84-0.2-1.26c0.29-0.52,0.85-0.63,1.37-0.77c1.51-0.4,2.76-1.69,3.09-3.22c0.06-0.29,0.08-0.63-0.13-0.83c-0.17-0.16-0.42-0.18-0.65-0.19c-2.24-0.08-4.49-0.07-6.73,0.04c-0.33,0.02-0.69,0.04-0.95,0.26c-0.23,0.19-0.32,0.5-0.4,0.78c-0.46,1.57-0.91,3.13-1.37,4.7c-0.23,0.8-0.47,1.65-0.25,2.46c0.17,0.6,0.57,1.1,0.97,1.58c2.15,2.57,4.7,5.08,7.97,5.83c0.14,0.03,0.33,0.2,0.2,0.28c-0.65-0.06-1.3-0.12-1.96-0.18c-0.12-0.01-0.24-0.02-0.34,0.05c-0.12,0.08-0.15,0.25-0.17,0.4c-0.09,0.88-0.1,1.78-0.03,2.66c0.02,0.2,0.02,0.42,0.07,0.62c0.03,0.12,0.1,0.19,0.19,0.28c0.24,0.24,0.51,0.38,0.85,0.45c0.27,0.05,0.54,0.06,0.81,0.06c2.92,0,5.84,0,8.76-0.01c0.56,0,1.19-0.03,1.57-0.45c0.32-0.36,0.33-0.89,0.33-1.38c-0.01-0.87-0.01-1.74-0.02-2.61c0-0.13-0.01-0.28-0.1-0.37c-0.11-0.11-0.29-0.1-0.45-0.08c-0.92,0.12-1.84,0.24-2.76,0.36c0.86-0.64,1.76-1.21,2.71-1.71c1.04-0.56,2.19-1.1,2.74-2.14c0.4-0.76,0.4-1.66,0.38-2.52c-0.01-1.09-0.03-2.17-0.04-3.26C28.66,20.7,28.66,20.66,28.65,20.63z"/></svg>') center center no-repeat;
}

.rl-unrest-medium {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23fbc93a" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M20.11,14.88C20.11,14.88,20.11,14.88,20.11,14.88c0,1.13-0.01,2.27,0.01,3.4c0.02,0.8,0.65,1.43,1.4,1.44c0.32,0,0.64,0,0.95,0c0.89-0.01,1.48-0.59,1.48-1.51c0.01-2.21,0.01-4.43,0-6.64c-0.01-0.86-0.59-1.44-1.41-1.46c-0.34-0.01-0.67,0-1.01,0c-0.81,0.01-1.42,0.66-1.42,1.53C20.1,12.72,20.11,13.8,20.11,14.88z"/><path fill="%23FFFFFF" d="M28.67,15.55C28.67,15.55,28.67,15.55,28.67,15.55c-0.01-1.02,0-2.05-0.01-3.07c-0.01-0.91-0.6-1.53-1.46-1.54c-0.35,0-0.71-0.01-1.06,0c-0.75,0.02-1.33,0.55-1.34,1.35c-0.03,2.16-0.04,4.31-0.01,6.47c0.01,0.79,0.64,1.37,1.38,1.38c0.32,0,0.64,0,0.95,0c0.94,0,1.53-0.64,1.54-1.64C28.68,17.53,28.67,16.54,28.67,15.55z"/><path fill="%23FFFFFF" d="M14.08,13.85c0.31-0.01,0.49-0.13,0.48-0.46c-0.01-0.56,0-1.11,0-1.67c-0.01-1.02-0.57-1.62-1.54-1.62c-0.32,0-0.64-0.01-0.95,0c-0.68,0.02-1.32,0.65-1.35,1.37c-0.02,0.65,0,1.3-0.01,1.95c-0.01,0.34,0.14,0.45,0.45,0.45C11.67,13.88,13.48,13.87,14.08,13.85z"/><path fill="%23FFFFFF" d="M15.42,10.92c0,0.84-0.01,1.87,0,2.55c0,0.22,0.21,0.39,0.48,0.4c0.63,0.01,1.29,0,1.78,0.38c0.27,0.21,0.41,0.53,0.43,0.87c-0.06,1.75-0.61,2.44-1.78,3.49c-0.07,0.07-0.18,0.16-0.27,0.33c0.19,0.08,0.35,0.14,0.63,0.17c0.35,0.04,0.71,0.02,1.06,0.01c0.85-0.01,1.51-0.67,1.52-1.57c0.01-2.23,0-4.47,0-6.7c0-0.76-0.43-1.56-1.95-1.56C15.81,9.29,15.43,10.1,15.42,10.92z"/><path fill="%23FFFFFF" d="M28.65,20.63c0-0.03-0.01-0.06-0.03-0.09c-0.09-0.14-0.3-0.08-0.45-0.02c-1.16,0.48-2.56,0.28-3.55-0.49c-0.12-0.09-0.25-0.2-0.4-0.21c-0.16-0.01-0.3,0.08-0.44,0.16c-1.28,0.74-3.04,0.51-4.09-0.52c-0.09-0.09-0.18-0.19-0.31-0.21c-0.16-0.03-0.32,0.06-0.46,0.14c-1.13,0.62-2.51,0.22-3.78,0.02c-0.56-0.09-1.32,0-1.41,0.56c-0.08,0.48,0.44,0.82,0.89,1.02c0.52,0.24,1.05,0.48,1.57,0.72c0.57,0.26,1.17,0.55,1.56,1.04c0.43,0.54,0.49,1.23,0.65,1.9c0.08,0.33-0.02,0.51-0.11,0.53c-0.24,0.05-0.41-0.76-0.46-0.95c-0.11-0.38-0.22-0.76-0.47-1.07c-0.3-0.37-0.76-0.56-1.19-0.75c-0.62-0.26-1.23-0.52-1.85-0.77c-0.44-0.19-0.9-0.45-1.15-0.75c-0.31-0.37-0.44-0.84-0.2-1.26c0.29-0.52,0.85-0.63,1.37-0.77c1.51-0.4,2.76-1.69,3.09-3.22c0.06-0.29,0.08-0.63-0.13-0.83c-0.17-0.16-0.42-0.18-0.65-0.19c-2.24-0.08-4.49-0.07-6.73,0.04c-0.33,0.02-0.69,0.04-0.95,0.26c-0.23,0.19-0.32,0.5-0.4,0.78c-0.46,1.57-0.91,3.13-1.37,4.7c-0.23,0.8-0.47,1.65-0.25,2.46c0.17,0.6,0.57,1.1,0.97,1.58c2.15,2.57,4.7,5.08,7.97,5.83c0.14,0.03,0.33,0.2,0.2,0.28c-0.65-0.06-1.3-0.12-1.96-0.18c-0.12-0.01-0.24-0.02-0.34,0.05c-0.12,0.08-0.15,0.25-0.17,0.4c-0.09,0.88-0.1,1.78-0.03,2.66c0.02,0.2,0.02,0.42,0.07,0.62c0.03,0.12,0.1,0.19,0.19,0.28c0.24,0.24,0.51,0.38,0.85,0.45c0.27,0.05,0.54,0.06,0.81,0.06c2.92,0,5.84,0,8.76-0.01c0.56,0,1.19-0.03,1.57-0.45c0.32-0.36,0.33-0.89,0.33-1.38c-0.01-0.87-0.01-1.74-0.02-2.61c0-0.13-0.01-0.28-0.1-0.37c-0.11-0.11-0.29-0.1-0.45-0.08c-0.92,0.12-1.84,0.24-2.76,0.36c0.86-0.64,1.76-1.21,2.71-1.71c1.04-0.56,2.19-1.1,2.74-2.14c0.4-0.76,0.4-1.66,0.38-2.52c-0.01-1.09-0.03-2.17-0.04-3.26C28.66,20.7,28.66,20.66,28.65,20.63z"/></svg>') center center no-repeat;
}

.rl-unrest-high {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23e1874d" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M20.11,14.88C20.11,14.88,20.11,14.88,20.11,14.88c0,1.13-0.01,2.27,0.01,3.4c0.02,0.8,0.65,1.43,1.4,1.44c0.32,0,0.64,0,0.95,0c0.89-0.01,1.48-0.59,1.48-1.51c0.01-2.21,0.01-4.43,0-6.64c-0.01-0.86-0.59-1.44-1.41-1.46c-0.34-0.01-0.67,0-1.01,0c-0.81,0.01-1.42,0.66-1.42,1.53C20.1,12.72,20.11,13.8,20.11,14.88z"/><path fill="%23FFFFFF" d="M28.67,15.55C28.67,15.55,28.67,15.55,28.67,15.55c-0.01-1.02,0-2.05-0.01-3.07c-0.01-0.91-0.6-1.53-1.46-1.54c-0.35,0-0.71-0.01-1.06,0c-0.75,0.02-1.33,0.55-1.34,1.35c-0.03,2.16-0.04,4.31-0.01,6.47c0.01,0.79,0.64,1.37,1.38,1.38c0.32,0,0.64,0,0.95,0c0.94,0,1.53-0.64,1.54-1.64C28.68,17.53,28.67,16.54,28.67,15.55z"/><path fill="%23FFFFFF" d="M14.08,13.85c0.31-0.01,0.49-0.13,0.48-0.46c-0.01-0.56,0-1.11,0-1.67c-0.01-1.02-0.57-1.62-1.54-1.62c-0.32,0-0.64-0.01-0.95,0c-0.68,0.02-1.32,0.65-1.35,1.37c-0.02,0.65,0,1.3-0.01,1.95c-0.01,0.34,0.14,0.45,0.45,0.45C11.67,13.88,13.48,13.87,14.08,13.85z"/><path fill="%23FFFFFF" d="M15.42,10.92c0,0.84-0.01,1.87,0,2.55c0,0.22,0.21,0.39,0.48,0.4c0.63,0.01,1.29,0,1.78,0.38c0.27,0.21,0.41,0.53,0.43,0.87c-0.06,1.75-0.61,2.44-1.78,3.49c-0.07,0.07-0.18,0.16-0.27,0.33c0.19,0.08,0.35,0.14,0.63,0.17c0.35,0.04,0.71,0.02,1.06,0.01c0.85-0.01,1.51-0.67,1.52-1.57c0.01-2.23,0-4.47,0-6.7c0-0.76-0.43-1.56-1.95-1.56C15.81,9.29,15.43,10.1,15.42,10.92z"/><path fill="%23FFFFFF" d="M28.65,20.63c0-0.03-0.01-0.06-0.03-0.09c-0.09-0.14-0.3-0.08-0.45-0.02c-1.16,0.48-2.56,0.28-3.55-0.49c-0.12-0.09-0.25-0.2-0.4-0.21c-0.16-0.01-0.3,0.08-0.44,0.16c-1.28,0.74-3.04,0.51-4.09-0.52c-0.09-0.09-0.18-0.19-0.31-0.21c-0.16-0.03-0.32,0.06-0.46,0.14c-1.13,0.62-2.51,0.22-3.78,0.02c-0.56-0.09-1.32,0-1.41,0.56c-0.08,0.48,0.44,0.82,0.89,1.02c0.52,0.24,1.05,0.48,1.57,0.72c0.57,0.26,1.17,0.55,1.56,1.04c0.43,0.54,0.49,1.23,0.65,1.9c0.08,0.33-0.02,0.51-0.11,0.53c-0.24,0.05-0.41-0.76-0.46-0.95c-0.11-0.38-0.22-0.76-0.47-1.07c-0.3-0.37-0.76-0.56-1.19-0.75c-0.62-0.26-1.23-0.52-1.85-0.77c-0.44-0.19-0.9-0.45-1.15-0.75c-0.31-0.37-0.44-0.84-0.2-1.26c0.29-0.52,0.85-0.63,1.37-0.77c1.51-0.4,2.76-1.69,3.09-3.22c0.06-0.29,0.08-0.63-0.13-0.83c-0.17-0.16-0.42-0.18-0.65-0.19c-2.24-0.08-4.49-0.07-6.73,0.04c-0.33,0.02-0.69,0.04-0.95,0.26c-0.23,0.19-0.32,0.5-0.4,0.78c-0.46,1.57-0.91,3.13-1.37,4.7c-0.23,0.8-0.47,1.65-0.25,2.46c0.17,0.6,0.57,1.1,0.97,1.58c2.15,2.57,4.7,5.08,7.97,5.83c0.14,0.03,0.33,0.2,0.2,0.28c-0.65-0.06-1.3-0.12-1.96-0.18c-0.12-0.01-0.24-0.02-0.34,0.05c-0.12,0.08-0.15,0.25-0.17,0.4c-0.09,0.88-0.1,1.78-0.03,2.66c0.02,0.2,0.02,0.42,0.07,0.62c0.03,0.12,0.1,0.19,0.19,0.28c0.24,0.24,0.51,0.38,0.85,0.45c0.27,0.05,0.54,0.06,0.81,0.06c2.92,0,5.84,0,8.76-0.01c0.56,0,1.19-0.03,1.57-0.45c0.32-0.36,0.33-0.89,0.33-1.38c-0.01-0.87-0.01-1.74-0.02-2.61c0-0.13-0.01-0.28-0.1-0.37c-0.11-0.11-0.29-0.1-0.45-0.08c-0.92,0.12-1.84,0.24-2.76,0.36c0.86-0.64,1.76-1.21,2.71-1.71c1.04-0.56,2.19-1.1,2.74-2.14c0.4-0.76,0.4-1.66,0.38-2.52c-0.01-1.09-0.03-2.17-0.04-3.26C28.66,20.7,28.66,20.66,28.65,20.63z"/></svg>') center center no-repeat;
}

.rl-unrest-extreme {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 38 50" enable-background="new 0 0 38 50" xml:space="preserve"><path fill="%23bd2f35" stroke="%23FFFFFF" stroke-width="2" d="M1.75,19.25C1.75,9.72,9.47,2,19,2s17.25,7.72,17.25,17.25c0,6.95-2.42,8.9-15.48,27.82c-0.86,1.24-2.69,1.24-3.55,0C4.17,28.15,1.75,26.2,1.75,19.25z"/><path fill="%23FFFFFF" d="M20.11,14.88C20.11,14.88,20.11,14.88,20.11,14.88c0,1.13-0.01,2.27,0.01,3.4c0.02,0.8,0.65,1.43,1.4,1.44c0.32,0,0.64,0,0.95,0c0.89-0.01,1.48-0.59,1.48-1.51c0.01-2.21,0.01-4.43,0-6.64c-0.01-0.86-0.59-1.44-1.41-1.46c-0.34-0.01-0.67,0-1.01,0c-0.81,0.01-1.42,0.66-1.42,1.53C20.1,12.72,20.11,13.8,20.11,14.88z"/><path fill="%23FFFFFF" d="M28.67,15.55C28.67,15.55,28.67,15.55,28.67,15.55c-0.01-1.02,0-2.05-0.01-3.07c-0.01-0.91-0.6-1.53-1.46-1.54c-0.35,0-0.71-0.01-1.06,0c-0.75,0.02-1.33,0.55-1.34,1.35c-0.03,2.16-0.04,4.31-0.01,6.47c0.01,0.79,0.64,1.37,1.38,1.38c0.32,0,0.64,0,0.95,0c0.94,0,1.53-0.64,1.54-1.64C28.68,17.53,28.67,16.54,28.67,15.55z"/><path fill="%23FFFFFF" d="M14.08,13.85c0.31-0.01,0.49-0.13,0.48-0.46c-0.01-0.56,0-1.11,0-1.67c-0.01-1.02-0.57-1.62-1.54-1.62c-0.32,0-0.64-0.01-0.95,0c-0.68,0.02-1.32,0.65-1.35,1.37c-0.02,0.65,0,1.3-0.01,1.95c-0.01,0.34,0.14,0.45,0.45,0.45C11.67,13.88,13.48,13.87,14.08,13.85z"/><path fill="%23FFFFFF" d="M15.42,10.92c0,0.84-0.01,1.87,0,2.55c0,0.22,0.21,0.39,0.48,0.4c0.63,0.01,1.29,0,1.78,0.38c0.27,0.21,0.41,0.53,0.43,0.87c-0.06,1.75-0.61,2.44-1.78,3.49c-0.07,0.07-0.18,0.16-0.27,0.33c0.19,0.08,0.35,0.14,0.63,0.17c0.35,0.04,0.71,0.02,1.06,0.01c0.85-0.01,1.51-0.67,1.52-1.57c0.01-2.23,0-4.47,0-6.7c0-0.76-0.43-1.56-1.95-1.56C15.81,9.29,15.43,10.1,15.42,10.92z"/><path fill="%23FFFFFF" d="M28.65,20.63c0-0.03-0.01-0.06-0.03-0.09c-0.09-0.14-0.3-0.08-0.45-0.02c-1.16,0.48-2.56,0.28-3.55-0.49c-0.12-0.09-0.25-0.2-0.4-0.21c-0.16-0.01-0.3,0.08-0.44,0.16c-1.28,0.74-3.04,0.51-4.09-0.52c-0.09-0.09-0.18-0.19-0.31-0.21c-0.16-0.03-0.32,0.06-0.46,0.14c-1.13,0.62-2.51,0.22-3.78,0.02c-0.56-0.09-1.32,0-1.41,0.56c-0.08,0.48,0.44,0.82,0.89,1.02c0.52,0.24,1.05,0.48,1.57,0.72c0.57,0.26,1.17,0.55,1.56,1.04c0.43,0.54,0.49,1.23,0.65,1.9c0.08,0.33-0.02,0.51-0.11,0.53c-0.24,0.05-0.41-0.76-0.46-0.95c-0.11-0.38-0.22-0.76-0.47-1.07c-0.3-0.37-0.76-0.56-1.19-0.75c-0.62-0.26-1.23-0.52-1.85-0.77c-0.44-0.19-0.9-0.45-1.15-0.75c-0.31-0.37-0.44-0.84-0.2-1.26c0.29-0.52,0.85-0.63,1.37-0.77c1.51-0.4,2.76-1.69,3.09-3.22c0.06-0.29,0.08-0.63-0.13-0.83c-0.17-0.16-0.42-0.18-0.65-0.19c-2.24-0.08-4.49-0.07-6.73,0.04c-0.33,0.02-0.69,0.04-0.95,0.26c-0.23,0.19-0.32,0.5-0.4,0.78c-0.46,1.57-0.91,3.13-1.37,4.7c-0.23,0.8-0.47,1.65-0.25,2.46c0.17,0.6,0.57,1.1,0.97,1.58c2.15,2.57,4.7,5.08,7.97,5.83c0.14,0.03,0.33,0.2,0.2,0.28c-0.65-0.06-1.3-0.12-1.96-0.18c-0.12-0.01-0.24-0.02-0.34,0.05c-0.12,0.08-0.15,0.25-0.17,0.4c-0.09,0.88-0.1,1.78-0.03,2.66c0.02,0.2,0.02,0.42,0.07,0.62c0.03,0.12,0.1,0.19,0.19,0.28c0.24,0.24,0.51,0.38,0.85,0.45c0.27,0.05,0.54,0.06,0.81,0.06c2.92,0,5.84,0,8.76-0.01c0.56,0,1.19-0.03,1.57-0.45c0.32-0.36,0.33-0.89,0.33-1.38c-0.01-0.87-0.01-1.74-0.02-2.61c0-0.13-0.01-0.28-0.1-0.37c-0.11-0.11-0.29-0.1-0.45-0.08c-0.92,0.12-1.84,0.24-2.76,0.36c0.86-0.64,1.76-1.21,2.71-1.71c1.04-0.56,2.19-1.1,2.74-2.14c0.4-0.76,0.4-1.66,0.38-2.52c-0.01-1.09-0.03-2.17-0.04-3.26C28.66,20.7,28.66,20.66,28.65,20.63z"/></svg>') center center no-repeat;
}

.person-a {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 50" enable-background="new 0 0 25 50" xml:space="preserve"><circle fill="%234AB0BA" cx="12.6" cy="38.58" r="10.37"/><path fill="%2395C5CB" d="M17.71,43.79l-0.92-0.92l-0.02,0c0.01-0.01,0.02-0.01,0.02-0.02c1.08-1.08,1.75-2.59,1.75-4.23  c0-0.85-0.18-1.69-0.51-2.43c0,0,0,0,0-0.01l1.18-0.52c-0.77-1.72-2.17-3.09-3.92-3.79c-0.84-0.34-1.77-0.53-2.73-0.53 c-2.01,0-3.84,0.82-5.15,2.13l-1.91-1.91c-1.82,1.82-2.93,4.31-2.93,7.08c0,1.45,0.31,2.83,0.87,4.07c1.05,2.36,2.99,4.23,5.39,5.21 c1.16,0.47,2.43,0.72,3.75,0.72c2.77,0,5.26-1.13,7.08-2.93L17.71,43.79z M5.89,41.59c0,0,0,0.01,0.01,0.01l0,0 C5.89,41.6,5.89,41.59,5.89,41.59z M7.1,41.09C7.09,41.09,7.09,41.09,7.1,41.09l1.74-0.79c-0.23-0.5-0.35-1.06-0.35-1.66 c0-1.13,0.45-2.14,1.19-2.88c0.74-0.74,1.75-1.19,2.88-1.19c0.55,0,1.05,0.11,1.53,0.29L13.9,35.3c0.87,0.35,1.56,1.03,1.95,1.87 c0.19,0.45,0.31,0.95,0.31,1.46c0,1-0.4,1.9-1.05,2.54c-0.64,0.64-1.54,1.05-2.54,1.05c-0.48,0-0.93-0.1-1.35-0.26l-0.18,0.43 l-0.72,1.78c0.01,0,0.02,0.01,0.03,0.01l-0.03,0.01C8.89,43.61,7.73,42.5,7.1,41.09z"/><path d="M5.07,25.33v-8.12c0-2.24,1.69-4.07,3.76-4.07h0.92c0.87,0.42,1.82,0.68,2.83,0.68c1.01,0,1.96-0.26,2.83-0.68h0.92 c2.07,0,3.76,1.82,3.76,4.07v8.12c0,1.5-1.13,2.7-2.51,2.7v8.12c0,1.5-1.13,2.7-2.51,2.7h-4.98c-1.38,0-2.51-1.21-2.51-2.7v-8.12 C6.2,28.03,5.07,26.82,5.07,25.33z"/><ellipse cx="12.6" cy="6.37" rx="5.02" ry="5.42"/></svg>') center center no-repeat;
}

.person-i {
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 50" enable-background="new 0 0 25 50" xml:space="preserve"><circle fill="%23B3B3B3" cx="12.6" cy="38.58" r="10.37"/><path fill="%23E6E6E6" d="M17.71,43.79l-0.92-0.92l-0.02,0c0.01-0.01,0.02-0.01,0.02-0.02c1.08-1.08,1.75-2.59,1.75-4.23c0-0.85-0.18-1.69-0.51-2.43c0,0,0,0,0-0.01l1.18-0.52c-0.77-1.72-2.17-3.09-3.92-3.79c-0.84-0.34-1.77-0.53-2.73-0.53c-2.01,0-3.84,0.82-5.15,2.13l-1.91-1.91c-1.82,1.82-2.93,4.31-2.93,7.08c0,1.45,0.31,2.83,0.87,4.07c1.05,2.36,2.99,4.23,5.39,5.21c1.16,0.47,2.43,0.72,3.75,0.72c2.77,0,5.26-1.13,7.08-2.93L17.71,43.79z M5.89,41.59c0,0,0,0.01,0.01,0.01l0,0C5.89,41.6,5.89,41.59,5.89,41.59z M7.1,41.09C7.09,41.09,7.09,41.09,7.1,41.09l1.74-0.79c-0.23-0.5-0.35-1.06-0.35-1.66c0-1.13,0.45-2.14,1.19-2.88c0.74-0.74,1.75-1.19,2.88-1.19c0.55,0,1.05,0.11,1.53,0.29L13.9,35.3c0.87,0.35,1.56,1.03,1.95,1.87c0.19,0.45,0.31,0.95,0.31,1.46c0,1-0.4,1.9-1.05,2.54c-0.64,0.64-1.54,1.05-2.54,1.05c-0.48,0-0.93-0.1-1.35-0.26l-0.18,0.43l-0.72,1.78c0.01,0,0.02,0.01,0.03,0.01l-0.03,0.01C8.89,43.61,7.73,42.5,7.1,41.09z"/><path fill="%23e7474e" d="M5.07,25.33v-8.12c0-2.24,1.69-4.07,3.76-4.07h0.92c0.87,0.42,1.82,0.68,2.83,0.68c1.01,0,1.96-0.26,2.83-0.68h0.92c2.07,0,3.76,1.82,3.76,4.07v8.12c0,1.5-1.13,2.7-2.51,2.7v8.12c0,1.5-1.13,2.7-2.51,2.7h-4.98c-1.38,0-2.51-1.21-2.51-2.7v-8.12C6.2,28.03,5.07,26.82,5.07,25.33z"/><ellipse fill="%23e7474e" cx="12.6" cy="6.37" rx="5.02" ry="5.42"/></svg>') center center no-repeat;
}

@media (min-width: 992px) {
  .modal-xl {
    max-width: 1200px;
  }
}
.modal-content {
  padding: 1.5em;
  border: none;
}

.modal-header {
  padding: 0 0 1em;
}

.no-padding .modal-content {
  padding: 0;
}

.no-padding .modal-body {
  padding: 25px 32px;
}

.no-padding .modal-header {
  padding: 0;
  height: 50px;
}

.modal p:last-child {
  margin-bottom: 0;
}

.modal-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.modal-content {
  padding: 0;
}
.modal-content .form-group {
  padding: 30px 30px 0 30px;
}
.modal-content .form-group label, .modal-content .form-group span.lbl {
  font-size: 14px;
  color: #363636;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.modal-content .form-group textarea {
  background: white;
  border: #CED8D9 1px solid;
  margin: 0 0 20px 0;
}
.modal-content .form-group .question {
  padding-right: 30px;
  position: relative;
  margin: 15px 0;
}
.modal-content .form-group .question .delete {
  position: absolute;
  right: 0px;
  top: 5px;
}
.modal-content .form-group .question input {
  background: white;
  border: #CED8D9 1px solid;
  margin: 0 0 0 0;
}
.modal-content .form-group .add {
  text-align: center;
}
.modal-content .form-group .add .modal-incident-add-answer {
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 10px;
  margin-top: 10px;
}
.modal-content .modal-header {
  background: #F2F5F5;
  height: 60px;
  padding: 0 30px 0 30px;
  border: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.modal-content .modal-header h1 {
  font-size: 16px;
  color: #486064;
  font-weight: bold;
  line-height: 60px;
}
.modal-content .modal-header.bg-risk-level-1, .modal-content .modal-header.bg-risk-level-2, .modal-content .modal-header.bg-risk-level-3, .modal-content .modal-header.bg-risk-level-4, .modal-content .modal-header.bg-risk-level-5 {
  height: 50px;
}
.modal-content .modal-header.bg-risk-level-1 .close span, .modal-content .modal-header.bg-risk-level-2 .close span, .modal-content .modal-header.bg-risk-level-3 .close span, .modal-content .modal-header.bg-risk-level-4 .close span, .modal-content .modal-header.bg-risk-level-5 .close span {
  color: white;
  opacity: 0.5;
}
.modal-content .modal-header.bg-risk-level-1 .close span:hover, .modal-content .modal-header.bg-risk-level-2 .close span:hover, .modal-content .modal-header.bg-risk-level-3 .close span:hover, .modal-content .modal-header.bg-risk-level-4 .close span:hover, .modal-content .modal-header.bg-risk-level-5 .close span:hover {
  opacity: 1;
}
.modal-content .modal-header.bg-risk-level-1 .close:hover, .modal-content .modal-header.bg-risk-level-2 .close:hover, .modal-content .modal-header.bg-risk-level-3 .close:hover, .modal-content .modal-header.bg-risk-level-4 .close:hover, .modal-content .modal-header.bg-risk-level-5 .close:hover {
  opacity: 1;
}
.modal-content .modal-header.bg-risk-level-1 {
  background: #2f835a;
}
.modal-content .modal-header.bg-risk-level-2 {
  background: #3eaf70;
}
.modal-content .modal-header.bg-risk-level-3 {
  background: #fbc93a;
}
.modal-content .modal-header.bg-risk-level-4 {
  background: #e1874d;
}
.modal-content .modal-header.bg-risk-level-5 {
  background: #bd2f35;
}
.modal-content .modal-body .dialogrow {
  border-bottom: 1px solid #E1E4E5;
  padding: 30px;
  font-size: 13px;
  font-weight: normal;
  color: #363636;
}
.modal-content .modal-body .dialogrow:last-child {
  border: none;
}
.modal-content .modal-body .dialogrow .media-left {
  margin-right: 10px;
}
.modal-content .modal-body .dialogrow .media-left .avatar {
  width: 40px;
  height: 40px;
  border: 1px solid #CED8D9;
}
.modal-content .modal-body .dialogrow .media-left .avatar img {
  width: 38px;
  height: 38px;
  border: 1px solid white;
  vertical-align: inherit;
}
.modal-content .modal-body .dialogrow h3 {
  font-size: 15px;
  font-weight: bold;
  color: #2C292D;
  margin-top: 10px;
}
.modal-content .modal-body .dialogrow .lbl {
  font-weight: 600;
}
.modal-content .modal-body .dialogrow .section {
  margin-bottom: 20px;
}

.modal-nav {
  margin: 40px 30px 0 30px;
}

.modal-content .alert-popup-sources-changes-row {
  background: #F2F5F5;
  margin: 0 -32px -45px -32px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 20px 32px 20px 32px;
  border-top: 1px solid #E1E4E5;
}
.modal-content .alert-popup-sources-changes-row p {
  margin-bottom: 0px !important;
}
.modal-content .alert-popup-sources-changes-row h5 {
  margin-bottom: 10px;
}
.modal-content .alert-popup-sources-changes-row .form-group {
  padding: 0;
}

.alert-country-names {
  margin-bottom: 30px;
}

.modal-risk-count .risk-level-bullet {
  border-radius: 100%;
}

.modal-full {
  width: calc(100% - 80px);
  max-width: 100%;
}
.modal-full button.close {
  margin-top: 5px;
}
.modal-full .modal-content {
  padding: 30px;
}
.modal-full .modal-content .modal-header {
  display: none;
}
.modal-full .modal-content .modal-header.true-header {
  display: block;
}
.modal-full .modal-content .modal-header {
  font-size: 21px;
  font-weight: bold;
  color: #486064;
  line-height: 53px;
  background: #F2F5F5;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 0;
  border-radius: 4px;
}
.modal-full .modal-content .modal-body {
  padding: 0;
  margin-bottom: -30px;
}
.modal-full .modal-content .modal-body .left {
  padding-top: 10px;
  border-right: 1px solid #E1E4E5;
  padding-right: 30px;
  padding-bottom: 30px;
}
.modal-full .modal-content .modal-body .left .form-group {
  margin-bottom: 20px;
}
.modal-full .modal-content .modal-body .left .form-group label {
  color: #363636;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal-full .modal-content .modal-body .left .form-group .form-control {
  background: none;
  border: 1px solid #CED8D9;
}
.modal-full .modal-content .modal-body .right {
  padding-top: 40px;
  padding-left: 30px;
  padding-bottom: 30px;
}
.modal-full .modal-content .modal-body .right button.btn-rsk-blue {
  font-size: 14px;
}
.modal-full .modal-content .modal-body .right .row {
  margin-bottom: 10px;
}
.modal-full .modal-content .modal-body .right .search-group {
  width: 100%;
}
.modal-full .modal-content .modal-body .right .search-group input {
  max-width: 260px;
  float: left;
  background: none;
  border: 1px solid #CED8D9;
}
.modal-full .modal-content .modal-body .right .search-group button {
  float: left;
  margin-left: 10px;
  font-size: 12px;
  height: 33px;
  line-height: 33px;
  padding: 0 10px;
}
.modal-full .modal-content .modal-body .right .label-btn {
  float: right;
  color: #363636;
  font-size: 14px;
  font-weight: 600;
  padding-left: 25px;
  margin: 0;
  height: 33px;
  line-height: 33px;
}
.modal-full .modal-content .modal-body .right .label-btn.clear {
  margin-left: 20px;
  background: url("/images/clear-eda9e762cb93ecc5d878c165145fa340.png") no-repeat center left;
}
.modal-full .modal-content .modal-body .right .label-btn.upload {
  background: url("/images/upload-e7ad03cc726fcfce72724b718e0c6fb1.png") no-repeat center left;
}

.v11 .modal-content .v11-modal-header {
  border-bottom: 1px solid #F2F5F5;
  margin-bottom: 20px;
}
.v11 .modal-content .v11-modal-header.alert-header {
  margin: -25px -32px 0 -32px;
  height: 60px;
  background: #F2F5F5;
  padding: 0 32px;
}
.v11 .modal-content .v11-modal-header.alert-header .list-item {
  padding: 18px 0 0 0;
  width: 100%;
}
.v11 .modal-content .v11-modal-header.alert-header .list-item .list-right {
  display: flex;
}
.v11 .modal-content .list-item {
  padding: 0 0 15px;
}
.v11 .modal-content .list-left {
  padding-right: 0;
}
.v11 .modal-content .category {
  font-size: 14px;
  font-weight: bold;
  color: #ABB9BA;
}
.v11 .modal-content h1.modal-heading {
  font-size: 27px;
  letter-spacing: -0.27px;
  color: #363636;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 30px;
  position: relative;
  padding-right: 40px;
}
.v11 .modal-content h1.modal-heading a.edit.icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("/images/svg/icon_edit.svg") no-repeat center left;
  top: 0;
  right: 0;
}
.v11 .modal-content h1.modal-heading a.edit.icon:hover {
  background: url("/images/svg/icon_edit_hover.svg") no-repeat center left;
}
.v11 .modal-content .avatar img {
  width: 27px;
  height: 27px;
}
.v11 .modal-content .alert-modal-category {
  display: flex;
  align-items: center;
}
.v11 .modal-content .list-body {
  color: #ABB9BA;
  font-size: 14px;
  margin-left: 0;
}
.v11 .modal-content .list-body h3 {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #363636;
  margin-right: 5px;
  margin-top: 4px;
}
.v11 .modal-content .list-body .alert-modal-created,
.v11 .modal-content .list-body .alert-modal-risk {
  font-size: 14px;
  font-style: italic;
  color: #363636;
  margin: 0 4px;
}
.v11 .modal-content .list-body .risk-level-bullet {
  font-size: 11px;
  margin-right: 4px;
}
.v11 .modal-content .b-b.nav-active-bg {
  border-bottom-color: #E1E4E5;
}
.v11 .modal-content a.nav-link {
  padding: 10px 18px;
}
.v11 .modal-content .tab-content {
  padding: 20px 0;
  margin: 0;
}
.v11 .modal-content .tab-content p {
  margin-bottom: 20px;
}

.alert-modal-country {
  font-size: 1rem;
}

.alert-modal-created {
  font-size: 0.9rem;
}

.user-guides-modal .table th {
  vertical-align: middle;
  text-align: left;
}
.user-guides-modal .btn-toolbar {
  justify-content: flex-end;
}

.notifications-menu .dropdown-menu {
  padding: 0;
}

#notifications-scroll {
  text-transform: none;
  background: #F3F5F5;
  max-height: 300px;
}

.black #notifications-scroll {
  background: #212121;
}

#notifications-scroll .dropdown-item {
  padding: 0;
  white-space: normal;
  line-height: 1.3;
}

#notifications-scroll .dropdown-item,
#notifications-scroll .incident-avatar {
  background: #fff;
}

.black #notifications-scroll .dropdown-item,
.black #notifications-scroll .incident-avatar {
  background: #3B393C;
}

.notifications-menu .label {
  top: 0;
  right: 7px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  padding: 0;
  font-weight: bold;
  background: #00B0BF;
}

#notifications-scroll .dropdown-item.is-read {
  background: none !important;
  opacity: 0.7;
}

.notification-item {
  border-bottom: 1px solid #E1E4E5;
  padding: 10px;
}
.notification-item .avatar {
  width: 36px;
  height: 36px;
  border: 1px solid #CED8D9;
  border-radius: 18px;
}
.notification-item .avatar img {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  vertical-align: inherit;
  border: 1px solid white;
}
.notification-item .date {
  color: #9E9E9E;
  font-size: 11px;
  font-weight: bold;
}
.notification-item .copy {
  color: #363636;
  font-size: 12px;
}

.rsk-notif {
  background: url("/images/notif-a11c9e71f8d2d915c07ece0c8c112203.png") no-repeat center center;
  width: 17px;
  height: 19px;
  display: inline-block;
}

.pta-container {
  padding-top: 50px;
  padding-left: 50px;
}
.pta-container .list-group-item {
  background: white;
  border-bottom: 1px solid #F2F5F5;
}
.pta-container .search-country {
  border-bottom: #F2F5F5 1px solid;
  border-radius: 0px;
}
.pta-container .pta-body-inner {
  padding-top: 30px;
  padding-left: 30px;
}
.pta-container .pta-body-inner #templateHeader {
  display: none;
}
.pta-container .pta-body-inner #PtaHeader div:first-child {
  position: absolute;
}
.pta-container .pta-body-inner #PtaHeader h1 {
  font-size: 30px;
  font-weight: normal;
  text-align: left !important;
  color: #363636;
  border-top: 1px solid #F2F5F5;
  border-bottom: 1px solid #F2F5F5;
  padding: 20px 0 20px 50px;
}
.pta-container .pta-body-inner #PtaHeader div:last-child {
  font-size: 15px;
  font-style: italic;
  position: absolute;
  right: 45px;
  top: 25px;
}
.pta-container .pta-body-inner .bodyContent h3 {
  font-size: 18px;
  color: #363636;
  margin-bottom: 20px;
}
.pta-container .pta-body-inner .bodyContent p {
  padding-left: 30px;
}
.pta-container .pta-body-inner .bodyContent p strong {
  font-weight: bold;
}
.pta-container .pta-body-inner .bodyContent .pta-advisory {
  position: relative;
}
.pta-container .pta-body-inner .bodyContent .pta-advisory .advisory-title {
  font-weight: bold;
}
.pta-container .pta-body-inner .bodyContent div.read-more {
  padding-left: 30px;
}
.pta-container .pta-body-inner .bodyContent .read-more {
  margin-bottom: 30px;
}
.pta-container .pta-body-inner .bodyContent .read-more a {
  color: #486064;
  text-decoration: none;
}

/*--- NEW DESIGN STYLES FOR PTA BY SHERIF ---*/
.pta-container, .pta-body {
  /* Overall level */
  /* Overview title */
  /* Emergency-title */
  /* Emergency numbers */
  /* Advisories section */
  /* Required documentation section */
  /* Covid section */
  /* Summary section */
  /* Upcoming section */
}
.pta-container p, .pta-container h1, .pta-container h2, .pta-container h3, .pta-container h4, .pta-container h5, .pta-container h6, .pta-container span, .pta-container b, .pta-body p, .pta-body h1, .pta-body h2, .pta-body h3, .pta-body h4, .pta-body h5, .pta-body h6, .pta-body span, .pta-body b {
  color: #2C292D !important;
}
.pta-container .pta-content, .pta-body .pta-content {
  padding-left: 7%;
  padding-right: 7%;
}
.pta-container .company-header, .pta-body .company-header {
  height: 100px;
}
.pta-container .company-header img, .pta-body .company-header img {
  height: 40px;
  object-fit: contain;
  padding-left: 5%;
  margin-top: 30px;
}
.pta-container .report-type, .pta-body .report-type {
  height: 50px;
}
.pta-container .report-type .content, .pta-body .report-type .content {
  width: 30%;
  height: 100%;
  background: #0E3A43;
  display: flex;
  align-items: center;
}
.pta-container .report-type .content span, .pta-body .report-type .content span {
  margin-left: 25%;
  font-size: 20px !important;
  color: #fff !important;
}
.pta-container .destination-name, .pta-body .destination-name {
  margin-top: 50px;
  margin-bottom: 30px;
  padding-left: 7%;
}
.pta-container .destination-name h1, .pta-body .destination-name h1 {
  margin: 0 !important;
  font-size: 50px;
  color: #0E3A43 !important;
}
.pta-container .destination-name img, .pta-body .destination-name img {
  height: 30px;
  object-fit: contain;
}
.pta-container .risk-level-pills, .pta-body .risk-level-pills {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.pta-container .pill, .pta-body .pill {
  width: 16px;
  height: 24px;
  border-radius: 30px;
  background: #0E3A43;
  opacity: 0.1;
}
.pta-container .pill.active, .pta-body .pill.active {
  opacity: 1;
}
.pta-container .pill.active.risk-level-1,
.pta-container .pill.active.risk-level-2,
.pta-container .pill.active.risk-level-3,
.pta-container .pill.active.risk-level-4,
.pta-container .pill.active.risk-level-5, .pta-body .pill.active.risk-level-1,
.pta-body .pill.active.risk-level-2,
.pta-body .pill.active.risk-level-3,
.pta-body .pill.active.risk-level-4,
.pta-body .pill.active.risk-level-5 {
  background-color: #fbc93a;
  /* Default color for active pills */
}
.pta-container .pill.active.risk-level-1, .pta-body .pill.active.risk-level-1 {
  background-color: #2f835a;
}
.pta-container .pill.active.risk-level-2, .pta-body .pill.active.risk-level-2 {
  background-color: #3eaf70;
}
.pta-container .pill.active.risk-level-3, .pta-body .pill.active.risk-level-3 {
  background-color: #fbc93a;
}
.pta-container .pill.active.risk-level-4, .pta-body .pill.active.risk-level-4 {
  background-color: #e1874d;
}
.pta-container .pill.active.risk-level-5, .pta-body .pill.active.risk-level-5 {
  background-color: #bd2f35;
}
.pta-container .overall-risk-level, .pta-body .overall-risk-level {
  background: #F8F4F5;
  padding-bottom: 30px;
}
.pta-container .overall-risk-level p, .pta-container .overall-risk-level h3, .pta-container .overall-risk-level h5, .pta-body .overall-risk-level p, .pta-body .overall-risk-level h3, .pta-body .overall-risk-level h5 {
  color: #0E3A43 !important;
}
.pta-container .overall-risk-level .level-title, .pta-body .overall-risk-level .level-title {
  margin-left: 7%;
  padding: 10px 0;
}
.pta-container .overall-risk-level .card, .pta-body .overall-risk-level .card {
  margin-bottom: 15px;
  width: 84%;
  padding: 10px;
  margin-left: 7%;
  margin-right: 7%;
  background: #fff !important;
  border-radius: 10px;
  border-color: #fff;
}
.pta-container .overall-risk-level .card div.content, .pta-body .overall-risk-level .card div.content {
  display: flex;
}
.pta-container .overall-risk-level .card img, .pta-body .overall-risk-level .card img {
  height: 20px;
  object-fit: contain;
}
.pta-container .overall-risk-level .card p, .pta-body .overall-risk-level .card p {
  font-size: 12px;
  margin-top: 0;
}
.pta-container .overall-risk-level .card .pills-content, .pta-body .overall-risk-level .card .pills-content {
  width: 25%;
}
.pta-container .overall-risk-level .card .risk-level-content, .pta-body .overall-risk-level .card .risk-level-content {
  width: 35%;
}
.pta-container .overall-risk-level .card .risk-level-content h5, .pta-body .overall-risk-level .card .risk-level-content h5 {
  font-size: 15px;
  margin: 0px;
}
.pta-container .overall-risk-level .card .info-content, .pta-body .overall-risk-level .card .info-content {
  width: 40%;
  font-size: 10px;
}
.pta-container .overall-risk-level .card .fadded, .pta-body .overall-risk-level .card .fadded {
  border-color: #fff;
  opacity: 0.2;
}
.pta-container .overall-risk-level .border-risk-low, .pta-container .overall-risk-level .border-risk-moderate,
.pta-container .overall-risk-level .border-risk-medium, .pta-container .overall-risk-level .border-risk-high,
.pta-container .overall-risk-level .border-risk-extreme, .pta-body .overall-risk-level .border-risk-low, .pta-body .overall-risk-level .border-risk-moderate,
.pta-body .overall-risk-level .border-risk-medium, .pta-body .overall-risk-level .border-risk-high,
.pta-body .overall-risk-level .border-risk-extreme {
  border-radius: 20px;
  z-index: 1;
}
.pta-container .overall-risk-level .border-risk-low, .pta-body .overall-risk-level .border-risk-low {
  border: 3px solid #2f835a;
}
.pta-container .overall-risk-level .border-risk-moderate, .pta-body .overall-risk-level .border-risk-moderate {
  border: 3px solid #3eaf70;
}
.pta-container .overall-risk-level .border-risk-medium, .pta-body .overall-risk-level .border-risk-medium {
  border: 3px solid #fbc93a;
}
.pta-container .overall-risk-level .border-risk-high, .pta-body .overall-risk-level .border-risk-high {
  border: 3px solid #e1874d;
}
.pta-container .overall-risk-level .border-risk-extreme, .pta-body .overall-risk-level .border-risk-extreme {
  border: 3px solid #bd2f35;
}
.pta-container .list-group-item, .pta-body .list-group-item {
  color: #2c292d !important;
  font-family: "inter", arial !important;
  font-size: 12px;
  margin: 0px;
  padding: 5px;
  text-align: center;
  border-collapse: collapse;
}
.pta-container h2, .pta-body h2 {
  color: #25B0C1 !important;
  font-size: 23px;
  font-weight: 700;
  margin-top: 65px;
}
.pta-container h3, .pta-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px;
}
.pta-container h4, .pta-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 30px;
}
.pta-container p, .pta-container a, .pta-body p, .pta-body a {
  font-size: 14px;
  line-height: 1.75em;
  text-align: left !important;
}
.pta-container .overview-cust, .pta-body .overview-cust {
  text-align: left !important;
}
.pta-container .emergency-title h3, .pta-body .emergency-title h3 {
  text-align: left;
  margin-bottom: 20px;
}
.pta-container .emergency-numbers table, .pta-container .emergency-numbers td, .pta-body .emergency-numbers table, .pta-body .emergency-numbers td {
  border: 1px solid #E1E4E5;
  border-collapse: collapse;
}
.pta-container .emergency-numbers td, .pta-body .emergency-numbers td {
  padding: 5px 10px;
}
.pta-container .emergency-numbers td.en-service-category, .pta-body .emergency-numbers td.en-service-category {
  width: 35%;
}
.pta-container .emergency-numbers td.en-number, .pta-body .emergency-numbers td.en-number {
  width: 20%;
  font-weight: 700;
}
.pta-container .emergency-numbers td.en-additional-info, .pta-body .emergency-numbers td.en-additional-info {
  width: 45%;
}
.pta-container .advisories-title, .pta-body .advisories-title {
  border-bottom: 1px solid #e1e4e5;
  padding-bottom: 10px;
}
.pta-container .advisories-title h3, .pta-body .advisories-title h3 {
  margin-bottom: 0px;
}
.pta-container .advisories-subtitle, .pta-body .advisories-subtitle {
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 15px;
}
.pta-container .advisories-details, .pta-body .advisories-details {
  margin-bottom: 30px;
}
.pta-container .advisories-details .risk-level-pills, .pta-body .advisories-details .risk-level-pills {
  margin-bottom: 10px;
}
.pta-container .advisories-details .risk-level-pills p, .pta-body .advisories-details .risk-level-pills p {
  margin-left: 5px;
  margin-top: 5px;
}
.pta-container .advisories-details h4, .pta-body .advisories-details h4 {
  line-height: 1.75em !important;
  font-size: 16px;
}
.pta-container .advisories-details p, .pta-body .advisories-details p {
  margin-bottom: 4px;
  margin-top: 0px;
}
.pta-container .advisories-details a, .pta-body .advisories-details a {
  font-weight: 600;
  font-size: 14px;
  color: black;
  text-decoration: none;
}
.pta-container .documentation-title, .pta-body .documentation-title {
  border-bottom: 1px solid #e1e4e5;
  padding-bottom: 10px;
}
.pta-container .documentation-title h3, .pta-body .documentation-title h3 {
  margin-bottom: 0px;
}
.pta-container .documentation-details, .pta-body .documentation-details {
  margin-top: 15px;
  margin-bottom: 30px;
}
.pta-container .documentation-details p, .pta-body .documentation-details p {
  margin-bottom: 4px;
  margin-top: 0px;
}
.pta-container .documentation-details a, .pta-body .documentation-details a {
  font-weight: 600;
  font-size: 14px;
  color: black;
  text-decoration: none;
}
.pta-container .covid-title h2, .pta-body .covid-title h2 {
  margin-bottom: 20px;
  text-align: left !important;
}
.pta-container .summary-details, .pta-body .summary-details {
  margin-bottom: 30px;
  display: flex;
}
.pta-container .summary-details h3, .pta-body .summary-details h3 {
  margin-top: 0px;
}
.pta-container .summary-details p, .pta-body .summary-details p {
  margin-bottom: 4px;
  margin-top: 0px;
}
.pta-container .summary-details a, .pta-body .summary-details a {
  font-weight: 600;
  color: black;
  text-decoration: none;
}
.pta-container .summary-details h3 span, .pta-body .summary-details h3 span {
  font-weight: normal;
}
.pta-container .summary-details .risk-level-pills, .pta-body .summary-details .risk-level-pills {
  align-items: unset;
}
.pta-container .summary-details .summary-text, .pta-body .summary-details .summary-text {
  margin-left: 15px;
}
.pta-container .alert-header, .pta-body .alert-header {
  margin-bottom: 30px;
}
.pta-container .alert-details, .pta-body .alert-details {
  margin-bottom: 30px;
}
.pta-container .alert-details h4, .pta-body .alert-details h4 {
  margin-bottom: 0px;
  line-height: 1.75em;
  font-weight: bold;
}
.pta-container .alert-details p, .pta-body .alert-details p {
  margin-bottom: 0px;
  margin-top: 0px;
}
.pta-container .alert-details .alert-dates, .pta-body .alert-details .alert-dates {
  color: #25B0C1 !important;
}
.pta-container .alert-details .alert-content, .pta-body .alert-details .alert-content {
  margin-top: 5px;
  display: flex;
}
.pta-container .alert-details .alert-content .risk-level-pills, .pta-body .alert-details .alert-content .risk-level-pills {
  align-items: unset;
}
.pta-container .alert-details .alert-text, .pta-body .alert-details .alert-text {
  margin-left: 15px;
}
.pta-container .alert-details .disclaimer p, .pta-body .alert-details .disclaimer p {
  font-size: 12px;
}

/*--- NEW DESIGN STYLES FOR PTA BY SHERIF ---*/
.low,
.risk-level-1,
.bg-risk-level-1,
div.bg-risk-level-1.riskleveldot {
  background: #2f835a;
}

.moderate,
.risk-level-2,
.bg-risk-level-2,
div.bg-risk-level-2.riskleveldot {
  background: #3eaf70;
}

.bg-risk-level-3 {
  background: #fbc93a;
}

.medium,
.risk-level-3,
.bg-risk-level-3.modal-header,
div.bg-risk-level-3.riskleveldot {
  background: #fbc93a;
  color: #333;
}

.high,
.risk-level-4,
.bg-risk-level-4,
div.bg-risk-level-4.riskleveldot {
  background: #e1874d;
}

.extreme,
.risk-level-5,
.bg-risk-level-5,
div.bg-risk-level-5.riskleveldot {
  background: #bd2f35;
}

/*
.badge {
  font-size: 1.1em;
  padding: 5px 10px;
}

.badge:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.badge-risk-level-5 {
  background-color: #cc2f28;
}
.badge-risk-level-5:hover {
  background-color: #cc2f28;
}

.badge-risk-level-4 {
  background-color: #f68e1e;
}
.badge-risk-level-4:hover {
  background-color: #f68e1e;
}

.badge-risk-level-3 {
  background-color: #f6eb13;
  color: #333;
}
.badge-risk-level-3:hover {
  background-color: #f6eb13;
  color: #333;
}

.badge-risk-level-2 {
  background-color: #4356a5;
}
.badge-risk-level-2:hover {
  background-color: #4356a5;
}

.badge-risk-level-1 {
  background-color: #0b8f45;
}
.badge-risk-level-1:hover {
  background-color: #0b8f45;
}
*/
.special-report-tab .special-report-content {
  margin-bottom: 0.5rem;
  padding-bottom: 100px;
}
.special-report-tab .special-report-content table {
  margin-bottom: 1rem;
}
.special-report-tab .special-report-content table td, .special-report-tab .special-report-content table th {
  border: 1px solid black;
  padding: 0.1rem 0.5rem;
}
.special-report-tab .special-report-content table th {
  text-align: center;
}
.special-report-tab .special-report-content h1 {
  margin-top: 48px;
  margin-bottom: 15px;
}
.special-report-tab .special-report-content h2 {
  font-size: 30px;
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 15px;
}
.special-report-tab .special-report-content h3 {
  font-size: 20px;
}
.special-report-tab .special-report-content p, .special-report-tab .special-report-content ul {
  font-size: 16px;
  line-height: 1.8;
}

.special-report-map-view {
  margin-bottom: 1em;
}
.special-report-map-view .special-report-image-map {
  width: 500px;
  max-height: 300px;
}
.special-report-map-view .special-report-mapbox-container {
  height: 300px;
}

.mapSpecialReportDetails ul {
  list-style-type: none;
  padding-inline-start: 0em;
  margin-block-end: 0em;
}
.mapSpecialReportDetails ul li:not(:first-child) {
  margin-top: 1em;
}
.mapSpecialReportDetails ul p {
  margin-bottom: 0em;
}

.system-updates-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
}

.system-update {
  background: #d6010a;
  color: white;
  padding: 15px;
  position: "relative";
}

.system-update p:last-of-type {
  margin-bottom: 0;
}

.system-update .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.content-updates-list th {
  width: 40%;
  vertical-align: top !important;
}
.content-updates-list th:first-child {
  width: 10%;
}
.content-updates-list th:last-child {
  width: 10%;
}
.content-updates-list .content-update-filter div.dropdown-menu {
  width: 500px;
  padding: 0px !important;
}
.content-updates-list .content-update-filter a.btn-danger {
  padding: 0.1rem 0.2rem !important;
  text-transform: none;
}

.rl-psm-outside-selected-dropdown .ember-power-select-search {
  width: 100%;
}
.rl-psm-outside-selected-dropdown .ember-power-select-search input {
  padding: 0.1em 1em;
  background-color: #F7F7F7 !important;
}
.rl-psm-outside-selected-dropdown .ember-power-select-options {
  border: none !important;
}
.rl-psm-outside-selected-dropdown .ember-power-select-option,
.rl-psm-outside-selected-dropdown .ember-power-select-option[aria-current=true] {
  padding-left: 35px !important;
  background-position: 10px center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><circle cx='50%' cy='50%' r='40%' stroke-width='2' stroke='%23CED8D9' fill='white'/></svg>");
  border-bottom: 1px solid #CED8D9;
}
.rl-psm-outside-selected-dropdown .ember-power-select-option[aria-selected=true],
.rl-psm-outside-selected-dropdown .ember-power-select-option[aria-current=true][aria-selected=true] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><circle cx='50%' cy='50%' r='40%' stroke-width='2' stroke='%23CED8D9' fill='white'/><circle cx='50%' cy='50%' r='25%' fill='%2300B0BF'/></svg>");
}
.rl-psm-outside-selected-dropdown .ember-power-select-option:hover,
.rl-psm-outside-selected-dropdown .ember-power-select-option[aria-current=true]:hover {
  background-position: 10px center;
}

.rl-psm-outside-selected .ember-basic-dropdown {
  width: 80%;
  display: inline-block !important;
}
.rl-psm-outside-selected .ember-power-select-trigger {
  width: 100%;
}
.rl-psm-outside-selected .clear-selected {
  float: right;
  padding-top: 5px;
}
.rl-psm-outside-selected .ouside-text {
  max-width: 80%;
  padding: 0.3em 1em;
  color: #C5C5C5 !important;
}

.dataset-country-report {
  margin-top: 50px;
}

.dataset-country-report:first-child {
  margin-top: 0px;
}

.form-border {
  border-top: 3px solid #ccc;
}

.btn-ghost {
  text-decoration: underline !important;
  margin-right: 5px;
}

.alerts-stats-info {
  visibility: hidden;
  width: 500px;
  background-color: black;
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: -14px;
  left: 130%;
}

.alerts-stats-info::after {
  content: " ";
  position: absolute;
  top: 5%;
  right: 100%;
  margin-top: -5x;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}

.tooltip-info:hover .alerts-stats-info {
  visibility: visible;
}

.tooltip-info .fa {
  font-size: 1.5em;
}

.tooltip-info {
  position: relative;
  display: inline-block;
}

.reports-analyst-tier-change {
  position: relative;
  margin: auto;
  width: 75%;
}
.reports-analyst-tier-change .modal-nav {
  margin: 40px 0px 0px 0px;
}
.reports-analyst-tier-change .action-buttons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}

.bulk-change-analyst-tier-row {
  margin-top: 10px;
  padding: 5px 0px 5px 10px;
}
.bulk-change-analyst-tier-row .changed-alert {
  background-color: #68d2db !important;
}
.bulk-change-analyst-tier-row .multiple-alert {
  background-color: #f7df9f;
}

.bulk-change-analyst-tier-row:nth-child(odd) {
  background-color: #F2F5F5;
}

.reports-nav-menu {
  padding: 20px 0 0 20px;
}

.scrooling-content-reports-tab {
  height: calc(100vh - 177px);
  overflow-y: auto;
}

.report-category-collapsed-toggle {
  display: table;
  position: absolute;
  right: 10px;
  top: -40px;
}
.report-category-collapsed-toggle span {
  display: table-cell;
  vertical-align: middle;
  padding-right: 5px;
}

.report-grouped-children {
  position: relative;
}
.report-grouped-children .move-right, .report-grouped-children .move-left {
  position: absolute;
  height: 100%;
  width: 20px;
  top: 0;
  z-index: 999;
  opacity: 0.3;
}
.report-grouped-children .move-right i, .report-grouped-children .move-left i {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.report-grouped-children .move-left {
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.5) 0%, rgb(255, 255, 255) 100%);
  left: 0;
}
.report-grouped-children .move-right {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 0, 0, 0.5) 100%);
  right: 0;
}
.report-grouped-children .single-child {
  position: relative;
  top: 0;
  left: 0;
}

.report-categories-list {
  height: calc(100vh - 270px) !important;
  overflow-y: auto;
}
.report-categories-list .handle {
  width: 1rem;
}
.report-categories-list .name {
  width: 30%;
}
.report-categories-list .risk-assessment {
  width: 25%;
}
.report-categories-list .summary {
  width: 20%;
}
.report-categories-list .btns {
  width: 25%;
}
.report-categories-list .category-body {
  display: contents;
}
.report-categories-list .category-body .list-group {
  width: 100%;
}
.report-categories-list .headers {
  display: flex;
}
.report-categories-list .report-item-2,
.report-categories-list .report-item-3,
.report-categories-list .report-item-4 {
  padding-right: 0px;
  padding-left: 0px;
}
.report-categories-list .report-item-2 .handle {
  padding-left: 1rem;
}
.report-categories-list .report-item-3 .handle {
  padding-left: 2rem;
}
.report-categories-list .report-item-4 .handle {
  padding-left: 3rem;
}

.report-source {
  display: flex;
}
.report-source .report-source-input {
  width: calc(100% - 50px);
}
.report-source .report-source-link {
  margin-left: 10px;
  margin-top: 3px;
}

.report-source-remove {
  margin-left: 15px;
}

.report-right-sidebar-list {
  padding-right: 40px;
}
.report-right-sidebar-list h5 {
  border-bottom: 1px solid #E1E4E5;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.report-status {
  width: 10px;
  display: inline-block;
  height: 1rem;
}

.report-child-elements {
  padding: 0 2rem;
}

.report-country-list .report-topflag {
  display: inline-block;
  margin-right: 7px;
}

.report-topflag img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.report-advice {
  border-left: 3px solid #e1e4e5;
  padding: 10px 10px 10px 20px;
}
.report-advice p {
  margin-bottom: 0px !important;
}

.report-documents .document-language .document-language-input {
  display: flex;
  margin-top: 5px;
}
.report-documents .document-language .hash-sym {
  margin: 0px 10px;
}
.report-documents .document-language .btn {
  font-size: 10px;
  padding: 0.3rem 0.5rem;
  line-height: 1;
}

.analyst-reports-table .column-countries {
  max-width: 300px;
}

.test-requirement label {
  font-weight: bold;
  font-size: 1rem;
}

.report-country-lists .remove-list {
  position: relative;
  float: left;
  z-index: 0;
  font-size: 0.8rem;
  padding: 5px 10px;
  margin-right: 10px;
  margin-top: -5px;
}
.report-country-lists input {
  width: 60%;
}
.report-country-lists .inline-edit-element {
  margin-left: 35px;
}
.report-country-lists .btn-done, .report-country-lists .btn-ssa, .report-country-lists .btn-mena, .report-country-lists .btn-euro,
.report-country-lists .btn-apac, .report-country-lists .btn-amer {
  margin-top: -50px;
  position: relative;
  float: right;
  z-index: 9999;
}
.report-country-lists .btn-ssa {
  right: 395px;
}
.report-country-lists .btn-mena {
  right: 315px;
}
.report-country-lists .btn-euro {
  right: 235px;
}
.report-country-lists .btn-apac {
  right: 156px;
}
.report-country-lists .btn-amer {
  right: 75px;
}
.report-country-lists .selected-continent {
  background: #5edeea;
}

.new-subreport {
  margin-top: -50px;
  position: relative;
  float: right;
  z-index: 9999;
}

.report-passport-exemptions .report-passport-exemption-row {
  margin-bottom: 1em;
  border-bottom: 1px solid #E1E4E5;
}
.report-passport-exemptions .report-passport-exemption-row:last-child {
  margin-bottom: none;
  border: none;
}

.report-element-recurring-periods .report-element-recurring-period-row {
  margin-bottom: 1em;
  border-bottom: 1px solid #E1E4E5;
}
.report-element-recurring-periods .report-element-recurring-period-row .row {
  margin-bottom: 0px !important;
}
.report-element-recurring-periods .report-element-recurring-period-row:last-child {
  margin-bottom: none;
  border: none;
}

.report-subcategory-ml-1 {
  margin-left: 2rem !important;
}

.report-subcategory-ml-2 {
  margin-left: 4rem !important;
}

.report-subcategory-ml-3 {
  margin-left: 6rem !important;
}

.report-subcategory-ml-4 {
  margin-left: 8rem !important;
}

.report-grouped-collapsed-toggle {
  margin-top: -40px;
  float: right !important;
}

.totals-tables-col {
  display: inline-flex;
}
.totals-tables-col .totals-tables-child:not(:first-child) {
  margin-left: 5rem;
}

.report-element-voltages-frequencies .voltage-frequency-input {
  display: inline-flex;
  width: 50%;
  margin-bottom: 1em;
  border-bottom: 1px solid #E1E4E5;
}
.report-element-voltages-frequencies .voltage-frequency-input input {
  width: 5em;
}
.report-element-voltages-frequencies .voltage-frequency-input label {
  margin: 0 1em;
  font-weight: bold;
  font-size: 1rem;
}
.report-element-voltages-frequencies .voltage-frequency-input .delete-voltage-frequency-pair {
  margin-left: 5em;
}
.report-element-voltages-frequencies .voltage-frequency-input .ember-basic-dropdown {
  width: 7em;
}
.report-element-voltages-frequencies .voltage-frequency-input:last-child {
  border: none;
}

.document-vaccine-selection .row {
  padding: 0.25em 0;
  border-bottom: 1px solid #f1f1f1;
}

.visa-tool-container {
  padding: 20px 0 0 20px;
}

.visa-rule-buttons {
  position: absolute;
  right: 45px;
  top: 68px;
}

.visa-tool-exemptions .visa-tool-exemption-row {
  margin-left: 3em;
  margin-bottom: 1em;
  border-bottom: 1px solid #E1E4E5;
}
.visa-tool-exemptions .visa-tool-exemption-row:last-child {
  margin-bottom: none;
  border: none;
}

.visa-rules-table th.visa-rule-locations {
  width: 400px;
}
.visa-rules-table th.visa-rule-name {
  width: 300px;
}

.visa_rules-api-item {
  display: inline-block;
  padding: 0px 10px;
}
.visa_rules-api-item span {
  display: inline-block;
  width: 100%;
}

#visa-rule-form .highlight-date {
  background-color: #f44455 !important;
}

.visa-countries-text label {
  font-weight: 700;
}

.visa-rule-filters .reset-button {
  margin-left: 10px;
}

.visa-check-container {
  padding: 15px;
}

.visa-check-header h2 {
  margin-bottom: 15px;
}

.visa-check-header {
  margin-bottom: 15px;
}

.visa-check-header div {
  font-size: 0.8rem;
}

.visa-check-filters {
  background-color: #F8F4F5;
  border-radius: 10px;
  padding: 15px;
}

.visa-check-filters button {
  padding-left: 10px;
  padding-right: 10px;
}

.visa-check-result {
  background-color: #EDF1F4;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
}

#visa-check-reset {
  cursor: pointer;
  color: black;
  background-color: white;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 15px;
}

.visa-check-disclaimer {
  font-size: 0.55rem;
  margin-top: 15px;
}

.sso-login {
  margin-top: 1em;
}
.sso-login .login-with-sso {
  display: block;
  text-align: center;
}
.sso-login .sso-continue-line {
  display: table;
  width: 100%;
  max-width: 100%;
}
.sso-login .sso-continue-line div {
  display: table-row;
  line-height: 1.5em;
  font-size: 1em;
  white-space: nowrap;
}
.sso-login .sso-continue-line label {
  font-size: inherit;
  /* Change font-size in header */
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
  width: 1px;
  table-layout: fixed;
}
.sso-login .sso-continue-line span.spacer {
  display: table-cell;
}
.sso-login .sso-continue-line label {
  padding: 0 10px;
}
.sso-login .sso-continue-line span.spacer:after {
  display: inline-block;
  width: 100%;
  content: ".";
  font-size: 0;
  color: transparent;
  height: 1px;
  background: #ABB6B8;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.sso-login-providers div {
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin: auto;
  margin-top: 1em;
  height: 40px;
  width: 79%;
}
.sso-login-providers div.sign-in-google-button {
  background-image: url("/images/sign-in-google.svg");
}
.sso-login-providers div.sign-in-microsoft-button {
  background-image: url("/images/sign-in-microsoft.svg");
}

/* start layout */
body {
  background-color: #fff;
  color: #2C292D;
  font-family: "Open Sans";
}

b, strong {
  font-weight: bold;
}

.black,
.black .app-header {
  background-color: #2C292D;
  color: #F3F5F5;
}

.app-header ~ .app-body {
  padding-top: 50px;
  background-color: #f1f1f1;
}

.black .app-header ~ .app-body {
  border-left: 1px solid #3C393C;
}

.app-header {
  left: 1px;
}

.riskline-brand {
  height: 7em;
  margin: 2em 1em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.5em;
}

.black .riskline-brand {
  border-bottom: 1px solid #3C393C;
}

.riskline-brand a {
  width: 5em;
  display: block;
}

.rsk-logo {
  max-width: 100%;
  display: inline-block;
}

.black .rsk-logo {
  display: none;
}

.black .rsk-logo.d-none {
  display: block !important;
}

.sidebar-delimiter {
  height: 1px;
  margin: 1em 0;
  background: #F2F5F5;
}

.black .sidebar-delimiter {
  background: #3C393C;
}

.row [class*=col-] {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.row {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.black .box,
.black .white {
  background-color: transparent;
}

.label-lg {
  padding: 0.3em 0.5em;
  font-size: 1.2em;
}

/* end layout */
/* start components */
.fixedDates.v11 {
  display: none;
}

.b-b {
  border-bottom-color: #CED8D9;
}

.black .b-b {
  border-bottom-color: #3C393C;
}

@media (min-width: 1700px) {
  .d-xxl-block {
    display: block !important;
  }
}
.b-riskline {
  border-color: #1FB0C1;
}

.text-riskline {
  color: #1FB0C1 !important;
}

.btn.btn-primary {
  background-color: #486064;
  border-color: #486064;
  color: #fff !important;
}

.black .btn.btn-primary {
  background-color: #5A797E;
  border-color: #5A797E;
}

.app-header .btn.btn-primary {
  margin-left: 1rem;
  padding: 0.3em 1em 0.3em 0.5em;
}

.btn.btn-secondary {
  background: #fa8a46;
  color: #fff;
  overflow: hidden;
}

.btn {
  box-shadow: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 18px;
  /*margin-right: .5rem;*/
}

.btn:hover {
  box-shadow: none !important;
  cursor: pointer;
}

.btn-outline {
  border-color: #A7B8BA !important;
  color: #A7B8BA !important;
}

.btn.btn-outline:focus,
.btn.btn-outline:hover {
  color: #0c191c !important;
}

.black .btn.btn-outline,
.black .btn.btn-outline {
  border-color: #F3F5F5 !important;
  color: #F3F5F5 !important;
}

.btn-lnk {
  background: none;
  text-transform: capitalize;
  color: #00B0C0;
  font-weight: normal;
  font-size: 16px;
}

.black .btn-lnk {
  color: #5A797E;
}

.btn-default {
  background: #00B0C0;
  border: none;
  color: #fff !important;
  text-transform: capitalize;
}

.black .btn-default {
  background: #5A797E;
}

.btn-third {
  background: #A7B8BA;
  color: #fff !important;
}

.black .btn-third {
  background: #2C292D;
}

.btn-third:hover {
  background: #486064;
  color: #fff !important;
}

.black .btn-third:hover {
  background: #5A797E;
}

.actions-container {
  background: #F3F5F5;
  position: relative;
  z-index: 10;
}

.black .actions-container {
  background: #3C393C;
}

.actions-container .column-search {
  padding: 1.2rem;
}

.column-search .form-control,
.modal .ember-power-select-search .ember-power-select-search-input {
  padding: 0.4rem 1rem !important;
  background: #fff;
  color: #A7B8BA;
  font-weight: 200;
  text-transform: capitalize;
}

.column-search .input-group-addon {
  padding: 0.4rem 0.6rem !important;
}

.black .actions-container .column-search .form-control {
  background: #F3F5F5;
  color: #5A797E;
}

.action-slice {
  padding: 0 1rem;
  line-height: 3rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #CED8D9;
}

.black .action-slice {
  border-bottom: 1px solid #514d51;
}

.avatar .img-circle {
  border: 2px solid #849299;
}

.btn-rsk-sec {
  background: #486064;
  color: #fff !important;
  padding: 0;
  position: relative;
}

.btn-icn {
  background: #6C7F83;
  padding: 0.4rem 0.7rem;
  display: inline-block;
}

.btn-name {
  display: inline-block;
  padding: 0.4rem 1rem;
}

.black .btn-rsk-sec {
  background: #5A797E;
}

.black .btn-icn {
  background: #7B9498;
}

.rsk-list-item {
  border-bottom: 1px solid #CED8D9;
  padding: 1em;
  display: block;
}

.rsk-list-item.simple {
  padding: 0.9em;
  margin: 0;
}

.black .column-box {
  border: 1px solid #3C393C;
}

.rsk-list-item.active,
.rsk-list-item:hover {
  background: #F3F5F5;
}

.black .rsk-list-item.active,
.black .rsk-list-item:hover {
  background: #5A797E;
}

.black .rsk-list-item {
  border-bottom: 1px solid #3C393C;
}

.column-box .nav-item {
  flex: 1 auto;
  text-align: center;
}

.column-box .nav-container {
  border-top: 1px solid #E1E4E5;
  border-bottom: 1px solid #E1E4E5;
}
.column-box .nav-active-bg .nav-item {
  border: none;
}
.column-box .nav-active-bg.nav-period {
  margin-top: -1px;
}
.column-box .nav-active-bg .nav > li.active > a {
  color: white !important;
  background-color: #00B0BF !important;
}
.column-box .nav-link {
  padding: 0.5rem 0;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid white;
  border-right: none;
  background: #E1E4E5;
}

a.btn-rsk-blue,
button.btn-rsk-blue {
  background: #00B0BF;
  color: white !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: bold;
  border: none;
}
a.btn-rsk-blue.margin-right,
button.btn-rsk-blue.margin-right {
  margin-right: 10px;
}

a.btn-rsk-blue-no-hover-effect:hover {
  color: white !important;
}

.m-b-md {
  margin-bottom: 40px !important;
}

.md-btn.btn-small {
  height: 1.5rem;
  width: 1.5rem;
  line-height: 1.5rem;
}

.table thead th {
  border-bottom: 1px solid #CED8D9;
  border-top: none;
}

.black .table thead th {
  border-bottom: 1px solid #3C393C;
}

.table td.active,
.table th.active,
.table tr.active,
.table-hover tr:hover {
  background-color: #F3F5F5 !important;
}

.black .table td.active,
.black .table th.active,
.black .table tr.active,
.black .table-hover tr:hover {
  background-color: #3C393C !important;
}

td.btns {
  white-space: nowrap !important;
}

.btn-sm {
  padding: 0.3rem 1rem;
}

.btn-sm-2 {
  padding: 0.3rem 0.6rem;
}

.txt-emphasize-color {
  color: #486064;
}

.black .txt-emphasize-color {
  color: #5A797E;
}

.brd-top {
  border-top: 1px solid #CED8D9;
}

.black .brd-top {
  border-top: 1px solid #3C393C;
}

.r-panel-sngl {
  margin-left: 0.9em;
}

.upcoming-toggle {
  padding: 0.5em;
}

.upcoming-toggle .rsk-toggle {
  float: left;
}

.rsk-toggle {
  width: 3em;
  height: 1.5em;
  border: 1px solid #CED8D9;
  background: white;
  border-radius: 12px;
  padding: 0.2em;
  display: inline-block;
  margin-right: 0.5em;
}

.rsk-toggle .thumb {
  background: #486064;
  width: 1em;
  height: 1em;
  border-radius: 100%;
}

.rsk-toggle.on .thumb {
  float: right;
}

.black .rsk-toggle {
  border: 1px solid #CED8D9;
  background: #486064;
}

.black .rsk-toggle .thumb {
  background: #486064;
}

.black .rsk-toggle.on .thumb,
.rsk-toggle.on .thumb {
  background: #00B0BF;
}

.no-divider .list-group-item:before {
  display: none !important;
}

/* end components */
/* start typography */
body {
  color: #2C292D;
  font-weight: 300;
}

.h1, h1 {
  font-size: 1.3rem;
}

h1.modal-title {
  font-size: 16px;
}

#pageTitle {
  font-size: 19px;
  font-weight: bold;
  color: #486064;
}

.h2, h2 {
  font-size: 1.2rem;
}

.h3,
h3 {
  font-size: 1.1rem;
}

.h4,
h4 {
  font-size: 1.03rem;
}

.h5,
h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.1em;
}

p {
  font-size: 14px;
  margin-bottom: 10px;
}
p a,
p a:focus,
p a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

#pageTitle,
.chapter-trim,
.group-name,
.h1,
.h2,
.h3,
.h4,
.h5,
.left.navside,
.modal-heading,
.reg-country,
.rsk-table tbody th,
.sidebar-box .list-group-item,
h1,
h2,
h3,
h4,
h5 {
  /* font-family: 'Frank Ruhl Libre', serif; */
}

.chapter-trim,
.h2,
.modal-heading,
.sidebar-box .list-group-item,
h2 {
  font-weight: bold;
}

.white-modal-heading {
  color: #fff;
}

.modal-heading span {
  /* font-family: 'Source Sans Pro', sans-serif; */
}

#pageTitle,
.chapter-trim,
.h1,
.h2,
.h4,
.left.navside,
.reg-country,
h1,
h2,
h4 {
  color: #486064;
}

.black #pageTitle,
.black .chapter-trim,
.black .h1,
.black .h2,
.black .left.navside,
.black .reg-country,
.black h1,
.black h2,
.black h4 {
  color: #F3F5F5;
}

/* end typography */
/* start general */
.app-footer:not(.hide) ~ .app-body {
  padding-bottom: 0;
}

.padding {
  padding: 0 15px 15px;
}

.navbar {
  padding: 0 15px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  background-color: #f1f1f1;
}

.black .navbar {
  border-bottom: 1px solid #3C393C;
  background: #2C292D;
}

.logo {
  position: relative;
  display: block;
  height: 5rem;
  max-width: 50%;
  margin: 0 auto;
}

.logo-login-dark,
.logo-login-light {
  width: 100%;
}

.black .logo-login-light {
  display: none;
}

.black .logo-login-dark {
  display: block !important;
}

.w-login {
  width: 314px;
}
.w-login .modal-content {
  background: white !important;
  color: #486064 !important;
}
.w-login .modal-content .logo {
  max-width: 200px;
}
.w-login .modal-content label {
  font-size: 10px !important;
  color: #ABB6B8 !important;
  margin-bottom: 5px !important;
}
.w-login .modal-content .forgot {
  margin-top: 10px;
}
.w-login .modal-content .forgot a {
  font: 11px/15px Open Sans;
  letter-spacing: 0;
  color: #1BB3BF;
}
.w-login .modal-content h3 {
  font: Bold 16px/22px Open Sans;
  letter-spacing: 0;
  color: #486064;
  opacity: 1;
}
.w-login .modal-content input {
  border: 1px solid #E1E4E5;
}
.w-login .modal-content .btn-default {
  width: 100%;
}

.left.navside,
.left.navside .nav-item {
  opacity: 1 !important;
  font-size: 13px;
  font-weight: 600 !important;
  display: inline-block;
}
.left.navside span.nav-text,
.left.navside .nav-item span.nav-text {
  font-weight: 600 !important;
  opacity: 1 !important;
}

a.togglesidebar {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  background-image: url("/images/svg/close.svg");
  background-repeat: no-repeat;
}

.collapsed-sidebar a.togglesidebar {
  background-image: url("/images/svg/open.svg");
  background-color: #E1E4E5;
  border-radius: 10px;
  background-position: 8px 5px;
}

.black .left.navside,
.black .left.navside .nav-text {
  color: #F3F5F5;
}

.nav-header .text-muted {
  font-size: 1.2em;
  font-weight: bold;
  opacity: 1 !important;
}

.navside .nav {
  padding: 0;
}

.navside .nav li.nav-header {
  margin-left: 20px;
  padding: 0;
  line-height: 30px;
}

.collapsed-sidebar .navside .nav li a {
  padding: 10px;
}

.category-with-icon {
  background-repeat: no-repeat;
  background-position: left top;
  padding-left: 30px;
  height: 26px;
  display: inline-block;
}
.category-with-icon.category-1 {
  background-image: url("/images/svg/icon_alert_Political.svg");
}
.category-with-icon.category-2 {
  background-image: url("/images/svg/icon_alert_ConflictTerrorism.svg");
}
.category-with-icon.category-3 {
  background-image: url("/images/svg/icon_alert_Unrest.svg");
}
.category-with-icon.category-4 {
  background-image: url("/images/svg/icon_alert_Crime.svg");
}
.category-with-icon.category-5 {
  background-image: url("/images/svg/icon_alert_Natural.svg");
}
.category-with-icon.category-6 {
  background-image: url("/images/svg/icon_alert_Medical.svg");
}
.category-with-icon.category-7 {
  background-image: url("/images/svg/icon_alert_TravelSafetyDisruption.svg");
}

.navside .nav li a {
  padding-left: 50px;
  line-height: 30px;
  background-position: 20px center;
  background-repeat: no-repeat;
}
.navside .nav li a:hover {
  background-color: #00B0C0 !important;
  color: white !important;
}
.navside .nav li a.dashboard {
  background-image: url("/images/svg/icon_dashboard-1.svg");
}
.navside .nav li a.dashboard:hover {
  background-image: url("/images/svg/icon_dashboard_white.svg");
}
.navside .nav li a.country {
  background-image: url("/images/svg/icon_countries.svg");
}
.navside .nav li a.country:hover {
  background-image: url("/images/svg/icon_countries_white.svg");
}
.navside .nav li a.daily {
  background-image: url("/images/svg/icon_daily_brief.svg");
}
.navside .nav li a.daily:hover {
  background-image: url("/images/svg/icon_daily_brief_white.svg");
}
.navside .nav li a.riskmap {
  background-image: url("/images/svg/icon_riskmap.svg");
}
.navside .nav li a.riskmap:hover {
  background-image: url("/images/svg/icon_riskmap_white.svg");
}
.navside .nav li a.navi-incidents {
  background-image: url("/images/svg/icon_incidents.svg");
  background-position: 18px 9px;
}
.navside .nav li a.navi-incidents:hover {
  background-image: url("/images/svg/icon_incidents_white.svg");
}
.navside .nav li a.settings {
  background-image: url("/images/svg/icon_settings.svg");
}
.navside .nav li a.settings:hover {
  background-image: url("/images/svg/icon_settings_white.svg");
}
.navside .nav li a.traveler {
  background-image: url("/images/svg/icon_traveller.svg");
}
.navside .nav li a.traveler:hover {
  background-image: url("/images/svg/icon_traveller_white.svg");
}
.navside .nav li a.visa-check {
  background-image: url("/images/svg/icon_visa.svg");
}
.navside .nav li a.visa-check:hover {
  background-image: url("/images/svg/icon_visa_white.svg");
}
.navside .nav li a.company {
  background-image: url("/images/svg/icon_my_company.svg");
}
.navside .nav li a.company:hover {
  background-image: url("/images/svg/icon_my_company_white.svg");
}
.navside .nav li a.users {
  background-image: url("/images/svg/icon_user.svg");
}
.navside .nav li a.users:hover {
  background-image: url("/images/svg/icon_user_white.svg");
}
.navside .nav li a.alerts {
  background-image: url("/images/svg/icon_alerts.svg");
}
.navside .nav li a.alerts:hover {
  background-image: url("/images/svg/icon_alerts_white.svg");
}
.navside .nav li a.pta {
  background-image: url("/images/svg/icon_pta-1.svg");
}
.navside .nav li a.pta:hover {
  background-image: url("/images/svg/icon_pta.svg");
}
.navside .nav li a.support {
  background-image: url("/images/svg/icon_emergency-1.svg");
}
.navside .nav li a.support:hover {
  background-image: url("/images/svg/icon_emergency.svg");
}
.navside .nav li a.advisories {
  background-image: url("/images/svg/icon_advisories.svg");
}
.navside .nav li a.advisories:hover {
  background-image: url("/images/svg/icon_advisories_white.svg");
}
.navside .nav li a.covid {
  background-image: url("/images/svg/icon_covid19_green.svg");
}
.navside .nav li a.covid:hover {
  background-image: url("/images/svg/icon_covid19_white.svg");
}
.navside .nav li a.special {
  background-image: url("/images/svg/icon_special_reports.svg");
}
.navside .nav li a.special:hover {
  background-image: url("/images/svg/icon_special_reports_white.svg");
}
.navside .nav li a.data {
  background-image: url("/images/svg/icon_data.svg");
}
.navside .nav li a.data:hover {
  background-image: url("/images/svg/icon_data_white.svg");
}
.navside .nav li a.logs {
  background-image: url("/images/svg/icon_logs.svg");
}
.navside .nav li a.logs:hover {
  background-image: url("/images/svg/icon_logs_white.svg");
}
.navside .nav li a.a-support {
  background-image: url("/images/svg/icon_support.svg");
}
.navside .nav li a.a-support:hover {
  background-image: url("/images/svg/icon_support_white.svg");
}
.navside .nav li a.chat {
  background-image: url("/images/svg/icon_chat.svg");
}
.navside .nav li a.chat:hover {
  background-image: url("/images/svg/icon_chat_white.svg");
}
.navside .nav li a.i-risk-levels {
  background-image: url("/images/svg/icon_risk_levels.svg");
}
.navside .nav li a.i-risk-levels:hover {
  background-image: url("/images/svg/icon_risk_levels_white.svg");
}

.user-menu-dropdown {
  margin: 0;
  padding: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1921568627);
  width: 195px;
}
.user-menu-dropdown a.dropdown-item {
  font-size: 12px;
  font-weight: 600;
  color: #363636;
  padding: 10px 0 10px 35px;
  background-position: 13px center;
  background-repeat: no-repeat;
}
.user-menu-dropdown a.dropdown-item.daily {
  background-image: url("/images/svg/user_setting.svg");
}
.user-menu-dropdown a.dropdown-item.settings {
  background-image: url("/images/svg/user_setting.svg");
}
.user-menu-dropdown a.dropdown-item.profile {
  background-image: url("/images/svg/user_profile.svg");
}
.user-menu-dropdown a.dropdown-item.support {
  background-image: url("/images/svg/user_support.svg");
}
.user-menu-dropdown a.dropdown-item.logout {
  background-image: url("/images/svg/user_logout.svg");
}
.user-menu-dropdown a.dropdown-item.alerts {
  background-image: url("/images/svg/icon_alert.svg");
}
.user-menu-dropdown a.dropdown-item.switch-role {
  background-image: url("/images/svg/icon_eye.svg");
  background-size: 16px;
}
.user-menu-dropdown a.dropdown-item:hover {
  color: #00B0BF;
}
.user-menu-dropdown .dropdown-divider {
  height: 1px;
  margin: 0;
  overflow: hidden;
  background-color: #E1E4E5;
}

.nav-top .fa {
  border-radius: 100%;
  background: white;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  margin-right: 0px;
  text-align: center;
}

.no-padding .close {
  position: absolute;
  top: 11px;
  right: 15px;
  color: #CED8D9;
}

.collapsed-sidebar .navside .nav-text,
.collapsed-sidebar .navside .text-muted {
  display: none;
}

.collapsed-sidebar .app-aside,
.collapsed-sidebar .app-aside,
.collapsed-sidebar .app-aside .scroll {
  width: 4.25em !important;
  overflow: visible;
}

.collapsed-sidebar .app-aside * {
  overflow: visible !important;
}

.collapsed-sidebar .app-aside ~ .app-content {
  margin-left: 4.25em !important;
}

.collapsed-sidebar .riskline-brand {
  height: 1em;
}

.nav a {
  position: relative;
}

.collapsed-sidebar .nav a:hover .nav-text {
  position: absolute;
  background: #00B0C0 !important;
  display: block !important;
  padding: 17px 10px 17px 0;
  height: 100%;
  white-space: nowrap;
  left: 4.25em;
  text-align: center;
  z-index: 999999999;
  color: white;
  top: 0px;
}

/* end general */
/* start forms */
.form-group {
  margin-bottom: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 1em;
}

label {
  color: #486064;
}

.black label {
  color: #F3F5F5;
}

.filters .ember-power-select-options[role=listbox] {
  max-height: 100%;
}

.ember-power-select-options {
  background: #fff;
}

.ember-power-select-trigger,
.flatpickr-input[readonly] {
  padding: 0.5em 1em;
}

input::placeholder {
  color: #363636 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  font-family: "Open Sans", sans-serif !important;
}

.ember-basic-dropdown-content-wormhole-origin,
.ember-power-select-placeholder,
.ember-power-select-trigger {
  font-size: 13px;
  color: #363636;
  font-weight: 600;
}

.black .ember-basic-dropdown-content-wormhole-origin,
.black .ember-power-select-placeholder,
.black .ember-power-select-trigger {
  color: #F3F5F5;
}

.black .ember-power-select-dropdown,
.black .ember-power-select-trigger,
.black .ember-power-select-trigger--active,
.black .ember-power-select-trigger:focus {
  border: none;
}

.black .flatpickr-calendar {
  background-color: #2C292D;
  color: #F3F5F5;
}

.black .flatpickr-day.inRange,
.black .flatpickr-day.nextMonthDay.inRange,
.black .flatpickr-day.nextMonthDay.today.inRange,
.black .flatpickr-day.nextMonthDay:focus,
.black .flatpickr-day.nextMonthDay:hover,
.black .flatpickr-day.prevMonthDay.inRange,
.black .flatpickr-day.prevMonthDay.today.inRange,
.black .flatpickr-day.prevMonthDay:focus,
.black .flatpickr-day.prevMonthDay:hover,
.black .flatpickr-day.today.inRange,
.black .flatpickr-day:focus,
.black .flatpickr-day:hover {
  background: #1FB0C1 !important;
  border-color: #1FB0C1;
  color: #fff !important;
}

.black .flatpickr-day.today {
  border-color: #1FB0C1;
}

.black .flatpickr-calendar {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.black .flatpickr-day,
.black .flatpickr-months .flatpickr-month,
.black .flatpickr-months .flatpickr-next-month svg,
.black .flatpickr-months .flatpickr-prev-month svg,
.black span.flatpickr-weekday {
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}

.black .prevMonthDay {
  color: rgba(255, 255, 255, 0.5);
}

.black .flatpickr-calendar.arrowTop:after,
.black .flatpickr-calendar.arrowTop:before {
  border-bottom-color: #2C292D;
}

.black .pell-content {
  background: transparent;
  background-color: rgba(255, 255, 255, 0.1);
}
.black .pell-content a {
  color: #5A797E;
}

.flatpickr-months .flatpickr-month {
  height: 45px;
  padding: 0.5em 0;
}

.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
  top: 7px;
}

.Shownotices {
  font-size: 10px;
}

.my-users-container {
  padding: 50px 50px 0px 50px;
}

.analyst-container {
  padding: 50px 0 0 50px;
}

.multi-select .action-row {
  min-height: 35px;
}
.multi-select .multi-select-btn {
  margin-top: 14px;
  display: inline-block;
}
.multi-select .list-group-item {
  border: none;
  padding: 0.3em 0.5em;
  display: block;
  background: none;
}

.ms-btn {
  margin: 1em 0;
  padding: 0.5em 1em;
  font-size: 1em;
}

.scrooling-content-select .ember-power-select-options {
  overflow-y: visible;
  max-height: 100%;
}

.form-control,
.form-control[readonly] {
  padding: 0.5em !important;
  background-color: #fff;
  color: #363636;
  font-weight: bold;
  border-radius: 4px;
  font-size: 13px;
}

.modal .ember-basic-dropdown-content,
.modal .ember-power-select-options,
.modal .ember-power-select-trigger,
.modal .form-control,
.ms-list,
.form-group .pell-content {
  background: white;
  border: 1px solid #CED8D9;
  font-size: 14px;
  color: #363636;
}

.ember-power-select-options {
  margin-top: 0 !important;
}

.modal .ember-power-select-dropdown,
.ms-list {
  border: 1px solid #CED8D9 !important;
  margin-top: 10px;
  border-radius: 5px;
}

.black .modal .ember-basic-dropdown-content,
.black .modal .ember-power-select-options,
.black .modal .ember-power-select-trigger,
.black .ms-list {
  background: #2C292D;
}

.black .modal .ember-power-select-dropdown,
.black .ms-list {
  border: 1px solid #4A4A4A !important;
}

.black .form-control,
.black .form-control[readonly] {
  background-color: #2C292D;
  color: #F3F5F5;
}

.search-group {
  position: relative;
}

.search-group .form-control {
  padding-right: 6em !important;
}

.search-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

.input-group-addon {
  background-color: #486064;
  padding: 0.5em 0.8em;
  color: #fff;
}

.black .input-group-addon {
  background-color: #5A797E;
  color: #fff;
}

.form-group .pell-actionbar {
  border: 1px solid #F3F5F5;
}

.black .form-group .pell-actionbar {
  border: 1px solid #000;
}

.black .form-group .pell-content {
  background: #2C292D;
}

.file-upload {
  cursor: pointer;
}

.confirm-box {
  border: 1px solid #00B0C0;
  background: white;
  text-align: center;
  border-radius: 4px;
  padding: 15px;
}
.confirm-box p.bold {
  font-weight: bold;
}
.confirm-box .confirm-actions {
  margin-top: 20px;
}

.ember-text-area,
.ember-text-field {
  font-weight: 600;
  font-size: 13px;
  font-family: "open sans";
}

/* end forms */
/* start filters */
.filters-riskline {
  background: white;
  padding: 15px;
}
.filters-riskline .ember-power-select-trigger {
  height: 34px;
  line-height: 34px;
  font-size: 13px;
  color: #363636;
  overflow: hidden;
  padding-top: 0;
}

.ember-power-select-placeholder {
  color: #363636;
  padding: 0;
  margin-left: 0px;
}

.filters-riskline.v11.gray {
  background: #F2F5F5;
  padding: 30px 20px;
  position: relative;
}
.filters-riskline.v11.gray input {
  border: 1px solid #CED8D9;
  height: 34px;
  line-height: 34px;
}
.filters-riskline.v11.gray .btn-lkn {
  font-size: 12px;
  color: #486064;
  font-weight: 600;
}
.filters-riskline.v11.gray .v11.btn-primary {
  background: #00B0BF;
  color: white;
  border: none;
}
.filters-riskline.v11.gray .v11.reset {
  font-size: 12px;
  color: #486064;
  font-weight: 600;
  position: absolute;
  top: 30px;
  right: 20px;
}
.filters-riskline.v11.gray .total-objects {
  font-size: 12px;
}

.black .filters-riskline {
  background: #3C393C;
}

.filters-alerts .filters {
  margin-top: 0.5em;
}

.btn-lkn {
  font-weight: bold;
}

.ember-power-select-dropdown {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1921568627);
  min-width: 300px;
}

.country.ember-power-select-dropdown {
  min-width: inherit;
}

.ember-power-select-options {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1921568627);
  border: 4px solid white;
}

.ember-power-select-option,
.ember-power-select-option[aria-current=true] {
  color: #486064;
  font-size: 13px;
  font-weight: bold;
  padding-left: 30px !important;
  background-position: 6px center;
  background-repeat: no-repeat;
  background-image: url("/images/multi-power-b86b08d2ab75bda2dee6ff4212b83ab9.png");
}
.ember-power-select-option[aria-selected=true],
.ember-power-select-option[aria-current=true][aria-selected=true] {
  background-image: url("/images/multi-power-selected-082498b9af9a6fe7fa0ea3e4e0bf6b86.png");
  background-color: white;
}
.ember-power-select-option:hover,
.ember-power-select-option[aria-current=true]:hover {
  background-color: #F2F5F5;
  background-position: 6px center;
  background-repeat: no-repeat;
}

.black .ember-power-select-option[aria-current=true],
.black .ember-power-select-option:hover {
  background: #5A797E;
}

.ember-power-select-options .ember-power-select-option {
  padding: 0.3em 1em;
}

.ember-power-select-options {
  margin-top: 0.5em;
  border-radius: 4px;
}

.ember-power-select-dropdown {
  background: transparent;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below,
.ember-power-select-dropdown.ember-basic-dropdown-content--in-place,
.ember-power-select-trigger,
.ember-power-select-trigger--active,
.ember-power-select-trigger:focus {
  border: 1px solid #CED8D9;
  padding-top: 0;
  line-height: 34px;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-radius: 4px;
}

/* end filters */
/* start theme swithcer */
.user-menu {
  margin-right: 10px;
}
.user-menu .avatar img {
  border: 2px solid white;
}

.user-menu .dropdown-menu {
  padding-bottom: 0;
}

#theme-switcher {
  padding: 0.5rem 0;
  background: #f2f2f2;
}

.black #theme-switcher {
  background: #444;
}

#theme-switcher,
.theme-switcher {
  text-align: center;
}

.theme-txt {
  padding-bottom: 5px;
  display: inline-block;
}

.btn:not([disabled]).active,
.btn:not([disabled]):focus,
.btn:not([disabled]):hover {
  box-shadow: none;
}

.theme-switcher .checkbox-switcher,
.theme-switcher .toggle-handle {
  opacity: 0;
  display: none;
}

.toggle-group {
  border-radius: 5px;
  overflow: hidden;
  transform: scale(0.9);
}

.theme-switcher .toggle {
  padding: 0;
}

.theme-switcher .btn {
  margin: 0;
  border: none;
  border-radius: 0;
  color: #fff;
}

.theme-switcher > .btn,
.theme-switcher > .btn:hover {
  box-shadow: none !important;
}

.theme-switcher .btn + .btn {
  margin-left: -4px;
}

.theme-switcher .toggle-group .btn {
  background: #666;
  color: #ccc;
}

.theme-switcher .toggle-group .btn.active {
  background-color: #1FB0C1;
  color: #fff;
}

.dropdown-divider.last {
  margin-bottom: 0;
}

/* end theme swithcer */
.reg-country {
  display: flex;
  padding: 0.5em;
  font-weight: bold;
}

.reg-country-name {
  display: inline-block;
  line-height: 2em;
}

.pagination {
  background: #F3F5F5;
  border-radius: 4px;
}

.black .pagination {
  background: #3C393C;
}

div.pagination-links {
  margin: 1.25rem 0;
}

.pagination > li > * {
  color: #A7B8BA !important;
  width: 2.5rem;
  text-align: center;
  font-weight: bold;
  line-height: 2.4rem;
  padding: 0;
  text-transform: uppercase;
  border: none !important;
  border-right: 1px solid #fff !important;
  opacity: 1;
}

.black .pagination > li > * {
  border: none;
  border-right: 1px solid #2C292D !important;
}

.pager .page-item.active,
.pager > .active > a,
.pager > .active > span,
.pagination .page-item.active,
.pagination > .active > a,
.pagination > .active > span {
  background: #A7B8BA !important;
  border-color: #A7B8BA !important;
}

.black .pagination > li > a {
  color: #F3F5F5 !important;
  border-right: 1px solid #2C292D !important;
}

.black .pager .page-item.active,
.black .pager > .active > a,
.black .pager > .active > span,
.black .pagination .page-item.active,
.black .pagination > .active > a,
.black .pagination > .active > span {
  background: #5A797E !important;
  border-color: #5A797E !important;
}

.pagination > li > .active {
  color: #fff !important;
  background: #A7B8BA !important;
}

.black .pagination > li > .active {
  color: #fff !important;
  background: #4A4A4A !important;
}

.flag-list {
  margin-right: 17px;
  border-radius: 100%;
  overflow: hidden;
  width: 23px;
  height: 23px;
  display: inline-block;
}

.flag-list img.emoji {
  height: 23px;
  width: 23px;
}

.disabled .region-letter-lkn {
  display: block;
  border: 1px solid #ddd;
  opacity: 0.5;
}

.letter-popover {
  position: absolute;
  top: 39px;
  z-index: 3;
  background: #A7B8BA;
  text-transform: uppercase;
  font-weight: bold;
}

.letter-popover .country-list-item {
  color: #fff !important;
  line-height: 1.5em;
  text-align: left;
}

.black .dropdown-menu,
.black .letter-popover {
  background-color: #4A4A4A;
}

.region-letter {
  position: relative;
}

.black .reg-country:hover {
  background-color: #5A797E !important;
}

.country-list-item {
  padding: 0.5em 1em;
  display: block;
}

.country-list-item:hover {
  color: #486064 !important;
}

.black .country-list-item:hover {
  color: #5A797E !important;
}

.letter-columns-1 .letter-popover {
  width: 170px;
}

.letter-columns-2 .letter-popover {
  width: 342px;
}

.letter-columns-3 .letter-popover {
  width: 512px;
}

.letter-columns-1 .letter-popover {
  margin-left: calc(50% - 85px);
}

.letter-columns-2 .letter-popover {
  margin-left: calc(50% - 171px);
}

.letter-columns-3 .letter-popover {
  margin-left: calc(50% - 256px);
}

.shift-left .letter-popover {
  right: -1px;
  margin: 0;
}

.shift-right .letter-popover {
  left: -1px;
  margin: 0;
}

.popover-column {
  float: left;
  width: 170px;
  padding: 0.5em 0;
}

.nav-tabs .nav-item {
  margin-right: 0.5em;
  text-transform: uppercase;
  font-weight: bold;
}

.nav-tabs .nav-item.archive {
  padding-left: 10px;
  position: relative;
}
.nav-tabs .nav-item.archive::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  height: 20px;
  background: #d0d6d7;
  width: 2px;
  border-radius: 1px;
}

.nav-active-bg .nav-link {
  color: #486064 !important;
}

.black .nav-active-bg .nav-link {
  color: #F3F5F5 !important;
}

.modal-content .nav-active-bg .nav > li.active > a,
.modal-content .nav-active-bg .nav-link.active,
.modal-content .nav-tabs .nav-link.active,
.modal-content .nav-tabs .nav-link.active:focus,
.modal-content .nav-tabs .nav-link.active:hover,
.modal-content .nav-tabs .nav-link:focus,
.modal-content .nav-tabs .nav-link:hover {
  background: #F2F5F5 !important;
  color: #2C292D !important;
  border: #E1E4E5 1px solid;
  height: 100%;
}

.black .nav-active-bg .nav > li.active > a,
.black .nav-active-bg .nav-link.active,
.black .nav-tabs .nav-link.active,
.black .nav-tabs .nav-link.active:focus,
.black .nav-tabs .nav-link.active:hover,
.black .nav-tabs .nav-link:focus,
.black .nav-tabs .nav-link:hover {
  background: #486064 !important;
  color: #fff !important;
}

.country-list {
  padding: 30px 0;
}

.box-header {
  color: #fff;
}

.box-header .media-body {
  max-width: 82%;
}

.box-header h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 5px;
}

.flag-ds {
  align-self: flex-start;
}

.tab-content {
  padding-top: 50px;
  margin-left: 15px;
  margin-right: 15px;
}

.my-company.tab-content {
  padding: 50px 0 0 50px;
}

.my-country-right {
  margin-top: -30px;
}
.my-country-right .box {
  padding: 30px 0;
  border-bottom: 1px solid #E1E4E5;
  margin-left: 30px;
  margin-bottom: 0px;
}
.my-country-right .box .box-body, .my-country-right .box .box-footer {
  padding: 0;
}

.app-header .btn.btn-default,
.app-header .btn.btn-secondary,
.app-header .btn.white {
  border-color: #CED8D9;
  color: #486064;
  padding: 0.5em 1em;
}

.open > .dropdown-menu {
  opacity: 1;
  font-size: 1em;
  border-color: #CED8D9;
  color: #486064;
  text-transform: uppercase;
}

.black .app-header .btn.btn-default,
.black .app-header .btn.btn-secondary,
.black .app-header .btn.white {
  border-color: #3C393C;
  color: #F3F5F5;
}

.black .open > .dropdown-menu {
  border-color: #3C393C;
  color: #F3F5F5;
  background-color: #2C292D;
}

.list-group-item {
  padding: 0.6em 0.8em;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  background: #fff;
  font-weight: bold;
}

.black .dropdown-item:focus,
.black .dropdown-item:hover,
.black .list-group-item.active,
.black .list-group-item.active:focus,
.black .list-group-item.active:hover {
  background-color: rgb(12, 25, 28);
  background: #0c191c;
}

.dropdown-menu-scale {
  display: none;
  pointer-events: auto;
}

.country-tabs {
  margin-left: 15px;
  margin-right: 15px;
}

.nav-tabs a.nav-link {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: bold;
}
.nav-tabs a.nav-link.active {
  background: #F2F5F5;
}

.rsk-icon {
  margin-right: 7px;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-bottom: -2px;
}
.rsk-icon.rsk {
  background: url("/images/svg/icon_riskline.svg") no-repeat center center;
}
.rsk-icon.report {
  background: url("/images/svg/icon_report.svg") no-repeat center center;
}
.rsk-icon.map {
  background: url("/images/svg/icon_riskmap.svg") no-repeat center center;
}
.rsk-icon.alerts {
  background: url("/images/svg/icon_alert.svg") no-repeat center center;
}
.rsk-icon.advisor {
  width: 19px;
  background: url("/images/svg/icon_avisories.svg") no-repeat center center;
}
.rsk-icon.city {
  width: 25px;
  background: url("/images/svg/icon_cities.svg") no-repeat center center;
}
.rsk-icon.traveler {
  background: url("/images/traveler-46f56196a1efb8e813bc5ae76910c961.png") no-repeat center 1px;
  height: 24px;
  padding: 0;
}
.rsk-icon.comment {
  background: url("/images/comment-65f818239d42a62c2c1f06a29edb91e2.png") no-repeat center center;
}
.rsk-icon.details {
  width: 20px;
  background: url("/images/details-b4f1cb48dd2795a31db34f9bde92e228.png") no-repeat center center;
}
.rsk-icon.question {
  background: url("/images/question-94efb324733b93567c96e8c441f51a3c.png") no-repeat center center;
}
.rsk-icon.location {
  background: url("/images/location-38688d0445fc5e15a4f2ab66cb7a3647.png") no-repeat center center;
}
.rsk-icon.profile {
  background: url("/images/profile-4eda6ce75d2ea7a9b205e9f3b6010d0f.png") no-repeat center center;
}
.rsk-icon.listpoint {
  background: url("/images/listpoint-30dda04579b3e3c0956a4d30d130490c.png") no-repeat center center;
}
.rsk-icon.delete {
  background: url("/images/delete-9716585ea0b4baa25606e2fe7a066743.png") no-repeat center center;
  margin: 0;
}

.tab-content h4.sidebar {
  font-size: 15px;
  font-weight: 600;
  color: #2C292D;
  border-bottom: #E1E4E5 2px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 0;
}
.tab-content h2 {
  font-size: 22px;
  font-weight: bold;
  color: #2C292D;
  margin-bottom: 20px;
}
.tab-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #2C292D;
  border: none;
  padding: 0;
}
.tab-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2C292D;
  border: none;
  padding: 0;
  margin-top: 30px;
}
.tab-content .risk-level-bullet {
  font-size: 14px;
  height: 28px;
  width: 28px;
  line-height: 21px;
  text-align: center;
  font-weight: bold;
  color: white;
}

.filters-riskline.country.v11 {
  padding: 15px 0 !important;
}

.country-map-range {
  padding-left: 120px;
  padding-right: 120px;
  max-width: 600px;
  position: relative;
  margin-left: auto;
}
.country-map-range .fixedDates {
  display: block;
}
.country-map-range .noUi-tooltip {
  display: none;
}
.country-map-range .noUi-connects {
  height: 2px;
  background: #CED8D9;
}
.country-map-range .noUi-handle {
  background: #00B0BF !important;
}
.country-map-range .fixedDates.v11.from {
  color: #486064;
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 13px;
  font-weight: 600;
}
.country-map-range .fixedDates.v11.to {
  color: #486064;
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 13px;
  font-weight: 600;
}

.country-alerts,
.nlc-advisories,
.v11-country-map {
  margin-top: -50px;
}
.country-alerts h2,
.nlc-advisories h2,
.v11-country-map h2 {
  font-size: 18px;
  font-weight: 600px;
  color: #2C292D;
  margin-top: 30px;
  margin-bottom: 20px;
}
.country-alerts .dragSortList,
.nlc-advisories .dragSortList,
.v11-country-map .dragSortList {
  overflow: inherit;
}

.md-btn.md-fab {
  background: #F2F2F2;
  color: #486064 !important;
  box-shadow: none;
  width: 30px;
  height: 30px;
  margin-left: 10px !important;
  line-height: 30px;
  font-size: 18px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #707070;
  border-radius: 0.25rem;
}

.md-btn.md-fab:not([disabled]):focus,
.md-btn.md-fab:not([disabled]):hover,
.md-btn.md-raised:not([disabled]):focus,
.md-btn.md-raised:not([disabled]):hover {
  box-shadow: none;
  transform: none;
}

.header .md-btn.md-fab {
  font-size: 1.3rem;
  line-height: 3rem;
}

.md-btn.md-fab:hover {
  background: #00B0BF;
  color: white !important;
}

.b-l-primary,
.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  border-left-color: #1FB0C1;
}

.categories-select .ember-power-select-options {
  max-height: 21em;
}

.risk-level-select .ember-power-select-options {
  max-height: 16em;
}

.right-panel .btn {
  margin-top: 1em;
}

.close-right-panel {
  position: absolute;
  width: 12px;
  height: 12px;
  background: none;
  color: #CED8D9;
  right: 20px;
  background: url("/images/exit-c48a09849a3738341b50de7c097ef860.png") no-repeat center center;
  top: 20px;
}

.right-panel-inner .label {
  max-width: 100%;
  white-space: normal;
}

svg {
  max-width: 2em;
}

.black .st0,
.black svg {
  fill: #fff;
}

/* start other reports */
.app-body .badge {
  padding: 0.5em 1em;
  font-size: 100%;
  text-transform: uppercase;
}

.read-more {
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: bold;
}

.rsk-table {
  margin: -1px;
}

.rsk-table thead th {
  border: none;
  text-transform: uppercase;
  background: #F2F5F5;
  padding-left: 16px;
  padding-right: 16px;
}

.rsk-table th {
  color: #363636;
}

.rsk-table tbody th,
.rsk-table td {
  background: white;
  border-bottom: 2px solid #F2F5F5 !important;
  padding: 5px;
  vertical-align: middle;
}

.rsk-table td:first-child,
.rsk-table th:first-child {
  border-radius: 4px 0 0 4px;
}

.rsk-table td:last-child {
  border-radius: 0 4px 4px 0;
}

.black .rsk-table tbody th,
.black .rsk-table td {
  background: #3C393C;
  border-bottom: 5px solid #2C292D !important;
}

.rsk-brd-r {
  border-right: 1px solid #fff !important;
}

.black .rsk-brd-r {
  border-right: 1px solid #2C292D !important;
}

.rsk-list-item h3 {
  font-size: 14px;
  font-weight: bold;
  color: #2C292D;
}
.rsk-list-item .list-body {
  padding-left: 25px;
}
.rsk-list-item .list-body .risk-level-bullet {
  width: 14px;
  height: 14px;
  padding: 0;
  margin-right: 4px;
  font-size: 0.7em;
  line-height: 1.4;
  top: 2px;
  position: relative;
}
.rsk-list-item .list-body .date {
  font-size: 13px;
  font-weight: bold;
  color: #9E9E9E;
  margin: 5px 0;
}
.rsk-list-item .list-body .risk {
  font-size: 13px;
  font-style: italic;
  color: #363636;
}
.rsk-list-item .v11-risk-map-text {
  font-size: 13px;
  color: #363636;
}

.rsk-list-item .text-muted {
  margin-top: 0.3em;
}

.flag-sidebar {
  margin-right: 9px;
  width: 16px;
  height: 16px;
}

.right-panel-inner .flag-sidebar {
  width: 2.2em;
  height: 2.2em;
}

.right-panel-inner .list-body + p {
  margin-top: 1em;
}

/* start user-groups */
.ovr-scr {
  overflow: hidden;
}

.not-out-of-flow {
  margin-top: 1px;
}

.list-body::after {
  display: none;
}

.group-name {
  color: #486064;
  font-size: 1rem;
  font-weight: bold;
}

.edit-profile {
  padding-top: 0.8rem;
}

.md-check .fa-blue[aria-hidden=true] {
  background: #00B0C0;
}

.edit-in-place-not-input {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.select-all-users {
  padding-top: 0.8rem;
}

.traveller .md-check {
  padding-top: 0.8rem;
}

.groups-traveller-list {
  height: calc(100vh - 16.6em);
}

.row.rsk-list-item {
  display: flex;
}

.user-groups .avatar {
  max-width: 100%;
}

/* @media (min-width: 768px) {
  .col-md-3 {
    float: left;
    width: 25%;
  }
  .col-md-4 {
    float: left;
    width: 33.333333%;
  }
  .col-md-5 {
    float: left;
    width: 41.666667%;
  }
}

@media (min-width: 544px) {
  .col-sm-3 {
    float: left;
    width: 25%;
  }
  .col-sm-4 {
    float: left;
    width: 33.333333%;
  }
} */
/* end user groups */
/* start filter slider */
.noUi-horizontal {
  height: auto;
  margin-top: 1em;
  border: none;
  box-shadow: none;
  background: #CED8D9;
}

.black .noUi-horizontal {
  background: #2C292D;
}

.noUi-tooltip {
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.3em 0.5em;
}

.noUi-base .noUi-origin:nth-child(3) .noUi-tooltip {
  transform: translate(-93%, 0) !important;
}

.noUi-horizontal .noUi-handle,
.noUi-tooltip {
  background: #A7B8BA;
  box-shadow: none;
  border: none;
}

.black .noUi-horizontal .noUi-handle,
.black .noUi-tooltip {
  background: #5A797E;
}

.noUi-base,
.noUi-connects {
  line-height: 1;
}

.noUi-connects {
  height: 0.5em;
}

.noUi-horizontal .noUi-handle {
  height: 1.2em;
  width: 1.2em;
}

.black .noUi-handle {
  border: 1px solid #305f6a;
  background: #152c31;
  box-shadow: inset 0 0 1px #0c191c, inset 0 1px 7px #152c31, 0 3px 6px -3px #0c191c;
  padding-right: 1em;
}

.black .noUi-target {
  background: #070e10;
  border-radius: 4px;
  border: 1px solid #000;
  box-shadow: inset 0 1px 1px #0c191c, 0 3px 6px -5px #000;
}

.noUi-handle::after,
.noUi-handle::before {
  height: 0.5em;
  left: 0.6em;
  top: 0.3em;
  transform: rotate(90deg);
}

.black .noUi-handle::after,
.black .noUi-handle::before {
  background: #1FB0C1;
}

.noUi-handle::after {
  top: 0.5em;
}

.noUi-tooltip {
  bottom: 140%;
}

.black .noUi-horizontal .noUi-tooltip {
  border: 1px solid #0c191c;
  background: #0c191c;
  color: #fff;
}

@media (max-width: 768px) {
  .filters-riskline .ember-basic-dropdown {
    margin-bottom: 0.8em;
  }
}
/* end filter slider */
.modal-heading span {
  display: block;
  font-size: 0.6em;
  text-transform: uppercase;
}

.close {
  color: #CED8D9;
  font-weight: 100;
  opacity: 1;
  text-shadow: none;
  font-size: 2em;
  position: absolute;
  right: 20px;
}

.black .close {
  color: #fff;
}

/* .nav-tabs .nav-link {
  color: #486064!important;
  font-weight: bold;
}

.nav-tabs .nav-link {
  color: #F3F5F5!important;
} */
@media (max-width: 768px) {
  .padding {
    padding: 1rem 1rem 0;
  }

  .h-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .h-scroll li {
    display: inline-block;
    vertical-align: middle;
  }

  .h-scroll .nav-tabs .nav-item {
    margin-bottom: 0;
  }

  .country-header {
    padding-bottom: 1em;
  }

  .header .md-btn.md-fab {
    font-size: 0.9em;
    line-height: 2.2em;
    width: 2.2em;
    height: 2.2em;
  }

  .label-lg {
    font-size: 0.9em;
  }

  .pagination-item {
    display: none !important;
  }

  .pagination-first a,
.pagination-last a,
.pagination-next a,
.pagination-prev a {
    font-size: 1.5em;
    padding: 0.6em 1em 0.6em 1em !important;
    line-height: 1;
  }

  .w-login {
    width: 20rem;
  }

  .logo {
    max-width: 70%;
  }
}
.scrooling-content-tabs-2 {
  height: calc(100vh - 16.5rem);
  overflow-y: scroll;
}

@media (min-width: 992px) {
  .padding {
    height: calc(100vh - 50px);
  }

  .scrooling-content-main {
    height: calc(100vh - 65px);
    overflow-y: auto;
  }

  .scrooling-content-115 {
    height: calc(100vh - 115px);
    overflow-y: auto;
  }

  .scrooling-content-120 {
    height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .scrooling-content-135 {
    height: calc(100vh - 135px);
    overflow-y: auto;
  }

  .scrooling-content-145 {
    height: calc(100vh - 145px);
    overflow-y: auto;
  }

  .popup-height-600 {
    height: 600px;
    overflow-y: auto;
  }

  .scrooling-content-main-dataset-tab {
    height: calc(100vh - 206px);
    overflow-y: auto;
  }

  .scrooling-content-main-one-row-filter {
    height: calc(100vh - 236px);
    overflow-y: auto;
  }

  .scrooling-content-companies-tab {
    height: calc(100vh - 130px);
    overflow-y: auto;
  }

  .dataset .scrooling-content-main {
    height: calc(100vh - 238px) !important;
  }

  .scrooling-content-main-padding {
    height: calc(100vh - 115px);
    overflow-y: auto;
  }

  .scrooling-content-main-padding.support {
    overflow-y: inherit;
  }

  .scrooling-content-pta-content {
    height: calc(100vh - 145px);
    overflow-y: auto;
  }

  .scrooling-content-special {
    height: calc(100vh - 8rem);
    overflow-y: scroll;
  }

  .incidents .scrooling-content-inner {
    height: calc(100vh - 65px);
    overflow-y: scroll;
  }

  .scrooling-content-inner-incitents {
    height: calc(100vh - 65px);
    overflow-y: scroll;
  }

  .input-group + .scrooling-content-main {
    height: calc(100vh - 150px);
  }

  .scrooling-content-tabs {
    height: calc(100vh - 263px);
    overflow-y: auto;
  }

  .scrooling-messages-overview {
    height: calc(100vh - 12.2rem);
    overflow-y: scroll;
  }

  .scrooling-content-tabs-3 {
    height: calc(100vh - 13rem);
    overflow-y: scroll;
  }

  .messages-columns .scrooling-content-inner {
    height: calc(100vh - 15rem);
    overflow-y: scroll;
  }

  .scrooling-content-tabs-2 {
    height: calc(100vh - 16.5rem);
    overflow-y: scroll;
  }

  .scrooling-content-select {
    height: 20rem;
    overflow-y: scroll;
  }

  .scrooling-content-inner {
    height: calc(100vh - 21rem);
    overflow-y: scroll;
  }

  .scrooling-content-column {
    height: calc(100vh - 23rem);
    overflow-y: scroll;
  }

  .scrooling-content-rmp-traveler {
    height: calc(100vh - 110px);
    overflow-y: scroll;
  }

  .scrooling-content-rmp-area {
    height: calc(100vh - 100px);
    overflow-y: scroll;
  }

  .scrooling-content-rmp-alert {
    height: calc(100vh - 191px);
    overflow-y: scroll;
  }

  .scrooling-content-rmp-default {
    height: 100%;
    overflow-y: scroll;
  }

  .scrooling-content-main .list-group-item {
    /* display: block; more specific */
  }

  .scrollbar::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }

  .scrollbar::-webkit-scrollbar {
    width: 12px;
    /*background-color: #0c191c;*/
    border-radius: 2px;
  }

  .black .scrollbar::-webkit-scrollbar-track {
    /*background-color: #0c191c;*/
  }

  .scrollbar::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #E1E4E5;
  }

  .list-group-item {
    /* border-width: 3px; more specific */
  }

  .force-overflow .row {
    margin-right: 0;
  }

  .scrooling-content-alert-chat {
    height: calc(100vh - 426px);
    overflow-y: scroll;
  }
}
/*@media (min-aspect-ratio: 16/9) {
  .scrooling-content-tabs {
    height: calc(100vh - 14rem);
    overflow-y: scroll;
  }

  .scrooling-content-main {
    height: calc(100vh - 7rem);
    overflow-y: scroll;
  }

  .scrooling-content-tabs-2 {
    height: calc(100vh - 25.5rem);
    overflow-y: scroll;
  }

  .scrooling-content-tabs-3 {
    height: calc(100vh - 16rem);
    overflow-y: scroll;
  }

  .scrooling-content-alert-chat {
    height: calc(100vh - 21rem);
    overflow-y: scroll;
  }

  .incidents .scrooling-content-inner {
    height: calc(100vh - 11.2rem);
    overflow-y: scroll;
  }
} */
@media (min-width: 576px) and (max-width: 1280px) {
  .chapter-trim {
    max-width: 75%;
  }
}
@media (min-width: 1900px) {
  .d-xl-block {
    display: block;
  }
}
.messages-sidebar .nav-link {
  border: none;
}

.messages-types .list-item.active,
.nav-link.active {
  background: #F3F5F5;
}

.messages-types .tab-content {
  padding: 1rem;
}

.black .messages-types .list-item.active,
.black .nav-link.active {
  background: #5A797E;
}

.group-chat {
  display: flex;
  border-radius: 100%;
  overflow: hidden;
  flex-flow: wrap row;
}

.gc-col {
  flex: 0 0 50%;
}

.gc-col img {
  vertical-align: top;
  display: block;
  max-height: 100%;
}

.group-3 .gc-col:nth-child(1),
.group-3 .gc-col:nth-child(2),
.group-4 .gc-col {
  height: 50%;
}

.group-3 .gc-col:nth-child(3) {
  flex-grow: 1;
}

.group-3 .gc-col:nth-child(3) img {
  max-width: 100%;
}

.group-2 .gc-col {
  height: 100%;
  width: 50%;
}

.bullet {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  top: 8px;
}

.bullet.read {
  background: green;
}

.messages-sidebar {
  padding-right: 1rem !important;
}

.messages-show {
  display: flex;
  height: 100%;
}

.messages-show .box-footer,
.messages-types .box-footer {
  padding: 0;
  align-self: flex-end;
  width: 100%;
}

.msg {
  margin-bottom: 0.5rem;
  background: #F3F5F5;
  color: #252525;
}

.black .msg {
  background: #3C393C;
  color: #F3F5F5;
}

.messages-actions,
.messages-actions .btn {
  padding: 0.5em;
}

/* start support */
.contact-box {
  padding: 2em;
  border: 1px solid #CED8D9;
  border-radius: 4px;
  margin: 1em;
}

.contact-box h2 {
  font-size: 19px;
}

.black .contact-box {
  background: #3C393C;
  border: none;
}

/* end support */
@media (max-width: 991px) {
  .navside {
    background: #fff;
  }

  .black .navside {
    background: #3C393C;
  }
}
.list-group-item {
  border: none;
  border-bottom: 1px solid #E1E4E5 !important;
  background: white;
  margin: 0;
}

.black .list-group-item {
  background: #3C393C;
  color: #F3F5F5;
}

.list-group-item.active,
.list-group-item.active .chapter-trim,
.list-group-item.active:focus,
.list-group-item.active:focus .chapter-trim,
.list-group-item.active:hover,
.list-group-item.active:hover .chapter-trim,
a.list-group-item.hover,
a.list-group-item.hover .chapter-trim,
a.list-group-item:focus,
a.list-group-item:focus .chapter-trim,
a.list-group-item:hover,
a.list-group-item:hover .chapter-trim {
  /*  background: #A7B8BA; */
  color: #00B0BF;
}

.black .list-group-item.active,
.black .list-group-item.active .chapter-trim,
.black .list-group-item.active:focus,
.black .list-group-item.active:focus .chapter-trim,
.black .list-group-item.active:hover,
.black .list-group-item.active:hover .chapter-trim,
.black a.list-group-item.hover,
.black a.list-group-item.hover .chapter-trim,
.black a.list-group-item:focus,
.black a.list-group-item:focus .chapter-trim,
.black a.list-group-item:hover,
.black a.list-group-item:hover .chapter-trim {
  background: #5A797E;
  color: #fff;
}

.box-files img {
  max-width: 100px;
  max-height: 100px;
}

.map-view-details .map-container {
  height: 450px;
}

.pell-content b,
.pell-content strong {
  font-weight: bold;
}
.pell-content b a,
.pell-content strong a {
  color: #5A797E;
}
.pell-content a {
  text-decoration: underline;
  color: #00B0C0;
}

.reached-infinity {
  display: none;
}

.emails-holder {
  max-height: 220px;
  overflow-y: auto;
  padding: 5px;
  margin-bottom: 15px;
}

.advisory-badge {
  float: left;
}

.advisory-badge .badge {
  margin-right: 1em;
  font-size: 50%;
}

.draggable-icon {
  z-index: 10000;
  position: absolute;
}

.contentbox {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1921568627);
  background-color: white;
  margin: 0 0 15px;
  position: relative;
  height: calc(100vh - 65px);
}
.contentbox .v11-no-padding {
  margin-left: -15px;
  margin-right: -15px;
}

.ember-power-select-options[role=listbox] {
  max-height: none;
}

.text-bold {
  font-weight: bold;
}

a:hover {
  color: #00B0BF !important;
}

a.btn-default:hover {
  color: white !important;
}

.comment-input-wrapper {
  padding: 10px;
  background: #E6EBEC;
}

.rsk-buiding {
  background: url("/images/rsk-building-icon-ea29254df7e7cb9ed354c2100139e6c6.png");
  margin-top: 3px;
  width: 12px;
  height: 16px;
}

/*
.ember-power-select-multiple-trigger {
  max-height: 38px;
  overflow: hidden;
  position: relative;

  .ember-power-select-multiple-options {
    position: absolute;
    top: 0px;
    left: 0px;
    max-height: 38px;
  }

  .ember-power-select-multiple-option {
    position: absolute;
    top: 0px;
    left: 0px;
    max-height: 38px;
    border: none;
    border-radius: 4px;
    background-color: white;
    padding: 0 4px;
    display: inline-block;
    line-height: 1;
    float: left;
    margin: 0;

    &::after {
      position: absolute;
      left: 0px;
      top: 0px;
      right: 0px;
      bottom: 0px;
      background: white;
      padding-left: 10px;
      padding-top: 5px;
      z-index: 200;
      font-size: 11px;
      font-weight: 600;
      color: #363636;
    }
  }

  .ember-power-select-multiple-option:first-child::after {
    content: '1 selected';
    z-index: 201;
  }

  .ember-power-select-multiple-option:nth-child(2)::after {
    content: '2 selected';
    z-index: 202;
  }

  .ember-power-select-multiple-option:nth-child(3)::after {
    content: '3 item selected';
    z-index: 203;
  }

  .ember-power-select-multiple-option:nth-child(4)::after {
    content: '4 selected';
    z-index: 204;
  }

  .ember-power-select-multiple-option:nth-child(5)::after {
    content: 'many selected';
    z-index: 205;
  }
}
*/
.ember-power-select-multiple-options {
  max-height: 34px !important;
}

.ember-power-select-selected-item {
  margin-left: 0;
}

.ember-power-select-multiple-option {
  border: 1px solid #486064;
  border-radius: 4px;
  color: #486064;
  background-color: #F2F5F5;
  padding: 4px 4px;
  display: inline-block;
  line-height: 14px;
  float: left;
  margin: 5px 3px 5px 0px;
}

.ember-power-select-trigger {
  padding: 0 16px 0px 12px;
  border: 1px solid #CED8D9;
}
.ember-power-select-trigger input.ember-power-select-trigger-multiple-input {
  border: none !important;
}

.ember-power-select-search-input {
  border: none;
  border-radius: 0;
  width: 100%;
  padding: 0 5px;
}

.ember-power-select-search {
  padding: 0 !important;
  width: 200px;
}
.ember-power-select-search input {
  color: #486064;
  border: 1px solid #CED8D9;
}
.ember-power-select-search input:focus {
  color: #486064;
  border: 1px solid #CED8D9;
}

.scrooling-content-select {
  height: auto;
  overflow-y: auto;
  border: 1px solid #CED8D9;
  max-height: 400px;
  background: white;
}

/*
.ember-power-select-options[role="listbox"] {
  overflow-y: visible;
  min-height: 220px;
}
*/
.ember-power-select-option[aria-current=true] {
  background-color: inherit;
}

.no-modal-header .modal-header {
  display: none !important;
}

p.advice {
  padding: 25px 20px;
  background: #FFF9D0;
  text-transform: uppercase;
}

.toastui-editor-mode-switch .tab-item:last-child {
  display: none;
}

#offline-notification {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 220px;
  color: #fff;
  margin-left: -110px;
  text-align: center;
  line-height: 36px;
  z-index: 10000;
}

.analyst-container .country {
  margin-bottom: 30px;
}

.analyst-container .single-alert-main-view {
  margin-top: 20px;
}

.right-panel-inner p.risk-level {
  margin-top: 16px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.date-range-popup {
  max-width: 80%;
  padding-left: 10em;
  padding-right: 10em;
  position: relative;
  margin-left: auto;
}
.date-range-popup .fixedDates {
  display: block;
}
.date-range-popup .noUi-tooltip {
  display: none;
}
.date-range-popup .noUi-connects {
  height: 2px;
  background: #CED8D9;
}
.date-range-popup .noUi-handle {
  background: #00B0BF !important;
}
.date-range-popup .fixedDates.v11.from,
.date-range-popup .fixedDates.v11.to {
  display: flex;
  color: #486064;
  position: absolute;
  top: -8px;
  font-size: 13px;
  font-weight: 600;
}
.date-range-popup .fixedDates.v11.from input,
.date-range-popup .fixedDates.v11.to input {
  margin-left: 0.5em;
  width: 8.25em !important;
  padding: 0 !important;
}
.date-range-popup .fixedDates.v11.from {
  left: -10px;
}
.date-range-popup .fixedDates.v11.to {
  right: 0;
}

.inline-edit-element {
  min-height: 1.5em;
}
.inline-edit-element input {
  border: 1px solid #CED8D9;
}
.inline-edit-element textarea {
  border: 1px solid #CED8D9;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}

.inline-border .inline-edit-element {
  border: 1px solid #CED8D9;
  width: 20em;
  max-width: 85%;
}

/* Start email alerts subscription */
.custom-right-scroll-bar {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.custom-right-scroll-bar::-webkit-scrollbar {
  width: 12px;
  /* background-color: #0c191c; */
  border-radius: 2px;
}
.custom-right-scroll-bar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #E1E4E5;
}
.custom-right-scroll-bar::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* End email alerts subscription */
/* Start date box with icon and borders */
.icon-date .flatpickr-input, .flatpickr-input,
.flat-second-item input.input, .flat-second-item input,
.flat-second-item .input {
  background-image: url(/images/svg/icon_calendar.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 13px !important;
  background-position-y: center !important;
  padding-left: 23px !important;
  background-position-x: 5px !important;
  border: 1px solid #CED8D9 !important;
  height: 34px !important;
  background-color: white !important;
}

.fixedDates.v11.from.flat-second-item input, .fixedDates.v11.to.flat-second-item input {
  margin-top: -6px;
  padding-left: 23px !important;
}

/* End date box with icon and borders */
/* Start change position for save btn on subscription user account */
.right-btn-custom {
  border: 1px solid #4bb1c0;
  margin-left: 15px;
}

/* End change position for save btn on subscription user account */
/* Start Left sidebar menu scroll */
.hide-scroll nav.scroll {
  height: calc(100vh - 150px);
  overflow-y: auto;
}
.hide-scroll nav.scroll::-webkit-scrollbar {
  width: 0px;
  /* background-color: #0c191c; */
  border-radius: 2px;
}
.hide-scroll nav.scroll::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: transparent;
}
.hide-scroll nav.scroll::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}

/* End Left sidebar menu scroll */
.app-header .d-lg-none.hidden-lg-up {
  margin-left: 20px;
  position: absolute;
  z-index: 99;
  margin-top: 14px;
  margin-left: 15px;
}

.navside .d-lg-none.hidden-lg-up {
  margin-left: 20px;
}

.d-lg-none.hidden-lg-up {
  margin-right: 0px !important;
}
.d-lg-none.hidden-lg-up .fa-bars:before {
  font-size: 21px;
}

@media (max-width: 991px) {
  .navbar #pageTitle {
    margin-left: 30px;
  }

  .navside .hidden-md-down {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .navside .d-none {
    display: none !important;
  }
}
.apis-json-content pre {
  padding: 5px;
  max-height: 500px;
  overflow-y: auto;
}
.apis-json-content .copy-button {
  margin-right: 10px;
}

.capitalize {
  text-transform: capitalize;
}

.bg-published,
.bg-published-active {
  background-color: #3EAF70;
}

.bg-published-inactive {
  background-color: #BBFFBB;
}

.bg-draft {
  background-color: #FBC93A;
}

.bg-inactive,
.bg-unpublished,
.bg-archived {
  background-color: #BFBFBF;
}

.summary-country-flag {
  width: 50px;
  height: 50px;
}

.sortable-table-first {
  margin-bottom: 0 !important;
}
.sortable-table-first td {
  padding-right: 0 !important;
}
.sortable-table-first td:first-child, .sortable-table-first th:first-child {
  width: 20px;
}

.html-tui-editor .resize-border {
  position: relative;
  top: -8px;
  height: 8px;
  cursor: n-resize;
}

.missing-text {
  font-style: italic;
  font-size: 0.8rem;
}

.table-label {
  width: 60%;
}

.btn-role {
  width: 70%;
  margin: 0 auto;
}

.medical-risk-tab {
  float: left;
  width: 80px;
  margin-right: 15px;
  min-height: 270px;
  cursor: pointer;
  position: relative;
}

.medical-risk-tab-label {
  display: none;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -60px;
  width: 120px;
  background: #333;
  color: #fff;
  line-height: 40px;
  text-align: center;
}

.medical-risk-tab-label:before {
  display: block;
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -10px;
  border-top: 10px solid #333;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 0;
  height: 0;
}

.medical-risk-tab:hover .medical-risk-tab-label {
  display: block;
}

.medical-risk-tab-column {
  background: #ccc;
  min-height: 200px;
  margin-bottom: 15px;
  position: relative;
}

.medical-risk-tab-legend {
  line-height: 12px;
}

.medical-risk-tab-column .medical-risk {
  position: absolute;
  bottom: 0;
  width: 80px;
}

.medical-risk-tab-column .medical-risk span {
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  display: block;
}

.medical-risk-tab-column .medical-low-risk {
  height: 40px;
}

.medical-risk-tab-column .medical-moderate-risk {
  height: 80px;
}

.medical-risk-tab-column .medical-medium-risk {
  height: 120px;
}

.medical-risk-tab-column .medical-medium-risk span {
  color: #000;
}

.medical-risk-tab-column .medical-high-risk {
  height: 160px;
}

.medical-risk-tab-column .medical-high-risk span {
  color: #000;
}

.medical-risk-tab-column .medical-extreme-risk {
  height: 200px;
}

.medical-read-more {
  padding-top: 30px;
}

.medical-risk-overview {
  margin-bottom: 10px;
}

.medical-risk-big-square {
  position: relative;
  cursor: pointer;
}

.medical-risk-big-square:hover .medical-risk-tab-label {
  display: block;
}

.medical-risk-big-square .medical-risk {
  height: 170px;
  text-align: center;
  border-radius: 4px;
}

.medical-risk-big-square .medical-risk-square-number {
  font-size: 60px;
  color: #fff;
  padding-top: 30px;
}

.medical-risk-big-square .medical-risk-square-text {
  color: #fff;
  font-size: 16px;
}

.medical-risk-big-square .medical-medium-risk .medical-risk-square-number,
.medical-risk-big-square .medical-high-risk .medical-risk-square-number,
.medical-risk-big-square .medical-medium-risk .medical-risk-square-text,
.medical-risk-big-square .medical-high-risk .medical-risk-square-text {
  color: #000;
}

.medical-risk-small-square {
  margin-bottom: 5px;
}

.medical-risk-small-square .medical-risk {
  float: left;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
}

.medical-risk-small-square .medical-risk:hover .medical-risk-tab-label {
  display: block;
}

.medical-risk-small-square .medical-risk-square-number {
  line-height: 30px;
  width: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.medical-risk-small-square .medical-medium-risk .medical-risk-square-number,
.medical-risk-small-square .medical-high-risk .medical-risk-square-number {
  color: #000;
}

.medical-risk-small-square .medical-risk-square-text {
  line-height: 30px;
  margin-left: 5px;
  float: left;
}

.flatpickr-monthSelect-months {
  margin: 10px 1px 3px 1px;
  flex-wrap: wrap;
}

.flatpickr-monthSelect-month {
  background: none;
  border: 0;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  margin: 0.5px;
  justify-content: center;
  padding: 10px;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  width: 33%;
}

.flatpickr-monthSelect-month.disabled {
  color: #eee;
}

.flatpickr-monthSelect-month.disabled:hover,
.flatpickr-monthSelect-month.disabled:focus {
  cursor: not-allowed;
  background: none !important;
}

.flatpickr-monthSelect-theme-dark {
  background: #3f4458;
}

.flatpickr-monthSelect-theme-dark .flatpickr-current-month input.cur-year {
  color: #fff;
}

.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-prev-month,
.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff;
}

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month {
  color: rgba(255, 255, 255, 0.95);
}

.flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-month:focus {
  background: #e6e6e6;
  cursor: pointer;
  outline: 0;
}

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:focus {
  background: #646c8c;
  border-color: #646c8c;
}

.flatpickr-monthSelect-month.selected {
  background-color: #569ff7;
  color: #fff;
}

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.selected {
  background: #80cbc4;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #80cbc4;
}

.spider-leg-container {
  width: 1px;
  height: 1px;
  overflow: display;
  will-change: transform;
}

.spider-leg-container:hover {
  cursor: pointer;
}

.spider-leg-container .spider-leg-pin {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

.spider-leg-container .spider-leg-pin .rl-icon {
  height: 100%;
}

.spider-leg-container .spider-leg-pin.default-spider-pin {
  position: relative;
  width: 25px;
  height: 41px;
  margin-left: -11.5px;
  margin-top: -38.5px;
  background-image: url(https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-beta.2/images/marker-icon.png);
}

.spider-leg-container .spider-leg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #343434;
  opacity: 0.45;
  transform-origin: bottom;
  z-index: 0;
  height: 0;
}

.spider-leg-container:hover .spider-leg-line {
  opacity: 1;
}

/* Animations specific styles */
.spider-leg-container.animate {
  -webkit-transition: margin 0.15s linear;
  -moz-transition: margin 0.15s linear;
  -ms-transition: margin 0.15s linear;
  -o-transition: margin 0.15s linear;
  transition: margin 0.15s linear;
}

.spider-leg-container.initial,
.spider-leg-container.exit {
  margin-left: 0 !important;
  margin-top: 0 !important;
  height: 0;
}

.spider-leg-container.animate .spider-leg-line {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -webkit-transition-delay: inherit;
  -moz-transition-delay: inherit;
  -ms-transition-delay: inherit;
  -o-transition-delay: inherit;
  transition-delay: inherit;
}

.spider-leg-container.animate.initial .spider-leg-line,
.spider-leg-container.animate.exit .spider-leg-line {
  height: 0 !important;
}

/* Basics */
.mapboxgl-ctrl-geocoder,
.mapboxgl-ctrl-geocoder *,
.mapboxgl-ctrl-geocoder *:after,
.mapboxgl-ctrl-geocoder *:before {
  box-sizing: border-box;
}

.mapboxgl-ctrl-geocoder {
  font-size: 18px;
  line-height: 24px;
  font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
  position: relative;
  background-color: #fff;
  width: 100%;
  min-width: 240px;
  z-index: 1;
  border-radius: 4px;
  transition: width 0.25s, min-width 0.25s;
}

.mapboxgl-ctrl-geocoder--input {
  font: inherit;
  width: 100%;
  border: 0;
  background-color: transparent;
  margin: 0;
  height: 50px;
  color: #404040;
  /* fallback */
  color: rgba(0, 0, 0, 0.75);
  padding: 6px 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mapboxgl-ctrl-geocoder--input::-ms-clear {
  display: none;
  /* hide input clear button in IE */
}

.mapboxgl-ctrl-geocoder--input:focus {
  color: #404040;
  /* fallback */
  color: rgba(0, 0, 0, 0.75);
  outline: 0;
  box-shadow: none;
  outline: thin dotted\8 ;
}

.mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--pin-right > * {
  z-index: 2;
  position: absolute;
  right: 8px;
  top: 7px;
  display: none;
}

.mapboxgl-ctrl-geocoder,
.mapboxgl-ctrl-geocoder .suggestions {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

/* Collapsed */
.mapboxgl-ctrl-geocoder.mapboxgl-ctrl-geocoder--collapsed {
  width: 50px;
  min-width: 50px;
  transition: width 0.25s, min-width 0.25s;
}

/* Suggestions */
.mapboxgl-ctrl-geocoder .suggestions {
  background-color: #fff;
  border-radius: 4px;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  top: 110%;
  /* fallback */
  top: calc(100% + 6px);
  z-index: 1000;
  overflow: hidden;
  font-size: 15px;
}

.mapboxgl-ctrl-bottom-left .suggestions,
.mapboxgl-ctrl-bottom-right .suggestions {
  top: auto;
  bottom: 100%;
}

.mapboxgl-ctrl-geocoder .suggestions > li > a {
  cursor: default;
  display: block;
  padding: 6px 12px;
  color: #404040;
}

.mapboxgl-ctrl-geocoder .suggestions > .active > a,
.mapboxgl-ctrl-geocoder .suggestions > li > a:hover {
  color: #404040;
  background-color: #f3f3f3;
  text-decoration: none;
  cursor: pointer;
}

.mapboxgl-ctrl-geocoder--suggestion-title {
  font-weight: bold;
}

.mapboxgl-ctrl-geocoder--suggestion-title,
.mapboxgl-ctrl-geocoder--suggestion-address {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Icons */
.mapboxgl-ctrl-geocoder--icon {
  display: inline-block;
  vertical-align: middle;
  speak: none;
  fill: #757575;
  top: 15px;
}

.mapboxgl-ctrl-geocoder--icon-search {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 23px;
  height: 23px;
}

.mapboxgl-ctrl-geocoder--button {
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  background: #fff;
  line-height: 1;
}

.mapboxgl-ctrl-geocoder--icon-close {
  width: 20px;
  height: 20px;
  margin-top: 8px;
  margin-right: 3px;
}

.mapboxgl-ctrl-geocoder--button:hover .mapboxgl-ctrl-geocoder--icon-close {
  fill: #909090;
}

.mapboxgl-ctrl-geocoder--icon-loading {
  width: 26px;
  height: 26px;
  margin-top: 5px;
  margin-right: 0px;
  -moz-animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -webkit-animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Animation */
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Media queries*/
@media screen and (min-width: 640px) {
  .mapboxgl-ctrl-geocoder.mapboxgl-ctrl-geocoder--collapsed {
    width: 36px;
    min-width: 36px;
  }

  .mapboxgl-ctrl-geocoder {
    width: 33.3333%;
    font-size: 15px;
    line-height: 20px;
    max-width: 360px;
  }

  .mapboxgl-ctrl-geocoder .suggestions {
    font-size: 13px;
  }

  .mapboxgl-ctrl-geocoder--icon {
    top: 8px;
  }

  .mapboxgl-ctrl-geocoder--icon-close {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    margin-right: 0;
  }

  .mapboxgl-ctrl-geocoder--icon-search {
    left: 7px;
    width: 20px;
    height: 20px;
  }

  .mapboxgl-ctrl-geocoder--input {
    height: 36px;
    padding: 6px 35px;
  }

  .mapboxgl-ctrl-geocoder--icon-loading {
    width: 26px;
    height: 26px;
    margin-top: -2px;
    margin-right: -5px;
  }

  .mapbox-gl-geocoder--error {
    color: #909090;
    padding: 6px 12px;
    font-size: 16px;
    text-align: center;
  }
}
div.pagination-links {
  margin: 0.25rem;
}

div.pagination-links a {
  cursor: pointer;
  padding: 0.15rem 0.5rem 0.25rem;
  border-radius: 2px;
}

div.pagination-links a.disabled {
  cursor: default;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.25) !important;
}

div.pagination-links a.pagination-links-current {
  cursor: default;
  color: rgba(0, 0, 0, 0.75);
  background-color: rgba(0, 0, 0, 0.15);
}