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

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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 {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

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

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

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

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

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.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)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.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)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.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)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.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)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

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

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

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

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

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

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

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

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

.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) 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(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) 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(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

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

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

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

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

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms
}

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

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important
    }
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: 'FontAwesome';
    src: url(../font/fontawesome-webfont.eot?5812046746463451922);
    src: url(../font/fontawesome-webfont.eot?5812046746463451922) format("embedded-opentype"), url(../font/fontawesome-webfont.woff2?5812046746463451922) format("woff2"), url(../font/fontawesome-webfont.woff?5812046746463451922) format("woff"), url(../font/fontawesome-webfont.ttf?5812046746463451922) format("truetype"), url(../font/fontawesome-webfont.svg?5812046746463451922) format("svg");
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99995;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80)
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99996;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 99997
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 99998
}

.mfp-preloader a {
    color: #CCC
}

.mfp-preloader a:hover {
    color: #FFF
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

.mfp-preloader {
    width: 62px;
    height: 62px;
    background: url(//cdn.shopify.com/s/files/1/0045/5268/7690/t/3/assets/preloader.gif?5812046746463451922) no-repeat center center #222;
    background-size: 32px 32px;
    margin: 0 auto;
    font-size: 0
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 99999;
    -webkit-box-shadow: none;
    box-shadow: none
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 38px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    font-family: 'FontAwesome';
    font-size: 48px;
    color: #ccc
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    content: "\f104"
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-b {
    content: "\f105"
}

.mfp-arrow-right {
    right: 0
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

.flip-clock-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden
}

.flip-clock-wrapper a {
    cursor: pointer;
    text-decoration: none;
    color: #ccc
}

.flip-clock-wrapper a:hover {
    color: #fff
}

.flip-clock-wrapper ul {
    list-style: none
}

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
    content: " ";
    display: table
}

.flip-clock-wrapper.clearfix:after {
    clear: both
}

.flip-clock-wrapper.clearfix {
    *zoom: 1
}

.flip-clock-wrapper {
    font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
    -webkit-user-select: none
}

.flip-clock-meridium {
    background: none !important;
    box-shadow: 0 0 0 !important;
    font-size: 36px !important
}

.flip-clock-meridium a {
    color: #313333
}

.flip-clock-wrapper {
    text-align: center;
    position: relative;
    width: 100%;
    margin: 1em
}

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
    content: " ";
    display: table
}

.flip-clock-wrapper:after {
    clear: both
}

.flip-clock-wrapper ul {
    position: relative;
    float: left;
    margin: 5px;
    width: 60px;
    height: 90px;
    font-size: 80px;
    font-weight: bold;
    line-height: 87px;
    border-radius: 6px;
    background: #000
}

.flip-clock-wrapper ul li {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 87px;
    text-decoration: none !important
}

.flip-clock-wrapper ul li:first-child {
    z-index: 2
}

.flip-clock-wrapper ul li a {
    display: block;
    height: 100%;
    -webkit-perspective: 200px;
    -moz-perspective: 200px;
    perspective: 200px;
    margin: 0 !important;
    overflow: visible !important;
    cursor: default !important
}

.flip-clock-wrapper ul li a div {
    z-index: 1;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    font-size: 80px;
    overflow: hidden;
    outline: 1px solid transparent
}

.flip-clock-wrapper ul li a div .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2
}

.flip-clock-wrapper ul li a div.up {
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    top: 0
}

.flip-clock-wrapper ul li a div.up:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 3px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4)
}

.flip-clock-wrapper ul li a div.down {
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
    bottom: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.flip-clock-wrapper ul li a div div.inn {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 200%;
    color: #ccc;
    text-shadow: 0 1px 2px #000;
    text-align: center;
    background-color: #333;
    border-radius: 6px;
    font-size: 70px
}

.flip-clock-wrapper ul li a div.up div.inn {
    top: 0
}

.flip-clock-wrapper ul li a div.down div.inn {
    bottom: 0
}

.flip-clock-wrapper ul.play li.flip-clock-before {
    z-index: 3
}

.flip-clock-wrapper .flip {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7)
}

.flip-clock-wrapper ul.play li.flip-clock-active {
    -webkit-animation: asd 0.01s 0.49s linear both;
    -moz-animation: asd 0.01s 0.49s linear both;
    animation: asd 0.01s 0.49s linear both;
    z-index: 5
}

.flip-clock-divider {
    float: left;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 100px
}

.flip-clock-divider:first-child {
    width: 0
}

.flip-clock-dot {
    display: block;
    background: #323434;
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    left: 5px
}

.flip-clock-divider .flip-clock-label {
    position: absolute;
    top: -1.5em;
    right: -86px;
    color: black;
    text-shadow: none
}

.flip-clock-divider.minutes .flip-clock-label {
    right: -88px
}

.flip-clock-divider.seconds .flip-clock-label {
    right: -91px
}

.flip-clock-dot.top {
    top: 30px
}

.flip-clock-dot.bottom {
    bottom: 30px
}

@-webkit-keyframes asd {
    0% {
        z-index: 2
    }
    100% {
        z-index: 4
    }
}

@-moz-keyframes asd {
    0% {
        z-index: 2
    }
    100% {
        z-index: 4
    }
}

@-o-keyframes asd {
    0% {
        z-index: 2
    }
    100% {
        z-index: 4
    }
}

@keyframes asd {
    0% {
        z-index: 2
    }
    100% {
        z-index: 4
    }
}

.flip-clock-wrapper ul.play li.flip-clock-active .down {
    z-index: 2;
    -webkit-animation: turn 0.5s 0.5s linear both;
    -moz-animation: turn 0.5s 0.5s linear both;
    animation: turn 0.5s 0.5s linear both
}

@-webkit-keyframes turn {
    0% {
        -webkit-transform: rotateX(90deg)
    }
    100% {
        -webkit-transform: rotateX(0deg)
    }
}

@-moz-keyframes turn {
    0% {
        -moz-transform: rotateX(90deg)
    }
    100% {
        -moz-transform: rotateX(0deg)
    }
}

@-o-keyframes turn {
    0% {
        -o-transform: rotateX(90deg)
    }
    100% {
        -o-transform: rotateX(0deg)
    }
}

@keyframes turn {
    0% {
        transform: rotateX(90deg)
    }
    100% {
        transform: rotateX(0deg)
    }
}

.flip-clock-wrapper ul.play li.flip-clock-before .up {
    z-index: 2;
    -webkit-animation: turn2 0.5s linear both;
    -moz-animation: turn2 0.5s linear both;
    animation: turn2 0.5s linear both
}

@-webkit-keyframes turn2 {
    0% {
        -webkit-transform: rotateX(0deg)
    }
    100% {
        -webkit-transform: rotateX(-90deg)
    }
}

@-moz-keyframes turn2 {
    0% {
        -moz-transform: rotateX(0deg)
    }
    100% {
        -moz-transform: rotateX(-90deg)
    }
}

@-o-keyframes turn2 {
    0% {
        -o-transform: rotateX(0deg)
    }
    100% {
        -o-transform: rotateX(-90deg)
    }
}

@keyframes turn2 {
    0% {
        transform: rotateX(0deg)
    }
    100% {
        transform: rotateX(-90deg)
    }
}

.flip-clock-wrapper ul li.flip-clock-active {
    z-index: 3
}

.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, #000));
    background: linear, top, rgba(0, 0, 0, 0.1) 0%, #000 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, #000 100%;
    -webkit-animation: show 0.5s linear both;
    -moz-animation: show 0.5s linear both;
    animation: show 0.5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, #000));
    background: linear, top, rgba(0, 0, 0, 0.1) 0%, #000 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, #000 100%;
    -webkit-animation: hide 0.5s 0.3s linear both;
    -moz-animation: hide 0.5s 0.3s linear both;
    animation: hide 0.5s 0.3s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
    background: -moz-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background: linear, top, #000 0%, rgba(0, 0, 0, 0.1) 100%;
    background: -o-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -ms-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.1) 100%);
    background: linear, to bottom, #000 0%, rgba(0, 0, 0, 0.1) 100%;
    -webkit-animation: show 0.5s linear both;
    -moz-animation: show 0.5s linear both;
    animation: show 0.5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
    background: -moz-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background: linear, top, #000 0%, rgba(0, 0, 0, 0.1) 100%;
    background: -o-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -ms-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.1) 100%);
    background: linear, to bottom, #000 0%, rgba(0, 0, 0, 0.1) 100%;
    -webkit-animation: hide 0.5s 0.3s linear both;
    -moz-animation: hide 0.5s 0.3s linear both;
    animation: hide 0.5s 0.2s linear both
}

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

@-moz-keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-o-keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

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

@-moz-keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-o-keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes hide {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}


/*!
*  1.1. Reset
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
canvas,
main {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

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

a {
    text-decoration: none
}


/*!
*  1.2. Variables
*/

#live_metrics .stock span,
#live_metrics .sales span {
    padding: 0 3px
}

.flashLabelPrimary {
    -webkit-transition: flashLabelPrimary 2s ease-out;
    -moz-transition: flashLabelPrimary 2s ease-out;
    -o-transition: flashLabelPrimary 2s ease-out;
    transition: flashLabelPrimary 2s ease-out;
    animation: flashLabelPrimary 2s ease-out;
    display: inline-block
}

@keyframes flashLabelPrimary {
    50% {
        background-color: #0a578f;
        color: #fff;
        border-radius: 5px
    }
}

.flashBlackToPrimary {
    -webkit-transition: flashBlackToPrimary 1s ease-out;
    -moz-transition: flashBlackToPrimary 1s ease-out;
    -o-transition: flashBlackToPrimary 1s ease-out;
    transition: flashBlackToPrimary 1s ease-out;
    animation: flashBlackToPrimary 1s ease-out
}

@keyframes flashBlackToPrimary {
    0% {
        color: #343434
    }
    50% {
        color: #0a578f
    }
    100% {
        color: #343434
    }
}

.weglot-container {
    display: none !important
}

.video-section {
    background-color: #f5f5f5
}

.video-section .main-video {
    margin: 0;
    padding: 40px 0;
    height: 100%
}

.video-section .main-video .home-section-title {
    margin: 0 20px 60px 20px
}

.video-section .main-video .video-overlay {
    display: block;
    background: transparent !important;
    width: 100%
}

.video-section .main-video .video-overlay:hover {
    background: transparent !important
}

.video-section .main-video .video-overlay .video-button {
    top: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 100px 0 0 -40px
}

.video-section .main-video .video-overlay .video-button svg {
    top: 0;
    position: static;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: auto
}

.video-section .main-video .video-overlay .video-button svg path {
    fill: #cb1d1d
}


/*!
*  1.3. Mixins
*/

a,
.nav-bar li .site-nav__link,
.nav-bar li .btn__account a,
svg,
.btn,
.video-overlay,
.flex-control-nav li a,
.jumpstart-accordion h3,
.jumpstart-accordion .h3,
.article,
.article__title {
    -webkit-transition: color 60ms linear, background-color 60ms linear, fill 60ms linear, 60ms opacity linear;
    transition: color 60ms linear, background-color 60ms linear, fill 60ms linear, 60ms opacity linear
}

.home-section-title:after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #0a578f;
    margin-top: 25px
}

.text-center .home-section-title:after {
    margin-left: auto;
    margin-right: auto
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}


/*!
*  1.4. Grid
*/

.grid-margins {
    margin-top: -80px !important
}

.grid-margins>.grid__item {
    margin-top: 80px
}

@media screen and (max-width: 767px) {
    .grid-margins {
        margin-top: -65px !important
    }
    .grid-margins>.grid__item {
        margin-top: 65px
    }
}

@media screen and (max-width: 480px) {
    .grid-margins {
        margin-top: -50px !important
    }
    .grid-margins>.grid__item {
        margin-top: 50px
    }
}

.grid,
.grid--rev,
.grid--full,
.grid-uniform {
    *zoom: 1
}

.grid:before,
.grid--rev:before,
.grid--full:before,
.grid:after,
.grid--rev:after,
.grid--full:after,
.grid-uniform:before,
.grid-uniform:after {
    content: " ";
    display: table
}

.grid:after,
.grid--rev:after,
.grid--full:after,
.grid-uniform:after {
    clear: both
}

.grid__item.clear {
    clear: both
}

.grid,
.grid--rev,
.grid--full,
.grid-uniform {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -8%
}

.grid.small-gutter,
.small-gutter.grid--rev,
.small-gutter.grid--full,
.grid-uniform.small-gutter {
    margin-left: -4.5%
}

.grid__item {
    box-sizing: border-box;
    float: left;
    min-height: 1px;
    padding-left: 8%;
    vertical-align: top;
    width: 100%
}

.small-gutter .grid__item {
    padding-left: 4.5%
}

.grid--rev {
    direction: rtl;
    text-align: left
}

.grid--rev>.grid__item {
    direction: ltr;
    text-align: left;
    float: right
}

.grid--full {
    margin-left: 0
}

.grid--full>.grid__item {
    padding-left: 0
}

.one-whole {
    width: 100%
}

.one-half {
    width: 50%
}

.one-third {
    width: 33.333%
}

.two-thirds {
    width: 66.666%
}

.one-quarter {
    width: 25%
}

.two-quarters {
    width: 50%
}

.three-quarters {
    width: 75%
}

.one-fifth {
    width: 20%
}

.two-fifths {
    width: 40%
}

.three-fifths {
    width: 60%
}

.four-fifths {
    width: 80%
}

.one-sixth {
    width: 16.666%
}

.two-sixths {
    width: 33.333%
}

.three-sixths {
    width: 50%
}

.four-sixths {
    width: 66.666%
}

.five-sixths {
    width: 83.333%
}

.one-eighth {
    width: 12.5%
}

.two-eighths {
    width: 25%
}

.three-eighths {
    width: 37.5%
}

.four-eighths {
    width: 50%
}

.five-eighths {
    width: 62.5%
}

.six-eighths {
    width: 75%
}

.seven-eighths {
    width: 87.5%
}

.one-tenth {
    width: 10%
}

.two-tenths {
    width: 20%
}

.three-tenths {
    width: 30%
}

.four-tenths {
    width: 40%
}

.five-tenths {
    width: 50%
}

.six-tenths {
    width: 60%
}

.seven-tenths {
    width: 70%
}

.eight-tenths {
    width: 80%
}

.nine-tenths {
    width: 90%
}

.one-twelfth {
    width: 8.333%
}

.two-twelfths {
    width: 16.666%
}

.three-twelfths {
    width: 25%
}

.four-twelfths {
    width: 33.333%
}

.five-twelfths {
    width: 41.666%
}

.six-twelfths {
    width: 50%
}

.seven-twelfths {
    width: 58.333%
}

.eight-twelfths {
    width: 66.666%
}

.nine-twelfths {
    width: 75%
}

.ten-twelfths {
    width: 83.333%
}

.eleven-twelfths {
    width: 91.666%
}

.show {
    display: block !important
}

.hide {
    display: none !important
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.left {
    float: left !important
}

.right {
    float: right !important
}

.center {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important
}

@media only screen and (max-width: 480px) {
    .small--one-whole {
        width: 100%
    }
    .small--one-half {
        width: 50%
    }
    .small--one-third {
        width: 33.333%
    }
    .small--two-thirds {
        width: 66.666%
    }
    .small--one-quarter {
        width: 25%
    }
    .small--two-quarters {
        width: 50%
    }
    .small--three-quarters {
        width: 75%
    }
    .small--one-fifth {
        width: 20%
    }
    .small--two-fifths {
        width: 40%
    }
    .small--three-fifths {
        width: 60%
    }
    .small--four-fifths {
        width: 80%
    }
    .small--one-sixth {
        width: 16.666%
    }
    .small--two-sixths {
        width: 33.333%
    }
    .small--three-sixths {
        width: 50%
    }
    .small--four-sixths {
        width: 66.666%
    }
    .small--five-sixths {
        width: 83.333%
    }
    .small--one-eighth {
        width: 12.5%
    }
    .small--two-eighths {
        width: 25%
    }
    .small--three-eighths {
        width: 37.5%
    }
    .small--four-eighths {
        width: 50%
    }
    .small--five-eighths {
        width: 62.5%
    }
    .small--six-eighths {
        width: 75%
    }
    .small--seven-eighths {
        width: 87.5%
    }
    .small--one-tenth {
        width: 10%
    }
    .small--two-tenths {
        width: 20%
    }
    .small--three-tenths {
        width: 30%
    }
    .small--four-tenths {
        width: 40%
    }
    .small--five-tenths {
        width: 50%
    }
    .small--six-tenths {
        width: 60%
    }
    .small--seven-tenths {
        width: 70%
    }
    .small--eight-tenths {
        width: 80%
    }
    .small--nine-tenths {
        width: 90%
    }
    .small--one-twelfth {
        width: 8.333%
    }
    .small--two-twelfths {
        width: 16.666%
    }
    .small--three-twelfths {
        width: 25%
    }
    .small--four-twelfths {
        width: 33.333%
    }
    .small--five-twelfths {
        width: 41.666%
    }
    .small--six-twelfths {
        width: 50%
    }
    .small--seven-twelfths {
        width: 58.333%
    }
    .small--eight-twelfths {
        width: 66.666%
    }
    .small--nine-twelfths {
        width: 75%
    }
    .small--ten-twelfths {
        width: 83.333%
    }
    .small--eleven-twelfths {
        width: 91.666%
    }
    .small--show {
        display: block !important
    }
    .small--hide {
        display: none !important
    }
    .small--text-left {
        text-align: left !important
    }
    .small--text-right {
        text-align: right !important
    }
    .small--text-center {
        text-align: center !important
    }
    .small--left {
        float: left !important
    }
    .small--right {
        float: right !important
    }
    .small--center {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important
    }
    .grid-uniform .small--one-half:nth-child(2n+1),
    .grid-uniform .small--one-third:nth-child(3n+1),
    .grid-uniform .small--one-quarter:nth-child(4n+1),
    .grid-uniform .small--one-fifth:nth-child(5n+1),
    .grid-uniform .small--one-sixth:nth-child(6n+1),
    .grid-uniform .small--two-sixths:nth-child(3n+1),
    .grid-uniform .small--three-sixths:nth-child(2n+1),
    .grid-uniform .small--two-eighths:nth-child(4n+1),
    .grid-uniform .small--four-eighths:nth-child(2n+1),
    .grid-uniform .small--five-tenths:nth-child(2n+1),
    .grid-uniform .small--one-twelfth:nth-child(12n+1),
    .grid-uniform .small--two-twelfths:nth-child(6n+1),
    .grid-uniform .small--three-twelfths:nth-child(4n+1),
    .grid-uniform .small--four-twelfths:nth-child(3n+1),
    .grid-uniform .small--six-twelfths:nth-child(2n+1),
    .grid-margins .small--one-half:nth-child(2n+1),
    .grid-margins .small--one-third:nth-child(3n+1),
    .grid-margins .small--one-quarter:nth-child(4n+1),
    .grid-margins .small--one-fifth:nth-child(5n+1),
    .grid-margins .small--one-sixth:nth-child(6n+1),
    .grid-margins .small--two-sixths:nth-child(3n+1),
    .grid-margins .small--three-sixths:nth-child(2n+1),
    .grid-margins .small--two-eighths:nth-child(4n+1),
    .grid-margins .small--four-eighths:nth-child(2n+1),
    .grid-margins .small--five-tenths:nth-child(2n+1),
    .grid-margins .small--one-twelfth:nth-child(12n+1),
    .grid-margins .small--two-twelfths:nth-child(6n+1),
    .grid-margins .small--three-twelfths:nth-child(4n+1),
    .grid-margins .small--four-twelfths:nth-child(3n+1),
    .grid-margins .small--six-twelfths:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .medium--one-whole {
        width: 100%
    }
    .medium--one-half {
        width: 50%
    }
    .medium--one-third {
        width: 33.333%
    }
    .medium--two-thirds {
        width: 66.666%
    }
    .medium--one-quarter {
        width: 25%
    }
    .medium--two-quarters {
        width: 50%
    }
    .medium--three-quarters {
        width: 75%
    }
    .medium--one-fifth {
        width: 20%
    }
    .medium--two-fifths {
        width: 40%
    }
    .medium--three-fifths {
        width: 60%
    }
    .medium--four-fifths {
        width: 80%
    }
    .medium--one-sixth {
        width: 16.666%
    }
    .medium--two-sixths {
        width: 33.333%
    }
    .medium--three-sixths {
        width: 50%
    }
    .medium--four-sixths {
        width: 66.666%
    }
    .medium--five-sixths {
        width: 83.333%
    }
    .medium--one-eighth {
        width: 12.5%
    }
    .medium--two-eighths {
        width: 25%
    }
    .medium--three-eighths {
        width: 37.5%
    }
    .medium--four-eighths {
        width: 50%
    }
    .medium--five-eighths {
        width: 62.5%
    }
    .medium--six-eighths {
        width: 75%
    }
    .medium--seven-eighths {
        width: 87.5%
    }
    .medium--one-tenth {
        width: 10%
    }
    .medium--two-tenths {
        width: 20%
    }
    .medium--three-tenths {
        width: 30%
    }
    .medium--four-tenths {
        width: 40%
    }
    .medium--five-tenths {
        width: 50%
    }
    .medium--six-tenths {
        width: 60%
    }
    .medium--seven-tenths {
        width: 70%
    }
    .medium--eight-tenths {
        width: 80%
    }
    .medium--nine-tenths {
        width: 90%
    }
    .medium--one-twelfth {
        width: 8.333%
    }
    .medium--two-twelfths {
        width: 16.666%
    }
    .medium--three-twelfths {
        width: 25%
    }
    .medium--four-twelfths {
        width: 33.333%
    }
    .medium--five-twelfths {
        width: 41.666%
    }
    .medium--six-twelfths {
        width: 50%
    }
    .medium--seven-twelfths {
        width: 58.333%
    }
    .medium--eight-twelfths {
        width: 66.666%
    }
    .medium--nine-twelfths {
        width: 75%
    }
    .medium--ten-twelfths {
        width: 83.333%
    }
    .medium--eleven-twelfths {
        width: 91.666%
    }
    .medium--show {
        display: block !important
    }
    .medium--hide {
        display: none !important
    }
    .medium--text-left {
        text-align: left !important
    }
    .medium--text-right {
        text-align: right !important
    }
    .medium--text-center {
        text-align: center !important
    }
    .medium--left {
        float: left !important
    }
    .medium--right {
        float: right !important
    }
    .medium--center {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important
    }
    .grid-uniform .medium--one-half:nth-child(2n+1),
    .grid-uniform .medium--one-third:nth-child(3n+1),
    .grid-uniform .medium--one-quarter:nth-child(4n+1),
    .grid-uniform .medium--one-fifth:nth-child(5n+1),
    .grid-uniform .medium--one-sixth:nth-child(6n+1),
    .grid-uniform .medium--two-sixths:nth-child(3n+1),
    .grid-uniform .medium--three-sixths:nth-child(2n+1),
    .grid-uniform .medium--two-eighths:nth-child(4n+1),
    .grid-uniform .medium--four-eighths:nth-child(2n+1),
    .grid-uniform .medium--five-tenths:nth-child(2n+1),
    .grid-uniform .medium--one-twelfth:nth-child(12n+1),
    .grid-uniform .medium--two-twelfths:nth-child(6n+1),
    .grid-uniform .medium--three-twelfths:nth-child(4n+1),
    .grid-uniform .medium--four-twelfths:nth-child(3n+1),
    .grid-uniform .medium--six-twelfths:nth-child(2n+1),
    .grid-margins .medium--one-half:nth-child(2n+1),
    .grid-margins .medium--one-third:nth-child(3n+1),
    .grid-margins .medium--one-quarter:nth-child(4n+1),
    .grid-margins .medium--one-fifth:nth-child(5n+1),
    .grid-margins .medium--one-sixth:nth-child(6n+1),
    .grid-margins .medium--two-sixths:nth-child(3n+1),
    .grid-margins .medium--three-sixths:nth-child(2n+1),
    .grid-margins .medium--two-eighths:nth-child(4n+1),
    .grid-margins .medium--four-eighths:nth-child(2n+1),
    .grid-margins .medium--five-tenths:nth-child(2n+1),
    .grid-margins .medium--one-twelfth:nth-child(12n+1),
    .grid-margins .medium--two-twelfths:nth-child(6n+1),
    .grid-margins .medium--three-twelfths:nth-child(4n+1),
    .grid-margins .medium--four-twelfths:nth-child(3n+1),
    .grid-margins .medium--six-twelfths:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (max-width: 767px) {
    .medium-down--one-whole {
        width: 100%
    }
    .medium-down--one-half {
        width: 50%
    }
    .medium-down--one-third {
        width: 33.333%
    }
    .medium-down--two-thirds {
        width: 66.666%
    }
    .medium-down--one-quarter {
        width: 25%
    }
    .medium-down--two-quarters {
        width: 50%
    }
    .medium-down--three-quarters {
        width: 75%
    }
    .medium-down--one-fifth {
        width: 20%
    }
    .medium-down--two-fifths {
        width: 40%
    }
    .medium-down--three-fifths {
        width: 60%
    }
    .medium-down--four-fifths {
        width: 80%
    }
    .medium-down--one-sixth {
        width: 16.666%
    }
    .medium-down--two-sixths {
        width: 33.333%
    }
    .medium-down--three-sixths {
        width: 50%
    }
    .medium-down--four-sixths {
        width: 66.666%
    }
    .medium-down--five-sixths {
        width: 83.333%
    }
    .medium-down--one-eighth {
        width: 12.5%
    }
    .medium-down--two-eighths {
        width: 25%
    }
    .medium-down--three-eighths {
        width: 37.5%
    }
    .medium-down--four-eighths {
        width: 50%
    }
    .medium-down--five-eighths {
        width: 62.5%
    }
    .medium-down--six-eighths {
        width: 75%
    }
    .medium-down--seven-eighths {
        width: 87.5%
    }
    .medium-down--one-tenth {
        width: 10%
    }
    .medium-down--two-tenths {
        width: 20%
    }
    .medium-down--three-tenths {
        width: 30%
    }
    .medium-down--four-tenths {
        width: 40%
    }
    .medium-down--five-tenths {
        width: 50%
    }
    .medium-down--six-tenths {
        width: 60%
    }
    .medium-down--seven-tenths {
        width: 70%
    }
    .medium-down--eight-tenths {
        width: 80%
    }
    .medium-down--nine-tenths {
        width: 90%
    }
    .medium-down--one-twelfth {
        width: 8.333%
    }
    .medium-down--two-twelfths {
        width: 16.666%
    }
    .medium-down--three-twelfths {
        width: 25%
    }
    .medium-down--four-twelfths {
        width: 33.333%
    }
    .medium-down--five-twelfths {
        width: 41.666%
    }
    .medium-down--six-twelfths {
        width: 50%
    }
    .medium-down--seven-twelfths {
        width: 58.333%
    }
    .medium-down--eight-twelfths {
        width: 66.666%
    }
    .medium-down--nine-twelfths {
        width: 75%
    }
    .medium-down--ten-twelfths {
        width: 83.333%
    }
    .medium-down--eleven-twelfths {
        width: 91.666%
    }
    .medium-down--show {
        display: block !important
    }
    .medium-down--hide {
        display: none !important
    }
    .medium-down--text-left {
        text-align: left !important
    }
    .medium-down--text-right {
        text-align: right !important
    }
    .medium-down--text-center {
        text-align: center !important
    }
    .medium-down--left {
        float: left !important
    }
    .medium-down--right {
        float: right !important
    }
    .medium-down--center {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important
    }
    .grid-uniform .medium-down--one-half:nth-child(2n+1),
    .grid-uniform .medium-down--one-third:nth-child(3n+1),
    .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
    .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
    .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
    .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
    .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
    .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
    .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
    .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
    .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
    .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
    .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
    .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
    .grid-uniform .medium-down--six-twelfths:nth-child(2n+1),
    .grid-margins .medium-down--one-half:nth-child(2n+1),
    .grid-margins .medium-down--one-third:nth-child(3n+1),
    .grid-margins .medium-down--one-quarter:nth-child(4n+1),
    .grid-margins .medium-down--one-fifth:nth-child(5n+1),
    .grid-margins .medium-down--one-sixth:nth-child(6n+1),
    .grid-margins .medium-down--two-sixths:nth-child(3n+1),
    .grid-margins .medium-down--three-sixths:nth-child(2n+1),
    .grid-margins .medium-down--two-eighths:nth-child(4n+1),
    .grid-margins .medium-down--four-eighths:nth-child(2n+1),
    .grid-margins .medium-down--five-tenths:nth-child(2n+1),
    .grid-margins .medium-down--one-twelfth:nth-child(12n+1),
    .grid-margins .medium-down--two-twelfths:nth-child(6n+1),
    .grid-margins .medium-down--three-twelfths:nth-child(4n+1),
    .grid-margins .medium-down--four-twelfths:nth-child(3n+1),
    .grid-margins .medium-down--six-twelfths:nth-child(2n+1) {
        clear: both
    }
}

@media only screen and (min-width: 768px) {
    .large--one-whole {
        width: 100%
    }
    .large--one-half {
        width: 50%
    }
    .large--one-third {
        width: 33.333%
    }
    .large--two-thirds {
        width: 66.666%
    }
    .large--one-quarter {
        width: 25%
    }
    .large--two-quarters {
        width: 50%
    }
    .large--three-quarters {
        width: 75%
    }
    .large--one-fifth {
        width: 20%
    }
    .large--two-fifths {
        width: 40%
    }
    .large--three-fifths {
        width: 60%
    }
    .large--four-fifths {
        width: 80%
    }
    .large--one-sixth {
        width: 16.666%
    }
    .large--two-sixths {
        width: 33.333%
    }
    .large--three-sixths {
        width: 50%
    }
    .large--four-sixths {
        width: 66.666%
    }
    .large--five-sixths {
        width: 83.333%
    }
    .large--one-eighth {
        width: 12.5%
    }
    .large--two-eighths {
        width: 25%
    }
    .large--three-eighths {
        width: 37.5%
    }
    .large--four-eighths {
        width: 50%
    }
    .large--five-eighths {
        width: 62.5%
    }
    .large--six-eighths {
        width: 75%
    }
    .large--seven-eighths {
        width: 87.5%
    }
    .large--one-tenth {
        width: 10%
    }
    .large--two-tenths {
        width: 20%
    }
    .large--three-tenths {
        width: 30%
    }
    .large--four-tenths {
        width: 40%
    }
    .large--five-tenths {
        width: 50%
    }
    .large--six-tenths {
        width: 60%
    }
    .large--seven-tenths {
        width: 70%
    }
    .large--eight-tenths {
        width: 80%
    }
    .large--nine-tenths {
        width: 90%
    }
    .large--one-twelfth {
        width: 8.333%
    }
    .large--two-twelfths {
        width: 16.666%
    }
    .large--three-twelfths {
        width: 25%
    }
    .large--four-twelfths {
        width: 33.333%
    }
    .large--five-twelfths {
        width: 41.666%
    }
    .large--six-twelfths {
        width: 50%
    }
    .large--seven-twelfths {
        width: 58.333%
    }
    .large--eight-twelfths {
        width: 66.666%
    }
    .large--nine-twelfths {
        width: 75%
    }
    .large--ten-twelfths {
        width: 83.333%
    }
    .large--eleven-twelfths {
        width: 91.666%
    }
    .large--show {
        display: block !important
    }
    .large--hide {
        display: none !important
    }
    .large--text-left {
        text-align: left !important
    }
    .large--text-right {
        text-align: right !important
    }
    .large--text-center {
        text-align: center !important
    }
    .large--left {
        float: left !important
    }
    .large--right {
        float: right !important
    }
    .large--center {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important
    }
    .grid-uniform .large--one-half:nth-child(2n+1),
    .grid-uniform .large--one-third:nth-child(3n+1),
    .grid-uniform .large--one-quarter:nth-child(4n+1),
    .grid-uniform .large--one-fifth:nth-child(5n+1),
    .grid-uniform .large--one-sixth:nth-child(6n+1),
    .grid-uniform .large--two-sixths:nth-child(3n+1),
    .grid-uniform .large--three-sixths:nth-child(2n+1),
    .grid-uniform .large--two-eighths:nth-child(4n+1),
    .grid-uniform .large--four-eighths:nth-child(2n+1),
    .grid-uniform .large--five-tenths:nth-child(2n+1),
    .grid-uniform .large--one-twelfth:nth-child(12n+1),
    .grid-uniform .large--two-twelfths:nth-child(6n+1),
    .grid-uniform .large--three-twelfths:nth-child(4n+1),
    .grid-uniform .large--four-twelfths:nth-child(3n+1),
    .grid-uniform .large--six-twelfths:nth-child(2n+1),
    .grid-margins .large--one-half:nth-child(2n+1),
    .grid-margins .large--one-third:nth-child(3n+1),
    .grid-margins .large--one-quarter:nth-child(4n+1),
    .grid-margins .large--one-fifth:nth-child(5n+1),
    .grid-margins .large--one-sixth:nth-child(6n+1),
    .grid-margins .large--two-sixths:nth-child(3n+1),
    .grid-margins .large--three-sixths:nth-child(2n+1),
    .grid-margins .large--two-eighths:nth-child(4n+1),
    .grid-margins .large--four-eighths:nth-child(2n+1),
    .grid-margins .large--five-tenths:nth-child(2n+1),
    .grid-margins .large--one-twelfth:nth-child(12n+1),
    .grid-margins .large--two-twelfths:nth-child(6n+1),
    .grid-margins .large--three-twelfths:nth-child(4n+1),
    .grid-margins .large--four-twelfths:nth-child(3n+1),
    .grid-margins .large--six-twelfths:nth-child(2n+1) {
        clear: both
    }
}

[class*="push--"] {
    position: relative
}

.push--one-whole {
    left: 100%
}

.push--one-half {
    left: 50%
}

.push--one-third {
    left: 33.333%
}

.push--two-thirds {
    left: 66.666%
}

.push--one-quarter {
    left: 25%
}

.push--two-quarters {
    left: 50%
}

.push--three-quarters {
    left: 75%
}

.push--one-fifth {
    left: 20%
}

.push--two-fifths {
    left: 40%
}

.push--three-fifths {
    left: 60%
}

.push--four-fifths {
    left: 80%
}

.push--one-sixth {
    left: 16.666%
}

.push--two-sixths {
    left: 33.333%
}

.push--three-sixths {
    left: 50%
}

.push--four-sixths {
    left: 66.666%
}

.push--five-sixths {
    left: 83.333%
}

.push--one-eighth {
    left: 12.5%
}

.push--two-eighths {
    left: 25%
}

.push--three-eighths {
    left: 37.5%
}

.push--four-eighths {
    left: 50%
}

.push--five-eighths {
    left: 62.5%
}

.push--six-eighths {
    left: 75%
}

.push--seven-eighths {
    left: 87.5%
}

.push--one-tenth {
    left: 10%
}

.push--two-tenths {
    left: 20%
}

.push--three-tenths {
    left: 30%
}

.push--four-tenths {
    left: 40%
}

.push--five-tenths {
    left: 50%
}

.push--six-tenths {
    left: 60%
}

.push--seven-tenths {
    left: 70%
}

.push--eight-tenths {
    left: 80%
}

.push--nine-tenths {
    left: 90%
}

.push--one-twelfth {
    left: 8.333%
}

.push--two-twelfths {
    left: 16.666%
}

.push--three-twelfths {
    left: 25%
}

.push--four-twelfths {
    left: 33.333%
}

.push--five-twelfths {
    left: 41.666%
}

.push--six-twelfths {
    left: 50%
}

.push--seven-twelfths {
    left: 58.333%
}

.push--eight-twelfths {
    left: 66.666%
}

.push--nine-twelfths {
    left: 75%
}

.push--ten-twelfths {
    left: 83.333%
}

.push--eleven-twelfths {
    left: 91.666%
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .push--medium--one-whole {
        left: 100%
    }
    .push--medium--one-half {
        left: 50%
    }
    .push--medium--one-third {
        left: 33.333%
    }
    .push--medium--two-thirds {
        left: 66.666%
    }
    .push--medium--one-quarter {
        left: 25%
    }
    .push--medium--two-quarters {
        left: 50%
    }
    .push--medium--three-quarters {
        left: 75%
    }
    .push--medium--one-fifth {
        left: 20%
    }
    .push--medium--two-fifths {
        left: 40%
    }
    .push--medium--three-fifths {
        left: 60%
    }
    .push--medium--four-fifths {
        left: 80%
    }
    .push--medium--one-sixth {
        left: 16.666%
    }
    .push--medium--two-sixths {
        left: 33.333%
    }
    .push--medium--three-sixths {
        left: 50%
    }
    .push--medium--four-sixths {
        left: 66.666%
    }
    .push--medium--five-sixths {
        left: 83.333%
    }
    .push--medium--one-eighth {
        left: 12.5%
    }
    .push--medium--two-eighths {
        left: 25%
    }
    .push--medium--three-eighths {
        left: 37.5%
    }
    .push--medium--four-eighths {
        left: 50%
    }
    .push--medium--five-eighths {
        left: 62.5%
    }
    .push--medium--six-eighths {
        left: 75%
    }
    .push--medium--seven-eighths {
        left: 87.5%
    }
    .push--medium--one-tenth {
        left: 10%
    }
    .push--medium--two-tenths {
        left: 20%
    }
    .push--medium--three-tenths {
        left: 30%
    }
    .push--medium--four-tenths {
        left: 40%
    }
    .push--medium--five-tenths {
        left: 50%
    }
    .push--medium--six-tenths {
        left: 60%
    }
    .push--medium--seven-tenths {
        left: 70%
    }
    .push--medium--eight-tenths {
        left: 80%
    }
    .push--medium--nine-tenths {
        left: 90%
    }
    .push--medium--one-twelfth {
        left: 8.333%
    }
    .push--medium--two-twelfths {
        left: 16.666%
    }
    .push--medium--three-twelfths {
        left: 25%
    }
    .push--medium--four-twelfths {
        left: 33.333%
    }
    .push--medium--five-twelfths {
        left: 41.666%
    }
    .push--medium--six-twelfths {
        left: 50%
    }
    .push--medium--seven-twelfths {
        left: 58.333%
    }
    .push--medium--eight-twelfths {
        left: 66.666%
    }
    .push--medium--nine-twelfths {
        left: 75%
    }
    .push--medium--ten-twelfths {
        left: 83.333%
    }
    .push--medium--eleven-twelfths {
        left: 91.666%
    }
}

@media only screen and (max-width: 767px) {
    .push--medium-down--one-whole {
        left: 100%
    }
    .push--medium-down--one-half {
        left: 50%
    }
    .push--medium-down--one-third {
        left: 33.333%
    }
    .push--medium-down--two-thirds {
        left: 66.666%
    }
    .push--medium-down--one-quarter {
        left: 25%
    }
    .push--medium-down--two-quarters {
        left: 50%
    }
    .push--medium-down--three-quarters {
        left: 75%
    }
    .push--medium-down--one-fifth {
        left: 20%
    }
    .push--medium-down--two-fifths {
        left: 40%
    }
    .push--medium-down--three-fifths {
        left: 60%
    }
    .push--medium-down--four-fifths {
        left: 80%
    }
    .push--medium-down--one-sixth {
        left: 16.666%
    }
    .push--medium-down--two-sixths {
        left: 33.333%
    }
    .push--medium-down--three-sixths {
        left: 50%
    }
    .push--medium-down--four-sixths {
        left: 66.666%
    }
    .push--medium-down--five-sixths {
        left: 83.333%
    }
    .push--medium-down--one-eighth {
        left: 12.5%
    }
    .push--medium-down--two-eighths {
        left: 25%
    }
    .push--medium-down--three-eighths {
        left: 37.5%
    }
    .push--medium-down--four-eighths {
        left: 50%
    }
    .push--medium-down--five-eighths {
        left: 62.5%
    }
    .push--medium-down--six-eighths {
        left: 75%
    }
    .push--medium-down--seven-eighths {
        left: 87.5%
    }
    .push--medium-down--one-tenth {
        left: 10%
    }
    .push--medium-down--two-tenths {
        left: 20%
    }
    .push--medium-down--three-tenths {
        left: 30%
    }
    .push--medium-down--four-tenths {
        left: 40%
    }
    .push--medium-down--five-tenths {
        left: 50%
    }
    .push--medium-down--six-tenths {
        left: 60%
    }
    .push--medium-down--seven-tenths {
        left: 70%
    }
    .push--medium-down--eight-tenths {
        left: 80%
    }
    .push--medium-down--nine-tenths {
        left: 90%
    }
    .push--medium-down--one-twelfth {
        left: 8.333%
    }
    .push--medium-down--two-twelfths {
        left: 16.666%
    }
    .push--medium-down--three-twelfths {
        left: 25%
    }
    .push--medium-down--four-twelfths {
        left: 33.333%
    }
    .push--medium-down--five-twelfths {
        left: 41.666%
    }
    .push--medium-down--six-twelfths {
        left: 50%
    }
    .push--medium-down--seven-twelfths {
        left: 58.333%
    }
    .push--medium-down--eight-twelfths {
        left: 66.666%
    }
    .push--medium-down--nine-twelfths {
        left: 75%
    }
    .push--medium-down--ten-twelfths {
        left: 83.333%
    }
    .push--medium-down--eleven-twelfths {
        left: 91.666%
    }
}

@media only screen and (min-width: 768px) {
    .push--large--one-whole {
        left: 100%
    }
    .push--large--one-half {
        left: 50%
    }
    .push--large--one-third {
        left: 33.333%
    }
    .push--large--two-thirds {
        left: 66.666%
    }
    .push--large--one-quarter {
        left: 25%
    }
    .push--large--two-quarters {
        left: 50%
    }
    .push--large--three-quarters {
        left: 75%
    }
    .push--large--one-fifth {
        left: 20%
    }
    .push--large--two-fifths {
        left: 40%
    }
    .push--large--three-fifths {
        left: 60%
    }
    .push--large--four-fifths {
        left: 80%
    }
    .push--large--one-sixth {
        left: 16.666%
    }
    .push--large--two-sixths {
        left: 33.333%
    }
    .push--large--three-sixths {
        left: 50%
    }
    .push--large--four-sixths {
        left: 66.666%
    }
    .push--large--five-sixths {
        left: 83.333%
    }
    .push--large--one-eighth {
        left: 12.5%
    }
    .push--large--two-eighths {
        left: 25%
    }
    .push--large--three-eighths {
        left: 37.5%
    }
    .push--large--four-eighths {
        left: 50%
    }
    .push--large--five-eighths {
        left: 62.5%
    }
    .push--large--six-eighths {
        left: 75%
    }
    .push--large--seven-eighths {
        left: 87.5%
    }
    .push--large--one-tenth {
        left: 10%
    }
    .push--large--two-tenths {
        left: 20%
    }
    .push--large--three-tenths {
        left: 30%
    }
    .push--large--four-tenths {
        left: 40%
    }
    .push--large--five-tenths {
        left: 50%
    }
    .push--large--six-tenths {
        left: 60%
    }
    .push--large--seven-tenths {
        left: 70%
    }
    .push--large--eight-tenths {
        left: 80%
    }
    .push--large--nine-tenths {
        left: 90%
    }
    .push--large--one-twelfth {
        left: 8.333%
    }
    .push--large--two-twelfths {
        left: 16.666%
    }
    .push--large--three-twelfths {
        left: 25%
    }
    .push--large--four-twelfths {
        left: 33.333%
    }
    .push--large--five-twelfths {
        left: 41.666%
    }
    .push--large--six-twelfths {
        left: 50%
    }
    .push--large--seven-twelfths {
        left: 58.333%
    }
    .push--large--eight-twelfths {
        left: 66.666%
    }
    .push--large--nine-twelfths {
        left: 75%
    }
    .push--large--ten-twelfths {
        left: 83.333%
    }
    .push--large--eleven-twelfths {
        left: 91.666%
    }
}

[class*="pull--"] {
    position: relative;
    margin-left: -8% !important
}

.pull--one-whole {
    right: 100%
}

.pull--one-half {
    right: 50%
}

.pull--one-third {
    right: 33.333%
}

.pull--two-thirds {
    right: 66.666%
}

.pull--one-quarter {
    right: 25%
}

.pull--two-quarters {
    right: 50%
}

.pull--three-quarters {
    right: 75%
}

.pull--one-fifth {
    right: 20%
}

.pull--two-fifths {
    right: 40%
}

.pull--three-fifths {
    right: 60%
}

.pull--four-fifths {
    right: 80%
}

.pull--one-sixth {
    right: 16.666%
}

.pull--two-sixths {
    right: 33.333%
}

.pull--three-sixths {
    right: 50%
}

.pull--four-sixths {
    right: 66.666%
}

.pull--five-sixths {
    right: 83.333%
}

.pull--one-eighth {
    right: 12.5%
}

.pull--two-eighths {
    right: 25%
}

.pull--three-eighths {
    right: 37.5%
}

.pull--four-eighths {
    right: 50%
}

.pull--five-eighths {
    right: 62.5%
}

.pull--six-eighths {
    right: 75%
}

.pull--seven-eighths {
    right: 87.5%
}

.pull--one-tenth {
    right: 10%
}

.pull--two-tenths {
    right: 20%
}

.pull--three-tenths {
    right: 30%
}

.pull--four-tenths {
    right: 40%
}

.pull--five-tenths {
    right: 50%
}

.pull--six-tenths {
    right: 60%
}

.pull--seven-tenths {
    right: 70%
}

.pull--eight-tenths {
    right: 80%
}

.pull--nine-tenths {
    right: 90%
}

.pull--one-twelfth {
    right: 8.333%
}

.pull--two-twelfths {
    right: 16.666%
}

.pull--three-twelfths {
    right: 25%
}

.pull--four-twelfths {
    right: 33.333%
}

.pull--five-twelfths {
    right: 41.666%
}

.pull--six-twelfths {
    right: 50%
}

.pull--seven-twelfths {
    right: 58.333%
}

.pull--eight-twelfths {
    right: 66.666%
}

.pull--nine-twelfths {
    right: 75%
}

.pull--ten-twelfths {
    right: 83.333%
}

.pull--eleven-twelfths {
    right: 91.666%
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .pull--medium--one-whole {
        right: 100%
    }
    .pull--medium--one-half {
        right: 50%
    }
    .pull--medium--one-third {
        right: 33.333%
    }
    .pull--medium--two-thirds {
        right: 66.666%
    }
    .pull--medium--one-quarter {
        right: 25%
    }
    .pull--medium--two-quarters {
        right: 50%
    }
    .pull--medium--three-quarters {
        right: 75%
    }
    .pull--medium--one-fifth {
        right: 20%
    }
    .pull--medium--two-fifths {
        right: 40%
    }
    .pull--medium--three-fifths {
        right: 60%
    }
    .pull--medium--four-fifths {
        right: 80%
    }
    .pull--medium--one-sixth {
        right: 16.666%
    }
    .pull--medium--two-sixths {
        right: 33.333%
    }
    .pull--medium--three-sixths {
        right: 50%
    }
    .pull--medium--four-sixths {
        right: 66.666%
    }
    .pull--medium--five-sixths {
        right: 83.333%
    }
    .pull--medium--one-eighth {
        right: 12.5%
    }
    .pull--medium--two-eighths {
        right: 25%
    }
    .pull--medium--three-eighths {
        right: 37.5%
    }
    .pull--medium--four-eighths {
        right: 50%
    }
    .pull--medium--five-eighths {
        right: 62.5%
    }
    .pull--medium--six-eighths {
        right: 75%
    }
    .pull--medium--seven-eighths {
        right: 87.5%
    }
    .pull--medium--one-tenth {
        right: 10%
    }
    .pull--medium--two-tenths {
        right: 20%
    }
    .pull--medium--three-tenths {
        right: 30%
    }
    .pull--medium--four-tenths {
        right: 40%
    }
    .pull--medium--five-tenths {
        right: 50%
    }
    .pull--medium--six-tenths {
        right: 60%
    }
    .pull--medium--seven-tenths {
        right: 70%
    }
    .pull--medium--eight-tenths {
        right: 80%
    }
    .pull--medium--nine-tenths {
        right: 90%
    }
    .pull--medium--one-twelfth {
        right: 8.333%
    }
    .pull--medium--two-twelfths {
        right: 16.666%
    }
    .pull--medium--three-twelfths {
        right: 25%
    }
    .pull--medium--four-twelfths {
        right: 33.333%
    }
    .pull--medium--five-twelfths {
        right: 41.666%
    }
    .pull--medium--six-twelfths {
        right: 50%
    }
    .pull--medium--seven-twelfths {
        right: 58.333%
    }
    .pull--medium--eight-twelfths {
        right: 66.666%
    }
    .pull--medium--nine-twelfths {
        right: 75%
    }
    .pull--medium--ten-twelfths {
        right: 83.333%
    }
    .pull--medium--eleven-twelfths {
        right: 91.666%
    }
}

@media only screen and (max-width: 767px) {
    .pull--medium-down--one-whole {
        right: 100%
    }
    .pull--medium-down--one-half {
        right: 50%
    }
    .pull--medium-down--one-third {
        right: 33.333%
    }
    .pull--medium-down--two-thirds {
        right: 66.666%
    }
    .pull--medium-down--one-quarter {
        right: 25%
    }
    .pull--medium-down--two-quarters {
        right: 50%
    }
    .pull--medium-down--three-quarters {
        right: 75%
    }
    .pull--medium-down--one-fifth {
        right: 20%
    }
    .pull--medium-down--two-fifths {
        right: 40%
    }
    .pull--medium-down--three-fifths {
        right: 60%
    }
    .pull--medium-down--four-fifths {
        right: 80%
    }
    .pull--medium-down--one-sixth {
        right: 16.666%
    }
    .pull--medium-down--two-sixths {
        right: 33.333%
    }
    .pull--medium-down--three-sixths {
        right: 50%
    }
    .pull--medium-down--four-sixths {
        right: 66.666%
    }
    .pull--medium-down--five-sixths {
        right: 83.333%
    }
    .pull--medium-down--one-eighth {
        right: 12.5%
    }
    .pull--medium-down--two-eighths {
        right: 25%
    }
    .pull--medium-down--three-eighths {
        right: 37.5%
    }
    .pull--medium-down--four-eighths {
        right: 50%
    }
    .pull--medium-down--five-eighths {
        right: 62.5%
    }
    .pull--medium-down--six-eighths {
        right: 75%
    }
    .pull--medium-down--seven-eighths {
        right: 87.5%
    }
    .pull--medium-down--one-tenth {
        right: 10%
    }
    .pull--medium-down--two-tenths {
        right: 20%
    }
    .pull--medium-down--three-tenths {
        right: 30%
    }
    .pull--medium-down--four-tenths {
        right: 40%
    }
    .pull--medium-down--five-tenths {
        right: 50%
    }
    .pull--medium-down--six-tenths {
        right: 60%
    }
    .pull--medium-down--seven-tenths {
        right: 70%
    }
    .pull--medium-down--eight-tenths {
        right: 80%
    }
    .pull--medium-down--nine-tenths {
        right: 90%
    }
    .pull--medium-down--one-twelfth {
        right: 8.333%
    }
    .pull--medium-down--two-twelfths {
        right: 16.666%
    }
    .pull--medium-down--three-twelfths {
        right: 25%
    }
    .pull--medium-down--four-twelfths {
        right: 33.333%
    }
    .pull--medium-down--five-twelfths {
        right: 41.666%
    }
    .pull--medium-down--six-twelfths {
        right: 50%
    }
    .pull--medium-down--seven-twelfths {
        right: 58.333%
    }
    .pull--medium-down--eight-twelfths {
        right: 66.666%
    }
    .pull--medium-down--nine-twelfths {
        right: 75%
    }
    .pull--medium-down--ten-twelfths {
        right: 83.333%
    }
    .pull--medium-down--eleven-twelfths {
        right: 91.666%
    }
}

@media only screen and (min-width: 768px) {
    .pull--large--one-whole {
        right: 100%
    }
    .pull--large--one-half {
        right: 50%
    }
    .pull--large--one-third {
        right: 33.333%
    }
    .pull--large--two-thirds {
        right: 66.666%
    }
    .pull--large--one-quarter {
        right: 25%
    }
    .pull--large--two-quarters {
        right: 50%
    }
    .pull--large--three-quarters {
        right: 75%
    }
    .pull--large--one-fifth {
        right: 20%
    }
    .pull--large--two-fifths {
        right: 40%
    }
    .pull--large--three-fifths {
        right: 60%
    }
    .pull--large--four-fifths {
        right: 80%
    }
    .pull--large--one-sixth {
        right: 16.666%
    }
    .pull--large--two-sixths {
        right: 33.333%
    }
    .pull--large--three-sixths {
        right: 50%
    }
    .pull--large--four-sixths {
        right: 66.666%
    }
    .pull--large--five-sixths {
        right: 83.333%
    }
    .pull--large--one-eighth {
        right: 12.5%
    }
    .pull--large--two-eighths {
        right: 25%
    }
    .pull--large--three-eighths {
        right: 37.5%
    }
    .pull--large--four-eighths {
        right: 50%
    }
    .pull--large--five-eighths {
        right: 62.5%
    }
    .pull--large--six-eighths {
        right: 75%
    }
    .pull--large--seven-eighths {
        right: 87.5%
    }
    .pull--large--one-tenth {
        right: 10%
    }
    .pull--large--two-tenths {
        right: 20%
    }
    .pull--large--three-tenths {
        right: 30%
    }
    .pull--large--four-tenths {
        right: 40%
    }
    .pull--large--five-tenths {
        right: 50%
    }
    .pull--large--six-tenths {
        right: 60%
    }
    .pull--large--seven-tenths {
        right: 70%
    }
    .pull--large--eight-tenths {
        right: 80%
    }
    .pull--large--nine-tenths {
        right: 90%
    }
    .pull--large--one-twelfth {
        right: 8.333%
    }
    .pull--large--two-twelfths {
        right: 16.666%
    }
    .pull--large--three-twelfths {
        right: 25%
    }
    .pull--large--four-twelfths {
        right: 33.333%
    }
    .pull--large--five-twelfths {
        right: 41.666%
    }
    .pull--large--six-twelfths {
        right: 50%
    }
    .pull--large--seven-twelfths {
        right: 58.333%
    }
    .pull--large--eight-twelfths {
        right: 66.666%
    }
    .pull--large--nine-twelfths {
        right: 75%
    }
    .pull--large--ten-twelfths {
        right: 83.333%
    }
    .pull--large--eleven-twelfths {
        right: 91.666%
    }
}


/*!
*  1.5. Helper classes
*/

.clearfix {
    *zoom: 1
}

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

.clearfix:after {
    clear: both
}

.hidden {
    display: none
}

.clear {
    clear: both
}

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

* {
    box-sizing: border-box
}

.is-transitioning {
    display: block !important;
    visibility: visible !important
}

.display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    min-height: inherit
}

.display-table-cell {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    float: none
}

@media screen and (min-width: 768px) {
    .large--display-table {
        display: table;
        table-layout: fixed;
        width: 100%;
        height: 100%;
        min-height: inherit
    }
    .large--display-table-cell {
        width: 100%;
        display: table-cell;
        vertical-align: middle;
        float: none
    }
}

.visually-hidden,
.no-js img.lazyload,
.no-js span.lazyload,
.no-js div.lazyload {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}


/*!
*  1.6. Typography
*/

body,
input,
textarea,
button,
select {
    font-size: 16px;
    line-height: 1.6;
    font-family: Roboto, sans-serif;
    color: #343434;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    display: block;
    font-family: Roboto, sans-serif;
    margin: 0 0 0.5em;
    line-height: 1.4;
    color: #3d4246
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    text-decoration: none;
    font-weight: inherit
}

a[href^="tel"] {
    color: inherit
}

h1,
.h1 {
    font-size: 2.5em
}

@media screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 2em
    }
}

@media screen and (max-width: 480px) {
    h1,
    .h1 {
        font-size: 1.375em
    }
}

h2,
.h2 {
    font-size: 2.125em
}

@media screen and (max-width: 767px) {
    h2,
    .h2 {
        font-size: 1.75em
    }
}

@media screen and (max-width: 480px) {
    h2,
    .h2 {
        font-size: 1.375em
    }
}

h3,
.h3 {
    font-size: 1.5em
}

@media screen and (max-width: 480px) {
    h3,
    .h3 {
        font-size: 1.125em
    }
}

h4,
.h4 {
    font-size: 1.125em
}

h5,
.h5 {
    font-size: 1em
}

h6,
.h6 {
    font-size: 0.875em
}

p {
    margin: 0 0 30px 0
}

p img {
    margin: 0
}

em {
    font-style: italic
}

b,
strong {
    font-weight: bold
}

small {
    font-size: 0.9em
}

sup,
sub {
    position: relative;
    font-size: 60%;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.5em
}

a {
    color: #0a578f
}

a:hover {
    color: #073a5f
}

blockquote {
    font-size: 1.125em;
    line-height: 1.45;
    font-style: italic;
    margin: 0 0 30px;
    padding: 15px 30px;
    border-left: 1px solid #e9e9e9
}

blockquote p {
    margin-bottom: 0
}

blockquote p+cite {
    margin-top: 15px
}

blockquote cite {
    display: block;
    font-size: 0.75em
}

blockquote cite:before {
    content: '\2014 \0020'
}

code,
pre {
    background-color: #faf7f5;
    font-family: Consolas, monospace;
    font-size: 1em;
    border: 0 none;
    padding: 0 2px;
    color: #51ab62
}

pre {
    overflow: auto;
    padding: 15px;
    margin: 0 0 30px
}

ul,
ol {
    margin: 0 0 15px 20px;
    padding: 0
}

ol {
    list-style: decimal
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 4px 0 5px 20px
}

li {
    margin-bottom: 0.25em
}

ul.square {
    list-style: square outside
}

ul.disc {
    list-style: disc outside
}

ol.alpha {
    list-style: lower-alpha outside
}

.no-bullets {
    list-style: none outside;
    margin-left: 0
}

.inline-list {
    margin-left: 0
}

.inline-list li {
    display: inline-block;
    margin-bottom: 0
}

.rte ol,
.rte ul {
    margin: 0 0 25px 20px;
    padding: 0;
    list-style-position: inside
}

.rte ol {
    list-style-type: decimal
}

.rte ol ol {
    list-style-type: lower-alpha
}

.rte ul {
    list-style-type: disc
}

.rte li {
    margin-bottom: 0
}

.rte>*:last-child {
    margin-bottom: 0
}

.text-center ol,
.text-center ul {
    list-style-position: inside;
    margin-left: 0
}


/*!
*  2.1. General
*/

html.js .supports-no-js {
    display: block
}

html.no-js .supports-no-js {
    display: none !important
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: #fff
}

.main-content {
    display: block;
    overflow: hidden
}

.template-password .main-content {
    overflow: visible
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
    *zoom: 1
}

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

.wrapper:after {
    clear: both
}

.wrapper.wrapper--margins {
    padding: 120px 0 150px
}

.wrapper.wrapper--margins+.wrapper--margins {
    padding-top: 0
}

.index-sections>.shopify-section:first-child .wrapper.wrapper--margins {
    padding: 280px 0
}

@media screen and (max-width: 767px) {
    .index-sections>.shopify-section:first-child .wrapper.wrapper--margins {
        padding: 180px 0
    }
}

@media screen and (max-width: 480px) {
    .index-sections>.shopify-section:first-child .wrapper.wrapper--margins {
        padding: 150px 0 40px
    }
}

.template-password .wrapper.wrapper--margins {
    padding-top: 100px
}

.wrapper.wrapper--mini {
    max-width: 1200px;
    margin: auto
}

.wrapper.wrapper--center {
    max-width: 340px;
    margin: auto !important
}

@media screen and (max-width: 400px) {
    .wrapper.wrapper--center {
        margin: auto 30px !important
    }
}


/*!
*  2.2. Header
*/

.announcement-bar {
    position: relative;
    display: block;
    margin-bottom: 0;
    text-align: center;
    text-decoration: none
}

.announcement-bar.mobile {
    margin-top: 70px
}

.announcement-bar__message {
    font-weight: 700;
    padding: 10px 30px;
    margin-bottom: 0
}

.site-header-v2 {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100px
}

.site-header-v2 .wrapper {
    height: 100%
}

.site-header-v2 .wrapper .site-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center
}

.site-header-v2 .wrapper .site-logo.inversed {
    display: none
}

.site-header-v2 .wrapper .site-logo .phoneNumber {
    color: #343434
}

.site-header-v2 .wrapper .site-logo .phoneNumber i {
    color: #0a578f
}

.site-header-v2 .wrapper .site-header__logo-text {
    text-align: left;
    font-size: 1.625em;
    line-height: 1.2;
    position: relative;
    top: 0;
    display: table-cell;
    vertical-align: middle
}

.is-light .site-header-v2 .wrapper .site-header__logo-text {
    color: #fff
}

.is-light .site-header-v2 .wrapper .site-header__logo-text:hover {
    color: #0a578f
}

.is-light .created-by-js .site-header-v2 .wrapper .site-header__logo-text,
.is-light .sticky .site-header-v2 .wrapper .site-header__logo-text {
    color: #0a578f
}

.created-by-js .site-header-v2 .wrapper .site-header__logo-text:hover,
.sticky .site-header-v2 .wrapper .site-header__logo-text:hover {
    color: #073a5f
}

.site-header-v2 .wrapper .btn__buy {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    float: right
}

.site-header-v2 .wrapper .btn__buy .btn {
    line-height: 40px
}

.site-header-v2 .wrapper .btn__buy .btn.btn--light {
    color: #fff;
    border-color: #fff
}

.site-header-v2 .wrapper .btn__buy .btn.btn--light:hover {
    background: #fff;
    border-color: #fff;
    color: #111 !important
}

.site-header-v2.sticky {
    position: fixed;
    top: 0;
    height: 70px;
    animation: 1s slide-down forwards;
    -webkit-animation: 1s slide-down forwards;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(23, 23, 23, 0.15);
    -moz-box-shadow: 0px 2px 5px 0px rgba(23, 23, 23, 0.15);
    box-shadow: 0px 2px 5px 0px rgba(23, 23, 23, 0.15)
}

.site-header-v2.sticky .site-logo {
    display: none !important
}

@media screen and (max-width: 480px) {
    .site-header-v2.sticky .site-logo {
        display: none !important
    }
}

.site-header-v2.sticky .site-logo.inversed {
    display: block !important
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0)
    }
}

.header__custom {
    text-align: center;
    padding-top: 50px
}

.header__custom .wrapper.wrapper--margins {
    padding: 90px 0 100px
}

.header__custom time {
    color: #a7a7a7
}

.parallax-bg {
    position: relative;
    overflow: hidden
}

.prlx-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.prlx-bg.overlay-true:before {
    background: #fff;
    opacity: .8
}

.prlx-bg img {
    display: none
}

.prlx-txt {
    z-index: 99;
    position: relative
}


/*!
*  2.3. Navigation
*/

.nav-bar {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: table;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px)
}

.nav-bar:focus {
    outline: none
}

.nav-bar ul {
    *zoom: 1;
    margin: 0
}

.nav-bar ul:before,
.nav-bar ul:after {
    content: " ";
    display: table
}

.nav-bar ul:after {
    clear: both
}

.site-header--classic .nav-bar>ul {
    display: table-cell;
    vertical-align: middle
}

.nav-bar li {
    float: left;
    position: relative;
    margin: 0 15px
}

.nav-bar li:last-child {
    margin-right: 0
}

.nav-bar li>button .icon-plus {
    display: inline-block
}

.nav-bar li>button .icon-minus {
    display: none
}

.nav-bar li.opened>button .icon-plus {
    display: none
}

.nav-bar li.opened>button .icon-minus {
    display: inline-block
}

.nav-bar li .site-nav__link,
.nav-bar li .btn__account a {
    font: 0.8125em Roboto, sans-serif;
    padding: 5px;
    padding-left: 0;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
    color: #3d4246
}

.is-light .nav-bar li .site-nav__link,
.is-light .nav-bar li .btn__account a {
    color: #fff
}

.is-dark .nav-bar li .site-nav__link,
.is-dark .nav-bar li .btn__account a {
    color: #000
}

.nav-bar li .site-nav__link .icon-plus,
.nav-bar li .site-nav__link .icon-minus,
.nav-bar li .btn__account a .icon-plus,
.nav-bar li .btn__account a .icon-minus {
    margin-left: 5px
}

.nav-bar li .site-nav__link .icon-plus svg,
.nav-bar li .site-nav__link .icon-minus svg,
.nav-bar li .btn__account a .icon-plus svg,
.nav-bar li .btn__account a .icon-minus svg {
    width: 10px;
    height: 10px
}

.nav-bar li .site-nav__link:hover,
.nav-bar li .btn__account a:hover {
    color: #0a578f
}

.is-light .created-by-js .nav-bar li .site-nav__link:hover,
.is-light .created-by-js .nav-bar li .btn__account a:hover {
    color: #0a578f
}

.is-dark .created-by-js .nav-bar li .site-nav__link:hover,
.is-dark .created-by-js .nav-bar li .btn__account a:hover {
    color: #0a578f
}

.nav-bar li .site-nav__link:hover svg *,
.nav-bar li .btn__account a:hover svg * {
    fill: #0f82d7
}

.is-light .created-by-js .nav-bar li .site-nav__link,
.is-light .created-by-js .nav-bar li .btn__account a {
    color: #3d4246
}

.is-dark .created-by-js .nav-bar li .site-nav__link,
.is-dark .created-by-js .nav-bar li .btn__account a {
    color: #3d4246
}

.nav-bar li .site-nav__link.site-nav--active:after,
.nav-bar li .btn__account a.site-nav--active:after {
    content: "";
    display: block;
    position: absolute;
    background: #3d4246;
    width: calc(100% - 5px);
    bottom: 0;
    height: 2px;
    transition: 200ms linear height
}

.is-light .nav-bar li .site-nav__link.site-nav--active:after,
.is-light .nav-bar li .btn__account a.site-nav--active:after {
    background: #fff
}

.is-dark .nav-bar li .site-nav__link.site-nav--active:after,
.is-dark .nav-bar li .btn__account a.site-nav--active:after {
    background: #000
}

.is-light .created-by-js .nav-bar li .site-nav__link.site-nav--active:after,
.is-light .created-by-js .nav-bar li .btn__account a.site-nav--active:after {
    background: #3d4246
}

.is-dark .created-by-js .nav-bar li .site-nav__link.site-nav--active:after,
.is-dark .created-by-js .nav-bar li .btn__account a.site-nav--active:after {
    background: #3d4246
}

.nav-bar li .site-nav__link.site-nav--active,
.nav-bar li .btn__account a.site-nav--active {
    color: #3d4246 !important
}

.is-light .nav-bar li .site-nav__link.site-nav--active,
.is-light .nav-bar li .btn__account a.site-nav--active {
    color: #fff !important
}

.is-dark .nav-bar li .site-nav__link.site-nav--active,
.is-dark .nav-bar li .btn__account a.site-nav--active {
    color: #000 !important
}

.is-light .created-by-js .nav-bar li .site-nav__link.site-nav--active,
.is-light .created-by-js .nav-bar li .btn__account a.site-nav--active {
    color: #3d4246 !important
}

.is-dark .created-by-js .nav-bar li .site-nav__link.site-nav--active,
.is-dark .created-by-js .nav-bar li .btn__account a.site-nav--active {
    color: #3d4246 !important
}

.nav-bar li .site-nav__link.btn:after,
.nav-bar li .btn__account a.btn:after {
    display: none
}

.is-light .nav-bar li a.btn--dark {
    color: #fff;
    border-color: #fff
}

.is-dark .nav-bar li a.btn--dark {
    color: #000;
    border-color: #000
}

.is-light .created-by-js .nav-bar li a.btn--dark {
    color: #000;
    border-color: #000
}

.is-dark .created-by-js .nav-bar li a.btn--dark {
    color: #000;
    border-color: #000
}

.is-light .nav-bar li a.btn--dark:hover {
    color: #000;
    background: #fff
}

.is-dark .nav-bar li a.btn--dark:hover {
    color: #fff;
    background: #000
}

.is-light .created-by-js .nav-bar li a.btn--dark:hover {
    color: #fff;
    background: #000
}

.is-dark .created-by-js .nav-bar li a.btn--dark:hover {
    color: #fff;
    background: #000
}

.nav-bar li.btn__buy {
    margin: -18px 0 0px 30px;
    position: relative;
    top: 10px;
    float: right;
    height: auto
}

.nav-bar li.btn__buy .btn {
    line-height: 40px
}

.nav-bar li.btn__buy .btn--light {
    color: #fff;
    border-color: #fff
}

.nav-bar li.btn__buy .btn--light:hover {
    background: #fff;
    border-color: #fff;
    color: #111 !important
}

.nav-bar li.btn__cart a {
    text-align: center;
    width: 20px;
    min-height: 20px;
    display: inline-block;
    padding: 0;
    font-size: 0.75em;
    font-weight: 700
}

.nav-bar li.btn__cart a:after {
    background: none
}

.nav-bar li.btn__cart .icon {
    position: absolute;
    top: -10px;
    left: 0;
    display: block;
    width: 20px
}

.site-header--classic .nav-bar li.btn__cart .icon {
    top: 1px
}

.nav-bar li.btn__cart svg {
    position: absolute;
    top: -10px;
    left: 0
}

.nav-bar li.btn__cart svg path {
    fill: #0a578f
}

.site-header--classic .nav-bar li.btn__cart svg {
    top: -7px
}

.nav-bar li.btn__cart .text {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}

.nav-bar li.btn__account {
    height: 16px
}

.nav-bar li.btn__account a {
    padding: 0;
    top: -6px;
    position: relative
}

.nav-bar li.btn__account a:after {
    display: none !important
}

.nav-bar li.btn__account .text {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}

.nav-bar .link-list {
    display: none
}

.js .site-header--classic .site-nav,
.js .site-header--classic .site-header__logo {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease-in;
    -moz-transition: opacity 0.15s ease-in
}

.no-js .site-header--classic .site-nav,
.no-js .site-header--classic .site-header__logo {
    opacity: 1
}

.sticky .site-nav,
.sticky .site-header__logo {
    opacity: 1 !important
}

.site-header--classic #menu-opener {
    display: none
}

.lines-button {
    display: inline-block;
    padding: 22px;
    transition: .3s;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    background: #111;
    width: 70px;
    height: 70px
}

.lines-button:active {
    transition: 0
}

.lines-button:hover .lines {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center
}

.lines-button.opened {
    display: none
}

.lines-button.lines-button--close {
    display: none
}

.opened .lines-button.lines-button--close {
    display: block
}

.lines {
    display: inline-block;
    width: 28px;
    height: 4px;
    transition: 300ms;
    background: #fff;
    position: relative
}

.lines:before,
.lines:after {
    display: inline-block;
    width: 28px;
    height: 4px;
    transition: 300ms;
    background: #fff;
    position: absolute;
    left: 0;
    content: "";
    -webkit-transform-original: 2px center;
    -ms-transform-original: 2px center;
    transform-original: 2px center
}

.lines:before {
    top: 7px
}

.lines:after {
    top: -7px
}

.lines-button.lines-button--close .lines {
    background: transparent
}

.lines-button.lines-button--close .lines:before,
.lines-button.lines-button--close .lines:after {
    transform-origin: 50% 50%;
    top: 0;
    width: 28px
}

.lines-button.lines-button--close .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg)
}

.lines-button.lines-button--close .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg)
}

.site-nav__dropdown {
    display: none
}

.site-header--classic .site-nav__dropdown {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100px;
    padding-top: 5px;
    text-align: center;
    display: none;
    width: 200px;
    margin-left: -110px
}

.site-header--classic .site-nav__dropdown.opened {
    opacity: 1;
    display: block
}

.site-header--classic .site-nav__dropdown.site-nav__dropdown--grandchilds {
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    width: auto
}

.site-header--classic .site-nav__dropdown.site-nav__dropdown--grandchilds>div {
    padding: 0;
    top: 0
}

.site-header--classic .site-nav__dropdown>div {
    background: #eee;
    padding: 12px 25px 10px;
    border-radius: 3px;
    position: relative;
    top: 5px
}

.site-header--classic .site-nav__dropdown .arrow {
    top: 0;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(238, 238, 238, 0);
    border-bottom-color: #eee;
    border-width: 5px;
    margin-left: -5px
}

.site-header--classic .site-nav__dropdown li {
    display: block;
    float: none;
    margin: 10px 0
}

.site-header--classic .site-nav__dropdown li .site-nav__link {
    font-size: 12px;
    line-height: 13px
}

.is-light .site-header--classic .site-nav__dropdown li .site-nav__link {
    color: #000
}

.is-dark .site-header--classic .site-nav__dropdown li .site-nav__link {
    color: #000
}

.site-header--classic .site-nav__dropdown li .site-nav__link:hover {
    color: #0a578f
}

.is-light .site-header--classic .site-nav__dropdown li .site-nav__link svg {
    fill: #000
}

.site-header--classic .site-nav__dropdown li a.site-nav--active {
    font-weight: 700
}

.is-light .site-header--classic .site-nav__dropdown li a.site-nav--active {
    color: #000 !important
}

.is-dark .site-header--classic .site-nav__dropdown li a.site-nav--active {
    color: #000 !important
}

.site-header--classic li.site-nav--has-dropdown a:after {
    display: none !important
}

body.opened-drawer {
    overflow: hidden
}

body.opened-drawer .nav-bar {
    overflow-y: auto
}


/*!
*  2.4. Footer
*/

.site-footer {
    background-color: #111;
    color: #757575;
    padding: 120px 0
}

.site-footer a {
    color: #757575
}

.site-footer a:hover {
    color: #0a578f
}

.site-footer .site-header__logo {
    position: static;
    max-width: 400px;
    margin-bottom: 75px !important
}

.site-footer .site-header__logo a {
    margin: auto
}

.site-footer .site-header__logo a.site-header__logo-link {
    max-width: px;
    display: block
}

.site-footer .link-list a {
    font-size: 0.9375em;
    line-height: 1;
    font-weight: 600;
    margin: 0 15px
}

.site-footer .link-list+hr {
    display: block
}

.site-footer hr {
    max-width: 500px;
    height: 1px;
    background: #444;
    margin: 19px auto 18px;
    border: none;
    display: none
}

.site-footer .copy {
    font-size: 0.78125em
}

.site-footer .copy>p {
    display: inline
}

.site-footer .copy>p:first-child:after {
    content: "."
}

@media screen and (max-width: 480px) {
    .site-footer .copy>p {
        display: block;
        margin: 0
    }
    .site-footer .copy>p:first-child:after {
        content: ""
    }
}

.pay-icons {
    margin: 15px 0
}

.pay-icons svg * {
    fill: currentColor !important
}

.social-footer {
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px
}

.social-footer.even {
    background-color: #fff
}

.social-footer .wrapper {
    margin: auto !important
}

@media screen and (min-width: 767px) {
    .social-footer {
        min-height: 120px
    }
}

@media screen and (max-width: 767px) {
    .site-footer {
        padding: 60px 0 50px
    }
}

.social-icons {
    margin: 0
}

.social-icons li {
    margin: 10px;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    cursor: default
}

.social-icons li svg * {
    fill: #e7f2f9
}

.social-icons li a:hover svg * {
    fill: #0a578f
}

.social-icons li svg.google path {
    fill: #f9f9f9
}

.newsletter__label,
.form--success {
    color: #757575;
    font-size: 1.5em;
    margin: 0 0 30px 0
}

@media screen and (max-width: 480px) {
    .newsletter__label,
    .form--success {
        font-size: 1.125em
    }
}

@media screen and (max-width: 480px) {
    .newsletter__label,
    .newsletter__input {
        margin: 0 0 30px 0
    }
}

.form--success {
    margin-top: 10px
}


/*!
*  2.5. Objects
*/

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 30px
}

table.full {
    width: 100%;
    margin-bottom: 1em
}

.table-wrap {
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

th {
    font-weight: bold
}

th,
td {
    text-align: left;
    padding: 15px;
    border: 1px solid #e9e9e9
}

@media screen and (max-width: 767px) {
    .table--responsive thead {
        display: none
    }
    .table--responsive tr {
        display: block
    }
    .table--responsive tr,
    .table--responsive td {
        float: left;
        clear: both;
        width: 100%
    }
    .table--responsive th,
    .table--responsive td {
        display: block;
        text-align: right;
        padding: 15px
    }
    .table--responsive td:before {
        content: attr(data-label);
        float: left;
        text-align: center;
        font-size: 12px;
        padding-right: 10px
    }
    .table--responsive.cart-table img {
        margin: 0 auto
    }
    .table--responsive.cart-table .js-qty {
        float: right
    }
}

@media screen and (max-width: 480px) {
    .table--small-hide {
        display: none !important
    }
    .table__section+.table__section {
        position: relative;
        margin-top: 10px;
        padding-top: 15px
    }
    .table__section+.table__section:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
        border-bottom: 1px solid #e9e9e9
    }
}

.media,
.media-flex {
    overflow: hidden;
    _overflow: visible;
    zoom: 1
}

.media-img {
    float: left;
    margin-right: 30px
}

.media-img-right {
    float: right;
    margin-left: 30px
}

.media-img img,
.media-img-right img {
    display: block
}

img {
    border: 0 none
}

svg:not(:root) {
    overflow: hidden
}

.is-light svg,
.is-light svg {
    fill: #fff
}

.is-dark svg,
.is-dark svg {
    fill: #000
}

.is-light .created-by-js svg,
.is-light .created-by-js svg {
    fill: #000
}

.is-dark .created-by-js svg,
.is-dark .created-by-js svg {
    fill: #000
}

img,
iframe {
    max-width: 100%
}

p[style="text-align: center;"]:not(.centered-media) img,
p[style="text-align: center;"]:not(.centered-media) iframe {
    max-width: none;
    width: 1200px;
    margin: 35px 0 0 -150px
}

img {
    height: auto;
    vertical-align: bottom
}

@media screen and (max-width: 1025px) {
    .centered-media,
    .template-blog .article__img,
    .product__image {
        width: calc(100% + 120px) !important;
        margin-left: -60px !important
    }
}

@media screen and (max-width: 480px) {
    .centered-media,
    .template-blog .article__img,
    .product__image {
        width: calc(100% + 60px) !important;
        margin-left: -30px !important
    }
}

.centered-media {
    width: 1200px;
    margin: 60px 0 60px -150px
}

.centered-media img,
.centered-media iframe {
    max-width: none;
    width: 100%;
    vertical-align: middle
}

@media screen and (max-width: 1300px) {
    .centered-media {
        width: 1100px;
        margin: 50px 0 50px -100px
    }
}

@media screen and (max-width: 1200px) {
    .centered-media {
        width: 1000px;
        margin-left: -50px
    }
}

@media screen and (max-width: 480px) {
    .centered-media {
        margin: 35px 0 35px -30px !important
    }
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    height: auto
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.note,
.errors {
    border-radius: 5px;
    padding: 11px 30px 10px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    text-align: left;
    font-size: 1em;
    font-family: Roboto, sans-serif;
    display: inline-block
}

.note ul,
.note ol,
.errors ul,
.errors ol {
    margin: 0;
    list-style-position: inside
}

.note li:last-child,
.errors li:last-child {
    margin-bottom: 0
}

.note p,
.errors p {
    margin-bottom: 0
}

#Comments>.note,
form>.note,
#Comments>.errors,
form>.errors {
    position: relative;
    top: -25px
}

.note {
    border-color: #e9e9e9
}

.form-success {
    color: #56ad6a;
    border-color: #56ad6a
}

.form-success a {
    color: #56ad6a;
    text-decoration: underline
}

.form-success a:hover {
    text-decoration: none
}

.form-error,
.errors {
    color: #d02e2e;
    border-color: #d02e2e
}

.form-error a,
.errors a {
    color: #d02e2e;
    text-decoration: underline
}

.form-error a:hover,
.errors a:hover {
    text-decoration: none
}


/*!
*  2.6. Forms
*/

form {
    margin-bottom: 0
}

@media screen and (max-width: 767px) {
    input,
    textarea {
        font-size: 16px
    }
}

input,
textarea,
button,
select {
    padding: 0;
    margin: 0;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

button {
    background: none;
    border: none;
    cursor: pointer
}

button,
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none
}

button {
    background: none;
    border: none;
    display: inline-block;
    cursor: pointer
}

input[type="image"] {
    padding-left: 0;
    padding-right: 0
}

fieldset {
    border: 1px solid #e9e9e9;
    padding: 15px
}

legend {
    border: 0;
    padding: 0
}

button,
input[type="submit"] {
    cursor: pointer
}

input,
textarea,
select {
    border: 1px solid #cacaca;
    max-width: 100%;
    padding: 8px 20px;
    border-radius: 2px;
    height: 50px;
    font-size: 16px;
    color: #343434;
    background: transparent
}

input[disabled],
input.disabled,
textarea[disabled],
textarea.disabled,
select[disabled],
select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6
}

input.input-full,
textarea.input-full,
select.input-full {
    width: 100%
}

input[type="text"]:focus,
textarea:focus {
    border: 1px solid #b6b6b6
}

textarea {
    height: 200px;
    padding-top: 10px
}

input[type="search"] {
    width: 300px;
    display: block;
    margin-bottom: 20px
}

.text-center input[type="search"] {
    margin-left: auto;
    margin-right: auto
}

.jumpstart-selector {
    position: relative
}

.jumpstart-selector .arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-left: 1px solid #cacaca;
    text-align: center;
    line-height: 52px
}

.jumpstart-selector .arrow svg * {
    fill: #6a6a6a
}

.jumpstart-selector select {
    position: relative;
    z-index: 9;
    width: 100%
}

.jumpstart-selector select::-ms-expand {
    display: none
}

input.qty-remove-defaults::-webkit-inner-spin-button,
input.qty-remove-defaults::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input.qty-remove-defaults {
    -moz-appearance: textfield
}

input#Quantity {
    width: 55px;
    float: left;
    border-radius: 0;
    padding: 0;
    text-align: center
}

.input-holder {
    position: relative;
    width: 48px
}

.input-holder.minus {
    float: left;
    margin-right: -1px
}

.input-holder.minus input {
    border-radius: 2px 0 0 2px
}

.input-holder.plus {
    float: right;
    margin-left: -1px
}

.input-holder.plus input {
    border-radius: 0 2px 2px 0
}

.input-holder input {
    cursor: pointer;
    padding: 23px
}

.input-holder button {
    border: 1px solid #cacaca;
    width: 100%;
    height: 50px
}

.input-holder button.plus {
    border-radius: 0 2px 2px 0
}

.input-holder button.minus {
    border-radius: 2px 0 0 2px
}

.input-holder svg {
    position: absolute;
    top: 17px;
    left: 17px;
    width: 13px;
    z-index: -1
}

.input-holder svg path {
    fill: #6a6a6a
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin: 0 8px 0 0;
    padding: 0;
    width: auto
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio
}

input[type="image"] {
    padding-left: 0;
    padding-right: 0
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 70px;
    text-indent: 0.01px;
    text-overflow: '';
    cursor: pointer
}

input.error,
select.error,
textarea.error {
    border-color: #d02e2e;
    background-color: #fff6f6;
    color: #d02e2e
}

label.error {
    color: #d02e2e
}

.form__row {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 10px;
    *zoom: 1
}

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

.form__row:after {
    clear: both
}

.form__row .form__column,
.form__row .selector-wrapper {
    padding: 0 15px 30px;
    float: left
}

.form__row .form__column.third,
.form__row .selector-wrapper.third {
    width: 33.33%
}

.form__row .form__column.half,
.form__row .selector-wrapper.half {
    width: 50%
}

.form__row .form__column.twothird,
.form__row .selector-wrapper.twothird {
    width: 66.66%
}

.form__row .form__column.full,
.form__row .selector-wrapper.full {
    width: 100%
}

@media screen and (max-width: 767px) {
    .form__row .form__column.third,
    .form__row .form__column.half,
    .form__row .form__column.twothird,
    .form__row .form__column.full,
    .form__row .selector-wrapper.third,
    .form__row .selector-wrapper.half,
    .form__row .selector-wrapper.twothird,
    .form__row .selector-wrapper.full {
        width: 100% !important
    }
}

.form__row .form__column label,
.form__row .selector-wrapper label {
    text-align: left
}

.hidden-label {
    position: absolute;
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

label[for] {
    cursor: pointer
}

label {
    display: block;
    font-size: 1em;
    color: #788188;
    margin-bottom: 8px
}

input[type="checkbox"]+label {
    display: inline-block;
    position: relative;
    top: -17px
}

.btn {
    font-family: Roboto, sans-serif;
    border-radius: 2px;
    display: inline-block
}

.btn.btn--small {
    font-size: 0.8125em;
    height: 35px;
    line-height: 33px;
    padding: 0 20px
}

.btn.btn--regular {
    font-size: 1em;
    height: 50px;
    line-height: 48px;
    padding: 0 30px
}

.btn.btn--regular.newsletter__submit {
    padding: 0px
}

@media screen and (max-width: 480px) {
    .btn.btn--regular:not([type="submit"]) {
        font-size: 0.8125em;
        height: 42px;
        line-height: 40px;
        padding: 0 20px
    }
}

.btn.btn--large {
    font-size: 1em;
    height: 60px;
    line-height: 58px;
    padding: 0 34px
}

@media screen and (max-width: 480px) {
    .btn.btn--large:not([type="submit"]) {
        font-size: 0.9375em;
        height: 50px;
        line-height: 48px;
        padding: 0 30px
    }
}

.btn.btn--outline {
    background: transparent;
    border: 2px solid
}

.btn.btn--outline.btn--color {
    color: #0a578f;
    border-color: #0a578f
}

.btn.btn--outline.btn--color:hover {
    background: #0a578f
}

.btn.btn--outline.btn--dark {
    color: #e7f2f9;
    border-color: #e7f2f9
}

.btn.btn--outline.btn--dark:hover {
    background: #e7f2f9
}

.btn.btn--outline.btn--light {
    color: #fff;
    border-color: #fff
}

.btn.btn--outline.btn--light:hover {
    background: #fff;
    color: #000 !important
}

.btn.btn--outline:hover {
    color: #fff
}

.btn.btn--fill {
    color: #111;
    top: -1px;
    position: relative;
    border: none
}

.btn.btn--fill.btn--color {
    background: #0a578f
}

.btn.btn--fill.btn--color:hover {
    background: #073a5f
}

.btn.btn--fill.btn--dark {
    background: #e7f2f9
}

.btn.btn--fill.btn--dark:hover {
    background: #bedcef
}

.btn.btn--disabled {
    pointer-events: none;
    cursor: default;
    background: transparent !important;
    border: 2px solid #fff;
    color: #fff
}

.btn.btn--disabled-alt {
    pointer-events: none;
    cursor: default;
    opacity: 1;
    border: none
}

.btn.btn--next-to {
    display: inline-block;
    margin-right: 15px
}

.pagination {
    margin: 20px 0 50px
}

.pagination .btn {
    padding: 0;
    width: 35px;
    text-align: center
}

.pagination.text-center .btn {
    display: inline-block
}

.submit--helper {
    display: inline-block;
    position: relative;
    top: 10px;
    left: 25px
}

@media all and (max-width: 480px) {
    .submit--helper {
        display: block;
        left: 0px
    }
}

.submit--helper span {
    display: block
}

.contact-form {
    margin-top: 70px
}

.svg.social {
    width: 22px;
    height: 22px
}


/*!
*  2.7 Blank states
*/

.placeholder-svg {
    display: block;
    fill: rgba(0, 0, 0, 0.35);
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2)
}

.placeholder-noblocks {
    padding: 40px;
    text-align: center;
    max-width: 100%;
    fill: rgba(0, 0, 0, 0.35)
}

.placeholder-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center
}

.placeholder-background .icon {
    border: 0
}

.placeholder-background.imagebox {
    background-color: #e7f2f9
}

.placeholder-background.imagebox svg.placeholder-image {
    fill: rgba(0, 0, 0, 0.35);
    border: 0px;
    align-self: center;
    width: 100%;
    height: 100%
}

.image-bar__content .placeholder-svg {
    position: absolute;
    top: 0;
    left: 0
}

.clients-list .placeholder-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    vertical-align: middle;
    display: inline-block
}

.is-dark svg.placeholder-noblocks,
.is-dark svg.placeholder-svg {
    fill: rgba(0, 0, 0, 0.35);
    color: rgba(0, 0, 0, 0.35)
}

.is-light svg.placeholder-noblocks,
.is-light svg.placeholder-svg {
    fill: rgba(0, 0, 0, 0.35);
    color: rgba(0, 0, 0, 0.35)
}

.lazyload__image-wrapper {
    display: block;
    margin-bottom: 10px;
    position: relative;
    margin: 0 auto
}

.lazyload__image-wrapper img {
    display: block
}

.lazyload__image-wrapper img {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0
}

.lazyload__image-wrapper img.lazyload {
    opacity: 0
}

.template-index .shopify-section.shopify-section-button:nth-child(odd) {
    background: #f9f9f9
}


/*!
*  3.1. General
*/

.template-index .shopify-section {
    position: relative;
    *zoom: 1
}

.template-index .shopify-section:before,
.template-index .shopify-section:after {
    content: " ";
    display: table
}

.template-index .shopify-section:after {
    clear: both
}

.template-index .shopify-section:nth-child(even) {
    background: #f9f9f9
}

.home-section-title {
    font-size: 1.125em;
    text-transform: uppercase;
    margin-bottom: 90px
}

@media screen and (max-width: 1025px) {
    .home-section-title {
        margin-bottom: 70px
    }
    .product .home-section-title {
        text-align: center;
        margin-bottom: 50px
    }
    .product .home-section-title:after {
        margin: 15px auto 0
    }
}

@media screen and (max-width: 767px) {
    .home-section-title {
        text-align: center;
        margin-bottom: 50px
    }
    .home-section-title:after {
        margin: 15px auto 0
    }
}

@media screen and (max-width: 480px) {
    .home-section-title {
        font-size: 1em
    }
}

hr.thin-line {
    height: 1px;
    width: 100%;
    display: block;
    margin: 0 auto 60px;
    border: none;
    background: #e9e9e9
}


/*!
*  3.2. Crowdfunding (kickstarter)
*/

.home-kickstarter {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.home-kickstarter h2,
.home-kickstarter .h2 {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 30px
}

.home-section:first-child .home-kickstarter h2,
.home-section:first-child .home-kickstarter .h2 {
    font-size: 3.375em
}

.home-kickstarter h3,
.home-kickstarter .h3 {
    font-size: 1em;
    line-height: 1.6;
    color: #343434;
    max-width: 40%
}

@media screen and (max-width: 1025px) {
    .home-kickstarter h3,
    .home-kickstarter .h3 {
        max-width: 70%
    }
}

@media screen and (max-width: 767px) {
    .home-kickstarter h3,
    .home-kickstarter .h3 {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .home-kickstarter {
        text-align: center
    }
    .home-kickstarter .prlx-bg {
        position: relative;
        background-image: none !important
    }
    .home-kickstarter .prlx-bg img {
        display: block
    }
    .home-kickstarter h2,
    .home-kickstarter .h2 {
        font-size: 2em !important
    }
}

@media screen and (max-width: 480px) {
    .home-kickstarter h2,
    .home-kickstarter .h2 {
        font-size: 1.375em !important
    }
    .home-kickstarter h3,
    .home-kickstarter .h3 {
        font-size: 0.875em;
        line-height: 1.5
    }
}

.kickstarter__meta {
    margin: 30px 0 45px;
    position: relative
}

@media screen and (max-width: 767px) {
    .kickstarter__meta {
        margin: 30px auto
    }
    .kickstarter__meta ul {
        padding-top: 30px
    }
}

.kickstarter__meta ul {
    margin: 0;
    *zoom: 1
}

.kickstarter__meta ul:before,
.kickstarter__meta ul:after {
    content: " ";
    display: table
}

.kickstarter__meta ul:after {
    clear: both
}

.kickstarter__meta li {
    float: left;
    margin-left: 50px
}

.kickstarter__meta li:first-child {
    margin-left: 0
}

@media screen and (max-width: 767px) {
    .kickstarter__meta li {
        float: none;
        display: inline-block
    }
}

@media screen and (max-width: 480px) {
    .kickstarter__meta li {
        margin-left: 30px
    }
}

.kickstarter__meta strong {
    display: block;
    font-family: Roboto, sans-serif
}

.kickstarter__meta span {
    display: block;
    color: #788188;
    font-size: 0.8125em;
    line-height: 1
}

.kickstarter__meta .kickstarter__graphic {
    position: absolute;
    top: 0;
    left: 0
}

.kickstarter__meta .kickstarter__graphic.pie {
    width: 55px;
    height: 55px
}

.kickstarter__meta .kickstarter__graphic.pie canvas {
    -webkit-transform: rotate(-90deg) scale(0.5);
    -ms-transform: rotate(-90deg) scale(0.5);
    transform: rotate(-90deg) scale(0.5);
    -webkit-transform-origin: 20% 40%;
    -ms-transform-origin: 20% 40%;
    transform-origin: 20% 40%;
    position: absolute;
    top: 2px;
    left: 0
}

.kickstarter__meta .kickstarter__graphic.bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.1)
}

.kickstarter__meta .kickstarter__graphic.bar .value {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    border-radius: 10px;
    background: #0a578f;
    transition: width 500ms linear
}

@media screen and (max-width: 767px) {
    .kickstarter__meta .kickstarter__graphic.bar {
        position: relative;
        left: 50%;
        margin-left: -200px
    }
}

@media screen and (max-width: 480px) {
    .kickstarter__meta .kickstarter__graphic.bar {
        left: 0;
        margin-left: 0;
        max-width: none
    }
}

.kickstarter__meta.kickstarter--pie {
    padding-left: 90px
}

.kickstarter__meta.kickstarter--pie strong {
    font-size: 1.5em
}

.kickstarter__meta.kickstarter--pie span {
    margin-top: -3px
}

.kickstarter__meta.kickstarter--pie .kickstarter__graphic.bar {
    display: none
}

@media screen and (max-width: 767px) {
    .kickstarter__meta.kickstarter--pie {
        padding-left: 0
    }
    .kickstarter__meta.kickstarter--pie .kickstarter__graphic.bar {
        display: block
    }
    .kickstarter__meta.kickstarter--pie .kickstarter__graphic.pie {
        display: none
    }
}

.kickstarter__meta.kickstarter--bar {
    padding-top: 45px;
    margin-top: 55px;
    max-width: 410px
}

.kickstarter__meta.kickstarter--bar strong {
    font-size: 2.5em
}

.kickstarter__meta.kickstarter--bar span {
    margin-top: 2px
}

@media screen and (max-width: 767px) {
    .kickstarter__meta.kickstarter--bar {
        padding-top: 0
    }
}

@media screen and (max-width: 480px) {
    .kickstarter__meta.kickstarter--bar strong {
        font-size: 1.25em
    }
}

.kickstarter__meta.kickstarter--bar .kickstarter__graphic.pie {
    display: none
}

@media screen and (min-width: 767px) {
    .text-center .kickstarter__meta {
        margin: 30px auto;
        display: inline-block
    }
    .text-center .btn {
        display: table;
        margin: auto
    }
}

.kickstarter__content.text-center h3,
.kickstarter__content.text-center .h3,
.kickstarter__content.text-center .kickstarter--bar {
    margin-left: auto;
    margin-right: auto
}


/*!
*  3.3. Hero
*/

.video-overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0)
}

.no-touch .video-overlay:hover {
    background: rgba(0, 0, 0, 0.2)
}

.video-overlay .video-button {
    display: block;
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    margin-top: 60px;
    margin-left: -70px;
    border-radius: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    transition: transform 150ms linear
}

.video-text-light .video-overlay .video-button {
    background: #fff
}

.video-text-dark .video-overlay .video-button {
    background: #0a578f
}

@media screen and (max-width: 767px) {
    .video-overlay .video-button {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center
    }
}

@media screen and (max-width: 480px) {
    .video-overlay .video-button {
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        margin-top: 0
    }
}

.video-overlay .video-button svg {
    position: relative;
    top: 43px;
    width: 44px;
    height: 58px;
    left: 5px
}

.video-text-light .video-overlay .video-button svg path {
    fill: #0a578f
}

.video-text-dark .video-overlay .video-button svg path {
    fill: #fff
}

.home-gallery .video-overlay .video-button {
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-left: -55px
}

.home-gallery .video-overlay .video-button svg {
    top: 35px;
    width: 29px;
    height: 44px
}

.no-touch .video-overlay:hover .video-button {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center
}


/*!
*  3.4. Image featured content
*/

.home-imagebox {
    position: relative;
    padding: 40px 0;
    *zoom: 1
}

.home-imagebox:before,
.home-imagebox:after {
    content: " ";
    display: table
}

.home-imagebox:after {
    clear: both
}

.home-imagebox:nth-child(odd) {
    background: #e7f2f9 !important
}

.home-imagebox:nth-child(odd) .content,
.home-imagebox:nth-child(odd) h2,
.home-imagebox:nth-child(odd) .h2,
.home-imagebox:nth-child(odd) h3,
.home-imagebox:nth-child(odd) .h3,
.home-imagebox:nth-child(odd) h4,
.home-imagebox:nth-child(odd) .h4,
.home-imagebox:nth-child(odd) h5,
.home-imagebox:nth-child(odd) .h5,
.home-imagebox:nth-child(odd) h6,
.home-imagebox:nth-child(odd) .h6 {
    color: #000
}

.home-imagebox:nth-child(odd) .btn--light {
    color: #0a578f;
    border-color: #0a578f
}

.home-imagebox:nth-child(odd) .btn--light:hover {
    color: #fff !important;
    background-color: #0a578f
}

.home-imagebox:nth-child(even) {
    background: #0a578f
}

.home-imagebox:nth-child(even) .content,
.home-imagebox:nth-child(even) h2,
.home-imagebox:nth-child(even) .h2,
.home-imagebox:nth-child(even) h3,
.home-imagebox:nth-child(even) .h3,
.home-imagebox:nth-child(even) h4,
.home-imagebox:nth-child(even) .h4,
.home-imagebox:nth-child(even) h5,
.home-imagebox:nth-child(even) .h5,
.home-imagebox:nth-child(even) h6,
.home-imagebox:nth-child(even) .h6 {
    color: #fff
}

.home-imagebox:nth-child(even) .btn--light {
    color: #0a578f;
    border-color: #0a578f
}

.home-imagebox:nth-child(even) .btn--light:hover {
    color: #fff !important;
    background-color: #000
}

.home-imagebox .one-half {
    display: inline-block;
    vertical-align: middle;
    padding: 0
}

.home-imagebox .image {
    display: inline-block;
    width: 49%;
    vertical-align: middle;
    text-align: right
}

.home-imagebox .image img {
    display: inline-block
}

.home-imagebox .content {
    min-height: 600px
}

.home-imagebox .content .large--display-table {
    height: 600px
}

@media screen and (max-width: 767px) {
    .home-imagebox .content .large--display-table {
        height: auto
    }
}

.home-imagebox .content .btn {
    margin-top: 50px
}

.home-imagebox .content h3,
.home-imagebox .content .h3 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0
}

.home-imagebox .content p {
    font-size: 1.125em;
    margin: 15px 0 0
}

.home-imagebox .content a {
    margin-top: 35px
}

@media screen and (max-width: 767px) {
    .home-imagebox .content {
        min-height: 0;
        padding: 80px 0 70px;
        margin-left: 60px !important;
        margin-right: 60px !important;
        text-align: center
    }
    .home-imagebox .content h3,
    .home-imagebox .content .h3 {
        font-size: 2em;
        font-weight: 400
    }
    .home-imagebox .content a {
        margin-top: 15px
    }
    .home-imagebox .content.grid__item {
        padding-bottom: 0;
        margin-left: 0 !important;
        margin-right: 0 !important
    }
}

@media screen and (max-width: 480px) {
    .home-imagebox .content {
        padding: 60px 0 40px;
        margin-left: 30px !important;
        margin-right: 30px !important
    }
    .home-imagebox .content h3,
    .home-imagebox .content .h3 {
        font-size: 1.375em
    }
    .home-imagebox .content p {
        font-size: 0.9375em
    }
}


/*!
*  3.5. Slideshow
*/

#home-slideshow {
    background: none
}

.slides {
    margin: 0;
    padding: 0;
    text-align: center
}

.slides .slide {
    margin: 0;
    padding: 0;
    border: 0;
    display: none;
    position: relative
}

.slides .slide.active {
    display: inline-block
}

.slides .slide img {
    width: 100%;
    max-width: 100%
}

.thumb-slides {
    text-align: center;
    margin: 30px 0 0 0;
    padding: 0
}

.thumb-slides .slide {
    display: inline-block;
    margin-right: 20px;
    border: 2px solid transparent;
    cursor: pointer
}

.thumb-slides .slide:last-child {
    margin-right: 0
}

.thumb-slides .slide.active {
    border-color: #0a578f
}

.thumb-slides .slide.active img {
    opacity: .8
}

.text-upper {
    text-transform: uppercase
}

.reviews-rate .fa {
    color: #f79320
}

.flex-direction-nav a {
    position: absolute;
    top: 50%;
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: #1d1d1d;
    z-index: 999999;
    cursor: pointer;
    margin-bottom: 0px
}

.flex-direction-nav a.flex-prev {
    left: 50px;
    transition: all 200ms linear
}

.flex-direction-nav a.flex-next {
    right: 50px;
    transition: all 200ms linear
}

.flex-direction-nav a svg {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    transition: transform 100ms linear
}

.flex-direction-nav a svg * {
    fill: #e7f2f9
}

.no-touch .flex-direction-nav a:hover svg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center
}

.no-touch .flex-direction-nav a:hover svg * {
    fill: #0a578f
}

@media screen and (max-width: 767px) {
    .flex-direction-nav a {
        display: none
    }
}

.product__image .flex-direction-nav {
    display: none
}

.flex-control-nav {
    position: absolute;
    z-index: 9995;
    bottom: 15px;
    width: 100%;
    text-align: center;
    margin: 0
}

.flex-control-nav li {
    display: inline-block;
    margin: -2px
}

.flex-control-nav li a {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin: 0 5px;
    position: relative;
    text-indent: -9999px;
    display: inline-block;
    cursor: pointer;
    background: #e0e0e0
}

.home-section:nth-child(odd) .flex-control-nav li a {
    background: #e6e6e6
}

.flex-control-nav li a.flex-active {
    background: #0a578f !important;
    cursor: default;
    pointer-events: none
}


/*!
*  3.6. Page
*/

.home-page-content {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative
}

.home-page-content .prlx-bg.overlay-true:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .8
}

.home-page-content h3,
.home-page-content .h3 {
    font-size: 2.125em;
    font-family: Roboto, sans-serif;
    margin-bottom: 55px
}


/*!
*  3.7. FAQ (Accordion)
*/

.jumpstart-accordion h3,
.jumpstart-accordion .h3 {
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    color: #3d4246;
    padding: 35px 95px;
    font-size: 1.125em;
    cursor: pointer;
    position: relative;
    margin: 0 0 -1px 0
}

.no-touch .jumpstart-accordion h3:hover,
.no-touch .jumpstart-accordion .h3:hover {
    background: #f9f9f9;
    color: #0a578f
}

.home-section:nth-child(odd) .no-touch .jumpstart-accordion h3:hover,
.home-section:nth-child(odd) .no-touch .jumpstart-accordion .h3:hover {
    background: #fff
}

.no-touch .jumpstart-accordion h3:hover svg path,
.no-touch .jumpstart-accordion .h3:hover svg path {
    fill: #0a578f
}

.jumpstart-accordion h3 svg,
.jumpstart-accordion .h3 svg {
    position: absolute;
    top: 37px;
    left: 35px
}

.jumpstart-accordion h3 svg path,
.jumpstart-accordion .h3 svg path {
    fill: #3d4246
}

.jumpstart-accordion .content {
    display: none;
    padding: 50px 20px 40px 95px
}

.jumpstart-accordion .content p:last-child {
    margin-bottom: 0
}

.jumpstart-accordion .section.opened svg.plus {
    opacity: 0
}

@media screen and (min-width: 767px) {
    .jumpstart-accordion .section.opened:last-child {
        border-bottom: 1px solid #e9e9e9
    }
}

@media screen and (max-width: 767px) {
    .jumpstart-accordion h3,
    .jumpstart-accordion .h3 {
        font-size: 0.9375em;
        padding: 10px 30px;
        border: none
    }
    .jumpstart-accordion h3 svg,
    .jumpstart-accordion .h3 svg {
        width: 14px;
        height: 14px;
        left: 0;
        top: 15px
    }
    .jumpstart-accordion h3 svg path,
    .jumpstart-accordion .h3 svg path {
        fill: #868f96
    }
    .jumpstart-accordion .content {
        padding: 5px 0px 20px 30px
    }
    .jumpstart-accordion .section.opened h4,
    .jumpstart-accordion .section.opened .h4 {
        color: #0a578f
    }
}


/*!
*  3.8. Features
*/

.features-list h4,
.features-list .h4 {
    margin: 25px 0 15px
}

.features-list i {
    color: #3d4246
}

.features-list img.image {
    width: 80%;
    max-width: 300px !important;
    height: auto
}

.features-list .large--one-half+.one-third {
    clear: both
}

.home-features.columns-i {
    text-align: center
}

.home-features.columns-i .home-section-title:after {
    margin: 25px auto 0
}


/*!
*  3.9. Clients
*/

.home-clients {
    height: 160px
}

.home-clients .wrapper,
.home-clients .clients-list {
    height: 100%
}

.clients-list {
    padding: 25px 0
}

.clients-list li {
    height: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 0
}

.clients-list li .clients-list__center-wrap img {
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.dummy-holder {
    display: block;
    padding-top: 100%
}

.img-container {
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: center;
    font: 0/0 serif;
    width: 90%
}

.img-container .dummy-centered {
    display: inline-block;
    vertical-align: middle;
    height: 100%
}

.img-container img {
    vertical-align: middle;
    display: inline-block;
    max-height: 100%;
    max-width: 100%
}


/*!
*  3.10. Gallery
*/

.packery-container {
    overflow: hidden
}

.packery-container .item {
    overflow: hidden
}

.packery-container .item img {
    max-width: none;
    width: 100%;
    height: auto;
    vertical-align: middle;
    display: none
}

.init .packery-container .item img {
    display: block
}

.packery-container .video-overlay {
    background: rgba(0, 0, 0, 0.2);
    display: none
}

.packery-container .video-overlay:hover {
    background: rgba(0, 0, 0, 0.5)
}

.init .packery-container .video-overlay {
    display: block
}

.packery-container .video-overlay:after {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px
}


/*!
*  3.11. Newsletter
*/

.home-newsletter .password-input-group {
    margin: 0 auto
}

.home-newsletter h4,
.home-newsletter .h4 {
    margin-bottom: 30px
}

.home-newsletter form {
    margin-top: 0
}

.home-newsletter label {
    font-size: 1.125em
}


/*!
*  3.12. Feature collection
*/

.feature-collection .view-all {
    font-weight: bold
}

@media screen and (max-width: 767px) {
    .feature-collection .view-all {
        margin-bottom: 30px
    }
}

.feature-collection .view-all .arrow_right {
    width: 1em;
    height: 1em;
    fill: #0a578f;
    padding-left: 10px;
    padding-top: 5px
}

.feature-collection .view-all:hover .arrow_right {
    fill: #052b48
}


/*!
*  3.13. Map
*/

.map-section {
    position: relative;
    width: 100%;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .map-section {
        min-height: 480px
    }
}

@media screen and (max-width: 767px) {
    .map-section {
        background-color: #f9f9f9
    }
}

.map-section .section-header {
    margin-bottom: 30px
}

.map-section .btn {
    width: auto;
    height: 100%;
    margin-top: 15px;
    white-space: normal
}

.map-section .btn:hover path {
    fill: #fff
}

.map-section #pin {
    height: 14px;
    position: relative;
    top: 1px
}

.map-section__full-width {
    margin: -50px 0
}

.map-section__wrapper {
    height: 100%
}

@media screen and (max-width: 767px) {
    .map-section__wrapper {
        margin: 20px 0
    }
}

.map-section__content-wrapper {
    position: relative;
    text-align: center;
    height: 100%
}

@media screen and (min-width: 768px) {
    .map-section__content-wrapper {
        display: block
    }
}

@media screen and (max-width: 767px) {
    .map-section__content-wrapper {
        margin: 0 20px
    }
}

.map-section__image {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center
}

@media screen and (min-width: 768px) {
    .map-section__image {
        position: absolute
    }
}

.map-section--display-map .map-section__image {
    display: none !important
}

.map-section--load-error .map-section__image {
    display: block !important
}

.map-section__overlay {
    width: 100%;
    min-height: auto;
    position: relative;
    display: block;
    background-color: #fff;
    margin: 60px 0;
    padding: 60px;
    text-align: center;
    z-index: 3
}

@media screen and (max-width: 767px) {
    .map-section__overlay {
        margin: 0;
        padding: 30px 30px
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .map-section__overlay {
        width: 50%
    }
}

@media screen and (min-width: 1201px) {
    .map-section__overlay {
        width: 33%
    }
}

.map-section__overlay>* {
    width: 100%
}

.map-section__overlay .btn {
    max-width: 80%;
    margin: 0 auto
}

@media screen and (min-width: 768px) {
    .map-section__overlay {
        min-height: 360px
    }
    .ie9 .map-section__overlay {
        top: 10%
    }
}

.map-section__link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

@media screen and (min-width: 768px) {
    .map-section__text {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 30px
    }
}

@media screen and (max-width: 767px) {
    .map-section__text {
        order: 0;
        padding: 0 30px 30px
    }
}

@media screen and (min-width: 768px) {
    .map-section__text-second-item {
        border-left: 1px solid rgba(0, 0, 0, 0.2)
    }
}

@media screen and (max-width: 767px) {
    .map-section__text-second-item {
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.2)
    }
}

.map-section__background-wrapper {
    overflow: hidden;
    position: relative
}

@media screen and (min-width: 768px) {
    .map-section__background-wrapper {
        position: static
    }
}

@media screen and (max-width: 767px) {
    .map-section__background-wrapper {
        margin: 0 20px
    }
}

.ie9 .map-section__background-wrapper {
    width: 100%;
    height: 500px
}

.map-section__container {
    width: 100%;
    height: 55vh
}

@media screen and (min-width: 768px) {
    .map-section__container {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 130%;
        height: 100%;
        margin: 0 -30% 0 0
    }
}

.gm-style-cc,
.gm-style-cc+div {
    visibility: hidden
}


/*!
*  3.13. Rich text
*/

#rich-text .rte {
    font-size: 1em
}

.rich-text__heading--large {
    font-size: 3em
}

.rich-text__heading--medium {
    font-size: 2.5em
}

.rich-text__heading--small {
    font-size: 2.0625em
}

.rich-text__text p {
    margin: 0
}

.rich-text__text--large {
    font-size: 1.4375em
}

.rich-text__text--medium {
    font-size: 1.125em
}

.rich-text__text--small {
    font-size: 0.9375em
}


/*!
*  4.1. Blog
*/

.blog-list {
    *zoom: 1
}

.blog-list:before,
.blog-list:after {
    content: " ";
    display: table
}

.blog-list:after {
    clear: both
}

.blog-list+p {
    margin: 115px 0 0 0
}

#infinite-link {
    text-align: center;
    margin-top: 100px
}

.article {
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    display: block;
    float: left;
    height: 200px;
    padding-right: 70px;
    padding-left: 290px
}

.template-blog .article {
    min-height: 290px;
    height: auto
}

.template-blog .article {
    padding-left: 440px;
    padding-top: 30px;
    padding-bottom: 30px
}

.article.no-image {
    padding-left: 70px
}

.article:first-child {
    border-top: 1px solid #e9e9e9
}

@media screen and (min-width: 1025px) {
    .article:hover {
        background: #f9f9f9
    }
    .home-section:nth-child(odd) .article:hover {
        background: #fff
    }
    .article:hover .article__title {
        color: #0a578f
    }
}

.article__img {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 220px;
    height: 200px
}

.template-blog .article__img {
    width: 360px;
    height: 100%;
    height: calc(100% + 1px)
}

.article__img img {
    display: none
}

.article__title {
    font-family: Roboto, sans-serif;
    color: #3d4246;
    font-weight: 600;
    margin-bottom: 5px
}

.article__meta {
    color: #788188;
    margin: 0;
    font-size: 0.875em;
    *zoom: 1
}

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

.article__meta:after {
    clear: both
}

.article__meta li {
    display: inline-block;
    margin-right: 25px
}

.article__meta li:last-child {
    margin-right: 0
}

.article__meta a {
    color: #788188
}

.article__meta a:hover {
    color: #0a578f
}

.template-article .article__meta {
    display: inline-block;
    margin: 15px auto -10px;
    font-size: 1em
}

@media screen and (max-width: 767px) {
    .template-article .article__meta {
        font-size: 0.9375em
    }
}

@media screen and (max-width: 480px) {
    .template-article .article__meta {
        font-size: 0.875em
    }
}

@media screen and (max-width: 767px) {
    .article__meta {
        text-align: center
    }
}

.article__excerpt {
    color: #343434;
    font-size: 1em;
    margin-top: 20px
}

@media screen and (max-width: 480px) {
    .article__excerpt {
        font-size: 0.875em
    }
}

.template-index .article__excerpt {
    display: none
}

.rte {
    font-size: 1em;
    color: #788188
}

@media screen and (max-width: 767px) {
    .rte {
        font-size: 0.875em
    }
}

.article__sharing {
    *zoom: 1;
    width: 100%
}

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

.article__sharing:after {
    clear: both
}

.article__sharing .page__sharing {
    float: left
}

.article__sharing .subscribe-link {
    float: right;
    margin: 41px 15px 0 0
}

.article__sharing svg {
    position: relative;
    top: 5px
}

.article__sharing svg path {
    fill: #e7f2f9
}

.article__sharing a:hover svg path {
    fill: #0a578f
}

@media screen and (max-width: 767px) {
    .article__sharing {
        margin-left: -15px
    }
    .article__sharing .label {
        display: none
    }
}

.subscribe-link {
    color: #343434
}

.subscribe-link svg {
    position: relative;
    top: 5px;
    right: -15px;
    width: 20px;
    height: 20px
}

.subscribe-link svg path,
.subscribe-link svg circle {
    fill: #e7f2f9
}

.subscribe-link a:hover svg path,
.subscribe-link a:hover svg circle {
    fill: #0a578f
}

.template-blog .subscribe-link {
    position: absolute;
    top: 60px;
    right: 15px
}

@media screen and (max-width: 1025px) {
    .template-blog .article {
        padding: 50px 0 25px 0px !important;
        height: auto !important;
        border: none !important
    }
    .template-blog .article:first-child {
        padding-top: 0 !important
    }
    .template-blog .article:after {
        content: "";
        display: block;
        background: #e9e9e9;
        height: 1px;
        width: 200%;
        margin-left: -50%;
        position: relative;
        top: 30px
    }
    .template-blog .article:last-child:after {
        display: none
    }
    .template-blog .article__title {
        text-align: center;
        margin-bottom: 35px
    }
    .template-blog .article__img {
        height: auto !important;
        background-image: none !important;
        position: relative;
        margin-bottom: 25px
    }
    .template-blog .article__img img {
        display: block;
        width: 100%
    }
    .template-blog .subscribe-link {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .home-blog .article {
        padding: 50px 0 25px 0px !important;
        height: auto !important;
        border: none !important
    }
    .home-blog .article:first-child {
        padding-top: 0 !important
    }
    .home-blog .article:after {
        content: "";
        display: block;
        background: #e9e9e9;
        height: 1px;
        width: 200%;
        margin-left: -50%;
        position: relative;
        top: 30px
    }
    .home-blog .article:last-child:after {
        display: none
    }
    .home-blog .article__title {
        text-align: center;
        margin-bottom: 35px
    }
    .home-blog .article__img {
        height: auto !important;
        background-image: none !important;
        position: relative;
        margin-bottom: 25px
    }
    .home-blog .article__img img {
        display: block;
        width: 100%
    }
    .home-blog .article:after {
        width: 50%;
        margin: auto;
        top: 40px
    }
    .home-blog .article__img {
        display: none
    }
    .home-blog .article__meta {
        text-align: center;
        padding: 0 30px
    }
    .home-blog .onboarding {
        padding: 0 30px
    }
}

@media screen and (max-width: 767px) {
    #Comments,
    .comment-form {
        margin-top: 60px !important;
        padding-top: 55px
    }
    #Comments:before,
    .comment-form:before {
        content: "";
        display: block;
        background: #e9e9e9;
        height: 1px;
        width: 200%;
        margin-left: -50%;
        position: relative;
        top: -60px
    }
}

#Comments {
    margin-top: 140px
}

.comments-list {
    margin: 0;
    *zoom: 1
}

.comments-list:before,
.comments-list:after {
    content: " ";
    display: table
}

.comments-list:after {
    clear: both
}

.comment {
    *zoom: 1;
    float: left;
    margin-bottom: 60px;
    width: 100%
}

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

.comment:after {
    clear: both
}

@media screen and (max-width: 767px) {
    .comment {
        margin-bottom: 20px
    }
}

.comment__meta {
    margin-bottom: 10px
}

.comment__meta strong {
    font-size: 1em;
    color: #3d4246;
    display: block
}

@media screen and (max-width: 480px) {
    .comment__meta strong {
        font-size: 0.875em
    }
}

.comment__meta time {
    font-size: 0.875em;
    color: #788188
}

.comment__content {
    font-size: 1em
}

@media screen and (max-width: 480px) {
    .comment__content {
        font-size: 0.875em
    }
}

.comment-form {
    margin-top: 50px
}

@media screen and (max-width: 767px) {
    .comment-form {
        margin-top: 20px !important
    }
}


/*!
*  4.2. Collections
*/

.collection-list .product .badge {
    position: absolute;
    display: block;
    top: 8px;
    right: 8px;
    width: 50px;
    height: 50px;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 100%;
    line-height: 52px;
    color: #fff;
    font-weight: 700
}

.collection-list .product {
    padding-bottom: 50px
}

.collection-list .product>a {
    background: #f9f9f9;
    display: block;
    position: relative
}

.collection-list .product .badge--on-sale {
    background: #E95F5F
}

.collection-list .product .badge--sold-out {
    background: #999
}

.collection-list .product .product__image-wrapper {
    display: block;
    margin-bottom: 10px;
    position: relative
}

.collection-list .product .product__image-wrapper img {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0
}

.collection-list .product img {
    display: block;
    width: 100%
}

.collection-list .product img.lazyload {
    opacity: 0
}

.collection-list h3,
.collection-list .h3 {
    font-size: 1em;
    font-family: Roboto, sans-serif;
    margin: 35px 0 -2px
}

.collection-list h3 a,
.collection-list .h3 a {
    color: #3d4246;
    font-weight: 600
}

.collection-list h3 a:hover,
.collection-list .h3 a:hover {
    color: #0a578f
}

.collection-list img {
    max-width: none;
    width: 100%
}

.collection-list .price {
    font-weight: 400;
    font-size: 1.5em;
    font-family: Roboto, sans-serif;
    color: #939aa0;
    line-height: 1;
    margin-top: 10px
}

.collection-list .price .compare-price {
    text-decoration: line-through;
    font-weight: 300;
    font-size: 0.7em
}

.collection-list .excerpt {
    margin-top: 30px
}

@media screen and (max-width: 767px) {
    .collection-list {
        margin-bottom: -35px
    }
    .collection-list .product {
        padding-bottom: 35px
    }
    .collection-list h3,
    .collection-list .h3 {
        margin-top: 25px;
        font-size: 0.875em
    }
    .collection-list .price {
        font-size: 1.5em
    }
}

@media screen and (max-width: 767px) {
    .collection-list {
        margin-bottom: -15px
    }
    .collection-list .product {
        padding-bottom: 15px
    }
}

.collection-image {
    margin-bottom: 50px
}

.collection-image img {
    max-width: none;
    width: 100%
}

.product {
    *zoom: 1
}

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

.product:after {
    clear: both
}

.product .product__content .price {
    display: inline-block
}

.product .product__content .compare-price {
    text-decoration: line-through;
    color: #788188;
    font-weight: 300
}

@media screen and (max-width: 1025px) {
    .product .product__content {
        width: 100%;
        text-align: center;
        margin-top: 50px
    }
    .product .product__content h3,
    .product .product__content .h3 {
        display: none
    }
    .product .product__content .price {
        margin-bottom: 0
    }
    .product .product__content .form__row {
        margin-top: 50px
    }
    .product .product__content .form__row>div:not(.hidden) {
        float: none;
        display: inline-table;
        padding-bottom: 15px;
        *zoom: 1
    }
    .product .product__content .form__row>div:not(.hidden):before,
    .product .product__content .form__row>div:not(.hidden):after {
        content: " ";
        display: table
    }
    .product .product__content .form__row>div:not(.hidden):after {
        clear: both
    }
    .product .product__content ol,
    .product .product__content ul {
        list-style-position: inside;
        margin-left: 0
    }
}

.product .home-section-title,
.home-section-title.less-margin {
    margin-bottom: 50px
}

.product-description {
    font-size: 1em;
    margin-top: 45px
}

.product__image>* {
    margin-bottom: 30px !important
}

.product__image .flex-control-nav {
    bottom: -40px
}

.product__image h3,
.product__image .h3 {
    display: none
}

@media screen and (max-width: 1025px) {
    .product__image h3,
    .product__image .h3 {
        display: block;
        margin-top: 50px
    }
}

@media screen and (max-width: 1025px) {
    .product__image .flexslider {
        min-height: 0
    }
}

@media screen and (max-width: 1025px) {
    .template-product .header__custom {
        display: none
    }
    .template-product .secondary-title {
        display: block
    }
    .template-product .header__custom+.wrapper {
        padding-top: 70px
    }
}

.page__sharing {
    margin: 45px 0 0 0;
    *zoom: 1
}

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

.page__sharing:after {
    clear: both
}

.template-product .page__sharing {
    margin-top: 60px
}

.template-password .page__sharing {
    margin-bottom: 45px
}

.page__sharing li {
    float: left;
    margin: 0 10px
}

.page__sharing li:first-child {
    margin-left: 0
}

.template-product .page__sharing li:first-child {
    position: relative;
    top: -6px
}

.page__sharing li a {
    display: block;
    margin-top: -8px
}

.page__sharing li a svg * {
    fill: #e7f2f9
}

.page__sharing li a:hover svg * {
    fill: #0a578f
}

.page__sharing li a svg.google path {
    fill: #fff !important
}

@media screen and (max-width: 1025px) {
    .template-product .page__sharing .label {
        display: none
    }
    .template-product .page__sharing li {
        float: none;
        display: inline-block
    }
}


/*!
*  4.3. Cart
*/

.cart__row {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9
}

.cart__row:first-child {
    margin-top: 0
}

.cart__row:first-child {
    padding-top: 0
}

.cart__row .js-qty {
    margin: 0 auto
}

.cart-table th {
    font-weight: normal
}

.cart-table td,
.cart-table th {
    padding: 30px 15px;
    border: none
}

@media screen and (min-width: 768px) {
    .cart__row--table-large {
        display: table;
        table-layout: fixed;
        width: 100%
    }
    .cart__row--table-large .grid__item {
        display: table-cell;
        vertical-align: middle;
        float: none
    }
}

.cart__image {
    display: block
}

.cart__image img {
    display: block;
    max-width: 100%
}

.cart__subtotal {
    margin: 0 0 0 10px;
    display: inline
}

.cart__savings {
    display: block;
    margin: 0 0 0 10px;
    font-size: 1.0625em;
    text-transform: uppercase;
    opacity: .5;
    font-weight: 700
}

.cart__mini-labels {
    display: block;
    margin: 10px 0;
    font-size: 0.75em
}

@media screen and (min-width: 768px) {
    .cart__mini-labels {
        display: none
    }
}

.cart__remove {
    display: block
}

#cart-form {
    border-top: 1px solid #e9e9e9;
    position: relative;
    overflow: hidden
}

#cart-form.table-wrap {
    overflow: initial !important
}

#cart-form .cart-row {
    padding: 18px 0;
    border-bottom: 1px solid #e9e9e9;
    position: relative
}

#cart-form .cart-img {
    width: 150px;
    height: 115px;
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    float: left;
    text-indent: -9999px
}

#cart-form .customer-note {
    padding: 20px
}

#cart-form .content {
    position: absolute;
    height: 100%;
    width: calc(100% - 340px);
    left: 190px;
    top: 0;
    text-transform: uppercase
}

#cart-form .content>div {
    display: table;
    height: 100%
}

#cart-form .content>div>div {
    display: table-cell;
    vertical-align: middle
}

#cart-form .content h3,
#cart-form .content .h3 {
    font-size: 1em;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    margin: 0;
    text-transform: none;
    line-height: 1.2
}

#cart-form .content h3 a,
#cart-form .content .h3 a {
    color: #3d4246
}

#cart-form .content h3 a:hover,
#cart-form .content .h3 a:hover {
    color: #0a578f
}

#cart-form .content .cart-item__variant-title,
#cart-form .content .cart-item__property,
#cart-form .content .cart-item__discount {
    margin-top: 3px;
    font-size: 0.8em;
    opacity: .5;
    font-weight: 700
}

#cart-form .content .cart-item__line-price {
    font-size: 1.5em;
    font-family: Roboto, sans-serif;
    color: #788188;
    font-weight: 700
}

#cart-form .count,
#cart-form .remove {
    position: absolute;
    top: 50%;
    margin-top: -24px;
    right: 40px;
    width: 60px;
    height: 50px;
    padding: 0 5px;
    text-align: center
}

#cart-form .remove {
    right: -16px;
    margin-top: -28px
}

#cart-form .remove .svg {
    fill: #6a6a6a
}

#cart-form .remove:hover .svg {
    fill: #2a2a2a
}

#cart-form textarea[name="note"] {
    width: 100%;
    height: 90px;
    margin-bottom: 20px
}

#cart-form .continue {
    margin-top: 40px;
    float: left;
    display: inline-block
}

#cart-form .cart-price {
    margin-top: 40px;
    float: right;
    text-align: right;
    width: 100%
}

#cart-form .cart-price p {
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 0
}

#cart-form .cart-price span {
    padding-left: 6px
}

#cart-form .cart-price small {
    display: block;
    margin-top: 11px;
    padding-right: 4px
}

#cart-form .to-right {
    float: right;
    display: inline-block;
    margin-top: 40px
}

#cart-form .to-right>* {
    float: left;
    margin-right: 20px
}

#cart-form .to-right>*:last-child {
    margin-right: 0
}

#cart-form input[type="image"] {
    height: auto;
    background: none;
    border: none;
    position: relative;
    top: 10px;
    width: auto
}

@media screen and (max-width: 767px) {
    #cart-form .cart-img {
        display: none
    }
    #cart-form .content {
        position: static;
        height: auto;
        width: auto;
        padding-right: 120px
    }
    #cart-form .content .price {
        margin-top: 0
    }
}

.cart__subtotal-holder {
    margin-bottom: 45px
}

.cart__subtotal-title {
    font-weight: 600;
    font-size: 1em
}

.cart__subtotal {
    font-weight: 700;
    font-size: 2em
}

.cart__total {
    font-weight: 700;
    font-size: 2.25em
}

.cart__subtotal-shipping {
    font-size: 0.8125em;
    color: #788188;
    display: block;
    margin-top: 5px
}

.btn__update {
    width: 54px;
    padding: 0 !important;
    margin-right: 25px
}

.btn__update svg {
    position: relative;
    top: 7px
}

.btn__update svg path {
    fill: #e7f2f9
}

.btn__update:hover svg path {
    fill: #fff
}

.cart--no-cookies .cart-count {
    display: none
}

.cart--no-cookies .cart__continue-btn {
    display: none
}

.cart--no-cookies .cart--empty-message {
    display: none
}

.cart--cookie-message {
    display: none;
    padding-bottom: 25px
}

.cart--no-cookies .cart--cookie-message {
    display: block
}


/*!
*  4.4. Password
*/

.template-password .social-footer,
.template-password .site-footer {
    display: none
}

.template-password .page__sharing {
    margin-top: 65px
}

.template-password .page__sharing .label {
    display: none
}

.template-password .page__sharing li {
    float: none;
    display: inline-block
}

.template-password .mfp-bg {
    background: #fff;
    opacity: 1
}

.template-password .mfp-close {
    color: currentColor
}

.password-input-group {
    width: 425px;
    margin: 45px auto
}

.password-input-group input[type="email"],
.password-input-group input[type="text"],
.password-input-group input[type="password"] {
    float: left;
    width: calc(100% - 150px);
    background-color: #fff
}

.password-input-group input[type="submit"],
.password-input-group button[type="submit"] {
    width: 125px;
    margin-top: 1px
}

.password-form form {
    margin-top: 0
}

.password-form-heading {
    margin-bottom: 30px
}

.password-login {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.9375em;
    display: table;
    height: 100%
}

.password-login>a {
    display: table-cell;
    vertical-align: middle
}

.password-login svg {
    width: 16px;
    height: 16px;
    position: relative;
    top: 1px;
    left: -10px
}

.password-login svg * {
    fill: #000
}

@media screen and (max-width: 767px) {
    .password-login .text {
        position: absolute;
        overflow: hidden;
        clip: rect(0 0 0 0);
        height: 1px;
        width: 1px;
        margin: -1px;
        padding: 0;
        border: 0
    }
}

#password-footer {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    height: 90px;
    padding-top: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #343434
}

#password-footer svg {
    width: 80px;
    height: 20px;
    position: relative;
    top: 4px;
    left: 4px
}

#password-footer svg * {
    fill: #343434
}

#password-footer a:hover #password-footer svg * {
    fill: #0a578f
}

#password-footer .shopify-name {
    display: none
}

#password-footer.full {
    position: fixed
}

#login-modal {
    text-align: center
}

#login-modal h4,
#login-modal .h4 {
    color: #3d4246;
    font-size: 1.125em;
    text-transform: uppercase
}

#login-modal .errors {
    top: 30px
}

@media all and (max-width: 480px) {
    .password-input-group {
        width: 100%;
        margin: 30px auto 35px
    }
    .password-input-group input[type="email"],
    .password-input-group input[type="text"],
    .password-input-group input[type="password"] {
        width: 100%
    }
    .password-input-group input[type="submit"],
    .password-input-group button[type="submit"] {
        width: auto;
        min-width: 125px;
        margin: auto;
        display: block;
        margin-top: 75px
    }
}


/*!
*  4.5. Customer
*/

.address {
    font-size: 1em
}

.address-form {
    clear: both;
    float: left;
    margin-top: 70px;
    width: 100%
}

.address-form.edit {
    margin-top: 0
}


/*!
*  4.6. Captcha
*/

.main-content .shopify-challenge__container {
    margin: 150px auto
}

p {
    margin: 0
}

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

.dropi-section {
    padding: 7rem 0 5rem
}

.dropi-wrapper {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 1200px
}

.dropi-wrapper:before,
.dropi-wrapper:after {
    display: table;
    clear: both;
    content: ''
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    .dropi-wrapper {
		max-width: 96%;
        *max-width: 720px;
    }
}

@media screen and (max-width: 769px) {
    .dropi-wrapper {
        max-width: 96%
    }
}

.dropi-grid {
    margin-left: -2rem;
    word-spacing: -4px
}

.dropi-grid:before,
.dropi-grid:after {
    display: table;
    clear: both;
    content: ''
}

/* ==== */

.dropi-cell {
    display: inline-block;
    width: 100%;	
    padding-left: 2rem;	
    margin-bottom: 16px;
    vertical-align: top;
    word-spacing: initial;
}

.dropi-align .dropi-cell {
    vertical-align: middle
}

/* --- */

.dropi-cell.half {
    width: 49%;
}

.dropi-cell.third {
    width: 33%;
}

.dropi-cell.quarter {
    width: 24%;
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    .dropi-cell.quarter {
		width: 33%;
    }
}

@media screen and (max-width: 769px) and (min-width: 660px) {
    .dropi-cell.half,
    .dropi-cell.third,
    .dropi-cell.quarter {
		width: 49%;
    }
}

@media screen and (max-width: 659px) {
    .dropi-cell.half,
    .dropi-cell.third,
    .dropi-cell.quarter {
        width: 100%;
    }	
}

/* ==== */

.dropi-cell-order {
    display: inline-block;
    width: 100%;
    padding-left: 2rem;
    margin-bottom: 16px;
    vertical-align: top;
    word-spacing: initial;
}

.dropi-align .dropi-cell-order {
    vertical-align: middle
}

/* --- */

.dropi-cell-order.half {
    width: 49%;
}

.dropi-cell-order.third {
    width: 33%;
}

.dropi-cell-order.quarter {
    width: 24%;
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    .dropi-cell-order.quarter {
		width: 33%;
    }
}

@media screen and (max-width: 769px) {
    .dropi-cell-order.half,
    .dropi-cell-order.third,
    .dropi-cell-order.quarter {
        width: 100%;
    }	
}

/* --- */

.dropi-cell-order.forty-percent {
    width: 39%;
}
.dropi-cell-order.sixty-percent {
    width: 59%;
}

@media screen and (max-width: 770px) {
	.dropi-cell-order.forty-percent {
		width: 100%;
	}
	.dropi-cell-order.sixty-percent {
		width: 100%;
	}
}	
	
/* ==== */

.dropi-grid-review {
    margin-left: 0px;
    word-spacing: -4px;
}

.dropi-cell-review {
    display: inline-block;
    width: 100%;
    padding-left: 1%;
    margin-bottom: 16px;
    vertical-align: top;
    word-spacing: initial;
}

.dropi-cell-review:first-child {
	padding-left: 0px;
}
	
.dropi-align .dropi-cell-review {
    vertical-align: middle
}

/* --- */

.dropi-cell-review.half {
    width: 49%;
}

.dropi-cell-review.third {
    width: 33%;
}

.dropi-cell-review.quarter {
    width: 24%;
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    .dropi-cell-review.quarter {
		width: 33%;
    }
}

@media screen and (max-width: 769px) and (min-width: 520px) {
    .dropi-cell-review.half,
    .dropi-cell-review.third,
    .dropi-cell-review.quarter {
		width: 49%;
    }
}

@media screen and (max-width: 519px) {
    .dropi-cell-review.half,
    .dropi-cell-review.third,
    .dropi-cell-review.quarter {
		width: 49%;
    }
}

/* ==== */

.dropi-button {
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    background-color: #0a578f;
    color: #fff;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: 0.3s box-shadow ease-out, 0.3s -webkit-transform ease-out;
    transition: 0.3s transform ease-out, 0.3s box-shadow ease-out;
    transition: 0.3s transform ease-out, 0.3s box-shadow ease-out, 0.3s -webkit-transform ease-out
}

.dropi-button:hover,
.dropi-button:active,
.dropi-button:focus {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

@media screen and (max-width: 769px) {
    .dropi-button {
        padding: 0.65rem 1.25rem;
        font-size: 1.2rem
    }
}

.dropi-title {
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase
}

@media screen and (max-width: 769px) {
    .dropi-title {
        font-size: 1.6rem
    }
}

.dropi-subtitle {
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem
}

@media screen and (max-width: 769px) {
    .dropi-subtitle {
        font-size: 1.4rem
    }
}

.dropi-underbutton {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 300;
    font-size: 1.2rem
}

.dropi-text {
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 1rem
}

.dropi-bar {
    margin-top: 1.5rem;
    width: 100px;
    height: 5px;
    border: 0;
    border-top: 5px solid #0a578f;
    display: table;
    margin-right: auto;
    margin-left: auto
}

.dropi-primary {
    color: #0a578f
}

.dropi-secondary {
    color: #e7f2f9
}

.dropi-note {
    text-align: center
}

.dropi-note i {
    font-size: 1.2rem
}

.dropi-note i:not(.dropi-primary) {
    color: #e0e0e0
}

.dropi-logo {
    max-width: 20rem;
    max-height: 5rem
}

@media screen and (max-width: 769px) {
    .dropi-logo {
        max-width: 15rem;
        max-height: 4rem
    }
}

.announcement {
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem
}

.site-header {
    position: static;
    padding: 0.5rem 0;
    font-size: 1.8rem;
    transition: 0.3s box-shadow ease-out
}

.site-header.sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

.site-header .dropi-logo {
    float: left
}

.site-header .dropi-logo img {
    max-width: 20rem;
    max-height: 5rem
}

.site-header .dropi-button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.site-header .dropi-button:hover,
.site-header .dropi-button:active,
.site-header .dropi-button:focus {
    -webkit-transform: scale(1.02) translateY(-50%);
    transform: scale(1.02) translateY(-50%)
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    .site-header {
        font-size: 1.6rem
    }
}

@media screen and (max-width: 769px) {
    .announcement {
        font-size: 1rem
    }
    .site-header {
        font-size: 1.4rem
    }
    .site-header .dropi-button {
        width: 50px;
        height: 50px
    }
    .site-header .dropi-button i {
        position: relative;
        top: 1px;
        left: -4px
    }
    .site-header .dropi-button span {
        display: none
    }
}

#top-simple .dropi-bar {
    margin-bottom: 2rem
}

#top-simple img {
    margin-bottom: 1rem;
    max-height: 25rem;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#top-simple .dropi-subtitle {
    margin-bottom: 2rem
}

#top-simple .dropi-button {
    display: table;
    margin-right: auto;
    margin-left: auto
}

#top-simple .arrow {
    color: #0a578f;
    font-weight: 900;
    font-size: 4rem;
    display: table;
    margin-right: auto;
    margin-left: auto
}

@media screen and (max-width: 769px) {
    #top-simple img {
        max-height: 18rem
    }
}

#feature-columns .dropi-bar {
    margin-bottom: 4rem
}

#feature-columns img {
    max-width: 16rem;
    max-height: 16rem;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#feature-columns .dropi-subtitle {
    margin-top: 1.5rem;
    color: #0a578f
}

#feature-columns .dropi-text p {
    text-align: center
}

#home-product .slides {
    position: relative;
    height: 35rem
}

#home-product .slides img {
    opacity: 0;
    transition: 0.3s opacity ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#home-product .slides img.active {
    opacity: 1
}

#home-product .thumbs {
    display: table;
	
	text-align: center;
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto
}

#home-product .thumbs img {
    *float: left;
	margin-right: 1%;
	margin-bottom: 1.8%;
    *margin-right: 1rem;
    max-width: calc(33.333% - 0.6666rem);
    max-height: 10rem;
    width: 8rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s border ease-out, 0.3s box-shadow ease-out, 0.3s -webkit-transform ease-out;
    transition: 0.3s border ease-out, 0.3s box-shadow ease-out, 0.3s transform ease-out;
    transition: 0.3s border ease-out, 0.3s box-shadow ease-out, 0.3s transform ease-out, 0.3s -webkit-transform ease-out
}

#home-product .thumbs img:last-of-type {
    margin-right: 0
}

#home-product .thumbs img.active {
    border: 2px solid #0a578f
}

#home-product .thumbs img:hover,
#home-product .thumbs img:active,
#home-product .thumbs img:focus {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

#home-product .dropi-bar {
    margin-bottom: 2rem
}

#home-product .dropi-note {
    margin-bottom: 1rem
}

#home-product .dropi-subtitle {
    margin-bottom: 0
}

#home-product .price {
    margin-bottom: 1rem
}

#home-product .price span {
    margin-left: 0.5rem
}

#home-product .price span:last-of-type {
    margin-left: 0
}

#home-product .price span.dropi-primary {
    font-size: 2.8rem
}

#home-product .dropi-button {
    margin-bottom: 1.5rem;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#home-product .metrics {
    margin-bottom: 1.5rem;
    text-align: center
}

#home-product .metrics .dropi-text {
    font-weight: 500
}

#home-product .metrics span {
    transition: 0.3s color ease-out
}

#home-product strong {
    color: #0a578f
}

@media screen and (max-width: 769px) {
    #home-product .slides img {
        max-height: 25rem
    }
    #home-product .thumbs {
        margin-top: 1rem;
        margin-bottom: 2rem
    }
    #home-product .price span.promo {
        display: block
    }
    #home-product .dropi-button {
        margin-top: 1.5rem
    }
}

#client-list .dropi-cell {
    position: relative
}

#client-list .dropi-cell img {
    display: table;
    margin-right: auto;
    margin-left: auto
}

#reviews .dropi-bar {
    margin-bottom: 4rem
}

#reviews .card {
    padding: 1.5rem 1rem;
	padding-bottom: 30px;
	
	max-width: 100%;
    *max-width: 22rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    transition: 0.3s border ease-out, 0.3s box-shadow ease-out, 0.3s -webkit-transform ease-out;
    transition: 0.3s border ease-out, 0.3s box-shadow ease-out, 0.3s transform ease-out;
    transition: 0.3s border ease-out, 0.3s box-shadow ease-out, 0.3s transform ease-out, 0.3s -webkit-transform ease-out
}

#reviews .card:hover,
#reviews .card:active,
#reviews .card:focus {
    border: 2px solid #0a578f;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

#reviews .today {
    text-align: center
}

#reviews .review {
    font-style: italic
}

#reviews .user {
    float: left;
    font-weight: 600
}

#reviews .country {
    float: right
}

#reviews .country img {
    position: relative;
    top: -7px
}

#button {
    padding: 3rem 0
}

#button .dropi-button {
    display: table;
    margin-right: auto;
    margin-left: auto
}

#cart-template .variants label {
    padding: 1.5rem 2rem 1rem;
    max-width: 25rem;
    width: 100%;
    border-radius: 0.5rem;
    text-align: center;
    display: table;
    margin-right: auto;
    margin-left: auto;
    transition: 0.3s background-color ease-out, 0.3s box-shadow ease-out, 0.3s -webkit-transform ease-out;
    transition: 0.3s background-color ease-out, 0.3s transform ease-out, 0.3s box-shadow ease-out;
    transition: 0.3s background-color ease-out, 0.3s transform ease-out, 0.3s box-shadow ease-out, 0.3s -webkit-transform ease-out
}

#cart-template .variants label.active {
    background-color: #0a578f
}

#cart-template .variants label.active .dropi-title,
#cart-template .variants label.active .dropi-subtitle {
    color: #fff
}

#cart-template .variants label:not(.active) {
    background-color: #f9f9f9
}

#cart-template .variants label:not(.active) .dropi-title,
#cart-template .variants label:not(.active) .dropi-subtitle {
    color: #454545
}

#cart-template .variants label:not(.active):hover,
#cart-template .variants label:not(.active):active {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
}

#cart-template .variants label input[type='radio'] {
    position: relative;
    top: 0.65rem;
    display: inline-block;
    height: 2.5rem
}

#cart-template .variants label .dropi-title {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 2rem
}

#cart-template .variants label .dropi-subtitle {
    margin-bottom: 0;
    font-size: 1.3rem
}

#cart-template img.product {
    transition: 0.3s opacity ease-out;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#cart-template img.product.fade {
    opacity: 0
}

#cart-template .price {
    float: right;
    padding-top: 3rem;
    text-align: right
}

#cart-template .price h3,
#cart-template .price .h3 {
    margin-bottom: 1.5rem
}

#cart-template .price .dropi-subtitle {
    display: inline-block;
    margin-bottom: 0;
    width: 12rem;
    text-align: right;
    font-weight: 900;
    font-size: 1.8rem
}

#cart-template .price hr {
    border-top: 2px solid #454545
}

#cart-template .price .total {
    margin-top: 1rem;
    font-size: 2.8rem
}

#cart-template .upsell {
    float: right;
    clear: both;
    text-align: right
}

#cart-template .upsell h3.dropi-subtitle,
#cart-template .upsell .dropi-subtitle.h3 {
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.8
}

#cart-template .upsell img {
    display: inline-block;
    max-width: 8rem;
    max-height: 6rem
}

#cart-template .upsell h4.dropi-underbutton,
#cart-template .upsell .dropi-underbutton.h4 {
    position: relative;
    top: -1rem;
    display: inline-block;
    margin: 0 0.5rem;
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.2
}

#cart-template .upsell h4.dropi-underbutton span,
#cart-template .upsell .dropi-underbutton.h4 span {
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.2
}

#cart-template .upsell .dropi-button {
    position: relative;
    top: -1.8rem;
    display: inline-block;
    width: 50px;
    height: 50px
}

#cart-template .upsell .dropi-button.remove {
    background-color: #e7f2f9
}

#cart-template .upsell .dropi-button.remove:hover,
#cart-template .upsell .dropi-button.remove:active,
#cart-template .upsell .dropi-button.remove:focus {
    background-color: #e7f2f9
}

#cart-template .upsell .dropi-button i {
    position: relative;
    left: -0.5rem
}

#cart-template .checkout {
    float: right;
    clear: both
}

#cart-template .checkout .dropi-button {
    margin-top: 1.5rem;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#cart-template .secure {
    display: table;
    margin-right: auto;
    margin-left: auto
}

#cart-template .payment {
    float: right;
    clear: both
}

#cart-template .secure,
#cart-template .payment {
    margin-top: 1rem;
    max-width: 25rem
}

#cart-template .notes {
    margin: 1rem auto 0;
    padding: 0;
    max-width: 40rem
}

#cart-template .notes label {
    color: #343434;
    font-weight: 300;
    font-size: 1.2rem
}

#cart-template .notes textarea {
    width: 100%;
    height: 8rem
}

#cart-template .shortcut {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    padding: 0.5rem 0 1rem;
    background-color: #0a578f;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16), 0 -3px 6px rgba(0, 0, 0, 0.23)
}

#cart-template .shortcut h3,
#cart-template .shortcut .h3 {
    color: #fff;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#cart-template .shortcut .dropi-subtitle {
    display: inline-block;
    margin-bottom: 0;
    width: 12rem;
    text-align: right;
    font-weight: 900;
    font-size: 1.8rem
}

#cart-template .shortcut .dropi-button {
    background-color: #fff;
    color: #0a578f;
    display: table;
    margin-right: auto;
    margin-left: auto
}

#cart-template .shortcut .dropi-button:hover,
#cart-template .shortcut .dropi-button:active,
#cart-template .shortcut .dropi-button:focus {
    background-color: #fff;
    color: #0a578f
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    #cart-template .upsell .dropi-button {
        top: 0
    }
    #cart-template .payment,
    #cart-template .secure {
        max-width: 18rem
    }
}

@media screen and (max-width: 769px) {
    #cart-template img.product {
        max-height: 20rem
    }
    #cart-template .price,
    #cart-template .upsell,
    #cart-template .checkout,
    #cart-template .payment {
        float: none;
        display: table;
        margin-right: auto;
        margin-left: auto
    }
    #cart-template .upsell {
        text-align: center
    }
    #cart-template .upsell h3.dropi-subtitle,
    #cart-template .upsell .dropi-subtitle.h3 {
        text-align: center
    }
    #cart-template .upsell .dropi-button i {
        top: 0.2rem;
        left: -0.2rem
    }
    #cart-template .shortcut {
        display: initial
    }
    #cart-template .price {
        padding-top: 1.5rem
    }
    #cart-template .price h3,
    #cart-template .price .h3 {
        margin-bottom: 1rem
    }
    #cart-template .price .dropi-subtitle {
        font-size: 1.6rem
    }
    #cart-template .price .total {
        margin-top: 0.75rem;
        font-size: 2.4rem
    }
    #cart-template .checkout .dropi-button {
        margin-top: 1rem
    }
}

/* FOOTER */
/* ------------------ */

#shopify-section-footer .dropi-section {
	padding: 4rem 0 3rem;
	background-color:#202020; 
}

@media screen and (max-width: 769px) {
	#shopify-section-footer .dropi-section {
		padding: 1.6rem 0 1rem;
	}
}

/* --- */

footer .dropi-cell {
    float: right
}

footer .dropi-underbutton {
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase
}

footer .footer-col1 {
	float: left !important; 
    text-align: left;
	width:33%;
}
footer .footer-col1 .dropi-underbutton,
footer .footer-col1 .dropi-text {
    text-align: left
}

footer .footer-col2 {
	float: left !important;
    text-align: center;
	width:33%;
}
footer .footer-col2 .content {
    padding: 0 0.5rem;
    border-right: 2px solid;
    border-left: 2px solid
}
footer .footer-col2 .dropi-underbutton,
footer .footer-col2 .dropi-text {
    text-align: center
}

footer .footer-col3 {
	float: right !important; 
    text-align: right;
	width:33%;
}
footer .footer-col3 .dropi-underbutton,
footer .footer-col3 .dropi-text {
    text-align: right
}
footer .footer-col3 .dropi-text {
    display: block
}

footer .footer-col3 i {
    margin: 0 0.25rem;
    font-size: 1.6rem
}

footer .dropi-logo {
	margin-top: 10px;	
	margin-bottom: 10px;
    max-width: 15rem;
    max-height: 4rem
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    footer .footer-col2 .content {
        padding: 0;
        border-right: 0;
        border-left: 0
    }
    footer .dropi-logo {
        max-width: 100%
    }
}

@media screen and (max-width: 769px) {
    footer .footer-col1 {
        float: none;
		width:100% !important;
        text-align: center
    }
    footer .footer-col1 .dropi-underbutton,
    footer .footer-col1 .dropi-text {
        text-align: center
    }
	
    footer .footer-col2 {
        float: none;
		width:100% !important;
    }
    footer .footer-col2 .content {
        padding: 2rem 0;
        border-top: 2px solid;
        border-right: 0;
        border-bottom: 2px solid;
        border-left: 0
    }	
	
    footer .footer-col3 {
        float: none;
		width:100% !important;
        text-align: center
    }
    footer .footer-col3 .dropi-underbutton,
    footer .footer-col3 .dropi-text {
        text-align: center
    }
}

footer .copyright-fixstation {
	margin-top: 30px;
}
footer .copyright-mobilestation {
	display: none;
}
	
@media screen and (max-width: 769px) {
	footer .copyright-fixstation {
		display : none;
	}
	footer .copyright-mobilestation {
		display: block;
		text-align: center !important;
		
		padding-top: 30px;
		
		border-top: 2px solid;
		border-color: #ffffff;
	}
}

/* ---- */

footer .shipping {
	text-align:left;
}
@media screen and (max-width: 769px) {
	footer .shipping {
		text-align:center;
	}
}

footer .shipping img {
	height: 39px !important; 
}

footer .payment-method {
	height: 39px !important; 
}

/* --- */
						
footer .copyright-fixstation a,
footer .copyright-mobilestation a{
	color: #e9e9e9;
}

footer .copyright-fixstation a:hover,
footer .copyright-mobilestation a:hover {
	color: #e9e9e9;
}

footer .copyright-fixstation a:visited,
footer .copyright-mobilestation a:visited {
	color: #e9e9e9;
}

/* ------------------ */

.countdown-wrapper {
    display: table;
    margin: 1.5rem auto 2rem
}

.countdown {
    margin: 0 auto
}

.flip-clock-wrapper .flip-clock-dot {
    visibility: hidden;
    opacity: 0
}

.flip-clock-wrapper .flip-clock-divider {
    height: 50px
}

.flip-clock-wrapper .flip-clock-divider.days .flip-clock-label {
    right: -70px
}

.flip-clock-wrapper .flip-clock-divider.hours .flip-clock-label {
    right: -80px
}

.flip-clock-wrapper .flip-clock-divider.minutes .flip-clock-label {
    right: -82px
}

.flip-clock-wrapper .flip-clock-divider.seconds .flip-clock-label {
    right: -90px
}

.flip-clock-wrapper .flip-clock-divider .flip-clock-label {
    top: -1.2rem;
    color: #454545;
    font-size: 1.2rem
}

.flip-clock-wrapper ul {
    width: 37px;
    height: 50px
}

.flip-clock-wrapper ul li {
    line-height: 50px
}

.flip-clock-wrapper ul li a div div.inn {
    color: #f9f9f9;
    font-size: 30px
}

.flip-clock-wrapper ul li a div.up:after {
    top: 24px
}

@media screen and (max-width: 1249px) and (min-width: 770px) {
    .small-clock .flip-clock-divider {
        width: 3px;
        height: 37px
    }
    .small-clock .flip-clock-divider.days .flip-clock-label {
        right: -58px
    }
    .small-clock .flip-clock-divider.hours .flip-clock-label {
        right: -65px
    }
    .small-clock .flip-clock-divider.minutes .flip-clock-label {
        right: -66px
    }
    .small-clock .flip-clock-divider.seconds .flip-clock-label {
        right: -73px
    }
    .small-clock .flip-clock-divider .flip-clock-label {
        top: -1rem;
        font-size: 1rem
    }
    .small-clock ul {
        width: 27px;
        height: 37px
    }
    .small-clock ul li {
        line-height: 37px
    }
    .small-clock ul li a div div.inn {
        font-size: 22px
    }
    .small-clock ul li a div.up:after {
        top: 18px
    }
}

@media screen and (max-width: 769px) {
    .flip-clock-wrapper .flip-clock-divider {
        width: 3px;
        height: 37px
    }
    .flip-clock-wrapper .flip-clock-divider.days .flip-clock-label {
        right: -58px
    }
    .flip-clock-wrapper .flip-clock-divider.hours .flip-clock-label {
        right: -65px
    }
    .flip-clock-wrapper .flip-clock-divider.minutes .flip-clock-label {
        right: -66px
    }
    .flip-clock-wrapper .flip-clock-divider.seconds .flip-clock-label {
        right: -73px
    }
    .flip-clock-wrapper .flip-clock-divider .flip-clock-label {
        top: -1rem;
        font-size: 1rem
    }
    .flip-clock-wrapper ul {
        width: 27px;
        height: 37px
    }
    .flip-clock-wrapper ul li {
        line-height: 37px
    }
    .flip-clock-wrapper ul li a div div.inn {
        font-size: 22px
    }
    .flip-clock-wrapper ul li a div.up:after {
        top: 18px
    }
}

#top-simple img {
    max-height: 23rem
}

#top-simple .dropi-bar {
    margin-bottom: 0rem
}

.dropi-bar {
    margin-top: 1.5rem
}

.dropi-section {
    padding: 1rem 0 3rem
}

#top-simple .dropi-subtitle {
    margin-bottom: 1rem;
    color: #FF5722
}

.dropi-button {
    background-color: #fd6130
}

.dropi-underbutton {
    font-size: 1rem
}

.dropi-section {
    padding: 2rem 0 3rem;
    *padding: 3.5rem 0 3rem;
}

#home-product .slides {
    height: 100%;
    min-height: 360px;
    max-height: 435px
}

#home-product .dropi-bar {
    margin-bottom: 1rem;
    margin-top: 1rem
}

.dropi-note i {
    color: #FFC107
}

#home-product strong {
    color: #0a578f;
    font-size: 1.3rem;
    *display: block;
}

.home-imagebox .content p {
    margin: 15px 0 0px 15px
}

#home-product .slides img {
    max-height: 100%
}

#home-product .dropi-text p {
    font-style: italic
}

@media screen and (max-width: 769px) {
    .announcement {
        font-size: 0.8rem
    }
    #top-simple img {
        max-height: 16rem
    }
    .home-imagebox .one-half {
        width: 100%
    }
    #home-product .dropi-text p {
        *text-align: center
    }
}

/*  ==== */

h1, .h1 {
	display: block;
	margin: 0;
	font-family: Roboto, sans-serif;
    font-size: 30px;
    line-height: 1.4;
    color: #3d4246;
}

@media screen and (max-width: 660px) {
	h1, .h1 {
		font-size: 26px;
	}	
}

@media screen and (max-width: 560px) {
	h1, .h1 {
		font-size: 24px;
	}	
}
	
.site-header a {
	color: #003257;
}

.announcement {
	background-color:#002c4d;
}

/* --- */

.gray {
	color: #CBCBCB !important;
}
