@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic";
html, body {
    border: 0;
    font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

div, span, object, iframe, img, table, caption, thead, tbody, tfoot, tr, tr, td, article, aside, canvas, details, figure, hgroup, menu, nav, footer, header, section, summary, mark, audio, video {
    border: 0;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cit, code, del, dfn, em, ins, q, samp, small, strong, sub, sup, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, legend, label {
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video {
    display: block;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

table caption, table th, table td {
    text-align: left;
    vertical-align: middle;
}

a img {
    border: 0;
}

:focus {
    outline: 0;
}

/*!
AniCollection - http://anicollection.github.io/
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Dariel Noel

Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 Daniel Eden
*/

@-webkit-keyframes lineshift {
    0% {
        background-position: 0 100%;
    }
    100% {
        background-position: 60000px 100%;
    }
}

@keyframes lineshift {
    0% {
        background-position: 0 100%;
    }
    100% {
        background-position: 60000px 100%;
    }
}

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

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

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

.duration-xs {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
}

.duration-sm {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

.duration-md {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.duration-lg {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.duration-xl {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}

.timing-linear {
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

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

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

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

.timing-cubic-bezier {
    -webkit-animation-timing-function: cubic-bezier;
    animation-timing-function: cubic-bezier;
}

.delay-xs {
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
}

.delay-sm {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.delay-md {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-lg {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay-xl {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

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

.iteration-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.iteration-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
}

.iteration-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
}

.iteration-4 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
}

.iteration-5 {
    -webkit-animation-iteration-count: 4;
    animation-iteration-count: 4;
}

.direction-normal {
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.direction-reverse {
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.direction-alternate {
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.direction-alternate-reverse {
    -webkit-animation-direction: alternate-reverse;
    animation-direction: alternate-reverse;
}

.fill-mode-none {
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
}

.fill-mode-forwards {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fill-mode-backwards {
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

.fill-mode-both {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

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

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

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

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

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

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        -ms-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        -ms-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        -ms-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        -ms-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        -ms-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

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

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

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

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -ms-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -ms-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

@keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

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

@keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

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

@keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

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

@keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

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

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        -ms-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        -ms-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotate {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotate {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
    }
    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes rotateDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes rotateDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes rotateUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes rotateUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rotateUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        -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: rotate3d(0, 0, 1, 80deg);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 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%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 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;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        -ms-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

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

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

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

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#snackbar-container {
    position: fixed;
    left: 20px;
    bottom: 0;
    z-index: 99999;
}

.snackbar {
    overflow: hidden;
    clear: both;
    min-width: 288px;
    max-width: 380px;
    cursor: pointer;
    opacity: 0;
    font-weight: 400;
}

.snackbar a {
    font-weight: bold;
    color: #ffffff;
}

.badresult {
    background-color: #ef5350;
}

.goodresult {
    background-color: #66bb6a;
}

.snackbar.snackbar-opened {
    height: auto;
    opacity: 1;
}

@media (max-width:767px) {
    #snackbar-container {
        left: 0 !important;
        right: 0;
        width: 100%;
    }
    #snackbar-container .snackbar {
        min-width: 100%;
    }
    #snackbar-container [class="snackbar snackbar-opened"]~.snackbar.toast {
        margin-top: 20px;
    }
    #snackbar-container [class="snackbar snackbar-opened"] {
        border-radius: 0;
        margin-bottom: 0;
    }
}

.flexdatalist-results {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #ddd;
    border-top: none;
    background: #ffffff;
    z-index: 99;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    color: rgba(32, 33, 36, 0.83);
    list-style: none;
    margin: 0;
    padding: 0;
}

.flexdatalist-results li {
    padding: 0 15px;
    font-size: 14px;
    line-height: 35px;
}

.flexdatalist-results li.active {
    background: rgba(36, 79, 156, 0.8);
    color: #fff;
    cursor: pointer;
}

.flexdatalist-results li.group {
    background: #f8f8f8;
    color: #666;
    padding: 0 8px;
}

.flexdatalist-results li .group-name {
    font-weight: 700;
}

.flexdatalist-results li .group-item-count {
    font-size: 85%;
    color: #777;
    display: inline-block;
    padding-left: 10px;
}

.flexdatalist-multiple:after, .flexdatalist-multiple:before {
    content: '';
    display: block;
    clear: both;
}

.flexdatalist-multiple {
    width: 100%;
    margin: 0;
    padding: 0 0 0 10px;
    list-style: none;
    text-align: left;
    cursor: text;
}

.flexdatalist-multiple li {
    display: inline-block;
    position: relative;
    margin: 5px 5px 5px 0;
    float: left;
}

.flexdatalist-multiple li.input-container, .flexdatalist-multiple li.input-container input {
    border: none;
    width: 280px;
    height: auto;
    padding: 0;
    line-height: 25px;
}

.flexdatalist-multiple li.value {
    display: inline-block;
    padding: 2px 25px 2px 5px;
    background: #efefef;
    border-radius: 3px;
}

.flexdatalist-multiple li.toggle {
    cursor: pointer;
    transition: opacity ease-in-out .3s;
}

.flexdatalist-multiple li.toggle.disabled {
    text-decoration: line-through;
    opacity: .8;
}

.flexdatalist-multiple li.value span.fdl-remove {
    font-weight: 700;
    padding: 0 5px;
    font-size: 20px;
    line-height: 25px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    opacity: .7;
}

.flexdatalist-multiple li.value span.fdl-remove:hover {
    opacity: 1;
}

a:focus {
    outline: none !important;
}

.modal-backdrop {
    background-color: #202124;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    -webkit-font-smoothing: antialiased !important;
    background-color: #ffffff;
}

@font-face {
    font-family: 'bebas_neuebold';
    src: url('../fonts/bebasneue/bebasneue_bold-webfont.eot');
    src: url('../fonts/bebasneue/bebasneue_bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/bebasneue/bebasneue_bold-webfont.woff2') format('woff2'), url('../fonts/bebasneue/bebasneue_bold-webfont.woff') format('woff'), url('../fonts/bebasneue/bebasneue_bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin-bottom: 330px;
}

.footerrow {
    display: table;
    width: 100%;
    height: 240px;
}

.footerrow .footercol {
    display: table-cell;
    height: 100%;
    padding: 20px 15px;
    vertical-align: middle;
    text-align: left;
}

.footerrow .footercol h2,
.footerrow .footercol .h2 {
    margin:0;
    font-size: 1.7em;
    font-family: 'bebas_neuebold';
    color: #ffffff;
    display: block;
}

.footerrow .footercol .sitemap {
    margin-top: 30px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
}

.footerrow .footercol .sitemap .subheader {
    color: #ffffff;
    font-weight: 600;
    opacity: .5;
    padding: 0 10px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    font-size: 10px;
}

.footerrow .footercol a {
    display: block;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    padding: 5px 10px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.footerrow .footercol .sitemap a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footerrow .footercol .sitemap a:active {
    background-color: rgba(255, 255, 255, 0.15);
}

.footerrow .footercol:first-child {
    padding-right: 80px;
}

.footerrow .footercol:last-child {
    width: 10%;
    text-align: center;
}

footer {
    z-index: 100;
    height: 240px;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.83);
    text-align: center;
    background: #132951;
}

footer p {
    margin-bottom: 5px;
}

footer a {
    text-decoration: none !important;
}

footer .devlogo {
    position: relative;
    display: inline-block;
    padding: 5px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    transition: all 0.15s ease-in-out;
}

footer .devlogo:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

footer .devlogo:after {
    content: 'создание и продвижение сайтов';
    position: absolute;
    left: 60px;
    bottom: 5px;
    color: #ffffff;
    font-family: 'Arial';
    font-size: 13px;
    white-space: nowrap;
    line-height: 13px;
}

.index {
    margin: 0;
}

.index .mapsection {
    max-height: 80vh;
    min-height: 600px;
}

.index footer {
    background-color: rgba(15, 33, 65, 0.3);
}

.mappage {
    margin: 0;
}

.mappage footer {
    background-color: rgba(15, 33, 65, 0.3);
}

.modal .close {
    position: relative;
    z-index: 10;
}

.modal ::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(0, 0, 0, 0);
}

.modal ::-webkit-scrollbar:hover {
    background-color: rgba(0, 0, 0, 0);
}

.modal ::-webkit-scrollbar-thumb:vertical {
    background: rgba(0, 0, 0, 0.2);
}

.modal ::-webkit-scrollbar-thumb:vertical:active {
    background: rgba(0, 0, 0, 0.4);
}

.modal .modal-title {
    font-family: 'bebas_neuebold';
    font-size: 25px;
    font-weight: 500;
    color: rgba(32, 33, 36, 0.83);
    position: relative;
    top: -2px;
}

.modal .modal-body {
    border: 1px solid #f8f8f8;
    border-left: 0;
    border-right: 0;
    margin-top: 15px;
    overflow: auto;
    padding: 0;
}

.modal .modal-footer {
    padding: 15px 25px !important;
}

.modal .modal-footer .btn {
    outline: none !important;
    font-family: 'Open Sans', sans-serif;
}

.modal .car {
    display: table;
    table-layout: fixed;
    cursor: pointer;
    position: relative;
}

.modal .car p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.modal .car .price {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    opacity: .8;
}

.modal .car .price strong {
    position: relative;
    margin-left: 5px;
}

.modal .car .price .fa {
    font-size: 10px !important;
    margin-left: 3px;
}

.modal .car:active {
    background-color: rgba(32, 33, 36, 0.05);
}

.modal .car.active {
    background-color: rgba(32, 33, 36, 0.02);
}

.modal .car.active .imgcontainer:before {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    content: '';
    background-color: #244F9C;
}

.modal .car .imgcontainer {
    display: table-cell;
    position: relative;
    width: 30%;
    vertical-align: middle;
    padding: 15px 15px 15px 25px;
}

.modal .car .imgcontainer img {
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    width: 100%;
    -webkit-border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    border-radius: 50%;
    background-clip: padding-box;
}

.modal .car .textcontainer {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
    padding: 15px;
}

.modal .car .textcontainer h3 {
    font-size: 35px;
    font-family: 'bebas_neuebold';
}

.modal .car+.car {
    border-top: 1px solid #f8f8f8;
}

.navbar {
    height: 60px;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none !important;
    z-index: 1000;
    transition: background-color 0.15s ease-in-out;
}

.navbar .fa {
    display: none;
}

.navbar .navbar-brand .issvg {
    height: 100%;
}

.navbar .navbar-brand .issvg svg {
    height: 100%;
    width: 120px;
}

.navbar .navbar-brand .issvg svg * {
    fill: #ffffff;
}

.navbar .open {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav>li>a {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: rgba(0, 0, 0, 0.188235) 0 10px 30px;
}

.navbar .navtel {
    font-family: 'bebas_neuebold' !important;
    font-size: 35px;
    margin-top: 4px;
    margin-bottom: 4px;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.188235) 0 10px 30px;
}

@media (min-width:992px) {
    .navbar .dropdown-menu a {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .catalogfilter .info-block {
        margin-top: 20px;
    }
}

.navnotop {
    background-color: #ffffff !important;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    transition: all 0.15s ease-in-out;
}

.navnotop * {
    text-shadow: none !important;
}

.navnotop .navbar-brand {
    color: #244F9C !important;
    transition: all 0.15s ease-in-out;
}

.navnotop .navbar-brand * {
    fill: #244F9C !important;
}

.navnotop .navbar-brand:hover {
    background-color: rgba(32, 33, 36, 0.2);
}

.navnotop .navtel {
    color: #244F9C;
    transition: all 0.15s ease-in-out;
}

.navnotop .navbar-nav>li>a {
    color: rgba(32, 33, 36, 0.83) !important;
    transition: color 0.15s ease-in-out;
}

.navnotop .navbar-nav>li>a:hover {
    transition: all 0s ease-in-out;
    background-color: rgba(36, 79, 156, 0.2);
}

.navnotop .open {
    background-color: rgba(36, 79, 156, 0.08);
}

.navnotop .navbar-nav>.active {
    background-color: rgba(36, 79, 156, 0.5);
}

.navnotop .navbar-nav>.active>a {
    color: #ffffff !important;
}

.navbar .dropdown-menu .active>a, .navbar.navbar-default .dropdown-menu .active>a {
    background-color: rgba(36, 79, 156, 0.5) !important;
    color: rgba(255, 255, 255, 0.84);
}

.logo {
    position: relative;
    z-index: 5;
    padding-top: 180px;
    padding-bottom: 230px;
    text-align: center;
}

.logo .issvg {
    min-height: 206px;
}

.logo img {
    display: none;
}

.logo svg {
    display: inline-block;
    height: 100%;
    width: auto;
    text-shadow: rgba(0, 0, 0, 0.188235) 0 10px 30px;
    height: 200px;
}

.logo svg * {
    fill: #ffffff;
}

.logo svg .st1 {
    fill: #244F9C;
}

.videocontainer {
    position: relative;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
}

.videocontainer .covervid-video {
    min-width: 1680px;
}

.videocontainer .covervid-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.videocontainer .covervid-wrapper .covervid-video {
    display: none;
}

.videocontainer .overflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background: #ffffff;
    background: radial-gradient(ellipse at center, #ffffff 0, #003da4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#003da4', GradientType=1);
}

.videocontainer .stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    z-index: 5;
    background-position: center center;
    background-image: linear-gradient(90deg, white 30%, transparent 30%);
    background-size: 1.5%;
    background-color: transparent;
}

.videocontainer .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    background-color: #202124;
}

.quickrent {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
    position: relative;
    z-index: 15;
    margin-top: -120px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

.quickrent .btn {
    outline: none !important;
}

.quickrent .bottomrow {
    padding: 25px;
    background-color: #f8f8f8;
    padding-bottom: 20px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-bottomright: 3px;
    -moz-background-clip: padding;
    border-bottom-right-radius: 3px;
    background-clip: padding-box;
}

.quickrent .bottomrow .text {
    font-size: 16px;
    color: rgba(32, 33, 36, 0.5);
    font-family: 'Open Sans', sans-serif;
    vertical-align: middle;
    padding-top: 6px;
    position: relative;
    display: block;
}

.quickrent .bottomrow .text strong {
    font-weight: 500;
    font-family: 'bebas_neuebold';
    font-size: 35px;
    position: absolute;
    top: -8px;
    margin-left: 10px;
    white-space: nowrap;
}

.quickrent .bottomrow .text .fa {
    font-size: 18px;
    font-weight: 800;
    margin-left: 4px;
    position: relative;
    top: -2px;
}

.quickrent .toprow {
    padding: 20px 25px;
    position: relative;
    z-index: 16;
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

.quickrent #selectauto {
    cursor: pointer;
}

.quickrent .form-group {
    padding: 0;
    margin: 0;
}

.quickrent .btn {
    margin: 0;
    height: 38px;
    font-size: 14px;
    vertical-align: middle;
    box-shadow: none !important;
}

.quickrent a.btn .fa {
    position: relative;
    top: 3px;
}

.quickrent .btn-group {
    margin: 0;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
}

.quickrent .btn-group .btn+.btn {
    border-left: 1px solid #ddd;
}

.quickrent .form-control {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ddd;
    padding-left: 10px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    margin: 0;
    background-color: #ffffff;
    background-image: linear-gradient(#244F9C, #244F9C), linear-gradient(transparent, transparent) !important;
}

.datepicker {
    background-color: #fff;
    -webkit-border-radius: 2px !important;
    -webkit-background-clip: padding-box !important;
    -moz-border-radius: 2px !important;
    -moz-background-clip: padding !important;
    border-radius: 2px !important;
    background-clip: padding-box !important;
    padding: 10px;
    min-height: 250px;
    border: 0;
    min-width: 261px;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .15s;
    animation-duration: .15s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.datepicker table tr td, .datepicker table tr th {
    text-align: center;
    width: auto;
    height: auto;
    border-radius: 2px;
    border: none;
}

.datepicker .table-condensed>tbody>tr>td, .datepicker .table-condensed>tbody>tr>th, .datepicker .table-condensed>tfoot>tr>td, .datepicker .table-condensed>tfoot>tr>th, .datepicker .table-condensed>thead>tr>td, .datepicker .table-condensed>thead>tr>th {
    padding: 4px;
}

.datepicker {
    text-align: center;
    margin-top: 0;
}

.datepicker .new, .datepicker .old {
    opacity: .5;
}

.datepicker tr:nth-child(2) th {
    padding: 15px;
}

.datepicker .table-condensed {
    width: 100%;
}

.datepicker th {
    font-weight: 400;
}

.datepicker .glyphicon-arrow-left, .datepicker .glyphicon-arrow-right {
    font-family: 'FontAwesome';
}

.datepicker .glyphicon-arrow-left:before {
    content: "\f053";
}

.datepicker .glyphicon-arrow-right:before {
    content: "\f054";
}

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 2px;
}

.datepicker-orient-top {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .15s;
    animation-duration: .15s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 101 !important;
}

.carrow {
    display: table;
    margin: 50px auto auto;
    width: 100%;
    table-layout: fixed;
    margin-left: -15px;
    margin-right: -15px;
}

.index .carrow {
    margin-bottom: 0;
    margin-top: 0;
}

.index .carrow > .column {
    padding-top: 0;
    padding-bottom: 0;
}

.carrow .column {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
}

.carrow .maintext {
    padding: 2em 0;
}

.carrow .maintext h1,
.carrow .maintext .h1 {
    font-family: 'bebas_neuebold';
    font-size: 2em;
    margin-bottom: 0.7em;
}

.carrow .maintext h2,
.carrow .maintext .h2 {
    font-family: 'bebas_neuebold';
    font-size: 1.7em;
    margin-bottom: 0.5em;
}

.carrow .maintext p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.carrow .maintext p+p {
    margin-top: 8px;
}

.carrow .imgcontainer {
    width: 100%;
    position: relative;
}

.carrow .imgcontainer img {
    max-width: 100%;
}

.feedback {
    margin-bottom: 50px;
    box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
    text-align: center;
    margin-top: 50px;
    padding: 25px 0;
    background-image: url("../video/video.png");
    background-position: center center;
    background-size: cover;
    position: relative;
}

.feedback .getfeedback {
    margin: auto;
    z-index: 100;
    color: #ffffff !important;
    outline: none !important;
    font-family: 'Open Sans', sans-serif;
}

.feedback .arrow {
    position: absolute;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    opacity: .5;
    cursor: pointer;
    z-index: 100;
}

.feedback .arrow:hover {
    opacity: .9;
}

.feedback .arrow:active {
    opacity: 1;
}

.feedback .arrow.arrowleft {
    left: 0;
}

.feedback .arrow.arrowright {
    right: 0;
}

.feedback .slider {
    position: relative;
    z-index: 10;
    background: none;
}

.feedback .slider .slick-dots {
    position: absolute;
    text-align: center;
    width: 100%;
    list-style: none;
    bottom: 15px;
}

.feedback .slider .slick-dots li {
    display: inline-block;
    opacity: .2;
}

.feedback .slider .slick-dots li button {
    font-size: 0;
    display: block;
    border: 0;
    background-color: #ffffff;
    width: 15px;
    height: 15px;
    padding: 0;
    -webkit-border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    border-radius: 50%;
    background-clip: padding-box;
}

.feedback .slider .slick-dots li+li {
    margin-left: 10px;
}

.feedback .slider .slick-dots .slick-active {
    opacity: .83;
}

.feedback .slider .slide {
    padding: 20px 50px 50px;
}

.feedback .slider .slide .slidecontainer {
    padding: 25px;
    width: 80%;
    max-width: 700px;
    margin: auto;
    position: relative;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

.feedback .slider .slide .slidecontainer .imgcontainer {
    position: relative;
    width: 150px;
    margin: auto auto 15px;
}

.feedback .slider .slide .slidecontainer .textcontainer {
    text-align: center;
}

.feedback .slider .slide .slidecontainer .textcontainer h2 {
    font-size: 35px;
    color: #ffffff;
    font-family: 'bebas_neuebold';
}

.feedback .slider .slide .slidecontainer .textcontainer p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    text-align: justify;
    font-size: 16px;
    color: #ffffff;
}

.feedback .slider .slide .slidecontainer .textcontainer .stars {
    padding: 5px 0;
}

#modalFeedback .star .fa, .feedback .slider .slide .slidecontainer .textcontainer .stars .fa {
    color: orange;
}

.feedback .slider .slide .slidecontainer .textcontainer .quot {
    padding: 35px 35px 35px 40px;
    position: relative;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

.feedback .slider .slide .slidecontainer .textcontainer .quot:before {
    position: absolute;
    left: 10px;
    top: 5px;
    font-size: 20px;
    content: "\f10d";
    opacity: .5;
    font-family: FontAwesome;
    color: #ffffff;
}

.feedback .slider .slide .slidecontainer .textcontainer .quot:after {
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 20px;
    opacity: .5;
    content: "\f10e";
    font-family: FontAwesome;
    color: #ffffff;
}

.feedback .slider .slide .slidecontainer img {
    width: 100%;
    border: 2px solid #ffffff;
    box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
    -webkit-border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    border-radius: 50%;
    background-clip: padding-box;
}

.feedback .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    background-color: #202124;
}

.bestcars {
    margin-top: 100px;
    text-align: center;
}

.bestcars h3 {
    font-size: 35px;
    color: #202124;
    font-family: 'bebas_neuebold';
    text-align: center;
    margin-bottom: 50px;
}

.bestcars .item {
    position: relative;
    margin-bottom: 40px;
}

.bestcars .item .btn {
    margin: 0;
    padding: 0;
    background: none !important;
}

.bestcars .item a {
    display: block;
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

.bestcars .item .textcontainer {
    opacity: 0;
    display: block;
    position: absolute;
    text-align: center;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    background: rgba(32, 33, 36, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bestcars .item .textcontainer:before {
    display: inline-block;
    content: '';
    height: 100%;
    vertical-align: middle;
}

.bestcars .item .textcontainer .text {
    color: #ffffff;
    font-size: 35px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'bebas_neuebold';
}

.bestcars .item .imgcontainer {
    width: 100%;
    padding: 10px;
}

.bestcars .item .imgcontainer img {
    border: 1px solid #ddd;
    width: 100%;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

.bestcars .item a {
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

.bestcars .item a:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    transition: all 0.15s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.188235) 0 10px 30px, rgba(0, 0, 0, 0.227451) 0 6px 10px;
}

.bestcars .item a:hover .textcontainer {
    opacity: .8;
    transition: all 0.05s ease-in-out;
}

.bestcars .item a:hover img {
    opacity: .8;
}

.bestcars .showmore {
    margin-top: 10px;
    border: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
}

.mapsection {
    margin-top: 100px;
    width: 100%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
}

.mapsection #mapscript {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mapsection .overflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    z-index: 15;
    background: #fff;
    background: radial-gradient(ellipse at center, #fff 0, #003da4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#003da4', GradientType=1);
}

.mapsection .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    padding-top: 50px;
    text-align: center;
}

.mapsection .content .btnscontainer {
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 30px;
}

.mapsection .content .gotomap {
    margin-left: 15px;
    margin-right: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.17);
    outline: none !important;
}

.mapsection .content ul {
    list-style: none;
    display: block;
    text-align: center;
}

.mapsection .content ul li {
    font-size: 25px;
    margin: 20px 25px;
    color: #ffffff !important;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.mapsection .content ul li a {
    display: block;
    color: #ffffff !important;
    text-decoration: none;
}

.mapsection .content ul .fa-volume-control-phone {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-size: 80%;
    position: relative;
    top: -3px;
}

.mapsection .content ul li .fa {
    margin-right: 10px;
}

.mapsection .content h2 {
    font-family: 'bebas_neuebold';
    color: #ffffff;
    font-size: 45px;
    text-align: center;
    margin-bottom: 50px;
}

.mapsection .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: 5;
    background-color: #202124;
}

.mapsection>ymaps {
    opacity: 1;
    min-height: 700px;
}

.mapsection .floatbtncontainer {
    height: 0;
    width: 100%;
    position: absolute;
    text-align: center;
    z-index: 100;
    left: 0;
}

.mapsection .showcontacts {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff !important;
    outline: none !important;
    left: 0;
    margin: auto;
    opacity: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius-topright: 0;
    -moz-background-clip: padding;
    border-top-right-radius: 0;
    background-clip: padding-box;
    background: rgba(32, 33, 36, 0.5);
    transition: all 0.35s ease-in-out;
}

.mapsection .showcontacts:hover {
    background: rgba(32, 33, 36, 0.8) !important;
}

.mapsection .showcontacts:focus {
    background: rgba(32, 33, 36, 0.8) !important;
}

.mapsection .tomin {
    max-height: 100%;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.mapsection.collapsed .tomin {
    opacity: 0;
    max-height: 0;
    padding: 0;
}

.mapsection.collapsed .showcontacts {
    opacity: 1;
}

.mappage .mapsection {
    margin-top: 0;
    padding-top: 60px;
    height: 100vh;
    min-height: 830px;
    width: 100%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
}

.mappage .mapsection .sectioncontainer {
    padding-top: 60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mappage .mapsection .overflow {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 60px;
    width: 100%;
    height: 100%;
    opacity: .2;
    z-index: 15;
    background: #fff;
    background: radial-gradient(ellipse at center, #fff 0, #003da4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#003da4', GradientType=1);
}

.mappage .mapsection .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    padding-top: 110px;
    text-align: center;
}

.mappage .mapsection .content .btnscontainer {
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 30px;
}

.mappage .mapsection .content .gotomap {
    margin-left: 15px;
    margin-right: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    border: 2px solid #ffffff;
    outline: none !important;
}

.mappage .mapsection .content ul {
    list-style: none;
    display: block;
    text-align: center;
}

.mappage .mapsection .content ul li {
    font-size: 25px;
    margin: 20px 25px;
    color: #ffffff !important;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.mappage .mapsection .content ul li a {
    display: block;
    color: #ffffff !important;
    text-decoration: none;
}

.mappage .mapsection .content ul .fa-volume-control-phone {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-size: 80%;
    position: relative;
    top: -3px;
}

.mappage .mapsection .content ul li .fa {
    margin-right: 10px;
}

.mappage .mapsection .content h2 {
    font-family: 'bebas_neuebold';
    color: #ffffff;
    font-size: 45px;
    text-align: center;
    margin-bottom: 50px;
}

.mappage .mapsection .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: 5;
    background-color: #202124;
}

.mappage .mapsection>ymaps {
    opacity: 1;
    min-height: 700px;
}

.mappage .mapsection .floatbtncontainer {
    height: 0;
    width: 100%;
    position: absolute;
    text-align: center;
    z-index: 100;
    left: 0;
}

.mappage .mapsection .showcontacts {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff !important;
    outline: none !important;
    left: 0;
    margin: auto;
    opacity: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius-topright: 0;
    -moz-background-clip: padding;
    border-top-right-radius: 0;
    background-clip: padding-box;
    background: rgba(32, 33, 36, 0.5);
    transition: all 0.35s ease-in-out;
}

.mappage .mapsection .showcontacts:hover {
    background: rgba(32, 33, 36, 0.8) !important;
}

.mappage .mapsection .showcontacts:focus {
    background: rgba(32, 33, 36, 0.8) !important;
}

.mappage .mapsection .tomin {
    max-height: 100%;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.mappage .mapsection.collapsed .tomin {
    opacity: 0;
    max-height: 0;
    padding: 0;
}

.mappage .mapsection.collapsed .showcontacts {
    opacity: 1;
}

#modalFeedback form {
    text-align: left;
}

#modalFeedback .modal-body {
    padding: 0 25px;
}

#modalFeedback .modal-body .fileinput {
    cursor: pointer !important;
}

#modalFeedback .modal-body .form-group {
    margin: 0;
    padding: 0;
}

#modalFeedback .modal-body .form-group .control-label {
    color: #BDBDBD !important;
}

#modalFeedback .modal-body .form-group .form-control {
    background-image: linear-gradient(rgba(32, 33, 36, 0.83), rgba(32, 33, 36, 0.83)), linear-gradient(transparent, transparent);
    padding-left: 8px;
    border: 1px solid #ddd;
    margin-top: 5px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

#modalFeedback .modal-body .rating {
    position: relative;
    top: -5px;
    text-align: left;
    display: block;
    unicode-bidi: bidi-override;
    direction: rtl;
    font-size: 20px;
}

#modalFeedback .modal-body .rating>span {
    display: inline-block;
    position: relative;
    width: 1.1em;
    color: #ccc;
}

#modalFeedback .modal-body .rating>*:hover {
    color: transparent;
}

#modalFeedback .modal-body .rating>*:hover:before {
    font-family: FontAwesome;
    content: "\f005";
    position: absolute;
    left: 0;
    color: #E98E47;
}

#modalFeedback .modal-body .rating:not(:hover)>input:checked span {
    color: transparent;
}

#modalFeedback .modal-body .rating:not(:hover)>input:checked span:before {
    font-family: FontAwesome;
    content: "\f005";
    position: absolute;
    font-weight: 100;
    left: 0;
    color: #E98E47;
}

#modalFeedback .modal-body .rating>input {
    margin-left: -1.1em;
    margin-right: 0;
    top: 0;
    width: 1.1em;
    height: 1.1em;
    position: relative;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

#modalFeedback .modal-body .rating a.star {
    font-family: FontAwesome;
    font-weight: 100;
    font-style: normal;
    display: inline-block;
}

#modalFeedback .modal-body .rating a.star:hover {
    text-decoration: none;
}

#modalFeedback .modal-body .rating a.star:hover:before {
    content: "\f005";
    font-weight: 100;
    color: #E98E47;
}

#modalFeedback .modal-body .rating a.star:before {
    content: "\f006";
    font-weight: 100;
    padding-right: 5px;
    color: #ccc;
}

#modalFeedback .modal-body .rating a.star:hover~a.star:before {
    content: "\f005";
    font-weight: 100;
    color: #E98E47;
}

#modalFeedback .modal-body .rating>span {
    display: inline-block;
    position: relative;
    width: 1.1em;
    color: #ccc;
}

#modalFeedback .modal-body .rating>*:hover, #modalFeedback .modal-body .rating>*:hover~span, #modalFeedback .modal-body .rating:not(:hover)>input:checked~span {
    color: transparent;
}

#modalFeedback .modal-body .rating>*:hover~span:before, #modalFeedback .modal-body .rating>*:hover:before, #modalFeedback .modal-body .rating:not(:hover)>input:checked~span:before {
    font-family: FontAwesome;
    content: "\f005";
    position: absolute;
    left: 0;
    color: #E98E47;
}

#modalFeedback .modal-body .rating>input {
    margin-left: -1.5em;
    margin-right: 0;
    top: 3px;
    width: 1.1em;
    height: 1.1em;
    position: relative;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

#modalFeedback .modal-body .ratings a:hover {
    text-decoration: none;
}

.maincontaier {
    margin-top: 120px;
    padding-bottom: 20px;
}

.maincontaier h1,
.maincontaier .h1 {
    font-family: 'bebas_neuebold';
    font-size: 1.8em;
    font-weight: 500;
    color: rgba(32, 33, 36, 0.83);
    position: relative;
    top: -2px;
}

.maincontaier .subline {
    margin-bottom: 5px;
    opacity: .5;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}


.maincontaier .pricepanel {
    width: 250px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    padding: 5px 5px 8px;
}

.maincontaier .pricepanel:before, .maincontaier .pricepanel:after {
    content: " ";
    display: table;
}

.maincontaier .pricepanel:after {
    clear: both;
}

.maincontaier .pricepanel .col-custom {
    float: left;
    width: 50%;
}

.maincontaier .pricepanel .form-group {
    padding: 0;
    margin: 0;
    padding: 0 5px;
}

.maincontaier .pricepanel .form-group .form-control {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ddd;
    padding-left: 10px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    margin: 0;
    background-color: #ffffff;
    background-image: linear-gradient(#244F9C, #244F9C), linear-gradient(transparent, transparent) !important;
}

.maincontaier .pricepanel .form-group .control-label {
    margin-top: 0;
    font-weight: 500;
    outline: none !important;
    font-family: 'Open Sans', sans-serif;
}

.maincontaier .refreshfilter {
    width: 250px;
    margin: 0;
    outline: none !important;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    color: #ffffff !important;
    background-color: rgba(36, 79, 156, 0.8) !important;
}

.maincontaier .refreshfilter:focus {
    background-color: rgba(36, 79, 156, 0.9) !important;
}

.maincontaier .refreshfilter:hover {
    background-color: rgba(36, 79, 156, 0.9) !important;
}

.maincontaier .list {
    width: 250px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
}

.maincontaier .list .listitem {
    margin: 0;
    padding: 0;
    display: block;
    text-align: left;
    padding: 10px 15px;
    position: relative;
    -webkit-border-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0;
    -moz-background-clip: padding;
    border-radius: 0;
    background-clip: padding-box;
    transition: none;
    font-family: 'Open Sans', sans-serif;
    outline: 0;
}

.maincontaier .list .listitem:hover {
    background-color: rgba(36, 79, 156, 0.2) !important;
}

.maincontaier .list .listitem:focus {
    background-color: rgba(36, 79, 156, 0.2) !important;
}

.maincontaier .list .listitem .text:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    content: '';
    opacity: 0;
}

.maincontaier .list .listitem input{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    content: '';
    opacity: 0;
    height: 100%;
}

.maincontaier .list .listitem input+.text:before {
    transition: all 0.15s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
}

.maincontaier .list .listitem input:checked+.text{
    color: #ffffff;
}

.maincontaier .list .listitem input:checked+.text:before {
    transition: all 0.55s ease-in-out;
    background-color: rgba(36, 79, 156, 0.8);
    opacity: 1;
    z-index: -1;
}

.carslist .item {
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
}

.carslist .item .btnscontainer {
    background-color: rgba(32, 33, 36, 0.03);
    padding: 15px;
}

.carslist .item+.item {
    margin-top: 50px;
}

.carslist .item .btn-style, .btn-style {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    border: 1px solid transparent;
    outline: none !important;
    color: #ffffff !important;
    background-color: orange !important;
    transition: all 0.15s ease-in-out;
}

.carslist .item .btn-style:hover, .btn-style:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
    background-color: #e69500;
}

.carslist .item .btn-style:focus, .btn-style:focus {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
    background-color: #e69500;
}

.carslist .item .btn-style:active, .btn-style:active {
    transition: all 0s ease-in-out;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    background-color: #cc8400;
}


.rentdays {
    height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rentdays .fa {
    background-color: rgba(36, 79, 156, 0.15);
    height: 30px;
    width: 30px;
    color: rgba(32, 33, 36, 0.5);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding-top: 8px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rentdays .fa:hover {
    transition: all 0.15s ease-in-out;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

.rentdays .fa:active {
    transition: all 0s ease-in-out;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    background-color: rgba(36, 79, 156, 0.2);
}

.rentdays span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 20px;
    min-width: 30px;
}

.rentdays input {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 20px;
    width: 30px;
    height: 30px;
    border: 0;
    margin: 0;
    background: none;
}

.rentdays input[type="number"]::-webkit-inner-spin-button, .rentdays input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.carslist .item .rentdays input[type="number"] {
    -moz-appearance: textfield;
}

.carslist .car {
    width: 100%;
    margin: 0;
}

.carslist .car .imgcontainer {
     /*width: 250px;
    padding: 15px; */
}

.carslist .car .name-car-container{
    display: table-row;
}

.carslist .car .name-car-container > .name-car-container-cell{
    display: table-cell;
    padding: 10px 35px;
}

.carslist .car .name-car-container > .name-car-container-cell h1 {
    margin:0;
    line-height: 1.5em;
    padding: 0;
}

.carslist .car .imgcontainer .images {
    width: 100%;
    position: relative;
}

.carslist .car .imgcontainer .images:before, .carslist .car .imgcontainer .images:after {
    content: " ";
    display: table;
}

.carslist .car .imgcontainer .images:after {
    clear: both;
}

.carslist .car .imgcontainer a {
    display: block;
    float: left;
    width: 20%;
    padding: 0 5px 5px;
}

.carslist .car .imgcontainer a{
    width: 50%;
}

.carslist.view-catalog .car .imgcontainer a{
    width: 20%;
}

.carslist .car .imgcontainer a.big-img {
    float:none;
}

.carslist .car .imgcontainer a:first-child,
.carslist .car .imgcontainer a.big-img  {
    width: 100%;
    position: relative;
    padding: 0 5px 10px;
}
.carslist .car .imgcontainer a:hover img {
    transition: all 0.15s ease-in-out;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

.carslist .car .imgcontainer a img:not(.big-img) {
    width: 100%;
    height: auto;
    border: 1px solid #f8f8f8;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}


.table-params-car .issvg > svg{
    width: 30px;
    height: 30px;
}


@media screen and (max-width: 529px) {

    .carslist .car .imgcontainer a,
    .carslist .car .imgcontainer a.big-img{
        width: 20%;
        float: left;
    }

    .carslist.view-catalog .car .imgcontainer a{
        width: 33%;
    }

    .carslist .car .imgcontainer a:first-child
    {
        width: 100%;
        float:none;
    }
    .carslist.car .name-car-container > .name-car-container-cell {
        padding: 10px 20px;
    }

    .table-params-car {
        font-size: 1em !important;
        overflow: hidden;
        word-break: break-word;
    }
    .table-params-car .issvg > svg{
        width: 18px;
        height: 18px;
    }
}

@media screen and (min-width: 530px) and (max-width: 767px) {
    .carslist .car .imgcontainer a,
    .carslist .car .imgcontainer a.big-img{
        width: 20%;
        float: left;
    }
    .carslist .car .imgcontainer a:first-child,
    .carslist .car .imgcontainer a.big-img
    {
        width: 33%;
    }

    .table-params-car {
        font-size: 0.9em !important;
    }
    .table-params-car .issvg > svg{
        width: 25px;
        height: 25px;
    }
}




@media screen and (max-width:767px) {
    .carslist .car-model {
        text-align: center;
    }
}

@media screen and (min-width:768px) {
    .carslist.carview .car .imgcontainer {
        margin-top: -3em;
    }
    .carslist .car .imgcontainer {
        margin-top: -2em;
    }
}

.carslist .car .textcontainer {
    /* padding: 15px; */
}

.carslist .h1,
.carslist h1 {
    font-family: 'bebas_neuebold';
    font-size: 2em;
    font-weight: 500;
    color: rgba(32, 33, 36, 0.83);
}

.carslist .car .textcontainer .desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    opacity: .8;
}

.carslist .car .textcontainer .stattext {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    text-align: center;
    border: 1px solid #eee;
    padding: 7px;
    min-height: 37px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.carslist .car .textcontainer .rentprice {
    margin-top: 10px;
    /* border: 1px solid #eee; */
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.carslist .car .textcontainer .rentprice:before, .carslist .car .textcontainer .rentprice:after {
    content: " ";
    display: table;
}

.carslist .car .textcontainer .rentprice:after {
    clear: both;
}

.carslist .car .textcontainer .rentprice .price {
    float: left;
    text-align: center;
    width: 25%;
    padding: 25px 5px;
    position: relative;
}


@media (max-width:1100px) and (min-width:990px)  {
    .carslist .car .textcontainer .rentprice .price {
        width: 33%;
    }
}

.carslist .price .cost {
    font-size: 2em;
    font-family: 'bebas_neuebold';
    position: relative;
    top: -2px;
}

.carslist .price .cost .fa {
    font-size: 12px;
    position: relative;
    top: -1px;
}

.carslist .price .info-price {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.8em;
    text-transform: uppercase;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.carslist .price .info-price.lbottom {
    top: auto;
    bottom: 15px !important;
}

.carslist .car .textcontainer .stats {
    padding: 5px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-top: 10px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.carslist .car .textcontainer .stats:before, .carslist .car .textcontainer .stats:after {
    content: " ";
    display: table;
}

.carslist .car .textcontainer .stats:after {
    clear: both;
}

.carslist .car .textcontainer .stats img {
    display: none;
}

.carslist .car .textcontainer .stats .stat {
    float: left;
    width: 11.11111111%;
    margin-bottom: 5px;
    text-align: center;
}

.carslist .car .textcontainer .stats .stat .issvg {
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 5px;
    -moz-background-clip: padding;
    border-radius: 5px;
    background-clip: padding-box;
    position: relative;
    width: 100%;
    height: 34px;
    width: 34px;
    margin: auto;
    padding: 5px;
    display: inline-block;
    top: 0;
}

.carslist .car .textcontainer .stats .stat .issvg svg {
    width: 100%;
    height: 100%;
}

.carslist .car .textcontainer .stats .stat:hover .issvg {
    background-color: rgba(36, 79, 156, 0.35);
}

.carslist .car .textcontainer .stats .stat span {
    display: none;
}

#getrentauto .modal-body {
    padding: 15px;
    overflow: auto;
}

#getrentauto .modal-body .modalpanel {
    border: 1px solid #f8f8f8;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    padding-bottom: 10px;
    background-color: rgba(32, 33, 36, 0.01);
}

#getrentauto .modal-body .modalpanel h5 {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    display: block;
    width: 100%;
    padding: 15px;
    background-color: rgba(32, 33, 36, 0.01);
    margin-bottom: 10px;
}

#getrentauto .modal-body .modalpanel .form-group {
    margin: 0;
    padding: 0 15px 8px;
}

#getrentauto .modal-body .modalpanel .form-control {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ddd;
    padding-left: 10px;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
    margin: 0;
    background-color: #ffffff;
    background-image: linear-gradient(#244F9C, #244F9C), linear-gradient(transparent, transparent) !important;
}

#getrentauto .modal-body .modalpanel .control-label {
    margin: 0;
    color: #000000 !important;
}

#getrentauto .modal-body .rentprice:before, #getrentauto .modal-body .rentprice:after {
    content: " ";
    display: table;
}

#getrentauto .modal-body .rentprice:after {
    clear: both;
}

#getrentauto .modal-body .rentprice .price {
    float: left;
    text-align: center;
    width: 33.33333333%;
    padding: 25px 5px 0;
    position: relative;
}

#getrentauto .modal-body .rentprice .price span {
    font-size: 30px;
    font-family: 'bebas_neuebold';
    position: relative;
    top: -2px;
}

#getrentauto .modal-body .rentprice .price span .fa {
    font-size: 12px;
    position: relative;
    top: -1px;
}

#getrentauto .modal-body .rentprice .price label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

#getrentauto .modal-body .rentprice .price label.lbottom {
    top: auto;
    bottom: 15px !important;
}

#getrentauto .modal-body .modalpanel+.modalpanel {
    margin-top: 20px;
}

#getrentauto .modal-body .extrapenel {
    padding-bottom: 0;
}

#getrentauto .modal-body .extrapenel h5 {
    margin-bottom: 0;
}

#getrentauto .modal-body .extra {
    padding: 10px 15px;
}

#getrentauto .modal-body .extra .rentprice {
    margin-top: 10px;
    border: 1px solid #eee;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

#getrentauto .modal-body .extra .rentprice:before, #getrentauto .modal-body .extra .rentprice:after {
    content: " ";
    display: table;
}

#getrentauto .modal-body .extra .rentprice:after {
    clear: both;
}

#getrentauto .modal-body .extra .rentprice .price {
    float: left;
    text-align: center;
    width: 25%;
    padding: 25px 5px;
    position: relative;
}

#getrentauto .modal-body .extra .rentprice .price span {
    font-size: 30px;
    font-family: 'bebas_neuebold';
    position: relative;
    top: -2px;
}

#getrentauto .modal-body .extra .rentprice .price span .fa {
    font-size: 12px;
    position: relative;
    top: -1px;
}

#getrentauto .modal-body .extra .rentprice .price label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

#getrentauto .modal-body .extra .rentprice .price label.lbottom {
    top: auto;
    bottom: 15px !important;
}

#getrentauto .modal-body .extra .popover, #getrentauto .modal-body .extra .tooltip-inner {
    color: rgba(255, 255, 255, 0.83);
    line-height: 1em;
    border: none;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

#getrentauto .modal-body .extra .tooltip-inner {
    max-width: none;
    width: 200px !important;
    margin-left: -170px;
    font-family: 'Open Sans', sans-serif;
    padding-top: 8px;
    color: #fff;
    text-align: left;
    background: rgba(32, 33, 36, 0.8);
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

#getrentauto .modal-body .extra .tooltip-inner strong::after {
    display: block !important;
    content: '';
    padding: 2px;
}

#getrentauto .modal-body .extra+.extra {
    border-top: 1px solid #eee;
}

#getrentauto .modal-body .extra h3 {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

#getrentauto .modal-body .extra .infocontainer {
    float: right;
}

#getrentauto .modal-body .extra .infocontainer .fa {
    background-color: rgba(32, 33, 36, 0.05);
    height: 30px;
    width: 30px;
    color: rgba(32, 33, 36, 0.5);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding-top: 9px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#getrentauto .modal-body .extra .infocontainer .fa:hover {
    transition: all 0.15s ease-in-out;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

#getrentauto .modal-body .extra .infocontainer .fa:active {
    transition: all 0s ease-in-out;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    background-color: rgba(32, 33, 36, 0.1);
}

#getrentauto .modal-body .extra .counter {
    height: 30px;
    margin-right: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
}

#getrentauto .modal-body .extra .counter .fa {
    background-color: rgba(32, 33, 36, 0.05);
    height: 30px;
    width: 30px;
    color: rgba(32, 33, 36, 0.5);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding-top: 8px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#getrentauto .modal-body .extra .counter .fa:hover {
    transition: all 0.15s ease-in-out;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

#getrentauto .modal-body .extra .counter .fa:active {
    transition: all 0s ease-in-out;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    background-color: rgba(32, 33, 36, 0.1);
}

#getrentauto .modal-body .extra .counter span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 20px;
    min-width: 30px;
}

#getrentauto .modal-body .extra .counter input {
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    padding: 0 5px;
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 20px;
    width: 30px;
    border: 0;
    margin: 0;
    background: none;
}

#getrentauto .modal-body .extra .counter input[type="number"]::-webkit-inner-spin-button, #getrentauto .modal-body .extra .counter input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#getrentauto .modal-body .extra .counter input[type="number"] {
    -moz-appearance: textfield;
}

.discounts h1,
.discounts .h1 {
    font-size: 2em;
}

.discounts .item {
    display: table;
    margin-top: 25px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
}

.discounts .item.disabled {
    box-shadow: none !important;
    opacity: .8;
    background-color: rgba(32, 33, 36, 0.03);
}

.discounts .item.disabled .dates {
    display: inline-block;
}

.discounts .item.disabled .dates:after {
    content: '( Акция завершена )';
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    margin-left: 8px;
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: #244F9C 0px 0px 30px;
    }
    100% {
        box-shadow: #648fdb 0px 10px 30px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: #4f80d7 0px 0px 8px;
    }
    50% {
        box-shadow: rgba(36, 79, 156, 0.6) 0px 0px 25px;
    }
    100% {
        box-shadow: #4f80d7 0px 0px 8px;
    }
}

.discounts .item .textcontainer {
    display: table-cell;
    vertical-align: top;
    padding: 15px;
}

.discounts .item .textcontainer h2,
.discounts .item .textcontainer h2 {
    font-family: 'bebas_neuebold';
    font-size: 1.7em;
}

.discounts .item .textcontainer .dates {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    padding: 2px 0 5px;
    opacity: .5;
}

.discounts .item .textcontainer .desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    padding-bottom: 8px;
    font-size: 14px;
}

.discounts .item .textcontainer .btn {
    background-color: rgba(32, 33, 36, 0.1);
}

.discounts .item .textcontainer .btn:hover {
    background-color: rgba(32, 33, 36, 0.2) !important;
}

.discounts .item .textcontainer .btn:focus {
    background-color: rgba(32, 33, 36, 0.2) !important;
}

.discounts .item .imgcontainer {
    display: table-cell;
    vertical-align: top;
    width: 230px;
    padding: 15px;
}

.discounts .item .imgcontainer img {
    width: 100%;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.discounts .item.selected {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.discounts .item.selected .btn {
    background-color: rgba(36, 79, 156, 0.4);
    color: #ffffff;
}

.discounts .item.selected .btn:hover {
    background-color: rgba(36, 79, 156, 0.5) !important;
}

.discounts .item.selected .btn:focus {
    background-color: rgba(36, 79, 156, 0.5) !important;
}

.faqpage h1,
.faqpage .h1 {
    font-size: 2em;
}

.faqpage h2,
.faqpage .h2 {
    font-size: 1.7em;
}

.faqpage .faqform {
    width: auto;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
    padding-top: 0;
}

.faqpage .faqform .btnscontainer {
    text-align: right;
    background-color: rgba(36, 79, 156, 0.05);
    padding: 10px 15px;
    margin: 15px 0 0;
}

.faqpage .faqform .btnscontainer .btn {
    margin: 0;
    background-color: rgba(36, 79, 156, 0.8);
    color: #ffffff;
}

.faqpage .faqform .btnscontainer .btn:hover {
    background-color: rgba(36, 79, 156, 0.9) !important;
}

.faqpage .faqform .btnscontainer .btn:focus {
    background-color: rgba(36, 79, 156, 0.9) !important;
}

.faqpage .faqform .g-recaptcha {
    margin-top: 20px;
}

.faqpage .faqform .form-group {
    margin: 0;
    padding: 0 15px;
    width: 332px;
}

.faqpage .faqform .form-group .control-label {
    color: rgba(32, 33, 36, 0.83) !important;
}

.faqpage .faqform .form-group .form-control {
    background-image: linear-gradient(#244F9C, #244F9C), linear-gradient(transparent, transparent);
    padding-left: 8px;
    border: 1px solid #d3d3d3;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    margin-top: 5px;
    background-color: #f9f9f9;
    -webkit-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 3px;
    -moz-background-clip: padding;
    border-radius: 3px;
    background-clip: padding-box;
}

.answers {
    margin-top: 20px;
}

.answers .question {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    display: block;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
}

.answers .question+.question {
    margin-top: 20px;
}

.answers .question .title {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
    text-transform: none;
    transition: all 0s ease-in-out;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer !important;
    padding-right: 60px;
}

.answers .question .title .fa {
    position: absolute;
    width: 20px;
    display: inline-block;
    right: 20px;
    font-size: 20px;
    color: orange;
}

.answers .panel-heading:hover {
    background-color: rgba(36, 82, 162, 1) !important;
}

.answers .question .title:focus {
    background-color: rgba(36, 82, 162, 0.75) !important;
}

.answers .question .answ {
    display: none;
    border-top: 1px solid #eee;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

.answers .question .answ .answcontainer {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    padding: 0 15px;
}

.answers .question .answ p {
    padding-bottom: 8px;
}

.answers .question .answ p:last-child {
    padding-bottom: 0;
}

.answers .question.opened {
    display: block !important;
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}

.answers .question.opened .title {
    background-color: rgba(36, 79, 156, 0.06);
}

.answers .question.opened .title .fa:before {
    content: "\f0d8" !important;
}

.answers .question.opened+.question {
    margin-top: 30px;
}

.answers .question.opened .answ .answcontainer {
    opacity: 1;
    padding: 15px;
}

.scrolltotop {
    position: fixed;
    bottom: 30px;
    padding: 0;
    margin: 0;
    display: none;
    outline: none !important;
    right: 30px;
    height: 50px;
    width: 50px;
    -webkit-border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    border-radius: 50%;
    background-clip: padding-box;
    background-color: #244F9C !important;
    z-index: 100;
    cursor: pointer;
    color: #ffffff !important;
    text-align: center;
    opacity: .2;
}

.scrolltotop:hover {
    opacity: .8;
    box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
    transition: opacity 0.15s ease-in-out;
}

.scrolltotop .fa {
    position: relative;
    top: -2px;
    font-size: 30px;
}

.flags {
    margin-left: 8px !important;
    margin-right: 0;
    margin-top: 9px !important;
}

.flags a {
    display: block;
    padding: 0;
}

.flags a .ripple-container {
    display: none !important;
}

.flags a:hover img {
    transition: all 0.15s ease-in-out;
    opacity: 1;
}

.flags img {
    opacity: .9;
    width: 26px;
    height: auto;
    border: 1px solid #244F9C;
    margin: 0;
    padding: 0;
}

@media (max-width:1199px) {
    .flags {
        margin-top: 4px !important;
    }
    .flags img {
        width: 22px;
    }
    .navbar {
        height: 50px;
    }
    .navbar .navbar-brand .issvg {
        height: 80%;
        position: relative;
        top: 3px;
    }
    .navbar .navbar-brand .issvg svg {
        height: 100%;
        width: 100px;
    }
    .navbar .navtel {
        font-size: 29px;
        margin-top: 5px;
        margin-bottom: 2px;
    }
    .logo {
        padding-top: 120px;
        padding-bottom: 180px;
    }
    .logo .issvg {
        min-height: 162px;
    }
    .logo svg {
        height: 156px;
    }
    .quickrent .bottomrow {
        padding: 10px 25px;
        background-color: #f8f8f8;
        padding-bottom: 20px;
    }
    .quickrent .bottomrow .text {
        margin-top: 10px;
    }
    .quickrent .toprow {
        padding-top: 10px;
    }
    .quickrent .form-group {
        margin-top: 10px;
    }
    .quickrent .btn {
        padding: 5px 8px;
    }
    .quickrent .btn-group {
        margin-top: 10px;
    }
    .carrow {
        margin-top: 20px;
    }
    .mapsection .content .gotomap {
        margin-left: 10px;
        margin-right: 10px;
    }
    .mapsection .content ul li {
        font-size: 18px;
        margin: 15px 20px;
        color: #ffffff !important;
        display: inline-block;
        font-family: 'Open Sans', sans-serif;
    }
    .mapsection .content h2,
    .mapsection .content .h2 {
        font-family: 'bebas_neuebold';
        color: #ffffff;
        font-size: 1.7em;
        text-align: center;
        margin-bottom: 30px;
    }
}

.navbar-right {
    position: relative;
}

@media (max-width:1050px) {
    .flags {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        text-align: center;
    }
    .flags a {
        display: inline-block;
        margin-left: 5px;
        margin-right: 5px;
    }
    body {
        margin-top: 50px !important;
    }
    .index .datepicker {
        margin-top: 51px;
    }
    .navbar {
        background-color: #ffffff !important;
        height: auto;
        position: absolute;
        box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
        transition: all 0.15s ease-in-out;
    }
    .navbar .fa {
        display: inline-block;
        margin-right: 8px;
        width: 20px;
    }
    .navbar .navbar-toggle {
        opacity: 1;
    }
    .navbar .navbar-toggle .icon-bar {
        display: block;
        background-color: transparent !important;
        -webkit-border-radius: 0 !important;
        -webkit-background-clip: padding-box !important;
        -moz-border-radius: 0 !important;
        -moz-background-clip: padding !important;
        border-radius: 0 !important;
        background-clip: padding-box !important;
        height: 0 !important;
        border: 1px solid #244F9C;
        border-top: 2px solid #244F9C;
    }
    .navbar * {
        text-shadow: none !important;
    }
    .navbar .navbar-brand {
        color: #244F9C !important;
        transition: all 0.15s ease-in-out;
    }
    .navbar .navbar-brand * {
        fill: #244F9C !important;
    }
    .navbar .navbar-brand:hover {
        background-color: rgba(32, 33, 36, 0.05);
    }
    .navbar .navtel {
        color: #244F9C !important;
        text-align: center;
        transition: all 0.15s ease-in-out;
    }
    .navbar .navbar-nav>li>a {
        color: rgba(32, 33, 36, 0.83) !important;
        transition: color 0.15s ease-in-out;
        padding: 15px 10px;
    }
    .navbar .navbar-nav>li>a:hover {
        color: rgba(32, 33, 36, 0.83) !important;
        transition: all 0s ease-in-out;
        background-color: rgba(36, 79, 156, 0.05);
    }
    .navbar .open {
        color: rgba(32, 33, 36, 0.83) !important;
        background-color: rgba(36, 79, 156, 0.08);
    }
    .navbar .navbar-nav>.active {
        background-color: rgba(36, 79, 156, 0.05);
    }
    .navbar .navbar-nav>.active>a {
        color: rgba(32, 33, 36, 0.83) !important;
    }
    .logo {
        padding-top: 70px;
        padding-bottom: 180px;
    }
    .quickrent {
        /* margin-bottom: 50px; */
    }
    .quickrent .bottomrow {
        padding: 0 25px;
        background-color: #f8f8f8;
        padding-bottom: 20px;
    }
    .quickrent .bottomrow .text {
        margin-top: 25px;
    }
    .quickrent .toprow {
        padding-top: 2px;
    }
    .quickrent .form-group {
        margin-top: 20px;
    }
    .quickrent .btn {
        padding: 5px 15px;
    }
    .quickrent .btn-group {
        margin-top: 25px;
    }
    .carrow {
        display: block;
        margin: 20px auto auto;
        width: 100%;
        margin: auto;
    }
    .carrow .column {
        width: 100%;
        display: block;
        padding: 0 15px;
    }
    .carrow:nth-child(2) {
        display: table;
    }
    .carrow:nth-child(2) .column:nth-child(1) {
        display: table-footer-group;
    }
    .carrow:nth-child(2) .column:nth-child(2) {
        display: table-header-group;
    }

    .feedback {
        margin-bottom: 50px;
        box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
        text-align: center;
        margin-top: 50px;
        padding: 25px 0;
    }
    .feedback .arrow {
        position: absolute;
        height: 30px;
        top: 50%;
        margin-top: -15px;
        opacity: .5;
        cursor: pointer;
        z-index: 100;
    }
    .feedback .slider .slick-dots {
        position: absolute;
        text-align: center;
        width: 100%;
        list-style: none;
        bottom: 15px;
    }
    .feedback .slider .slick-dots li {
        display: inline-block;
        opacity: .2;
    }
    .feedback .slider .slick-dots li button {
        font-size: 0;
        display: block;
        border: 0;
        background-color: #ffffff;
        width: 10px;
        height: 10px;
        padding: 0;
        -webkit-border-radius: 50%;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 50%;
        -moz-background-clip: padding;
        border-radius: 50%;
        background-clip: padding-box;
    }
    .feedback .slider .slick-dots li+li {
        margin-left: 10px;
    }
    .feedback .slider .slick-dots .slick-active {
        opacity: .83;
    }
    .feedback .slider .slide {
        padding: 20px 10px 10px;
    }
    .feedback .slider .slide .slidecontainer {
        padding: 25px;
        width: 90%;
        max-width: 700px;
        margin: auto;
        position: relative;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
    }
    .feedback .slider .slide .slidecontainer .imgcontainer {
        position: relative;
        width: 100px;
        margin: auto auto 15px;
    }
    .feedback .slider .slide .slidecontainer .textcontainer {
        text-align: center;
    }
    .feedback .slider .slide .slidecontainer .textcontainer p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
        text-align: justify;
        font-size: 16px;
        color: #ffffff;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .stars {
        padding: 5px 0;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .stars .fa {
        color: orange;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .quot {
        padding: 35px 35px 35px 40px;
        position: relative;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .quot:before {
        position: absolute;
        left: 10px;
        top: 5px;
        font-size: 20px;
        content: "\f10d";
        opacity: .5;
        font-family: FontAwesome;
        color: #ffffff;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .quot:after {
        position: absolute;
        right: 10px;
        bottom: 5px;
        font-size: 20px;
        opacity: .5;
        content: "\f10e";
        font-family: FontAwesome;
        color: #ffffff;
    }
    .feedback .slider .slide .slidecontainer img {
        width: 100%;
        border: 2px solid #ffffff;
        box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
        -webkit-border-radius: 50%;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 50%;
        -moz-background-clip: padding;
        border-radius: 50%;
        background-clip: padding-box;
    }
    .feedback .shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .4;
        background-color: #202124;
    }
    .bestcars {
        margin-top: 100px;
        text-align: center;
    }
    .bestcars h2,
    .bestcars .h2 {
        font-size: 1.7em;
        color: #202124;
        font-family: 'bebas_neuebold';
        text-align: center;
        margin-bottom: 50px;
    }
    .bestcars .item {
        position: relative;
        margin-bottom: 40px;
    }
    .bestcars .item .btn {
        margin: 0;
        padding: 0;
        background: none !important;
    }
    .bestcars .item a {
        display: block;
        box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
    }
    .bestcars .item .textcontainer {
        opacity: 0;
        display: block;
        position: absolute;
        text-align: center;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
        background: rgba(32, 33, 36, 0.6);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .bestcars .item .textcontainer:before {
        display: inline-block;
        content: '';
        height: 100%;
        vertical-align: middle;
    }
    .bestcars .item .textcontainer .text {
        color: #ffffff;
        font-size: 35px;
        display: inline-block;
        vertical-align: middle;
        font-family: 'bebas_neuebold';
    }
    .bestcars .item .imgcontainer {
        width: 100%;
        padding: 10px;
    }
    .bestcars .item .imgcontainer img {
        border: 1px solid #ddd;
        width: 100%;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
    }
    .bestcars .item a {
        text-decoration: none;
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
    }
    .bestcars .item a:hover {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px);
        transition: all 0.15s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.188235) 0 10px 30px, rgba(0, 0, 0, 0.227451) 0 6px 10px;
    }
    .bestcars .item a:hover .textcontainer {
        opacity: .8;
        transition: all 0.05s ease-in-out;
    }
    .bestcars .item a:hover img {
        opacity: .8;
    }
    .bestcars .showmore {
        margin-top: 10px;
        border: 1px solid #ddd;
        font-family: 'Open Sans', sans-serif;
    }
    body {
        margin-bottom: 0 !important;
    }
    .scrolltotop {
        display: none !important;
    }
    .modal-body {
        height: auto !important;
    }
    #selectautomodal h3 {
        font-size: 20px !important;
    }
    .mapsection {
        height: auto;
        min-height: 450px !important;
        max-height: none !important;
    }
    .mapsection .content {
        position: relative;
        padding-bottom: 50px;
    }
    footer {
        position: relative;
        bottom: auto;
        height: auto;
        background-color: #0f2141 !important;
    }
    footer .footerrow {
        display: block;
        height: auto;
    }
    footer .footerrow .footercol {
        width: 100% !important;
        display: block;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    footer .footerrow .footercol h2 {
        display: none;
    }
    .catalogfilter {
        margin-bottom: 50px;
    }
    .catalogfilter .list {
        width: 100%;
    }
    .catalogfilter .pricepanel {
        width: 100%;
    }
    .catalogfilter .refreshfilter {
        width: 100%;
    }
    .maincontaier {
        margin-top: 20px;
    }
    .faqform {
        display: block !important;
    }
    .faqform .form-group {
        display: inline-block;
        width: 49.7% !important;
    }
    .faqform .form-group:nth-child(3) {
        display: block;
        width: auto !important;
    }
    .faqform .form-group.text-center {
        display: block;
    }
}

@media (max-width:767px) {
    .mappage .mapsection {
        height: auto;
        padding-top: 0 !important;
    }
    .mappage .mapsection .content {
        position: relative;
        padding-top: 50px;
    }
    .mappage .mapsection .content li {
        font-size: 16px !important;
    }
    .faqform {
        display: block !important;
    }
    .faqform .form-group {
        display: block;
        width: auto !important;
    }
    .faqform .form-group:nth-child(3) {
        display: block;
    }
    .faqform .form-group.text-center {
        display: block;
    }
    .discounts .item {
        display: block;
    }
    .discounts .item .imgcontainer {
        display: block;
        text-align: center;
        width: auto;
    }
    .discounts .item .imgcontainer img {
        max-width: 250px;
    }
    .discounts .item .textcontainer {
        display: block;
    }
    #getrentauto h4 {
        font-size: 20px;
    }
    #getrentauto h5 {
        font-size: 14px !important;
    }
    #getrentauto .modal-body {
        padding: 10px;
        max-height: none !important;
    }
    #getrentauto .modal-body .extra {
        position: relative;
    }
    #getrentauto .modal-body .extra h3 {
        display: block;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    #getrentauto .modal-body .extra .infocontainer {
        float: none;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    #getrentauto .modal-body .rentprice .price {
        width: 50%;
    }
    #getrentauto .modal-footer {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .rentdays {
        margin-bottom: 15px;
    }
    .carslist .item .btnscontainer .text-right {
        text-align: left;
    }
    .carslist .car .imgcontainer {
        display: block;
    }
    .carslist .car .textcontainer {
        display: block;
    }
    .carslist .car .textcontainer .stat {
        width: 16.66666667% !important;
    }
    .carslist .car .rentprice .price {
        width: 50% !important;
    }
    #selectautomodal .imgcontainer {
        vertical-align: top;
        width: 15%;
        padding-left: 10px;
        padding-right: 0;
    }
    .subheader {
        margin-top: 10px;
    }
    .carrow .column {
        padding: 0;
    }
    .mapsection .gotomap {
        padding-left: 8px;
        padding-right: 8px;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .bottomrow .text-right {
        text-align: left;
    }
    .feedback .arrow {
        display: none !important;
    }
    .feedback .slider {
        position: relative;
        z-index: 10;
        background: none;
    }
    .feedback .slider .slide {
        padding: 0;
    }
    .feedback .slider .slide .slidecontainer {
        padding: 25px 0;
        width: 100%;
        max-width: 700px;
        margin: auto;
        position: relative;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
    }
    .feedback .slider .slide .slidecontainer .imgcontainer {
        position: relative;
        width: 150px;
        margin: auto auto 15px;
    }
    .feedback .slider .slide .slidecontainer .textcontainer {
        text-align: center;
    }
    .feedback .slider .slide .slidecontainer .textcontainer h2 {
        font-size: 35px;
        color: #ffffff;
        font-family: 'bebas_neuebold';
    }
    .feedback .slider .slide .slidecontainer .textcontainer p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
        text-align: left;
        font-size: 16px;
        color: #ffffff;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .quot {
        padding: 25px 25px 25px 30px;
        position: relative;
        -webkit-border-radius: 3px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 3px;
        -moz-background-clip: padding;
        border-radius: 3px;
        background-clip: padding-box;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .quot:before {
        position: absolute;
        left: 10px;
        top: 5px;
        font-size: 10px;
        content: "\f10d";
        opacity: .5;
        font-family: FontAwesome;
        color: #ffffff;
    }
    .feedback .slider .slide .slidecontainer .textcontainer .quot:after {
        position: absolute;
        right: 10px;
        bottom: 5px;
        font-size: 10px;
        opacity: .5;
        content: "\f10e";
        font-family: FontAwesome;
        color: #ffffff;
    }
    .feedback .slider .slide .slidecontainer img {
        width: 70%;
        margin: auto;
        border: 2px solid #ffffff;
        box-shadow: rgba(0, 0, 0, 0.156863) 0 3px 10px, rgba(0, 0, 0, 0.227451) 0 3px 10px;
        -webkit-border-radius: 50%;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 50%;
        -moz-background-clip: padding;
        border-radius: 50%;
        background-clip: padding-box;
    }
}
