

/* Start:/local/tpl/css/libs/animate.css?150982797875357*/
@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_1 {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated_2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated_3 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated2 {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -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 {
  from, 20%, 53%, 80%, to {
    -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 {
  from, 20%, 53%, 80%, to {
    -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;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    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 {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -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 {
  from, to {
    -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 swipe {
    from, to, 40%, 80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    20%, 60% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
}

@keyframes swipe {
    from, to, 40%, 80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    20%, 60% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
}

.swipe {
    -webkit-animation-name: swipe;
    animation-name: swipe;
}

@-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);
  }

  to {
    -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);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -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);
  }

  to {
    -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 {
  from {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -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);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -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);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -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);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -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);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    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);
  }

  to {
    -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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -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;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -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;
  }

  to {
    -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 {
  from {
    -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);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -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);
  }

  to {
    -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 {
  from {
    -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);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -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);
  }

  to {
    -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 {
  from {
    -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;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -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;
  }

  to {
    -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 {
  from {
    -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;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -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;
  }

  to {
    -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 {
  from {
    -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;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -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;
  }

  to {
    -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 {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -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;
  }

  to {
    -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;
  }

  to {
    -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 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    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 {
  from {
    opacity: 1;
  }

  to {
    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 {
  from {
    opacity: 1;
  }

  to {
    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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/* End */


/* Start:/local/tpl/css/reset.css?15098279781153*/
@charset "windows-1251";
/* CSS Document */
/* Reset
----------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}

table, caption, tbody, tfoot, thead, tr, th, td {font-size:100%; font:inherit;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, video {
	display:block;
}

body {
	line-height:1;
}

ol, ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}
/* End */


/* Start:/local/tpl/css/bootstrap.css?1509827978144941*/
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: #333333;
  background-color: #fff;
  min-width: 320px;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #2668ca;
  text-decoration: none;
}
a:hover, a:focus {
  color: #1a478a;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role="button"] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 0;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1 .subtitle, h2 .subtitle, h3 .subtitle, h4 .subtitle, h5 .subtitle, h6 .subtitle,
.h1 .subtitle, .h2 .subtitle, .h3 .subtitle, .h4 .subtitle, .h5 .subtitle, .h6 .subtitle {
  color: #808b8f;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-bottom: 20px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-bottom: 10px;
  line-height: 1.55;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 50px;
}

h2, .h2 {
  font-size: 34px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

.text-large {
  font-size: 18px;
}

@media (max-width: 767px) {
  h1 .subtitle, h2 .subtitle, h3 .subtitle, h4 .subtitle, h5 .subtitle, h6 .subtitle,
  .h1 .subtitle, .h2 .subtitle, .h3 .subtitle, .h4 .subtitle, .h5 .subtitle, .h6 .subtitle {
    font-size: 12px;
  }

  h4, .h4 {
    font-size: 16px;
  }

  h3, .h3 {
    font-size: 18px;
  }

  .text-large {
    font-size: 12px;
  }
}
p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .lead {
    font-size: 20px;
  }
}

small,
.small {
  font-size: 75%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase, .initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

.text-primary {
  color: #2668ca;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #1e529f;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #2668ca;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #1e529f;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  height: 358px;
  margin: -50px 0 50px;
  position: relative;
  z-index: 1010;
  border-bottom: 1px solid #e0e7ea;
}
.page-header .container {
  height: inherit;
}
.page-header__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}
/*.page-header__media.visible-lg{
display:block!important;
}

.page-header__media.visible-md,
.page-header__media.visible-sm,
.page-header__media.visible-xs,
.page-header__media.visible-xxs{
display:none!important;
}*/
.page-header__media-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/local/tpl/css/../img/bg-header__gradient.png") 0 0 repeat-x;
}
.page-header__media-bl {
  background-position: 0 100%;
}
.page-header__media-bt {
  background-position: 0 0;
}
.page-header__media img {
  margin: 0 auto;
  display: block;
}
.page-header__title {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-header__description {
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 13px;
  letter-spacing: -0.02em;
}
.page-header__body {
  position: absolute;
  bottom: 50px;
}
.page-header__bar {
  line-height: 16px;
  color: #fff;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.page-header__bar i {
  vertical-align: middle;
  float: left;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.page-header__bar a {
  color: #fff;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 21px;
  position: relative;
}
.page-header__bar a i {
  position: absolute;
  left: 0;
  top: 5px;
}
.page-header__bar a:hover {
  color: #fff;
}
.page-header__bar a:hover i {
  opacity: 1;
  filter: alpha(opacity=100);
}
.page-header-inverse .page-header__body {
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-header .page-header__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-header {
    height: 250px !important;
    margin-bottom: 30px;
  }
  .page-header .page-header__title {
    font-size: 18px;
    margin-bottom: 15px !important;
  }
  .page-header .page-header__description {
    display: none;
  }
  .page-header .page-header__body {
    bottom: 15px !important;
  }
  .page-header .page-header__bar {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.page-header-lg {
  height: 480px;
}
.page-header-lg .page-header__body {
  bottom: 59px;
}
.page-header-lg .page-header__title {
  margin-bottom: 38px;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -15px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.25;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
}

blockquote {
  padding: 30px 0;
  margin: 0 0 20px;
  font-size: 16px;
  border-top: 2px solid #dce3e6;
  border-bottom: 2px solid #dce3e6;
  font-weight: 500;
  line-height: 1.75;
  color: #045fa3;
  font-style: italic;
}
@media (min-width: 768px) {
  blockquote {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  blockquote {
    padding: 10px 0;
    line-height: 25px;
  }
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.25;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #dce3e6;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.25;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.25;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1350px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -5px;
  margin-right: -5px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xxs-1, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xxs-2, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xxs-3, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xxs-4, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xxs-5, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xxs-6, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xxs-7, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xxs-8, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xxs-9, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xxs-10, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xxs-11, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xxs-12, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}

.col-xxs-1, .col-xxs-2, .col-xxs-3, .col-xxs-4, .col-xxs-5, .col-xxs-6, .col-xxs-7, .col-xxs-8, .col-xxs-9, .col-xxs-10, .col-xxs-11, .col-xxs-12 {
  float: left;
}

.col-xxs-1 {
  width: 8.33333%;
}

.col-xxs-2 {
  width: 16.66667%;
}

.col-xxs-3 {
  width: 25%;
}

.col-xxs-4 {
  width: 33.33333%;
}

.col-xxs-5 {
  width: 41.66667%;
}

.col-xxs-6 {
  width: 50%;
}

.col-xxs-7 {
  width: 58.33333%;
}

.col-xxs-8 {
  width: 66.66667%;
}

.col-xxs-9 {
  width: 75%;
}

.col-xxs-10 {
  width: 83.33333%;
}

.col-xxs-11 {
  width: 91.66667%;
}

.col-xxs-12 {
  width: 100%;
}

.col-xxs-pull-0 {
  right: auto;
}

.col-xxs-pull-1 {
  right: 8.33333%;
}

.col-xxs-pull-2 {
  right: 16.66667%;
}

.col-xxs-pull-3 {
  right: 25%;
}

.col-xxs-pull-4 {
  right: 33.33333%;
}

.col-xxs-pull-5 {
  right: 41.66667%;
}

.col-xxs-pull-6 {
  right: 50%;
}

.col-xxs-pull-7 {
  right: 58.33333%;
}

.col-xxs-pull-8 {
  right: 66.66667%;
}

.col-xxs-pull-9 {
  right: 75%;
}

.col-xxs-pull-10 {
  right: 83.33333%;
}

.col-xxs-pull-11 {
  right: 91.66667%;
}

.col-xxs-pull-12 {
  right: 100%;
}

.col-xxs-push-0 {
  left: auto;
}

.col-xxs-push-1 {
  left: 8.33333%;
}

.col-xxs-push-2 {
  left: 16.66667%;
}

.col-xxs-push-3 {
  left: 25%;
}

.col-xxs-push-4 {
  left: 33.33333%;
}

.col-xxs-push-5 {
  left: 41.66667%;
}

.col-xxs-push-6 {
  left: 50%;
}

.col-xxs-push-7 {
  left: 58.33333%;
}

.col-xxs-push-8 {
  left: 66.66667%;
}

.col-xxs-push-9 {
  left: 75%;
}

.col-xxs-push-10 {
  left: 83.33333%;
}

.col-xxs-push-11 {
  left: 91.66667%;
}

.col-xxs-push-12 {
  left: 100%;
}

.col-xxs-offset-0 {
  margin-left: 0%;
}

.col-xxs-offset-1 {
  margin-left: 8.33333%;
}

.col-xxs-offset-2 {
  margin-left: 16.66667%;
}

.col-xxs-offset-3 {
  margin-left: 25%;
}

.col-xxs-offset-4 {
  margin-left: 33.33333%;
}

.col-xxs-offset-5 {
  margin-left: 41.66667%;
}

.col-xxs-offset-6 {
  margin-left: 50%;
}

.col-xxs-offset-7 {
  margin-left: 58.33333%;
}

.col-xxs-offset-8 {
  margin-left: 66.66667%;
}

.col-xxs-offset-9 {
  margin-left: 75%;
}

.col-xxs-offset-10 {
  margin-left: 83.33333%;
}

.col-xxs-offset-11 {
  margin-left: 91.66667%;
}

.col-xxs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 600px) {
  .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
  }

  .col-xs-1 {
    width: 8.33333%;
  }

  .col-xs-2 {
    width: 16.66667%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-4 {
    width: 33.33333%;
  }

  .col-xs-5 {
    width: 41.66667%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-7 {
    width: 58.33333%;
  }

  .col-xs-8 {
    width: 66.66667%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-10 {
    width: 83.33333%;
  }

  .col-xs-11 {
    width: 91.66667%;
  }

  .col-xs-12 {
    width: 100%;
  }

  .col-xs-pull-0 {
    right: auto;
  }

  .col-xs-pull-1 {
    right: 8.33333%;
  }

  .col-xs-pull-2 {
    right: 16.66667%;
  }

  .col-xs-pull-3 {
    right: 25%;
  }

  .col-xs-pull-4 {
    right: 33.33333%;
  }

  .col-xs-pull-5 {
    right: 41.66667%;
  }

  .col-xs-pull-6 {
    right: 50%;
  }

  .col-xs-pull-7 {
    right: 58.33333%;
  }

  .col-xs-pull-8 {
    right: 66.66667%;
  }

  .col-xs-pull-9 {
    right: 75%;
  }

  .col-xs-pull-10 {
    right: 83.33333%;
  }

  .col-xs-pull-11 {
    right: 91.66667%;
  }

  .col-xs-pull-12 {
    right: 100%;
  }

  .col-xs-push-0 {
    left: auto;
  }

  .col-xs-push-1 {
    left: 8.33333%;
  }

  .col-xs-push-2 {
    left: 16.66667%;
  }

  .col-xs-push-3 {
    left: 25%;
  }

  .col-xs-push-4 {
    left: 33.33333%;
  }

  .col-xs-push-5 {
    left: 41.66667%;
  }

  .col-xs-push-6 {
    left: 50%;
  }

  .col-xs-push-7 {
    left: 58.33333%;
  }

  .col-xs-push-8 {
    left: 66.66667%;
  }

  .col-xs-push-9 {
    left: 75%;
  }

  .col-xs-push-10 {
    left: 83.33333%;
  }

  .col-xs-push-11 {
    left: 91.66667%;
  }

  .col-xs-push-12 {
    left: 100%;
  }

  .col-xs-offset-0 {
    margin-left: 0%;
  }

  .col-xs-offset-1 {
    margin-left: 8.33333%;
  }

  .col-xs-offset-2 {
    margin-left: 16.66667%;
  }

  .col-xs-offset-3 {
    margin-left: 25%;
  }

  .col-xs-offset-4 {
    margin-left: 33.33333%;
  }

  .col-xs-offset-5 {
    margin-left: 41.66667%;
  }

  .col-xs-offset-6 {
    margin-left: 50%;
  }

  .col-xs-offset-7 {
    margin-left: 58.33333%;
  }

  .col-xs-offset-8 {
    margin-left: 66.66667%;
  }

  .col-xs-offset-9 {
    margin-left: 75%;
  }

  .col-xs-offset-10 {
    margin-left: 83.33333%;
  }

  .col-xs-offset-11 {
    margin-left: 91.66667%;
  }

  .col-xs-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  background-color: transparent;
}

caption {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #777777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 12px 10px;
  font-size: 14px;
  line-height: 1.75;
  vertical-align: top;
  border-top: 1px solid #ced5d7;
}
@media screen and (max-width: 767px) {
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    font-size: 12px;
    padding: 7px !important;
  }
}
.table > thead > tr > th.indent,
.table > thead > tr > td.indent,
.table > tbody > tr > th.indent,
.table > tbody > tr > td.indent,
.table > tfoot > tr > th.indent,
.table > tfoot > tr > td.indent {
  padding-left: 50px;
}
.table > thead > tr.subrow > th,
.table > thead > tr.subrow > td,
.table > tbody > tr.subrow > th,
.table > tbody > tr.subrow > td,
.table > tfoot > tr.subrow > th,
.table > tfoot > tr.subrow > td {
  border-top: 0 none;
  padding: 15px 10px;
}
.table > thead > tr.noborder > th,
.table > thead > tr.noborder > td,
.table > tbody > tr.noborder > th,
.table > tbody > tr.noborder > td,
.table > tfoot > tr.noborder > th,
.table > tfoot > tr.noborder > td {
  border-top: 0 none;
}
.table > thead > tr > th {
  vertical-align: bottom;
  color: #808b8f;
  font-weight: 500;
  border-top: 0 none;
  padding: 14px 10px;
  border-bottom: 1px solid #ced5d7;
}
.table > tbody > tr > th {
  background-color: #f7f7f7;
  font-weight: 500;
}
.table > tbody > tr > th.nobg {
  background-color: transparent;
}
.table > thead > tr.th-line:first-child > th {
  padding-bottom: 0;
  border-bottom: 0 none;
}
.table > thead > tr.th-line > th {
  padding-top: 0;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ced5d7;
}
.table .table {
  background-color: #fff;
}
.table .text-large {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .table .text-large {
    font-size: 12px;
  }
}
.table-mobile > tbody > tr > td strong {
  color: #808b8f;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-no-separate > tbody > tr > th,
.table-no-separate > tbody > tr > td {
  border: 0 none;
}

.table-bordered {
  border: 1px solid #ced5d7;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ced5d7;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f7f7f7;
}
.table-hover > tbody > tr:hover.nohover {
  background-color: transparent;
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f7f7f7;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #eaeaea;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.25;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.25;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
  font-style: italic;
}
.form-control:-ms-input-placeholder {
  color: #999;
  font-style: italic;
}
.form-control::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm
  input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg
  input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled, fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled]
.checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 36px;
}
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
}
.has-success .form-control:focus {
  border-color: #2b542c;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
}
.has-warning .form-control:focus {
  border-color: #66512c;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
}
.has-error .form-control:focus {
  border-color: #843534;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -5px;
  margin-right: -5px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 5px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.33333px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.25;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #2668ca;
  border-color: #225db5;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #3155a6;
  border-color: #3155a6;
}
.btn-primary:hover {
  color: #fff;
  background-color: #3155a6;
  border-color: #3155a6;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #3155a6;
  border-color: #3155a6;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #1d3363;
  border-color: #142344;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #2668ca;
  border-color: #225db5;
}
.btn-primary .badge {
  color: #2668ca;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #2668ca;
  font-weight: normal;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #1a478a;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.25;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #1d68d9;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.25;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 18px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #2668ca;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs > li {
  float: left;
  cursor:pointer;
}
.nav-tabs > li > a {
  margin-right: 2px;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-pills {
  margin-left: -10px;
}
.nav-pills > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 10px;
}
.nav-pills > li > a {
  border: 1px solid #c2c9cc;
  border-radius: 20px;
  color: #4e5f68;
}
.nav-pills > li.primary > a, .nav-pills > li.primary > a:hover, .nav-pills > li.primary > a:focus, .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  border-color: #1d68d9;
  color: #fff;
  background-color: #1d68d9;
}
@media (max-width: 767px) {
  .nav-pills > li {
    float: none;
    text-align: center;
  }
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  overflow-x: visible;
  padding-right: 5px;
  padding-left: 5px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 600px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -5px;
  margin-left: -5px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 15px 5px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -5px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 5px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -5px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  margin-left: -5px;
  margin-right: -5px;
  padding: 10px 5px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
    margin-right: -5px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
.breadcrumb {
  padding: 0 0;
  margin: 52px 0 52px;
  list-style: none;
}
.breadcrumb > li {
  float: left;
  position: relative;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  padding: 5px 14px 5px 0;
}
.breadcrumb > li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  color: #8c969a;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAMCAYAAACulacQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REUwQzU2NjU4RjREMTFFNUFFMEJBQkY5RDE5NzU5MDIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REUwQzU2NjY4RjREMTFFNUFFMEJBQkY5RDE5NzU5MDIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpERTBDNTY2MzhGNEQxMUU1QUUwQkFCRjlEMTk3NTkwMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpERTBDNTY2NDhGNEQxMUU1QUUwQkFCRjlEMTk3NTkwMiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk2GWqQAAACPSURBVHjaYmzo7l/FwMCwEIi3MqABJiCeCMTzgTgYXZIFiI8CsScQbwNiTiBegiwJAmeB2AWId0IVzEaWBIHLQOwIxLuhCiaxoFlzE4jtgXgfEHMxMWCC/1DMiC6pDsQHoT5oR5bUgRrXCpWEO8gIiLcDcTGyV0A6rYB4BxDnIEvAdOYDcRIQb0F3GUCAAQAPmhnwpUz1IwAAAABJRU5ErkJggg==');
  width: 7px;
  height: 12px;
}
.breadcrumb > li + li {
  margin-left: 7px;
}
.breadcrumb > li > * {
  text-shadow: 1px 0px 1px #fff;
}
.breadcrumb > .active {
  color: #777777;
}
@media (max-width: 767px) {
  .breadcrumb {
    margin: 30px 0;
  }
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.25;
  text-decoration: none;
  color: #2668ca;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 3;
  color: #1a478a;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #2668ca;
  border-color: #2668ca;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  -moz-border-radius-topleft: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  -moz-border-radius-topright: 6px;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager:before, .pager:after {
  content: " ";
  display: table;
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #777777;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #2668ca;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #1e529f;
}

.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #2668ca;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 72px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #2668ca;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
  z-index: 1100;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #1d68d9;
  border-color: #1d68d9;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #cadcf8;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  -moz-border-radius-topleft: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ced5d7;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #2668ca;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #2668ca;
  border-color: #2668ca;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #2668ca;
}
.panel-primary > .panel-heading .badge {
  color: #2668ca;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #2668ca;
}

.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -moz-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.25px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.25;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.has-tooltip {
  background-color: #e8e8e8;
  cursor: pointer;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.has-tooltip:hover {
  background-color: #c5d4de;
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.25;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  line-height: 1.55;
}
.tooltip.top {
  margin-top: -3px;
  padding: 10px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 10px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 10px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 10px;
}

.tooltip-inner {
  max-width: 300px;
  padding: 20px 30px;
  color: #b6c0c3;
  text-align: left;
  background-color: rgba(25, 24, 26, 0.95);
  border-radius: 4px;
  -moz-box-shadow: 0 10px 40px rgba(36, 38, 42, 0.3);
  -webkit-box-shadow: 0 10px 40px rgba(36, 38, 42, 0.3);
  box-shadow: 0 10px 40px rgba(36, 38, 42, 0.3);
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  border-width: 10px 10px 0;
  border-top-color: rgba(25, 24, 26, 0.95);
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 10px;
  margin-bottom: -10px;
  border-width: 10px 10px 0;
  border-top-color: rgba(25, 24, 26, 0.95);
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 10px;
  margin-bottom: -10px;
  border-width: 10px 10px 0;
  border-top-color: rgba(25, 24, 26, 0.95);
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -10px;
  border-width: 10px 10px 10px 0;
  border-right-color: rgba(25, 24, 26, 0.95);
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -10px;
  border-width: 10px 0 10px 10px;
  border-left-color: rgba(25, 24, 26, 0.95);
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -10px;
  border-width: 0 10px 10px;
  border-bottom-color: rgba(25, 24, 26, 0.95);
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 10px;
  margin-top: -10px;
  border-width: 0 10px 10px;
  border-bottom-color: rgba(25, 24, 26, 0.95);
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 10px;
  margin-top: -10px;
  border-width: 0 10px 10px;
  border-bottom-color: rgba(25, 24, 26, 0.95);
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1070;
  display: none;
  max-width: 500px;
  cursor: auto;
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.25;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  line-height: 1.55;
  color: #b6c0c3;
  margin-left: -8px;
  background-color: #19181a;
  background-color: rgba(25, 24, 26, 0.95);
  background-clip: padding-box;
  border-radius: 4px;
  -moz-box-shadow: 0 10px 40px rgba(36, 38, 42, 0.3);
  -webkit-box-shadow: 0 10px 40px rgba(36, 38, 42, 0.3);
  box-shadow: 0 10px 40px rgba(36, 38, 42, 0.3);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}

.popover-dismiss {
  width: 30px;
  height: 30px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAKCAYAAABi8KSDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REY1NEZBRDY5MTIzMTFFNThEMTRDQTI0Qjg3RjkyRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REY1NEZBRDc5MTIzMTFFNThEMTRDQTI0Qjg3RjkyRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpERjU0RkFENDkxMjMxMUU1OEQxNENBMjRCODdGOTJFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpERjU0RkFENTkxMjMxMUU1OEQxNENBMjRCODdGOTJFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpoCh84AAACHSURBVHjaYvj//z8PEJ8F4ilAzAzEDGjYFIivAXEUiCMExO/+Q8A8IGZCU/gBKlcDEzRBEoRpMEUXQ7YOWcN6LJoZ0N2HrAHDWUwMmOA/Ay6AZup7qImbkGyYi+4MYySF86FBaI6mgRGkkA8p6BaghbU5etCxA/EeIJ6GI1JAGq4CcQRAgAEA9PBSj1DvXYQAAAAASUVORK5CYII=');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.popover-dismiss:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: rgba(17, 17, 18, 0.95);
  border-bottom: 1px solid rgba(5, 4, 5, 0.95);
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 20px 30px;
}

.popover > .arrow {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #19181a;
  border-top-color: rgba(25, 24, 26, 0.95);
  bottom: -11px;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #19181a;
  border-right-color: rgba(25, 24, 26, 0.95);
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #19181a;
  border-bottom-color: rgba(25, 24, 26, 0.95);
  top: -11px;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #19181a;
  border-left-color: rgba(25, 24, 26, 0.95);
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xxs {
  display: none !important;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 599px) {
  .visible-xxs {
    display: block !important;
  }

  table.visible-xxs {
    display: table !important;
  }

  tr.visible-xxs {
    display: table-row !important;
  }

  th.visible-xxs,
  td.visible-xxs {
    display: table-cell !important;
  }
}
@media (max-width: 599px) {
  .visible-xxs-block {
    display: block !important;
  }
}

@media (max-width: 599px) {
  .visible-xxs-inline {
    display: inline !important;
  }
}

@media (max-width: 599px) {
  .visible-xxs-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 599px) {
  .hidden-xxs {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/* End */


/* Start:/local/tpl/css/bootstrap-datepicker3.css?150982797823628*/
/*!
 * Datepicker for Bootstrap v1.6.0-dev (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
  padding: 4px;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.15);
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid rgba(0, 0, 0, 0.15);
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.datepicker > div {
  display: none;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #777777;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td.highlighted {
  color: #000000;
  background-color: #d9edf7;
  border-color: #85c5e5;
  border-radius: 0;
}
.datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.focus {
  color: #000000;
  background-color: #afd9ee;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted:hover {
  color: #000000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active,
.datepicker table tr td.highlighted.active {
  color: #000000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active:hover,
.datepicker table tr td.highlighted.active:hover,
.datepicker table tr td.highlighted:active:focus,
.datepicker table tr td.highlighted.active:focus,
.datepicker table tr td.highlighted:active.focus,
.datepicker table tr td.highlighted.active.focus {
  color: #000000;
  background-color: #91cbe8;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted.disabled:hover,
.datepicker table tr td.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.highlighted:hover,
.datepicker table tr td.highlighted.disabled:focus,
.datepicker table tr td.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.disabled.focus,
.datepicker table tr td.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.highlighted.focus {
  background-color: #d9edf7;
  border-color: #85c5e5;
}
.datepicker table tr td.highlighted.focused {
  background: #afd9ee;
}
.datepicker table tr td.highlighted.disabled,
.datepicker table tr td.highlighted.disabled:active {
  background: #d9edf7;
  color: #777777;
}
.datepicker table tr td.today {
  color: #000000;
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:focus,
.datepicker table tr td.today.focus {
  color: #000000;
  background-color: #ffc966;
  border-color: #b37400;
}
.datepicker table tr td.today:hover {
  color: #000000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today.active {
  color: #000000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active:hover,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today:active:focus,
.datepicker table tr td.today.active:focus,
.datepicker table tr td.today:active.focus,
.datepicker table tr td.today.active.focus {
  color: #000000;
  background-color: #ffbc42;
  border-color: #b37400;
}
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
.datepicker table tr td.today.disabled.focus,
.datepicker table tr td.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.today.focus {
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today.focused {
  background: #ffc966;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:active {
  background: #ffdb99;
  color: #777777;
}
.datepicker table tr td.range {
  color: #000000;
  background-color: #eeeeee;
  border-color: #bbbbbb;
  border-radius: 0;
}
.datepicker table tr td.range:focus,
.datepicker table tr td.range.focus {
  color: #000000;
  background-color: #d5d5d5;
  border-color: #7c7c7c;
}
.datepicker table tr td.range:hover {
  color: #000000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active,
.datepicker table tr td.range.active {
  color: #000000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active:hover,
.datepicker table tr td.range.active:hover,
.datepicker table tr td.range:active:focus,
.datepicker table tr td.range.active:focus,
.datepicker table tr td.range:active.focus,
.datepicker table tr td.range.active.focus {
  color: #000000;
  background-color: #c3c3c3;
  border-color: #7c7c7c;
}
.datepicker table tr td.range.disabled:hover,
.datepicker table tr td.range[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled:focus,
.datepicker table tr td.range[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range:focus,
.datepicker table tr td.range.disabled.focus,
.datepicker table tr td.range[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.focus {
  background-color: #eeeeee;
  border-color: #bbbbbb;
}
.datepicker table tr td.range.focused {
  background: #d5d5d5;
}
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:active {
  background: #eeeeee;
  color: #777777;
}
.datepicker table tr td.range.highlighted {
  color: #000000;
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.focus {
  color: #000000;
  background-color: #c1d7e3;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted:hover {
  color: #000000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active,
.datepicker table tr td.range.highlighted.active {
  color: #000000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active:hover,
.datepicker table tr td.range.highlighted.active:hover,
.datepicker table tr td.range.highlighted:active:focus,
.datepicker table tr td.range.highlighted.active:focus,
.datepicker table tr td.range.highlighted:active.focus,
.datepicker table tr td.range.highlighted.active.focus {
  color: #000000;
  background-color: #a8c8d8;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted.disabled:hover,
.datepicker table tr td.range.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.highlighted:hover,
.datepicker table tr td.range.highlighted.disabled:focus,
.datepicker table tr td.range.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.disabled.focus,
.datepicker table tr td.range.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted.focused {
  background: #c1d7e3;
}
.datepicker table tr td.range.highlighted.disabled,
.datepicker table tr td.range.highlighted.disabled:active {
  background: #e4eef3;
  color: #777777;
}
.datepicker table tr td.range.today {
  color: #000000;
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.focus {
  color: #000000;
  background-color: #f4b747;
  border-color: #815608;
}
.datepicker table tr td.range.today:hover {
  color: #000000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today.active {
  color: #000000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active:hover,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today:active:focus,
.datepicker table tr td.range.today.active:focus,
.datepicker table tr td.range.today:active.focus,
.datepicker table tr td.range.today.active.focus {
  color: #000000;
  background-color: #f2aa25;
  border-color: #815608;
}
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.disabled.focus,
.datepicker table tr td.range.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.today.focus {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:active {
  background: #f7ca77;
  color: #777777;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected.highlighted {
  color: #ffffff;
  background-color: #777777;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.focus,
.datepicker table tr td.selected.highlighted.focus {
  color: #ffffff;
  background-color: #5e5e5e;
  border-color: #161616;
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.highlighted:hover {
  color: #ffffff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected.highlighted:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.highlighted.active {
  color: #ffffff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active:hover,
.datepicker table tr td.selected.highlighted:active:hover,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.highlighted.active:hover,
.datepicker table tr td.selected:active:focus,
.datepicker table tr td.selected.highlighted:active:focus,
.datepicker table tr td.selected.active:focus,
.datepicker table tr td.selected.highlighted.active:focus,
.datepicker table tr td.selected:active.focus,
.datepicker table tr td.selected.highlighted:active.focus,
.datepicker table tr td.selected.active.focus,
.datepicker table tr td.selected.highlighted.active.focus {
  color: #ffffff;
  background-color: #4c4c4c;
  border-color: #161616;
}
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.highlighted.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.highlighted.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.disabled.focus,
.datepicker table tr td.selected.highlighted.disabled.focus,
.datepicker table tr td.selected[disabled].focus,
.datepicker table tr td.selected.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.selected.focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
  background-color: #777777;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active.highlighted {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:focus,
.datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.focus,
.datepicker table tr td.active.highlighted.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active.highlighted:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.highlighted.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.highlighted:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.highlighted.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.disabled.focus,
.datepicker table tr td.active.highlighted.disabled.focus,
.datepicker table tr td.active[disabled].focus,
.datepicker table tr td.active.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.active.focus,
fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.focus,
.datepicker table tr td span.active:hover.focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active.disabled:hover.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover:active:hover,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled:hover.active.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active:hover.disabled.focus,
.datepicker table tr td span.active.disabled.disabled.focus,
.datepicker table tr td span.active.disabled:hover.disabled.focus,
.datepicker table tr td span.active[disabled].focus,
.datepicker table tr td span.active:hover[disabled].focus,
.datepicker table tr td span.active.disabled[disabled].focus,
.datepicker table tr td span.active.disabled:hover[disabled].focus,
fieldset[disabled] .datepicker table tr td span.active.focus,
fieldset[disabled] .datepicker table tr td span.active:hover.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #777777;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.input-daterange {
  width: 100%;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  line-height: 1.42857143;
  text-shadow: 0 1px 0 #fff;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
/*# sourceMappingURL=bootstrap-datepicker3.css.map */
/* End */


/* Start:/local/tpl/css/jquery.fs.selecter.css?15098279785519*/
/* 
 * Selecter v3.2.4 - 2015-04-04 
 * A jQuery plugin for replacing default select elements. Part of the Formstone Library. 
 * http://classic.formstone.it/selecter/ 
 * 
 * Copyright 2015 Ben Plum; MIT Licensed 
 */


.selecter {
  position: relative;
  display: block;
  margin: 10px 0;
  z-index: 1;
  max-width: 30%;
}
.selecter:focus {
  box-shadow: none;
  outline: none;
}
.selecter,
.selecter * {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
.selecter,
.selecter *,
.selecter *:before,
.selecter *:after {
  box-sizing: border-box;
}
.selecter-element {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.selecter-element,
.selecter-element:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.no-opacity .selecter-element {
  left: -999999px;
}
.selecter-selected {
  position: relative;
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 13px;
  margin: 0;
  overflow: hidden;
  padding: 10px 15px;
  text-overflow: clip;
  z-index: 2;
  border-radius: 3px;
}
.selecter-selected:after {
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #cccccc;
  content: '';
  display: block;
  margin: auto 0;
}
.no-touch .selecter-selected:hover {
  color: #333333;
}
.no-touch .selecter.disabled .selecter-selected:hover {
  color: #cccccc;
}
.selecter-options {
  width: 100%;
  max-height: 260px;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #cccccc;
  border-width: 0 1px 1px;
  background-color: #ffffff;
  display: none;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  z-index: 50;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.selecter-options.scroller {
  position: absolute;
}
.no-opacity .selecter-options {
  width: auto;
}
.selecter-group {
  border-bottom: 1px solid #cccccc;
  color: #999999;
  display: block;
  font-size: 11px;
  padding: 10px 15px;
  text-transform: uppercase;
}
.selecter-item {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 13px;
  margin: 0;
  overflow: hidden;
  padding: 10px 15px;
  text-decoration: none;
  text-overflow: ellipsis;
}
.selecter-item.placeholder {
  display: none;
}
.selecter-item.selected {
  background: #eeeeee;
}
.selecter-item.disabled {
  color: #999999;
  cursor: default;
}
.selecter-item:first-child {
  border-radius: 0;
}
.selecter-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 2px 2px;
}
.no-touch .selecter-item:hover,
.no-touch .selecter-item.selected:hover {
  color: #333333;
  background-color: #cccccc;
}
.selecter-item.disabled,
.no-touch .selecter-item.disabled:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter.open {
  z-index: 3;
}
.selecter.open .selecter-selected {
  z-index: 51;
  border-radius: 3px 3px 0 0;
}
.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.selecter.cover .selecter-options {
  border-width: 1px;
  top: 0;
  border-radius: 3px;
}
.selecter.cover .selecter-options .selecter-item.first {
  border-radius: 3px 3px 0 0;
}
.selecter.cover.open .selecter-selected {
  z-index: 49;
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .selecter-options {
  /*top: auto;*/
  top: 100%;
  bottom: auto;
  border-width: 1px 1px 0;
}
.selecter.bottom .selecter-item:last-child {
  border: none;
}
.selecter.bottom.open .selecter-selected {
  border-radius: 0 0 3px 3px;
}
.selecter.bottom.open .selecter-options {
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .cover .selecter-options {
  top: auto;
  bottom: 0;
}
.selecter.bottom .cover.open .selecter-selected {
  border-radius: 3px;
}
.selecter.bottom .cover.open .selecter-options {
  border-radius: 3px;
}
.selecter.multiple .selecter-options {
  width: 100%;
  position: static;
  border-width: 1px;
  display: block;
  border-radius: 3px;
  box-shadow: none;
}
.selecter.disabled .selecter-selected {
  background: #ffffff;
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-options {
  background: #ffffff;
  border-color: #cccccc;
}
.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-item.selected,
.no-touch .selecter.disabled .selecter-item.selected:hover {
  background: #fafafa;
}
.selecter.disabled .selecter-item,
.no-touch .selecter.disabled .selecter-item:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter-options.scroller {
  overflow: hidden;
}
.selecter-options.scroller .scroller-content {
  max-height: 260px;
  padding: 0;
}
@media screen and (max-width: 740px) {
  .selecter {
    max-width: 40%;
  }
}
@media screen and (max-width: 500px) {
  .selecter {
    max-width: 100%;
  }
}

/* End */


/* Start:/local/tpl/css/swiper.css?150982797818397*/
/**
 * Swiper 3.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: November 7, 2015
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-overflow {
  overflow: visible;
}
@media (max-width: 767px) {
  .swiper-container-row {
    overflow: visible;
    margin-left: 20px;
    margin-right: 20px;
  }
  .swiper-container-row .container {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
  width: auto;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-slide__title {
  display: none;
}

.swiper__title {
  line-height: 40px;
  font-size: 14px;
  min-height: 40px;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  float: left;
  margin-right: 30px;
  z-index: 10;
  position: relative;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  border: 1px solid #a1aeb3;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  font-weight: 500;
  color: #a1aeb3;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.swiper-pagination-bullet:hover {
  border-color: #1d68d9;
  color: #1d68d9;
}
.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}
.swiper-pagination-bullet-active {
  background: #1d68d9;
  border-color: #1d68d9;
  color: #fff !important;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Cube */
.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* End */


/* Start:/local/tpl/css/style.css?1577293283197216*/
@font-face {
  font-family: "Fira Sans";
  font-display: block;
  src: url('/local/tpl/css/../fonts/firasans-regular.eot?1447336593');
  src: url('/local/tpl/css/../fonts/firasans-regular.eot?&1447336593#iefix') format('embedded-opentype'), url('/local/tpl/css/../fonts/firasans-regular.woff2?1447336595') format('woff2'), url('/local/tpl/css/../fonts/firasans-regular.woff?1447336594') format('woff'), url('/local/tpl/css/../fonts/firasans-regular.ttf?1447336594') format('truetype'), url('/local/tpl/css/../fonts/firasans-regular.svg?1447336593#fira_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Fira Sans";
  font-display: block;
  src: url('/local/tpl/css/../fonts/firasans-italic.eot?1447336585');
  src: url('/local/tpl/css/../fonts/firasans-italic.eot?&1447336585#iefix') format('embedded-opentype'), url('/local/tpl/css/../fonts/firasans-italic.woff2?1447336587') format('woff2'), url('/local/tpl/css/../fonts/firasans-italic.woff?1447336587') format('woff'), url('/local/tpl/css/../fonts/firasans-italic.ttf?1447336587') format('truetype'), url('/local/tpl/css/../fonts/firasans-italic.svg?1447336586#fira_sansitalic') format('svg');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Fira Sans";
  font-display: block;
  src: url('/local/tpl/css/../fonts/firasans-medium.eot?1450917055');
  src: url('/local/tpl/css/../fonts/firasans-medium.eot?&1450917055#iefix') format('embedded-opentype'), url('/local/tpl/css/../fonts/firasans-medium.woff2?1450917055') format('woff2'), url('/local/tpl/css/../fonts/firasans-medium.woff?1450917055') format('woff'), url('/local/tpl/css/../fonts/firasans-medium.ttf?1450917055') format('truetype'), url('/local/tpl/css/../fonts/firasans-medium.svg?1450917055#fira_sansmedium') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Fira Sans";
  font-display: block;
  src: url('/local/tpl/css/../fonts/firasans-mediumitalic.eot?1450917055');
  src: url('/local/tpl/css/../fonts/firasans-mediumitalic.eot?&1450917055#iefix') format('embedded-opentype'), url('/local/tpl/css/../fonts/firasans-mediumitalic.woff2?1450917055') format('woff2'), url('/local/tpl/css/../fonts/firasans-mediumitalic.woff?1450917055') format('woff'), url('/local/tpl/css/../fonts/firasans-mediumitalic.ttf?1450917055') format('truetype'), url('/local/tpl/css/../fonts/firasans-mediumitalic.svg?1450917055#fira_sansmediumitalic') format('svg');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Fira Sans";
  font-display: block;
  src: url('/local/tpl/css/../fonts/firasans-bold.eot?1450917055');
  src: url('/local/tpl/css/../fonts/firasans-bold.eot?&1450917055#iefix') format('embedded-opentype'), url('/local/tpl/css/../fonts/firasans-bold.woff2?1450917055') format('woff2'), url('/local/tpl/css/../fonts/firasans-bold.woff?1450917055') format('woff'), url('/local/tpl/css/../fonts/firasans-bold.ttf?1450917055') format('truetype'), url('/local/tpl/css/../fonts/firasans-bold.svg?1450917055#fira_sansbold') format('svg');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Fira Sans";
  font-display: block;
  src: url('/local/tpl/css/../fonts/firasans-bolditalic.eot?1450917055');
  src: url('/local/tpl/css/../fonts/firasans-bolditalic.eot?&1450917055#iefix') format('embedded-opentype'), url('/local/tpl/css/../fonts/firasans-bolditalic.woff2?1450917055') format('woff2'), url('/local/tpl/css/../fonts/firasans-bolditalic.woff?1450917055') format('woff'), url('/local/tpl/css/../fonts/firasans-bolditalic.ttf?1450917055') format('truetype'), url('/local/tpl/css/../fonts/firasans-bolditalic.svg?1450917055#fira_sansbolditalic') format('svg');
  font-weight: bold;
  font-style: italic;
}
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes bg {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 50% 50%;
  }
}
@-webkit-keyframes bg {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 50% 50%;
  }
}
@keyframes bg {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 50% 50%;
  }
}
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/*@mixin clearfix {
  overflow: hidden;
  @include has-layout;
}*/
/* Sprites
----------------------------------*/
[class^="icon-"] {
  background-image: url('/local/tpl/css/../img/sprites-s8717c6b185.png') !important;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 5px;
  margin-left: 0;
  text-indent: -555em;
  overflow: hidden;
  text-align: left;
}

.icon__pull-right {
  margin-left: 5px;
  margin-right: 0;
}

.icon__v-middle {
  vertical-align: middle;
}

.icon__simple {
  margin: 0;
}

.icon-arr-left {
  background-position: -50px -319px;
  height: 40px;
  width: 24px;
}

.icon-arr-right {
  background-position: 0 -239px;
  height: 40px;
  width: 24px;
}

.icon-close {
  background-position: -44px -32px;
  height: 19px;
  width: 19px;
}
.icon-close:hover, .icon-close.hover {
  background-position: 0 -279px;
}

.icon-crumb {
  background-position: 0 -51px;
  height: 12px;
  width: 7px;
}

.icon-fb {
  background-position: 0 -95px;
  height: 24px;
  width: 13px;
}
.icon-vk {
  background:url('/local/tpl/img/vk.png') no-repeat top left!important;
  height: 24px;
  width: 24px;
}

.icon-file-blue {
  background-position: -20px -319px;
  height: 40px;
  width: 30px;
}

.icon-file-green {
  background-position: -48px -239px;
  height: 40px;
  width: 30px;
}

.icon-file-orange {
  background-position: -19px -279px;
  height: 40px;
  width: 30px;
}

.icon-file-red {
  background-position: -49px -279px;
  height: 40px;
  width: 30px;
}

.icon-file-sm-blue {
  background-position: 0 -359px;
  height: 32px;
  width: 24px;
}

.icon-file-sm-green {
  background-position: -48px -143px;
  height: 32px;
  width: 24px;
}

.icon-file-sm-orange {
  background-position: -39px -175px;
  height: 32px;
  width: 24px;
}

.icon-file-sm-red {
  background-position: -24px -143px;
  height: 32px;
  width: 24px;
}

.icon-file-sm {
  background-position: -36px -207px;
  height: 32px;
  width: 24px;
}

.icon-file {
  background-position: -24px -359px;
  height: 40px;
  width: 30px;
}

.icon-help-view {
  background-position: 0 -522px;
  height: 41px;
  width: 43px;
}
.icon-help-view:hover, .icon-help-view.hover {
  background-position: 0 -440px;
}

.icon-help {
  background-position: 0 -481px;
  height: 41px;
  width: 43px;
}
.icon-help:hover, .icon-help.hover {
  background-position: 0 -399px;
}

.icon-i-mail-white {
  background-position: -13px -71px;
  height: 18px;
  width: 22px;
}

.icon-i-mail {
  background-position: -43px -399px;
  height: 18px;
  width: 22px;
}

.icon-i-play-video {
  background-position: 0 -563px;
  height: 80px;
  width: 80px;
}

.icon-like {
  background-position: -28px 0;
  height: 16px;
  width: 12px;
}

.icon-link-arr {
  background-position: 0 -32px;
  height: 12px;
  width: 12px;
}

.icon-mail-arr {
  background-position: 0 -16px;
  height: 11px;
  width: 13px;
}

.icon-mail-sm {
  background-position: -7px -51px;
  height: 16px;
  width: 16px;
}

.icon-marker-sm {
  background-position: -28px -32px;
  height: 16px;
  width: 16px;
}

.icon-marker {
  background-position: -16px 0;
  height: 16px;
  width: 12px;
}

.icon-menu {
  background-position: -23px -51px;
  height: 20px;
  width: 24px;
}
.icon-menu:hover, .icon-menu.hover {
  background-position: -47px -51px;
}

.icon-phone-sm {
  background-position: -29px -16px;
  height: 16px;
  width: 16px;
}

.icon-print_white {
  background-position: -45px -16px;
  height: 16px;
  width: 16px;
}

.icon-ref {
  background-position: -61px -16px;
  height: 16px;
  width: 16px;
}

.icon-search {
  background-position: 0 -319px;
  height: 20px;
  width: 20px;
}
.icon-search:hover, .icon-search.hover {
  background-position: -35px -71px;
}

.icon-select_down {
  background-position: 0 -71px;
  height: 8px;
  width: 13px;
}

.icon-share-fb {
  background-position: -13px -95px;
  height: 24px;
  width: 24px;
}

.icon-share-gplus {
  background-position: 0 -143px;
  height: 24px;
  width: 24px;
}

.icon-share-hh {
  background-position: -55px -71px;
  height: 24px;
  width: 24px;
}

.icon-share-rss {
  background-position: -15px -175px;
  height: 24px;
  width: 24px;
}

.icon-share-tw {
  background-position: -50px -119px;
  height: 24px;
  width: 24px;
}

.icon-share-vk {
  background-position: -26px -119px;
  height: 24px;
  width: 24px;
}

.icon-swipe {
  background-position: 0 -207px;
  height: 32px;
  width: 36px;
}

.icon-time {
  background-position: -12px -32px;
  height: 16px;
  width: 16px;
}

.icon-time_white {
  background-position: -56px 0;
  height: 16px;
  width: 16px;
}

.icon-touch {
  background-position: -24px -239px;
  height: 40px;
  width: 24px;
}

.icon-tw {
  background-position: -37px -95px;
  height: 24px;
  width: 24px;
}

.icon-video {
  background-position: -13px -16px;
  height: 16px;
  width: 16px;
}

.icon-view {
  background-position: 0 0;
  height: 16px;
  width: 16px;
}

.icon-view_white {
  background-position: -40px 0;
  height: 16px;
  width: 16px;
}

.icon-web {
  background-position: 0 -175px;
  height: 15px;
  width: 15px;
}

.icon-youtube {
  background-position: 0 -119px;
  height: 24px;
  width: 26px;
}

.icon-logo {
  margin: 0;
}

.icon-swipe.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

.icon-help-view {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  z-index: 800;
}

.z-index {
  z-index: 810;
  position: relative;
}

area {
  cursor: pointer !important;
}

/* Color
-------------------------------------------------- */
.text-brand {
  color: #2668ca !important;
}

.text-gray {
  color: #555555 !important;
}

/* Service
-------------------------------------------------- */
.f-size-large {
  font-size: 18px;
}

.f-size-base {
  font-size: 16px;
}

/* Service
-------------------------------------------------- */
.link-decoration {
  text-decoration: underline;
}

.link-no-decoration {
  text-decoration: none !important;
}

.strike {
  text-decoration: line-through;
}

.no-margin {
  margin: 0 !important;
}

.clear:before, .clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}

.js-link {
  display: inline-block !important;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
}
.js-link:hover, .js-link:focus {
  text-decoration: none !important;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.js-link:before {
  content: "";
  border-bottom: 1px dashed !important;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.js-inline {
  cursor: pointer;
}

/* Other
-------------------------------------------------- */
.visible-inline-block {
  display: inline-block !important;
}

.wow {
  visibility: hidden;
}

.block {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .block {
    margin-bottom: 30px;
  }
}

.box {
  margin-bottom: 20px;
}

.bg-live {
  -webkit-animation: bg 60s linear infinite alternate;
  -o-animation: bg 60s linear infinite alternate;
  animation: bg 60s linear infinite alternate;
}

/* Link
-------------------------------------------------- */
.link-file {
  font-size: 16px;
  line-height: 27px;
  padding-left: 50px;
  position: relative;
  display: inline-block;
}
.link-file:hover i {
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.link-file span {
  display: table-cell;
  vertical-align: middle;
  min-height: 40px;
}
.link-file i {
  position: absolute;
  left: 0;
  top: 7px;
  margin: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.link-file-sm {
  font-size: 14px;
  line-height: 20px;
  padding-left: 40px;
}
.link-file-sm i {
  top: 4px;
}
.link-file .file__description {
  color: #808b8f;
  font-size: 14px;
}
@media (max-width: 767px) {
  .link-file {
    font-size: 14px;
    line-height: 20px;
  }
  .link-file i {
    top: 2px;
  }
}

.article__block .link-file {
  margin-top: 8px;
}
@media (max-width: 991px) {
  .article__block .link-file {
    margin-top: 0;
  }
}
.article__block .link-file-subtitle {
  margin-top: 39px;
}
@media (max-width: 991px) {
  .article__block .link-file-subtitle {
    margin-top: 0;
  }
}

.list-files {
  margin-top: 0 !important;
}
.list-files__item {
  margin-top: 33px;
}
@media (max-width: 991px) {
  .list-files__item {
    margin-top: 20px;
  }
}
.list-files .link-file {
  margin: 0;
}

footer .b-link-app a:hover,
footer .design a:hover,
footer .develop a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.infobox {
  font-family: "Fira Sans", sans-serif;
  background-color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 390px;
}
.infobox:before {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #fff;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: 100%;
}
.infobox > img {
  position: absolute;
  right: 12px;
  top: 12px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.infobox > img:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.infobox__title {
  background-color: #e8ebed;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 7px 43px 7px 20px;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
}
.infobox__body {
  font-size: 12px;
  padding: 15px 20px;
}
.infobox__body ul li {
  padding-left: 10px;
  position: relative;
  margin-top: 5px;
}
.infobox__body ul li:before {
  content: "";
  width: 3px;
  height: 3px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
  background-color: #1d68d9;
}

.stat__title {
  font-size: 14px;
  color: #8b9199;
  margin-bottom: 5px;
    height: 34px;
}
.stat__title-value {
  font-size: 40px;
  font-weight: 500;
  color: #1f242b;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .stat__title {
    font-size: 13px;
  }
  .stat__title-value {
    font-size: 37px;
  }
}

.stat__body {
  border-left: 1px solid #f0f2f3;
  margin-bottom: 20px;
  min-height: 130px;
}
.stat__body-bar {
  float: left;
  display: none;
}
.stat__body-bar .stat__item {
  position: relative;
}
.stat__body-bar .stat__item-title {
  float: none;
  border-color: #dce6f3;
  position: relative;
  margin-right: 10px;
      max-width: 250px;
}
.stat__body-bar .stat__item-bar {
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  background-color: #345bc7;
}
.stat__body-bar .stat__item-value {
  position: absolute;
  left: 100%;
  bottom: 13px;
}
.stat__body-txt {
  float: left;
}
.stat__body-txt .stat__item {
  padding-top: 8px;
  padding-bottom: 20px;
  float: none;
  position: relative;
}
.stat__body-txt .stat__item-title {
  border-bottom: 0 none;
  padding-bottom: 0;
  float: none;
  margin-right: 40px;
}
.stat__body-txt .stat__item-value {
  position: absolute;
  left: 100%;
  bottom: 18px;
}

.stat__item {
  padding-bottom: 17px;
}
.stat__item-title {
  color: #808b8f;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 4px solid #345bc7;
  float: left;
  margin-right: 5px;
  padding: 0 0 5px 10px;
}
.stat__item-value {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #345bc7;
  position: relative;
  bottom: -4px;
}

.list-address {
  list-style: none;
}
.list-address > li {
  padding-left: 21px !important;
  position: relative;
  line-height: 16px;
}
.list-address > li:before {
  display: none;
}
.list-address > li + li {
  margin-top: 10px;
}
.list-address > li i {
  position: absolute;
  left: 0;
  top: 0;
}

.scheme-list,
.masks-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scheme-list__item,
.masks-list__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.scheme-list__item.active,
.masks-list__item.active {
  opacity: 1;
  filter: alpha(opacity=100);
}
.scheme-list + img,
.masks-list + img {
  position: relative;
  z-index: 800;
}

.count-to {
  display: inline-block;
}

img {
  border: none;
  height: auto;
}

* {
  outline: 0 none !important;
}

html, body {
  height: 100%;
}

p {
  padding: 0 0 10px;
}

a {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover {
  text-decoration: none;
}

.over {
  float: left;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.over-inner {
  padding-bottom: 30px;
  position: relative;
}

input::-webkit-input-placeholder {
  opacity: 1 !important;
  color: #809097;
}

input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1 !important;
  color: #809097;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1 !important;
  color: #809097;
}

input:-ms-input-placeholder {
  opacity: 1 !important;
  color: #809097;
}

textarea::-webkit-input-placeholder {
  opacity: 1 !important;
  color: #809097;
}

textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1 !important;
  color: #809097;
}

textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1 !important;
  color: #809097;
}

textarea:-ms-input-placeholder {
  opacity: 1 !important;
  color: #809097;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

input[type='submit']::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input, textarea {
  font-family: 'Fira Sans', sans-serif;
}

span.v1 {
  display: table;
  #display: block;
  float: left;
  #position: relative;
  height: auto;
  overflow: hidden;
}

span.v2 {
  #position: absolute;
  #top: 50%;
  display: table-cell;
  vertical-align: middle;
}

span.v3 {
  #position: relative;
  #top: -50%;
}

strong, b {
  font-weight: 600;
}

i, em {
  font-style: italic;
}

table p {
  padding: 0 !important;
}

.all {
  margin: 0 auto;
  width: 100%;
  max-width: 1450px;
  padding: 0 20px;
}

header {
  background: #fff;
  height: 101px;
  position: relative;
  z-index: 820;
  padding: 25px 0;
  border-bottom: 1px solid #e0e7ea;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  header {
    padding: 15px 0 12px;
    height: 77px;
  }
}

header .logo {
  display: block;
  float: left;
  /*Логина О. 14.10.2019 SD10600769*/
  /*margin-right: 42px;*/
  margin-right: 23px;
  /*end*/
  position: relative;
  /*img {
    visibility: hidden;
  }
  &:before,
  &:after{
    content: "";
    position: absolute;
    top: 0;
    background: #fff url("/local/tpl/css/../img/logo.png") no-repeat 0 0;
    height: 50px;
  }
  &:before{
    width: 50px;
    left: 0;
    @include animation(spin 10s linear infinite);
    @include border-radius (25%);
  }
  &:after{
    right: 0;
    width: 89px;
    background-position: right top;
  }*/
}
header .logoen {
  display: block;
  float: left;
  margin-right: 42px;
	position: relative;}

header a.logo:hover,header a.logoen:hover,
footer a.flogo:hover {
  opacity: 0.7;
  /*filter: alpha(opacity=70);*/
}

header .menu {
  font-size: 15px;
}

header .menu .m-ico {
  display: block;
  line-height: 1.2;
  cursor: pointer;
  float: left;
  border-radius: 3px;
  border: 1px solid #c2c9cc;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 25px 15px 61px;
  color: #4e5f68;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu .m-ico:before, header .menu .m-ico:after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -10px;
  background-image: url('/local/tpl/css/../img/sprites-s8717c6b185.png') !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu .m-ico:before {
  background-position: -23px -51px;
  height: 20px;
  width: 24px;
}
header .menu .m-ico:before:hover, header .menu .m-ico:before.hover {
  background-position: -47px -51px;
}
header .menu .m-ico:after {
  background-position: -47px -51px;
  height: 20px;
  width: 24px;
  opacity: 0;
  filter: alpha(opacity=0);
}
header .menu .m-ico:hover {
  color: #2286f7;
}
header .menu .m-ico:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

header .menu .m-ico.active {
  background-color: #e0e7ea;
  border-radius: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: -32px;
  border: 1px solid #e0e7ea;
  margin-top: -25px;
}

#menuTop {
  display: none;
  border-bottom: 1px solid #e0e7ea;
  position: absolute;
  left: 0;
  width: 100%;
  background: url(/local/tpl/css/../img/bg.png) 50% 100% no-repeat #fff;
  top: 0;
  z-index: 820;
  min-height: 100%;
}
#menuTop .container {
  position: static;
}

#menuTop .all, .searchField .all {
  position: relative;
}

#menuTop .all {
  margin-top: 101px;
  padding-top: 29px;
  margin-bottom: 60px;
}

#menuTop .icon-close {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 20px;
}

header .icon-close {
  display: block;
  cursor: pointer;
  position: absolute;
  top: -68px;
  right: 19px;
}

#menuTop .col-md-2 {
  padding: 0 10px;
  color: #4e5f68;
  font-size: 16px;
}
@media (min-width: 992px) {
  #menuTop .col-md-2 {
    width: 20%;
  }
}
#menuTop .col-md-2 a {
  color: inherit;
  text-decoration: none;
  line-height: 21px;
}
#menuTop .col-md-2 a:hover {
  color: #2668ca;
}

#menuTop .title {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 25px;
}

#menuTop ul {
  padding-bottom: 10px;
}

#menuTop ul li {
  margin: 0 0 14px;
}

header .menu2 {
  font-size: 15px;
  float: left;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 0;
  /*Логина О. 14.10.2019 SD10600769*/
  /*margin-left: 26px;*/
  margin-left: 0px;
  /*end*/
  margin-top: -25px;
}

header .menu2 li {
  float: left;
}

header .menu2 li.active {
  background: #e0e7ea;
}

header .menu2 a {
  color: #4e5f68;
  text-decoration: none;
  display: inline-block;
  padding: 40px 0;
  box-sizing: content-box;
  height: 20px;
  /*Логина О. 14.10.2019 SD10600769*/
  /*margin: 0 13px;*/
  margin: 0 7px;
  /*end*/
}

header .menu2 a:hover {
  color: #2286f7;
}

header .search {
  float: right;
  margin-top: 15px;
  margin-left: 35px;
}

header .search .btn-search {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

header .lang {
  float: right;
  margin-top: 14px;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
}

header .lang a.active,
header .lang span.active {
  color: #4e5f68 !important;
  background: #e0e7ea !important;
  border-radius: 10px;
  cursor: auto;
  position: relative;
}

header .lang a,
header .lang span {
  display: inline-block;
  padding: 0 12px;
  line-height: 22px;
  color: #2668ca;
  text-decoration: none;
}

header .lang a:hover {
  color: #2286f7;
}

#menuTop p.copiraitIcon {
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #4e5f68;
  margin: -60px 0 0 0;
  padding: 0;
  font-family: Fira Sans;
  position: absolute;
  top: 100%;
}

.search .searchField {
  display: none;
  border-bottom: 1px solid #e0e7ea;
  position: absolute;
  top: 100%;
  padding: 17px 0 13px;
  left: 0;
  width: 100%;
  margin-top: 1px;
  background: #fff;
}

.searchField .icon-close {
  top: 22px;
}

.searchField label {
  font-family: Fira Sans;
  font-size: 16px;
  color: #4e5f68;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: -0.6px;
}

.searchField input {
  font-family: Fira Sans;
  font-size: 33px;
  color: #121a24;
  font-weight: bold;
  border: none;
  width: 100%;
  padding-right: 30px;
}

.b-tab-menu {
  position: relative;
  z-index: 811;
}

.b-tab-menu ul {
  margin-bottom: 0px;
}

/*.b-tab-menu ul li {
  float: left;
  margin-bottom: 10px;
}*/

.b-tab-menu ul li a {
  background-color: #3a6dda;
  background-color: rgba(29, 104, 217, 0.85);
  padding: 0 20px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: block;
  height: 90px;
}

/*Logina*/
.b-tab-menu ul li p {
  background-color: #3a6dda;
  background-color: rgb(58, 109, 218);
  /*padding: 0 5px;*/
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: block;
  /*height: 90px;*/
margin:0;
height: 20px;
width:315px;
text-align: left; 
padding-right: 5px;
padding-left: 5px;
}
/*Logina*/

.item{
 width: 315px; 
display: none;   /* background: rgb(58, 109, 218);*/
}
.par:hover .item{
    display:block;
    position:absolute;/* relative;*/
    /*top:120px;*/
    z-index:1;
    /*width:400px!important;*/
}
/*end*/

.b-tab-menu ul li a .v1 {
  float: none;
  height: 90px;
}

.b-tab-menu ul li a:hover {
  background-color: #1d68d9;
}

.block-info span {
  display: block;
}

.block-info .date {
  position: absolute;
  top: 21px;
  left: 28px;
  color: #fff;
}

.block-info .date .right {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-left: 53px;
  margin-top: 8px;
  text-transform: uppercase;
}

.block-info .date .day {
  font-weight: bold;
  font-size: 40px;
  float: left;
  line-height: 1;
}

.block-info .name-block {
  background-color: #c9cfd2;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 11px;
  padding: 5px 10px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 26px;
  right: 20px;
  color: #fff;
  max-width: 140px;
}

.block-info .title {
  position: absolute;
  bottom: 75px;
  letter-spacing: -0.5px;
  left: 30px;
  line-height: 1.3;
  font-weight: 500;
  font-size: 27px;
  right: 24px;
  word-break: keep-all;
}

/* Block info
-------------------------------------------------- */
.block-info {
  position: relative;
  color: #fff;
  height: 320px;
  margin-bottom: 10px;
}
.block-info a {
  display: block;
  width: 100%;
  height: 100%;
}
.block-info a > * {
  z-index: 10;
}
.block-info a:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.block-info__media {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 0 !important;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.block-orange.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-1x1-orange.png);
    background-size: 100% 100%;
}
.block-orange.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-1x1-orange.png);
    background-size: 100% 100%;
}
.block-orange.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-1x1-orange.png);
    background-size: 100% 100%;
}
.block-orange.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-1x1-orange.png);
    background-size: 100% 100%;
}
.block-pink.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-1x1-red.png);
    background-size: 100% 100%;
}
.block-pink.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-1x1-red.png);
    background-size: 100% 100%;
}
.block-pink.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-1x1-red.png);
    background-size: 100% 100%;
}
.block-pink.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-1x1-red.png);
    background-size: 100% 100%;
}
.block-green.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-1x1-green.png);
    background-size: 100% 100%;
}
.block-green.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-1x1-green.png);
    background-size: 100% 100%;
}
.block-green.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-1x1-green.png);
    background-size: 100% 100%;
}
.block-green.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-1x1-green.png);
    background-size: 100% 100%;
}
.block-blue.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-1x1-blue.png);
    background-size: 100% 100%;
}
.block-blue.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-1x1-blue.png);
    background-size: 100% 100%;
}
.block-blue.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-1x1-blue.png);
    background-size: 100% 100%;
}
.block-blue.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-1x1-blue.png);
    background-size: 100% 100%;
}

.col-lg-6 .block-orange.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x1-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-orange.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x1-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-orange.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x1-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-orange.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x1-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x1-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x1-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x1-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x1-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x1-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x1-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x1-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x1-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x1-blue.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x1-blue.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x1-blue.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x1-blue.png);
    background-size: 100% 100%;
}

.col-lg-6 .block-orange.block-interviy.block-info.block-index-1 a,
.col-lg-6 .block-orange.block-main.block-info.block-index-1 a{
    background: url(/local/tpl/css/../img/bgs/01/image-2x2-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-orange.block-interviy.block-info.block-index-2 a,
.col-lg-6 .block-orange.block-main.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x2-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-orange.block-interviy.block-info.block-index-3 a,
.col-lg-6 .block-orange.block-main.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x2-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-orange.block-interviy.block-info.block-index-0 a,
.col-lg-6 .block-orange.block-main.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x2-orange.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-interviy.block-info.block-index-1 a,
.col-lg-6 .block-pink.block-main.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x2-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-interviy.block-info.block-index-2 a,
.col-lg-6 .block-pink.block-main.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x2-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-interviy.block-info.block-index-3 a,
.col-lg-6 .block-pink.block-main.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x2-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-pink.block-interviy.block-info.block-index-0 a,
.col-lg-6 .block-pink.block-main.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x2-red.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-interviy.block-info.block-index-1 a,
.col-lg-6 .block-green.block-main.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x2-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-interviy.block-info.block-index-2 a,
.col-lg-6 .block-green.block-main.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x2-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-interviy.block-info.block-index-3 a,
.col-lg-6 .block-green.block-main.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x2-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-green.block-interviy.block-info.block-index-0 a,
.col-lg-6 .block-green.block-main.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x2-green.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-interviy.block-info.block-index-1 a,
.col-lg-6 .block-blue.block-main.block-info.block-index-1 a {
    background: url(/local/tpl/css/../img/bgs/01/image-2x2-blue.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-interviy.block-info.block-index-2 a,
.col-lg-6 .block-blue.block-main.block-info.block-index-2 a {
    background: url(/local/tpl/css/../img/bgs/04/image-2x2-blue.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-interviy.block-info.block-index-3 a,
.col-lg-6 .block-blue.block-main.block-info.block-index-3 a {
    background: url(/local/tpl/css/../img/bgs/03/image-2x2-blue.png);
    background-size: 100% 100%;
}
.col-lg-6 .block-blue.block-interviy.block-info.block-index-0 a,
.col-lg-6 .block-blue.block-main.block-info.block-index-0 a {
    background: url(/local/tpl/css/../img/bgs/02/image-2x2-blue.png);
    background-size: 100% 100%;
}


.block-info__media img {
  display: block;
  min-width: 100%;
  min-height: 100%;
}
.block-info__title {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}
.block-info__date .right {
  opacity: 0.8;
  filter: alpha(opacity=80);
  line-height: 16px;
}
.block-info a:hover:after {
  opacity: 0.15;
  filter: alpha(opacity=15);
}

.block-blue a {
  background-color: #49b7ef;
}
.block-blue .block-info__section {
  background-color: #3a92bf;
  background-color: rgba(0, 0, 0, 0.2);
}

.block-orange a {
  background-color: #ff9500;
}
.block-orange .block-info__section {
  background-color: #f88a35;
  background-color: rgba(246, 0, 4, 0.2);
}

.block-gray a {
  background-color: #e0e7ea;
}
.block-gray .block-info__section {
  background-color: #c9cfd2;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.block-night a {
  background-color: #333c46;
}
.block-night .block-info__section {
  background-color: #363e47;
  background-color: rgba(0, 0, 0, 0.2);
}

.block-green a {
  background-color: #07bd99;
}
.block-green .block-info__section {
  background-color: #06977a;
  background-color: rgba(0, 0, 0, 0.2);
}

.block-pink a {
  background-color: #f76163;
}
.block-purple a {
  background-color: rgb(196, 180, 215);
}
.block-pink .block-info__section {
  background-color: #c64e4f;
  background-color: rgba(0, 0, 0, 0.2);
}

.list-tile {
  margin-top: -10px;
}
.list-tile .swiper-slide .list-tile__item {
  width: 320px;
  float: left;
}
.list-tile .swiper-slide .list-tile__item + .list-tile__item {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .list-tile .swiper-slide .list-tile__item {
    width: 280px;
  }
}
.list-tile__item {
  display: block;
  position: relative;
  height: 320px;
  color: #fff;
  margin-top: 10px;
  background-color: #242831;
}
@media (max-width: 767px) {
  .list-tile__item {
    height: 280px;
  }
}
.list-tile__item > * {
  z-index: 10;
}
.list-tile__item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.list-tile__item:hover, .list-tile__item:focus {
  color: #fff;
}
.list-tile__item:hover:after, .list-tile__item:focus:after {
  opacity: 0.15;
  filter: alpha(opacity=15);
}
.list-tile__item-link:before {
  content: "";
  background-image: url('/local/tpl/css/../img/sprites-s8717c6b185.png') !important;
  background-position: 0 -32px;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.list-tile__item-link:hover:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
.list-tile__item-human {
  height: auto;
  width: 100% !important;
}
.list-tile__item-human .list-tile__description {
  margin-top: 10px !important;
}
.list-tile__item-human .list-tile__media {
  opacity: 1;
  filter: alpha(opacity=100);
  position: static;
}
.list-tile__item-human .list-tile__media:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/local/tpl/css/../img/human-shadow.png) 0 100% repeat-x;
  z-index: 9;
}
.list-tile__item-human .list-tile__media img {
  width: 100%;
}
.list-tile__media {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 0 !important;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.list-tile__head {
  position: absolute;
  left: 28px;
  top: 21px;
}
.list-tile__head-digit {
  float: left;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-right: 11px;
}
.list-tile__head-text {
  opacity: 0.8;
  filter: alpha(opacity=80);
  line-height: 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  float: left;
  margin-top: 7px;
  letter-spacing: 0.04em;
}
.list-tile__head-title {
  color: #1c5dbf;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
.list-tile__head-title i {
  float: left;
  margin-right: 10px;
}
.list-tile__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .list-tile__title {
    font-size: 16px !important;
    line-height: 21px!important;
  }
}
.list-tile__description {
  margin-top: 10px;
  display: block;
}
.list-tile__btn {
  display: block;
  margin-top: 20px;
}
.list-tile__btn > span {
  display: inline-block;
  border: 1px solid #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.04em;
  padding: 0 15px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.list-tile__btn > span:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.list-tile__body {
  position: absolute;
  bottom: 22px;
  top: auto;
  left: 30px;
  right: 20px;
}
.list-tile__body img {
  display: block;
  margin-bottom: 10px;
}
.list-tile__section {
  position: absolute;
  right: 18px;
  top: 26px;
  padding: 5px 10px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  max-width: 140px;
  -moz-border-radius: 11px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  background-color: #363e47;
  background-color: rgba(0, 0, 0, 0.2);
}
.list-tile__bar {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #809097;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  margin-top: 17px;
  display: block;
  line-height: 16px;
}
.list-tile__bar i {
  float: left;
}
.list-tile__bar-item {
  float: left;
}

.list-tile__item-sm .list-tile__body {
  bottom: 25px;
}
.list-tile__item-sm .list-tile__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}
.list-tile__item-sm .list-tile__description {
  font-size: 14px;
  line-height: 25px;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .list-tile__item-sm .list-tile__description {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .list-tile__item-sm .list-tile__description {
    line-height: 1.25;
  }
}

.list-tile__item-top .list-tile__body {
  overflow: hidden;
}
.list-tile__item-top .list-tile__description {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.list-tile__item-top:hover .list-tile__description {
  position: static;
  opacity: 1;
  filter: alpha(opacity=100);
}
.list-tile__item-top:hover .list-tile__head {
  display: none;
}
.list-tile__item-top:hover .list-tile__body {
  bottom: 0;
  top: 20px;
  padding-bottom: 60px;
}

.list-tile__item-img .list-tile__media {
  opacity: 1;
  filter: alpha(opacity=100);
  background-size: contain;
  background-position: 100% 100%;
}

.list-tile__item-blue {
  background-color: #54b7ec;
}
.list-tile__item-blue .list-tile__section {
  background-color: #3a92bf;
  background-color: rgba(0, 0, 0, 0.2);
}

.list-tile__item-orange {
  background-color: #ffab0a;
}
.list-tile__item-orange .list-tile__section {
  background-color: #ff8a09;
  background-color: rgba(246, 0, 4, 0.2);
}

.list-tile__item-green {
  background-color: #07bd99;
}
.list-tile__item-green .list-tile__section {
  background-color: #06977a;
  background-color: rgba(0, 0, 0, 0.2);
}

.list-tile__item-gray {
  background-color: #e0e7ea;
}
.list-tile__item-gray:hover:after, .list-tile__item-gray:focus:after {
  opacity: 0.05;
  filter: alpha(opacity=5);
}
.list-tile__item-gray .list-tile__head-digit {
  color: #4e5f68;
}
.list-tile__item-gray .list-tile__head-text {
  color: #809097;
}
.list-tile__item-gray .list-tile__section {
  background-color: #c9cfd2;
  background-color: rgba(0, 0, 0, 0.1);
  color: #809097;
}
.list-tile__item-gray .list-tile__body {
  color: #333333;
}
.list-tile__item-gray .list-tile__btn > span {
  border-color: #1c5dbe;
  color: #1c5dbe;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .col-md-4 .list-tile__item-img .list-tile__media {
    display: none;
  }
}
@media (max-width: 599px) {
  .list-tile__item-img .list-tile__media {
    display: none;
  }
}
.row-tile {
  margin-right: -5px !important;
  margin-left: -5px !important;
}
.row-tile > [class^="col-"] {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.block-info.block-main .title {
  bottom: 92px;
  line-height: 34px;
}
.block-info__img_first
{
padding-top:10%;
margin-left:5%;
width:90%;
height:50%;
max-height:320px;
overflow-y: hidden;
overflow-x: hidden;
margin-right:5%;
}
@media (max-width: 767px) {
  .block-info.block-main .title {
    bottom: 72px;
    line-height: 22px;
  }
}

.block-info.block-product .title {
  max-width: 260px;
}

.block-info .title strong {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.block-info .b-read {
  position: absolute;
  bottom: 31px;
  left: 30px;
}

.block-article .b-read {
  bottom: 27px;
}
.block-article .title {
  bottom: 95px;
  line-height: 34px;
}
@media (max-width: 767px) {
  .block-article .title {
    line-height: 22px;
  }
}

.block-event .b-read,
.block-news2 .b-read,
.block-video .b-read {
  bottom: 28px;
}
.block-event .title,
.block-news2 .title,
.block-video .title {
  bottom: 93px;
  line-height: 25px;
}

.block-video .title {
  line-height: 28px;
}

.block-product .b-read {
  bottom: 36px;
}
.block-product .title {
  bottom: 102px;
  line-height: 25px;
}

.block-interviy .b-read {
  bottom: 32px;
  left: 33px;
}

.block-news-pink .b-read {
  bottom: 28px;
}
.block-news-pink .title {
  bottom: 90px;
  line-height: 24px;
}

.block-info .b-read strong {
  color: #fff;
  text-decoration: none;
  display: block;
  border: 1px solid #fff;
  letter-spacing: 0.04em;
  padding: 0 15px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.block-info .b-read strong:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.block-info .title .citate {
  font-size: 16px;
  font-style: italic;
  position: absolute;
  bottom: 100%;
  margin-bottom: 13px;
  font-weight: normal;
  left: 0;
  color: #fff;
  opacity: 0.5;
}

.block-main {
  height: 650px;
}

.b-news strong {
  font-weight: normal;
}

.b-smi .title strong {
  color: #121a24;
  font-weight: bold;
}

.art-title {
  font-size: 16px;
  font-style: italic;
  color: #fff;
  position: absolute;
  top: 30px;
  left: 27px;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.block-product .art-title {
  color: #fff;
  opacity: 0.6;
}

.b-smi {
  position: relative;
  color: #121a24;
}

.b-smi .title {
  font-size: 20px;
  line-height: 24px;
  bottom: 96px;
  max-height: 150px;
  overflow: hidden;
}

.bl-info-small .title {
  font-size: 20px;
}

.b-smi .b-read strong {
  color: #1c5dbe;
  border: 1px solid #1c5dbe;
}

.b-smi .img-smi {
  position: absolute;
  top: 84px;
  left: 30px;
}

.b-smi .date {
  color: #4e5f68;
}

.b-news .title {
  bottom: 96px;
  font-size: 20px;
  line-height: 24px;
}

.earth {
  overflow: hidden;
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 40px 0 50px;
}

.bg-earth {
  background: url(/local/tpl/css/../media/earth_banner.jpg) 0 0 repeat;
  height: 5000px;
  width: 5000px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2500px;
  margin-left: -2500px;
  z-index: 3;
}

.black-bg-earth {
  width: auto;
  height: auto;
  background: rgba(32, 44, 56, 0.3);
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.earth-inside {
  position: absolute;
  width: 991px;
  height: 991px;
  left: 50%;
  margin-left: -495px;
  margin-top: -495px;
  background: url(/local/tpl/css/../media/earth.png) center no-repeat;
  background-size: cover;
  top: 50%;
  z-index: 4;
}

.bg-earth-wrap {
  height: 420px;
  padding-top: 107px;
  position: relative;
  z-index: 6;
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-family: Fira Sans;
  font-weight: bold;
}

.bg-earth-wrap h2, .bg-earth-wrap span, .bg-earth-wrap small {
  font-size: 30px;
  font-family: Fira Sans;
  font-weight: bold;
  width: 100%;
}

.bg-earth-wrap span {
  line-height: 40px;
}

.bg-earth-wrap h2 {
  font-size: 60px;
  font-weight: normal;
  margin-bottom: 7px;
}

.bg-earth-wrap small {
  font-style: italic;
}

.bg-earth-wrap .load-more {
  padding-top: 43px;
}
.bg-earth-wrap .learn-more {
  padding-top: 43px;
}
.bg-earth-wrap .learn-more a {
  color: #fff;
  border: 2px solid #fff;
  min-width: 200px;
  background-color: transparent;
}
.bg-earth-wrap .learn-more a:hover {
  color: #4e5f68;
  background: #fff;
}
.bg-earth-wrap .load-more a {
  color: #fff;
  border: 2px solid #fff;
  min-width: 200px;
  background-color: transparent;
}

.bg-earth-wrap .load-more a:hover {
  color: #4e5f68;
  background: #fff;
}

@media (max-width: 1199px) {
  .block-line2 .col-lg-6.pull-right {
    float: left !important;
  }
}

.block-event .img {
  position: absolute;
  top: 56px;
  right: 64px;
}

.block-event .title {
  width: 46%;
}

.block-product a {
  background-image: url(/local/tpl/css/../media/city.png);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.block-interviy {
  height: 650px !important;
  background: #e0e7ea;
}

.block-interviy .date {
  z-index: 2;
  color: #fff;
}

.block-interviy .title2 {
  position: absolute;
  bottom: 60px;
  left: 30px;
  right: 30px;
}

.block-interviy .title2 a {
  color: inherit;
  text-decoration: none;
}

.block-interviy .title2 span {
  color: #fff;
  font-weight: normal;
}

.block-interviy .title2 .t-name {
  display: block;
  font-style: italic;
  font-size: 24px;
}

.t-titl{
  font-size: 32px;
  display: block;
  padding: 0 0 5px;
}

.block-interviy .title2  {
  font-size: 33px;
  display: block;
  padding: 0 0 15px;
}

.block-interviy .title2 .t-desc {
  font-size: 14px;
  line-height: 25px;
  display: block;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.block-interviy .block-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 20;
}

.block-interviy .b-shadow {
  position: absolute;
  background: url(/local/tpl/css/../img/shadow-b5.png) 0 100% repeat-x;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}
@media screen and (max-width: 599px) {
  .block-interviy .b-shadow {
    background-position: 0 0;
  }
}

.block-interviy .people {
  position: absolute;
  bottom: 0;
  text-align: center;
  vertical-align: top;
  left: 0;
  width: 100%;
}

.block-interviy .people img {
  max-width: 650px;
  vertical-align: top;
  max-height: 100%;
}
.learn-more{
  text-align: center;
  padding: 29px 0 81px;
}
.learn-more a{
  color: #4e5f68;
  background-color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #c2c9cc;
  line-height: 46px;
  padding: 0 40px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.learn-more a:hover {
  color: #2286f7;
}
.load-more {
  text-align: center;
  padding: 29px 0 81px;
}

.load-more a {
  color: #4e5f68;
  background-color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #c2c9cc;
  line-height: 46px;
  padding: 0 40px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.load-more a:hover {
  color: #2286f7;
}

.load-more2 {
  text-align: center;
  margin: 20px auto;
  padding: 20px 0 77px;
}

.load-more2 a {
  color: #4e5f68;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #c2c9cc;
  line-height: 46px;
  padding: 0 40px;
  font-weight: 500;
  display: inline-block;
}

.tw-slider {
  position: relative;
  height: 320px;
  margin-top: 10px;
}

.tw-slider .title2 {
  color: #fff;
  position: absolute;
  opacity: 0.5;
  font-size: 12px;
  letter-spacing: 0.11em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 4;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.tw-slider .slider {
  width: 100%;
  height: 320px;
}

.tw-slider .slide {
  width: 100%;
  position: relative;
  height: 320px;
}
.tw-slider .bx-controls-direction {
    display: none;
}
.tw-slider .slide > a {
    display: block;
    height: 320px;
}

.tw-slider .slide .num {
  text-align: center;
  font-size: 100px;
  color: #fff;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  opacity: 0.2;
  margin: 101px 0 0;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.tw-slider .slide .num span {
  display: inline-block;
  text-align: left;
}

.tw-slider .slide .img {
  position: absolute;
  top: 145px;
  left: 0;
  width: 100%;
  text-align: center;
}

.tw-slider .slide .img img {
  display: block;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tw-slider .slide .img span {
  text-align: left;
  display: inline-block;
}

.tw-slider .slid1 {
  background: #4d76a3;
}

.tw-slider .slid2 {
  background: #475995;
}

.tw-slider .slid2 .img {
  top: 136px;
}

.tw-slider .slid3 {
  background: #00b4ff;
}

.tw-slider .bx-controls-direction {
  display: block;
}

.tw-slider a.bx-prev {
  display: none;
}

.tw-slider a.bx-next {
  color: transparent;
  width: 100%;
  height: 320px;
  position: absolute;
  top: 0;
  background-color: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
  text-indent: -555em;
  z-index: 10;
}

.tw-slider .bx-pager {
  position: absolute;
  bottom: 26px;
  left: 0;
  z-index: 53;
  width: 100%;
  text-align: center;
}

.tw-slider .bx-pager .bx-pager-item {
  display: inline-block;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  overflow: hidden;
  text-align: left;
  text-indent: -999em;
}

.tw-slider .bx-pager .bx-pager-item a {
  display: block;
  width: 8px;
  height: 8px;
  background: url(/local/tpl/css/../img/pag.png) 0 0 no-repeat;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.tw-slider .bx-pager .bx-pager-item a.active {
  background: url(/local/tpl/css/../img/pag.png) 0 100% no-repeat;
}

footer {
  background: #fff url(/local/tpl/css/../img/f-bg.png) 50% 0 no-repeat;
  float: left;
  z-index: 820;
  position: relative;
  width: 100%;
  overflow: hidden;
  min-width: 320px;
  padding: 41px 0 20px;
  color: #809097;
  font-size: 14px;
  border-top: 1px solid #ecf1f2;
}

footer .row {
  padding-bottom: 30px;
}

footer h2 {
  padding: 0 0 25px;
  margin: 0;
  font-size: 14px;
  color: #809097;
  font-weight: 500;
}

footer .lnk-it {
  font-style: italic;
  text-decoration: none;
  color: #1d68d9;
  font-size: 14px;
}

footer .lnk-it:hover {
  color: #2286f7;
}

footer .f-menu li {
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 12px;
}

footer .f-menu li a {
  color: #89979e;
  text-decoration: none;
}

footer .f-menu li a:hover {
  color: #2286f7;
}

footer .f-menu {
  margin: 6px 0 0;
}

footer .row.no-mobile {
  padding-bottom: 0;
}

footer .row.no-mobile.contacts {
  padding-bottom: 0;
}

.contactsItem {
  line-height: 20px;
/*  margin-top: 16px;*/
margin-top: -70px;
}
@media (max-width: 991px) {
  .contactsItem {
    margin-top: 20px;
  }
}

footer .b-subscribe {
  margin-left: -7px;
  background: url(/local/tpl/css/../img/sprites/i-mail.png) #fff 20px 50% no-repeat;
  border-radius: 25px;
  border: 1px solid #e0e7ea;
  padding-left: 50px;
  height: 40px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
}
footer .b-subscribe:hover, footer .b-subscribe.hover {
  border-color: #2286f7;
}
@media (max-width: 991px) {
  footer .b-subscribe {
    margin-left: 0;
  }
}

footer .b-subscribe .pole {
  color: #809097;
  width: 80%;
  background: none;
  height: 38px;
  line-height: 1;
  font-style: italic;
  border: 0 none;
  font-size: 14px;
  outline: 0 none;
}
footer .b-subscribe .pole::-webkit-input-placeholder {
  line-height: 20px;
}

footer .b-subscribe .btn {
  background: url(/local/tpl/css/../img/sprites/mail-arr.png) 50% no-repeat;
  position: relative;
  left: -9px;
  border: none;
  cursor: pointer;
  height: 40px;
  float: right;
  width: 25px;
  margin-right: 5px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
footer .b-subscribe .btn:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

footer .title-subscribe {
  margin: 6px 0 0 -4px;
  font-weight: 500;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  footer .title-subscribe {
    margin-left: 0;
  }
}

footer .social {
  margin-top: 38px;
  margin-left: 8px;
}

footer .txt-logo {
  line-height: 1.4;
  margin-top: -1px;
}

footer h2 {
  padding-bottom: 23px;
}

footer .b-link-app {
  border: 1px solid #e0e7ea;
  margin: 3px 0 0;
  border-radius: 6px;
  float: left;
  width: 100%;
  text-align: center;
}
footer .b-link-app a {
  display: block;
}

footer .b-link-app .col1 {
  float: left;
  border-right: 1px solid #e0e7ea;
  width: 50%;
  overflow: hidden;
}

footer .b-link-app .col2 {
  float: right;
  width: 50%;
}

footer .download {
  color: #000000;
  margin-left: 20px;
  margin-top: 8px;
  line-height: 20px;
}

footer .qrcode {
   margin: 15px 35px 0;
  float: left;
   width: 100%;
   min-height: 75px;
}

footer .qrcode .app  {
 
  float: left;
  width: 50%;

}

footer .qrcode .ios {
  float: right;
  width: 50%;
}

footer p {
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 0;
}

footer .lang {
  font-size: 30px;
  color: #1d68d9;
  font-weight: bold;
 /*  margin-top: -5px;*/
  margin-top: -91px;
}
@media (max-width: 991px) {
  footer .lang {
    margin-top: 0;
  }
}

footer .lang a,
footer .lang span {
  color: #1d68d9;
  letter-spacing: -1px;
  text-decoration: none;
}

footer .lang a:hover {
  color: #2286f7;
}

footer .lang .active {
  color: #e0e7ea !important;
  cursor: auto;
}

footer .lang .title {
  font-size: 14px;
  color: #809097;
  font-weight: 500;
  margin-bottom: 5px;
}

footer .mar-bottom-25px {
  padding-bottom: 25px;
}

footer .copy {
  float: left;
  color: #737980;
  border-top: 1px solid #ecf1f2;
  font-size: 12px;
  line-height: 16px;
  padding: 21px 10px 0 0;
}

footer .design,
footer .develop {
  float: right;
  color: #626d73;
  font-size: 12px;
  line-height: 17px;
}
@media (max-width: 991px) {
  footer .design,
  footer .develop {
    margin-top: 18px;
    line-height: 15px;
    margin-right: 39px;
  }
}
footer .design a,
footer .develop a {
  display: block;
  float: right;
  color: #626d73;
  font-size: 12px;
  text-align: right;
  padding-right: 73px;
  padding-bottom: 10px;
  padding-top: 3px;
}

footer .design a {
  background: url(/local/tpl/css/../img/design.png) 100% 0 no-repeat;
}

footer .develop {
  margin-left: 30px;
}
footer .develop a {
  background: url(/local/tpl/css/../img/develop.png) 100% 9px no-repeat;
}

footer .f-left .flogo .phone {
  display: none;
}

footer .foot-pr {
//26.09.2019
// margin-top: 10px;
 margin-top: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .foot-pr {
    margin-top: 41px;
  }
}

footer .b-link-app img {
  max-width: 100%;
}

footer .bottomSoc {
  margin-top: 16px;
  padding: 0;
}

.b-mobile {
  display: none !important;
}

.mobile-mar-bottom15 {
  margin-bottom: 15px;
}

@media (min-width: 1200px) {
  .b-tab-menu ul li {
    width: 12.5%;
  }
}
@media (max-width: 1199px) {
  footer .b-subscribe .pole {
    width: 77%;
  }

  header .menu2 {
    display: none;
  }
}
@media (max-width: 991px) {
  .bl-info-small .title {
    font-size: 17px;
  }

  .block-info .title {
    bottom: 90px;
    overflow: hidden;
    font-size: 18px;
  }

  .tw-slider .slide .num {
    font-size: 80px;
  }

  footer {
    background-position: -123px 0;
  }

  footer .social {
    margin-left: -10px;
  }

  .earth {
    display: none !important;
  }

  .all {
    width: auto;
  }

  header .menu2 {
    display: none;
  }

  .b-link-app {
    display: none;
  }

  footer .all {
    margin-right: 0;
  }

  footer .download {
    display: none;
  }

 footer .qrcode {
    display: none;
  }

  footer .b-subscribe {
    width: 96%;
  }

  footer .copy {
    border: none;
    padding-right: 0;
    width: 35%;
  }

  .foot-pr {
    border-top: 1px solid #e8edef;
  }

  .design {
    margin-top: 16px;
    margin-right: 33px;
  }

  .b-tab-menu ul li a {
    height: 70px;
  }

  .b-tab-menu ul li a .v1 {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .block-main {
    height: 280px;
  }

  .all {
    margin: 0 10px;
    width: auto;
  }

  .block-interviy .people img {
    max-width: 99%;
  }

  .wrapper {
    margin: 0;
  }

  header .logo {
    background: url(/local/tpl/css/../img/flogo.png) 0 0 no-repeat;
    width: 35px;
    height: 50px;
    background-size: 100%;
    background-position: 50%;
  }
  header .logoen {
    background: url(/local/tpl/css/../img/flogo.en.gif) 0 0 no-repeat;
    width: 35px;
    height: 50px;
    background-size: 100%;
    background-position: 50%;
  }
  header .logo:before, header .logo:after {
    display: none;
  }
  header .logoen:before, header .logoen:after {
    display: none;
  }

  header .logo img {
    display: none;
  }

  header .logoen img {
    display: none;
  }
  header .menu .m-ico {
    text-align: left;
    overflow: hidden;
    text-indent: -999em;
    position: relative;
    width: 50px;
    padding-left: 25px;
    padding-right: 25px;
  }
  header .menu .m-ico:before, header .menu .m-ico:after {
    left: 13px;
  }

  .block-info .title {
    bottom: 70px;
    max-height: 135px;
    overflow: hidden;
    font-size: 18px;
  }

  .block-event .title {
    width: 90%;
  }

  .block-product a {
    background-image: none;
  }

  .block-interviy .title2 .t-name {
    font-size: 18px;
  }

  .block-interviy .title2 .t-titl {
    font-size: 18px;
  }

  .block-interviy .title2 .t-desc {
    display: none;
  }

  .block-info .date {
    left: 20px;
  }

  .block-interviy .name-block {
    right: 10px;
  }

  .block-interviy .title2 {
    left: 20px;
    bottom: 60px;
    right: 20px;
  }

  .block-info .b-read {
    left: 20px;
    bottom: 23px;
  }

  .block-info .title {
    left: 20px;
  }

  .b-smi .img-smi {
    left: 20px;
  }

  .art-title {
    left: 20px;
    width: 50%;
  }

  footer {
    line-height: 1.6;
    background: url(/local/tpl/css/../img/f-bg2.png) 50% 0 no-repeat;
  }

  footer .lang {
    margin-bottom: 20px;
    display: none;
  }

  footer .f-left .flogo {
    display: block;
    margin-top: -10px;
    margin-bottom: 35px;
  }

  footer .f-left .flogo img {
    float: left;
    width: 40px;
  }

  footer .f-left .flogo .phone {
    margin-left: 50px;
    line-height: 1.5;
    padding-top: 5px;
    margin-right: 15px;
    display: block;
    font-size: 12px;
  }

  footer .b-subscribe .pole {
    width: 80%;
  }

  footer .f-menu {
    margin-bottom: 25px;
  }

  footer .social {
    margin-top: 15px;
  }

  footer .design {
    float: left;
    width: 100%;
    display: block;
  }

  footer .design a {
    float: left;
    text-align: left;
    padding-top: 12px;
    display: block;
  }

  footer .design br {
    display: none;
  }

  footer .develop {
    float: left;
    width: 100%;
    display: block;
    margin-left: 0;
  }

  footer .develop a {
    float: left;
    text-align: left;
    padding-top: 12px;
    display: block;
  }

  footer .develop br {
    display: none;
  }

  footer .copy {
    float: left;
    width: 100%;
  }

  .block-interviy .people {
    top: 50px;
  }

  #menuTop {
    font-size: 14px;
  }
  #menuTop .all {
    margin-top: 77px;
  }

  header .menu .m-ico.active {
    padding-left: 25px;
    padding-right: 25px;
    width: 30px;
    padding-top: 28px;
    padding-bottom: 28px;
    margin-top: -15px;
    margin-bottom: -12px;
  }
  header .menu .m-ico.active:before, header .menu .m-ico.active:after {
    margin-top: -8px;
  }
/*26.09.2019*/
 /* .b-mobile {
    display: block !important;
  }

  .no-mobile {
    display: none !important;
  }*/

  .searchField label {
    font-size: 14px;
  }

  header .search {
    margin-left: 14px;
  }

  .all {
    margin: 0;
  }

  header .logo {
    margin-right: 20px;
  }
  header .logoen {
    margin-right: 20px;
  }

  .b-tab-menu ul li a {
    height: 50px;
  }

  .b-tab-menu ul li a br {
    display: none;
  }

  .b-tab-menu ul li a .v1 {
    height: 50px;
    font-size: 16px;
  }

  .block-info {
    height: 280px;
  }

  .block-info .date {
    top: 10px;
  }

  .block-info .name-block {
    top: 15px;
  }

  .block-info .title strong {
    line-height: 25px;
  }

  .art-title {
    top: 16px;
    width: 51%;
  }

  .load-more a {
    width: 100%;
    border-color: #184ab5;
    color: #184ab5;
  }

  footer {
    padding-top: 33px;
  }

  footer .f-left .flogo span.phone {
    display: none;
  }

  footer .lang a {
    font-size: 24px;
  }

  footer .lang {
    float: right;
    margin-top: -11px;
  }

  footer .lang .title {
    font-weight: normal;
    margin-bottom: -11px;
  }

  footer .f-menu li {
    padding-bottom: 9px;
  }

  footer .f-menu {
    margin-bottom: 27px;
  }

  footer p {
    letter-spacing: -0.4px;
  }

  .b-mobile {
    margin-bottom: 21px;
  }

  footer .bottomSoc {
    margin-top: -19px;
  }

  footer .b-subscribe {
    width: 100%;
    margin-left: 0;
    height: 50px;
  }

  footer .b-subscribe .pole {
    font-size: 13px;
    height: 50px;
  }

  footer .b-subscribe .btn {
    top: 5px;
  }

  footer .social {
    margin-top: 19px;
  }

  .social__item {
    width: 48px;
    height: 48px;
    margin-right: 3px;
  }

  footer .copy {
    letter-spacing: -0.5px;
  }

  footer .design a {
    padding-right: 45px;
    background-size: 26%;
    padding-top: 3px;
  }

  .design {
    margin-top: 8px;
    letter-spacing: -0.3px;
  }

  .block-interviy,
  .tw-slider,
  .tw-slider .slider,
  .tw-slider .slide,
  .tw-slider a.bx-next {
    height: 280px !important;
  }

  .tw-slider .slide .num {
    margin-top: 100px;
  }

  .tw-slider .slide .img {
    top: 130px;
  }

  .tw-slider .slid2 .img {
    top: 125px;
  }
}
@media screen and (max-width: 599px) {
  .block-event .img {
    display: none;
  }
}
/* Block social
-------------------------------------------------- */
.social__item {
  display: block;
  float: left;
  margin-left: 10px;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .social__item {
    width: 48px;
    height: 48px;
    margin-right: 0;
  }
}
.social__item > i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -12px 0 0 -12px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.social__item,
.share__item {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.social__item-vk,
.share__item-vk {
  background-color: #537ca6;
}
.social__item-vk:hover,
.share__item-vk:hover {
  background-color: #426385;
}
.social__item-fb,
.share__item-fb {
  background-color: #385a97;
}
.social__item-fb:hover,
.share__item-fb:hover {
  background-color: #2d4879;
}
.social__item-tw,
.share__item-tw {
  background-color: #3aacd1;
}
.social__item-tw:hover,
.share__item-tw:hover {
  background-color: #2e8aa7;
}

.social__item-telefram,
.share__item-telegram {
  background-color: #3aacd1;
}
.social__item-telefram:hover,
.share__item-telegram:hover {
  background-color: #2e8aa7;
}
i.share-telegram{
	background: url('/local/tpl/img/telegram.png') !important;
height: 24px;
    width: 24px;
}


.social__item-hh,
.share__item-hh {
  background-color: #dd1903;
}
.social__item-hh:hover,
.share__item-hh:hover {
  background-color: #b11402;
}
.social__item-rss,
.share__item-rss {
  background-color: #ff9b05;
}
.social__item-rss:hover,
.share__item-rss:hover {
  background-color: #f37e06;
}
/*-------style for Instagram icon in footer (Терехов В.С. 06.07.2016)------------*/
.social__item-instargram {
  background-color: #DE184C;
}
.social__item-instargram:hover {
  background-color: #F84704;
}
.icon-share-instargram{
	background: url('/local/tpl/css/../img/footerInstLogo.png') !important;
	background-position: 0 !important;
	height: 24px;
	width: 24px;
}
/*--------------------------------------*/
/*-------style for Instagram icon in footer (Логина О.Е. 26.09.2019)------------*/

.icon-share-ok{
	background: url('/local/tpl/css/../img/ok.png') !important;
	background-position: 0 !important;
	height: 24px;
	width: 24px;
}
/*--------------------------------------*/
.social__item-gplus,
.share__item-gplus {
  background-color: #cc3d2d;
}
.social__item-gplus:hover,
.share__item-gplus:hover {
  background-color: #a33124;
}

.share__block {
  background-color: #f0f6fa;
  border: 1px solid #e1e7eb;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 14px 24px;
  line-height: 30px;
  font-size: 12px;
  text-transform: uppercase;
}
.share__block .share__label {
  margin: 5px 0;
}
.share__block .share__item {
  text-align: right;
  color: #fff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 30px;
  height: 30px;
  padding: 0 10px;
  display: block;
  margin: 5px 0;
}
.share__block .share__item i {
  float: left;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .share__block .col-sm-2 {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .share__block {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-width: 1px 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  .share__block .share__label {
    margin: 0;
  }
}

/* Tile slider
-------------------------------------------------- */
.tile-slider,
.tile-slider .slider,
.tile-slider .slide {
  display: block;
}
.tile-slider .bx-controls-direction {
  position: absolute;
  right: 25px;
  bottom: 24px;
}
.tile-slider .bx-controls-direction > a {
  width: 22px;
  height: 20px;
  float: left;
  text-indent: -555em;
  overflow: hidden;
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.tile-slider .bx-controls-direction > a + a {
  margin-left: 10px;
}
.tile-slider .bx-controls-direction > a.disabled {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.tile-slider .bx-controls-direction .bx-prev {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAKCAYAAACALL/6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM3REQxOTM4RjVEMTFFNTk5RDFDQjkwNUQ1OTdGMkMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM3REQxOTQ4RjVEMTFFNTk5RDFDQjkwNUQ1OTdGMkMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGQzdERDE5MThGNUQxMUU1OTlEMUNCOTA1RDU5N0YyQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGQzdERDE5MjhGNUQxMUU1OTlEMUNCOTA1RDU5N0YyQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5sjvsAAAB2SURBVHjaYvz//z8DEhAA4s1AzA7EZgzYAEgDFAsB8Zn/EHAESRwFwxjCQHwOqvgkEPPj0yACxOehio/jUwzTcPo/8eAYE9AbjAzEA7A1okB8AcmzBJ2E7unjhDyNHKxnoZoO49LAiBZxgkC8BRpxJtg8ARBgAD4UH7hQ/bYNAAAAAElFTkSuQmCC');
}
.tile-slider .bx-controls-direction .bx-next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAKCAYAAACALL/6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUUwNkYwNDQ4RjVFMTFFNUI2RTRCNTJBQzc5ODI1RUQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUUwNkYwNDU4RjVFMTFFNUI2RTRCNTJBQzc5ODI1RUQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1RTA2RjA0MjhGNUUxMUU1QjZFNEI1MkFDNzk4MjVFRCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1RTA2RjA0MzhGNUUxMUU1QjZFNEI1MkFDNzk4MjVFRCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnsBq7cAAAB3SURBVHjajNG9DkAwFAXg1maSFG9jtHpjG6kgfp5ErCzXKb22Nvck33LitrehiUgFMsEFDZxcJiqcGypowfytuyEgg5G+rJC/20QGeGjwQxsUrrQkz+zeQEoeLVmp96fvUEr3Fz268x8vYLiP/YcULNRwcPkIMACy6vs35sCfDgAAAABJRU5ErkJggg==');
}
.tile-slider .bx-pager {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.tile-slider .bx-pager-item {
  float: left;
}
.tile-slider .bx-pager-item + .bx-pager-item {
  margin-left: 10px;
}
.tile-slider .bx-pager-link {
  display: block;
  width: 8px;
  height: 8px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.3;
  filter: alpha(opacity=30);
  text-indent: -555em;
  overflow: hidden;
}
.tile-slider .bx-pager-link.active {
  opacity: 1;
  filter: alpha(opacity=100);
}

.list-tile__body .tile-slider .bx-controls-direction {
  right: 0;
}
.list-tile__body .tile-slider .bx-pager {
  left: 0;
}

/* Block Article
-------------------------------------------------- */
.article__media {
  margin-bottom: 35px;
  margin-top: 10px;
}
.article__media-margin {
  margin-top: 78px;
}
.article__media-author {
  overflow: hidden;
}
.article__media-author > span {
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  float: left;
}
.article__media-author > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #144cdd;
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.article__body h3 {
  margin-bottom: 38px;
}
.article__body{
	line-height: 30px;
}
.article__body p {
  line-height: 30px;
  margin: 0;
  padding: 0;
}
.article__body .lead {
  line-height: 34px;
}
.article__body > * + * {
  margin-top: 35px !important;
}
@media (max-width: 767px) {
  .article__body > * + * {
    margin-top: 30px !important;
  }
  .article__body > * + *.table-responsive {
    margin-top: 10px !important;
  }
}
.article__body > * + .list-files {
  margin-top: 0 !important;
}
.article__body ul li, .article__body ol li {
  padding-left: 30px;
  line-height: 1.75;
  position: relative;
}
.article__body ul li:before, .article__body ol li:before {
  color: #1d68d9;
  left: 2px;
}
.article__body ul li + li, .article__body ol li + li {
  margin-top: 30px;
}
.article__body ul li:before {
  content: "";
  background-color: #1d68d9;
  width: 6px;
  height: 6px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
.article__body ol {
  counter-reset: list-digits;
}
.article__body ol li:before {
  counter-increment: list-digits;
  content: counter(list-digits) ".";
  display: block;
  font-weight: 500;
  line-height: inherit;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .article__body ol li:before {
    font-size: 16px;
    line-height: 24.5px;
  }
}
.article__block {
  margin-bottom: 50px;
}
.article__block-mh4 {
  margin-top: 66px;
}
.article .row {
  margin-left: -20px;
  margin-right: -20px;
}
.article .row > [class^="col-"] {
  padding-right: 20px;
  padding-left: 20px;
}
.article__parallax {
  min-height: 600px;
  background: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article__parallax {
    min-height: 480px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .article__parallax {
    min-height: 350px;
  }
}
@media (max-width: 480px) {
  .article__parallax {
    min-height: 200px;
  }
}
.article__chart {
  height: 400px;
  width: 100%;
}
.article__img {
  text-align: center;
  margin: 10px 0;
}

.article-media__title {
  color: #4c5659;
  letter-spacing: -0.016em;
}
.article-media__description {
  font-size: 14px;
  font-style: italic;
  color: #808b8f;
  line-height: 20px;
  margin-top: 5px;
}
.article-media__description-bottom {
  bottom: 60px;
  position: absolute;
  right: 20px;
  margin: 0;
}
@media (max-width: 991px) {
  .article-media__description.text-right {
    text-align: left !important;
  }
}
.article-media__counter {
  font-size: 40px;
  font-weight: 500;
  color: #1d68d9;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .article-media__counter {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .article .col-md-3 .article__block {
    margin-bottom: 0;
    margin-top: 5px;
  }
}

@media (max-width: 991px) {
  .article-media__counter {
    margin-bottom: 10px;
  }

  .article__media {
    float: left;
    margin-top: 0;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .article__media-author img {
    width: 63px;
  }

  .article-media__title-logo,
  .article-media__description-author {
    height: 63px;
    display: table-cell;
    vertical-align: middle;
  }

  .article__parallax {
    margin-bottom: 30px;
  }

  .article__body .row {
    margin-top: 0 !important;
  }
  .article__body .row ul, .article__body .row ol {
    margin-top: 35px;
  }

  .article-media__description-bottom {
    position: static;
    margin-top: -30px;
  }

  .article__block {
    margin-top: 0 !important;
  }
}
@media (max-width: 599px) {
  .article__media-block {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .article__media-block img {
    width: 100%;
  }
  .article__media-block-center {
    text-align: center;
  }
  .article__media-block-center img {
    width: auto;
  }
}
@media (max-width: 767px) {
  .article {
    font-size: 14px;
 overflow:hidden; }

  .article-media__title {
    font-size: 14px;
  }
  .article-media__description {
    font-size: 12px;
  }

  .article__block {
    margin-bottom: 30px;
  }

  .article__body h3 {
    margin-bottom: 30px;
  }
  .article__body p {
    line-height: 25px;
  }
  .article__body .lead {
    line-height: 25px;
  }
  .article__body ul, .article__body ol {
    margin-top: 30px;
  }

  .article__slider-fullwidth-h-xs .swiper-slide img {
    width: auto !important;
    height: 200px;
    max-width: none;
  }

  .article-media__title-logo, .article-media__description-author {
    height: 41px;
  }

  .article__parallax {
    margin-bottom: 10px;
  }

  .article__media-author img {
    width: 40px;
  }
}
.article-media__description-table {
  display: table;
  width: 100%;
  margin: 0;
}
.article-media__description-table > span {
  vertical-align: middle;
  display: table-cell;
  width: inherit;
  margin: 0;
}

.article__slider {
  z-index: 100 !important;
}
.article__slider-fullwidth .swiper-slide img {
  width: 100%;
}
.article__slider .article-media__description {
  display: table;
  min-height: 50px;
  width: 100%;
  margin: 0;
  text-align: right;
}
.article__slider .article-media__description > span {
  height: 50px;
  vertical-align: middle;
  display: table-cell;
  width: inherit;
  margin: 0;
}
.article__slider .swiper-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .article__slider .swiper-wrapper {
    margin-bottom: 20px;
  }
}
.article__slider .swiper__buttons {
  margin-right: 7px;
  float: left;
}
.article__slider .swiper-slide {
  cursor: w-resize;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.article__slider .swiper-button-prev,
.article__slider .swiper-button-next {
  border: 1px solid #e1e7eb;
  width: 50px;
  height: 50px;
  background-size: auto;
  position: static;
  float: left;
  right: auto;
  left: auto;
  margin: 0;
}
.article__slider .swiper-button-prev:hover,
.article__slider .swiper-button-next:hover {
  border-color: #a3a8aa;
  position: relative;
}
.article__slider .swiper-button-prev {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAKCAYAAACXDi8zAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkJBRjNDNDQ5MTA1MTFFNUJBQzBBNUI3RjkyQ0QxNkEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkJBRjNDNDU5MTA1MTFFNUJBQzBBNUI3RjkyQ0QxNkEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGQkFGM0M0MjkxMDUxMUU1QkFDMEE1QjdGOTJDRDE2QSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGQkFGM0M0MzkxMDUxMUU1QkFDMEE1QjdGOTJDRDE2QSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkJaegQAAAB7SURBVHjaYlyxZQcDEuAH4g1AzMaEJrgLiB2A+D8LkuBuIDYF4rNA7AvSIQDEe6CCZ4DYBYjfgyQ2AbEJEJ+CCn4AGQGSYIMa9xuI/8EsBEn4APFFILYG4u1AzAeTeAM14gKSJD/MuTDJ80BsBbIX2R9voZInQcYBBBgAGagZBMu6YqwAAAAASUVORK5CYII=');
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 0 0 4px;
}
.article__slider .swiper-button-prev:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAKCAYAAACXDi8zAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NkNGNjE0MUM5MTA2MTFFNTlBMTBERkQ2QkUzNzA2NzQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NkNGNjE0MUQ5MTA2MTFFNTlBMTBERkQ2QkUzNzA2NzQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2Q0Y2MTQxQTkxMDYxMUU1OUExMERGRDZCRTM3MDY3NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2Q0Y2MTQxQjkxMDYxMUU1OUExMERGRDZCRTM3MDY3NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrgoXUYAAACKSURBVHjaYvz//z8DDCi3/+AHUhuAmI0JTXAXEDsA8X8WJMHdQGwKxGeB2JcFKCgAFTQB4jNA7Hq3kuMDyKhNUMFTQOwCEgSZApJgg1rzG4j/wewESfgA8UUgtgbi7UCj+UASjCDnAjkiUHsMgPgYEHsxwvwBlBSGShoC8SFGNA8KAaltQMwOEGAAKCMvWrt/lzQAAAAASUVORK5CYII=');
}
.article__slider .swiper-button-next {
  margin-left: -1px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAKCAYAAACXDi8zAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDgzQTJGMjE5MTA2MTFFNUJFOEJDQTcwQzg5ODg4OEEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDgzQTJGMjI5MTA2MTFFNUJFOEJDQTcwQzg5ODg4OEEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowODNBMkYxRjkxMDYxMUU1QkU4QkNBNzBDODk4ODg4QSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowODNBMkYyMDkxMDYxMUU1QkU4QkNBNzBDODk4ODg4QSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgPNh1EAAACBSURBVHjaTM6xCoNADMbx8wZH7cOoQ7s4OFbwMZ2lUKmuDpZK2/dQWleF6v8ggQZ+cOTjknjlpe6MMQsKzEbKYkOKG8L/IMeABI2GLvggwwMxWhys/PxKeEeESgNXP6zy9jUIcMUJb5ytLNPmS0aOLqhwxFObepUb00tz0oW7AAMAWVgbPlNF68YAAAAASUVORK5CYII=');
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0 4px 4px 0;
}
.article__slider .swiper-button-next:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAKCAYAAACXDi8zAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjNDRTNFRUU5MTA2MTFFNTlFMDRDNzkzMkQ3RkI1QjMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjNDRTNFRUY5MTA2MTFFNTlFMDRDNzkzMkQ3RkI1QjMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2M0NFM0VFQzkxMDYxMUU1OUUwNEM3OTMyRDdGQjVCMyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2M0NFM0VFRDkxMDYxMUU1OUUwNEM3OTMyRDdGQjVCMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhwQPMQAAACLSURBVHjaYlRq+36UgYHhFxAH3K3k+MgABUxA/B+IHYB4l3L7D35kCV8gPgvEZkC8GybJ+P//fwYgRwAkCMQmQHwGiF3BEiAAVbkLqvMwEwMC/APi31A2GxNUNR+Q2g7E1kB8EYh9mKBGwAQvALEL0NlvQDo2AbEVEJ+HCcKcCzLmJFTwLcxCgAADALAiLfNe76uXAAAAAElFTkSuQmCC');
}
.article__slider .swiper__pagination {
  font-weight: 600;
  font-size: 14px;
  line-height: 50px;
  overflow: hidden;
}
.article__slider .swiper__pagination .swiper__activeId,
.article__slider .swiper__pagination .swiper__total {
  float: left;
}
.article__slider .swiper__pagination .swiper__activeId {
  min-width: 30px;
  text-align: right;
}
.article__slider .swiper__pagination .swiper__total:before {
  content: "/";
  margin: 0 10px;
}
@media (max-width: 767px) {
  .article__slider .swiper__pagination {
    float: right;
  }
  .article__slider .article-media__description {
    display: block;
    min-height: auto;
    text-align: left;
    margin-top: 15px;
  }
  .article__slider .article-media__description > span {
    display: block;
    height: auto;
  }
}

.article__slider-scheme {
  z-index: 5 !important;
}
.article__slider-scheme .article-media__description {
  display: table;
  min-height: 40px;
}
.article__slider-scheme .article-media__description > span {
  height: 40px;
  display: table-cell;
}
.article__slider-scheme .swiper-slide {
  width: 100%;
  text-align: center;
  background: #fff;
}
@media (max-width: 599px) {
  .article__slider-scheme .swiper-pagination {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.article__slider-scheme-full .swiper-slide, .article__slider-scheme-full-md .swiper-slide {
  width: auto !important;
  margin: 0 auto;
  min-width: 100%;
}
@media (max-width: 991px) {
  .article__slider-scheme-full-md .swiper-slide {
    width: 100% !important;
  }
  .article__slider-scheme-full-md map {
    display: none;
  }
}
.article__slider-scheme .icon-help,
.article__slider-scheme .icon-help-view {
  position: absolute;
  cursor: pointer;
  margin-left: -15px;
  margin-top: -41px;
}
.article__slider-scheme .help-01 {
  left: 221px;
  top: 242px;
}
.article__slider-scheme .help-02 {
  left: 1011px;
  top: 630px;
}
.article__slider-scheme .help-03 {
  left: 1146px;
  top: 381px;
}
.article__slider-scheme .help-04 {
  left: 575px;
  top: 249px;
}

.slide-inner {
  display: inline-block;
  position: relative;
}

.article__slider-reactor {
  overflow: visible !important;
}
@media (min-width: 992px) {
  .article__slider-reactor {
    margin-top: 55px;
  }
}
.article__slider-reactor .article-media__description {
  text-align: left;
}
.article__slider-reactor .article-media__description i {
  float: left;
  margin-top: 9px;
}
.article__slider-reactor img {
  max-width: none;
}
.article__slider-reactor .swiper-wrapper {
  margin-bottom: 7px !important;
}
.article__slider-reactor .swiper-slide {
  width: auto !important;
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 400px;
}
.article__slider-reactor .icon-help {
  position: absolute;
  cursor: pointer;
  margin-left: -15px;
  margin-top: -41px;
}
.article__slider-reactor .help-01 {
  left: 681px;
  top: 75px;
}
.article__slider-reactor .help-02 {
  left: 1023px;
  top: 231px;
}
.article__slider-reactor .help-03 {
  left: 1161px;
  top: 274px;
}
.article__slider-reactor .help-04 {
  left: 1356px;
  top: 117px;
}
.article__slider-reactor .help-05 {
  left: 1752px;
  top: 331px;
}
.article__slider-reactor .help-06 {
  left: 1808px;
  top: 74px;
}
.article__slider-reactor .help-07 {
  left: 2103px;
  top: 198px;
}
.article__slider-reactor .help-08 {
  left: 2251px;
  top: 167px;
}
.article__slider-reactor .help-09 {
  left: 2679px;
  top: 119px;
}
.article__slider-reactor .help-10 {
  left: 3178px;
  top: 74px;
}

.article__map {

  /*margin-top: 10px;*/
  margin: 10px auto 50px auto;
  height: 600px;
  max-width: 1920px;
}
.article__map .tab-pane {
  height: 600px;
}
.article__map-popup {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 910;
  background-color: #dee4ea;
  padding-top: 80px;
}
.article__map-popup .tab-content {
  height: 100%;
}
.article__map-popup .tab-pane {
  height: 100%;
}
.article__map-popup .map__title {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 28px 60px 28px 20px;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  border-bottom: 1px solid #e0e7ea;
  z-index: 910;
}
.article__map-popup .icon-close {
  position: absolute;
  right: 20px;
  top: 31px;
  z-index: 920;
}

/* Block Control
-------------------------------------------------- */
.control {
  bottom: 60px;
  right: 50px;
  width: 82px;
  z-index: 810;
  position: fixed;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms;
}
.control.no-fixed {
  position: absolute;
}
.control.has-top .lnk-up {
  margin-bottom: 0;
}
.control__wrap {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.control__item + .control__item {
  margin-top: 10px;
}
.control__item .lnk-up,
.control__item .lnk-back {
  background: url(/local/tpl/css/../img/spriteLinks.png) 0 0 no-repeat;
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  -webkit-transition: margin 300ms ease-in-out;
  -o-transition: margin 300ms ease-in-out;
  transition: margin 300ms ease-in-out;
}
.control__item .lnk-up {
  margin-bottom: -70px;
}
.control__item .lnk-up:hover {
  background-position: 0 -60px;
}
.control__item .lnk-back {
  background-position: 0 -120px;
}
.control__item .lnk-back:hover {
  background-position: 0 -180px;
}
.control__item a {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.control__line {
  position: fixed;
  background: url(/local/tpl/css/../img/line.png) 0 0 repeat-y;
  top: 0;
  bottom: 0;
  right: 91px;
  width: 1px;
}

@media (max-width: 1580px) {
  .control {
    z-index: 810;
  }

  .control__line {
    display: none;
  }

  .control__wrap {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  .control__wrap:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media (max-width: 991px) {
  .control {
    display: none !important;
  }
}
/* Slider Main
-------------------------------------------------- */
.all.topSlider .bx-viewport {
  overflow: visible !important;
}

.main-slider {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 810;
  border-bottom: 1px solid #e0e7ea;
  position: relative;
  margin-bottom: -202px;
  height: 800px;
  overflow: hidden;
  margin-top: -50px;
}
.main-slider__media {
  height: 100%;
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.main-slider__body {
  padding-top: 75px;
  color: #fff;
  max-width: 55%;
}
.main-slider__body-inverse {
  color: #216ccb;
}
.main-slider__body-right {
  margin-left: 45%;
}
.main-slider__title {
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 87px;
}
.main-slider__description {
  font-size: 30px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .main-slider__body {
    max-width: 75%;
  }
  .main-slider__body-right {
    margin-left: 25%;
  }
}
@media (max-width: 991px) {
  .main-slider__body {
    max-width: 75%;
    padding-top: 56px;
  }
  .main-slider__body-right {
    margin-left: 25%;
  }
  .main-slider__title {
    font-size: 34px;
    margin-bottom: 48px;
  }
  .main-slider__description {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .main-slider__body {
    padding-top: 22px;
  }
  .main-slider__title {
    font-size: 21px;
    margin-bottom: 22px;
  }
  .main-slider__description {
    font-size: 11px;
  }
}
@media (max-width: 599px) {
  .main-slider__body {
    max-width: none;
  }
  .main-slider__body-right {
    margin-left: 0;
  }
}

.main-slider .slider {
  height: 800px;
}

.main-slider .slide {
  height: 800px;
}

.main-slider .txt {
  margin: 205px 0 0 -6px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.main-slider .txt span {
  display: block;
  position: relative;
}

.main-slider .bx-controls {
  left: 0;
  position: absolute;
  top: 555px;
  width: 100%;
  z-index: 643;
}

.main-slider .bx-controls-direction > a {
  position: absolute;
  top: -180px;
  overflow: hidden;
  text-align: left;
  text-indent: -999em;
  margin: 0;
  z-index: 50;
  background-image: url('/local/tpl/css/../img/sprites-s8717c6b185.png') !important;
  background-repeat: no-repeat;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.main-slider .bx-controls-direction > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.main-slider .bx-controls-direction > a.bx-prev {
  left: 0px;
  background-position: -50px -319px;
  height: 40px;
  width: 24px;
}
.main-slider .bx-controls-direction > a.bx-next {
  right: 0px;
  background-position: 0 -239px;
  height: 40px;
  width: 24px;
}
.main-slider .active-slide.wow {
  visibility: visible;
}

.main-slider .bx-wrapper {
  width: 100%;
  position: relative;
}

.main-slider .bx-pager {
  margin: 0 auto;
  max-width: 1350px;
  padding: 0 7px;
}

.main-slider .bx-pager div {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: 4px;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  text-align: left;
  text-indent: -999em;
}

.main-slider .bx-pager a {
  display: block;
  position: relative;
  width: 34px;
  height: 34px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.main-slider .bx-pager a:before {
  content: "";
  background-color: #fff;
  width: 10px;
  height: 10px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -5px;
}
.main-slider .bx-pager a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.main-slider .bx-pager a.active {
  cursor: default;
}
.main-slider .bx-pager a.active, .main-slider .bx-pager a.active:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.main-slider .bx-pager a.active .pie {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.main-slider .bx-pager a.active .pie:before, .main-slider .bx-pager a.active .pie:after {
  content: "";
  width: 100%;
  height: 100%;
  transform-origin: 100% 50%;
  position: absolute;
  top: 0;
  background: transparent;
  border: 3px solid #fff;
  z-index: 200;
}
.main-slider .bx-pager a.active .pie:before {
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  transform-origin: 0 50%;
  border-left: none;
  animation: rota 8s linear;
}

.main-slider .bx-pager a.active .pie-left {
  left: 0;
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
}
.main-slider .bx-pager a.active .pie-left:before {
  left: 100%;
}
.main-slider .bx-pager a.active .pie-left:after {
  left: 0;
  top: 0;
  opacity: 1;
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
  border-right: none;
  animation: opa 8s steps(1, end) both;
}

.main-slider .bx-pager a.active:hover .pie-left,
.main-slider .bx-pager a.active:hover .pie-right {
  animation-play-state: running;
}

.main-slider .bx-pager a.active .pie-right {
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  right: 0;
  animation: opa 8s steps(1, end) both;
}
.main-slider .bx-pager a.active .pie-right:before {
  right: 0;
}
.main-slider .bx-pager a.active .pie-right:after {
  display: none;
}

@keyframes rota {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes opa {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.main-slider .img {
  position: absolute;
  top: 210px;
  left: 50%;
  margin-left: 280px;
}

@media (max-width: 991px) {
  .main-slider .img {
    top: 70px;
    margin-left: 20px;
    left: 20px;
  }

  .main-slider .txt {
    margin-top: 339px;
    line-height: 40px;
  }

  .main-slider .bx-controls {
    top: 478px;
  }

  .main-slider,
  .main-slider .slider,
  .main-slider .slide {
    height: 740px;
  }
}
@media (max-width: 767px) {
  .main-slider .txt {
    font-size: 21px;
    margin-top: 110px;
    line-height: 30px;
  }

  .main-slider .bx-controls {
    top: 165px;
  }

  .main-slider,
  .main-slider .slider,
  .main-slider .slide {
    height: 678px;
  }

  .main-slider {
    margin-bottom: -449px;
  }

  .main-slider .img {
    display: none;
  }

  .main-slider .txt {
    font-size: 18px;
    margin-top: 46px;
    line-height: 25px;
  }

  .main-slider .bx-pager {
    top: 168px;
  }
}


/* Block Video
-------------------------------------------------- */
.mejs-offscreen {
  /* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).  Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 - no likey commas */
  clip: rect(1px, 1px, 1px, 1px);
  /* IE8-IE11 - we likey commas, no support for clip-path */
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.mejs-container {
  position: relative;
  background: #000;
  font-family: Helvetica, Arial;
  text-align: left;
  vertical-align: top;
  text-indent: 0;
  margin: 0 auto;
  max-height: 600px;
  max-width: 100%;
  overflow: hidden;
}

.mejs-fullscreen .mejs-container {
  max-height: 100%;
}

.mejs-container:focus {
  outline: none;
}

.me-plugin {
  position: absolute;
  width: inherit;
  height: inherit;
}
.me-plugin > * {
  width: 100% !important;
  height: 100% !important;
}

.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(/local/tpl/css/../img/video/bigplay.svg) no-repeat;
}

.no-svg .mejs-overlay-button {
  background-image: url(/local/tpl/css/../img/video/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(/local/tpl/css/../img/video/background.png);
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.9)), to(rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: linear-gradient(rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
}

.mejs-overlay-loading span {
  display: block;
  width: 80px;
  height: 80px;
  background: transparent url(/local/tpl/css/../img/video/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(/local/tpl/css/../img/video/background.png);
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 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(/local/tpl/css/../img/video/controls.svg) no-repeat;
}

.no-svg .mejs-controls .mejs-button button {
  background-image: url(/local/tpl/css/../img/video/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: 10px 3px 0 3px;
  overflow: hidden;
  text-align: center;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.mejs-container .mejs-controls .mejs-time a {
  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, .mejs-controls .mejs-time-rail a {
  display: block;
  position: absolute;
  width: 180px;
  height: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
  margin: 5px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
}

.mejs-controls .mejs-time-rail .mejs-time-buffering {
  width: 100%;
  background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  -webkit-background-size: 15px 15px;
  -moz-background-size: 15px 15px;
  -o-background-size: 15px 15px;
  background-size: 15px 15px;
  -webkit-animation: buffering-stripes 2s linear infinite;
  -moz-animation: buffering-stripes 2s linear infinite;
  -ms-animation: buffering-stripes 2s linear infinite;
  -o-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;
  }
}
@-moz-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@-ms-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@-o-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, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(44, 124, 145, 0.8)), to(rgba(78, 183, 212, 0.8)));
  background: -webkit-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -moz-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -o-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -ms-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: linear-gradient(rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-handle {
  display: none;
  position: absolute;
  margin: 0;
  width: 10px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  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;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  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-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(/local/tpl/css/../img/video/background.png);
  background: rgba(50, 50, 50, 0.7);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: -115px;
  left: 0;
  z-index: 1;
  position: absolute;
  margin: 0;
}

.mejs-controls .mejs-volume-button:hover {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  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, 0.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, 0.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, 0.9);
  cursor: N-resize;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  margin: 0;
}

/* horizontal version */
.mejs-controls a.mejs-horizontal-volume-slider {
  height: 26px;
  width: 56px;
  position: relative;
  display: block;
  float: left;
  vertical-align: middle;
}

.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;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.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;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.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(/local/tpl/css/../img/video/background.png);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px 10px 0 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  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, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 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, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(102, 102, 102, 0.7)), to(rgba(50, 50, 50, 0.6)));
  background: -webkit-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -moz-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -o-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -ms-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: linear-gradient(rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.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(/local/tpl/css/../img/video/background.png);
  background: rgba(20, 20, 20, 0.5);
  white-space: pre-wrap;
}

/* End: Track (Captions and Chapters) */
/* Start: Error */
.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(/local/tpl/css/../img/video/background.png);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  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(/local/tpl/css/../img/video/background.png);
  background: rgba(50, 50, 50, 0.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(/local/tpl/css/../img/video/background.png);
  background: rgba(50, 50, 50, 0.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 {
  display: none;
  position: absolute;
  top: -100px;
  left: -10px;
  width: 60px;
  height: 100px;
  background: url(/local/tpl/css/../img/video/background.png);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 0;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
  display: block;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
  color: #21f8f8;
}

.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: #c8c8c8 !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

/* End: Speed */
/* Start: Jump Forward */
.mejs-controls .mejs-button.mejs-jump-forward-button {
  background: transparent url(/local/tpl/css/../img/video/jumpforward.png) no-repeat;
  background-position: 3px 3px;
}

.mejs-controls .mejs-button.mejs-jump-forward-button button {
  background: transparent;
  font-size: 9px;
  line-height: normal;
  color: #ffffff;
}

/* End: Jump Forward */
/* Start: Skip Back */
.mejs-controls .mejs-button.mejs-skip-back-button {
  background: transparent url(/local/tpl/css/../img/video/skipback.png) no-repeat;
  background-position: 3px 3px;
}

.mejs-controls .mejs-button.mejs-skip-back-button button {
  background: transparent;
  font-size: 9px;
  line-height: normal;
  color: #ffffff;
} 

/* Part 2
-------------------------------------------------- */
/*career page*/
.headerMinWrap {
  height: 360px;
  border: 1px solid #e0e7ea;
  background-image: url(/local/tpl/css/../media/career_banner.png);
  background-repeat: no-repeat;
  margin-bottom: 50px;
  background-size: cover;
  position: relative;
  width: 100%;
  z-index: 810;
}

.headerMin {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 48px 20px 65px;
  position: relative;
}

.headerMin .breadCrumbs {
  position: relative;
  z-index: 10;
}

.headerMin .breadCrumbs ul li {
  display: block;
  float: left;
  margin-right: 8px;
  padding-right: 15px;
  position: relative;
}

.headerMin .breadCrumbs ul li:after {
  content: "";
  position: absolute;
  display: block;
  height: 12px;
  width: 7px;
  right: 0;
  top: 5px;
  background: url(/local/tpl/css/../img/crumb.png) 0 0 no-repeat transparent;
}

.headerMin .breadCrumbs li a {
  color: #2668ca;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
}

.headerMin .breadCrumbs li a:hover {
  color: #2286f7;
}

.headerMin h1 {
  color: #121a24;
  font-size: 50px;
  font-weight: bold;
  margin-top: 55px;
  margin-bottom: 24px;
}

.headerMin .headMinTextBlock {
  max-width: 650px;
}

.headerMin .headMinTextBlock p {
  font-size: 16px;
  color: #121a24;
  line-height: 30px;
}

.career .container {
  max-width: 1350px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
position: static;

}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.career .container { top: 250px; }
}

.career .searhBlockContainerWrap {
  border-bottom: 1px solid #e0e7ea;
}

.career .container.searhBlockContainer {
  padding-bottom: 40px;
}

.career .container.searhBlockContainer {
  padding-bottom: 40px;
}

.career .filterSearch {
  margin-bottom: 20px;
}

.career .filterSearch input, .career .careerButton button, .career .selecter, .career .selecter-selected {
  height: 50px;
  font-size: 16px;
  border: solid 1px #c2c9cc;
  border-radius: 3px;
  width: 100%;
  padding: 0 15px 6px;
  color: #343434;
  margin: 0;
  max-width: none;
  box-sizing: border-box;
  line-height: 44px;
  box-shadow: none;
}

.career .filterSearch input {
  padding-right: 40px;
}

.career .filterSearch input:focus {
  border-color: #2286f7;
}

.career .filterSearch:hover input, .career .selecter-selected:hover {
  border-color: #444b4e;
}

.career .selecter, .career .selecter-selected {
  padding: 0 40px 0 15px;
}

.career .selecter-item {
  height: 50px;
  font-size: 16px;
  line-height: 28px;
}

.career .selecter {
  padding: 0;
  border: none;
  height: 50px;
}

.career .selecter.closed {
  height: 50px;
  font-size: 16px;
  border-radius: 5px;
  width: 100%;
  color: #343434;
  margin: 0;
  box-shadow: none;
}

.career .selecter-options {
  max-height: 250px;
  top: 60px;
  border-width: 1px;
  border-radius: 5px;
}

.career .filterSearch small {
  background: url(/local/tpl/css/../img/search_grey.png) 0 0 no-repeat transparent;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
}

.career .filterSearch .input_in_form {
  position: relative;
}

.career .filterSearch .input_in_form .placeholder_text {
  color: #808b8f;
  font-size: 16px;
  font-family: Fira Sans;
  line-height: 46px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  overflow: hidden;
  padding-right: 40px;
}

.career .filterSearch .input_in_form span {
  font-style: italic;
}

.career .selectBlock {
  cursor: pointer;
  margin-bottom: 20px;
}

.career .careerButton {
  margin-bottom: 20px;
}

.career .selecter.focus .selecter-selected, .career .selecter.open .selecter-selected {
  border: 1px solid #2286f7;
  box-shadow: none;
  border-radius: 5px;
}

.career .selecter-selected:after {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  right: 18px;
  top: 0;
  background: url(/local/tpl/css/../img/select_down.png) 0 0 no-repeat transparent;
  border: none;
}

.career .selecter-item.selected {
  position: relative;
}

.career .selecter-item.selected:after {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 8px;
  right: 18px;
  top: 20px;
  background: url(/local/tpl/css/../img/sel-active.png) 0 0 no-repeat transparent;
  border: none;
}

.career .selecter-item.selected, .career .selecter-item {
  background: #fff;
  border: none;
}

.career .selecter-item:hover {
  background: #f7f7f7;
}

.career .careerButton button {
  width: 100%;
  background: #2975e8;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.career button:hover {
  background: #2286f7;
}

.checkBoxBlock {
  padding-left: 5px;
}

.checkBoxBlock li {
  display: block;
  float: left;
  min-width: 250px;
}

.checkBoxBlock input[type="checkbox"] {
  display: none;
}

.checkBoxBlock input[type="checkbox"] + label {
  font-size: 16px;
  font-family: Fira Sans;
  color: #343434;
  cursor: pointer;
  font-weight: normal;
  position: relative;
  padding-left: 25px;
  line-height: 24px;
}

.checkBoxBlock input[type="checkbox"] + label:hover {
  color: #2975e8;
}

.checkBoxBlock input[type="checkbox"] + label::before {
  content: "";
  display: block;
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  top: 2px;
  background: url(/local/tpl/css/../img/check_sprite.png) no-repeat right top transparent;
}

.checkBoxBlock input[type="checkbox"]:checked + label::before {
  background: url(/local/tpl/css/../img/check_sprite.png) no-repeat left top transparent;
}

.checkBoxBlock input[type="checkbox"]:hover + label:hover::before {
  background: url(/local/tpl/css/../img/check_sprite.png) no-repeat -20px top transparent;
}

.checkBoxBlock input[type="checkbox"]:checked:hover + label::before {
  background: url(/local/tpl/css/../img/check_sprite.png) no-repeat left top transparent;
}

.career .container.cardsContainer {
  padding-top: 50px;
}

.cardsContainer .cardsBlock {
  position: relative;
  color: #fff;
  height: 320px;
  margin-bottom: 10px;
  overflow: hidden;
}

.cardsContainer .cardsBlockGrey {
  background: #e0e7ea;
}

.cardsContainer .row.hiddenBlock {
  display: none;
}

.cardsBlock a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.cardsBlock a:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  z-index: 1;
}

.cardsBlock a:hover:after {
  background: rgba(0, 0, 0, 0.15);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.cardsBlock a > img {
  display: block;
  width: auto;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  min-height: 320px;
  min-width: 280px;
}

.cardsBlock .art-title {
  font-size: 16px;
  font-style: italic;
  color: #fff;
  position: absolute;
  top: 25px;
  left: 30px;
}

.cardsBlock span {
  display: block;
}

.cardsBlock .name-block {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0 10px;
  line-height: 22px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 25px;
  right: 20px;
  color: #fff;
  behavior: url(/local/tpl/css/css/PIE.php);
}

.cardsBlock .title {
  position: absolute;
  bottom: 84px;
  font-weight: bold;
  letter-spacing: -0.5px;
  left: 30px;
  line-height: 1.3;
  font-weight: 500;
  font-size: 30px;
  right: 24px;
  color: #fff;
  text-decoration: none;
  z-index:10;
}

.cardsBlock a.greyBG .title {
  font-size: 20px;
  color: #121a24;
  bottom: 25px;
  font-weight: normal;
}

.cardsBlock a.greyBG .title img {
  display: block;
  margin-bottom: 20px;
}

.cardsBlock a.greyBG:hover:after {
  background: rgba(255, 255, 255, 0.3);
}

.cardsBlock .b-read {
  position: absolute;
  bottom: 28px;
  left: 30px;
}

.cardsBlock .b-read strong {
  color: #fff;
  text-decoration: none;
  display: block;
  border: 1px solid #fff;
  padding: 0 20px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

.cardsBlock .date {
  position: absolute;
  top: 23px;
  left: 31px;
  color: #4e5f68;
  z-index:10;
}

.cardsBlock .date .day {
  font-weight: bold;
  font-size: 40px;
  float: left;
  line-height: 1;
}

.cardsBlock .date .right {
  font-size: 12px;
  font-weight: bold;
  margin-top: 6px;
  margin-left: 55px;
  text-transform: uppercase;
}

.career .load-more {
  text-align: center;
  padding: 41px 0 103px;
}

.career .load-more button {
  color: #4e5f68;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #c2c9cc;
  line-height: 46px;
  padding: 0 40px;
  font-weight: 500;
  display: inline-block;
  behavior: url(/local/tpl/css/css/PIE.php);
  position: relative;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.career .load-more button:hover {
  color: #2286f7;
  background: #fff;
}

.cardsBlockGreen {
  background: #07bd99;
}

.cardsBlock .date2 {
  left: 140px;
}

.cardsBlockGreen span {
  color: #fff;
}

.cardsBlockGreen .title {
  bottom: 29px;
  line-height: 39px;
  z-index:10;
}

.cardsBlockGreen .title_2 {
  font-size: 14px;
  font-weight: normal;
}

.cardsBlock .date2 .right {
  margin-left: 75px;
}

/*career page end*/
@media (max-width: 1199px) {
  /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
  .block-info a > img {
    width: 100%;
    height: auto;
  }

  .cardsBlock .title {
    font-size: 24px;
  }

  /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
}
@media (max-width: 1014px) {
  .headerMin {
    padding: 48px 60px 35px;
  }

  .career .container {
    padding: 0 60px;
  }

  .career .headerMin h1 {
    font-size: 30px;
    margin-top: 103px;
  }

  .career .checkBoxBlock li {
    max-width: 215px;
  }

  .career .checkBoxBlock {
    margin-bottom: 21px;
  }

  .career .container.searhBlockContainer {
    padding-bottom: 29px;
  }

  .career .container.cardsContainer {
    padding-top: 50px;
  }

  .career .load-more {
    padding: 31px 0 96px;
  }
}
@media (max-width: 991px) and (min-width: 709px) {
  .cardsBlock a > img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 766px) {
  .headerMinWrap {
    margin-bottom: 30px;
  }

    .headerMin {
    padding: 26px 20px 0px;
  }

  .headerMin .headMinTextBlock p {
    display: none;
  }

  .career .headerMin h1 {
    font-size: 18px;
    margin-top: 89px;
  }

  .career .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 708px) {
  .career .checkBoxBlock li {
    margin-bottom: 19px;
    float: none;
  }

  .career .cardsBlock .title {
    font-size: 18px;
    line-height: 18px;
  }

  .career .cardsBlock .name-block {
    display: none;
  }

  .career .load-more {
    padding: 11px 0 80px;
  }
}
@media screen and (max-width: 400px) {
  .career .checkBoxBlock {
    margin-bottom: 3px;
  }

  .career .selectBlock {
    margin-bottom: 10px;
  }

  .career .container.searhBlockContainer {
    padding-bottom: 0;
  }

  .career .container.cardsContainer {
    padding-top: 19px;
  }

  .cardsContainer .cardsBlock {
    height: 280px;
  }
}
@media screen and (max-width: 337px) {
  .career .headerMinWrap {
    background: url(/local/tpl/css/../media/career_banner_min.png) center center no-repeat #e6e7e9;
  }
}
.news .headerMinWrap {
  background-image: url(/local/tpl/css/../media/newsBG.jpg);
}

.news .headerMin h1 {
  margin-top: 172px;
}

.news .container.searhBlockContainer {
  padding-bottom: 29px;
}

.news .cardsBlock .right {
  margin-left: 0;
  font-size: 12px;
}

.news .cardsBlock img {
  width: 100%;
  height: auto;
}

.cardsBlockBlue, .cardsBlockBlueMin {
  background: #49b7ef;
}

.news .cardsBlockBlue .date {
  color: #fff;
/*
  font-style: italic;
  left: 60px;
  top: 122px;
*/
}
/*
.news .cardsBlockBlue .date .day {
  font-size: 72px;
}*/

/*.news .cardsBlockBlue .date .right,
.news .cardsBlock.cardsBlockBlue .date .day + .right {
  font-size: 24px;
  margin-left: 100px;
  margin-top: 10px;
  text-transform: none;
  color: #d4ebfa;
}*/

.news .cardsBlock .title {
  max-height: 213px;
  overflow: hidden;
}

.cardsBlock a.orangeBG {
  background-color: #facd8d;
  background-color: rgba(246, 171, 65, 0.6);
}

.cardsBlock a.orangeBG:hover:after {
  background: rgba(159, 63, 16, 0.15);
}
.cardsBlock a.purpleBG {
  background-color: #c0b1d2;
  background-color: rgba(196, 180, 215, 0.95);
}

/*.cardsBlock a.purpleBG:hover:after {
  background: rgba(196, 180, 215, 0.3);
}*/
.cardsBlock a.blueBG {
  background-color: #49b7ef;
  background-color: rgba(73, 183, 239, 1);
}

.cardsBlock a.blueBG:hover:after {
  background: rgba(73, 183, 239, 0.15);
}

.cardsBlock a.greenBG {
  background-color: #6ad7c2;
  background-color: rgba(7, 189, 153, 0.6);
}

.cardsBlock a.blueBG .title, .cardsBlock a.purpleBG .title,
.cardsBlock a.orangeBG .title, .cardsBlock a.greenBG .title {
  font-size: 20px;
  color: #fff;
  bottom: 25px;
  font-weight: normal;
}

.cardsBlock a.blueBG .date, .cardsBlock a.purpleBG .date,
.cardsBlock a.orangeBG .date, .cardsBlock a.greenBG .date {
  color: #fff;
}

.datepicker table tr td, .datepicker table tr th {
  width: 60px;
}

.datepicker table tr th.prev::before, .datepicker table tr th.next::before,
.datepicker table tr th.next::before {
  left: 25px;
}

.datepickerWrap {
  position: relative;
  margin-bottom: 20px;
  font-weight: normal;
  cursor: pointer;
}

.datepickerWrap:after {
  background-image: url("/local/tpl/css/../img/calendar_icon.png");
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 20px;
  top: 16px;
  width: 16px;
  z-index: 2;
}

.datepickerWrap .input-daterange.input-group {
  border: solid 1px #c2c9cc;
  border-radius: 5px;
  height: 48px;
  width: 100%;
  color: #343434;
  margin: 0;
  max-width: none;
  box-sizing: border-box;
}

.datepickerWrap > div:hover {
  border-color: #2286f7;
}

.datepickerWrap input.input-sm.form-control {
  border: medium none;
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  height: 48px;
  line-height: 40px;
  padding: 0 15px 6px;
  text-align: left;
}

.datepickerWrap input.input-sm.form-control::-webkit-input-placeholder {
  color: #808b8f;
  font-style: normal;
}

.datepickerWrap input.input-sm.form-control::-moz-placeholder {
  color: #808b8f;
  font-style: normal;
}

/* Firefox 19+ */
.datepickerWrap input.input-sm.form-control:-moz-placeholder {
  color: #808b8f;
  font-style: normal;
}

/* Firefox 18- */
.datepickerWrap input.input-sm.form-control:-ms-input-placeholder {
  color: #808b8f;
  font-style: normal;
}

.datepickerWrap input, .datepickerWrap .input-daterange, .datepickerWrap .input-daterange .input-group {
  border-radius: 5px !important;
}

.datepicker-dropdown.datepicker-orient-bottom {
  width: 320px;
  height: 290px;
  border-radius: 0;
  border: 1px solid #dde0e1;
  box-sizing: border-box;
  padding: 0;
  color: #343434;
  font-size: 11px;
  text-transform: uppercase;
  z-index: 1010;
}

.datepicker-dropdown.datepicker-orient-bottom:after, .datepicker-dropdown.datepicker-orient-bottom:before {
  display: none;
}

.datepicker-dropdown.datepicker-orient-bottom .datepicker-months, .datepicker-dropdown.datepicker-orient-bottom table.table-condensed {
  width: 100%;
  height: 100%;
}

table.table-condensed thead {
  background: #e8ebed;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}

.datepicker table tr th {
  border-radius: 0;
}

.datepicker table tr th:hover {
  background: #e8ebed !important;
}

.datepicker table tr th.prev, .datepicker table tr th.next {
  color: #e8ebed;
  position: relative;
}

.datepicker table tr th.prev:before, .datepicker table tr th.next:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 13px;
  top: 23px;
  left: 20px;
  background: url(/local/tpl/css/../img/datepickerSprite.png) left top no-repeat transparent;
}

.datepicker table tr th.next:before {
  background-position: right 0;
}

.datepicker table tr th.next:hover:before {
  background-position: right bottom;
}

.datepicker table tr th.prev:hover:before {
  background-position: left bottom;
}

.datepicker table tr td {
  padding: 0 !important;
}

.datepicker table tr td span {
  margin: 0;
  border: 1px solid #e0e7ea;
  border-radius: 0;
  border-top: none;
  border-left: none;
  width: 25%;
  height: 76px;
  line-height: 76px;
}

.datepicker table tr td span:hover {
  background: #e8ebed;
}

.datepicker table tr td span.active.active {
  background: #2975e8;
  border-color: #2975e8;
}

.datepicker table tr td span.active.active:hover, .datepicker table tr td span.active:hover {
  background: #2975e8;
  border-color: #2975e8;
}

/*structure Page*/
.structure .headerMinWrap {
  background-image: url(/local/tpl/css/../media/structureBG.jpg);
}

.structure .block-main {
  height: 650px;
}

.structure .title, .cardsBlockBlueMin .title, .cardsBlock a.orangeBG .title, .cardsBlock a.purpleBG .title, .cardsBlock a.greenBG .title {
  font-size: 20px;
  bottom: 33px;
  line-height: 24px;
  color: #fff;
  word-break: keep-all;
}

.structure .cardsBlock a.purpleBG .title,
.structure .cardsBlock a.blueBG .title,
.structure .cardsBlock a.orangeBG .title {
  bottom: 36px;
}

.structure .cardsBlock a.greyBG .title {
  bottom: 34px;
}

.cardsBlock a.greyBG .title {
  font-size: 20px;
  bottom: 26px;
  line-height: 24px;
  color: #373d41;
}

.structure .block-main .title, .structure .cardsBlockBlack .title {
  font-size: 30px;
  line-height: 35px;
  top: 193px;
}

.structure .cardsBlockBlack .title {
  top: 213px;
}

.structure .headerMin .breadCrumbs {
  margin-top: 4px;
}

.structure .headerMin h1 {
  margin-top: 166px;
  font-size: 51px;
  letter-spacing: -2px;
}

.structure .cardsBlock .date {
  color: #fff;
}

.structure a.greyBG .date {
  color: #4e5f68;
}

.cardsBlockBlack {
  background: url(/local/tpl/css/../media/blackBlockBG.png) no-repeat right 0 #232930;
}

.structure .block-main {
  background: url(/local/tpl/css/../media/structure01BG.png) no-repeat right 18px #49b7ef;
  position: relative;
  padding: 10px;
}

.structure .block-main img {
  display: block;
  position: relative;
  margin-top: 319px;
  min-height: auto;
  height: 310px;
  width: auto;
  max-width: 100%;
}

.structure .block-main img.structure01_min {
  display: none;
}

.structure .block-main .structureImgText {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  top: 286px;
  left: 28px;
  position: absolute;
}

.structure .container.cardsContainer {
  padding-top: 0;
  padding-bottom: 85px;
}

/*structure Page end*/
/*photovideo Page*/
.photo_video .headerMinWrap {
  background-image: url(/local/tpl/css/../media/photovideoBG.jpg);
}

.photo_video .headerMin {
  padding: 52px 20px 65px;
}

.photo_video .headerMin h1 {
  margin-top: 96px;
}

.photo_video .block-main {
  height: 650px;
}

.photo_video .cardsBlock .right, .photo_video .cardsBlockBlue .date .right {
  margin-left: 50px;
  font-size: 12px;
  margin-top: 7px;
}

.photo_video .cardsBlock .date {
  color: #fff;
}

.photo_video .cardsBlockBlue .date {
  color: #fff;
  font-style: normal;
  top: 21px;
  left: 28px;
}

.photo_video .cardsBlockBlue .date .day {
  font-size: 40px;
}

.photo_video a.greyBG span {
  color: #4e5f68;
}

.photo_video .title, .photo_video a.greyBG .title {
  font-size: 20px;
  bottom: 24px;
}

.photo_video a.orangeBG .title, .photo_video a.greenBG .title {
  bottom: 26px;
}

.photo_video .title {
  line-height: 26px;
}

.photo_video .a.greenBG .title strong, .photo_video a.orangeBG .title strong, .photo_video a.blueBG .title strong {
  line-height: 36px;
  font-weight: 500;
}

.photo_video a.blueBG .title, .photo_video a.orangeBG .title, .photo_video a.greenBG .title {
  font-size: 30px;
}

.photo_video a.blueBG .title strong, .photo_video a.orangeBG .title strong, .photo_video a.greenBG .title strong {
    font-size: 14px;
  display: block;
  margin-top: 17px;
  line-height: 24px;
  font-weight: normal;
}

.photo_video .title small {
  font-size: 14px;
  display: block;
  margin-top: 17px;
  line-height: 24px;
  font-weight: normal;
}

.photo_video a.greyBG small:first-child {
  margin-top: 0;
}

.photo_video .load-more {
  padding: 30px 0 75px;
}

.photo_video .mediaFilter li {
  float: left;
  margin-right: 10px;
}

.photo_video .mediaFilter li a {
  background: #3b7bdb;
  color: #fff;
  height: 50px;
  width: 155px;
  line-height: 50px;
  padding-left: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  display: block;
}

.photo_video .mediaFilter li a:hover {
  background: #2286f7;
}

.cardsBlockOrange {
  background: #f6ab41;
}

/*photovideo Page end*/
/*photovideo_videogalirea page*/
.photovideo_videogalirea .headerMin h1 {
  margin-top: 167px;
}

.photovideo_videogalirea .container.cardsContainer {
  padding-top: 40px;
}

.photovideo_videogalirea .container.searhBlockContainer {
  padding-bottom: 0;
}

.photovideo_videogalirea .searchTags {
  margin-top: 17px;
}

.searchTags li {
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 5px;
}

.searchTags li span {
  padding: 0 29px 0 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 24px;
  height: 23px;
  background: #2975e8;
  border-radius: 12px;
  display: block;
  cursor: pointer;
  position: relative;
}

.searchTags li span:hover {
  background: #2286f7;
}

.searchTags li span button.closeTag {
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  background: url(/local/tpl/css/../img/closeTag.png) no-repeat 0 0 transparent;
  right: 10px;
  top: 7px;
  border: none;
}

/*swipper*/
.galleryWrap {
  height: 100%;
}

.header__gallery {
  position: absolute;
  left: 40px;
  top: 40px;
}

.header__gallery h5 {
  display: inline-block;
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-family: Fira Sans;
  font-weight: normal;
  margin: 0;
  float: left;
  color: #000;
}

.header__gallery .social {
  width: 20%;
  white-space: nowrap;
  float: right;
}

.header__gallery .social span {
  font-size: 12px;
  font-family: Fira Sans;
  color: #000;
  float: left;
  line-height: 30px;
  text-transform: uppercase;
}

.header__gallery .social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/local/tpl/css/../img/popup__gallery/social.png);
  margin-left: 10px;
}

.header__gallery .social a.vk {
  background-position: 0 0;
}

.header__gallery .social a.f {
  background-position: -40px 0;
}

.header__gallery .social a.t {
  background-position: -80px 0;
}

.header__gallery .social a.g {
  background-position: -120px 0;
}

.photo__video .swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.photo__video .swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}

.photo__video .swiper-slide img {
  max-width: 95%;
  max-height: 85%;
}

.photo__video .swiper-slide:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.photo__video .gallery-top {
  height: 92.84%;
  width: 100%;
}

.photo__video .gallery-thumbs {
  height: 80px;
  box-sizing: border-box;
  border-top: 1px solid #dce3e5;
}

.photo__video .gallery-thumbs .swiper-slide {
  width: 80px;
  height: 100%;
  opacity: 0.4;
  background-size: cover;
}

.photo__video .gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  background: url(/local/tpl/css/../img/popup__gallery/gallery__buttons.jpg) no-repeat right top;
  bottom: 0;
  top: auto;
  right: 0;
  width: 40px;
  height: 79px;
}

.swiper-button-prev.swiper-button-white {
  background-position: left top;
  right: auto;
  left: 0;
  width: 40px;
  height: 79px;
}

.swiper-button-next.swiper-button-white:hover {
  background-position: right bottom;
}

.swiper-button-prev.swiper-button-white:hover {
  background-position: left bottom;
}

/*swipper end*/
/*popup start*/
.media-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  box-sizing: border-box;
  background: #2a2d33;
  min-height: 500px;
  overflow-y: auto;
  max-width: 100%;
  overflow-x: hidden;
  display: none;
  top: 0;
}

.media-popup.map-popup {
  left: 5%;
  top: 5%;
  right: 5%;
  bottom: 5%;
  width: auto;
  height: auto;
  border: 2px solid #e0e7ea;
}

.media-popup .galleryWrap {
  position: relative;
  height: 100%;
}

.media-popup .header__gallery {
  padding: 35px 110px 0 40px;
  margin-bottom: 121px;
  position: relative;
  top: auto;
  left: auto;
}

.media-popup .header__gallery h5 {
  color: #fff;
  font-size: 20px;
  display: block;
  float: left;
  margin: 0;
}

.media-popup .header__gallery .social {
  float: right;
  width: auto;
}

.media-popup span {
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}

.media-popup .header__gallery .social span {
  display: block;
  float: left;
  line-height: 30px;
  margin-left: 10px;
}

.media-popup .mid {
  width: 1280px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 90px;
}

.media-popup .mid iframe {
  width: 1280px;
  height: 670px;
  display: block;
  margin-bottom: 35px;
}

.media-popup .midIcons span {
  font-size: 16px;
  margin-right: 30px;
  text-transform: none;
}

.media-popup .header__gallery .social a {
  display: block;
  height: 30px;
  width: 30px;
  background: url(/local/tpl/css/../img/popup__gallery/social.png) no-repeat 0 0 transparent;
  float: left;
  margin-left: 10px;
}

.media-popup .header__gallery .social a.vk {
  background-position: 0 0;
}

.media-popup .header__gallery .social a.f {
  background-position: -40px 0;
}

.media-popup .header__gallery .social a.t {
  background-position: -80px 0;
}

.media-popup .header__gallery .social a.g {
  background-position: right 0;
}

.media-popup .carousel {
  position: absolute !important;
  bottom: 0;
  min-width: 100%;
}

.media-popup .carousel ul {
  min-width: 100%;
}

.media-popup .carousel span {
  padding-left: 40px;
  margin-bottom: 25px;
  display: block;
}

.media-popup .carousel > ul {
  border-top: 1px solid #52555b;
}

.media-popup .carousel > ul > li, .imageSliderExt .carousel > ul > li {
  margin-right: 2px;
  opacity: 0.5;
  width: 81px;
  height: 81px;
}

.media-popup .carousel > ul > li:hover, .imageSliderExt .carousel > ul > li:hover, .media-popup .carousel > ul > li.active {
  opacity: 1;
  border: 1px solid #747f83;
  border-left-width: 2px;
  border-right-width: 2px;
}

.media-popup .carousel > ul > li > img, .imageSliderExt .carousel > ul > li > img {
  width: 80px;
  height: 80px;
}

.media-popup .galleryWrap a.prev, .media-popup .galleryWrap a.next {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 81px;
  background: url(/local/tpl/css/../img/popup__gallery/gallery__buttons.jpg) no-repeat 0 0 transparent;
  z-index: 4;
  border-radius: 0;
  transition: none;
}

.media-popup .galleryWrap a.prev:hover {
  background-position: 0 bottom;
}

.media-popup .galleryWrap a.next {
  background-position: right 0;
  left: auto;
  right: 0;
}

.media-popup .galleryWrap a.next:hover {
  background-position: right bottom;
}

.media-popup .gallery-top {
  position: absolute;
  top: 65px;
  bottom: 80px;
  background: yellow;
  height: auto;
}

.media-popup .gallery-thumbs {
  position: absolute;
  bottom: 0;
  height: 80px;
}

.popup__wrap {
  height: 100%;
}

.close__popup {
  display: block;
  width: 19px;
  height: 18px;
  background-size: cover;
  background: url(/local/tpl/css/../img/popup__gallery/close.png) no-repeat 0 bottom;
  top: 40px;
  right: 40px;
  position: absolute;
  z-index: 1001;
  cursor: pointer;
  transition: none;
}

.close__popup:hover {
  background-position: 0 -18px;
}

.copyright__gallery {
  font-size: 16px;
  color: #4e5f68;
  display: block;
  text-align: right;
  font-family: Fira Sans;
  font-style: italic;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.popup__visible {
  overflow: hidden;
}

/*popup end*/
/*photovideo_videogalirea page end*/
/*factories page*/
.factories .headerMinWrap {
  background-image: url(/local/tpl/css/../media/factoriesBG.jpg);
}

.factories .headerMin {
  padding: 51px 20px 65px;
}

.factories .headerMin h1 {
  margin-top: 87px;
  color: #fff;
  letter-spacing: -1px;
}

.factories .headMinTextBlock p, .factories .headMinTextBlock span {
  color: #fff;
  display: block;
  letter-spacing: -0.5px;
}

.factories .headMinTextBlock p {
  padding: 0;
  margin: 0;
}

.factories .headMinTextBlock {
  max-width: 100%;
}

.factories .headMinTextBlock span {
  text-align: right;
  font-style: italic;
  margin-top: 34px;
}

.swiper-container.searhBlockContainerWrap {
  padding-bottom: 34px;
  margin-top: -50px;
  padding-top: 34px;
  height: 100px;
  z-index: 810;
  background-color: #fff;
  border-bottom: 1px solid #e0e7ea;
}
.swiper-container.searhBlockContainerWrap.fixed {
  margin-top: 0;
}
.swiper-container.searhBlockContainerWrap.fixed + .factoriesList {
  margin-top: 100px;
}
@media (max-width: 766px) {
  .swiper-container.searhBlockContainerWrap {
    margin-top: -30px;
  }
}

.letterList {
  min-width: 1350px;
  box-sizing: border-box;
}

.letterList .letterListActive {
  float: left;
}

.letterList .letterListActive li {
  float: left;
  /*Логина О.Е. 09.11.2016 обращение Буховцева А.Б. SD05127723*/
  /*margin-right: 11px;*/
  margin-right: 5px;
  /*end*/
  display: block;
  width: 32px;
  height: 32px;
  text-align: center;
}

.letterList a {
  display: block;
  height: 32px;
  color: #2975e8;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  background: transparent;
  font-weight: bold;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid transparent;
  text-decoration: none;
}

.letterList a:hover {
  border-color: #c3cacd;
}

.letterList a.disabled {
  color: #b8c7cc;
  cursor: default;
}

.letterList a.activeLetter {
  color: #fff;
  background: #2975e8;
}

.letterList a.disabled:hover, .letterList a.activeLetter:hover {
  border-color: transparent;
}

.letterList .letterListActive li a {
  width: 32px;
}

.letterList .letterListNotActive {
  float: right;
  text-align: center;
  margin-right: 10px;
}

.letterList .letterListNotActive a {
  width: 51px;
  border-radius: 20px;
}

.factoriesLetterItem {
  padding-top: 5px;
  margin-left: -4px;
  margin-right: 4px;
}

.factoriesLetterItem h2 {
  margin-top: 0;
  font-size: 60px;
  font-weight: bold;
  color: #121a24;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.factoriesLetterItem p {
  color: #a1aeb2;
  font-size: 18px;
  font-style: italic;
}

.factoriesItem {
  border: 1px solid #dce3e6;
  border-top: none;
  padding: 33px 0 31px 40px;
  position: relative;
  font-size: 16px;
  letter-spacing: -0.5px;
}

.factoriesItem:hover {
  background: #f7f7f7;
}

.factoriesItem:after, .factoriesItem.collapsed:after {
  background: url(/local/tpl/css/../img/factories_select_big.png) 0 0 no-repeat transparent;
  width: 18px;
  height: 10px;
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -9px;
  background: url(/local/tpl/css/../img/factories_select_big.png) 0 0 no-repeat transparent;
  width: 18px;
  height: 10px;
}

.factoriesItem:after {
  background-position: 0 -10px;
}

.factoriesItem p.collapseHide {
  display: none;
}

.factoriesItem.collapsed p.collapseHide {
  display: block;
  max-height: 75px;
  overflow: hidden;
}

.factoriesItem img {
  display: block;
  position: absolute;
  top: 35px;
  right: 46px;
  z-index: 2;
}

.factoriesItem h3 {
  margin-top: 0;
  font-size: 30px;
  font-weight: bold;
  color: #121a24;
  margin-bottom: 10px;
  max-width: 80%;
}

.factoriesItem span {
  color: #a1aeb2;
  display: block;
  max-width: 80%;
  margin-top: 10px;
}

.factoriesItem .factoriesItemLincs {
  margin-bottom: 17px;
  margin-top: 21px;
}

.factoriesItem .factoriesItemLincs a {
  color: #2975e8;
  margin-right: 39px;
}

.factoriesItem .factoriesItemLincs a.no-map {
  color: black;
  margin-right: 39px;
}


.factoriesItem .factoriesItemLincs a i {
  margin-right: 12px;
  vertical-align: -2px;
}

.factoriesItem p {
  color: #343434;
  line-height: 25px;
  padding: 0;
  margin: 0;
}

/*factories page end*/
@media (max-width: 1364px) and (min-width: 1200px) {
  .cardsBlock.block-main a > img {
    height: 100%;
    width: auto;
  }
}
@media (max-width: 1200px) {
  .factories .headMinTextBlock span {
    text-align: left;
    margin-top: 25px;
    padding: 0;
  }

  .factories .headerMin h1 {
    margin-top: 56px;
    font-size: 50px;
  }

  .factories .headMinTextBlock {
    padding-left: 8px;
  }
}
@media (max-width: 1014px) {
  .photo_video .headerMin, .factories .headerMin {
    padding: 52px 60px 65px;
  }

  .photo_video .headerMin h1 {
    margin-top: 125px;
    margin-bottom: 36px;
  }

  .photo_video .filterSearch {
    margin-bottom: 10px;
  }

  .photo_video .load-more {
    padding: 30px 0 93px;
  }

  .factories .letterList {
    padding-left: 53px;
  }

  .factories .container.factoriesList {
    padding-left: 65px;
  }
}
@media (max-width: 1035px) and (min-width: 991px) {
  .cardsBlock.block-main a > img {
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 991px) {
  .structure .container.cardsContainer {
    padding-bottom: 65px;
  }
}
@media (max-width: 767px) {
  .news .headerMin {
    padding: 35px 20px 0px;
  }

  .news .filterSearch {
    margin-bottom: 10px;
  }

  .news .datepickerWrap {
    margin-bottom: 10px;
  }

  .news .container.searhBlockContainer {
    padding-bottom: 0;
  }

  .news .cardsBlockBlue.cardsBlock .date {
    top: 104px;
    left: 42px;
  }

  .news .cardsBlock a.greyBG .title {
    bottom: 15px;
    top: auto;
    height: auto;
  }

  .news .cardsBlock a.blueBG .title, .news .cardsBlock a.purpleBG .title,
  .news .cardsBlock a.orangeBG .title, .news .cardsBlock a.greenBG .title {
    bottom: 15px;
    top: auto;
  }

  .news .load-more {
    padding: 10px 0 80px;
  }

  .news .load-more button {
    width: 100%;
  }

  .structure .block-main {
    background: #49b7ef;
    height: 710px;
    padding: 4px;
  }

  .structure .block-main img.structure01_min {
    display: block;
  }

  .structure .block-main img.structure01 {
    display: none;
  }

  .structure .block-main img {
    margin-top: 287px;
    height: 410px;
    min-width: auto;
  }

  .structure .block-main .title, .structure .cardsBlockBlack .title, .structure .title, .cardsBlockBlueMin .title, .cardsBlock a.orangeBG .title, .cardsBlock a.greenBG .title, .cardsBlock a.greyBG .title, .cardsBlock a.blueBG .title, .cardsBlock a.purpleBG .title, .cardsBlock.cardsBlockBlueMin .title {
    font-size: 18px;
    top: 187px;
    line-height: 25px;
    left: 20px;
  }

  .structure .cardsBlockBlack .title, .structure .title, .cardsBlockBlueMin .title, .cardsBlock a.orangeBG .title, .cardsBlock a.greenBG .title, .cardsBlock a.purpleBG .title, .cardsBlock a.greyBG .title, .cardsBlock a.blueBG .title, .cardsBlock.cardsBlockBlueMin .title {
    top: 217px;
   /* height: 50px;
 */ }

  .structure .headerMin h1 {
    margin-top: 92px;
    font-size: 18px;
    letter-spacing: -0.5px;
    font-weight: bold;
  }

  .factories .headerMin h1 {
    margin-top: 89px;
    font-size: 18px;
    letter-spacing: -0.5px;
  }

  .headMinTextBlock {
    display: none;
  }

  .structure .block-main .structureImgText {
    top: 248px;
    left: 19px;
  }

  .news .cardsBlock .date, .photo_video .cardsBlockBlue .date {
    top: 12px;
    left: 20px;
  }

  .cardsBlockBlack {
    background: #232930;
  }

  .photo_video .block-main {
    height: 280px;
  }

  .photo_video .headerMin, .factories .headerMin {
    padding: 34px 20px 65px;
  }

  .photo_video .headerMinWrap {
    height: 390px;
  }

  .photo_video .mediaFilter li {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .photo_video .mediaFilter li a {
    width: 100%;
  }

  .photo_video .filterSearch, .photo_video .datepickerWrap, .photo_video .careerButton {
    margin-bottom: 10px;
  }

  .photo_video .container.searhBlockContainer {
    padding-bottom: 6px;
  }

  .photo_video .cardsBlock .name-block {
    display: block;
  }

  .photo_video .block-main .title small {
    display: none;
  }

  .photo_video .title {
    font-size: 18px !important;
    left: 19px !important;
    bottom: 18px !important;
  }

  .photo_video .title strong {
    line-height: 26px !important;
  }

  .photo_video .name-block {
    top: 16px;
    right: 13px;
  }

  .photo_video .cardsBlock a.orangeBG .title, .photo_video .cardsBlock a.greyBG .title,
  .photo_video .cardsBlock a.blueBG .title, .photo_video .cardsBlock a.purpleBG .title {
    top: auto;
    height: auto;
    max-height: 200px;
  }

  .photo_video .load-more {
    padding: 10px 0 79px;
  }

  .photo_video .load-more button {
    width: 100%;
  }

  .letterList .letterListActive {
    padding-left: 8px;
  }

  .factories .container.factoriesList {
    padding-left: 0;
    padding-right: 0;
  }

  .factoriesItem img {
    display: none;
  }

  .factoriesItem h3 {
    font-size: 18px;
  }

  .factoriesItem {
    padding: 24px 18px 5px 23px;
  }

  .factoriesItem span {
    font-size: 14px;
  }

  .factoriesItem:after, .factoriesItem.collapsed:after {
    top: 31px;
    right: 24px;
    background: url(/local/tpl/css/../img/factories_select.png) 0 0 no-repeat transparent;
    width: 14px;
    height: 8px;
  }

  .factoriesItem:after {
    background-position: 0 -8px;
  }

  .factoriesItem .factoriesItemLincs a {
    display: inline-block;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 10px;
  }

  .factoriesItem p {
    font-size: 14px;
    margin-top: -6px;
  }

  .factories .letterList {
    padding-left: 0px;
  }
}
@media screen and (max-width: 575px) {
  .news .headerMin h1 {
    margin-top: 89px;
  }

  .photo_video .headerMin h1 {
    margin-bottom: 37px;
  }

  .photo_video .cardsBlock img {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 320px) {
  .structure .headerMinWrap {
    background-image: url(/local/tpl/css/../media/structureBG_min.jpg);
  }

  .photo_video .headerMinWrap {
    background-image: url(/local/tpl/css/../media/photovideoBG_min.jpg);
  }
}
.structure .block-main .structureInBlock {
  display: block;
  position: relative;
  margin-top: 319px;
  min-height: auto;
  height: 310px;
  width: auto;
  max-width: 100%;
}

.structure .block-main .structureInBlock a {
  width: 23.8%;
  max-width: 150px;
  height: 150px;
  margin-left: 1.5%;
  display: block;
  float: left;
  background: rgba(56, 154, 206, 0.6);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  padding: 16px 16px 16px 21px;
  letter-spacing: 0.2px;
  line-height: 17px;
  position: relative;
}

.structure .block-main .structureInBlock.structure01 a:first-child {
  margin-left: 0;
}

.structure .block-main .structureInBlock a:after {
  display: none;
}

.structure .block-main .structureInBlock.structure01 a.equally:after, .structure .block-main .structureInBlock.structure01_min a.equally:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: auto;
  right: -22px;
  background: url(/local/tpl/css/../img/structureEqually.png) no-repeat 0 0 transparent;
  background-size: 100%;
  width: 23%;
  height: 16px;
}

.structure .block-main .structureInBlock.structure01 a.equally.arrowRight:after {
  background-image: url(/local/tpl/css/../img/structureArrowRight.png);
}

.structure .block-main .structureInBlock.structure01 a.equally.arrowLeft:after {
  background-image: url(/local/tpl/css/../img/structureArrowLeft.png);
}

.structure .block-main .structureInBlLine:first-child {
  margin-bottom: 10px;
  position: relative;
}

.structure .block-main .structureInBlLine:first-child:before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  bottom: -25px;
  left: 11.9%;
  right: auto;
  background: url(/local/tpl/css/../img/structureLine.png) no-repeat 0 0 transparent;
  background-size: 100%;
  width: 51%;
  max-width: 322px;
  height: 35px;
  z-index: 1;
}

.structure .block-main .structureInBlock.structure01_min {
  display: none;
  margin-top: 280px;
}

.structure .block-main .structureInBlock.structure01_min:before {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  bottom: auto;
  left: -6px;
  right: auto;
  background: url(/local/tpl/css/../img/structureLineVertical.png) no-repeat 0 0 transparent;
  width: 21px;
  height: 362px;
  z-index: 1;
}

.structure .block-main .structureInBlock.structure01_min a {
  width: 100%;
  max-width: 100%;
  float: none;
  height: 50px;
  margin-top: 10px;
  margin-left: 0;
  position: relative;
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
  line-height: none;
}

.structure .block-main .structureInBlock.structure01_min a:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.structure .block-main .structureInBlock.structure01_min a span {
  display: inline-block;
  vertical-align: middle;
}

.structure .block-main .structureInBlock.structure01_min a:first-child {
  margin-top: 0;
}

.structure .block-main .structureInBlock.structure01_min a.equally:after {
  top: auto;
  bottom: -21px;
  left: auto;
  right: 10px;
  background-image: url(/local/tpl/css/../img/structureEquallyVertical.png);
  width: 5px;
  height: 31px;
}

@media (max-width: 767px) {
  .structure .block-main .structureInBlock.structure01_min {
    display: block;
  }

  .structure .block-main .structureInBlock.structure01 {
    display: none;
  }

  .structure .block-main {
    padding: 10px;
  }
}
.headerMinWrap {
  margin-top: -50px;
}

.headerMin {
  padding-top: 51px;
  padding-left: 18px;
}

.headerMin h1 {
  margin-top: 57px;
}

.news.photo_video .headerMin h1, .photo_video .headerMin h1 {
  margin-top: 96px;
  margin-bottom: 34px;
}

.factories .headerMin h1, .news.factories .headerMin h1 {
  margin-top: 87px;
}

.news .headerMin h1 {
  margin-top: 169px;
}

.checkBoxBlock {
  margin-top: 2px;
  margin-bottom: 2px;
}

.checkBoxBlock input[type="checkbox"] + label {
  margin-bottom: 8px;
  padding-left: 28px;
  line-height: 21px;
}

.cardsBlock .date {
  left: 27px;
  top: 21px;
}

.cardsBlock .date .right {
  margin-left: 51px;
  margin-top: 7px;
}

.cardsBlock .date.date2 {
  left: 120px;
}

.cardsBlock .date.date2 .right {
  margin-left: 77px;
}

.cardsBlock a.greyBG .title {
  bottom: 31px; top: auto; 
}

/*.cardsBlock .title {
    bottom: 88px;
}*/
.cardsBlock a.greyBG .title img {
  margin-bottom: 13px;
}

.cardsBlock.wo-btn .title {
  bottom: 28px;
}

.cardsBlock.w-btn .title {
  bottom: 88px;
}

.ttl-block .title {
  line-height: 36px;
}

.ttl-block .title_2 {
  margin-top: 14px;
}

.structure .headerMin .breadCrumbs {
  margin-top: 0;
}

.career .load-more {
  padding: 41px 0 94px;
}

/*.news .cardsBlock .date {
    left: -21px;
}
.news .cardsBlockBlue .date {
    left: 64px;
}*/
.cardsBlock a.greyBG.font-black .title {
  color: #121a24;
}

.news .cardsBlock .date .right {
  margin-left: 4px;
}

.news .cardsBlock .date .day + .right {
  margin-left: 51px;
}

.structure .cardsBlockBlack .title {
  bottom: auto;
}

.cardsBlock.wsmall .greyBG .title {
  bottom: 24px;
}

.media-popup {
  z-index: 10000;
}

.media-popup .galleryWrap:after {
  content: '';
  display: table;
}

.media-popup .galleryWrap {
  height: auto;
}

.media-popup .mid {
  margin: 0 auto 180px;
  width: 100%;
  max-width: 1280px;
}

.videoWrapper, .media-popup .mid .videoWrapper {
  position: relative;
  padding-bottom: 67%;
  padding-top: 25px;
  height: 0;
  /*margin: 0 10px;*/
}

.videoWrapper iframe, .media-popup .mid .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-content-header {
  color: #FFF;
  margin-bottom: 24px;
}

.photo__video.photo, .media-popup.photo__video.photo {
  background: #FFF;
}

.photo__video.photo, .media-popup.photo__video.photo, .photo__video.photo span, .media-popup.photo span {
  color: #000;
  opacity: 1;
}

.media-popup.photo .header__gallery h5 {
  color: #000;
}

.photo__video.photo .close__popup {
  background-position: 0 0;
}

.media-popup.photo .header__gallery {
  /*padding: 32px 110px 0 40px;*/
  margin-bottom: 38px;
}

.media-popup.photo .mid, .photo__video.photo .mid {
  max-width: 1356px;
  text-align: center;
}

.media-popup.photo .mid img, .photo__video.photo .mid img {
  height: 874px;
}

.media-popup.photo .mid .popup-image-slider img, .photo__video.photo .mid .popup-image-slider img {
  width: 100%;
}

.photo__video.photo .header__gallery .social {
  margin-top: 3px;
}

.photo__video.photo .header__gallery .social span {
  font-weight: bold;
  font-size: 12px;
}

.news.photo_video .headerMin h1.wo-btns, .photo_video .headerMin h1.wo-btns {
  margin-top: 169px;
}

@media (max-width: 767px) {
  .media-popup h5 {
    font-weight: bold;
    font-size: 18px;
  }

  .media-popup .header__gallery {
    padding: 24px 70px 20px 22px;
    background: #FFF;
    margin-bottom: 58px;
  }

  .media-popup .header__gallery h5 {
    width: 50%;
    color: #000;
  }

  .popup-content-header {
    margin-left: 20px;
  }

  .media-popup .header__gallery .social {
    margin-top: -4px;
  }

  .close__popup {
    background-position: 0 0;
    right: 20px;
    top: 30px;
  }

  .media-popup .header__gallery .social a {
    width: 40px;
    height: 40px;
    background-size: 500% auto;
  }

  .media-popup .header__gallery .social a.f {
    background-position: -54px 0;
  }

  .videoWrapper, .media-popup .mid .videoWrapper {
    padding-bottom: 44%;
    margin-bottom: 23px;
  }

  .midIcons {
    padding: 0 21px;
  }

  .media-popup .midIcons span {
    font-size: 14px;
    margin-right: 0;
  }

  .media-popup .midIcons span:last-child {
    float: right;
    margin-top: 3px;
    margin-right: 12px;
  }

  .midIcons [class^="icon-"] {
    vertical-align: top;
    margin-top: 2px;
    margin-right: 9px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .media-popup .header__gallery {
    padding: 32px 88px 0 29px;
  }

  .header__gallery .social {
    margin-top: 3px;
  }

  .close__popup {
    right: 29px;
  }

  .media-popup .header__gallery {
    margin-bottom: 25px;
  }

  .videoWrapper, .media-popup .mid .videoWrapper {
    margin: 0 20px 23px;
    padding-bottom: 46.3%;
  }

  .midIcons {
    margin: 0 0 0 20px;
  }

  .media-popup [class^="icon-"] {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
  }

  .media-popup .midIcons span {
    margin-right: 24px;
  }

  .media-popup .mid {
    margin: 0 auto 145px;
  }

  .media-popup .carousel span {
    padding-left: 31px;
    font-weight: bold;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .close__popup {
    right: 27px;
    top: 39px;
  }

  .media-popup .header__gallery {
    padding: 32px 86px 0 29px;
  }

  .media-popup .header__gallery .social {
    margin-top: 2px;
  }

  .media-popup .header__gallery .social span {
    display: none !important;
  }

  .media-popup .header__gallery {
    margin-bottom: 25px;
  }

  .videoWrapper, .media-popup .mid .videoWrapper {
    margin: 0 30px 23px;
    padding-bottom: 46.8%;
  }

  .midIcons {
    margin: 0 0 0 30px;
  }

  .media-popup [class^="icon-"] {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
  }

  .media-popup .midIcons span {
    margin-right: 24px;
  }

  .media-popup .mid {
    margin-bottom: 150px;
  }

  .media-popup .carousel span {
    padding-left: 31px;
    font-weight: bold;
  }
}
@media (min-width: 1200px) {
  .videoWrapper, .media-popup .mid .videoWrapper {
    padding-bottom: 42.3%;
    margin-bottom: 31px;
  }

  .media-popup [class^="icon-"] {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
  }

  .media-popup .midIcons span {
    margin-right: 24px;
  }

  .media-popup .mid {
    margin-bottom: 217px;
  }

  .media-popup .carousel span {
    padding-left: 31px;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .media-popup.photo .mid img, .photo__video.photo .mid img {
    height: auto!important;
  }

  .media-popup.photo h5 {
    font-weight: bold;
    font-size: 18px;
  }

  .media-popup.photo .header__gallery {
    padding: 24px 70px 20px 22px;
    background: #FFF;
    margin-bottom: 58px;
  }

  .media-popup.photo .header__gallery h5 {
    width: 50%;
    color: #000;
  }

  .popup-content-header {
    margin-left: 20px;
  }

  .media-popup.photo .header__gallery .social {
    margin-top: -4px;
  }

  .photo .close__popup {
    right: 20px;
    top: 30px;
  }

  .media-popup.photo .header__gallery .social a {
    width: 40px;
    height: 40px;
    background-size: 500% auto;
  }

  .media-popup.photo .header__gallery .social a.f {
    background-position: -54px 0;
  }

  .midIcons {
    padding: 0 21px;
  }

  .media-popup .midIcons span {
    font-size: 14px;
    margin-right: 0;
  }

  .media-popup .midIcons span:last-child {
    float: right;
    margin-top: 3px;
    margin-right: 12px;
  }

  .midIcons [class^="icon-"] {
    vertical-align: top;
    margin-top: 2px;
    margin-right: 9px;
  }

  .media-popup.photo .header__gallery {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .media-popup.photo .header__gallery {
    padding: 32px 88px 0 29px;
  }

  .photo .header__gallery .social {
    margin-top: 3px;
  }

  .photo .close__popup {
    right: 29px;
  }

  .media-popup.photo .mid .popup-image-slider img, .photo__video.photo .mid .popup-image-slider img {
    width: auto;
    height: 430px;
  }

  .media-popup.photo .header__gallery {
    margin-bottom: 20px;
  }

  .photo .midIcons {
    margin: 0 0 0 20px;
  }

  .media-popup.photo [class^="icon-"] {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
  }

  .media-popup.photo .midIcons span {
    margin-right: 24px;
  }

  .media-popup.photo .mid {
    margin-bottom: 40px;
  }

  .media-popup.photo .carousel span {
    padding-left: 31px;
    font-weight: bold;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .media-popup.photo .mid .popup-image-slider img, .photo__video.photo .mid .popup-image-slider img {
    width: auto;
    height: 540px;
  }

  .photo .close__popup {
    right: 27px;
    top: 39px;
  }

  .media-popup.photo .header__gallery {
    padding: 32px 86px 0 29px;
  }

  .media-popup.photo .header__gallery .social {
    margin-top: 2px;
  }

  .media-popup.photo .header__gallery .social span {
    display: none !important;
  }

  .media-popup.photo .header__gallery {
    margin-bottom: 28px;
  }

  .photo.midIcons {
    margin: 0 0 0 30px;
  }

  .media-popup.photo [class^="icon-"] {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
  }

  .media-popup.photo .midIcons span {
    margin-right: 24px;
  }

  .media-popup.photo .mid {
    margin-bottom: 150px;
  }

  .media-popup.photo .carousel span {
    padding-left: 31px;
    font-weight: bold;
  }
}
@media (min-width: 1200px) {
  .media-popup.photo [class^="icon-"] {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
  }

  .media-popup.photo .midIcons span {
    margin-right: 24px;
  }

  .media-popup.photo .mid {
    margin-bottom: 40px;
  }

  .media-popup.photo .carousel span {
    padding-left: 31px;
    font-weight: bold;
  }
}
.tags-list {
  list-style: none outside none;
}

.tags-list__close {
  display: inline-block;
  margin-left: 11px;
  vertical-align: top;
  margin-top: -2px;
}

.tags-list > li {
  float: left;
  background: #2975e8;
  border-radius: 10px;
  color: #FFF;
  font-size: 12px;
  line-height: 22px;
  height: 23px;
  padding: 0 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.tags-list > li + li {
  margin-left: 10px;
}

.news .container.searhBlockContainer.wtags {
  padding-bottom: 21px;
}

.letterListActive .activeLetter {
  cursor: default;
}

.factoriesItemLincsWrap {
  padding-right: 20px;
}

@media (max-width: 767px) {
  .news .headerMin h1 {
    margin-top: 92px;
  }
}
@media screen and (max-width: 708px) {
  .career .cardsBlock .name-block {
    display: block;
  }
}
.media-popup .galleryWrap a.prev, .media-popup .galleryWrap a.next {
  display: none;
}

.media-popup .galleryWrap .carousel-wrapper:hover a.prev, .media-popup .galleryWrap .carousel-wrapper:hover a.next {
  display: block;
}

.incl-map {
  position: absolute;
  left: 0;
  top: 108px;
  right: 0;
  bottom: 0;
}

.modal-dialog {
  max-width: 1110px;
}

.media-popup .header__gallery {
  margin-bottom: 21px;
}

.popup__wrap:after {
  display: table;
}

.popup__wrap {
  height: auto;
  padding-bottom: 140px;
  position: relative;
}

.media-popup .mid {
  margin-bottom: 0;
}

.media-popup .galleryWrap {
  position: static;
}

@media (min-width: 768px) and (max-width: 992px) {
  .media-popup .mid {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .media-popup .mid {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .media-popup .mid {
    margin-bottom: 0;
  }
}
.news .cardsBlock img {
  max-width: 9000px;
  width: auto;
  max-height: 100%;
}

body .letterList a.mPS2id-highlight {
  background: #2975e8 none repeat scroll 0 0;
  color: #fff;
}

.letterList a.activeLetter {
  background: inherit;
  color: #2975e8;
}

@media (max-width: 767px) {
  .factoriesItem {
    padding: 24px 18px 24px 23px;
  }
}
.swiper-container {
  z-index: 10;
}

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.datepicker-dropdown.datepicker-orient-bottom {
  height: 289px;
}

.datepicker table tr td span.hover {
  background: rgba(232, 235, 237, 0.5);
}

.fa-chevron-left, .fa-chevron-right {
  position: relative;
}

.fa-chevron-left:before, .fa-chevron-right:before {
  background: transparent url("/local/tpl/css/../img/datepickerSprite.png") no-repeat scroll left top;
  content: "";
  display: block;
  height: 13px;
  left: -4px;
  position: absolute;
  top: 13px;
  width: 8px;
}

.fa-chevron-right:before {
  background-position: right 0;
  left: -4px;
}

/**
* A stylesheet for use with Bootstrap 3.x
* @author: Dan Grossman http://www.dangrossman.info/
* @copyright: Copyright (c) 2012-2015 Dan Grossman. All rights reserved.
* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php
* @website: https://www.improvely.com/
*/
/* Container Appearance */
.daterangepicker {
  position: absolute;
  background: #fff;
  top: 100px;
  left: 20px;
  padding: 4px;
  margin-top: 1px;
  border-radius: 4px;
  width: 278px;
}

.daterangepicker.opensleft:before {
  position: absolute;
  top: -7px;
  right: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker.opensleft:after {
  position: absolute;
  top: -6px;
  right: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: '';
}

.daterangepicker.openscenter:before {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker.openscenter:after {
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: '';
}

.daterangepicker.opensright:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker.opensright:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: '';
}

.daterangepicker.dropup {
  margin-top: -5px;
}

.daterangepicker.dropup:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.dropup:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.dropdown-menu {
  max-width: none;
  z-index: 3000;
}

.daterangepicker.single .ranges, .daterangepicker.single .calendar {
  float: none;
}

.daterangepicker .calendar {
  display: none;
  max-width: 270px;
  margin: 4px;
}

.daterangepicker.show-calendar .calendar {
  display: block;
}

.daterangepicker .calendar.single .calendar-table {
  border: none;
}

/* Calendars */
.daterangepicker .calendar th, .daterangepicker .calendar td {
  white-space: nowrap;
  text-align: center;
  min-width: 32px;
}

.daterangepicker .calendar-table {
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
}

.daterangepicker table {
  width: 100%;
  margin: 0;
}

.daterangepicker td, .daterangepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  color: #999;
  background: #fff;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background: #eee;
}

.daterangepicker td.in-range {
  background: #ebf4f8;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: #3071a9;
  color: #fff;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin-bottom: 0;
}

.daterangepicker th.month {
  width: auto;
}

/* Text Input Above Each Calendar */
.daterangepicker .input-mini {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  display: block;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  margin: 0 0 5px 0;
  padding: 0 6px 0 28px;
  width: 100%;
}

.daterangepicker .input-mini.active {
  border: 1px solid #357ebd;
}

.daterangepicker .daterangepicker_input i {
  position: absolute;
  left: 8px;
  top: 8px;
}

.daterangepicker .daterangepicker_input {
  position: relative;
}

/* Time Picker */
.daterangepicker .calendar-time {
  text-align: center;
  margin: 5px auto;
  line-height: 30px;
  position: relative;
  padding-left: 28px;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Predefined Ranges */
.daterangepicker .ranges {
  font-size: 11px;
  float: none;
  margin: 4px;
  text-align: left;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 13px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #08c;
  padding: 3px 12px;
  margin-bottom: 8px;
  border-radius: 5px;
  cursor: pointer;
}

.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
  background: #08c;
  border: 1px solid #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 160px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker .calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker.single .calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges,
  .daterangepicker.single .calendar {
    float: left;
  }

  .daterangepicker .calendar.right {
    margin-left: 0;
  }

  .daterangepicker .left .daterangepicker_input {
    padding-right: 12px;
  }

  .daterangepicker .calendar.left .calendar-table {
    padding-right: 12px;
  }

  .daterangepicker .ranges,
  .daterangepicker .calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
    float: left;
  }

  .daterangepicker .calendar.left {
    clear: none;
  }
}
.searhBlockContainerWrap.swiper-container {
  overflow: visible;
}

@media (min-width: 992px) {
  .popup-image-slider img {
    min-height: 480px;

  }
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

  a[href^=http]:after {
    content: " (" attr(href) ")";
  }

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

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

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

  thead {
    display: table-header-group;
  }

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

  img {
    max-width: 100% !important;
  }

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

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

  .navbar {
    display: none;
  }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

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

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

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

  .b-tab-menu,
  header .menu,
  header .menu2,
  header .search,
  header .lang,
  .bx-controls,
  .bx-pager {
    display: none !important;
  }

  .main-slider,
  .main-slider .slider,
  .main-slider .slide {
    height: auto !important;
    margin: 0 !important;
    position: static !important;
    display: block !important;
  }

  .bx-viewport {
    height: auto !important;
  }

  .main-slider__body {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .main-slider__title,
  .main-slider__description {
    margin-bottom: 30px;
  }

  .main-slider * {
    background: transparent !important;
    color: #000 !important;
  }

  .wow {
    visibility: visible !important;
  }

  .fadeIn,
  .fadeInUp {
    -webkit-animation-name: none;
    animation-name: none;
  }

  .block-info__btn,
  .load-more,
  .bottomSoc,
  .f-menu,
  footer .lang,
  #menuTop,
  .tw-slider {
    display: none !important;
  }

  .flogo {
    position: absolute;
  }

  footer .row {
    padding-bottom: 0;
  }
}
.factoriesItemLincsWrap ul li{
    padding-left: 20px;
    position: relative;
}
.factoriesItemLincsWrap ul li:before{
    background-color: #1d68d9;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 6px;
}
#pjax-splash {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 50000;
    background: url("/local/tpl/css/../img/loading.gif") no-repeat scroll center center;
    background-color: rgba(128, 128, 128, 0.2);
}
#aPlayerControl.cp-container {
    background: url("/local/tpl/css/../img/buffer.png") 0 0 no-repeat;
}
.has-tooltip {
    white-space: nowrap;
}
.page-header {
    z-index: 810;
}
.wow.fadeInUp.animated .list-inline{display:none}

/*.article__body .list-tile.hidden-xxs{
display:block!important;
}*/

.article{
 overflow:hidden;
}

.list-tile{
overflow:hidden;  
}

.article__slider .list-tile{
overflow:visible;
}

.datepickerWrap{
display:block;
}

.datepickerWrap .form-control[readonly]{
background-color:#fff;
}

.article__parallax.visible-lg{
display:block!important;
}

.article__parallax.visible-md,
.article__parallax.visible-sm,
.article__parallax.visible-xs,
.article__parallax.visible-xxs{
display:none!important;
}

.photo_video .cardsBlockBlue.cardsBlock .date {
    top: 12px;
    left: 20px;
  }



/*.galleryWrap .carousel-wrapper.hidden-xs{
display:block!important;
}
*/
.table-responsive.hidden-xxs{
display:block!important;
}


@media (max-width: 767px) {
.factoriesItem:after, .factoriesItem.collapsed:after {

left:auto;
}


.headerMinWrap{
  height:250px;
  background-position: bottom center;
}

.headerMin h1{
  font-size:18px;
  position: absolute;
  bottom:15px!important;
  margin-bottom:15px!important;
}

.mediaFilter{
margin-top:85px;
}

.headerMinWrap .page-header__body{
  bottom:0;
  left:20px;
  right:20px;
}

.headerMinWrap .page-header__body h1{
  position:static;
}
}


.cardsBlock .name-block {
  padding: 5px 10px;
  line-height: 12px;
  max-width: 145px;
}

.block-interviy .people{overflow: hidden}
.col-lg-offset-0 span.v1{height: 72px!important}
/*************************************************Для раздела "Как работает АЭС?" (Терехов 13.07.2017)*****************************/
.container-fluid img{
    width: 100%;
}
.accent{
    color: #e74c3c;
}
.show-block{
    visibility: visible;
}
.hide-block{
    visibility: hidden;
}
.tooltip-block  > div{
    visibility: visible;
}
.subheader{
    color: #fff;
    background: #0078FF;
}
.subheader h3 {
    text-align: center;
    text-transform: uppercase;
}
.circle{
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    background: url(/local/tpl/css/../img/powerplant/circle.png) no-repeat;
}
.circle p{
    color: #fff;
    font-size: 32px;
    line-height: 80px;
    font-weight: bold;
    text-align: center;
}
.circle + p, .circle + p + p{
    color: #2980b9;
    font-size: 1.25em;
    text-align: center;
}
#how-it-works-img, #what-this-consists-of-img{
    width: 100%;
    position: relative; 
}
#how-it-works .subheader + div{
    background: #ecf0f1;
    text-align: center;
    margin-bottom: 10px;
}
#how-it-works .subheader + div > p{
    margin: 20px 0;
}
#what-this-consists-of{
    position: relative;
}
#how-it-works-img  svg, #how-it-works-img > div:first-child, #what-this-consists-of-img  svg, #what-this-consists-of-img > div:first-child{
    position: absolute!important; 
}
#what-kind-of + div.description{
    margin-top: 10px;
}
#what-kind-of + div.description + div{
    margin-bottom: 40px;
}
#what-kind-of + div.description + div > div{
    padding: 0 40px;
}
.stations-number{
    text-align: center;
    margin: 20px 0;
}
.stations-number img{
    width: 40px;
}
.tooltip-block{
    text-align: center;
    position: absolute;
    padding: 15px;    
    width: 240px;
    height: auto;
}
.tooltip-block > div.tooltip-text{
    width: 210px;
}
.tooltip-block svg, .tooltip-block > div{
    position: absolute!important;    
}
.description .lead, .description .bg-primary{
    text-align: center;
}
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.page-header{
    margin-bottom: 15px;
}
h3{
    margin-top: 20px;
}
.description > div{
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px){
    .subheader{
        font-size: 20px;
        padding: 0 10%;
    }
    .subheader h3{
        font-size: 1.25em;
        margin-bottom: 50px;
    }
    .subheader > div{
        margin-bottom: 50px;
    }
    .description{
        font-size: 16px;
    }
    .stations-number p{
        margin-top: 20px;
    }
    #how-it-works .subheader + div{
        margin-bottom: 40px;
    }
    #what-this-consists-of .subheader > div{
        margin-bottom: 170px;
    }
    #what-this-consists-of .subheader{
        z-index: -1;
    }
    #what-this-consists-of{
        top: 150px;
    }
    #what-kind-of{
        margin-top: 50px;
    }
    #what-this-consists-of-img + div.description > div:first-child{
        margin-top: -150px;
    }
    #what-kind-of + div.description{
        margin-top: 50px;
    }
}
@media (min-width: 1200px){
    .subheader{
        font-size: 24px;
        padding: 0 20%;
    }
    .circle + p, .circle + p + p{
        font-size: 1.5em;
    }
    .description{
        font-size: 18px;
    }
    .page-header_industry{
	width:100%;
    }
}

.mnenia_header
{
color: white;
font-size: 12px;
float: right;
}
.top-menu-predpr
{
	display:none;
}
@media (min-width: 750px){
	.page-header_industry{
	display:inline-block;
    }
	.mnenia_header
	{
		top:-65px;
	}
}
@media (min-width: 750px) and (max-width: 969px){
	.mnenia_header
	{
		top:-65px;
	}
}

@media (min-width: 970px) and (max-width: 1169px){
	.mnenia_header
	{
		top:-75px;
	}
}
@media (min-width: 1170px)and (max-width: 1446px){
	.mnenia_header
	{
		top:-65px;
	}
}
@media (min-width: 1447px){
	.top-menu-predpr
	{
		display:block;
	}
	.mnenia_header
	{
		top:-55px;
	}
}
@media (min-width:1200px) and (max-width:1255px)
{
	.read_more{
		width:50px !important;
	}
	header .logo{
		margin-right:10px !important;
	}
	header .menu .m-ico{
	padding:15px 10px 15px 46px !important;
	}
	header .menu .m-ico:before,	header .menu .m-ico:after{
	left:15px !important;;
	}
}
/*****************************************************************************************************************************/
footer div.contacts{
	margin-top: 30px;
}
span#main_shadow {
    filter: grayscale(0)!important;
}
/* End */


/* Start:/local/tpl/css/carousel.css?15098279782018*/


    /* Styling for text based carousel content. Only width and height are mandatory */
    .carousel>ul>li>p {
        width: 130px;
        height: 98px;

        margin: 10px 10px 10px 0;
        border: 1px solid #808080;
        border-radius: 5px;
        line-height: normal;
        background-color: #fff;
        padding: 10px;
    }

/* Styles for PREV and NEXT anchor buttons */
a.prev, a.next, a.go {
    display: block;
    width: 26px;
    height: 30px;
    line-height: 1;

    background-color: #333333;
    color: ghostwhite;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 25px;

    border-radius: 8px;
    float: left;
}
    a.prev.disabled, a.next.disabled,
    a.prev.disabled:hover, a.next.disabled:hover {
        background-color: #8d8d8d;
        cursor: default;
    }
    a.go.highlight {
        background-color: #dedede;
        color: #000;
    }
    a.prev {
        margin: 50px -5px 0 0;
        text-indent: 7px;
    }
    a.next {
        margin: 50px 0 0 -5px;
        text-indent: 10px;
    }
        a.prev:hover, a.next:hover, a.go:hover {
            background-color: #666666;
        }

/* Additional carousel styles for external controls, slider, widget, mid etc. */

.externalControl button,
.imageSliderExt button {
    margin: 5px 5px 0 0;
}
.externalControl a.next, .externalControl a.prev, .externalControl a.go,
.imageSliderExt a.next, .imageSliderExt a.prev, .imageSliderExt a.go
{
    margin: 0 5px 0 0;
    padding: 7px 5px 0 5px;
    font-size: 15px;
    text-align: center;
    border-radius: 3px;
}

.carousel img {
    cursor: pointer;
}
.mid {
    margin-left: 50px;
    width: 400px;
    height: 300px;
}
.vertical {
    margin-left: 170px;
}

.carousel>ul>li>img,
.imageSliderExt .carousel>ul>li>img {
    width: 400px;
    height: 300px;
}
.carousel>ul>li>p,
.imageSliderExt .carousel>ul>li>p {
    width: 380px;
    height: 280px;
}

/* End */


/* Start:/local/tpl/circle.skin/circle.player.css?15098279782414*/
/*
 * Project: CirclePlayer
 * http://www.jplayer.org
 *
 * Copyright (c) 2012 Happyworm Ltd
 *
 * Author: Silvia Benvenuti
 * Edited by: Mark J Panaghiston
 * Date: 2nd October 2012
 * Artwork inspired by: http://forrst.com/posts/Untitled-CJz
 */

.cp-container {
	position:relative;
	width:82px; /* 200 - (2 * 48) */
	height:82px;
	background:url(/local/tpl/circle.skin/buffer.png) 0 0 no-repeat #fff;
	border-radius:100%;
	padding:0px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.cp-container :focus {
	border:none;
	outline:0;
}

.cp-buffer-1,
.cp-buffer-2,
.cp-progress-1,
.cp-progress-2 {
	position:absolute;
	top:0;
	left:0;
	width:82px;
	height:82px;
	clip:rect(0px,41px,82px,0px);

	-moz-border-radius:82px;
	-webkit-border-radius:82px;
	border-radius:82px;
}

.cp-buffer-1,
.cp-buffer-2 {
	background:url("/local/tpl/circle.skin/buffer.png") 0 0 no-repeat;
}


/* FALLBACK for .progress
 * (24 steps starting from 1hr filled progress, Decrease second value by 82px for next step)
 * (It needs the container selector to work. Or use div)
 */

.cp-container .cp-fallback {
	background:url("/local/tpl/circle.skin/progress_sprite.jpg") no-repeat;
	background-position:0 82px; 
}

.cp-progress-1,
.cp-progress-2 {
	background:url("/local/tpl/circle.skin/progress.png") 0 0 no-repeat;
}

.cp-buffer-holder,
.cp-progress-holder,
.cp-circle-control {
	position:absolute;
	width:82px;
	height:82px;
} 

.cp-circle-control {
	cursor:pointer;
}

.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,82px,82px,41px);
	display:none;
}


/* This is needed when progress is greater than 50% or for fallback */

.cp-buffer-holder.cp-gt50,
.cp-progress-holder.cp-gt50,
.cp-progress-1.cp-fallback{
	clip:rect(auto, auto, auto, auto);
}

.cp-controls {
	margin:0;
	padding:0;
	position:relative;
	width:82px; height:82px;
	
}

.cp-controls li{
	list-style-type:none;
	display:block;
	width:82px;
	height:82px;
	/*IE Fix*/
	position:absolute;
}

.cp-controls li a{
	position:relative;
	display:block;
	width:82px;
	height:82px;
	text-indent:-9999px;
	z-index:1;
	cursor:pointer;
}

.cp-controls .cp-play {
	background:url("/local/tpl/circle.skin/playMusic.png") 0 0 no-repeat;
}

.cp-controls .cp-play:hover {
	opacity:0.8;
}

.cp-controls .cp-pause {
	background:url("/local/tpl/circle.skin/playMusic.png") 0 bottom no-repeat;
}

.cp-controls .cp-pause:hover {
	opacity:0.8;
}

.cp-jplayer {
	width:0;
	height:0;
}

/* End */


/* Start:/local/templates/.default/components/bitrix/news.line/main-videoslider/style.css?15772892001200*/
.mejs__container.mejs__container-keyboard-inactive.mejs__audio{
display:none;
}
.mejs__fullscreen-button{
display:none;
}
        #player2-container .mejs__time-buffering, #player2-container .mejs__time-current, #player2-container .mejs__time-handle,
        #player2-container .mejs__time-loaded, #player2-container .mejs__time-hovered, #player2-container .mejs__time-marker, #player2-container .mejs__time-total {
            height: 2px;
        }

        #player2-container .mejs__time-total {
            margin-top: 9px;
        }
        #player2-container .mejs__time-handle {
            left: -5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ffffff;
            top: -5px;
            cursor: pointer;
            display: block;
            position: absolute;
            z-index: 2;
            border: none;
        }
        #player2-container .mejs__time-handle-content {
            top: 0;
            left: 0;
            width: 12px;
            height: 12px;
        }
		.mejs__controls{
			position: absolute !important;
			top: 0px !important;
		}
		.mejs__volume-button > .mejs__volume-slider{
			top:40px;
		}
/* End */


/* Start:/local/templates/main/template_styles.css?15772936601536*/
.block-info.block-gray.block-interviy .block-info__date.date{z-index: 23;}

.block-info.block-gray.block-interviy .block-info__section.name-block{z-index: 23;}

.js_enabled #cookie-message {
            display: none;
}
#cookie-message {
display:none;
            background-color: rgb(20, 20, 110);
            color:white;
            margin: 0 auto;
            padding: 1em;
    position: fixed;
    z-index: 999;
    bottom: 0px;
    width: 100%;
    opacity: 0.8;
filter: alpha(opacity=80);
        }
#cookie-message p{
float:left;
width:70%;
margin-left:10%;
}
#cookie-message p a{
color:white !important;
text-decoration:underline !important;}

#cookie-message p a:hover{
text-decoration:none !important;}

#cookie_access{
margin-right:50px;
    width: 8em;
    height: 3em;
line-height:16px;
border-radius:24px;
background-color:rgb(74, 159, 223);
float:left;
font-size:14.4px;
font-weight:bold;
color:white;
cursor:pointer;
    border: 2px solid white;
    padding-left: 1%;
    padding-top: 0.9em;
font-family: Helvetica,Calibri,Arial,sans-serif;
}
#cookie_access:hover{
background-color:rgb(112, 197, 255);
}
#cookie_access_en
{
margin-right:50px;
    width: 12em;
    height: 3em;
line-height:16px;
border-radius:24px;
background-color:rgb(74, 159, 223);
float:left;
font-size:14.4px;
font-weight:bold;
color:white;
cursor:pointer;
    border: 2px solid white;
    padding-left: 0.9%;
    padding-top: 0.8em;
font-family: Helvetica,Calibri,Arial,sans-serif;
}
#cookie_access_en:hover{
background-color:rgb(112, 197, 255);
}
/* End */
/* /local/tpl/css/libs/animate.css?150982797875357 */
/* /local/tpl/css/reset.css?15098279781153 */
/* /local/tpl/css/bootstrap.css?1509827978144941 */
/* /local/tpl/css/bootstrap-datepicker3.css?150982797823628 */
/* /local/tpl/css/jquery.fs.selecter.css?15098279785519 */
/* /local/tpl/css/swiper.css?150982797818397 */
/* /local/tpl/css/style.css?1577293283197216 */
/* /local/tpl/css/carousel.css?15098279782018 */
/* /local/tpl/circle.skin/circle.player.css?15098279782414 */
/* /local/templates/.default/components/bitrix/news.line/main-videoslider/style.css?15772892001200 */
/* /local/templates/main/template_styles.css?15772936601536 */
