@charset "UTF-8";

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

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

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

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

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

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

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

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

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

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

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

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

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

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

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

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

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

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

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

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

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

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

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

@-webkit-keyframes 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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

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

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

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

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

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

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

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

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

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

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

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

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

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

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

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

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

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

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

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

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

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

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

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

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

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

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

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

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

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

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

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

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

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

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

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

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

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

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

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

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

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

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

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

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

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

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

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

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

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

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

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

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

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

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

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

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

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

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

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

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

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

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

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

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

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

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

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

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

@keyframes rollOut {
    from {
        opacity: 1;
    }

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

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    to {
        opacity: 0;
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

/***** TEXT COLORs *****/

.white-text {
    color: #FFF;
}

.cricket-green-text, .light-green {
    color: #60a630;
}

.dark-green-text, .dark-green {
    color: #036b37;
}

.gold-text {
    color: #ffcb05;
}

.light-blue-text, .light-blue {
    color: #1b75bb;
}

.dark-blue-text {
    color: #12508d;
}

.error-text {
    color: #cf292a;
}

.dark-gray-text {
    color: #404041;
}

.light-gray-text {
    color: #f4f4f4;
}

.black-text {
    color: #000;
}

.light-green-text {
    color: #BDD630;
}

/***** BACKGROUND COLORS *****/

.white-background {
    background-color: #FFFFFF;
}

.cricket-green-background {
    background-color: #60a630;
}

.dark-green-background {
    background-color: #036b37;
}

.gold-background {
    background-color: #ffcb05;
}

.light-blue-background {
    background-color: #1b75bb;
}

.dark-blue-background {
    background-color: #12508d;
}

.dark-gray-background {
    background-color: #404041;
}

.light-gray-background {
    background-color: #f6f6f6;
}

.light-green-background {
    background-color: #BDD630;
}

.black-background {
    background-color: #000000;
}

.red-background {
    background-color: #cf292a;
}
/**
Fix for CSDO-7653
************************************/
.cycle-slide {
    display:none;
}
.cycle-slideshow .cycle-slide {
    display: block;
}


/***********************************
Hero Slider Component Styles
***********************************/
.heroSlider {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #e4e4e4;
}

.heroSlider .slide {
    height: auto;
    overflow: hidden;
    width: 100%;
}

.heroSlider .imageContainer {
    height: 430px;
    margin-top: 0;
}

.heroSlider h1, .heroSlider p.h1 {
    font-size: 36px;
    margin-top: 10px;
    padding: 0 30px;
}

.heroSlider h2, .heroSlider p.h2 {
    font-family:'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 24px;
    margin-top: 10px;
}

.heroSlider p.leadIn {
    font-family:'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 24px;
    margin-top: 10px;
}

.heroSlider .heroText {
    margin-top: 80px;
}

.heroSlider .heroText.lg-top-mrg {
    margin-top: 120px;
}

.heroSlider .heroText > div {
    /* Removed Margin to Content can control spacing */
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 11px;
}

.heroSlider .heroText a, .heroSlider .heroText a:hover {
    color: #000000;
    text-decoration: underline;
}

.heroSlider .sliderLink {
    margin-bottom: 25px;
    /*margin-right: 16.66666667%;*/
}

/*.heroSlider .sliderLink.text-left {
    margin-right: 33.33333333%;
}*/

.heroSlider .sliderLink a {
    border-radius: 10px;
    /*float: left;*/
    font-size: 16px;
    margin: 0;
    /*padding: 10px;*/
    text-align: center;
    text-decoration: none;
    width: auto;
    display: inline-block;
    text-decoration: none;
}

.heroSlider .sliderLink a:hover {
    text-decoration: none;
}

.heroSlider a.navigation {
    position: absolute;
    margin-top: 0;
    opacity: 1;
    width: 30px;
    height: 45px;
    text-indent: -9999px;
    z-index: 999;
    top: 45%;
}

.heroSlider:hover a.navigation {
    opacity:100;
}

a.navigation:focus {
    opacity:100;
}

.heroSlider a.prev {
    background: url(/uiassets/prev-arrow.png) center  no-repeat;
    left: 15px;
    display: block;
}

.heroSlider a.next {
    background: url(/uiassets/next-arrow.png) center no-repeat;
    right: 15px;
    display: block;
}

.heroSlider .pagination {
    position: absolute;
    z-index: 100;
    text-align: center;
    padding: 0;
    width: 100%;
    cursor: pointer;
    bottom: 0;
    margin: 9px 0;
/*
    position: relative;
    z-index: 10;
    margin-bottom: 5px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
    width:100%;
    cursor: pointer;
*/
}

.heroSlider .pagination li {
    list-style: none;
    margin: 0 5px;
    text-indent: -9999px;
    border:none !important;
}
.heroSlider .pagination button {
    background: #e4e4e4;
    border-radius: 20px;
    border: 1px solid white;
    height: 20px;
    width: 20px;    
/*
    background: #f4f4f4;
    border-radius: 20px;
    border: 2px solid white;
    display: inline-block;
    height: 17px;
    list-style: none;
    margin: 0 3px;
    text-indent: -9999px;
    width: 17px;
*/
}
.heroSlider .pagination a.slider-anchor {
    float: none;
    display: inline-block;
    padding: 0;
}
.heroSlider .pagination li.cycle-pager-active button, .heroSlider ul.mobilePagination li.cycle-pager-active button {
    background: #1b75bb;
}
.heroSlider .pagination a.slider-anchor:first-child {
    border-radius: 20px;
}
.heroSlider .pagination a.slider-anchor:last-child {
    border-radius: 20px;
}


.heroSlider .sliderLink a .buttonText{
        padding-right: 20px
}


/***********************************
    LG Styles
***********************************/
@media (min-width: 769px) {

    .heroSlider .sliderLink a {
        padding: 15px 40px;
        margin-bottom: 20px;
    }

}

/***********************************
    MD Styles
***********************************/
@media (min-width: 481px) and (max-width: 768px) {
        .heroSlider .sliderLink a {
            padding: 15px 40px;
            margin-bottom: 40px;
        }
    
}

/***********************************
SM - XS - MD  Styles
***********************************/
@media (max-width: 768px) {
    /*.heroSlider .sliderLink {
        margin-right: 8.33333333%;
    }
    
    .heroSlider .sliderLink.text-left {
        margin-right: 16.6666666667%;
    }*/
}

/***********************************
SM - XS Styles
***********************************/
@media (max-width: 480px) {
    
    .heroSlider .imageContainer {
        height: 200px;
        margin-top: 0;
        text-align: center;
    }
    
    .heroSlider h1 {
        font-size: 24px;
    }
    
    .heroSlider h2 {
        font-size: 18px;
    }
    
    .heroSlider p.leadIn {
        font-size: 14px;
    }
    
    .heroSlider .heroText {
        margin-top: 10px;
        text-align: center;
    }
    
    .heroSlider .heroText > div {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .heroSlider .sliderLink, .heroSlider .sliderLink.text-left {
        margin-right: 0;
    }
    
/*
    .heroSlider {
        padding-top:10px;
    }
*/

    .heroSlider .constrain-width-1024 {
        padding-bottom: 32px;
    }

    .heroSlider .slider-img-parent {
        margin-top:10px;   
    }

    .heroSlider ul.pagination li {
        width: 18px;
        height: 18px;
        border: 1px solid white;
    }

    .heroSlider ul.pagination button.cycle-pager-active {
        background: #1b75bb;
    }

/*
    .heroSlider:hover a.navigation {
        display: none;
    }
*/

    .heroSlider ul.mobilePagination {
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .heroSlider a.prev {
        background: url(/uiassets/prev-arrow-mobile.png) center  no-repeat;
        left: 15px;
        display: block;
    }

    .heroSlider a.next {
        background: url(/uiassets/next-arrow-mobile.png) center no-repeat;
        right: 15px;
        display: block;
    }
    
/*
    .heroSlider ul.mobilePagination li {
        display: inline-block;
        background: #f4f4f4;
        border-radius: 20px;
        border: 2px solid #FFFFFF;
        margin: 0 5px;
        height: 16px;
        width: 16px;
    }
*/

    .heroSlider .sliderLink a {
        padding: 15px 0;
        width: 100%;
        margin-bottom: 40px;
    }
    .heroSlider a.navigation {
        top: 20%;
    }
}

/***********************************
Hero Slider Component Styles
***********************************/
.heroComponent {
    position: relative;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
}

.heroComponent .imageContainer {
    height: 385px;
    margin-top: 0;
}

.heroComponent .imageContainer img {
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.heroComponent .hero-heading {
    font-size: 35px;
    margin-top: 10px;
    line-height: 1.1;
    font-weight: 700;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.heroComponent .hero-subheading {
    font-family:'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 24px;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.1;
}

.heroComponent p.leadIn {
    font-family:'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 24px;
    margin-top: 10px;
}

.heroComponent .heroText {
    margin-top: 80px;
}

.heroComponent .heroText > div {
    /* Removed Margin to Content can control spacing */
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 14px;
}

.heroComponent .heroText a, .heroComponent .heroText a:hover {
    color: #000000;
    text-decoration: underline;
}

.heroComponent .sliderLink {
    margin-bottom: 25px;
    /*margin-right: 16.66666667%;*/
}

.heroComponent .sliderLink a {
    border-radius: 10px;
    /*float: left;*/
    font-size: 16px;
    margin: 0;
    /*padding: 10px;*/
    text-align: center;
    text-decoration: none;
    width: auto;
    display: inline-block;
    text-decoration: none;
}

.heroComponent .sliderLink a:hover {
    text-decoration: none;
}

.heroComponent a.navigation {
    position: absolute;
    margin-top: 0;
    opacity: 1;
    width: 30px;
    height: 45px;
    text-indent: -9999px;
    z-index: 999;
    top: 45%;
}

.heroComponent:hover a.navigation {
    opacity:100;
}

.heroComponent .slide .row {
    margin: 0 15px 20px 15px;
}

a.navigation:focus {
    opacity:100;
}

/***********************************
    LG Styles
***********************************/
@media (min-width: 769px) {

    .heroComponent .sliderLink a {
        padding: 10px 40px;
        margin-bottom: 40px;
    }
}

/***********************************
    MD Styles
***********************************/
@media (min-width: 481px) and (max-width: 768px) {

}

/***********************************
SM - XS - MD  Styles
***********************************/
@media (max-width: 768px) {
    .heroComponent p.leadIn {
        font-size: 20px;
    }

    .heroComponent .hero-heading {
        font-size: 25px;
    }
    
    .heroComponent .hero-subheading {
        font-size: 14px;
    }

    .heroComponent .heroText > div {
        margin-bottom: 12px;
    }

    .heroComponent .sliderLink a {
        padding: 10px 40px;
        margin-bottom: 40px;
    }
}

/***********************************
SM - XS Styles
***********************************/
@media (max-width: 480px) {

    .heroComponent .imageContainer {
        margin-top: 0;
        text-align: center;
        height: auto;
        min-height: 200px;
    }

    .heroComponent .hero-heading {
        font-size: 20px;
    }
    
    .heroComponent .hero-subheading {
        font-size: 14px;
    }

    .heroComponent p.leadIn {
        font-size: 14px;
    }

    .heroComponent .heroText {
        margin-top: 10px;
        padding-left: 50px;
        padding-right: 50px;
        text-align: center;
    }

    .heroComponent .heroText > div {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .heroComponent .sliderLink, .heroComponent .sliderLink.text-left {
        margin-right: 0;
    }

    .heroComponent .constrain-width-1024 {
        padding-bottom: 32px;
    }

    .heroComponent .slider-img-parent {
        margin-top:10px;
    }

    .heroComponent .sliderLink a {
        padding: 10px 0;
        width: 100%;
        margin-bottom: 40px;
    }
    .heroComponent a.navigation {
        top: 20%;
    }

    .heroComponent .slide .row {
        margin: 0 0px 20px 0px;
    }
}

.accordion.active .item-price-subhead {
    color: #000000;
}

.item-added {
    border: 2px solid #60a630;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.4);
}

.item-added > .item-options {
    border: none;
}

.accordion-wrapper{
    padding-left: 0;
    padding-right: 0;
    margin-top: 12px;
    position: relative;
    text-decoration: none;
    display: none;
    width: 100%;
    margin-left: 0;
}

.item .name,
.item-added-text{
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}


.item{
    background: url(/uiassets/down-arrow.png) no-repeat right 30px center #FFFFFF;
    border: 1px solid #bbbdc0;
    cursor: pointer;
    position: relative;
    float: left;
    font-size: 20px;
    padding: 7px 0;
    outline: none;
    width: 100%;
}

.accordion.active .price-wrapper {
    color: #036b37;
}

.hide-in-mobile {
    display: block;
}

.item-price-slash {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-left: -5px;
    padding-right: 2px;
}

.show-in-mobile {
    display: none;
}

.accordion-wrapper .item-added-text {
    display: none;
    color: #000000;
    font-size: 12px;
    margin: -10px 0 0;
}

.accordion-wrapper.item-added .item-added-text.show-in-mobile {
    display: block;
}

.accordion-wrapper.item-added .item-added-text.hidden-xs {
    display: none;
}

.item-added .item {
    border: 1px solid #60a630;
    background: url(/uiassets/down-arrow-white.png) no-repeat right 30px center #60a630;
}

.item {
    background: url(/uiassets/down-arrow.png) no-repeat right 30px center #FFFFFF;
    border: 1px solid #bbbdc0;
    cursor: pointer;
    position: relative;
    float: left;
    font-size: 20px;
    padding: 30px 0;
    outline: none;
    width: 100%;
}


.item.has-focus {
    /* This to make the blue outline appear all around the accordion header when it is open*/
    z-index: 2;
}

.item.active {
    background: url(/uiassets/up-arrow.png) no-repeat right 30px center #f6f6f6;
}

.item-added .item.active {
    background: url(/uiassets/up-arrow-white.png) no-repeat right 30px center #60a630;
}

.item .name {
    color: black;
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0;
    line-height: 26px;
}

.clear-padding {
    padding: 0;
}

.item-options {
    background-color: #FFFFFF;
    border-left: 1px solid #bbbdc0;
    border-bottom: 1px solid #bbbdc0;
    border-right: 1px solid #bbbdc0;
    display: none;
    padding: 20px 0 40px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.item .name,
.item-added-text{
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}

.item-added .name,
.item-added .item .active .name{
    color: #fff;
}

.accordion.active .item-price-subhead {
    color: #000000;
}

.item-added {
    border: 2px solid #60a630;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.4);
}

.item-added > .item-options {
    border: none;
}

.item.active .price-wrapper {
    color: #036b37;
}

.item-price-dollar {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: -7px;
    left: 5px;
}

@-moz-document url-prefix() {
    .item-price-dollar {
        color: #036b37;
        font-size: 16px;
        font-weight: 200;
        position: relative;
        top: -13px;
        left: 1px;
    }
}

.item-price {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: bold;
    padding-right: 2px;
}

.item-price-time {
    margin-top: 5px;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-left: -6px;
    margin-bottom: 21px;
    webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

@media (max-width: 768px) {


    .accordion-wrapper .item-added-text {
        margin: 6px 0 0 20px;
        position: absolute;
        text-align: center;
        width: 60px;
    }


    /* Added for horizontal padding on mobile devices. */
    .accordion-options {
        padding-left: 20px;
        padding-right: 20px;
    }

    .item-added .price-wrapper,
    .item-added .item .active .price-wrapper {
        color: #000;
    }

    .item-price-subhead {
        font-size: 12px;
        color: #000000;
    }

    .item {
        background-position-x: calc(100% - 20px);
        padding:  0 75px 6px 0;
    }

    .accordion.active {
        background-color: #F6F6F6;

    }

    .item .name {
        width: 60px;
        height: 60px;
        padding: 12px 8px;
        line-height: 20px;
        margin: auto 20px;
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        border-radius: 100%;
        vertical-align: middle;
    }

    .item-added {
        border: none;
        box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
    }

    .item-added .item {
        border: 1px solid #bbbdc0;
    }

    .item-added .item .name {
        background-color: #036b37;
    }

    .accordion .name .sub-text {
        display: block;
        font-size: 10px;
    }

    .accordion .price-wrapper {
        margin: 8px 0 5px 125px;
    }

    .accordion .item-price-subhead {
        display: block;
        line-height: 18px;
        padding-left: 130px;
        min-width: 256px;
    }

    .accordion .item-price-subhead.hide-in-mobile {
        display: none;
    }

    .item-added .accordion{
        background: url(/uiassets/down-arrow.png) no-repeat right 30px center #FFFFFF;
    }

    .item-added .accordion.active{
        background: url(/uiassets/up-arrow.png) no-repeat right 30px center #f6f6f6;
    }

    .item-added .accordion .price-wrapper,
    .item .accordion.active .price-wrapper{
        color: #036b37;
    }

    .item > .group-save-icon {
        top: 0;
    }

    .item.active .name {
        color: #000000;
    }

    a.item {
        text-decoration: none;
    }

    .accordion-wrapper .item-added-text {
        margin: 6px 0 0 20px;
        position: absolute;
        text-align: center;
        width: 60px;
    }

    .accordion-wrapper.item-added .item-added-text.show-in-mobile {
        display: block;
    }

    .accordion-wrapper.item-added .item-added-text.hidden-xs {
        display: none;
    }

    .item .item-price-subhead {
        display: block;
        line-height: 18px;
        padding-left: 95px;
        min-width: 256px;
    }

    .item .price-wrapper {
        margin:10px -20px 2px 92px;
    }

    .item-price-time {
        font-size: 16px;
    }

    .price-fix{
        margin-left: -23px;
    }
}


@media (max-width: 359px) {

    .item .name {
        margin: auto 28px;
        padding: 13px 10px;
    }

    .accordion-wrapper .item-added-text {
        margin: 6px 0 0 28px;
    }

    .item .price-wrapper {
        margin: 20px -41px -5px 75px;
    }

    .item .item-price-subhead {
        min-width: 220px;
        padding-left: 82px;
    }

    .subhead-unlimited {
        min-width: 250px !important;
    }

    .clear-padding {
        padding: 0;
    }

}

@media (max-width: 320px){

    .price-wrapper {
        margin: 22px -35px -5px 75px;
    }

    .item .item-price-subhead {
        padding-left: 82px;
    }

    .price-fix{
        margin-left: -23px;
    }

    .item-price {
        font-size: 17px;
    }
}



body, .responsive #mainWrapper {
    background: none #FFFFFF;
}

.border-left {
    border-left: 1px solid #000000;
}

.featureoptions a {
    word-break: break-all;
    display: inline-block;
}

h2 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 30px;
}

h2.notopmargin {
    margin-top: 0;
}

.features .name {
    color: black;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    line-height: 28.5714302062988px;
}


a.features:hover .name, a.features:hover span {
    text-decoration: none;
}

.features-heading {
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-weight: 100;
}

.features-heading-protect {
    padding-left: 34px;
}

.addtocart-show {
    display: none;
}

.picker-show {
    display: none;
}

.noavailablefeatures {
    display: none;
}

.comaptible {
    color: #60a630 !important;
    background: url('/uiassets/icon_feature_compatible.png') 0 0 no-repeat;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    padding-left: 30px;
}

.incomaptible {
    color: #cf292a !important;
    background: url('/uiassets/icon_modal_error.png') 0 0 no-repeat;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    padding-left: 30px;
}

.selectfeatures .description {
    padding: 2px 0;
}

#termsWrapper {
    display: table-cell;
    height: 100%;
    line-height: 1em;
    padding: 10px 0;
    vertical-align: middle;
}

#newterms {
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1em;
    text-decoration: underline;
}

#socialBar {
    height: 45px;
}

#socialIconsWrapper {
    display: table-cell;
    height: 100%;
    padding: 10px 0;
    vertical-align: middle;
}

#socialRow {
    display: table;
    min-height: 50px;
    vertical-align: middle;
}

#socialIconsWrapper {
    text-align: right;
}

#socialIconsWrapper p {
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    margin: 0;
}

#socialIconsWrapper .hidden_links {
    margin-left: 10px;
}

#socialIconsWrapper a {
    display: inline-block;
}

div.tabs {
    margin: 20px -15px 0;
    border-bottom: 2px solid #CDCDCD;
    padding: 0 15px;

}

div.tabs a {
    background-color: #3170b7;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #FFFFFF;
    float: left;
    margin-top: 6px;
    padding: 10px 50px;
    text-align: center;
    box-shadow: -1px 0 1px 0 #000;
}

.tabsCentered{
    display: flex;
    width: 100%;
    justify-content: center;
}

div.tabs .active {
    border: 2px solid #CDCDCD;
    border-bottom-color: #FFFFFF;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #3170b7;
    display: inline;
    float: left;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin-bottom: -2px;
    padding: 14px 50px 10px;
    margin-left: -1px;
}


.buyflow-intro-subhead{
    font-size: 18px;
    line-height: 16px;
    border-bottom: 1px solid #E1DFE1;
    padding-bottom: 8px;
}

.buyflow-intro-note{
    font-size: 12px;
    margin-top: -5px;
    line-height: 13px;
    padding-bottom: 10px;
}

.buyflow-skip{
    padding-top: 22px;
    font-size: 16px;
    margin-left: -52px;
    cursor: pointer;
}

.buyflow-intro-title{
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
}

.buyflow-Title{
    font-size: 20px;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    margin-left: -50px;

}

.buyflow-price{
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 19px;
    font-weight: bold;
    color: #036b37;
    margin-left: -38px;
}

.buyflow-container{
    border: 1px solid #BBBDC0;
    padding-top: 15px;
    margin-left: 12px;
    margin-bottom: 37px;
}

.buyflow-button{
    float: right;
    padding: 16px 0;
}

#featuresPlanGrid{
    padding: 0;
}

.protectPlusIcon{
    background: url(/uiassets/icon-blue-protect.png);
    background-repeat: no-repeat;
    background-size: 26px;
    padding: 16px 0;
}

.protectIcon{
    background: url(/uiassets/icon-blue-protect.png);
    background-repeat: no-repeat;
    background-size: 26px;
    padding: 16px 0;
}

.features-addon{
    margin-left: 22px;
}

.features-drawer{
    margin-left: 98px;

}

.addon-text{
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: "Simply Cricket Book" , Helvetica, Arial, sans-serif;
    font-size: 18px;
}

.basicProtect{
    margin-left: -127px;
}

.hide-in-mobile{
    font-size: 26px;
    font-family: "Simply Cricket Bold" , Helvetica, Arial, sans-serif;

}

.protectColAlign{
    margin-left: 51px;
}

.cricket-protect-basic{
    display: none;
}

hr{
    color: #000000;
}

.btn-secondary {
    background-color: #FFFFFF;
    border: 1px solid #3170B7;
    color: #1b75bb;
    width: 100%;

}

.buyflow-content-background{
    background-color: #F6F6F6;
    margin-left: -15px;
    margin-right: -15px;
}
.buyflow-content{
    margin-left: 15px;
    margin-right: 24px;
    height: 370px;
    padding-top: 15px;
}

.buyflow-content-basic{
    margin-left: 15px;
    margin-right: 24px;
    padding-top: 15px;
    padding-bottom: 40px;

}

.buyflow-heading{
    padding-bottom: 48px;
    margin-left: 10px;
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: #3170B7;
    border: 2px solid #3170B7;
    background-color: #FFFFFF;
    padding: 9px 0;
}

.featurecontainer {
    padding: 0 15px;
}

#cricketProtechTech{
    border: 1px solid #000000
}

.selectfeatures {
    font-size: 16px;
}

.light-blue-background{
    background-color: #1b75bb;
}

.features {
    display: none;
}

.features .costs {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.features .added {
    color: #036b37;
    display: none;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.features.active {
    background: url('/uiassets/plans-select-arrow-active.png') no-repeat right 15px center #3170b7;
}

.features.active .added {
    color: #FFFFFF;
    text-decoration: underline;
}

.feature-wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-top: 12px;
    position: relative;
    text-decoration: none;
}

.protectPlusIcon{
    background: url(/uiassets/icon-blue-protectplus.png);
    background-repeat: no-repeat;
    background-size: 26px;
    padding: 16px 0;
}

.protectIcon{
    background: url(/uiassets/icon-blue-protect.png);
    background-repeat: no-repeat;
    background-size: 26px;
    padding: 16px 0;
}

.protectColAlignleftTextOnly{
    margin-left: 37px;

}

.protectColAlignRightCol{
    margin-left: 62px;
}

.protectColAlignInt {
    margin-left: -16px;
}

.protectIconMobile {
    background: url(/uiassets/icon-crircle-protect.png);
    background-repeat: no-repeat;
    width: 60px;
    background-size: contain;
    padding-top: 60px;
    margin: 0 19px -6px 10px
}

.cricketInternationIconMobile{
    background: url(/uiassets/icon-circle-international.png);
    background-repeat: no-repeat;
    width: 60px;
    background-size: contain;
    padding-top: 60px;
    margin: 0 19px -6px 10px
}

.cricketInternationAddonsIconMobile{
    background: url(/uiassets/icon-circle-icao.png);
    background-repeat: no-repeat;
    width: 60px;
    background-size: contain;
    padding-top: 60px;
    margin: 0 19px -6px 10px
}

.cricketHighSpeedIconMobile{
    background: url(/uiassets/icon-circle-hsd.png);
    background-repeat: no-repeat;
    width: 60px;
    background-size: contain;
    padding-top: 60px;
    margin: 0 19px -6px 10px
}


.cricketmobileHotSpotMobile{
    background: url(/uiassets/icon-circle-mhs.png);
    background-repeat: no-repeat;
    width: 60px;
    background-size: contain;
    padding-top: 60px;
    margin: 0 19px -6px 10px
}

.featureTitle, .mobile-hotspot-add-on-title{
    font-size: 18px;
    margin-left: -15px;
}

.featurePrice{
    font-family: "Simply Cricket Bold" , Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding-right: 2px;
    padding-bottom: 22px;
    color: #036b37;
}

.protectPlus{
    display: none;
}

.protectTextAlign{
    margin-left: -8px;
}

.marginEight {
    margin-left: 8px;
}

.price-wrapper {
    color: #036b37;
    margin: 7px 0 -5px 40px;
}

#cricketProtect, #cricketProtectPlus{
    display:none;
}
.protectDrawerTitle{
    color: black;
    font-size: 26px;
    font-weight: bold;
    margin: 10px -15px;
    /*margin: 10px 0;*/
    line-height: 26px;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}

.hide-in-mobile{
    font-size: 26px;
    font-family: "Simply Cricket Bold" , Helvetica, Arial, sans-serif;

}

.protectColAlign{
    margin-left: 51px;
}

.protectColAlignLogo {
    margin-left: 51px;
    padding-left: 34px;
}

.mhsTitlePad{
    padding-bottom: 18px;
}

.cricket-protect-basic{
    display: none;
}

button {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.modal-dialog button {
    width: 124px;
}

.buyflow-container .buyflow-button button.remove {
    border-color: #cf292a;
    background-color: #cf292a;
}
.buyflow-container .buyflow-button button.remove:hover {
    border-color: #cf292a;
    background-color: #cf292a;
}

button.removeAll:hover, button.removeAll:focus {
    padding: 9px;
}

.featureoptions {
    background-color: #F4F4F4;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    display: none;
    float: left;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.note,.tableNote{
    font-size: 12px;
}

.tableNote{
    padding-left: 36px;
}

.featureoptionsProtect{
    float: left;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.protectPlusContentSpacingInternational{
    padding-top: 60px;
    margin-left: -6px;
}

.featureoptions ul {
    margin-bottom: 0;
    padding: 15px;
}

.featureoptions ul li {
    margin-bottom: 15px;
}

.countrydetails {
    -webkit-animation-duration: 750ms;
    -moz-animation-duration: 750ms;
    animation-duration: 750ms;
    background-color: #F4F4F4;
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    z-index: 50;
}

#international h3 {
    font-size: 20px;
    margin-top: 0;
}

#international .internationalcontainer {
    margin-top: 35px;
    margin-bottom: 15px;
}

#international  .internationalcontainerProtect {
    margin-top: 0;
}

#international .featureaddtocart {
    padding-bottom: 0;
}

.goback {
    background: url('/uiassets/back_button.png') no-repeat transparent;
    margin-left: 20px;
    margin-top: 25px;
    padding-left: 20px;
}

.goback:hover {
    background-image: url('/uiassets/back_button_hover.png');
}

#select .featureoptions {
    padding-bottom: 40px;
}

#select h3 {
    font-size: 20px;
}

#select hr {
    margin: 20px 10px;
    border-top: 1px solid #000000;
}

#select .borderbottom {
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

#select button.seedetails {
    color: #3170b7;
    background-color: #FFFFFF;
    border: 1px solid #BDBDBD;
    font-size: 16px;
    margin-top: 20px;
    padding: 15px;
}

#select button.seedetails:hover, #select button.seedetails:focus {
    color: #12508d;
    border: 1px solid #12508d;
}

.countryprice {
    margin-top: 10px;
}

.countryprice div {
    display: inline-block;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    margin-right: 5px;
}

.countryprice sup {
    color: #036b37;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    top: -0.2em;
}

.countryprice div.total {
    color: #036b37;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
}

.removecountries button {
    color: #3170b7;
    background-color: #FFFFFF;
    border: 1px solid #BDBDBD;
    margin-top: 20px;
}

.removecountries button:hover {
    border: 1px solid #12508d;
    color: #12508d;
}

.donecountries {
    margin-top: 20px;
}

#select button.seedetails.shopcountry {
    width: 100%;
    color: #000000;
    padding: 20px 28px 20px 34%;
    position: relative;
    text-align: center;
}

#select button.seedetails span {
    bottom: 0;
    height: 37px;
    left: 7%;
    margin: auto;
    position: absolute;
    top: 0;
}

#select button.seedetails div.edittext {
    bottom: -15px;
    color: #3170b7;
    font-size: 10px;
    left: 10px;
    position: absolute;
    text-transform: uppercase;
}

#select button.seedetails img {
    height: 100%;
}

.sub-title {
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 9px;
}

/***********************************
Rate Plan Styles
***********************************/
h2.gridheader {
    color: #000000;
    margin-top: 40px;
}

.grid-row.last .grid-cell {
    border-bottom:  1px solid #BBBDC0;
}

.grid-cell {
    width: 16%;
    text-align: center;
    vertical-align: middle;
    padding: 20px;
    border-left: 1px solid #BBBDC0;
    border-top: 1px solid #BBBDC0;
    float: none;
}

.grid-cell a {
    display: block;
}

.grid-cell.last {
    border-right: 1px solid #BBBDC0;
}

.grid-blank {
    border: 0;
}

.grid-title {
    text-align: left;
    vertical-align: middle;
    width: 20%;
}

.grid-title h4, .grid-title .h4 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin: 0 0 5px;
}

.grid-title p {
    font-size: 12px;
}

.even-row {
    background: #f6f6f6;
}

.black-bg .grid-cell.thirtyPlanCell {
    border-color: #404041;

}

.font-34{
    font-size: 34px;
}

.black-bg .grid-cell {
    color: white !important;
    border-color: #404041;
    background-color: #404041;
    padding: 15px 10px;
}

.black-bg .border-left {
    border-left: 2px solid #FFFFFF;
}

.black-bg .grid-cell span {
    color: white !important;
}

.yellow-bg .grid-cell {
    background-color: #fffae6;
}

.left-top-border-radius {
    -webkit-border-radius: 10px 0 0 0;
    border-radius: 10px 0 0 0;
}

.right-top-border-radius {
    -webkit-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
}

.left-bottom-border-radius {
    -webkit-border-radius: 0 0 0 10px;
    border-radius: 0 0 0 10px;
}

.right-bottom-border-radius {
    -webkit-border-radius: 0 0 10px 0;
    border-radius: 0 0 10px 0;
}

.check-mark {
    background: url('/uiassets/check_mark.png') no-repeat center;
}

.uncheck-mark {
    background: url('/uiassets/uncheck_mark.png') no-repeat center;
}

/***********************************
Feature Plan Styles
***********************************/
#featuresPlanGrid {
    padding: 0 15px;
}

#featuresPlanGrid caption {
    padding-left: 15px;
}

#featuresPlanGrid .grid-blank {
    background: none;
}

#gridFeaturesThead h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

#featuresPlanGrid .pricediv {
    display: inline-block;
}

/*The "Or"*/
#featuresPlanGrid .joiningWord {
    font-family: "Simply Cricket Demi", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
}

#featuresPlanGrid .joiningdash {
    color: #60a630;
    font-family: "Simply Cricket Demi", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
}

#featuresPlanGrid .grid-title {
    text-align: left;
}

#featuresPlanGrid .feature-price-dollar {
    color: #60a630;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 100;
    position: relative;
    top: -7px;
    left: 3px;
}

#featuresPlanGrid .feature-price {
    color: #60a630;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 100;
}

#featuresPlanGrid .feature-price.fontfix {
    font-size: 22px;
}

#featuresPlanGrid .plan-price-slash {
    color: #60a630;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 22px;
    margin-left: -5px;
}

#featuresPlanGrid .feature-price-cents {
    color: #60a630;
    font-size: 22px;
    font-weight: 200;
    position: relative;
    top: -12px;
    left: -5px;
}

#featuresPlanGrid .feature-price-time {
    color: #60a630;
    margin-top: 5px;
    margin-bottom: 31px;
    margin-left: -6px;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 100;
}

.feature-info-list-box span {
    font-size: 18px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

table#featuresPlanGrid {
    border-collapse: separate;
    border-spacing: 0;
    padding-bottom: 30px;
    width: 100%;
}

#featuresPlanGrid .grid-title .feature-price-dollar {
    /*color: #60a630; */
    color: #036b37;
    font-size: 18px;
    position: relative;
    top: -12px;
    left: 3px;
    font-weight: 700;
}

#featuresPlanGrid .grid-title .feature-price {
    /*color: #60a630; */
    color: #036b37;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
}

#featuresPlanGrid .grid-title .plan-price-slash {
    /*color: #60a630; */
    color: #036b37;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 32px;
    margin-left: -5px;
}

#featuresPlanGrid .grid-title .feature-price-time {
    /*color: #60a630; */
    color: #036b37;
    margin-top: 5px;
    margin-bottom: 31px;
    margin-left: -6px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.shop_plans .richtext-with-class {
    background-color: #FFFFFF;
    width: inherit;
}

.navbar-spacing{
    padding: 10px 0;
}

@media (min-width: 769px) {
    #mobile-plan-nav {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {

    #featuresPlanGrid .grid-title .feature-price, #featuresPlanGrid .grid-title .plan-price-slash, #featuresPlanGrid .grid-title .feature-price-time {
        font-size: 18px;
    }

    #featuresPlanGrid .grid-title .feature-price-dollar {
        font-size: 18px;
        top: 0;
        left: 4px;
    }

    #featuresPlanGrid .grid-title {
        text-align: left;
    }

    #featuresPlanGrid .joiningWord {
        margin: -3px 10px -22px;
    }
    #mobile-plan-nav .plan-info-box-wrap .price-wrapper .plan-name h3 {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .grid-title {
        width: 50%;
    }

    #featuresPlanGrid caption {
        display: none;
    }

    #featuresPlanGrid td {
        /*width: 50%*/
    }

    #featuresPlanGrid{
        padding: 0 22px 0 0;
    }


    #mobile-plan-nav .unlimited-cell .plan-info-box{
        border-top-right-radius: 10px;
        margin-right: -4px;
    }


    .grid-title h4, .grid-title .h4 {
        margin: 0;
    }

    #international .internationalcontainer {
        margin-bottom: 40px;
    }

    #ratePlanGrid .limited-offer-cell.active {
        display: block !important;
        width: 100%;
    }

    #limitedheader.grid-row {
        display: block !important;
        width: 100%;
    }

    #ratePlanGrid.TalkAndText, #planInformation {
        display: none;
    }

    .hide-modal {
        display: none !important;
    }

    .grid-row .starter-cell, .grid-row .basic-cell, .grid-row .smart-cell, .grid-row .pro-cell, .grid-row .unlimited2-cell, .grid-row .unlimited-cell {
        display: none !important;
    }

    .grid-row .active {
        display: table-cell !important;
    }

    .black-bg .grid-cell {
        background-color: transparent;
        border-color: #000000;
        border-radius: 10px 10px 0 0 !important;
        color: black !important;
    }

    .black-bg .grid-cell span {
        color: black !Important;
    }

    #mobile-plan-nav {
        margin: 0;
    }

    #mobile-plan-nav .plan-info-box-wrap {
        float: left;
        width: 25%;
    }

    #mobile-plan-nav .plan-info-box-wrap.smartPhone {
        width: 33%;
    }

    #mobile-plan-nav .plan-info-box-wrap.smartPhone.first-cell {
        width: 34%;
    }

    #mobile-plan-nav .plan-info-box {
        border-top: 2px solid #1B75BB;
        border-bottom: 2px solid #1B75BB;
        border-left: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
        cursor: pointer;
        padding-bottom: 20px;
        margin: 0;
        background: #1B75BB;
    }

    .ext-webkit #mobile-plan-nav .end-cell .plan-info-box {
        margin: 0 1px 0 5px;
    }

    .ext-safari #mobile-plan-nav .end-cell {
        float: right;
    }

    #mobile-plan-nav .first-cell .plan-info-box {
        margin: 0 0 0 -3px;
        padding-bottom: 24px;
        border-top-left-radius: 10px;
    }

    #mobile-plan-nav .first-cell.active .plan-info-box {
        padding-bottom: 24px;
    }

    .ext-webkit #mobile-plan-nav .first-cell .plan-info-box {
        /*       margin: 0 0 0 1px;*/
    }

    #mobile-plan-nav .active .plan-info-box {
        /*
                -webkit-border-radius: 0.625em 0.625em 0 0;
                border-radius: 0.625em 0.625em 0 0;
        */
        border-left-color: #BBBDC0;
        border-right-color: #BBBDC0;
        border-top-color: #BBBDC0;
        padding-bottom: 20px;
        border-bottom-style: none;
        background: white;
        position: relative;

    }

    #mobile-plan-nav .active.text-cell .plan-info-box:after {
        content: '';
        width: 2px;
        height: 2px;
        background: black;
        display: block;
        position: absolute;
        right: -2px;
        bottom: -2px;
    }

    #mobile-plan-nav .active.first-cell .plan-info-box:before {
        content: '';
        width: 2px;
        height: 2px;
        background: black;
        display: block;
        position: absolute;
        left: -2px;
        bottom: -2px;
    }

    #mobile-plan-nav .price-wrapper .plan-name {
        height: auto;
        margin: 0.7em auto;
        text-align: center;
        width: 90%;
        color: #ffffff;

    }

    #mobile-plan-nav .price-wrapper .plan-name.marginThirty {
        margin-bottom: 6px;
    }

    #mobile-plan-nav .price-wrapper .plan-name h3 {
        /*color: #60a630; */
        color: #FFFFFF;
        vertical-align: middle;
        margin: 0;
        font-size: 10px;
        height: 11px;
        font-family: "Simply Cricket Demi" , Helvetica, Arial, sans-serif;
    }

    #mobile-plan-nav .active .price-wrapper .plan-name h3 {
        color: #1B75BB;
    }

    /*
        #mobile-plan-nav .active .price-wrapper .plan-name h3.thirtyPlan {
            color: #036b37;
        }
    */
    #mobile-plan-nav .plan-price span {
        font-size: 0.750em;
    }

    #addPlan {
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    }

    #addPlanWrap {
        padding: 16px;
        margin-top: -2px;
        border-top: 2px solid black;
        border-left: 2px solid black;
        border-right: 2px solid black;
        border-radius: 0;
        display: none;
    }

    .ext-webkit #addPlanWrap {
        /*
                margin-left: 1px;
                margin-right: 1px;
        */
    }


    .feature-price-align{
        margin: 7px 0 0 -27px;
    }

    .grid-cell grid-title first{
        border-top:none;
    }

    .active .plan-price-dollar {
             color: #000000;
         }

    @-moz-document url-prefix() {
        .plan-price-dollar {
            /*color: #60a630; */
            color: #036b37;
            font-size: 1.571em;
            font-weight: 200;
            position: relative;
            top: -13px;
            left: 1px;
        }
    }

    .plan-price-dollar {
        font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
        /*color: #60a630; */
        color: #036b37 !important;
        font-weight: 200;
        position: relative;
        top: -13px;
        left: 5px;
    }

    #mobile-plan-nav .plan-price {
        font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
        /*color: #60a630; */
        color: #036b37;
        font-size: 3em;
        font-weight: 400;
    }

    .protectPlusContentSpacing{
        padding-top: 64px;
    }

    #mobile-plan-nav .active .plan-price {
        color: #000000;
    }

    #mobile-plan-nav .plan-price-slash {
        /*color: #60a630; */
        color: #036b37;
        font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
        font-size: 2.375em;
        margin-left: -5px;
    }

    #mobile-plan-nav .plan-price-cents {
        font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
        /*color: #60a630; */
        color: #036b37;
        font-size: 1.286em;
        font-weight: 200;
        position: relative;
        top: -0.750em;
        left: -5px;
    }

    #mobile-plan-nav .plan-price-time {
        margin-top: 5px;
        font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
        font-size: 1.571em;
        margin-left: -6px;
        margin-bottom: 21px;
        /*color: #60a630; */
        color: #036b37;
    }

    .plan-info-box {
        text-align: center;
    }

    .grid-cell.active {
        border-right: 1px solid #BBBDC0;
        border-left-style: none;
    }

    #featuresPlanGrid {
        margin-top: 0;
        margin-left: 12px;
        width: 93%;
    }


    #gridFeaturesThead {
        display: none;
    }

    #ratePlanGrid, #gridThead {
        display: block;
    }

    .grid-blank {
        display: none !important;
    }

    .even-row{
        background: #FFFFFF;
    }

    .grid-cell{
        padding: 20px 6px;
    }

    #gridThead .active.grid-cell, #gridFeaturesThead .active.grid-cell {
        display: block !important;
        -webkit-border-radius: 10px 10px 0 0 !important;
        border-radius: 10px 10px 0 0 !important;
        margin-left: 1px;
        width: 99.75%;
    }

    #moreInformation h5 {
        margin: 0;
        padding: 15px 0;
    }

    #gridThead .grid-row.last .grid-cell, #featuresPlanGrid .left-top-border-radius {
        border-radius: 0;
    }

    #ratePlanGrid h2 {
        font-size: 24px;
    }

    .grid-title h5, .grid-title .h5 {
        font-size: 14px;
    }

    #gridFeaturesThead .tablet-phone-only span {
        /*color: #60a630; */
        color: #036b37;
    }

    #ratePlanGrid h3, #gridFeaturesThead h3 {
        font-size: 32px;
    }

    #ratePlanGrid .plan-price, #ratePlanGrid .plan-price-slash, #gridFeaturesThead .feature-price, #gridFeaturesThead .plan-price-slash {
        font-size: 37px;
    }

    #ratePlanGrid .plan-price-dollar, #gridFeaturesThead .feature-price-dollar {
        font-size: 20px;
        top: -10px;
    }

    #gridFeaturesThead .plan-price-time, #gridFeaturesThead .plan-price-time {
        font-size: 24px;
    }

    /*
        #featuresPlanGrid .grid-row.last .text-cell, #featuresPlanGrid .grid-row.last .basic-cell, #featuresPlanGrid .grid-row.last .smart-cell, #featuresPlanGrid .grid-row.last .pro-cell {
            -webkit-border-radius: 0 0 10px 0;
            border-radius: 0 0 10px 0;
        }
    */
    .prev-button {
        position: absolute;
        top: 70px;
        left: 28px;
        z-index: 30;
        cursor: pointer;
    }

    .next-button {
        position: absolute;
        top: 70px;
        right: 28px;
        z-index: 30;
        cursor: pointer;
    }

    #gridFeaturesThead .prev-button, #gridFeaturesThead .next-button {
        top: 55px;
    }

    .intl-pay-price.international-promo {
        font-size: 24px;
    }

    /*helps flow text better at tablet sizes for insurance and other boxes*/
    .shop_plans .feature-info-list-box li, .shop_plans .cricket-protect-feature li {
        padding: 18px 14px;
    }

    .adv-cell.last {
        border-left: 2px solid #000000;
        border-right: 2px solid #000000;
    }

    #gridThead .active.grid-cell.adv-cell.last.top, #gridFeaturesThead .active.grid-cell.adv-cell.last.top {
        border-top: 0;
        border-radius: 0 0 0 0 !important;
    }

    .adv-cell.last.bottom {
        border-bottom: 2px solid #000000;
    }

    .advanced .limited-offer-cell {
        width: 100%;
        border-right: 5px solid #FF6C08;
        border-left: 5px solid #FF6C08;
    }

    .advanced #gridThead .active.grid-cell, .advanced #gridFeaturesThead .active.grid-cell {
        border-right: 5px solid #FF6C08;
        border-left: 5px solid #FF6C08;
    }

    .advanced .adv-cell.last {
        border-right: 5px solid #FF6C08;
    }

    #moreInformation.advanced .col-md-12 {
        border-left: 5px solid #FF6C08;
        border-right: 5px solid #FF6C08;
        border-bottom: 5px solid #FF6C08;
    }

    .advanced .grid-cell.grid-title {
        border-left: 5px solid #FF6C08;
    }

    #featuresPlanGrid .adv-cell.last.bottom {
        border-bottom-right-radius: 10px;
        border-bottom: 5px solid #FF6C08;
    }

    .advanced .grid-row.last .grid-cell {
        border-bottom: 5px solid #FF6C08;
    }

    .featureCatoTable {
        position: absolute;
        left: -10000px;
        top: auto;
    }

    .buyflow-skip{
        padding-top: 0;
        font-size: 12px;
        margin-left: 0;
        cursor: pointer;
    }

    .buyflow-Title {
        margin-left: -36px;
    }

    .buyflow-content {
        height: 445px;
    }

    .navbar-spacing{
        padding: 0;
    }

    .shopFlow{
        margin-left: -19px;
    }

    .buyflow-container {
        margin-top: 16px;
    }

    .hide-in-mobile {
        display: none;
    }

    .show-in-mobile {
        display: block;
    }


    .intTitleFix {
        padding-top: 18px;
    }

    hr{
        border-top: 1px solid #BBBDC0;
        width: 90%;
    }

    .protectDrawerTitle{
        margin: 10px 0;
    }

    .features-drawer, .features-addon{
        margin-left: 0;
    }

    .intenterationalFix {
        padding-top: 10px;
    }

    .price-wrapper {
        margin: 8px 0 -5px 7px;
    }


    .name h2 {
        margin-top: 12px;
    }

    .clear-padding {
        padding: 0 15px;
    }
    .protectColAlign,.protectColAlignLogo, .protectColAlignMobile{
        margin-left: 10px;
    }

    .protectColAlignRightCol{
        margin-left: -16px;
    }

    .basicProtect{
        margin-left: 0;
    }
    .mhsTitlePad{
        padding-bottom: 3px;
    }

    .sub-title {
        font-size: 16px;
        line-height: 20px;
    }
    div.tabs a{
        padding: 10px 10px;
    }

}

@media (max-width: 650px) and (min-width: 481px) {
    .plan-price {
        font-size: 2.000em;
    }
}

@media (max-width: 560px) {
    #select button.seedetails {
        font-size: 14px;
        padding: 10px;
    }

    #select button.seedetails.shopcountry {
        padding: 15px 3px 15px 30%;
    }

    #select button.seedetails span {
        height: 25px;
        left: 5%;
    }

    #select button.seedetails div.edittext {
        bottom: -11px;
        font-size: 9px;
        left: 6px;
    }
}

@media (max-width: 480px) {
    #mobile-plan-nav .plan-price {
        font-size: 2.0em;
        font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
        margin-left: -5px;
    }

    #mobile-plan-nav .plan-price-dollar {
        font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
        font-size: 1.2em;
        position: relative;
        top: -9px;
        left: 1px;
    }

    button.skipnow {
        margin-top: 10px;
    }


    .features .costs {
        padding-right: 0;
    }

    .featureoptions {
        padding-top: 15px;
    }

    .featureoptions ul {
        padding: 0 15px;
    }

    .border-left, .border-leftProtect, .border-top {
        border-left: none;
        border-top: 1px solid #000000;
    }

    .mobileSpaceHeading{
        padding-top: 10px;
    }

    #international .internationalcontainer {
        margin: 0;
        /*padding: 20px 15px;*/
    }

    #select button.seedetails.shopcountry {
        padding: 12px 3px 12px 26%;
    }

    #select button.seedetails span {
        height: 20px;
        left: 5%;
    }

    #select button.seedetails div.edittext {
        bottom: -12px;
        font-size: 8px;
        left: 3px;
    }

    #socialIconsWrapper {
        width: 155px
    }

    #socialBar {
        height: 60px;
    }

    .tabs .data-only-tabs {
        padding: 10px 5px;
    }

    div.tabs .active {
        padding: 14px 10px 10px;
    }

    .cricketint, .cricketintextra {
        margin-top: 15px;
    }

    #featuresPlanGrid .grid-title .feature-price, #featuresPlanGrid .grid-title .plan-price-slash, #featuresPlanGrid .grid-title .feature-price-time {
        font-size: 14px;
    }

    #featuresPlanGrid .grid-title .feature-price-dollar {
        font-size: 14px;
        top: 0;
        left: 4px;
    }

    #featuresPlanGrid .grid-title {
        text-align: left;
    }

    #featuresPlanGrid .joiningWord {
        font-size: 12px;
        margin: -3px 10px -22px;
    }

    .features-heading {
        font-size: 24px;
    }

}

@media (max-width: 359px) {

    .buyflow-content {
        height: 452px;
    }

    .buyflow-heading {
        padding-bottom: 60px;
    }

    .buyflow-button {
        margin-left: 120px;
    }

    .tableNote{
        padding: 21px;
    }

    .buyflow-Title{
        margin-left: -19px;
    }

    .buyflow-price{
        margin-left: -13px;
    }


    .hide-in-mobile {
        display: none;
    }

    .intenterationalFix {
        padding-top: 21px;
    }

    .cricketInternationAddonsIconMobile, .cricketHighSpeedIconMobile, .cricketmobileHotSpotMobile,
    .cricketInternationIconMobile, .protectIconMobile{
        margin: 2px -3px 3px 10px;
    }

    .protectPlusContentSpacing{
        padding-top: 67px;
    }

    .intenterationalFix {
        padding-top: 23px;
    }

    .featureTitle, .mobile-hotspot-add-on-title {
        font-size: 18px;
        margin-left: -9px;
    }

    .protectIcon, .protectPlusIcon{
        display:none;
    }

}



/*# sourceMappingURL=features.a5e523be4bbdda8f4eee.css.map*/