


/* Start:/css/animate.css?142838371057095*/
@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

/* End */



/* Start:/css/likely.css?14379083245117*/
.likely,.likely__widget{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;margin:0;padding:0;text-indent:0!important;list-style:none!important;font-weight:400;font-family:"Helvetica Neue",Arial,sans-serif;font-size:inherit}.likely{opacity:0;font-size:0!important}.likely_visible{opacity:1;transition:opacity .1s ease-in}.likely>*{display:inline-block;visibility:hidden}.likely_visible>*{visibility:inherit}.likely__widget{display:inline-block;position:relative;white-space:nowrap}.likely__button,.likely__counter{text-decoration:none;text-rendering:optimizeLegibility;display:inline-block;margin:0;outline:0}.likely__button{position:relative;cursor:pointer;user-select:none}.likely__counter{display:none;position:relative;font-weight:400}.likely_ready .likely__counter{display:inline-block}.likely_ready .likely__counter_empty{display:none}.likely__widget,.likely__icon,.likely__button,.likely__counter{vertical-align:top}.likely__widget{transition:background .33s ease-out,color .33s ease-out,fill .33s ease-out;line-height:inherit}.likely__widget:hover,.likely__widget:active,.likely__widget:focus{transition:none;cursor:pointer}.likely__icon{position:relative;text-align:left;display:inline-block}.likely svg{position:absolute}.likely__button,.likely__counter{line-height:inherit;cursor:inherit}.likely__button:empty{display:none}.likely__counter{text-align:center}.likely .likely__widget{color:#000;background:#ececec;background:rgba(231,231,231,.8)}.likely .likely__counter{background-size:1px 1px;background-repeat:repeat-y;background-image:linear-gradient(to right,rgba(0,0,0,.2)0,rgba(0,0,0,0).5px,rgba(0,0,0,0)100%)}.likely-light .likely__widget{color:#fff;fill:#fff;background:rgba(236,236,236,.16);text-shadow:rgba(0,0,0,.2)0 0 .33em}.likely-light .likely__counter{background-image:linear-gradient(to right,rgba(255,255,255,.4)0,rgba(255,255,255,0).5px,rgba(255,255,255,0)100%)}.likely__widget_facebook{fill:#425497}.likely__widget_facebook:hover,.likely__widget_facebook:active,.likely__widget_facebook:focus{background:rgba(207,212,229,.8)}.likely-light .likely__widget_facebook:hover,.likely-light .likely__widget_facebook:active,.likely-light .likely__widget_facebook:focus{text-shadow:#425497 0 0 .25em;background:rgba(66,84,151,.7)}.likely__widget_twitter{fill:#00b7ec}.likely__widget_twitter:hover,.likely__widget_twitter:active,.likely__widget_twitter:focus{background:rgba(191,237,250,.8)}.likely-light .likely__widget_twitter:hover,.likely-light .likely__widget_twitter:active,.likely-light .likely__widget_twitter:focus{text-shadow:#00b7ec 0 0 .25em;background:rgba(0,183,236,.7)}.likely__widget_gplus{fill:#dd4241}.likely__widget_gplus:hover,.likely__widget_gplus:active,.likely__widget_gplus:focus{background:rgba(246,207,207,.8)}.likely-light .likely__widget_gplus:hover,.likely-light .likely__widget_gplus:active,.likely-light .likely__widget_gplus:focus{text-shadow:#dd4241 0 0 .25em;background:rgba(221,66,65,.7)}.likely__widget_vkontakte{fill:#526e8f}.likely__widget_vkontakte:hover,.likely__widget_vkontakte:active,.likely__widget_vkontakte:focus{background:rgba(211,218,227,.8)}.likely-light .likely__widget_vkontakte:hover,.likely-light .likely__widget_vkontakte:active,.likely-light .likely__widget_vkontakte:focus{text-shadow:#526e8f 0 0 .25em;background:rgba(82,110,143,.7)}.likely__widget_pinterest{fill:#cc002b}.likely__widget_pinterest:hover,.likely__widget_pinterest:active,.likely__widget_pinterest:focus{background:rgba(242,191,202,.8)}.likely-light .likely__widget_pinterest:hover,.likely-light .likely__widget_pinterest:active,.likely-light .likely__widget_pinterest:focus{text-shadow:#cc002b 0 0 .25em;background:rgba(204,0,43,.7)}.likely__widget_odnoklassniki{fill:#f6903b}.likely__widget_odnoklassniki:hover,.likely__widget_odnoklassniki:active,.likely__widget_odnoklassniki:focus{background:rgba(252,227,206,.8)}.likely-light .likely__widget_odnoklassniki:hover,.likely-light .likely__widget_odnoklassniki:active,.likely-light .likely__widget_odnoklassniki:focus{text-shadow:#f6903b 0 0 .25em;background:rgba(246,144,59,.7)}.likely{line-height:20px;margin:0 -5px -10px}.likely .likely__widget{font-size:14px;border-radius:3px;height:22px;margin:0 5px 10px}.likely .likely__icon{width:22px;height:22px}.likely .likely__button{padding:1px 4px 1px 0}.likely .likely__counter{padding:1px 4px}.likely svg{left:3px;top:3px;width:16px;height:16px}.likely-big{line-height:28px;margin:0 -6px -12px}.likely-big .likely__widget{font-size:18px;border-radius:4px;height:32px;margin:0 6px 12px}.likely-big .likely__icon{width:32px;height:32px}.likely-big .likely__button{padding:2px 6px 2px 0}.likely-big .likely__counter{padding:2px 6px}.likely-big svg{left:4px;top:4px;width:24px;height:24px}.likely-small{line-height:14px;margin:0 -4px -8px}.likely-small .likely__widget{font-size:12px;border-radius:2px;height:18px;margin:0 4px 8px}.likely-small .likely__icon{width:18px;height:18px}.likely-small .likely__button{padding:2px 3px 2px 0}.likely-small .likely__counter{padding:2px 3px}.likely-small svg{left:3px;top:3px;width:12px;height:12px}
/* End */



/* Start:/css/main.css?144473331637166*/
ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input,table,th,td{
	margin: 0;
	padding: 0;
}
table{
   border-collapse: collapse;
   border-spacing: 0;
}
ul,ol{ 
	list-style: none;
}
input{
    -webkit-appearance: none;
}
input[type="text"] {
    -webkit-appearance: none;
    border-radius: 0;
}
a img,:link img,:visited img{ 
	border:none;
}
body{
	font-size: 12px;
    font-family: 'FuturaFuturisMedium', sans-serif;
}
.clearfix:after{
    content: '';
    display: table;
    clear: both;
}
.layout-positioner{
    width: 1180px;
    margin: 0 auto;
    position: relative;
}
.super{
    vertical-align: super;
    font-size: 15px;
}

@font-face {
    font-family: 'FuturaFuturisLight';
    src: url(../../../../../../fonts/FuturaFuturisLight.eot);
    src: url('../../../../../../fonts/FuturaFuturisLightd41d.eot?#iefix') format('embedded-opentype'),
        url('../../../../../../fonts/FuturaFuturisLight.woff2') format('woff2'),
        url('../../../../../../fonts/FuturaFuturisLight.woff') format('woff'),
        url('../../../../../../fonts/FuturaFuturisLight.ttf') format('truetype');
}
@font-face {
    font-family: 'FuturaFuturisMedium';
    src: url(../../../../../../fonts/FuturaFuturisMedium.eot);
    src: url('../../../../../../fonts/FuturaFuturisMediumd41d.eot?#iefix') format('embedded-opentype'),
        url('../../../../../../fonts/FuturaFuturisMedium.woff2') format('woff2'),
        url('../../../../../../fonts/FuturaFuturisMedium.woff') format('woff'),
        url('../../../../../../fonts/FuturaFuturisMedium.ttf') format('truetype');
}
@font-face {
    font-family: 'FuturaFuturisBold';
    src: url(../../../../../../fonts/FuturaFuturisBold.eot);
    src: url('../../../../../../fonts/FuturaFuturisBoldd41d.eot?#iefix') format('embedded-opentype'),
        url('../../../../../../fonts/FuturaFuturisBold.woff2') format('woff2'),
        url('../../../../../../fonts/FuturaFuturisBold.woff') format('woff'),
        url('../../../../../../fonts/FuturaFuturisBold.ttf') format('truetype');
}

.global-wrapper{
    overflow: hidden;
    min-width: 1180px;
}
.title{
    font-size: 72px;
    font-weight: normal;
    font-family: 'FuturaFuturisBold', sans-serif;
    line-height: 80px;
    text-transform: uppercase;
}
.title span{
    display: block;
    font-family: 'FuturaFuturisLight', sans-serif;
    color: #8a8d8e;
}
.global-wrapper .cat-title{
    font-size: 36px;
    font-weight: normal;
    font-family: 'FuturaFuturisMedium', sans-serif;
    line-height: 46px;
    color: #000;
}
.text, .text-light{
    font-size: 20px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 30px;
    color: #000;
}
.text-light{
    font-size: 18px;
    color: #384249;
}
.buttons.btn-icon{
    text-align: left;
}
.buttons.btn-icon a{
    padding: 0 25px 0 40px;
    margin-bottom: 3px;
    margin-top: 0;
    background-image: url("../../../../../../images/button-icons.png");
    background-repeat: no-repeat;
}
.buttons.btn-icon .buttons--order{
    background-position: 0 -4px;
}
.buttons.btn-icon .buttons--test-drive{
    background-position: 0 -80px;
}
.buttons.btn-icon .buttons--dealer{
    background-position: 0 -157px;
}
.buttons.btn-icon .buttons--order:hover{
    background-position: 0 -43px;
}
.buttons.btn-icon .buttons--test-drive:hover{
    background-position: 0 -119px;
}
.buttons.btn-icon .buttons--dealer:hover{
    background-position: 0 -195px;
}


/* *** *** header *** *** */
.header{
    background: url("../../../../../../images/landsacpe.jpg") -345px top no-repeat;
    position: relative;
}
.top{
    position: relative;
}
.main-logo{
    width: 800px;
    margin: 0 auto;
    padding-top: 33px;
}
.main-logo img{
    max-width: 100%;
}
.main-logo--title{
    font-size: 18px;
    text-align: right;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: normal;
}
.lang-chanage{
    width: 31px;
    position: absolute;
    top: 46px;
    right: 50px;
    cursor: default;
}
.lang-chanage:hover ul{
    display: block;
}
.lang-chanage span{
    font-size: 14px;
    color: #000;
    font-weight: bold;
}
.lang-chanage span img{
    vertical-align: middle;
    margin-left: 6px;
}
.lang-chanage ul{
    display: none;
}
.lang-chanage ul a{
    font-size: 14px;
    color: #000;
    font-weight: bold;
}
.menu{
    position: absolute;
    top: 21px;
    left: 31px;
    z-index: 99;
}
.menu ul{
    display: none;
    height: 66px;
    left: 64px;
    overflow: hidden;
    position: absolute;
    top: 0;
    vertical-align: top;
    width: 1085px;
}
.menu ul li{
    background-color: #fff;
    display: inline-block;
    vertical-align: top;
}
.menu ul li a{
    display: block;
    min-height: 38px;
    padding: 13px 40px;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
    border-top: 1px solid #E6E6E6;
}
.menu ul li a.menu-close{
    background-image: url("../../../../../../images/menu-close-invert.png");
    background-repeat: no-repeat;
    background-position: 31px 24px;    
    cursor: pointer;
    display: block;
    height: 18px;
}
.menu ul li a.menu-close:hover{
    background-image: url("../../../../../../images/menu-close.png");
    background-repeat: no-repeat;
    background-position: 31px 24px;
}
.menu ul li:last-child a img{
    margin-top: 10px;
}
.menu ul li a:hover{
    color: #fff;
    background-color: #0681e8;

    border-bottom: 1px solid #0681e8;
    border-right: 1px solid #0681e8;
    border-top: 1px solid #0681e8;
}
.menu--hamburger{
    display: inline-block;
    cursor: pointer;
    height: 66px;
    width: 64px;
}
.menu--hamburger span{
    width: 23px;
    height: 17px;
    display: block;
    background-image: url("../../../../../../images/menu_hambur.png");
    background-repeat: no-repeat;
    background-position: -5px -5px;
    margin-top: 23px;
    margin-left: 19px;
}
.menu.open .menu--hamburger{
    background: #0681e8;
}
.menu.open .menu--hamburger span{
    background-position: -5px -32px;
}
.menu-fixed, .lang-fixed{
    position: fixed;
    z-index: 99;
}
.cars{
    text-align: center;
    margin-top: 183px;
    position: relative;
}
.cars img{
    position: relative;
    z-index: 2;
}
.cars--model{
    position: absolute;
    padding: 14px 18px 100px;
    background: rgba(255,255,255,.9);
    text-align: left;
    z-index: 1;
    box-sizing: border-box;
}
.cars--model-furgon{
    width: 203px;
    top: -145px;
    left: 130px;
}
.cars--model-kombi{
    width: 186px;
    top: -115px;
    left: 420px;
}
.cars--model-avtobua{
    width: 198px;
    top: -75px;
    right: 275px;
}
.cars--title a{
    font-size: 24px;
    font-weight: bold;
    color: #0681e8;
    text-decoration: none;
    border-bottom: 1px dotted #0681e8;
}
.cars--title a:hover{
    border-color: transparent;
}
.cars--description{
    font-size: 12px;
    font-weight: normal;
    font-family: Verdana, Arial, sans-serif;
    color: #626f78;
    line-height: 18px;
    margin: 14px 0 20px;
}
.cars--price{
    font-size: 14px;
    font-weight: bold;
    color: #000;
    visibility: hidden;
}
.sub-title{
    font-size: 24px;
    font-weight: normal;
    color: #000;
    text-align: center;
    line-height: 34px;
    margin-top: 5px;
}
.top .sub-title{
    margin-bottom: 15px;
}
.buttons{
    text-align: center;
}
.buttons a{
    display: inline-block;
    padding: 0 10px;
    height: 34px;
    min-height: 34px;
    line-height: 34px;
    margin-right: 6px;
    margin-top: 14px;
    font-size: 17px;
    color: #fff;
    background: #0681e8;
    border-radius: 3px;
    text-decoration: none;
}
.buttons a:hover{
    background-color: #0e76cd;
}
.footer-logos{
    padding: 30px 0 21px;
    position: relative;
}
.footer-logos--main-site{
    float: left;
}
.footer-logos--main-site p{
    display: inline-block;
    margin-left: 5px;
    opacity: 0.5;
}
.footer-logos--main-site p a{
    font-size: 11px;
    color: #fff;
    line-height: 13px;
    text-decoration: none;
}
.footer-logos--main-site:before{
    content: '';
    display: inline-block;
    width: 27px;
    height: 21px;
    background: url("../../../../../../images/gaz-icon.png") 0 0 no-repeat;
}
.footer-logos--gaz-logo{
    float: right;
}
.footer-logos .scroll-icon{
    position: absolute;
    left: 50%;
    top: 29px;
    margin-left: -10px;
}

/* *** *** furgon info *** *** */

.furgon-info{
    padding-bottom: 22px;
    background: #fefefe;
}
.furgon-info--car{
    position: absolute;
    top: -1px;
    left: -115px;
    z-index: 1;
}
.furgon-info--title{
    position: relative;
    margin-bottom: 20px;
    padding-top: 90px;
    z-index: 2;
}
.furgon-info--sub-title{
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 18px;
    text-transform: uppercase;
    color: #9fa3a6;
    margin-left: 6px;
    margin-bottom: 165px;
}
.furgon-info--block{
    display: inline-block;
    width: 200px;
    padding-left: 33px;
}
.furgon-info--block-second{
    padding-left: 0;
}
.furgon-info--block-fourth{
    padding-left: 60px;
}
.furgon-info--block-first{
    width: 233px;
    padding-left: 0;
}
.furgon-info--block-last{
    width: 170px;
    padding-left: 66px;
}
.furgon-info--block h5{
    font-size: 30px;
    font-weight: normal;
    font-family: 'FuturaFuturisBold', sans-serif;
    line-height: 1;
    color: #000;
}
.furgon-info--block p{
    font-size: 20px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 24px;
    color: #626f78;
}

/* *** *** furgon description *** *** */

.furgon-description{
    padding-top: 26px;
    height: 875px;
    background: #f7f8f8;
    position: relative;
}
.furgon-description--car{
    position: absolute;
    top: -150px;
    left: -250px;
    z-index: 1;
}
.furgon-description--block{
    float: left;
}
.furgon-description p.cat-title{
    margin-bottom: 20px;
}
.furgon-description--block-left{
    width: 750px;
    margin-left: 150px;
}
.furgon-description--block-right{
    width: 355px;
    margin-left: 145px;
}
.furgon-description--block .buttons{
    margin-bottom: 30px;
    margin-top: 17px;
}
.furgon-description .scroll-icon{
    position: absolute;
    top: 5px;
    left: 0;
}
.furgon-description--block-bottom-wrap{
    padding-top: 95px;
    position: relative;
}
.furgon-description--block-bottom{
    float: right;
    width: 355px;
    margin-right: 75px;
    position: relative;
    z-index: 2;
}
.furgon-description--block-bottom p{
    line-height: 26px;
    margin-bottom: 30px;
}

/* *** *** furgon description 2 *** *** */

.furgon-description-2{
    background: rgba(247,248,248,1);
    background: -moz-linear-gradient(top, rgba(247,248,248,1) 0%, rgba(254,254,254,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(247,248,248,1)), color-stop(100%, rgba(254,254,254,1)));
    background: -webkit-linear-gradient(top, rgba(247,248,248,1) 0%, rgba(254,254,254,1) 100%);
    background: -o-linear-gradient(top, rgba(247,248,248,1) 0%, rgba(254,254,254,1) 100%);
    background: -ms-linear-gradient(top, rgba(247,248,248,1) 0%, rgba(254,254,254,1) 100%);
    background: linear-gradient(to bottom, rgba(247,248,248,1) 0%, rgba(254,254,254,1) 100%);
    position: relative;
    padding-top: 20px;
    padding-bottom: 75px;
    z-index: 1;
}
.furgon-description-2 .furgon-description--row{
    width: 885px;
    margin: 0 auto;
}
.furgon-description--col{
    float: left;
    width: 430px;
    margin-left: 23px;
}
.furgon-description-2 .furgon-description--row .furgon-description--col:first-child{
    margin-left: 0;
}
.img-wrap{
    margin-bottom: 23px;
}
.img-wrap img{
    display: block;
    max-width: 100%;
}
.furgon-description-2 .text-block, .furgon-description-2 .text-block--half{
    font-size: 16px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 24px;
    color: #384249;
    margin-bottom: 23px;
}
.furgon-description-2 .text-block--half{
    display: inline-block;
    width: 202px;
    margin-right: 23px;
    vertical-align: top;
}
.furgon-description-2 .text-block--half img{
    display: block;
    max-width: 100%;
}
.furgon-description-2 .text-block--half.last{
    margin-right: 0;
    margin-bottom: 0;
    letter-spacing: -0.1px;
}
.text-block.custom-marg{
    margin-bottom: 11px;
}
.furgon-description-2 .scroll-icon{
    position: absolute;
    top: 110px;
    left: -8px;
}

/* *** *** kombi *** *** */

.kombi{
    height: 545px;
    background: rgba(248,248,248,1);
    background: -moz-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(249,249,249,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,248,248,1)), color-stop(100%, rgba(249,249,249,1)));
    background: -webkit-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(249,249,249,1) 100%);
    background: -o-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(249,249,249,1) 100%);
    background: -ms-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(249,249,249,1) 100%);
    background: linear-gradient(to bottom, rgba(248,248,248,1) 0%, rgba(249,249,249,1) 100%);
    position: relative;
    z-index: 2;
}
.kombi-car{
    position: absolute;
    top: -55px;
    left: -355px;
    z-index: 1;
}
.kombi--content{
    width: 575px;
    position: relative;
    float: right;
    z-index: 2;
}
.kombi--title {
    margin-bottom: 30px;
    margin-left: -4px;
}
.kombi--description{
    font-size: 12px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 1;
    text-transform: uppercase;
    color: #9fa3a6;
    padding: 30px 0 23px;
    margin-left: 4px;
}
.kombi-info--block{
    display: inline-block;
    width: 199px;
    vertical-align: top;
    margin-right: 20px;
    margin-bottom: 25px;
}
.kombi-info--block h5 {
    font-size: 30px;
    font-weight: normal;
    font-family: 'FuturaFuturisBold', sans-serif;
    line-height: 1;
    color: #000;
}
.kombi-info--block p {
    font-size: 20px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 24px;
    color: #626f78;
}
.kombi .scroll-icon{
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -10px;
    z-index: 9;
}

/* *** *** kombi description *** *** */

.kombi-description{
    padding-top: 70px;
    position: relative;
    background: rgba(249,249,249,1);
    background: -moz-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 29%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(249,249,249,1)), color-stop(29%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 29%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 29%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 29%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 29%, rgba(255,255,255,1) 100%);
}
.kombi-description--col-left{
    width: 525px;
    float: left;
    margin-left: 150px;
}
.kombi-description--col-right{
    width: 450px;
    float: left;
    margin-left: 55px;
}
.kombi-description--text{
    margin: 38px 0 70px;
}
.kombi-description--text-light{
    margin-top: 45px;
}
.kombi-description--text-light.last{
    margin-top: 30px;
}
.kombi-description--row-2{
    position: relative;
    z-index: 2;
}
.kombi-description--row-2 .kombi-description--col-left{
    width: 210px;
}
.kombi-description--row-2 .kombi-description--col-right{
    width: auto;
}
.kombi-description--row-2 .kombi-description--text-light{
    font-size: 16px;
    line-height: 24px;
    height: 146px;
    margin-bottom: 22px;
    margin-top: 0;
}
.kombi--car{
    height: 572px;
    position: relative;
    z-index: 1;
}
.kombi--car img{
    position: absolute;
    top: -175px;
    left: -295px;
}
.kombi-description--row-3 .kombi-description--col-left{
    width: 435px;
}
.kombi-description--row-3 .kombi-description--col-right{
    width: 375px;
    margin-left: 90px;
}
.kombi-description--row-3 .kombi-description--text{
    margin: 0;
}
.kombi-description--row-3 .kombi-description--text.last{
    margin-top: 30px;
}

/* *** *** avtobus *** *** */

.avtobus{
    position: relative;
    padding-top: 115px;
}
.avtobus--description{
    font-size: 12px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 1;
    text-transform: uppercase;
    color: #9fa3a6;
    padding: 30px 0 23px;
    margin-left: 4px;
}
.avtobus--title{
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}
.avtobus--car{
    position: absolute;
    top: -150px;
    left: 240px;
    z-index: 1;
}
.avtobus-info--block{
    display: inline-block;
    width: 199px;
    vertical-align: top;
    margin-right: 20px;
    margin-bottom: 90px;
}
.avtobus-info--block h5{
    font-size: 30px;
    font-weight: normal;
    font-family: 'FuturaFuturisBold', sans-serif;
    line-height: 1;
    color: #000;
}
.avtobus-info--block p{
    font-size: 20px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 24px;
    color: #626f78;
}

/* *** *** avtobus description *** *** */

.avtobus-description{
    position: relative;
    padding-bottom: 110px;
}
.avtobus-description--row{
    position: relative;
    z-index: 2;
}
.avtobus-description--col-left{
    float: left;
    width: 730px;
    margin-left: 150px;
    margin-right: 20px;
}
.avtobus-description--col-right{
    float: left;
    width: 280px;
}
.avtobus-description--col-left .text{
    margin-top: 25px;
}
.avtobus-description--col-left img{
    float: right;
    display: block;
    margin-top: 30px;
}
.avtobus-description--col-left .text-col{
    width: 430px;
    float: left;
}
.avtobus-description--col-right .img-wrap{
    margin-top: 55px;
}
.avtobus-description--col-right .text-light{
    line-height: 30px;
}
.avtobus-description .scroll-icon{
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 3;
}

/* *** *** sizes *** *** */

.sizes{
    position: relative;
    padding-bottom: 110px;
}
.sizes--text-wrap{
    margin-left: 150px;
}
.sizes-text{
    font-size: 22px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    color: #384249;
    margin: 20px 0 20px 4px;
}
.sizes--links a{
    display: inline-block;
    width: 280px;
    margin-right: 75px;
    font-size: 22px;
    font-family: 'FuturaFuturisLight', sans-serif;
    text-decoration: none;
    line-height: 28px;
    color: #0069ce;
    vertical-align: top;
}
.sizes--links a span{
    border-bottom: 1px dotted #0681e8;;
}
.sizes--links a:last-child{
    width: 90px;
    margin-right: 0;
}
.no-margin{
    margin: 0 !important;
}
.sizes--links{
    margin-bottom: 50px;
}
.sizes--links a.link_tabs_active{
    color: #000;
    font-family: 'FuturaFuturisBold', sans-serif;
}
.sizes--links a.link_tabs_active span{
    border-bottom: none;
}
.sizes .scroll-icon{
    position: absolute;
    left: 0;
    top: 185px;
}
.sizes--row{
    margin-top: 50px;
}
.content_tabs .cat-title{
    margin-top: 30px;
}
.sizes--col-left, .sizes--col-right{
    float: left;
}
.sizes--col-left{
    width: 600px;
    margin-right: 130px;
}
.sizes--col-right{
    width: 225px;
}
.sizes--pdf{
    display: block;
    font-size: 16px;
    font-family: 'FuturaFuturisLight', sans-serif;
    text-decoration: none;
    line-height: 18px;
    color: #007ac2;
    vertical-align: top;
    margin-bottom: 35px;
    margin-top: 10px;
}
.sizes--pdf span{
    display: inline-block;
    width: 150px;
}
.sizes--pdf:before{
    content: '';
    display: inline-block;
    width: 37px;
    height: 35px;
    background: url("../../../../../../images/pdf.png") 0 0 no-repeat;
    vertical-align: top;
    margin-right: 7px;
}
.sizes--compare-link{
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-family: 'FuturaFuturisLight', sans-serif;
    text-decoration: none;
    line-height: 20px;
    color: #007ac2;
}

/* *** *** compare *** *** */

.compare{
    position: relative;
    background: rgba(243,246,249,1);
    background: -moz-linear-gradient(top, rgba(243,246,249,1) 0%, rgba(254,254,254,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(243,246,249,1)), color-stop(100%, rgba(254,254,254,1)));
    background: -webkit-linear-gradient(top, rgba(243,246,249,1) 0%, rgba(254,254,254,1) 100%);
    background: -o-linear-gradient(top, rgba(243,246,249,1) 0%, rgba(254,254,254,1) 100%);
    background: -ms-linear-gradient(top, rgba(243,246,249,1) 0%, rgba(254,254,254,1) 100%);
    background: linear-gradient(to bottom, rgba(243,246,249,1) 0%, rgba(254,254,254,1) 100%);
    padding-top: 60px;
}
.compare .title{
    margin-left: 150px;
}
.compare-table-wrap .cat-title{
    margin: 35px 0 30px 150px;
}
.compare-table-wrap .scroll-icon{
    position: absolute;
    top: 10px;
    left: 0;
}
.compare .car-img{
    margin-top: 45px;
}
.compare--row{
    margin-left: 150px;
}
.compare--col-left{
    width: 545px;
    margin-right: 165px;
    float: left;
}
.compare--col-right{
    width: 252px;
    float: left;
}

/* *** *** compare table *** *** */

.compare-table-wrap{
    background: #fff;
    padding-bottom: 100px;
}
.compare--table{
    width: 100%;
    margin-top: 55px;
}
.compare--table tr td{
    width: 235px;
    padding-left: 100px;
    height: 85px;
    min-width: 235px;
    min-height: 85px;
}
.compare--table tr td:first-child{
    width: 150px;
    min-width: 150px;
}
.compare--table tr td:first-child{
    padding-left: 0;
}
.compare--table tr td:nth-child(1){
    padding-left: 0;
}
.compare--table tr:nth-child(1) td:nth-child(2), .compare--table tr:nth-child(2) td:nth-child(2), .compare--table tr:nth-child(5) td:nth-child(2){
    padding-left: 0;
    border-left: 0;
    border-right: 1px solid #ecedef;
}
/* Edit previous style rule for ie8 */
.compare--table tr td.ie8-table-fix{
    padding-left: 0;    
    border-left: 0;
    border-right: 1px solid #ecedef;
}
.compare--table tr:nth-child(5) td:nth-child(1){
    border-bottom: none;
}
.compare--table p{
    font-size: 14px;
    font-family: 'FuturaFuturisLight', sans-serif;
    color: #626f78;
    margin-bottom: 30px;
}
.compare--table .img-wrap{
    margin-bottom: 0;
}
.compare--table tr:first-child td p, .compare--table-side-title p{
    font-size: 18px;
    line-height: 24px;
    font-family: 'FuturaFuturisMedium', sans-serif;
    color: #000;
}
.compare--table tr:first-child td p span, .compare--table-side-title span{
    display: block;
    font-family: 'FuturaFuturisLight', sans-serif;
    color: #626f78;
}
.compare--table-side-title{
    vertical-align: top;
}
.compare--table-pad{
    padding-bottom: 15px;
    border-bottom: 1px solid #ecedef;
}
.compare--table-pad-top{
    padding-top: 45px;
}
.compare--table tr td.compare--table-side-title{
    border-bottom: 1px solid #ecedef;
}
.compare--table .super{
    font-size: 10px;
}
.compare--table tr td:nth-child(2), .compare--table tr td:last-child{
    border-left: 1px solid #ecedef;
}
.compare--table tr:last-child td p{
    margin-bottom: 0;
}

/* *** *** construct *** *** */

.construction--wrap{
    margin-left: 150px;
}
.construction--wrap .cat-title{
    margin-bottom: 15px;
}
.construction{
    position: relative;
    padding-bottom: 75px;
}
.construction .title{
    margin-bottom: 30px;
}
.construction--col-left, .construction--col-right{
    float: left;
    width: 430px;
}
.construction--col-left{
    margin-right: 95px;
    margin-left: 150px;;
}
.construction .text{
    color: #384249;
    margin-bottom: 30px;
}
.construction .text span{
    font-family: 'FuturaFuturisMedium', sans-serif;
}
.construction--motor p{
    margin-top: 10px;
}
.construction--motor p span{
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    font-family: Verdana, Arial, sans-serif;
    color: #9fa3a5;
}
.construction--motor p span:first-child{
    margin-right: 205px;
    margin-left: 50px;
}
.construction .img-wrap{
    margin-bottom: 30px;
}
.construction .construction--cust-marg-1{
    margin-bottom: 65px;
}
.construction .construction--cust-marg-2{
    margin-bottom: 90px;
}
.construction .construction--cust-marg-3{
    margin-top: 140px;
}
.construction .construction--cust-marg-4{
    margin-bottom: 50px;
}
.construction .construction--cust-marg-5{
    margin-bottom: 60px;
}
.construction .construction--cust-marg-6{
    margin-top: 75px;
}

/* *** *** interior *** *** */
.interior{
    position: relative;
    padding: 45px 0 50px;
    background: #f9f9f9;
    z-index: 1;
}
.interior .scroll-icon{
    position: absolute;
    top: 220px;
    left: 0;
}
.interior--col-left{
    width: 455px;
    margin-left: 150px;
    margin-right: 145px;
    float: left;
}
.interior--col-right{
    width: 355px;
    float: left;
    padding-top: 80px;
}
.interior .cat-title{
    margin: 50px 0 0 150px;
}

/* *** *** interior description car *** *** */
.interior-description-car{
    position: relative;
    background: rgba(249,249,249,1);
    background: -moz-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(249,249,249,1)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
}
.interior-description--car{
    position: relative;
    height: 694px;
}
.interior-description--car img{
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -640px;
}

/* *** *** interior description *** *** */
.interior-description{
    position: relative;
    padding-bottom: 125px;
    padding-top: 15px;
}
.interior-description--col-left, .interior-description--col-right{
    float: left;
    width: 430px;
}
.interior-description--col-left{
    margin-left: 150px;
    margin-right: 75px;
}
.interior-description .text{
    font-size: 24px;
    font-family: 'FuturaFuturisMedium', sans-serif;
}
.interior-description ul{
    margin-top: 20px;
}
.interior-description--col-right ul{
    margin-top: 49px;
}
.interior-description ul li{
    font-size: 18px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 30px;
    color: #384249;
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 15px;
    margin-top: 10px;
}
.interior-description--col-right p {
    font-size: 12px;
    font-weight: normal;
    font-family: 'FuturaFuturisLight', sans-serif;
    line-height: 26px;
    color: #384249;
    padding-top: 27px;
}
.interior-description--detail-images img{
    margin:  0 auto;
}
.interior-description--detail-images{
    margin-top: 60px;
}

/* *** *** colors *** *** */

.colors{
    position: relative;
    padding-bottom: 70px;
}
.colors-wrap{
    margin-left: 150px;
}
.colors--block{
    position: relative;
    margin-top: 45px;
}
.colors--block img{
    display: block;
}
.colors--block-name{
    position: absolute;
    bottom: 12px;
    left: 15px;
}
.colors--block-name span{
    display: inline-block;
    margin-right: 130px;
    font-size: 20px;
    color: #fff;
}
.colors--block-name span.white{
    margin-right: 0;
}
.colors--block-name span.red-gold{
    margin-right: 40px;
}
.colors--block-name span.storm{
    margin-right: 112px;
}
.colors--block-name span.silver{
    margin-right: 65px;
}

/* *** *** footer *** *** */

.footer{
    position: relative;
    background: url("../../../../../../images/footer-bg.png") top center no-repeat;
    padding: 155px 0 40px;
}
.footer .main-logo{
    padding-top: 0;
    margin-bottom: 90px;
}
.footer .main-logo h2{
    color: #727272;
    font-size: 16px;
}
.footer .text{
    font-size: 24px;
    line-height: 36px;
    font-family: 'FuturaFuturisMedium', sans-serif;
    text-align: center;
}
.footer .footer-logos{
    margin-top: 160px;
    padding: 0;
}
.footer .likely{
    margin-top: 10px;
}
.footer .footer-logos--main-site:before{
    background: url("../../../../../../images/footer-logo-1.png") top center no-repeat;
}
.footer .footer-logos--main-site p a{
    color: #858787;
    text-decoration: none;
}

/* *** *** modal *** *** */

#send-form-container{
    width: 900px;
    margin: 0 auto;
    padding-bottom: 75px;
    position: relative;
}
#send-form-container .title{
    margin-bottom: 45px;
}
.form-wrap .text{
    margin-bottom: 30px;
}
#send-form{
    position: relative;
}
#send-form input[type="text"], #send-form textarea{
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 24px;
    color: #000;
    font-family: 'FuturaFuturisMedium', sans-serif;
    padding-left: 12px;
    outline: none;
}
#send-form input[type="text"]{
    display: inline-block;
    vertical-align: top;
    width: 415px;
    height: 44px;
}
#send-form input.name{
    width: 868px;
}
#send-form input.phone, #send-form input.city{
    margin-right: 25px;
}
#send-form textarea{
    width: 868px;
    height: 102px;
    resize: none;
    overflow: auto;
}
#send-form .p-textarea{
    margin-bottom: 0;
}
#send-form input[type="text"]::-ms-clear {
    display: none;
}
#send-form textarea::-ms-clear{
    display: none;
}
#send-form input[type="submit"]{
    display: inline-block;
    width: 214px;
    height: 47px;
    text-align: center;
    border-radius: 5px;
    background: #0681e8;
    font-size: 24px;
    color: #fff;
    font-family: 'FuturaFuturisMedium', sans-serif;
    border: none;
    vertical-align: top;
    outline: none;
    margin-top: 18px;
    cursor: pointer;
}
#send-form .require-text{
    display: inline-block;
    height: 47px;
    vertical-align: top;
    line-height: 47px;
    font-size: 16px;
    color: #626f78;
    font-family: 'FuturaFuturisLight', sans-serif;
    margin-left: 15px;
    margin-top: 18px;
}
#send-form .require-text i{
    color: #d90a10;
    font-style: normal;
}
.select-style {
    display: block;
    border: 1px solid #d0d0d0;
    width: 880px;
    height: 44px;
    margin-bottom: 32px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff url("../../../../../../images/select-arrow.png") no-repeat top 19px right 17px;
}

.select-style select {
    position: relative;
    z-index: 2;
    padding: 5px 8px;
    width: 110%;
    height: 44px;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    font-size: 24px;
    color: #000;
    font-family: 'FuturaFuturisMedium', sans-serif;
}

.select-style select:focus {
    outline: none;
}
.placeholder{
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
    cursor: text;
}
.placeholder span{
    position: absolute;
    top: 0;
    left: 12px;
    line-height: 50px;
    font-size: 24px;
    font-family: 'FuturaFuturisMedium', sans-serif;
    color: #626f78;
    z-index: 25;
}
.placeholder span i{
    color: #d90a10;
    font-style: normal;
}
.mfp-close{
    width: 50px;
    height: 50px;
    background: url("../../../../../../images/close.png") 16px 16px no-repeat !important;
    top: 34px;
    right: -100px;
}
/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-out;
    -moz-transition: opacity 0.1s ease-out;
    -o-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg{
    opacity: 0.95;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg{
    opacity: 0;
}
.validate-error{
    font-size: 11px;
    font-family: Verdana, Arial, sans-serif;
    color: #d90a10;
    position: absolute;
    top: -15px;
    left: 10px;
}
.thanks-message{
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.thanks-message .title{
    margin-top: 125px;
}
.thanks-message p{
    font-family: 'FuturaFuturisLight', sans-serif;
    color: #8a8d8e;
    font-size: 72px;
    font-weight: normal;
    text-transform: uppercase;
}
.popup-close{
    font-size: 18px;
    font-family: 'FuturaFuturisMedium', sans-serif;
    color: #0681e8;
    text-decoration: underline;
}

/* *** *** fixed popup links *** *** */

.fixed-popup-links{
    position: fixed;
    top: 285px;
    right: -220px;
    z-index: 99;
}
.fixed-popup-links .buttons a{
    display: block;
    position: relative;
}

/* *** *** tabs *** *** */
.content__tab{
    display: none;
}
.tab-0{
    display: block;
}
.likely{
    display: block;
    text-align: center;
}
#rotator {position:relative; height:101px;}
#rotator ul li {float:left; position:absolute; list-style: none;}
#rotator ul li.show {z-index:500;}


@media (min-width: 1441px) {
    .header{
        background-position: top center;
    }
}
@media screen and (min-width: 982px) and (max-width: 1280px) {

}
@media screen and (min-width: 661px) and (max-width: 981px) {

}
@media screen and (min-width: 420px) and (max-width: 660px) {

}
@media screen and (min-width: 320px) and (max-width: 419px) {

}

body .footer {
    padding-top: 50px;
}
body .footer .text {    
    font-family: 'FuturaFuturisLight';
    font-size: 16px;
    line-height: 20px;
    text-align: left;
}
body #send-form-container {
    padding-bottom: 40px
}
body #send-form-container .form-wrap {
    width: 500px;
}
body #send-form-container .title {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 10px;
}
body #send-form-container .text {
    margin-bottom: 20px;
}
body #send-form input[type="text"] {
    font-family: 'FuturaFuturisLight';
    font-size: 16px;
    height: 30px;
    width: 468px;
}
body .placeholder {
    margin-bottom: 20px;
}
body .placeholder span {
    font-family: 'FuturaFuturisLight';
    font-size: 16px;
    line-height: 36px;
}  
body .select-style  {
    height: 30px;
    background-size: 10px 8px;
    background: #fff url("../../../../../../images/select-arrow-2.png") no-repeat right 12px top 12px;
    float: left;
    font-size: 16px;
    width: 229px;
}
body .select-style select {
    background-color: #fff\9;
    height: 30px;    
    font-family: 'FuturaFuturisLight';
    font-size: 16px;
    width: 229px;
}
body #send-form .p-city {
    float: left;
    margin-left: 20px;
    width: 217px;
}
body #send-form input.phone {
    margin-right: 18px;
    width: 217px;
}
body #send-form input.city {
    width: 217px;
}
body #send-form input.mail {
    width: 217px;
}
body #send-form .p-textarea {
    clear: both;
    width: 482px;
}
body #send-form textarea {    
    font-family: 'FuturaFuturisLight';
    font-size: 16px;
    padding: 5px 12px;
    width: 456px;
}
body #send-from .p-phone {
    float: left;
    width: 217px;
}
#send-form input[type="submit"] {
    height: 37px;
    font-size: 18px;
    margin-top: 14px;
    width: 184px;
}
#send-form .require-text {
    line-height: 37px;
}
body .footer .footer-logos {
    margin-top: 0;
    padding: 0;
}
label.error {
    font-size: 11px;
    font-family: Verdana, Arial, sans-serif;
    color: #d90a10;
    position: absolute;
    top: -15px;
    left: 10px;
}
div.thanks-message {
    height: 530px;
    margin-top: 0;
    position: relative;
}
div.thanks-message .title {
    margin-top: 0;
}
div.footer-images {
    left: 520px;
    position: absolute;
    top: 150px;
    width: 400px;
}
img.send-form-logo{
    display: block;
    margin: 50px 0 0 50px;
    width: 300px;
}
img.send-form-sub-title {
    display: block;
    margin: 5px 0 0 200px;
    width: 150px;
}
img.send-form-car {
    margin-top: 40px;
    width: 400px;
}
.likely .likely__icon {
    display: inline-block;
    background-image: url("../../../../../../images/like-buttons.png")\9;
    background-repeat: no-repeat;    
    height: 16px\9;
    margin: 3px\9;
    width: 16px\9;
}
.likely__widget_facebook .likely__icon {
    background-position: 0 0;
}
.likely__widget_vkontakte .likely__icon {
    background-position: -16px 0;
}
.likely__widget_twitter .likely__icon {
    background-position: -32px 0;
}

.furgon-description--block-left .text {
    padding-bottom: 40px;
}
.hide {
    display: none;
}

.agreement {
    font-family: 'FuturaFuturisLight', sans-serif;
    font-size: 14px;
    margin-top: 10px;
    vertical-align: top;
}
.agreement input[type="checkbox"] {
    -webkit-appearance: checkbox;
    padding: 3px;
    margin: 1px 5px 0 3px;
}
.agreement p {
    color: #626f78;
    font-size: 12px;
    margin: 10px 0 0 5px;
}
.agreement p a {
    border-bottom: 1px dashed #626f78;
    color: #626f78;
    text-decoration: none;
}
.agreement p a:hover {
    border-bottom: 1px dashed #999;
    color: #999;
}
#popup_agreement {
    background-color: white;
    display: none;
    line-height: 1.8em;
    padding: 40px;
    width: 500px;
}
#popup_agreement p {
    font-size: 14px;
    font-family: 'FuturaFuturisLight', Arial, sans-serif;
}
#popup_agreement h3 {
    font-size: 20px;
    font-family: 'FuturaFuturisMedium', Arial, sans-serif;
    font-weight: normal;
    margin-bottom: 24px;
}
#popup_agreement .close {
    position: absolute;
    right: 15px;
    top: 15px;
}

/* End */



/* Start:/css/mediumscreen.css?14428204022014*/
@media screen and (max-width: 1200px) {
	.global-wrapper {
	    min-width: 980px;
	}
	.layout-positioner{
	    width: 980px;
	}
	.menu ul li a {
		padding: 13px 35px;
	}
	.menu ul li a.menu-close{
	    background-position: 27px 24px;
	}
	.menu ul li a.menu-close:hover{
	    background-position: 27px 24px;
	}
	.cars img {
		width: 1050px;
	}
	.furgon-info--car{
	    position: absolute;
	    top: -1px;
	    left: -135px;
	    z-index: 1;
	}
	.furgon-info--block{
	    display: inline-block;
	    width: 220px;
	    padding-left: 0;
	}
	.furgon-info--block-last {
	    display: inline-block;
	    width: 85px;
	    padding-left: 0;
	}
	.furgon-description--car {
		left: -320px;
	}
	.furgon-description--block-bottom {
		margin-right: 0;
	}
	.kombi-car {
		left: -500px;
	}
	.kombi-description--col-left {
		margin-left: 80px;
		width: 450px;
	}
	.kombi-description--col-right {
		margin-left: 0;
	}
	.kombi--car img {
		left: -360px;
	}
	.avtobus-info--block {
		margin-right: 10px;
		width: 150px;
	}
	.avtobus--car {
		left: 165px;
	}
	.avtobus-description--col-left {
		margin-left: 80px;
		width: 650px;
	}
	.avtobus-description--col-right {
		width: 230px;
	}
	.sizes--text-wrap {
		margin-left: 80px;
	}
	.sizes--col-left {
		margin-right: 70px;
	}
	.compare .title {
		margin-left: 80px;
	}
	.compare-table-wrap .cat-title {
		margin-left: 80px;
	}
	.compare--row {
		margin-left: 80px;
	}
	.compare--col-left {
		margin-right: 50px;
	}
	.construction--wrap {
		margin-left: 80px;
	}
	.construction--col-left {
		margin-left: 80px;
		margin-right: 40px;
	}
	.interior--col-left {
		margin-left: 80px;
		margin-right: 90px;
	}
	.interior .cat-title {
		margin-left: 80px;
	}
	.interior-description--col-left {
		margin-left: 80px;
		margin-right: 70px;
	}
	.interior-description--col-right {
		width: 400px;
	}
	.colors-wrap {
		margin-left: 80px;
	}
	.sizes--links a {
		margin-right: 0;
	}
}
/* End */
/* /css/animate.css?142838371057095 */
/* /css/likely.css?14379083245117 */
/* /css/main.css?144473331637166 */
/* /css/mediumscreen.css?14428204022014 */
