@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 {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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;
  -ms-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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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 jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

.jello{
    -webkit-animation-name:jello;
            animation-name:jello;
    -webkit-transform-origin: center;

            -ms-transform-origin: center;

        transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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;
}

/* 
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle;}

.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;}

.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px;}

.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;}

.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap;}

.select2-container .select2-search--inline{float:left;}

.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none;}

.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051;}

.select2-results{display:block;}

.select2-results__options{list-style:none;margin:0;padding:0;}

.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;}

.select2-results__option[aria-selected]{cursor:pointer;}

.select2-container--open .select2-dropdown{left:0;}

.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;}

.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0;}

.select2-search--dropdown{display:block;padding:4px;}

.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box;}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none;}

.select2-search--dropdown.select2-search--hide{display:none;}

.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0);}

.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}

.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px;}

.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px;}

.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;}

.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999;}

.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px;}

.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0;}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left;}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto;}

.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default;}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none;}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px;}

.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;}

.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%;}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left;}

.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;}

.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px;}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px;}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333;}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right;}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto;}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto;}

.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0;}

.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default;}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none;}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0;}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0;}

.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa;}

.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;}

.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto;}

.select2-container--default .select2-results__option[role=group]{padding:0;}

.select2-container--default .select2-results__option[aria-disabled=true]{color:#999;}

.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd;}

.select2-container--default .select2-results__option .select2-results__option{padding-left:1em;}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0;}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em;}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em;}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em;}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em;}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em;}

.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white;}

.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px;}

.select2-container--classic .select2-selection--single{background-color:#f6f6f6;border:1px solid #aaa;border-radius:4px;outline:0;background-image:linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);}

.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb;}

.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px;}

.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px;}

.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999;}

.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);}

.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0;}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left;}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto;}

.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb;}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none;}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px;}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);}

.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;}

.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb;}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px;}

.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none;}

.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px;}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px;}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto;}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto;}

.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb;}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0;}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;}

.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0;}

.select2-container--classic .select2-search--inline .select2-search__field{outline:0;}

.select2-container--classic .select2-dropdown{background-color:white;border:1px solid transparent;}

.select2-container--classic .select2-dropdown--above{border-bottom:none;}

.select2-container--classic .select2-dropdown--below{border-top:none;}

.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto;}

.select2-container--classic .select2-results__option[role=group]{padding:0;}

.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey;}

.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:white;}

.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px;}

.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb;}

.multilevelpushmenu_wrapper {
	position: absolute;
	overflow: hidden;
	min-width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
}

.multilevelpushmenu_wrapper .levelHolderClass {
	position: absolute;
	overflow: hidden;
	top: 0;
	background: #336ca6;
	width: auto;
	min-height: 100%;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 1em;
	zoom: 1;
}

.multilevelpushmenu_wrapper .ltr {
	margin-left: -100%;
	left: 0;
	box-shadow: 5px 0 5px -5px #1f4164;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164,direction=90,strength=2);
}

.multilevelpushmenu_wrapper .rtl {
	margin-right: -100%;
	right: 0;
	box-shadow: 5px 0 5px 5px #1f4164;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164,direction=270,strength=2);
}

.multilevelpushmenu_wrapper .multilevelpushmenu_inactive {
	background: #2e6196;
}

.multilevelpushmenu_wrapper h2 {
	font-size: 1.5em;
	line-height: 1em;
	font-weight: bold;
	color: #1f4164;
	padding: 0 .4em 0 .4em;
}

.multilevelpushmenu_wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.multilevelpushmenu_wrapper li {
	cursor: pointer;
	border-top: 1px solid #295685;
	padding: .4em .4em .4em .4em;
}

.multilevelpushmenu_wrapper li:last-child {
	border-bottom: 1px solid #295685;
}

.multilevelpushmenu_wrapper li:hover {
	background-color: #295685;
}

.multilevelpushmenu_wrapper a {
	display: block;
	outline: none;
	overflow: hidden;
	font-size: 1.5em;
	line-height: 1em;
	padding: .2em .2em;
	text-decoration: none;
	color: #fff;
}

.multilevelpushmenu_wrapper a:hover {
	color: #ffe;
}

.multilevelpushmenu_wrapper .backItemClass {
	display: block;
	padding: .4em .4em .4em .4em;
	background: #2e6196;
	border-top: 1px solid #295685;
}

.multilevelpushmenu_wrapper .floatRight {
	float: right;
}

.multilevelpushmenu_wrapper .floatLeft {
	float: left;
}

.multilevelpushmenu_wrapper .cursorPointer {
	cursor: pointer;
}

.multilevelpushmenu_wrapper .iconSpacing_ltr {
	padding: 0 .4em 0 0;
}

.multilevelpushmenu_wrapper .iconSpacing_rtl {
	padding: 0 0 0 .4em;
}

.spinner_wrapper {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: rgba(255, 255, 255, .6);
    text-align: center;
}

.spinner {
    display: block;
    width: 70px;
    top: 50%;
    margin: -35px auto 0;
    position: relative;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: rgb(38, 50, 127);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.button_feed .spinner {
    margin: -22px auto 0;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/*@define-mixin reg{*/

/*font-family: Roboto, sans-serif;*/

/*font-weight: normal;*/

/*}*/

/*@define-mixin bold{*/

/*font-family: Roboto, sans-serif;*/

/*font-weight: bold;*/

/*}*/

/*@define-mixin italic{*/

/*font-family: Roboto, sans-serif;*/

/*font-weight: normal;*/

/*font-style: italic;*/

/*}*/

/*@define-mixin light{*/

/*font-family: Roboto, sans-serif;*/

/*font-weight: 300;*/

/*}*/

* {
    margin: 0;
    padding: 0;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
font-family: Roboto, arial, sans-serif;
font-weight: 400;
    background: #f2f5f8;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.4s ease;
}

img{
    border: none;
}

.content_in_high a{
    color: rgb(38, 50, 127);
}

.content_in_high a:hover{
    color: rgb(255, 82, 82);
}

.main_wrapper, .main_wrapper .header_wrapper {
    background: #f2f5f8;
}

.content_in {
    max-width: 1120px;
    padding: 0 30px;
    margin: auto;
zoom: 1;
}

.content_in:after, .content_in:before{
  content: '';
  display: table;
}

.content_in:after{
  clear: both;
}

.content_in_special {
    padding: 0
}

.content_in_high {
    margin-top: 35px;
}

.content_in_high .breadcrumbs {
    margin-top: -15px;
}

.content_in_high .breadcrumbs + .title_big {
    margin-top: 35px;
}

.main_news_wrapper {
    position: relative;
    padding: 40px 0 60px;
zoom: 1;
}

.main_news_wrapper:after, .main_news_wrapper:before{
  content: '';
  display: table;
}

.main_news_wrapper:after{
  clear: both;
}

.link_to_section {
    position: absolute;
    left: 0;
    bottom: 30px;
    line-height: 24px;
    color: #26327f;
    text-transform: uppercase;
font-size: 12px;
line-height: 18px;
    transition: color 0.4s ease;
}

.link_to_section:hover {
    color: #ff5252;
}

.col_flex .link_to_section {
    position: static;
    margin-top: 20px;
    display: inline-block;
}

.main_title {
    margin-bottom: 24px;
font-size: 24px;
line-height: 32px;
}

.main_title a {
    color: #151515;
}

.main_title a:hover {
    color: rgb(255, 82, 82);
}

.main_title-sep{
    height: 32px;
    overflow: hidden;
}

.main_news_title {
    position: absolute;
    left: 10px;
    top: 50px;
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    text-transform: uppercase;
    padding: 4px 8px;
    display: block;
    font-size: 12px;
    line-height: 18px;
}

.main_quote{
    font-size: 20px;
    line-height: 26px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    padding: 23px;
    background: #ffffff;
    background: rgba(255, 255, 255, .7);
    margin-bottom: 26px;
    zoom: 1;
}

.main_quote:after, .main_quote:before{
  content: '';
  display: table;
}

.main_quote:after{
  clear: both;
}

.main_quote a{
    display: block;
    color: #26327f;
    transition: color 0.4s ease;
    clear: both;
    zoom: 1;
}

.main_quote a:after, .main_quote a:before{
  content: '';
  display: table;
}

.main_quote a:after{
  clear: both;
}

.main_quote a:hover{
    color: rgb(255, 82, 82);
}

.main_quote_right {
    float: right;
    text-align: right;
    zoom: 1;
    width: 300px;
    display: block;
}

.main_quote_right:after, .main_quote_right:before{
  content: '';
  display: table;
}

.main_quote_right:after{
  clear: both;
}

.main_quote_left {
    margin-right: 300px;
    font-style: italic;
    display: block;
    word-wrap: break-word;
}

.main_quote_person{
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
    color: #3c4141;
}

.title_big {
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 40px;
    color: #151515;
}

.title_big_special {
    margin-bottom: 0;
}

.title_small, .read_content .title_small {
font-family: Roboto, arial, sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 26px;
    color: #2e2e2e;
    margin-bottom: 10px;
}

.title_thin {
font-family: Roboto, arial, sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 26px;
    color: #2e2e2e;
    padding-bottom: 20px;
}

.title_thin a {
    color: #2e2e2e;
}

.title_thin a:hover {
    color: rgb(255, 82, 82);
}

.title_border {
    border-bottom: 1px solid rgb(226, 229, 232);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.col_thin .title_thin {
    margin-bottom: 20px;
}

.logo_small{
  background-image: url('../img/svg/logo_small.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  display: inline-block;
  height: 28px;
  width: 28px;
}

.no-svg .logo_small{
  background-image: url('../img/png/logo_small.png');
}

.select.main_select {
    position: relative;
    display: inline-block;
    width: auto;
}

.main_select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 5px 20px 5px 5px;
    border: none;
    text-align: left;
    background-color: white;
    font-size: 12px;
}

.main_select:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    pointer-events: none;
}

.main_select:after{
  background-image: url('../img/svg/arrow.svg');
  background-repeat: no-repeat;
  background-size: 8px 4px;
  display: inline-block;
  height: 4px;
  width: 8px;
}

.no-svg .main_select:after{
  background-image: url('../img/png/arrow.png');
}

.hidden_wide {
    display: none;
    clear: both;
}

.is-mob {
    display: none;
}

.is-right {
    float: right;
}

.is-left {
    float: left;
}

.filter_wrapper {
    margin-bottom: 30px;
}

.filter h3 {
    display: inline-block;
}

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

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

.text-align-full {
    text-align: justify;
}

.lead {
font-size: 16px;
line-height: 26px;
    color: #3c4141;
    margin-bottom: 40px;
}

.content_wrap {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: 1;
    position: relative;
    background: rgb(255, 255, 255);
}

#pushobj {
    position: absolute;
    top: 0px;
    left: 300px;
    color: #000;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 2em;
}

@media (max-width: 1000px) {

    .main_news .content_in {
        padding: 0;
    }

    .main_news_wrapper {
        padding-bottom: 0;
    }

    .main_news_wrapper .link_to_section {
        display: block;
        margin: 0 0 30px 30px;
        clear: both;
        position: static;
    }

    .main_news_wrapper .col {
        margin-bottom: 30px;
    }

    .main_news_wrapper .col_small {
        padding: 0 30px;
        box-sizing: border-box;
    }

    .main_news_wrapper .col_narrow_wide {
    zoom: 1;
        padding: 20px 30px 0;
        background: #ffffff;
    }

    .main_news_wrapper .col_narrow_wide:after, .main_news_wrapper .col_narrow_wide:before{
    content: '';
    display: table;
  }

    .main_news_wrapper .col_narrow_wide:after{
    clear: both;
  }

    .main_news_wrapper .col_narrow_med:first-child {
        padding-right: 0;
    }

    .main_news_wrapper .col_narrow_med:nth-child(3) {
        padding-left: 0;
    }

    .main_news_wrapper .col:last-child {
        margin-bottom: 0;
    }

    .title_big {
        margin-top: 0;
    }

    .hidden_narrow {
        display: none;
    }

    .hidden_wide {
        display: block;
    }

    .main_title_small {
        margin-top: 19px;
    }
}

@media (max-width: 730px) {

    body {
        min-width: 300px;
    }

    .main_news_wrapper {
        padding: 20px 0 0;
    }

    .is-mob {
        display: block;
    }

    .is-wide {
        display: none;
    }

    .link_to_section {
        display: block;
        position: static;
        margin-top: 27px;
    }

    .title_thin {
    font-size: 16px;
    line-height: 26px;
    }

    .main_title.main_title_small {
    font-size: 12px;
    line-height: 18px;
    }

    .sep_title {
        top: 8px;
    }

    .content_in {
        padding: 0 30px;
    }

    .content_in_special {
        padding: 0;
    }

    .header {
        padding: 0 10px;
    }

    .wide_image_person {
        display: none;
    }

    .content_in_high {
        margin-top: 30px;
    }

    .title_big {
    font-size: 20px;
    line-height: 26px;
    }

    .content_wrap {
        transition: -webkit-transform 0.45s ease-in-out;
        transition: transform 0.45s ease-in-out;
        transition: transform 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
    }

    .main_news_wrapper .col_small, .main_news_wrapper .col_narrow_med {
        padding: 0 30px;
    }


    .main_title-sep {
        height: auto;
        overflow: visible;
        overflow: initial;
    }

    .main_quote_right{
        float: none;
        width: auto;
        text-align: left;
        margin-bottom: 20px;
    }

    .main_quote_left{
        margin-right: 0;
    }

    .main_news_wrapper .col_narrow_med:nth-child(3) {
        padding-left: 20px;
    }
}

.person-post {
    white-space: pre-wrap;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.search_form{
    display: none;
    position: absolute;
    background: #4f5997;
    z-index: 2;
    right: 0;
    top: 0;
    width: 0;
    height: 62px;
    transition: width 0.5s ease;
}

.search_form.is-active{
    width: 100%;
    left: 60px;
    right: 0;
}

.search_input{
    -webkit-appearance: none;
    display: block;
    height: 42px;
    border: none;
    background: #ffffff;
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    box-shadow: none;
    width: 100%;
    text-indent: 20px;
}

.input_wrapper{
    width: 100%;
    margin: 20px 0;
}

.button.search_button{
    background: #26327f;
    border-color: #26327f;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
}

.search_form .search_input{
    background: #3a458b;
    color: #ffffff;
    height: 62px;
}

.search_form .input_wrapper{
    max-width: 945px;
    margin: 0;
    padding: 0 0 0 66px;
    background: #3a458b;
    box-sizing: border-box;
}

.search_form .search_input::-webkit-input-placeholder{
    color: #ffffff;
    opacity: 0.2;
}

.search_form .search_input:focus{
    outline: none;
}

.search_form .button.search_button{
    width: 112px;
    color: #ffffff;
    background: #ff5252;
    border-color: #ff5252;
    height: 62px;
    float: left;
}

.search_form .is-right{
    float: none;
    position: absolute;
    right: 60px;
    top: 0;
}

.search_form .search_close {
    width: 62px;
    height: 62px;
    display: block;
    float: left;
    background: #3a458b;
}

.search_form .search_close:hover {
    color: #4F599A;
}

.search_form .search_close i {
    width: 62px;
    height: 62px;
    display: inline-block;
    background: url('../img/close_white.png') no-repeat center;
}

.search_form .search_icon{
    position: absolute;
    left: 30px;
    top: 22px;
}

.search_form .search_icon i {
    opacity: 0.6;
}

.search_form .search_icon i{
  background-image: url('../img/svg/search_white.svg');
  background-repeat: no-repeat;
  background-size: 15px 15px;
  display: inline-block;
  height: 15px;
  width: 15px;
}

.no-svg .search_form .search_icon i{
  background-image: url('../img/png/search_white.png');
}

.form_search_result {
    position: relative;
}

.form_search_result .input_wrapper{
    width: 100%;
    max-width: 1010px;
    float: left;
    padding-right: 110px;
    margin: 0 0 10px;
}

.form_search_result .search_input{
    border: 1px solid #e2e5e8;
    height: 65px;
}

.form_search_result .search_button{
    width: 110px;
    height: 65px;
    border: none;
    background: #ff5252;
    position: absolute;
    right: 0;
    top: 0;
}

.count_result{
    clear: both;
    color: rgb(187, 188, 188);
    font-size: 16px;
    line-height: 26px;
}

.search_filter{
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(226, 229, 232);
}

.search_filter li{
    color: rgb(38, 50, 127);
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
    line-height: 26px;
}

.search_filter li a{
    color: rgb(38, 50, 127);
}

.search_filter .selecter a{
    color: #3c4141;
}

.main__menu {
    height: 62px;
    position: relative;
    background: rgb(79, 89, 151);
}

.main__menu_list {
    list-style: none;
zoom: 1;
    position: relative;
}

.main__menu_list:after, .main__menu_list:before{
  content: '';
  display: table;
}

.main__menu_list:after{
  clear: both;
}

.main__menu_item {
    display: block;
    float: left;
    margin-right: 20px;
    color: rgb(255, 255, 255);
    background: rgb(79, 89, 151);
}

.main__menu_list.is-right {
    position: absolute;
    right: 30px;
    top: 0;
    float: none;
    margin: 0;
    overflow: hidden;
}

.main__menu_item a {
    color: rgb(255, 255, 255);
    line-height: 62px;
    transition: color 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
font-family: Roboto, arial, sans-serif;
font-weight: 600;
}

.main__menu_item a:hover {
    opacity: 1;

}

.header_wrapper .main__menu_item.is-selected a {
    opacity: 1;
}

/*right menu*/

.main__menu_list.is-right .main__menu_item {
    margin: 0;
    transition: background 0.4s ease;
}

.main__menu_list.is-right .main__menu_item:hover {
    background: rgb(255, 82, 82);
}

.main__menu_list.is-right .main__menu_item a {
    height: 62px;
    width: 62px;
    display: block;
    text-align: center;
}

.main__menu_item i {
    opacity: 0.8;
    transition: opacity 0.4s ease;
    vertical-align: middle;
}

.main__menu_item a:hover i {
    opacity: 1;
}

.search i{
  background-image: url('../img/svg/search_white.svg');
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: inline-block;
  height: 20px;
  width: 20px;
}

.no-svg .search i{
  background-image: url('../img/png/search_white.png');
}

.calendar i{
  background-image: url('../img/svg/calendar_white.svg');
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: inline-block;
  height: 20px;
  width: 20px;
}

.no-svg .calendar i{
  background-image: url('../img/png/calendar_white.png');
}

.letter i{
  background-image: url('../img/svg/message_white.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .letter i{
  background-image: url('../img/png/message_white.png');
}

/*submenu*/

.main__submenu_list .main__menu_item a {
    color: rgb(79, 89, 151);
    opacity: 1;
}

.main__submenu_list .main__menu_item a.selected {
    color: rgb(255, 82, 82);
}

.main__submenu_list .main__menu_item a:hover {
    color: rgb(255, 82, 82);
}

.main__submenu_list {
    display: block;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(226, 229, 232);
    min-height: 62px;
zoom: 1;
}

.main__submenu_list:after, .main__submenu_list:before{
  content: '';
  display: table;
}

.main__submenu_list:after{
  clear: both;
}

.main__submenu_list .main__menu_item {
    background-color: rgb(255, 255, 255);
}

.main__submenu_list .main__menu_item:first-child {
    padding-left: 0px;
}

/*additional menu on top */

.additional__menu {
    padding: 12px 0 0;
    color: rgb(255, 255, 255);
    background: rgb(38, 50, 127);
font-size: 13px;
line-height: 18px;
}

.additional__menu .dropdown {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
}

.additional__menu .dropdown:after{
  background-image: url('../img/svg/arrow_white.svg');
  background-repeat: no-repeat;
  background-size: 14px 6px;
  display: inline-block;
  height: 6px;
  width: 14px;
}

.no-svg .additional__menu .dropdown:after{
  background-image: url('../img/png/arrow_white.png');
}

.additional__menu .dropdown:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    pointer-events: none;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.additional__menu .dropdown.is-open:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.additional__menu_list {
    padding: 20px 0;
    border-bottom: 1px solid rgb(159, 165, 197);
}

.title_region {
    color: rgb(255, 82, 82);
}

.additional__menu_list a {
    color: rgb(255, 255, 255);
font-size: 14px;
line-height: 24px;
    line-height: 1.4;
    padding: 10px 0;
    display: block;
    opacity: 0.7;
}

.additional__menu_list .title_thin {
    color: rgb(255, 255, 255);
}

.additional__menu_list a:hover {
    opacity: 1;
}

.additional__menu_list a.selected {
    opacity: 1;
}

.additional__menu .is-right a {
    margin-right: 56px;
}

.additional__menu .is-right a:last-child {
    margin: 0;
}

.additional__menu .is-right a:hover {
    color: rgb(38, 50, 127);
}

.special_version {
    margin-right: 10px;
}

.special_version{
  background-image: url('../img/svg/special.svg');
  background-repeat: no-repeat;
  background-size: 21px 9px;
  display: inline-block;
  height: 9px;
  width: 21px;
}

.no-svg .special_version{
  background-image: url('../img/png/special.png');
}

.main__menu_list.is-active {
    width: 100%;
    padding: 0;
}

.main__menu_list.is-active .main__menu_item {
    float: right;
}

.hidden {
    display: none;
}

@media (max-width: 730px) {
    .additional__menu .is-right {
        display: none;
    }

    .main__menu nav .main__submenu_list {
        display: none;
    }

    .main__submenu_list {
        display: none;
    }

    .main__menu_list.is-right {
        display: none;
    }

    .header_wrapper .main__menu_list{
        display: none;
    }
}

/*mobile menu*/

.mobile__menu_wrapper {
    display: none;
    width: 400px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: rgb(79, 89, 151);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile__menu {
    z-index: 1;
    padding: 25px 0;
}

.mobile__menu a {
    font-size: 16px;
    line-height: 26px;
    position: relative;
    padding: 5px 30px 5px 23px;
    display: inline-block;
}

.mobile__menu_wrapper .main__menu_item {
    float: none;
    margin: 0;
}

.mobile__menu .mobile__menu_item{
    margin: 0 0 25px;
    border-bottom: 1px solid rgb(38, 50, 127);
    padding-bottom: 25px;
}

.mobile__menu .mobile__menu_item:last-child {
    border: none;
}

.mobile__menu_wrapper form {
    padding: 0 30px;
}

.mobile__submenu .main__menu_item{
    border-left: 7px solid transparent;
}

.mobile__submenu .main__menu_item:hover,
.mobile__submenu .is-selected {
    background: rgb(38, 50, 127);
    border-color: rgb(242, 245, 248);
}

.mobile__submenu .main__menu_item:hover a,
.mobile__submenu .is-selected a {
    opacity: 1;
}

.mobile__menu .mobile__menu_title{
    font-size: 20px;
    line-height: 26px;
    opacity: 1;
    font-family: Roboto, arial, sans-serif;
    font-weight: 700;
    display: block;
    padding: 5px 30px;
}

.mobile__menu .mobile__submenu {
    margin-top: 10px;
}

.mobile__menu .button.search_button {
    background: rgb(38, 50, 127);
    border-color: rgb(38, 50, 127);
}

/*toggle*/

.nav_toggle {
    display: none;
    width: 62px;
    height: 62px;
    position: relative;
}

.nav_toggle i {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 20px;
    height: 3px;
    margin-top: -2px;
    background-color: #fff;
    font-size: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    transition: background-color 0.3s;
}

.nav_toggle i:before, .nav_toggle i:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: '';
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.nav_toggle i:before {
    -webkit-transform: translateY(-250%);
        -ms-transform: translateY(-250%);
            transform: translateY(-250%);
}

.nav_toggle i:after {
    -webkit-transform: translateY(250%);
    -ms-transform: translateY(250%);
        transform: translateY(250%);
}

/*styles for main menu*/

.is-narrow-nav .nav_toggle {
    display: inline-block;
}

.is-narrow-nav .main__menu_list {
    display: none;
}

/*current section*/

.nav_current_item {
    display: inline-block;
    position: relative;
    vertical-align: top;
    color: rgb(255, 255, 255);
font-size: 20px;
line-height: 26px;
    line-height: 62px;
}

/*open menu */

.is-open-menu {
    overflow: hidden;
}

.is-open-menu .nav_toggle i {
    background-color: transparent;
}

.is-open-menu .nav_toggle i:before {
    -webkit-transform: translateY(0) rotate(45deg);
        -ms-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
}

.is-open-menu .nav_toggle i:after {
    -webkit-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
}

.is-open-menu .content_wrap {
    -webkit-transform: translate3d(400px, 0, 0);
            transform: translate3d(400px, 0, 0);
}

@media (max-width: 730px) {
    .is-open-menu, html {
        min-height: 100%;
        height: 100%;
    }

    .mobile__menu_wrapper {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .nav_current_item {
        margin-left: 0;
        font-size: 14px;
        line-height: 24px;
        line-height: 62px;
    }

    .mobile__menu_close{
    background-image: url('../img/svg/close.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    display: inline-block;
    height: 20px;
    width: 20px;
  }

    .no-svg .mobile__menu_close{
    background-image: url('../img/png/close.png');
  }

    .mobile__menu_close {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 40px;
        z-index: 12;
        text-align: center;
        cursor: pointer;
        background-position: center;
        display: block;
    }

    .is-open-menu .content_wrap {
        -webkit-transform: translate3d(100%, 0, 0);
                transform: translate3d(100%, 0, 0);
    }

    .is-open-menu{
        background: rgb(79, 89, 151);
    }
}

.cols {
    clear: both;
}

.cols_wrapper {
zoom: 1;
}

.cols_wrapper:after, .cols_wrapper:before{
  content: '';
  display: table;
}

.cols_wrapper:after{
  clear: both;
}

.col {
    float: left;
    margin-right: 3%;
    min-height: 1px;
}

/*width of cols*/

.col_thin {
    width: 24.7%;
}

.col_small {
    width: 31%;
}

.col_medium {
    width: 48%;
    box-sizing: border-box;
}

.col_wide {
    width: 66%;
    max-width: 735px;
}

.col_wide .col_wide {
    width: 60.8%;
    margin-right: 8.7%;
}

.col_wide .col_thin {
    width: 30%;
}

/*indents*/

.col:last-of-type {
    margin-right: 0;
}

.leader-4-cols {
    margin-left: 0 !important;
}

/*Right column*/

.col.is-right {
    float: right;
}

.col_thin.is-right {
    margin-right: 0;
    margin-left: 3%;
}

.col_small.is-right {
    margin-right: 0;
    margin-left: 3%;
}

@media (max-width: 1000px) {

    /*width of cols*/
    .col_small.col_narrow_med, .col_medium.col_narrow_med {
        width: 45.2%;
        margin-right: 5.2%;
    }

    .col_medium.col_narrow_med:first-of-type{
        padding-left: 30px;
    }

    .col_wide .col_thin, .col_wide .col_wide {
        width: auto;
        float: none;
    }

    .col_thin {
        width: 24.7%;
    }

    .col_wide{
        max-width: inherit;
    }

    .col_narrow_wide {
        width: 100%;
        float: none;
        clear: both;
        padding-top: 20px;
        max-width: none;
        max-width: initial;
    }

    /* indents */
    .col + .col {
        margin-right: 0;
    }

    .col_flex_wide .col_flex:nth-child(2n+1) {
        margin-left: 0 !important;
    }

    .col_flex_wide .col_flex:nth-child(3), .col_flex_wide .col_flex:nth-child(4) {
        margin-top: 30px;
    }

    .leader-2-cols, .leader-4-cols {
        margin-left: 0 !important;
        margin-top: 30px;
    }

    .leader-2-cols:first-child, .leader-4-cols:first-child {
        margin-top: 0 !important;
    }

    /*Right column*/
    .col_narrow_wide.is-right {
        padding-top: 0;
        margin-bottom: 40px;
    }

}

@media (max-width: 730px) {
    /*width of cols*/
    .col {
        width: auto !important;
        float: none !important;
        margin-right: 0 !important;
    }

    .col_narrow_wide li {
        width: auto;
        display: block;
    }

    .col_medium {
        width: auto;
    }

    /*Right column*/
    .col_small.is-right {
        margin-left: 0;
        margin-bottom: 20px;
    }

    /* indents */
    .person_group .title_big, .cols_flex {
        margin: 0;
    }

    .col_narrow_wide {
        padding-top: 0;
    }

}

.col_flex {
    position: relative;
    margin-left: 2.3%;
    min-width: 210px;
    max-width: 260px;
    width: 23.2%;
    float: left;
}

.col_flex_medium {
    width: 48.8%;
    max-width: inherit;
    min-width: inherit;
}

.col_flex_wide {
    width: 100%;
    margin-left: 0;
zoom: 1;
    clear: both;
    max-width: inherit;
    min-width: inherit;

}

.col_flex_wide:after, .col_flex_wide:before{
  content: '';
  display: table;
}

.col_flex_wide:after{
  clear: both;
}

.cols_flex > .col_flex {
    margin-bottom: 40px;
}

.col_flex_wide .main_title {
color: rgb(21, 21, 21);
text-align: center;
font-size: 14px;
line-height: 24px;
font-family: Roboto, arial, sans-serif;
font-weight: 600;
position: relative;
text-transform: uppercase;
margin-bottom: 40px;
}

.col_flex_wide .main_title:after{
  content: '';
  height: 1px;
  width: 100%;
  border: none;
  background: rgb(187, 188, 188);
  position: absolute;
  top: 11px;
  left: 0;
}

.col_flex_wide .main_title span {
    padding: 0 10px;
    background: rgb(255, 255, 255);
    z-index: 1;
    position: relative;
}

.col_flex_medium .col_flex {
    width: 48.8%;
}

.col_flex_first {
    margin-left: 0;
}

.col_flex .col_flex:first-child {
    margin-left: 0;
}

@media (max-width: 1000px) {
    .col_narrow_flex .hentry {
        width: 45%;
        float: left;
    }
}

.flexbox .cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}

.flexbox .cols_flex {
    margin-top: 50px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.flexbox .col_flex {
    -webkit-flex-basis: 23.2%;
        -ms-flex-preferred-size: 23.2%;
            flex-basis: 23.2%;
    float: none;
    width: auto;
}

.flexbox .col_flex_medium {
    -webkit-flex-basis: 48.8%;
        -ms-flex-preferred-size: 48.8%;
            flex-basis: 48.8%;
}

.flexbox .col_flex_wide {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
}

.flexbox .col_flex_medium .col_flex {
    -webkit-flex-basis: 48.8%;
        -ms-flex-preferred-size: 48.8%;
            flex-basis: 48.8%;
    margin-left: 5.2%;
    padding-bottom: 0;
    width: auto;
}

.flexbox .col_flex .col_flex:first-child {
    margin-left: 0;
}

.flexbox .col_flex_wide .cols {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.flexbox .col_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
}

@media (max-width: 1000px) {

    /*indents of cols*/
    .cols_flex, .cols {
        margin-top: 22px;
    }

    .flexbox .col_flex,
    .flexbox .col_flex_wide .col_flex,
    .flexbox .col_flex_medium .col_flex {
        -webkit-flex-basis: 45.2%;
            -ms-flex-preferred-size: 45.2%;
                flex-basis: 45.2%;
        margin-left: 5.2%;
        max-width: none;
        max-width: initial;
    }

    .flexbox .col_flex_wide {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
        margin-left: 0;
    }

    .flexbox .col_flex_medium {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
    }

    .flexbox .col_narrow_flex {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }

    .flexbox .col_narrow_flex .hentry {
        width: 45%;
        float: none;
        margin-right: 5%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        padding-bottom: 30px;
    }

    .flexbox .col_flex_medium .col_flex:first-of-type{
        margin-left: 0;
    }

}

@media (max-width: 730px) {

    .flexbox .col_flex,
    .flexbox .col_flex_wide .col_flex,
    .flexbox .col_flex_medium .col_flex {
        display: block;
        margin-left: 0;
        max-width: none;
        max-width: initial;
        margin-bottom: 20px;
        margin-top: 0;
        padding: 0;
    }

    .flexbox .cols_flex,
    .flexbox .cols {
        display: block;
    }


    .flexbox .col_narrow_flex {
        display: block;
    }

    .flexbox .col_narrow_flex .hentry {
        width: auto;
        margin-right: 0;
    }

    .flexbox .col_narrow_flex .hentry:nth-child(2) {
        margin-top: 26px;
    }
}

.main_news_wrapper .main_title-sep{
    display: none;
}

@media (max-width: 1000px) {
    .col_flex_medium .main_title {
        color: rgb(21, 21, 21);
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        font-family: Roboto, arial, sans-serif;
        font-weight: 600;
        position: relative;
        text-transform: uppercase;
        margin-bottom: 40px;
        margin-bottom: 25px;
    }
    .col_flex_medium .main_title:after{
    content: '';
    height: 1px;
    width: 100%;
    border: none;
    background: rgb(187, 188, 188);
    position: absolute;
    top: 11px;
    left: 0;
  }

    .col_flex_wide .main_title {
        margin-bottom: 25px;
    }

    .col_flex_medium .main_title span {
        padding: 0 10px;
        background: #ffffff;
        z-index: 1;
        position: relative;
    }
}

@media (max-width: 730px) {
    .main_title {
    font-size: 18px;
    line-height: 27px;
    }

    .main_title-sep {
        color: rgb(21, 21, 21);
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        font-family: Roboto, arial, sans-serif;
        font-weight: 600;
        position: relative;
        text-transform: uppercase;
        margin-bottom: 40px;
        margin-bottom: 20px;
        margin-top: 38px;
    }

    .main_title-sep:after{
    content: '';
    height: 1px;
    width: 100%;
    border: none;
    background: rgb(187, 188, 188);
    position: absolute;
    top: 11px;
    left: 0;
  }

    .main_title-sep span {
        padding: 0 10px;
        background: rgb(255, 255, 255);
        z-index: 1;
        position: relative;
    }

    .main_news_wrapper .main_title-sep{
        display: block;
        margin-left: 20px;
        margin-right: 20px;
    }

    .main_news_wrapper .main_title-sep span{
        background: #f2f5f8;
    }
}

.header {
    min-height: 130px;
    background: rgb(38, 50, 127);
    color: rgb(255, 255, 255);
}

.header_title {
    padding: 33px 20px 33px 0;
    margin-left: 80px;
    font-size: 24px;
    line-height: 32px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
}

.header_title a {
    color: rgb(255, 255, 255);
}

.header_logo {
    float: left;
    margin-left: 0;
    margin-top: 32px;
}

.header_logo{
  background-image: url('../img/svg/logo_big_white.svg');
  background-repeat: no-repeat;
  background-size: 53px 53px;
  display: inline-block;
  height: 53px;
  width: 53px;
}

.no-svg .header_logo{
  background-image: url('../img/png/logo_big_white.png');
}

@media (max-width: 730px) {
    .header_logo {
        display: none;
    }

    /*@mixin icon .header_logo, logo_small_white, 34, 37;*/

    .header_title {
        font-size: 16px;
        line-height: 26px;
        margin-left: 0;
        height: auto;
        line-height: 1.4;
        padding-top: 20px;
    }

    .header_title span {
        display: block;
        font-size: 12px;
        line-height: 18px;
        margin-top: 10px
    }

    .header {
        min-height: 124px;
    }

    .header .content_in{
        padding: 0 20px;
    }
}

.hentry {
    border-top: 1px solid #e2e5e8;
    padding-top: 23px;
    margin-top: 26px;
    display: block;
zoom: 1;
}

.hentry:after, .hentry:before{
  content: '';
  display: table;
}

.hentry:after{
  clear: both;
}

.hentry:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.lister-page + .lister-page .hentry:first-of-type {
    border-top: 1px solid #e2e5e8;
    padding-top: 23px;
    margin-top: 26px;
}

.col_flex .hentry {
    border-top: 1px solid #e2e5e8;
    padding-top: 23px;
    margin-top: 26px;
}

.cols_first .col_flex .hentry_first,
.cols_first .col_flex .hentry:first-of-type,
.col_flex_narrow .hentry_first,
video + .hentry_small.hentry_first {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.hentry.without_sep {
    border-top: none;
    padding-top: 0;
}

.hentry_title {
    color: #26327f;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 27px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    line-height: 25px;
    transition: color 0.4s ease;
}

.hentry_date {
font-size: 12px;
line-height: 18px;
    line-height: 26px;
    color: #3c4141;
    transition: color 0.4s ease;
}

.hentry_date span {
    color: rgb(38, 50, 127);
    margin-left: 20px;
}

.hentry_meta {
font-size: 12px;
line-height: 18px;
    color: #3c4141;
    line-height: 25px;
}

.hentry_text {
    color: #3c4141;
    margin-top: 4px;
font-size: 14px;
line-height: 24px;
}

.hentry_image_wrapper img {
    width: 100%;
}

.hentry_image_wrapper_video {
    position: relative;
}

.hentry_image_wrapper_video i {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    z-index: 2;
    pointer-events: none;
}

.hentry_image_wrapper_video i{
  background-image: url('../img/svg/video.svg');
  background-repeat: no-repeat;
  background-size: 80px 80px;
  display: inline-block;
  height: 80px;
  width: 80px;
}

.no-svg .hentry_image_wrapper_video i{
  background-image: url('../img/png/video.png');
}

.hentry_image_wrapper {
    margin: 4px 20px 0 0;
    width: 200px;
    float: left;
}

.hentry_main .hentry_image_wrapper {
    margin: 4px 20px 20px 0;
}

.hentry_image_wrapper + .hentry_title {
    margin-left: 230px;
}

.hentry_image_wrapper + .hentry_title + .hentry_date {
    margin-left: 230px;
}

.hentry_main .hentry_image_wrapper + .hentry_title + .hentry_date {
    margin-left: 0
}

.hentry_main {
    padding-bottom: 0;
    margin-bottom: 14px;
    border-bottom: none;
}

.hentry_main .hentry_title {
    margin: 11px 0 4px;
font-size: 24px;
line-height: 32px;
    line-height: 34px;
font-family: Roboto, arial, sans-serif;
font-weight: 700;
}

.hentry_main .hentry_image_wrapper {
    max-width: none;
    max-width: initial;
    float: none;
    width: auto;
}

.hentry_small .hentry_title {
font-size: 14px;
line-height: 24px;
}

.hentry_small {
    margin-top: 23px;
}

.hentry:first-child .hentry_image_wrapper {
    margin-top: 0;
}

.hentry:hover .hentry_title {
    color: rgb(255, 82, 82);
}

.hentry:hover .hentry_date {
    color: rgb(21, 21, 21);
}

.col_flex_medium .hentry {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 40px;
}

.col_flex_medium .hentry_date, .col_flex_medium .hentry_meta {
    position: absolute;
    bottom: 0;
    left: 0;
}

.col_flex video {
    margin-bottom: 20px;
}

@media (max-width: 1000px){
    .col_narrow_flex .hentry:nth-child(2) {
        margin-top: 0;
        padding-top: 0;
        border: none;
    }

    .col_narrow_flex .hentry_date {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .main_news .hentry_image_wrapper{
        display: none;
    }

    .main_news .hentry_image_wrapper + .hentry_title,
    .main_news .hentry_image_wrapper + .hentry_title + .hentry_date{
        margin-left: 0;
    }

    .main_news .hentry_main .hentry_image_wrapper{
        display: block;
    }
}

@media (max-width: 730px) {
    .main_news .hentry_main .hentry_image_wrapper, .hentry_image_wrapper, .hentry_main .hentry_text, .main_news_title {
        display: none;
    }

    .hentry_title {
    font-size: 14px;
    line-height: 24px;
    }

    .hentry_main .hentry_title {
    font-size: 20px;
    line-height: 26px;
        margin: 0 0 4px;
    }

    .hentry {
        border: none;
        padding-top: 0;
    }

    .hentry_image_wrapper + .hentry_title, .hentry_image_wrapper + .hentry_title + .hentry_date {
        margin-left: 0;
    }
}

.list_small {
    display: block;
    padding: 20px 0;
}

.list_small.list_small_main {
    padding: 10px 0;
}

.list_small_item {
    display: block;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

.list_small_item img {
    position: absolute;
    left: 30px;
    top: 15px;
}

.list_small_item a{
    transition: color 0.4s ease, background 0.4s ease;
    color: #2e2e2e;
    position: relative;
    padding: 10px 30px 10px 70px;
    display: block;
}

.list_small_item a:hover{
    color: rgb(255, 82, 82);
}

.right_block .list_small_item a:hover{
    background: rgb(255, 82, 82);
    color: rgb(255, 255, 255);
}

.right_block .list_small_item.selected a{
    background: rgb(255, 82, 82);
    color: rgb(255, 255, 255);
}

/*persons on index page*/

.main_persons {
    text-align: center;
}

.main_person {
    width: 150px;
    margin: 0 25px 39px 0;
    display: inline;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    vertical-align: top;
}

.main_person_img {
    width: 60px;
    height: 60px;
    margin-bottom: 21px;
}

.main_person_title {
    color: rgb(38, 50, 127);
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    transition: color 0.4s ease;
}

.main_person_description {
    color: rgb(187, 188, 188);
    transition: color 0.4s ease;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.main_person:hover .main_person_title{
    color: rgb(255, 82, 82);
}

.main_person:hover .main_person_description {
    color: rgb(255, 82, 82);
}

/*persons page*/

.person{
    margin-bottom: 60px;
    color: rgb(21, 21, 21);
    padding-right: 20px;
    max-width: 327px;
    width: 50%;
    box-sizing: border-box;
}

.cols_flex .person:nth-child(2n){
    padding-right: 0;
}

.person_group{
    margin-bottom: 8px;
}

.person_image {
    width: 100%;
}

.person_image img {
    height: 130px;
    width: auto;
}

.person_small .person_image{
    float: left;
    display: block;
    width: auto;
    margin-right: 20px;
}

.person_small .person_image img {
    width: auto;
    height: 40px;
}

.person_title {
    color: rgb(38, 50, 127);
    margin-top: 20px;
}

.person_title span{
    display: block;
}

.person_title_special{
    text-transform: uppercase;
}

.person_position{
    display: block;
    margin-bottom: 5px;
}

.person_caption{
    font-size: 16px;
    line-height: 26px;
    color: #3c4141;
}

.block_center{
    text-align: center;
}

.block_center .title_big{
    margin-bottom: 60px;
}

.block_center .person{
    display: inline-block;
    vertical-align: top;
    width: 275px;
    box-sizing: border-box;
}

.block_center .person_title {
    display: block;
}

.wide_image_person {
    width: 250px;
    float: left;
    margin-bottom: 40px;
}

.wide_image_person img {
    width: 100%;
}

.person_title_wrapper {
    margin-left: 270px;
}

.person_bio{
    margin-top: 34px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3c4141;
    clear: both;
    padding-right: 30px;
}

.person_bio p{
    margin-bottom: 10px;
}

.person_bio h2{
    margin-bottom: 20px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 700;
}

.list_simple{
    @mixint font_14;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    color: #3c4141;
    margin-top: 10px;
}

.list_simple li{
    display: block;
    margin-bottom: 35px;
}

.list_simple_title{
    @mixint font_16;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    color: rgb(38, 50, 127);
    display: block;
    margin-bottom: 10px
}

/*dl*/

.list_date{
    margin-top: 34px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3c4141;
}

.list_date dt{
    float: right;
    width: 90px;
    font-size: 14px;
    line-height: 24px;
}

.list_date dd{
    margin: 0 140px 25px 0;
}

.themes_list .cols_flex, .themes_list{
    margin-top: 0;
}

.themes_list .theme{
    margin-bottom: 58px;
}

.filter_list{
    position: relative;
}

.filter_list .all{
    display: none;
}

.filter_list .close{
    font-size: 0;
    position: absolute;
    right: 0px;
    top: 0;
    width: 44px;
    height: 44px;
    background-position: center;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.filter_list .close i{
  background-image: url('../img/svg/close.svg');
  background-repeat: no-repeat;
  background-size: 12px 13px;
  display: inline-block;
  height: 13px;
  width: 12px;
}

.no-svg .filter_list .close i{
  background-image: url('../img/png/close.png');
}

.right_block .filter_list .close:hover i{
  background-image: url('../img/svg/close_blue.svg');
  background-repeat: no-repeat;
  background-size: 12px 13px;
  display: inline-block;
  height: 13px;
  width: 12px;
}

.no-svg .right_block .filter_list .close:hover i{
  background-image: url('../img/png/close_blue.png');
}

.filter_list .close i {
    font-size: 0;
    width: 44px;
    height: 44px;
    background-position: center;
    cursor: pointer;
    padding: 0;
}

.right_block .filter_list .close:hover i {
    width: 44px;
    height: 44px;
    background-position: center;
}

.subscribe_block {
    margin-top: 60px;
}

.subscribe_list {
    zoom: 1;
    list-style: none;
}

.subscribe_list:after, .subscribe_list:before{
  content: '';
  display: table;
}

.subscribe_list:after{
  clear: both;
}

.subscribe_list li {
    float: left;
    width: 50%;
    font-size: 16px;
    line-height: 26px;
    line-height: 36px;
    margin: 0 !important;
    padding: 0 !important;
}

.subscribe_list li:before{
    display: none;
}

.news-list_item:after{
    content: '';
    display: table;
    clear: both;
}

.news-list_item_title a{
    display: block;
}

.news-list_item__image{
    float: left;
    width: 60px;
}

.read_content .news-list_item_title{
    margin-bottom: 0;
}

.news-list_item__caption{
    margin-left: 100px;
    display: block;
}

.news-list_item__caption strong{
    top: -5px;
    position: relative;
}

@media(max-width: 1000px){
    .person{
        max-width: none;
        max-width: initial;
    }

    .person{
        padding-right: 40px;
    }

    .block_center {
        text-align: left;
    }

    .block_center .person {
        width: 49%;
        box-sizing: border-box;
    }

    .block_center .person:nth-child(2n) {
        padding-right: 0;
    }

    .main_news_wrapper .list_small_main {
        padding: 0;
    }

    .col_narrow_wide .list_small .list_small_item {
        display: inline-block;
        width: 49%;
    }
}

@media(max-width: 730px){
    .main_person_img {
        display: none;
    }
    .main_person {
        width: 50%;
        margin: 0;
        padding: 0 20px 20px 0;
        box-sizing: border-box;
        float: left;
        text-align: center;
        font-size: 13px;
        line-height: 18px;
    }

    .person_title_wrapper {
        margin-left: 0;
    }

    .person_image{
        display: none;
    }

    .person, .block_center .person{
        width: auto;
        display: block;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .block_center .title_big{
        margin-bottom: 0;
    }

    .person_title{
        padding-bottom: 0;
    }

    .person_title span{
        display: inline;
    }

    .person_caption{
        font-size: 12px;
        line-height: 18px;
    }

    .person_bio h2{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .person_group {
        margin-bottom: 40px;
    }

    .main_news_wrapper .col_narrow_wide .main_map .list_small_item:last-child {
        margin-bottom: 0;
    }

    .col_narrow_wide .list_small .list_small_item {
        display: block;
        width: auto;
    }

    .news-list_item__image {
        float: none;
        margin-bottom: 10px;
    }

    .news-list_item__caption {
        margin-left: 0;
    }

    .news-list_item__caption strong {
        top: 0;
    }

}

.footer {
zoom: 1;
    margin-top: 46px;
font-size: 13px;
line-height: 18px;
    padding: 60px 0 40px;
    background: rgb(242, 245, 248);
}

.footer:after, .footer:before{
  content: '';
  display: table;
}

.footer:after{
  clear: both;
}

.footer_col {
    float: left;
    width: 23.2%;
    margin-right: 2.4%;
    box-sizing: border-box;
}

.footer_wide {
    width: 48.4%;
}

.footer_col.footer_col_last {
    margin-right: 0;
}

.footer_title {
    color: rgb(38, 50, 127);
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 18px;
}

.footer_item {
    margin-bottom: 18px;
    position: relative;
}

.footer_item:last-child{
    margin-bottom: 0;
}

.footer_col a{
    color: #3c4141;
    transition: color 0.3s ease;
}

.footer_col a:hover{
    color: rgb(38, 50, 127);
}

.footer .main_wrapper {
    padding: 62px 0;
    background: #f8fafb;
}

.footer_description {
zoom: 1;
    padding: 40px 0 0;
font-size: 12px;
line-height: 18px;
}

.footer_description:after, .footer_description:before{
  content: '';
  display: table;
}

.footer_description:after{
  clear: both;
}

.footer_description .footer_col_special {
    width: 32%;
    margin-right: 2.3%;
}

.footer_caption {
font-family: Roboto, arial, sans-serif;
font-weight: 400;
    display: block;
}

.footer_col p {
font-family: Roboto, arial, sans-serif;
font-weight: 300;
    line-height: 20px;
    margin-bottom: 20px;
}

.footer_col.footer_copy {
    color: #505152;
    position: relative;
    padding-left: 60px;
}

.footer_col.footer__license{
    margin-top: 60px;
}

.footer_logo{
  background-image: url('../img/svg/logo_small_grey.svg');
  background-repeat: no-repeat;
  background-size: 38px 38px;
  display: inline-block;
  height: 38px;
  width: 38px;
}

.no-svg .footer_logo{
  background-image: url('../img/png/logo_small_grey.png');
}

.footer_logo {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.share {
    text-align: right;
}

.vk {
    display: block;
    margin-top: 40px;
}

/*.vk i, .tw i, .inst i {*/

/*background-repeat: no-repeat;*/

/*height: 20px;*/

/*width: 20px;*/

/*display: block;*/

/*position: absolute;*/

/*left: -30px;*/

/*top: 0;*/

/*opacity: 0.4;*/

/*}*/

/*.vk i {*/

/*background: url("../img/vk.png");*/

/*display: inline-block;*/

/*}*/

/*.tw i {*/

/*background: url("../img/twitter.png");*/

/*background-repeat: no-repeat;*/

/*}*/

/*.inst i {*/

/*background: url("../img/instagramm.png");*/

/*background-repeat: no-repeat;*/

/*}*/

/*.special i{*/

/*background: url("../img/svg/special.svg");*/

/*background-size: 12px 9px;*/

/*background-repeat: no-repeat;*/

/*width: 12px;*/

/*height: 9px;*/

/*position: absolute;*/

/*left: -30px;*/

/*top: 0;*/

/*}*/

@media(max-width: 730px) {
    .footer{
        padding-bottom: 20px;
    }

    .footer_col{
        float: none;
        width: auto;
        margin-bottom: 18px;
    }

    .footer_col_special{
        font-family: Roboto, arial, sans-serif;
        font-weight: 600;
    }

    .footer_col_special a{
        color: rgb(38, 50, 127);
    }

    .vk{
        margin-top: 0;
    }
}

.map {
    overflow: hidden;
    margin-bottom: 30px;
}

.main_map {
    display: block;
    overflow: hidden;
}

.main_map .map img {
    width: 100%;
}

.main_map .list_small {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.main_map .list_small_item {
    box-sizing: border-box;
    -webkit-flex-basis: 43%;
        -ms-flex-preferred-size: 43%;
            flex-basis: 43%;
    margin-right: 14%;
    float: none;
    margin-bottom: 10px;
font-size: 12px;
line-height: 18px;
}

.main_map .list_small_item:nth-child(2n) {
    margin-right: 0;
}

.main_map .list_small_item, .main_map .list_small_item a {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.main_map .list_small_item img {
    position: static;
    width: 25px;
}

.main_map .list_small_item span {
    margin-left: 20px;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.main_map p {
font-size: 14px;
line-height: 24px;
    margin-bottom: 10px;
}

.map_title {
font-size: 14px;
line-height: 24px;
font-family: Roboto, arial, sans-serif;
font-weight: 700;
    display: block;
    color: rgb(38, 50, 127);
    text-transform: uppercase;
    margin: 30px 0 5px;
    transition: color $ transition;
}

.map_title:hover {
    color: rgb(255, 82, 82)
}

@media (max-width: 1000px) {
    .district_map, .map-container {
        /*display: none;*/
    }

    .col_narrow_wide .main_map .list_small_item {
        -webkit-flex-basis: 29.2%;
            -ms-flex-preferred-size: 29.2%;
                flex-basis: 29.2%;
        margin-right: 5.2%;
        font-size: 16px;
        line-height: 26px;
        width: auto;
    }

    .map_description p {
        display: none;
    }

    .map_title {
        text-align: center;
        position: relative;
        display: block;
        margin-bottom: 24px;
        color: rgb(21, 21, 21);
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
        text-transform: uppercase;
    }

    .map_title span {
        padding: 0 10px;
        background: #fff;
        z-index: 1;
        position: relative;
    }

    .map_title:after {
        content: '';
        height: 1px;
        width: 100%;
        border: none;
        background: rgb(226, 229, 232);
        position: absolute;
        top: 11px;
        left: 0;
    }
}

@media (max-width: 730px) {

    .district_map, .map-container {
        display: none;
    }

    .col_narrow_wide .main_map .list_small_item {
        -webkit-flex-basis: 47%;
            -ms-flex-preferred-size: 47%;
                flex-basis: 47%;
        margin-right: 3%;
    font-size: 13px;
    line-height: 18px;
        width: auto;
    }

    .main_map .list_small_item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 450px) {
    .main_map .list_small {
        display: block;
    }

    .col_narrow_wide .main_map .list_small_item {
        width: 100%;
    }

    .main_map .list_small_item {
        margin-right: 0;
    }
}

/*Russia map*/

#map-bubble {
    display: none;
    position: absolute;
    z-index: 100;
    font-size: 11px;
    line-height: 2em;
    text-align: center;
}

#map-bubble:after {
    content: "";
    position: relative;
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: rgb(38, 50, 127) transparent;
    display: inline;
    z-index: 1;
}

#map-bubble.bubble-multiple #regiontitle {
    background: #606778
}

#map-bubble.bubble-multiple:after {
    border-color: #606778 transparent;
}

#map-bubble #regiontitle {
    color: #FEFEFE;
    background: rgb(38, 50, 127);
    padding: 0 6px;
    border-radius: 3px;
}

#map-bubble #regiontitle {
    margin: auto
}

.map-world, .map-russia {
    position: relative;
    height: 400px !important;
    width: 100%
}

.map-world, .map-russia, #map-bubble {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.map-scale {
    position: absolute;
    padding-top: 10px;
    padding-left: 10px;
    z-index: 10;
}

.map-scale button {
    border: none;
    background: none;
    text-align: center;
    cursor: pointer
}

.map-scale button:first-child {
    padding-right: 12px
}

.map-scale button:focus {
    outline: none
}

.map-scale button i {
    display: block;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    width: 24px;
    height: 24px
}

.map-scale.inactive {
    cursor: default;
    color: #cdcdcd;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
    opacity: 0.2;
    pointer-events: none
}

.map-scale .scale-minus i {
    width: 28px;
    height: 28px;
    background-size: 28px, 28px;
    background-repeat: no-repeat;
    background-image: url('../img/png/map_minus-28x28.png?1435065919');
    background-image: url('../img/svg/map_minus.svg?1428001627'), none;
    display: -moz-inline-stack;
    display: inline-block;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/static/img/png/map_minus-28x28.png', sizingMethod='crop')
}

.map-scale .scale-minus:hover i {
    width: 28px;
    height: 28px;
    background-size: 28px, 28px;
    background-repeat: no-repeat;
    background-image: url('../img/png/map_minus_hover-28x28.png?1435065919');
    background-image: url('../img/svg/map_minus_hover.svg?1427458090'), none;
    display: -moz-inline-stack;
    display: inline-block;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/static/img/png/map_minus_hover-28x28.png', sizingMethod='crop')
}

.map-scale .scale-minus.world i {
    width: 28px;
    height: 28px;
    background-size: 28px, 28px;
    background-repeat: no-repeat;
    background-image: url('../img/png/map_world-28x28.png?1435065919');
    background-image: url('../img/svg/map_world.svg?1428001627'), none;
    display: -moz-inline-stack;
    display: inline-block;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/static/img/png/map_world-28x28.png', sizingMethod='crop')
}

.map-scale .scale-minus.world:hover i {
    width: 28px;
    height: 28px;
    background-size: 28px, 28px;
    background-repeat: no-repeat;
    background-image: url('../img/png/map_world_hover-28x28.png?1435065919');
    background-image: url('../img/svg/map_world_hover.svg?1427458090'), none;
    display: -moz-inline-stack;
    display: inline-block;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/static/img/png/map_world_hover-28x28.png', sizingMethod='crop')
}

.map-scale .scale-plus i {
    width: 28px;
    height: 28px;
    background-size: 28px, 28px;
    background-repeat: no-repeat;
    background-image: url('../img/png/map_plus-28x28.png?1435065919');
    background-image: url('../img/svg/map_plus.svg?1428001627'), none;
    display: -moz-inline-stack;
    display: inline-block;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/static/img/png/map_plus-28x28.png', sizingMethod='crop')
}

.map-scale .scale-plus:hover i {
    width: 28px;
    height: 28px;
    background-size: 28px, 28px;
    background-repeat: no-repeat;
    background-image: url('../img/png/map_plus_hover-28x28.png?1435065919');
    background-image: url('../img/svg/map_plus_hover.svg?1427458090'), none;
    display: -moz-inline-stack;
    display: inline-block;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/static/img/png/map_plus_hover-28x28.png', sizingMethod='crop')
}

#map-region-picker {
    display: none;
    font-size: 15px;
    padding: 20px 29px;
    position: absolute;
    background: #fff;
    border-radius: 3px;
    z-index: 11;
    border: 1px solid #D6D6D6;
}

#map-region-picker li {
    padding: 5px 0;
    cursor: pointer;
}

#map-region-picker li:hover {
    color: rgb(38, 50, 127);
}

.picker_header, .disabled {
    color: #808080;
    cursor: default
}

.region_link {
    color: rgb(38, 50, 127);
}

.content_in_read .col {
    margin-top: 32px;
}

.read_title {
    color: #151515;
    width: 72%;
    margin-top: 0;
}

.read_lead {
    color: #161616;
    line-height: 30px;
    margin-bottom: 32px;
}

.read_meta {
    color:rgb(60, 65, 65);
font-size: 12px;
line-height: 18px;
}

.read_meta span {
    color: #3c4141;
}

.read_content {
    color: #3c4141;
font-size: 16px;
line-height: 26px;
}

.read_content p {
    margin-bottom: 25px;
}

.read_content a {
    color: rgb(38, 50, 127);
    transition: color $ transition;
}

.read_content a:hover {
    color: rgb(255, 82, 82);
}

.read_content h1 {
font-family: Roboto, arial, sans-serif;
font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    margin: 0 0 20px 0;
    color: #151515;
}

.read_content h2 {
font-family: Roboto, arial, sans-serif;
font-weight: 400;
font-size: 24px;
line-height: 32px;
    margin: 0 0 20px 0;
}

.read_content h3 {
font-size: 20px;
line-height: 26px;
font-family: Roboto, arial, sans-serif;
font-weight: 400;
    margin: 0 0 20px 0;
}

.read_content h4 {
font-size: 16px;
line-height: 26px;
font-family: Roboto, arial, sans-serif;
font-weight: 600;
    margin: 0 0 20px 0;
}

.read_content ol, .read_content ul {
font-family: Roboto, arial, sans-serif;
font-weight: 400;
font-size: 13px;
line-height: 18px;
    counter-reset: item;
    margin: 0 0 25px 0;
}

.read_content ol ol, .read_content ul ul, .read_content ol ul, .read_content ul ol {
    margin: 20px 0 0 20px;
}

.read_content ol li, .read_content ul li {
    margin-bottom: 20px;
    display: block;
    position: relative;
    padding-left: 20px;
}

.read_content ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color:rgb(60, 65, 65);
    position: absolute;
    left: 0;
    top: 0;
}

.read_content ul li:before {
    content: '\2022';
    counter-increment: item;
    color: #3c4141;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.read_media {
    margin-bottom: 25px;
    position: relative;
}

.read_media_image img {
    width: 100%;
    display: block;
}

.read_media .vertical {
    background: rgb(242, 245, 248);

}

.read_media .vertical img {
    margin: 0 auto;
    width: auto;
}

.read_media_meta {
    display: block;
    margin-top: 12px;
}

.read_media_meta__right {
    float: right;
    position: relative;
    z-index: 20000;
}

.right_block {
    color: #3c4141;
    margin-bottom: 60px;
}

.read_share .list_small_item {
    font-size: 14px;
    line-height: 24px;
    color: #3b468c;
    padding-left: 0;
}

.read_share i {
    position: absolute;
    left: 25px;
    top: 8px;
}

.read_share .list_small_item.twitter {
    color: #00b9ee;
}

.twitter i {
    top: 14px;
}

.twitter i{
  background-image: url('../img/svg/twi_blue.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  display: inline-block;
  height: 16px;
  width: 16px;
}

.no-svg .twitter i{
  background-image: url('../img/png/twi_blue.png');
}

.twitter:hover i{
  background-image: url('../img/svg/twi_white.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  display: inline-block;
  height: 16px;
  width: 16px;
}

.no-svg .twitter:hover i{
  background-image: url('../img/png/twi_white.png');
}

.read_share .list_small_item.facebook {
    color: #004899;
}

.facebook i {
    left: 29px;
}

.facebook i{
  background-image: url('../img/svg/fb_blue.svg');
  background-repeat: no-repeat;
  background-size: 9px 24px;
  display: inline-block;
  height: 24px;
  width: 9px;
}

.no-svg .facebook i{
  background-image: url('../img/png/fb_blue.png');
}

.facebook:hover i{
  background-image: url('../img/svg/fb_white.svg');
  background-repeat: no-repeat;
  background-size: 9px 24px;
  display: inline-block;
  height: 24px;
  width: 9px;
}

.no-svg .facebook:hover i{
  background-image: url('../img/png/fb_white.png');
}

.vkontakte i {
    left: 28px;
    top: 14px;
}

.vkontakte i{
  background-image: url('../img/svg/vk.svg');
  background-repeat: no-repeat;
  background-size: 12px 17px;
  display: inline-block;
  height: 17px;
  width: 12px;
}

.no-svg .vkontakte i{
  background-image: url('../img/png/vk.png');
}

.vkontakte:hover i{
  background-image: url('../img/svg/vk_white.svg');
  background-repeat: no-repeat;
  background-size: 12px 17px;
  display: inline-block;
  height: 17px;
  width: 12px;
}

.no-svg .vkontakte:hover i{
  background-image: url('../img/png/vk_white.png');
}

.read_share .list_small_item.google {
    color: #be3027;
}

.google i {
    left: 18px;
}

.google i{
  background-image: url('../img/svg/google_red.svg');
  background-repeat: no-repeat;
  background-size: 30px 30px;
  display: inline-block;
  height: 30px;
  width: 30px;
}

.no-svg .google i{
  background-image: url('../img/png/google_red.png');
}

.google:hover i{
  background-image: url('../img/svg/google_white.svg');
  background-repeat: no-repeat;
  background-size: 30px 30px;
  display: inline-block;
  height: 30px;
  width: 30px;
}

.no-svg .google:hover i{
  background-image: url('../img/png/google_white.png');
}

.list_small_item.list_small_item_special {
    border-top: 1px solid #e2e5e8;
}

.mail i {
    opacity: 0.3;
    left: 22px;
}

.mail i{
  background-image: url('../img/svg/message.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .mail i{
  background-image: url('../img/png/message.png');
}

.mail:hover i {
    opacity: 1;
}

.mail:hover i{
  background-image: url('../img/svg/message_white.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .mail:hover i{
  background-image: url('../img/png/message_white.png');
}

.print i {
    top: 10px;
    left: 21px;
}

.print i{
  background-image: url('../img/svg/print.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .print i{
  background-image: url('../img/png/print.png');
}

.print:hover i {
    opacity: 1;
}

.print:hover i{
  background-image: url('../img/svg/print_white.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .print:hover i{
  background-image: url('../img/png/print_white.png');
}

.read_meta_print .title_big {
    margin-bottom: 25px;
}

.read_meta_print span {
    display: inline-block;
    margin-right: 35px;
}

.read_meta_print .print {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    padding-left: 35px;
    font-size: 14px;
    line-height: 24px;
    color: #2e2e2e;
}

.read_meta_print .print i {
    position: absolute;
    top: 2px;
    left: 0;
}

.read_meta_print .print:hover i{
  background-image: url('../img/svg/print.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .read_meta_print .print:hover i{
  background-image: url('../img/png/print.png');
}

.slider img {
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.read_meta .slick-track{
    background: #000000;
    background: rgba(0, 0, 0, .2);
}

.slider .item{
    text-align: center;
}

.slider .vertical{
    background: #000000;
    background: rgba(0, 0, 0, .2);
}

.slider .vertical img {
    width: auto;
    height: 100%;
    margin: auto;
}

.slider-next{
  background-image: url('../img/svg/slide_right.svg');
  background-repeat: no-repeat;
  background-size: 60px 60px;
  display: inline-block;
  height: 60px;
  width: 60px;
}

.no-svg .slider-next{
  background-image: url('../img/png/slide_right.png');
}

.slider-prev{
  background-image: url('../img/svg/slide_left.svg');
  background-repeat: no-repeat;
  background-size: 60px 60px;
  display: inline-block;
  height: 60px;
  width: 60px;
}

.no-svg .slider-prev{
  background-image: url('../img/png/slide_left.png');
}

.slider-prev, .slider-next {
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0 20px;
    z-index: 1212;
    font-size: 0;
}

.slider:hover .slider-prev,
.slider:hover .slider-next {
    opacity: 1;
}

.slider-prev {
    left: 0;
    background-position: center;
}

.slider-next {
    right: 0;
    background-position: center;
}

.small_caption {
    font-size: 13px;
    line-height: 18px;
    margin-top: 14px;
}

.letter_content .title_thin {
    margin-top: 25px;
}

blockquote {
    font-size: 24px;
    line-height: 32px;
    line-height: 36px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
    color: #151515;
}

.reader_article_box {
    margin: 30px 0;
}

.reader_article_box ul {
font-size: 16px;
line-height: 26px;
}

.reader_article_box ul li:before, .radio_item:before, .checkbox_item:before {
    display: none;
}

.reader_article_box ul li {
    padding-left: 0;
}

@media (max-width: 1000px) {
    .content_in_read .col {
        float: none;
        width: auto;
        margin-right: 0;
    }

}

@media (max-width: 730px) {
    .read_content h3 {
    font-size: 20px;
    line-height: 26px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
        margin: 0 0 20px 0;
    }

    .read_content ol {
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
        margin: 0 0 20px 0;
        counter-reset: item;
    }

}

.read_content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.read_content td, .read_content th {
    font-size: 1em;
    border: 1px solid #AAAAAA;
    padding: 3px 7px 2px 7px;

}

.read_content table tr:nth-child(2n) {
    background-color: #FFFFFF;
}

.read_content table tr:nth-child(2n + 1) {
    background-color: #EEEEEE;
}

/*quote*/

.quote {
    min-height: 385px;
    width: 100%;
    padding-bottom: 60px;
    position: relative;
}

.quote_title {
    font-size: 18px;
    line-height: 27px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
}

.quote_title_small {
    font-size: 14px;
    line-height: 24px;
}

.quote_image img {
    max-width: 100%;
    width: 100%;
}

.quote_small {
    border: 1px solid rgb(226, 229, 232);
    display: block;
}

.quote_small .quote_title {
    padding: 13px 22px;
}

.quote_bottom {
    position: absolute;
    bottom: 10px;
    left: 0;
}

.quote_person {
    color: rgb(21, 21, 21);
}

.quote_date {
    color: #3c4141;
    display: block;
}

.quote_small .quote_person, .quote_small .quote_date {
    padding: 0 22px;
}

.quote_person, .quote_date {
    font-size: 12px;
    line-height: 18px;
}

.quote_big {
    background-repeat: no-repeat;
    background-color: #4d4d4d;
    box-shadow: inset -15px -228px 113px -50px rgba(0, 0, 0, .95);
    color: rgb(255, 255, 255);
    display: table;
    background-size: contain;
}

.quote_big_wrapper {
    display: table-cell;
    vertical-align: bottom;
    padding: 13px 22px;
}

.quote_person, .quote_date {
    display: block;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.quote_title, .quote_person, .quote_date {
    transition: color $ transition;
}

a.quote:hover .quote_title,
a.quote:hover .quote_person,
a.quote:hover .quote_date {
    color: rgb(255, 82, 82);
}

/*polls*/

.poll_list {
    margin: 20px 0;
}

.poll_item {
    display: block;
    margin: 10px 0;
    cursor: pointer;
}

.poll_title {
    padding-bottom: 0;
}

/*theme*/

.theme {
    display: block;
}

.theme:hover .theme_text {
    color: rgb(255, 82, 82);
}

.theme_title {
    color: rgb(38, 50, 127);
    margin-bottom: 12px;
    text-align: center;
}

.theme_image {
    display: block;
    margin-bottom: 30px;
}

.theme_text {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #3c4141;
}

.theme_image img {
    width: 100%;
}

/*banner*/

.banner {
    display: block;
    height: 130px;
    position: relative;
    border: 1px solid rgb(226, 229, 232);
    margin-bottom: 20px;
}

.banner_image {
    padding: 20px 10px 0;
}

.banner_image img {
    /*max-height: 50px;*/
    max-width: 100%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translateX(-50%) translateY(-50%);

        -ms-transform: translateX(-50%) translateY(-50%);

            transform: translateX(-50%) translateY(-50%);
}

.banner_link, .banner_title {
    transition: color 0.4s ease;
}

.banner_title {
    color: rgb(21, 21, 21);
    padding: 20px;
}

.banner_link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    line-height: 18px;
    color: rgb(38, 50, 127);
    text-transform: uppercase;
}

.banner:hover .banner_title, .banner:hover .banner_link {
    color: rgb(255, 82, 82);
}

.block_border {
    border: 1px solid rgb(226, 229, 232);
}

.block_border .title_border {
    margin: 0;
    padding: 20px 30px;
}

.contact {
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid rgb(226, 229, 232);
    background: #f7f7f7;
    padding: 20px 30px;
}

.contact:last-child {
    border: none;
}

.contact a, .contact span {
    font-size: 16px;
    line-height: 26px;
    display: block;
    color: #3c4141;
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
}

.contact a:hover {
    color: rgb(255, 82, 82);
}

.contact_main a {
    font-size: 16px;
    line-height: 26px;
}

.simple_contact {
    font-size: 16px;
    line-height: 26px;
}

.right_block_content {
    padding: 20px 30px;
}

.org_link {
    display: block;
    color: rgb(38, 50, 127);
}

.org_link:hover {
    color: rgb(255, 82, 82);
}

.breadcrumbs {
    font-size: 12px;
    line-height: 18px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: rgb(60, 65, 65);
    display: inline-block;
    margin-right: 5px;
}

.breadcrumbs a:hover {
    color: rgb(255, 82, 82);
}

.breadcrumbs_sep {
    background: url(../img/arrow_small.png);
    display: inline-block;
    width: 5px;
    height: 9px;
    margin-right: 5px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

.tabs {
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgb(226, 229, 232);
}

.tabs li {
    display: inline-block;
    padding-right: 30px;
    margin-bottom: 20px;
}

.tabs a {
    color: rgb(38, 50, 127);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 18px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
}

.tabs a.is-active, .tabs a:hover {
    color: rgb(255, 82, 82);
}

@media (max-width: 1000px) {
    .quote_title_small {
        font-size: 18px;
        line-height: 27px;
    }

    .poll_list {
        min-height: inherit;
        margin-bottom: 30px;
    }
}

@media (max-width: 730px) {
    .poll_list {
        min-height: 0;
        min-height: initial;
        margin-bottom: 30px;
    }

    .block_border {
        border: none;
    }

    .block_border .title_border {
        margin: 0;
        padding: 10px 0;
    }

    .contact {
        padding: 20px 0;
        background: transparent;
    }

    .right_block {
        margin: 40px 0 0;
    }

    .banners{
        display: none !important;
    }

    .theme_image{
        text-align: center;
    }

    .theme_image img{
        width: 40%;
    }

    .theme_title{
        font-size: 14px;
    }
}

.accordion li {
    margin: 20px 30px;
}

.accordion_head {
    color: rgb(38, 50, 127);
    font-size: 16px;
    line-height: 26px;
    display: block;
}

.accordion_head:hover{
    color: rgb(255, 82, 82)
}

.accordion_content {
    font-size: 13px;
    line-height: 18px;
    display: none;
}

.accordion li.active {
    background: #f8f8f8;
}

.accordion li.active .accordion_head {
    color: rgb(255, 82, 82);
    font-family: Roboto, arial, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 730px) {
    .accordion_head {
        font-size: 14px;
        line-height: 24px;
    }

    .accordion li{
        margin: 20px 0;
    }
}

.tags {
    margin-top: 10px;
}

.tags li {
    display: inline-block;
    margin-bottom: 14px;
}

.tag {
    border: 1px solid rgb(226, 229, 232);
    padding: 5px 10px;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    color: #a6a5a5;
    background: rgb(255, 255, 255);
    transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.tag:hover {
    background: rgb(255, 82, 82);
    border-color: rgb(255, 82, 82);
    color: rgb(255, 255, 255);
}

.selected .tag {
    background: rgb(255, 82, 82);
    border-color: rgb(255, 82, 82);
    color: rgb(255, 255, 255);
}

.region_flag, .region_emblem {
    height: 90px;
}

.region_emblem, .region_flag {
    display: inline-block;
    margin-right: 20px;
}

.region_emblem{
    margin-right: 0;
}

.region_emblem img, .region_flag img {
    height: 100%;
    width: auto;
}

.read_content_region{
    margin-bottom: 40px;
}

.region_events {
    clear: both;
}

.region_caption_small{
    font-size: 13px;
    line-height: 18px;
    display: block;
    margin-top: 11px;
    margin-bottom: 25px;
}

.region_description{
    font-size: 13px;
    line-height: 18px;
}

.region_description li{
    margin-bottom: 20px;
}

.region_description_title{
    color: #b8b7b7;
    display: block;
}

.districts{
    margin-top: 50px;
}

.region_events .col_flex_medium{
    max-width: 345px;
    margin-left: 5%;
}

.region_events .col_flex_first{
    margin-left: 0;
}

.districts .col{
    max-width: 345px;
    padding-right: 0;
    margin-right: 5%;
}

.districts_list{
    margin-left: 52%;
}

@media (max-width: 730px) {
    .region_flag, .region_emblem {
        height: 70px;
    }
}

.form_block {
zoom: 1;
}

.form_block:after, .form_block:before{
  content: '';
  display: table;
}

.form_block:after{
  clear: both;
}

input {
    -webkit-appearance: none;
    border: none;
    display: block;
    box-sizing: border-box;
}

input:focus {
    outline: none;
}

.list_small_item label {
    padding: 10px 30px 10px 70px;
font-size: 14px;
line-height: 24px;
@mixit reg;
    transition: color 0.4s ease, background 0.4s ease;
    display: block;
    color: #2e2e2e;
    position: relative;
    background: #fff;
    cursor: pointer;
}

.tag a {
    color: #2e2e2e;
}

.list_small_item input, .tag input {
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.list_small_item.selected label, .tag.selected {
    background: rgb(255, 82, 82);
    color: rgb(255, 255, 255);
}

.tag:hover {
    cursor: pointer;
}

.tag.selected a, .tag:hover a {
    color: rgb(255, 255, 255);
}

.list_small_item label:hover {
    background: rgb(255, 82, 82);
    color: rgb(255, 255, 255);
}

.input {
    font-size: 15px;
    height: 41px;
    line-height: 34px;
    padding: 0 10px;
    border: 1px solid rgb(226, 229, 232);
    /*margin: 0 13px 13px 0;*/
    /*float: left;*/
    display: block;
    box-sizing: border-box;
@mixit reg;
    width: 100%;
}

.form_field {
    margin: 0 2% 5px 0;
    float: left;
    position: relative;
    padding-bottom: 25px;
}

.form_field_small {
    width: 23%;
}

.form_field_medium {
    width: 48%;
}

.form_field_wide {
    width: 61%;
}

.form_field_large {
    width: 98%;
}

.input:focus {
    outline: none;
}

.textarea {
@mixit reg;
    -webkit-appearance: none;
    font-size: 15px;
    line-height: 18px;
    padding: 10px;
    border: 1px solid rgb(226, 229, 232);
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
}

.select {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid rgb(226, 229, 232);
    margin-bottom: 13px;
    color: rgb(38, 50, 127);
font-size: 13px;
line-height: 18px;
    clear: both;
}

.select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    height: 34px;
    text-align: left;
    background: white;
    font-size: 13px;
    line-height: 18px;
    line-height: 18px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.select:after {
    content: '';
    position: absolute;
    top: 15px;
    right: 10px;
    pointer-events: none;
}

.select:after{
  background-image: url('../img/svg/arrow.svg');
  background-repeat: no-repeat;
  background-size: 14px 6px;
  display: inline-block;
  height: 6px;
  width: 14px;
}

.no-svg .select:after{
  background-image: url('../img/png/arrow.png');
}

.select .select2-container--default .select2-selection--single {
    border: none;
}

.select .select2-container--default .select2-selection__arrow {
    display: none;
}

.select .select2-container .select2-selection--single {
    height: 32px;
}

.select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
}

.select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #26327f
}

.form_field .select {
    margin-bottom: 0;
}

.button {
    color: rgb(38, 50, 127);
font-size: 13px;
line-height: 18px;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid;
    background: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.button_blue, .content_in_high .button_blue {
    color: rgb(255, 255, 255);
    background: rgb(38, 50, 127);
    border: 1px solid rgb(38, 50, 127);
}

.content_in_high .button_blue:hover {
    color: rgb(255, 255, 255);
    background: rgb(255, 82, 82);
    border: 1px solid rgb(255, 82, 82);
}

.button_small {
    width: 122px;
    height: 41px;
    line-height: 34px;
}

.button_narrow {
    width: 200px;
}

.button_right {
    float: right;
}

.button_feed {
    margin: 27px 0;
    position: relative;
}

.form_field .button {
    text-transform: none;

}

.form_letter .button_right {
    margin-top: 30px;
    margin-right: 2%;
}

.letter_caption {
    color: #a6a5a5;
    margin-top: 27px;
    margin-bottom: 20px;
font-size: 13px;
line-height: 18px;
}

.letter_caption ul {
    margin-top: 20px;
}

.read_content ul.radio_list, .read_content ul.checkbox_list {
    line-height: inherit;
zoom: 1;
}

.read_content ul.radio_list:after, .read_content ul.radio_list:before, .read_content ul.checkbox_list:after, .read_content ul.checkbox_list:before{
  content: '';
  display: table;
}

.read_content ul.radio_list:after,.read_content ul.checkbox_list:after{
  clear: both;
}

.form_field .radio_list {
    margin-bottom: 0;
}

.read_content ul li.checkbox_item, .read_content ul li.radio_item,
.checkbox_item, .radio_item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    display: block;
zoom: 1;
}

.read_content ul li.checkbox_item:after, .read_content ul li.checkbox_item:before, .read_content ul li.radio_item:after, .read_content ul li.radio_item:before, .checkbox_item:after, .checkbox_item:before, .radio_item:after, .radio_item:before{
  content: '';
  display: table;
}

.read_content ul li.checkbox_item:after,.read_content ul li.radio_item:after,.checkbox_item:after,.radio_item:after{
  clear: both;
}

.read_content ul li.checkbox_item:last-child, .read_content ul li.radio_item:last-child {
    margin-bottom: 0;
}

.radio_list, .checkbox_list {
    line-height: 26px;
}

.checkbox, .radio {
    -webkit-appearance: none;
    -moz-appearance: window;
    left: 0;
    top: 8px;
    z-index: 1;
    margin: 0 10px 0 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
    display: inline-block;
    opacity: 0;
    position: absolute;
}

.disabled {
    cursor: none;
    pointer-events: none;
}

.disabled:hover {
    color: inherit;
}

.checkbox_tick {
    margin: 0 10px 0 0;
    cursor: pointer;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 8px;
    display: block;
}

.checkbox_tick:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 14px;
    height: 14px;
    border: 1px solid #cccaca;
    box-sizing: border-box;
    background: #FFF;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.checkbox_tick:after {
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /*transition: transform 0.3s ease;*/
}

.checkbox:checked + .checkbox_tick:before {
    border-color: #3b99fd;
    background: #3b99fd;
    cursor: pointer;
}

.checkbox:checked + .checkbox_tick:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    width: 7px;
    height: 3px;
    border-color: #FFF;
    border-top-style: none;
    border-right-style: none;
    z-index: 2;
    top: 4px;
    left: 3px;
}

.checkbox_caption, .radio_caption {
font-size: 13px;
line-height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

.checkbox_caption span, .radio_caption span {
    color: rgb(38, 50, 127);
}

.radio_item:hover {
    color: rgb(38, 50, 127);
}

.radio_tick {
    margin: 0 10px 0 0;
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 8px;
    display: block;
    border: 1px solid #ccc;
}

.radio:checked + .radio_tick {
    background: #3a98fc;
    border: 1px solid #3a98fc;
}

.radio:focus {
    outline: none;
}

.radio:checked + .radio_tick:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 6px;
    margin-top: -3px;
    margin-left: -3px;
    display: block;
}

.file_input {
    margin: 0 0 30px 0;
}

.form_file_wrapper {
    position: relative;
    float: left;
    width: 200px;
}

.form_file_wrapper input {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 50px;
    opacity: 0;
    cursor: pointer;
}

.file-loaded {
    display: inline-block;
    vertical-align: top;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-remove {
    cursor: pointer;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    vertical-align: baseline;
}

.file-remove{
  background-image: url('../img/svg/close_blue.svg');
  background-repeat: no-repeat;
  background-size: 12px 13px;
  display: inline-block;
  height: 13px;
  width: 12px;
}

.no-svg .file-remove{
  background-image: url('../img/png/close_blue.png');
}

.input.error, .textarea.error, .is-error .select {
    border-color: rgb(255, 82, 82);
    color: rgb(255, 82, 82);
}

.input.error::-webkit-input-placeholder {
    color: rgb(255, 82, 82);
}

.error {
    color: rgb(255, 82, 82);
    font-size: 11px;
    position: absolute;
    left: 0;
    bottom: 5px;
    white-space: nowrap;
    font-style: normal;
}

.poll_list .error {
    position: static;
}

.form-preview .form_field {
    float: none;
    width: auto;
}

.form-preview .input {
    border: none;
    padding: 0;
    display: inline-block;
    width: auto;
    color: rgb(38, 50, 127);
    margin-left: 10px;
font-size: 16px;
line-height: 26px;
}

.form-preview .select {
    border: none;
    padding: 0;
    display: inline-block;
    width: auto;
    color: rgb(38, 50, 127);
    margin-left: 10px;
font-size: 16px;
line-height: 26px;
    pointer-events: none;
}

.form-preview .select:after {
    display: none;
}

.form-preview .form_field.checkbox_list .title_small, .form-preview .form_field.checkbox_list .checkbox_list,
.form-preview .form_field.radio_list .title_small, .form-preview .form_field.radio_list .radio_list {
    display: inline-block;
}

.form-preview .checkbox_tick, .form-preview .radio_tick {
    display: none;
}

.form-preview .checkbox_caption, .form-preview .radio_caption {
font-size: 16px;
line-height: 26px;
    color: rgb(38, 50, 127);
    margin-left: 10px;
}

.form-preview .checkbox_item .form-preview .radio_item {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
    display: inline-block;
}

.form-preview .textarea {
    border: none;
    width: auto;
    height: auto;
font-size: 16px;
line-height: 26px;
    padding: 0;
    pointer-events: none;
}

.all_checked {
    background: red;
}

@media (max-width: 730px) {
    .form_field, .form_file_wrapper {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .form_file_wrapper {
        margin-top: 30px;
    }

    .letter_caption {
        margin-left: 0;
    }

    .form_letter .button_right {
        margin-top: 0;
        float: left;
    }
}

.submit.hidden {
    display: none;
}

.subscribe_message {
    position: relative;
    clear: both;
    font-style: italic;
}

.error__big {
    position: relative;
    font-size: 22px;
    margin-top: 10px;
    white-space: normal;
}

.letter_form__error {
    margin-top: 30px;
    min-height: 50px;
    width: 65%;
    float: left;
}

.read_media_photoset{
    position: relative;
    clear: both;
}

.fullscreen_button {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1214;
}

.fullscreen_button i{
  background-image: url('../img/svg/fullscreen.svg');
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.no-svg .fullscreen_button i{
  background-image: url('../img/png/fullscreen.png');
}

.fullscreen_button i {
    width: 40px;
    height: 40px;
    background-position: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fullscreen_button:hover i {
    opacity: 1;
}

.gallery_overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.gallery {
    position: relative;
    height: 100%;
}

.slide_description {
    width: 240px;
    min-height: 1px;
    float: right;
    padding: 20px 30px;
}

.slider_wrapper {
    /*display: flex;*/
    /*align-items: center;*/
    height: 100%;
}

.gallery .slider-next,
.gallery .slider-prev {
    width: 100px;
}

.gallery .close{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 112121212;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.gallery .close i{
  background-image: url('../img/svg/fullscreen_close.svg');
  background-repeat: no-repeat;
  background-size: 28px 28px;
  display: inline-block;
  height: 28px;
  width: 28px;
}

.no-svg .gallery .close i{
  background-image: url('../img/png/fullscreen_close.png');
}

.gallery .close i{
    height: 30px;
    width: 30px;
    background-position: center;
}

.slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    overflow: hidden;
}

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

.slick-dots{
    text-align: center;
    margin: 0 !important;

}

.slick-dots li{
    display: inline-block !important;
    width: 14px;
    height: 14px;
}

.slick-dots button{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    font-size: 0;
    display: none;
}

.gallery .item{
    text-align: center;
    vertical-align: middle;
    min-height: 1px;
    float: left;
    height: 100%;
}

.slider__helper{
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.gallery .slider img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    vertical-align: middle;
}

.slider__download_image{
  background-image: url('../img/svg/download.svg');
  background-repeat: no-repeat;
  background-size: 72px 72px;
  display: inline-block;
  height: 72px;
  width: 72px;
}

.no-svg .slider__download_image{
  background-image: url('../img/png/download.png');
}

.slider__download_image{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -36px;
    margin-left: -36px;
    transition: opacity 0.37s ease-out;
}

.gallery .slider img:hover + .slider__download_image,
.slider__download_image:hover{
    opacity: 1;
}

.slider__download_image:focus{
    outline: none;
}

.gallery .slick-track{
    width: 100%;
}

.gallery .slick-track,
.gallery .slider,
.gallery .slick-list{
    height: 100%;
}

.file {
    color: rgb(38, 50, 127);
    position: relative;
    display: block;
}

.file:hover {
    color: rgb(255, 82, 82);
}

.file_name {
    display: block;
}

.file_meta {
    font-size: 12px;
    line-height: 18px;
    color: #3c4141;
    margin-right: 50px;
    display: block;
}

.pdf i{
  background-image: url('../img/svg/file_red.svg');
  background-repeat: no-repeat;
  background-size: 30px 42px;
  display: inline-block;
  height: 42px;
  width: 30px;
}

.no-svg .pdf i{
  background-image: url('../img/png/file_red.png');
}

.doc i{
  background-image: url('../img/svg/file_blue.svg');
  background-repeat: no-repeat;
  background-size: 30px 42px;
  display: inline-block;
  height: 42px;
  width: 30px;
}

.no-svg .doc i{
  background-image: url('../img/png/file_blue.png');
}

.file_type {
    position: absolute;
    left: -60px;
    top: 0;
}

.file_type_name {
    display: block;
    margin-top: 13px;
    font-size: 10px;
    font-family: Roboto, arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.file_narrow {
    font-size: 16px;
    line-height: 26px;
    display: block;
    padding-left: 60px;
    margin-bottom: 30px;
}

.hentry.file_narrow {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 20px;
}

.hentry .file_name {
    margin-bottom: 6px;
}

.hentry.file_narrow .file_type {
    top: 27px;
}

.file_narrow:last-child{
    margin-bottom: 0;
}

.file_narrow.doc i{
  background-image: url('../img/svg/file_blue.svg');
  background-repeat: no-repeat;
  background-size: 30px 42px;
  display: inline-block;
  height: 42px;
  width: 30px;
}

.no-svg .file_narrow.doc i{
  background-image: url('../img/png/file_blue.png');
}

.file_narrow.pdf i{
  background-image: url('../img/svg/file_red.svg');
  background-repeat: no-repeat;
  background-size: 30px 42px;
  display: inline-block;
  height: 42px;
  width: 30px;
}

.no-svg .file_narrow.pdf i{
  background-image: url('../img/png/file_red.png');
}

.file_narrow .file_type {
    left: 0;
    top: 0;
    margin-top: 0;
}

.files_item {
    margin-bottom: 10px;
}

.popup{
    position: absolute;
    top: 35px;
    left: -15px;
    width: 340px;
    display: none;
}

.popup_link{
    cursor: pointer;
    z-index: 12;
    display: inline-block;
    position: relative;
    padding-bottom: 35px;
    color: rgb(38, 50, 127);
}

.popup_link:hover .popup{
    display: block;
}

.popover{
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    cursor: default;
    box-shadow: 0 0 6px 6px #f4f4f4;
    z-index: 1;
    background: #fff;
}

.subscribe_where{
    border-bottom: 1px solid #d6d6d6;
    padding: 20px 0 23px 30px;
}

.subscribe_where a{
    color: rgb(21, 21, 21);;

}

.subscribe_link{
    margin: 15px 15px 10px 14px;
    padding: 9px 10px 9px 15px;
    border-radius: 2px;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    color: rgb(38, 50, 127);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.4s linear;
}

.subscribe_link input{
    width: 100%;
    font-size: 14px;
    line-height: 24px;
}

.subscribe_instructions{
    color: #606778;
    padding: 0 0 23px 30px;
    font-size: 13px;
    line-height: 18px;
    white-space: normal;
}

.photoset_tiles {
    clear: both;
}

.photoset_tiles__item {
    display: inline-block;
    width: 22%;
    margin-right: 2%;
    margin-bottom: 40px;
    vertical-align: middle;
}

.photoset_tiles__item:nth-child(4n){
    margin-right: 0;
}

.photoset_tiles__item img{
    display: block;
    width: 100%;
    cursor: pointer;
}

.read_media .photoset_tiles .vertical img{
    height: 165px;
}

.gallery_overlay{
    background: #000000;
    background: rgba(0, 0, 0, .2);
}

/*.gallery__slider{*/

/*margin-right: 364px;*/

/*height: 100%;*/

/*min-height: 180px;*/

/*cursor: default;*/

/*}*/

/*.gallery__captions{*/

/*width: 364px;*/

/*height: 100%;*/

/*z-index: 10;*/

/*position: absolute;*/

/*top: 0;*/

/*right: 0;*/

/*background: #fff;*/

/*}*/

/*.captions__slide{*/

/*display: table;*/

/*position: relative;*/

/*padding: 0 40px;*/

/*color: #000;*/

/*}*/

/*.captions__slide_row{*/

/*display: table-row;*/

/*}*/

/*.captions__slide_cell{*/

/*display: table-cell;*/

/*padding: 20px 0 23px;*/

/*}*/

/*.captions__slide_number{*/

/*margin: 11px 0 23px;*/

/*font-size: 16px;*/

/*line-height: 22px;*/

/*}*/

/*.captions__slide_number span{*/

/*font-weight: bold;*/

/*}*/

/*.captions__slide_description{*/

/*font-size: 20px;*/

/*line-height: 30px;*/

/*}*/

/*.captions__slide_small{*/

/*margin: 14px 0 13px;*/

/*font-size: 12px;*/

/*line-height: 18px;*/

/*color: #888;*/

/*}*/

.mejs-container {
    position: relative;
    background: #000;
    font-family: Helvetica, Arial;
    text-align: left;
    vertical-align: top;
    text-indent: 0;
}

.me-plugin {
    position: absolute;
    height: 0;
    width: 0;
}

.mejs-embed, .mejs-embed body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
}

.mejs-fullscreen {
    /* set it to not show scroll bars so 100% will work */
    overflow: hidden !important;
}

.mejs-container-fullscreen {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1000;
}

.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
    width: 100%;
    height: 100%;
}

.mejs-clear {
    clear: both;
}

/* Start: LAYERS */

.mejs-background {
    position: absolute;
    top: 0;
    left: 0;
}

.mejs-mediaelement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mejs-poster {
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain ;
    background-position: 50% 50% ;
    background-repeat: no-repeat ;
}

:root .mejs-poster img {
    display: none ;
}

.mejs-poster img {
    border: 0;
    padding: 0;
    border: 0;
}

.mejs-overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.mejs-overlay-play {
    cursor: pointer;
}

.mejs-overlay-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    background: url(../img/player/bigplay.svg) no-repeat;
}

.no-svg .mejs-overlay-button {
    background-image: url(../img/player/bigplay.png);
}

.mejs-overlay:hover .mejs-overlay-button {
    background-position: 0 -100px ;
}

.mejs-overlay-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    background: #333;
    background: url(../img/player/background.png);
    background: rgba(0, 0, 0, .9);
    background: linear-gradient(rgba(50, 50, 50, .9), rgba(0, 0, 0, .9));
}

.mejs-overlay-loading span {
    display: block;
    width: 80px;
    height: 80px;
    background: transparent url(../img/player/loading.gif) 50% 50% no-repeat;
}

/* End: LAYERS */

/* Start: CONTROL BAR */

.mejs-container .mejs-controls {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    background: url(../img/player/background.png);
    background: rgba(0, 0, 0, .7);
    background: linear-gradient(rgba(50, 50, 50, .7), rgba(0, 0, 0, .7));
    height: 30px;
    width: 100%;
}

.mejs-container .mejs-controls  div {
    list-style-type: none;
    background-image: none;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    width: 26px;
    height: 26px;
    font-size: 11px;
    line-height: 11px;
    font-family: Helvetica, Arial;
    border: 0;
}

.mejs-controls .mejs-button button {
    cursor: pointer;
    display: block;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    margin: 7px 5px;
    padding: 0;
    position: absolute;
    height: 16px;
    width: 16px;
    border: 0;
    background: transparent url(../img/player/controls.svg) no-repeat;
}

.no-svg .mejs-controls .mejs-button button {
    background-image: url(../img/player/controls.png);
}

/* :focus for accessibility */

.mejs-controls .mejs-button button:focus {
    outline: dotted 1px #999;
}

/* End: CONTROL BAR */

/* Start: Time (Current / Duration) */

.mejs-container .mejs-controls .mejs-time {
    color: #fff;
    display: block;
    height: 17px;
    width: auto;
    padding: 8px 3px 0 3px ;
    overflow: hidden;
    text-align: center;
    box-sizing: content-box;
}

.mejs-container .mejs-controls .mejs-time span {
    color: #fff;
    font-size: 11px;
    line-height: 12px;
    display: block;
    float: left;
    margin: 1px 2px 0 0;
    width: auto;
}

/* End: Time (Current / Duration) */

/* Start: Play/Pause/Stop */

.mejs-controls .mejs-play button {
    background-position: 0 0;
}

.mejs-controls .mejs-pause button {
    background-position: 0 -16px;
}

.mejs-controls .mejs-stop button {
    background-position: -112px 0;
}

/* Start: Play/Pause/Stop */

/* Start: Progress Bar */

.mejs-controls div.mejs-time-rail {
    direction: ltr;
    width: 200px;
    padding-top: 5px;
}

.mejs-controls .mejs-time-rail span {
    display: block;
    position: absolute;
    width: 180px;
    height: 10px;
    border-radius: 2px;
    cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
    margin: 5px;
    background: #333;
    background: rgba(50, 50, 50, .8);
    background: linear-gradient(rgba(30, 30, 30, .8), rgba(60, 60, 60, .8));
}

.mejs-controls .mejs-time-rail .mejs-time-buffering {
    width: 100%;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 15px 15px;
    -webkit-animation: buffering-stripes 2s linear infinite;
    animation: buffering-stripes 2s linear infinite;
}

@-webkit-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }

@keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }

.mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: #3caac8;
    background: rgba(60, 170, 200, .8);
    background: linear-gradient(rgba(44, 124, 145, .8), rgba(78, 183, 212, .8));
    width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
    background: #fff;
    background: rgba(255, 255, 255, .8);
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(200, 200, 200, .8));
    width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-handle {
    display: none;
    position: absolute;
    margin: 0;
    width: 10px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    border: solid 2px #333;
    top: -2px;
    text-align: center;
}

.mejs-controls .mejs-time-rail .mejs-time-float {
    position: absolute;
    display: none;
    background: #eee;
    width: 36px;
    height: 17px;
    border: solid 1px #333;
    top: -26px;
    margin-left: -18px;
    text-align: center;
    color: #111;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
    margin: 2px;
    width: 30px;
    display: block;
    text-align: center;
    left: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-float-corner {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    line-height: 0;
    border: solid 5px #eee;
    border-color: #eee transparent transparent transparent;
    border-radius: 0;
    top: 15px;
    left: 13px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
    width: 48px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
    width: 44px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
    left: 18px;
}

/*
.mejs-controls .mejs-time-rail:hover .mejs-time-handle {
	visibility:visible;
}
*/

/* End: Progress Bar */

/* Start: Fullscreen */

.mejs-controls .mejs-fullscreen-button button {
    background-position: -32px 0;
}

.mejs-controls .mejs-unfullscreen button {
    background-position: -32px -16px;
}

/* End: Fullscreen */

/* Start: Mute/Volume */

.mejs-controls .mejs-volume-button {
}

.mejs-controls .mejs-mute button {
    background-position: -16px -16px;
}

.mejs-controls .mejs-unmute button {
    background-position: -16px 0;
}

.mejs-controls .mejs-volume-button {
    position: relative;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider {
    display: none;
    height: 115px;
    width: 25px;
    background: url(../img/player/background.png);
    background: rgba(50, 50, 50, .7);
    border-radius: 0;
    top: -115px;
    left: 0;
    z-index: 1;
    position: absolute;
    margin: 0;
}

.mejs-controls .mejs-volume-button:hover {
    border-radius: 0 0 4px 4px;
}

/*
.mejs-controls .mejs-volume-button:hover .mejs-volume-slider {
	display: block;
}
*/

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
    position: absolute;
    left: 11px;
    top: 8px;
    width: 2px;
    height: 100px;
    background: #ddd;
    background: rgba(255, 255, 255, .5);
    margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
    position: absolute;
    left: 11px;
    top: 8px;
    width: 2px;
    height: 100px;
    background: #ddd;
    background: rgba(255, 255, 255, .9);
    margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
    position: absolute;
    left: 4px;
    top: -3px;
    width: 16px;
    height: 6px;
    background: #ddd;
    background: rgba(255, 255, 255, .9);
    cursor: N-resize;
    border-radius: 1px;
    margin: 0;
}

/* horizontal version */

.mejs-controls div.mejs-horizontal-volume-slider {
    height: 26px;
    width: 60px;
    position: relative;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    position: absolute;
    left: 0;
    top: 11px;
    width: 50px;
    height: 8px;
    margin: 0;
    padding: 0;
    font-size: 1px;
    border-radius: 2px;
    background: #333;
    background: rgba(50, 50, 50, .8);
    background: linear-gradient(rgba(30, 30, 30, .8), rgba(60, 60, 60, .8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    position: absolute;
    left: 0;
    top: 11px;
    width: 50px;
    height: 8px;
    margin: 0;
    padding: 0;
    font-size: 1px;
    border-radius: 2px;
    background: #fff;
    background: rgba(255, 255, 255, .8);
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(200, 200, 200, .8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
    display: none;
}

/* End: Mute/Volume */

/* Start: Track (Captions and Chapters) */

.mejs-controls .mejs-captions-button {
    position: relative;
}

.mejs-controls .mejs-captions-button button {
    background-position: -48px 0;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector {
    visibility: hidden;
    position: absolute;
    bottom: 26px;
    right: -51px;
    width: 85px;
    height: 100px;
    background: url(../img/player/background.png);
    background: rgba(50, 50, 50, .7);
    border: solid 1px transparent;
    padding: 10px 10px 0 10px;
    overflow: hidden;
    border-radius: 0;
}

/*
.mejs-controls .mejs-captions-button:hover  .mejs-captions-selector {
	visibility: visible;
}
*/

.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: none !important;
    overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
    margin: 0 0 6px 0;
    padding: 0;
    list-style-type: none !important;
    display: block;
    color: #fff;
    overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
    clear: both;
    float: left;
    margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
    width: 55px;
    float: left;
    padding: 4px 0 0 0;
    line-height: 15px;
    font-family: helvetica, arial;
    font-size: 10px;
}

.mejs-controls .mejs-captions-button .mejs-captions-translations {
    font-size: 10px;
    margin: 0 0 5px 0;
}

.mejs-chapters {
    position: absolute;
    top: 0;
    left: 0;
    -xborder-right: solid 1px #fff;
    width: 10000px;
    z-index: 1;
}

.mejs-chapters .mejs-chapter {
    position: absolute;
    float: left;
    background: #222;
    background: rgba(0, 0, 0, .7);
    background: linear-gradient(rgba(50, 50, 50, .7), rgba(0, 0, 0, .7));
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232,endColorstr=#000000);
    overflow: hidden;
    border: 0;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block {
    font-size: 11px;
    color: #fff;
    padding: 5px;
    display: block;
    border-right: solid 1px #333;
    border-bottom: solid 1px #333;
    cursor: pointer;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
    border-right: none;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
    background: #666;
    background: rgba(102, 102, 102, .7);
    background: linear-gradient(rgba(102, 102, 102, .7), rgba(50, 50, 50, .6));
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666,endColorstr=#323232);
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
    font-size: 12px;
    font-weight: bold;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 3px 0;
    line-height: 12px;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
    font-size: 12px;
    line-height: 12px;
    margin: 3px 0 4px 0;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mejs-captions-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align:center;
    line-height: 20px;
    font-size: 16px;
    color: #fff;
}

.mejs-captions-layer  a {
    color: #fff;
    text-decoration: underline;
}

.mejs-captions-layer[lang=ar] {
    font-size: 20px;
    font-weight: normal;
}

.mejs-captions-position {
    position: absolute;
    width: 100%;
    bottom: 15px;
    left: 0;
}

.mejs-captions-position-hover {
    bottom: 35px;
}

.mejs-captions-text {
    padding: 3px 5px;
    background: url(../img/player/background.png);
    background: rgba(20, 20, 20, .5);
    white-space: pre-wrap;
}

/* End: Track (Captions and Chapters) */

/* Start: Error */

.me-cannotplay {
}

.me-cannotplay a {
    color: #fff;
    font-weight: bold;
}

.me-cannotplay span {
    padding: 15px;
    display: block;
}

/* End: Error */

/* Start: Loop */

.mejs-controls .mejs-loop-off button {
    background-position: -64px -16px;
}

.mejs-controls .mejs-loop-on button {
    background-position: -64px 0;
}

/* End: Loop */

/* Start: backlight */

.mejs-controls .mejs-backlight-off button {
    background-position: -80px -16px;
}

.mejs-controls .mejs-backlight-on button {
    background-position: -80px 0;
}

/* End: backlight */

/* Start: Picture Controls */

.mejs-controls .mejs-picturecontrols-button {
    background-position: -96px 0;
}

/* End: Picture Controls */

/* context menu */

.mejs-contextmenu {
    position: absolute;
    width: 150px;
    padding: 10px;
    border-radius: 4px;
    top: 0;
    left: 0;
    background: #fff;
    border: solid 1px #999;
    z-index: 1001; /* make sure it shows on fullscreen */
}

.mejs-contextmenu .mejs-contextmenu-separator {
    height: 1px;
    font-size: 0;
    margin: 5px 6px;
    background: #333;
}

.mejs-contextmenu .mejs-contextmenu-item {
    font-family: Helvetica, Arial;
    font-size: 12px;
    padding: 4px 6px;
    cursor: pointer;
    color: #333;
}

.mejs-contextmenu .mejs-contextmenu-item:hover {
    background: #2C7C91;
    color: #fff;
}

/* Start: Source Chooser */

.mejs-controls .mejs-sourcechooser-button {
    position: relative;
}

.mejs-controls .mejs-sourcechooser-button button {
    background-position: -128px 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
    visibility: hidden;
    position: absolute;
    bottom: 26px;
    right: -10px;
    width: 130px;
    height: 100px;
    background: url(../img/player/background.png);
    background: rgba(50, 50, 50, .7);
    border: solid 1px transparent;
    padding: 10px;
    overflow: hidden;
    border-radius: 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: none !important;
    overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
    margin: 0 0 6px 0;
    padding: 0;
    list-style-type: none !important;
    display: block;
    color: #fff;
    overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
    clear: both;
    float: left;
    margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
    width: 100px;
    float: left;
    padding: 4px 0 0 0;
    line-height: 15px;
    font-family: helvetica, arial;
    font-size: 10px;
}

/* End: Source Chooser */

/* Start: Postroll */

.mejs-postroll-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/player/background.png);
    background: rgba(50, 50, 50, .7);
    z-index: 1000;
    overflow: hidden;
}

.mejs-postroll-layer-content {
    width: 100%;
    height: 100%;
}

.mejs-postroll-close {
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/player/background.png);
    background: rgba(50, 50, 50, .7);
    color: #fff;
    padding: 4px;
    z-index: 100;
    cursor: pointer;
}

/* End: Postroll */

/* Start: Speed */

div.mejs-speed-button {
    width: 46px !important;
    position: relative;
}

.mejs-controls .mejs-button.mejs-speed-button button {
    background: transparent;
    width: 36px;
    font-size: 11px;
    line-height: normal;
    color: #ffffff;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector {
    visibility: hidden;
    position: absolute;
    top: -100px;
    left: -10px;
    width: 60px;
    height: 100px;
    background: url(../img/player/background.png);
    background: rgba(50, 50, 50, .7);
    border: solid 1px transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
    visibility: visible;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
    color: #21f8f8;
    color: rgba(33, 248, 248, 1);
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: none !important;
    overflow: hidden;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li {
    margin: 0 0 6px 0;
    padding: 0 10px;
    list-style-type: none !important;
    display: block;
    color: #fff;
    overflow: hidden;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input {
    clear: both;
    float: left;
    margin: 3px 3px 0 5px;
    display: none;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label {
    width: 60px;
    float: left;
    padding: 4px 0 0 0;
    line-height: 15px;
    font-family: helvetica, arial;
    font-size: 11.5px;
    color: white;
    margin-left: 5px;
    cursor: pointer;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover {
    background-color: rgb(200, 200, 200) !important;
    background-color: rgba(255, 255, 255, .4) !important;
}

/* End: Speed */

.ie8 .main_news_wrapper .col.col_narrow_wide {
    margin-right: 0;
}

.ie8 .col_last{
    margin-right: 0;
}

.ie8 .col_first{
    margin-left: 0;
    margin-right: 0;
}

.ie8 .cols_flex > .col_flex {
    min-height: 600px;
}

.ie8 .hentry.hentry_first, .ie8 .hentry_main {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.header {
    background: rgb(38, 50, 127);
}

.main__menu {
    background: rgb(79, 89, 151);
}

.main__menu_item {
    background: rgb(79, 89, 151);
}

.additional__menu {
    background: rgb(38, 50, 127);
}

.mobile__menu .mobile__menu_item {
    border-color: rgb(38, 50, 127);
}

.mobile__menu .mobile__menu_item:last-child {
    border: none;
}

.mobile__menu_wrapper {
    background: rgb(79, 89, 151);
}

.mobile__menu .button.search_button {
    background: rgb(38, 50, 127);
    border-color: rgb(38, 50, 127);
}

.mobile__submenu .main__menu_item:hover,
.mobile__submenu .is-selected {
    background: rgb(38, 50, 127);
}

.search_form .input_wrapper, .search_form .search_input {
    background: rgb(38, 50, 127);
}

.search_form {
    background: rgb(79, 89, 151);
}

.search_form .search_close {
    background: rgb(38, 50, 127);
}

#map-bubble #regiontitle {
    background: rgb(38, 50, 127);
}

#map-bubble:after {
    border-color: rgb(38, 50, 127) transparent;
}

@media (max-width: 730px) {
    .is-open-menu {
        background: rgb(79, 89, 151);
    }
}

/* Copypasted from ptk */

.dateblock {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    /*padding: 0 7px;*/
    width: 236px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    color: #606778;
    transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    border: 1px solid #D8D8D8;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.dateblock:hover {
    color: #2d3746;
}

.dateblock.is-active {
    background: rgb(38, 50, 127);
    border-color: rgb(38, 50, 127);
    color: #fff;
}

@media only screen and (max-width: 250px) {
    .dateblock {
        display: none;
        margin-bottom: 10px;
    }
}

@media (max-width: 1000px) {
    .dateblock {
        margin-bottom: 10px;
    }    
}

.calendar-container {
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(9, 63, 179, .06), 0px 8px 18px 2px rgba(2, 11, 34, .08);
    border-radius: 2px;
    z-index: 10003;
    position: relative;
    width: 236px;
    font-size: 15px;
    cursor: default;
    margin-top: 1px;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
}

.wf-itcfranklingothicw10md862390-n4-active .calendar-container {
    font-family: "ITCFranklinGothicW10-Md 862390", arial, sans-serif;
    font-weight: normal;
}

@media only screen and (max-width: 550px) {
    .calendar-container {
        display: none;
    }
}

.calendar-scroll-view {
    position: relative;
    overflow: auto;
    height: 353px;
}

.calendar-scroll-view table {
    width: 100%;
    padding-bottom: 60px;
}

.calendar-header {
    position: relative;
    left: 0;
    right: 0;
    border-bottom: 1px solid #E2E3E4;
    border-collapse: collapse;
    clear: left;
    height: 48px;
    font-size: 11px;
}

.calendar-header .thead {
    height: 48px;
    padding-left: 20px;
}

.calendar-row {
    height: 27px;
    margin-bottom: 7px;
    padding-left: 20px;
    overflow: hidden;
}

.calendar-day {
    width: 26px;
    height: 24px;
    font-size: 15px;
    text-align: center;
    line-height: 24px;
    color: #2d3746;
    cursor: pointer;
    border-radius: 2px;
    transition: background 400ms cubic-bezier(0.23, 1, 0.32, 1), color 400ms cubic-bezier(0.23, 1, 0.32, 1), border 400ms cubic-bezier(0.23, 1, 0.32, 1);
    float: left;
    border: 1px solid #fff;
}

.wf-itcfranklingothicw10md862390-n4-active .calendar-day {
    font-family: "ITCFranklinGothicW10-Md 862390", arial, sans-serif;
    font-weight: normal;
}

.calendar-grey .calendar-day {
    color: #B2B8C4;
}

.calendar-day.today {
    background-color: #ECECEC;
    color: #2d3746;
}

.calendar-day.enabled {
    color: #2d3746;
}

.calendar-day:hover {
    background: #EEEEEE;
    border-color: #EEEEEE;
}

.calendar-day:active {
    background: #2d3746;
    color: #fff;
    border-color: #2d3746;
}

.calendar-day.calendar-today {
    border-color: #EEEEEE;
}

.calendar-day.active {
    background: #2d3746;
    border-color: #2d3746;
    color: #fff;
}

.calendar-not-this-month {
    cursor: default;
    color: #020C22;
    background: none;
}

.calendar-not-this-month:hover {
    background: transparent;
    border-color: transparent;
}

.calendar-grey .calendar-not-this-month {
    color: #020C22;
}

.calendar-week-day {
    width: 28px;
    height: 40px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    color: #B2B8C4;
    letter-spacing: 1px;
    float: left;
    transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.calendar-week-day:hover, .calendar-week-day:focus, .calendar-week-day.hover {
    color: #020C22;
}

.calendar-month-header {
    text-align: center;
    text-transform: uppercase;
    margin: 27px 0 9px;
    top: 0;
}

.calendar-month-header > div {
    margin: auto;
    display: -moz-inline-stack;
    display: inline-block;
    width: 160px;
}

.calendar-wrapper-date {
    padding-top: 20px;
    height: 27px;
    *zoom: 1;
    transition: top 400ms cubic-bezier(0.23, 1, 0.32, 1), height 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), top 400ms cubic-bezier(0.23, 1, 0.32, 1), height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), top 400ms cubic-bezier(0.23, 1, 0.32, 1), height 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    white-space: nowrap;
    top: 0;
    position: relative;
    z-index: 1;
}

.calendar-wrapper-date:after {
    content: " ";
    display: table;
    clear: both;
}

.csstransforms .calendar-wrapper-date {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.csstransforms3d .calendar-wrapper-date {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.calendar-wrapper-date.is-active-dropdown {
    overflow: visible;
}

.calendar-wrapper-date.closed {
    top: -100%;
    height: 0;
    padding: 0;
}

.csstransforms .calendar-wrapper-date.closed {
    top: 0;
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.csstransforms3d .calendar-wrapper-date.closed {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.calendar-input-date {
    padding: 0 7px 0 20px;
    width: 114px;
    transition: width 400ms cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    vertical-align: top;
}

.is-active-input .calendar-input-date, .is-hover-input .calendar-input-date {
    width: 189px;
}

.calendar-input-date input {
    display: block;
    line-height: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 12px;
    color: #020C22;
    border: 1px solid #E2E3E4;
    border-radius: 2px;
    text-indent: 10px;
    transition: border-color 0.3s;
}

.wf-itcfranklingothicw10bk862339-n4-active .calendar-input-date input {
    font-family: "ITCFranklinGothicW10-Bk 862339", arial, sans-serif;
}

.calendar-input-date input:-moz-placeholder, .calendar-input-date input::-moz-placeholder {
    color: #B2B8C4;
    opacity: 1;
}

.calendar-input-date input::-webkit-input-placeholder {
    color: #B2B8C4;
}

.calendar-input-date input:hover {
    border-color: #3C485F;
}

.calendar-input-date input:focus {
    outline: none;
    border-color: #3C485F;
}

.calendar-input-date input.error {
    border-color: #c50c1e;
    position: inherit;
}

.calendar-year-dropdown {
    padding: 0 20px 0 7px;
    width: 66px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 1;
}

.is-active-input .calendar-year-dropdown, .is-hover-input .calendar-year-dropdown {
    left: 100%;
}

.csstransforms .is-active-input .calendar-year-dropdown, .csstransforms .is-hover-input .calendar-year-dropdown {
    left: 0;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.csstransforms3d .is-active-input .calendar-year-dropdown, .csstransforms3d .is-hover-input .calendar-year-dropdown {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.calendar-year-dropdown select {
    width: 100%;
    height: 27px;
    padding-left: 95px;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    background-image: url("/static/img/svg/chevron_down.svg");
    background-size: 8px 5px;
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    border: 1px solid #E2E3E4;
    border-radius: 2px;
    font-size: 13px;
    text-align: center;
    color: #020C22;
}

.wf-itcfranklingothicw10md862390-n4-active .calendar-year-dropdown select {
    font-family: "ITCFranklinGothicW10-Md 862390", arial, sans-serif;
    font-weight: normal;
}

.calendar-year-dropdown select:hover {
    border: 1px solid #28DCB4;
    background-image: url("/static/img/svg/chevron_down_gray.svg");
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.calendar-year-dropdown .dropdown {
    padding: 0;
    height: 25px;
    transition: border-color 400ms cubic-bezier(0.23, 1, 0.32, 1), background 400ms cubic-bezier(0.23, 1, 0.32, 1);
    background-image: url("/static/img/svg/chevron_down.svg");
    background-size: 8px 5px;
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 1px solid #E2E3E4;
}

.calendar-year-dropdown .dropdown.opened {
    border-color: #3C485F;
}

.calendar-year-dropdown .dropdown:hover {
    background-image: url("/static/img/svg/chevron_down_gray.svg");
    border-color: #3C485F;
}

.calendar-year-dropdown .dropdown:before {
    display: none;
}

.calendar-year-dropdown .dropdown:after {
    display: none;
}

.calendar-year-dropdown .current-value {
    line-height: 25px;
    height: 25px;
    padding: 0 0 0 10px;
    display: inline;
    margin: 0;
    width: 100%;
    border: none;
    font-size: 13px;
    color: #B2B8C4;
}

.wf-itcfranklingothicw10md862390-n4-active .calendar-year-dropdown .current-value {
    font-family: "ITCFranklinGothicW10-Md 862390", arial, sans-serif;
    font-weight: normal;
}

.calendar-year-dropdown .dropdown_list {
    position: absolute;
    display: none;
    padding: 0 10px;
    right: -1px;
    left: -1px;
    background: #fff;
    z-index: 110;
    overflow: auto;
    border-radius: 0 0 2px 2px;
    border: 1px solid #3C485F;
    border-top: 1px solid #E2E3E4;
    height: auto;
    text-align: center;
    max-height: 250px;
}

.calendar-year-dropdown .dropdown_list .list-item {
    line-height: 32px;
    transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.calendar-year-dropdown .dropdown_list .list-item:hover {
    color: #2d3746;
}

.calendar-year-dropdown .dropdown_list .current {
    color: #2d3746;
}

.calendar-next-month-button,
.calendar-prev-month-button {
    position: absolute;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0;
    bottom: 21px;
    background: none;
    font-weight: bold;
}

.calendar-prev-month-button {
    left: 10px;
}

.calendar-next-month-button {
    right: 10px;
}

.calendar-help {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 356px;
    border-top: 1px solid #E2E3E4;
    background: #F8F8F8;
    color: #626E8A;
    font-size: 13px;
    z-index: 12;
    padding: 26px 0 0;
    overflow: hidden;
}

.wf-itcfranklingothicw10bk862339-n4-active .calendar-help {
    font-family: "ITCFranklinGothicW10-Bk 862339", arial, sans-serif;
}

.calendar-help ul li {
    padding: 0 20px;
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

.calendar-help ul li.calendar-help-caption {
    cursor: auto;
}

.calendar-help ul:focus {
    outline: none;
}

.calendar-help .calendar-help-description {
    margin-bottom: 19px;
    padding: 0 20px;
    font-size: 15px;
}

.calendar-help .calendar-help-caption {
    color: #2d3746;
}

.calendar-help a {
    color: #2d3746;
    cursor: pointer;
}
