/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }
.pulse {
  animation-name: pulse; }

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

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

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }
.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  animation-name: jello;
  transform-origin: center; }

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  animation-name: fadeIn; }

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

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

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

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

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

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

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

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

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  animation-name: fadeOut; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }
.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  animation-name: rollOut; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box; }

html {
  font-size: 1vw;
  font-family: 'Roboto', sans-serif; }

body {
  font-family: 'Roboto', sans-serif; }

.clear {
  clear: both; }

.hidden {
  display: none; }

.boxshadow {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 9000;
  transition: .6s; }

.container {
  width: 75%; }

.auth {
  border-radius: 20px;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  width: 22.4358974359rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-top: 1.2820512821rem;
  padding-bottom: 1.2820512821rem; }
  .auth input {
    text-align: center;
    border: none;
    border-bottom: 1px solid lightgray;
    width: 80%;
    padding-bottom: 0.641025641rem;
    margin-top: 1.2820512821rem;
    font-size: 1.0256410256rem; }
  .auth button {
    width: 40%;
    padding-top: 0.641025641rem;
    padding-bottom: 0.641025641rem;
    background: none;
    border-radius: 20px;
    border: 1px solid lightgray;
    font-weight: 600;
    cursor: pointer;
    transition: .3s; }
    .auth button:hover {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      transition: .3s; }
  .auth h3 {
    font-size: 1.1538461538rem; }
  .auth .auth_form .loginLoginForm .flex_row .flex_box {
    margin-top: 1.2820512821rem; }

body {
  background-color: #fff !important; }

.app-header .app-header__logo .logo-src {
  width: 180px; }
  .app-header .app-header__logo .logo-src img {
    width: 100%; }

.lds-facebook {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
  transition: .6s;
  transform: translate(-50%, -50%); }

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #fff;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite; }

.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s; }

.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s; }

.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0; }

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px; }
  50%, 100% {
    top: 24px;
    height: 32px; } }
.vertical-nav-menu li {
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }
  .vertical-nav-menu li a {
    line-height: 20px;
    height: auto;
    padding-left: 10px; }

.app-main__inner {
  background-color: #fff;
  padding-right: 0; }

.scrollbar-sidebar {
  background-image: url(../images/left_2.png);
  background-size: cover;
  position: relative;
  z-index: 1000;
  background-position: center; }
  .scrollbar-sidebar .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); }
  .scrollbar-sidebar .app-sidebar__inner {
    position: relative;
    height: 100%; }
    .scrollbar-sidebar .app-sidebar__inner .prefooter {
      font-size: 10px;
      color: #fff;
      position: absolute;
      width: 100%;
      bottom: 35px;
      left: 0;
      text-align: center;
      opacity: 1; }
    .scrollbar-sidebar .app-sidebar__inner .logo {
      position: absolute;
      top: 46vh;
      width: 12.5rem; }
      .scrollbar-sidebar .app-sidebar__inner .logo img {
        width: 100%; }
      .scrollbar-sidebar .app-sidebar__inner .logo .top_box .project {
        font-size: 0.641025641rem;
        font-weight: bold;
        line-height: 0.9737179487rem;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        margin-top: 1rem; }
      .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro {
        width: 11.2179487179rem;
        height: 3.5256410256rem;
        display: block;
        margin: 0 auto;
        position: relative;
        margin-top: 3.2051282051rem; }
        .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro img {
          width: 11.2179487179rem;
          height: 3.5256410256rem;
          display: block;
          position: absolute;
          transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro .color {
          opacity: 0;
          transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro .white {
          opacity: 1;
          transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro:hover .color {
          opacity: 1;
          transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro:hover .white {
          opacity: 0;
          transition: .45s; }
      .scrollbar-sidebar .app-sidebar__inner .logo .bot_box {
        width: 11.2179487179rem;
        margin: 0 auto;
        margin-top: 1.2820512821rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .beeline {
          width: 2.8846153846rem;
          height: 2.8846153846rem;
          display: block;
          position: relative; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .beeline img {
            width: 2.8846153846rem;
            height: 2.8846153846rem;
            display: block;
            transition: .45s;
            position: absolute; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .beeline .color {
            opacity: 0;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .beeline .white {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .beeline:hover .color {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .beeline:hover .white {
            opacity: 0;
            transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kcell {
          width: 4.4871794872rem;
          height: 1.5384615385rem;
          display: block;
          position: relative; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kcell img {
            width: 4.4871794872rem;
            height: 1.5384615385rem;
            transition: .45s;
            position: absolute; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kcell .color {
            opacity: 0;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kcell .white {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kcell:hover .color {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kcell:hover .white {
            opacity: 0;
            transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .tele2 {
          width: 5.1282051282rem;
          height: 1.6025641026rem;
          display: block;
          position: relative; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .tele2 img {
            width: 5.1282051282rem;
            height: 1.6025641026rem;
            display: block;
            transition: .45s;
            position: absolute; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .tele2 .color {
            opacity: 0;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .tele2 .white {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .tele2:hover .color {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .tele2:hover .white {
            opacity: 0;
            transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .altel {
          width: 5.1282051282rem;
          height: 0.9615384615rem;
          display: block;
          position: relative; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .altel img {
            width: 5.1282051282rem;
            height: 0.9615384615rem;
            display: block;
            transition: .45s;
            position: absolute; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .altel .color {
            opacity: 0;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .altel .white {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .altel:hover .color {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .altel:hover .white {
            opacity: 0;
            transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kt {
          width: 10.1282051282rem;
          height: 1.6025641026rem;
          display: block;
          margin-top: 0 auto;
          position: relative; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kt img {
            width: 10.1282051282rem;
            height: 1.6025641026rem;
            display: block;
            transition: .45s;
            position: absolute; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kt .color {
            opacity: 0;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kt .white {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kt:hover .color {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .kt:hover .white {
            opacity: 0;
            transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .frontier {
          width: 7.0512820513rem;
          height: 4.1025641026rem;
          display: block;
          margin: 0 auto;
          position: relative; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .frontier img {
            width: 7.0512820513rem;
            height: 4.1025641026rem;
            display: block;
            transition: .45s;
            position: absolute; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .frontier .color {
            opacity: 0;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .frontier .white {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .frontier:hover .color {
            opacity: 1;
            transition: .45s; }
          .scrollbar-sidebar .app-sidebar__inner .logo .bot_box .frontier:hover .white {
            opacity: 0;
            transition: .45s; }
        .scrollbar-sidebar .app-sidebar__inner .logo .bot_box:last-child {
          margin-top: 0.641025641rem; }
    .scrollbar-sidebar .app-sidebar__inner ul li {
      color: #fff;
      padding-top: 0.2rem;
      padding-bottom: 0.2rem;
      transition: .3s;
      margin-top: 0.6rem;
      padding-left: 0.2rem; }
      .scrollbar-sidebar .app-sidebar__inner ul li a {
        color: #fff;
        font-size: 0.7051282051rem; }
        .scrollbar-sidebar .app-sidebar__inner ul li a:hover {
          background: none;
          text-shadow: 1px 1px 2px black, 0 0 1em black; }
      .scrollbar-sidebar .app-sidebar__inner ul li i {
        color: #fff;
        transition: .3s; }
      .scrollbar-sidebar .app-sidebar__inner ul li:hover {
        background: rgba(255, 255, 255, 0.6); }
        .scrollbar-sidebar .app-sidebar__inner ul li:hover a {
          color: #fff;
          text-shadow: 1px 1px 2px black, 0 0 1em black; }
        .scrollbar-sidebar .app-sidebar__inner ul li:hover i {
          color: #fff;
          text-shadow: 1px 1px 2px black, 0 0 1em black;
          transition: .3s; }
    .scrollbar-sidebar .app-sidebar__inner ul .no_hover:hover {
      background: none; }
    .scrollbar-sidebar .app-sidebar__inner ul .active {
      color: #fff;
      background: rgba(255, 255, 255, 0.6); }
      .scrollbar-sidebar .app-sidebar__inner ul .active a {
        color: #fff;
        text-shadow: 1px 1px 2px black, 0 0 1em black; }
      .scrollbar-sidebar .app-sidebar__inner ul .active i {
        color: #fff;
        text-shadow: 1px 1px 2px black, 0 0 1em black; }

.app-sidebar {
  padding-top: 0;
  position: fixed;
  left: -280px;
  transition: 2.3s;
  width: 280px;
  overflow: visible;
  transition: 0.3s; }
  .app-sidebar .app-sidebar_button {
    position: absolute;
    top: 2.8205128205rem;
    right: -33px;
    z-index: 150000; }
    .app-sidebar .app-sidebar_button .openButtonLeft {
      border-radius: 5px;
      border: 1px solid #3f5467;
      background-color: rgba(53, 68, 96, 0.8);
      width: 30px;
      height: 30px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      z-index: 150001;
      background: #fff; }
    .app-sidebar .app-sidebar_button img {
      width: 20px; }
    .app-sidebar .app-sidebar_button .arrow_img {
      display: none; }
    .app-sidebar .app-sidebar_button .active {
      display: block; }
  .app-sidebar .active_rotate {
    transform: rotate(180deg); }

.app-main__outer {
  padding-left: 0 !important;
  width: 100%; }

.app-sidebar_active {
  left: 0;
  transition: 0.3s; }

.app-header__logo {
  display: none; }

.app-header {
  display: none; }

.app-main {
  background: #fff; }

.vertical-nav-menu {
  margin-top: 3rem; }

.app-sidebar__heading {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  margin-top: 0rem !important; }

.top_text {
  text-align: center;
  margin: 0 auto;
  font-size: 1.3rem; }

.app-sidebar {
  width: 280px;
  left: -280px; }

.app-sidebar__active {
  left: 0;
  transition: 0.3s; }

.overlay_login {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.6); }

.video {
  position: absolute;
  z-index: 1000;
  background: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .video video {
    width: 100%;
    height: 100%;
    object-fit: cover; }

iframe {
  outline: none; }

.auth {
  border-radius: 20px;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  width: 17.9487179487rem;
  padding-top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 1500; }
  .auth .logo_box {
    display: block;
    width: 101%;
    margin-left: -0.0641025641rem;
    margin-top: -0.0641025641rem;
    background-image: url(../images/auth_head.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding-top: 0.3205128205rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
    .auth .logo_box .logo {
      width: 9.6153846154rem;
      margin: 0 auto;
      padding: 10px; }
      .auth .logo_box .logo img {
        width: 100%; }
  .auth .auth_container {
    padding-top: 1.2820512821rem;
    padding-bottom: 0;
    padding-left: 0.641025641rem;
    padding-right: 0.641025641rem; }
    .auth .auth_container .title {
      font-size: 0.7692307692rem;
      margin-top: 0;
      color: #000; }
    .auth .auth_container p {
      font-size: 0.641025641rem;
      margin-top: 0.8rem;
      color: #000; }
    .auth .auth_container input {
      text-align: center;
      border: none;
      border-bottom: 0.0320512821rem solid #000;
      width: 55%;
      padding-bottom: 0.641025641rem;
      margin-top: 1.2820512821rem;
      font-size: 0.641025641rem;
      background: none;
      -webkit-appearance: none; }
    .auth .auth_container button {
      margin-top: 1.25rem;
      width: 40%;
      padding-top: 0.641025641rem;
      padding-bottom: 0.641025641rem;
      background: none;
      border-radius: 20px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: .3s;
      border: 1px solid gray;
      background: #fff;
      border: 1px solid #fff;
      font-size: 0.7692307692rem; }
      .auth .auth_container button:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        transition: .3s; }
    .auth .auth_container ::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #000;
      font-size: 0.641025641rem; }
    .auth .auth_container ::-moz-placeholder {
      /* Firefox 19+ */
      color: #000;
      font-size: 0.641025641rem; }
    .auth .auth_container :-ms-input-placeholder {
      /* IE 10+ */
      color: #000;
      font-size: 0.641025641rem; }
    .auth .auth_container :-moz-placeholder {
      /* Firefox 18- */
      color: #000;
      font-size: 0.641025641rem; }
    .auth .auth_container h3 {
      font-size: 0.7692307692rem; }
    .auth .auth_container .auth_form .loginLoginForm .flex_row .flex_box {
      margin-top: 0.3205128205rem; }

.left_nav {
  position: fixed;
  width: 24.0384615385rem;
  left: -32.0512820513rem;
  transition: 0.3s; }

.left_nav_active {
  left: 0;
  transition: 0.3s; }

.mapboxgl-ctrl-top-left {
  top: 10rem !important;
  left: 3rem !important; }

.app-main__inner {
  padding-left: 0.9615384615rem;
  padding-top: 30px; }
  .app-main__inner .map_block {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
    .app-main__inner .map_block #map {
      width: 100%;
      height: 100%; }
    .app-main__inner .map_block .filter_form {
      width: 22.1794871795rem;
      height: 100%;
      background-color: rgba(53, 68, 96, 0.95);
      padding-left: 2.8846153846rem;
      padding-right: 2.1153846154rem;
      padding-top: 1.6025641026rem;
      position: fixed;
      top: 0;
      right: 0;
      right: -19.8717948718rem;
      z-index: 1000;
      transition: 0.3s; }
      .app-main__inner .map_block .filter_form .openButton {
        position: relative;
        top: 1.2179487179rem;
        left: -3.6538461538rem;
        border-radius: 5px;
        border: 1px solid #3f5467;
        background-color: rgba(53, 68, 96, 0.8);
        width: 30px;
        height: 30px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s; }
        .app-main__inner .map_block .filter_form .openButton img {
          width: 20px; }
        .app-main__inner .map_block .filter_form .openButton .arrow_img {
          display: none; }
        .app-main__inner .map_block .filter_form .openButton .active {
          display: block; }
      .app-main__inner .map_block .filter_form .active_rotate {
        transform: rotate(180deg); }
      .app-main__inner .map_block .filter_form .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        margin-left: 0 !important;
        margin-right: 0 !important; }
        .app-main__inner .map_block .filter_form .row div label {
          color: #fff;
          font-family: "Open Sans";
          font-size: 0.8974358974rem;
          font-weight: 400;
          line-height: 1.1538461538rem;
          margin: 0; }
        .app-main__inner .map_block .filter_form .row .map_select select {
          width: 10rem;
          background-color: #242f39;
          padding-left: 8px;
          font-size: 0.7692307692rem;
          line-height: 1.1538461538rem;
          color: #8d9faf;
          border: none; }
          .app-main__inner .map_block .filter_form .row .map_select select option {
            color: #8d9faf;
            font-family: "Open Sans";
            font-size: 0.7692307692rem;
            font-weight: 400;
            line-height: 1.1538461538rem; }
      .app-main__inner .map_block .filter_form .title {
        color: #ffffff;
        font-family: "Open Sans";
        font-size: 0.8974358974rem;
        font-weight: 400;
        line-height: 1.1538461538rem;
        text-align: center;
        margin-top: 1.9230769231rem; }
      .app-main__inner .map_block .filter_form .second {
        margin-top: 0.641025641rem;
        margin-bottom: 0rem; }
      .app-main__inner .map_block .filter_form .period-row {
        width: 100%;
        max-width: 100%;
        margin-top: 0.641025641rem; }
        .app-main__inner .map_block .filter_form .period-row .first_month {
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 0.8974358974rem;
          font-weight: 400;
          line-height: 1.1538461538rem;
          flex: 0 0 50%; }
        .app-main__inner .map_block .filter_form .period-row .last_month {
          text-align: right;
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 0.8974358974rem;
          font-weight: 400;
          line-height: 1.1538461538rem;
          flex: 0 0 50%; }
      .app-main__inner .map_block .filter_form .row #slider-range {
        flex: 0 0 100%;
        background-color: #242f39;
        margin-top: 1.2820512821rem;
        height: 4px;
        border: none !important; }
        .app-main__inner .map_block .filter_form .row #slider-range .ui-slider-range {
          background-image: linear-gradient(to right, #00beef 0%, #5f73e6 100%);
          height: 4px;
          border: none !important; }
        .app-main__inner .map_block .filter_form .row #slider-range .ui-slider-handle {
          border: 1px solid #fff;
          background-color: #03bcef; }
          .app-main__inner .map_block .filter_form .row #slider-range .ui-slider-handle:last-child {
            background-color: #5b76e6; }
      .app-main__inner .map_block .filter_form .map-tabs {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between; }
        .app-main__inner .map_block .filter_form .map-tabs .tab {
          background-color: #242f39;
          color: #feffff;
          font-family: "Open Sans";
          font-size: 0.641025641rem;
          font-weight: 600;
          line-height: 1.0256410256rem;
          padding: 0.3205128205rem;
          width: 8.3333333333rem;
          cursor: pointer;
          margin-top: 0.9615384615rem; }
        .app-main__inner .map_block .filter_form .map-tabs .active {
          background-image: linear-gradient(to right, #00beef 0%, #5f73e6 100%);
          color: #242f39; }
      .app-main__inner .map_block .filter_form .to_chart {
        overflow-y: auto;
        height: 50vh; }
      .app-main__inner .map_block .filter_form .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center; }
      .app-main__inner .map_block .filter_form .chart-title {
        padding-left: 0.3205128205rem;
        margin-top: 0.641025641rem;
        color: #ffffff;
        font-family: "Open Sans";
        font-size: 0.7692307692rem;
        font-weight: 400;
        line-height: 0.8974358974rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        justify-content: flex-start;
        margin-bottom: 0.9615384615rem;
        padding-left: 0; }
        .app-main__inner .map_block .filter_form .chart-title .left {
          color: #1f8efa;
          font-family: "Open Sans";
          font-size: 1.1538461538rem;
          line-height: 1.5384615385rem;
          font-weight: 400;
          padding-right: 0.7692307692rem;
          background-image: url(../images/man.svg);
          background-position: right;
          background-size: 0.8974358974rem;
          background-repeat: no-repeat;
          padding-right: 0.9615384615rem;
          margin-right: 0rem; }
        .app-main__inner .map_block .filter_form .chart-title .right {
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 0.641025641rem;
          font-weight: 400;
          line-height: 0.8974358974rem;
          flex: 1 0 59%;
          text-align: right; }
      .app-main__inner .map_block .filter_form .chart-title2 {
        padding-left: 0.3205128205rem;
        margin-top: 0.641025641rem;
        color: #ffffff;
        font-family: "Open Sans";
        font-size: 0.7692307692rem;
        font-weight: 400;
        line-height: 0.8974358974rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        justify-content: flex-start;
        margin-bottom: 0.9615384615rem;
        padding-left: 0;
        width: 100%; }
        .app-main__inner .map_block .filter_form .chart-title2 .no_bg {
          color: #1f8efa;
          font-family: "Open Sans";
          font-size: 1.1538461538rem;
          line-height: 1.5384615385rem;
          font-weight: 400;
          padding-right: 0.7692307692rem;
          background-position: right;
          background-size: 0.8974358974rem;
          background-repeat: no-repeat;
          padding-right: 0.3205128205rem;
          margin-right: 0rem;
          background-image: none; }
        .app-main__inner .map_block .filter_form .chart-title2 .right2 {
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 0.641025641rem;
          font-weight: 400;
          line-height: 0.8974358974rem;
          width: 100%;
          text-align: right; }
      .app-main__inner .map_block .filter_form .to {
        color: #feffff;
        font-family: "Open Sans";
        font-size: 0.8974358974rem;
        font-weight: 300;
        line-height: 1.1538461538rem; }
      .app-main__inner .map_block .filter_form .tab-content {
        display: none; }
        .app-main__inner .map_block .filter_form .tab-content div #inner_objects {
          background-color: #242f39;
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 0.7692307692rem;
          font-weight: 400;
          line-height: 1.1538461538rem;
          border: none;
          width: 8.5897435897rem;
          margin-top: 1.2820512821rem;
          margin-right: 0.7692307692rem;
          width: 10rem;
          background-color: #242f39;
          color: #8d9faf;
          border: none; }
          .app-main__inner .map_block .filter_form .tab-content div #inner_objects select {
            font-family: "Open Sans";
            font-size: 0.7692307692rem;
            font-weight: 400;
            line-height: 1.1538461538rem; }
        .app-main__inner .map_block .filter_form .tab-content div #external_objects {
          background-color: #242f39;
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 0.7692307692rem;
          font-weight: 400;
          line-height: 1.1538461538rem;
          border: none;
          width: 8.5897435897rem;
          margin-top: 1.2820512821rem;
          margin-right: 0.7692307692rem;
          width: 10rem;
          background-color: #242f39;
          color: #8d9faf;
          border: none; }
          .app-main__inner .map_block .filter_form .tab-content div #external_objects select {
            font-family: "Open Sans";
            font-size: 0.7692307692rem;
            font-weight: 400;
            line-height: 1.1538461538rem; }
      .app-main__inner .map_block .filter_form .active {
        display: block; }
      .app-main__inner .map_block .filter_form .chart-scroll .to-chart {
        overflow: auto;
        height: 40vh; }
        .app-main__inner .map_block .filter_form .chart-scroll .to-chart .to-chart_inner {
          overflow-y: scroll;
          height: 1000px; }
      .app-main__inner .map_block .filter_form .chart_item {
        margin-top: px2rem; }
        .app-main__inner .map_block .filter_form .chart_item .chart_title {
          color: #ffffff;
          font-family: "Open Sans";
          font-size: 12px;
          font-weight: 400;
          line-height: 16px; }
        .app-main__inner .map_block .filter_form .chart_item .chart_bar_container .chart_bar_line {
          height: 7px;
          border-radius: 2px;
          background-color: #1f8efa;
          text-align: left;
          padding-left: 10px; }
      .app-main__inner .map_block .filter_form .chart-scroll {
        overflow: auto;
        height: 51%; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-scrollbar {
          width: 0.3205128205rem;
          height: 3px; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-scrollbar-button {
          background-color: #242f39; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-scrollbar-track {
          background-color: #999; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-scrollbar-track-piece {
          background-color: #242f39; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-scrollbar-thumb {
          height: 50px;
          background-color: #4b5f70;
          border-radius: 3px; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-scrollbar-corner {
          background-color: #999; }
        .app-main__inner .map_block .filter_form .chart-scroll ::-webkit-resizer {
          background-color: #666; }
        .app-main__inner .map_block .filter_form .chart-scroll .to-chart {
          height: 100%; }
      .app-main__inner .map_block .filter_form .frow {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        justify-content: flex-end;
        margin-top: 1.2820512821rem;
        margin-bottom: 1.7307692308rem; }
        .app-main__inner .map_block .filter_form .frow .from {
          color: #feffff;
          font-family: "Open Sans";
          font-size: 0.8974358974rem;
          font-weight: 300;
          line-height: 1.1538461538rem;
          margin: 0;
          margin-right: 1.1538461538rem; }
    .app-main__inner .map_block .active {
      right: 0;
      transition: 0.3; }
    .app-main__inner .map_block select {
      max-width: 100%;
      background: none;
      padding: 5px;
      margin-top: 0; }

@media (max-width: 1400px) {
  .chart-scroll {
    overflow: auto;
    height: 51%; }
    .chart-scroll ::-webkit-scrollbar {
      width: 0.3205128205rem;
      height: 3px; }
    .chart-scroll ::-webkit-scrollbar-button {
      background-color: #242f39; }
    .chart-scroll ::-webkit-scrollbar-track {
      background-color: #999; }
    .chart-scroll ::-webkit-scrollbar-track-piece {
      background-color: #242f39; }
    .chart-scroll ::-webkit-scrollbar-thumb {
      height: 50px;
      background-color: #4b5f70;
      border-radius: 3px; }
    .chart-scroll ::-webkit-scrollbar-corner {
      background-color: #999; }
    .chart-scroll ::-webkit-resizer {
      background-color: #666; }
    .chart-scroll .to-chart {
      height: 100%; }

  .app-main__inner {
    padding-left: 2.2rem; }

  #slider-range {
    height: 0.1923076923rem;
    background: #5f5e5c;
    margin-top: 0.5128205128rem; }
    #slider-range .ui-slider-range {
      background: #5f5e5c; }
    #slider-range span {
      border-radius: 50%;
      border: 1px solid #5f5e5c;
      top: -0.3846153846rem; }
      #slider-range span:hover {
        border: 1px solid lightgray;
        background: #f6f6f6; }
      #slider-range span:focus {
        border: 1px solid lightgray;
        background: #f6f6f6; }

  .map_select {
    position: relative;
    margin-left: 0.641025641rem; }
    .map_select .map_filter {
      width: 100%;
      padding-left: 0.3205128205rem;
      position: relative;
      z-index: 1000;
      color: #7a7979;
      border-radius: none; }
      .map_select .map_filter option {
        color: #7a7979; }
    .map_select i {
      position: absolute;
      top: 0.5128205128rem;
      right: 0.5128205128rem;
      z-index: 900;
      color: #7a7979;
      font-size: 0.5128205128rem; }

  .prefooter_login {
    position: absolute;
    bottom: 0;
    z-index: 3000;
    font-size: 0.7692307692rem;
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 1.6025641026rem;
    color: #fff;
    text-align: center; }

  .app-sidebar__inner {
    position: relative; }
    .app-sidebar__inner .prefooter {
      text-align: center;
      color: #fff;
      font-size: 0.5769230769rem;
      position: absolute;
      left: 50%;
      bottom: 0.3846153846rem;
      transform: translate(-50%, 0);
      width: 100%; }

  .login_background {
    background-repeat: no-repeat;
    background-size: cover; } }
@media (max-width: 767px) {
  .top_text {
    font-size: 14px; }

  .video {
    filter: blur(4px);
    width: auto !important;
    height: 100vh !important;
    background: url(../video/video_bg.png);
    background-size: cover;
    background-position: center; }
    .video video {
      display: none;
      width: auto !important;
      height: 100vh !important; } }
@media (max-width: 1500px) {
  .scrollbar-sidebar .app-sidebar__inner .logo {
    top: 28.5rem;
    width: 85%; }
    .scrollbar-sidebar .app-sidebar__inner .logo .top_box .project {
      font-size: 0.7692307692rem; }
    .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro {
      margin-top: 2.5641025641rem; }
    .scrollbar-sidebar .app-sidebar__inner .logo .bot_box {
      margin-top: 1.5rem; }
  .scrollbar-sidebar .app-sidebar__inner .prefooter {
    left: 0;
    bottom: 40px; } }
@media (max-width: 1380px) {
  .app-sidebar {
    padding-top: 0;
    position: fixed;
    left: -280px;
    transition: 2.3s;
    width: 280px !important;
    overflow: visible;
    transition: 0.3s; }
    .app-sidebar .app-sidebar_button {
      position: absolute;
      top: 2.8205128205rem;
      right: -33px;
      z-index: 10000; }
      .app-sidebar .app-sidebar_button .openButtonLeft {
        border-radius: 5px;
        border: 1px solid #3f5467;
        background-color: rgba(53, 68, 96, 0.8);
        width: 30px;
        height: 30px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        z-index: 150000;
        background: #fff; }
      .app-sidebar .app-sidebar_button img {
        width: 20px; }
      .app-sidebar .app-sidebar_button .arrow_img {
        display: none; }
      .app-sidebar .app-sidebar_button .active {
        display: block; }
    .app-sidebar .active_rotate {
      transform: rotate(180deg); }

  .app-sidebar__active {
    left: 0;
    transition: 0.3s; }

  .scrollbar-sidebar .app-sidebar__inner .logo {
    top: 28.5rem;
    width: 85%; }
    .scrollbar-sidebar .app-sidebar__inner .logo .top_box .project {
      font-size: 0.7692307692rem; }
    .scrollbar-sidebar .app-sidebar__inner .logo .top_box .cifro {
      margin-top: 1.2820512821rem; }
  .scrollbar-sidebar .app-sidebar__inner .prefooter {
    left: 50%; } }

/*# sourceMappingURL=style.css.map */
