@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700,900');
/* YSP-specific customisations */
/*--------------------------------------------------------------
 Colour Variables
 --------------------------------------------------------------*/
/*Default colours*/
/*ysp logo colour*/
/*Primary colours*/
/*Secondary colours*/
/*Hover colours*/
/*Social Media*/
/*!
 * 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: 0.75s;
    animation-duration: 0.75s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

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

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

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

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

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

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

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

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

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

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

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

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

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

/* 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.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }

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

@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: 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.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        -webkit-transform: 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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

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

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

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

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

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

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

    to {
        -webkit-transform: 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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

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

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

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

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

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

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

    to {
        -webkit-transform: 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.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceOut {
    -webkit-animation-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(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

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

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

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

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

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

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

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

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

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

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

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

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

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

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    to {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'WebComponentsIcons';
    src: url('/assets/font/WebComponentsIcons.eot?gedxeo');
    src: url('/assets/font/WebComponentsIcons.eot?gedxeo#iefix') format('embedded-opentype'), url('/assets/font/WebComponentsIcons.ttf?gedxeo') format('truetype'), url('/assets/font/WebComponentsIcons.woff?gedxeo') format('woff'), url('/assets/font/WebComponentsIcons.svg?gedxeo#WebComponentsIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
 Form Styling
 --------------------------------------------------------------*/
input {
    font-size: 1.1rem !important;
    font-weight: 300;
}

.placeholder {
    color: #ccc;
}

form textarea, form input[type="text"], form input[type="password"], form input[type="email"], form input[type="number"], form input[type="button"], form input[type="date"] {
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    width: 100%;
    font-size: 1rem;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all 0.3s;
}

form button[type="submit"] {
    -webkit-appearance: none;
    border: none;
    border-radius: 2rem;
    outline: none;
    font-size: 1rem;
    padding: 1rem 0;
    box-shadow: none;
    box-sizing: content-box;
    color: #fff;
    background-color: #ef5c6e;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

form button[type="submit"]:active, form button[type="submit"]:hover, form button[type="submit"]:focus {
    background-color: #ea2e45;
}

form textarea, form select, form input[type="text"], form input[type="password"], form input[type="email"], form input[type="number"], form input[type="date"] {
    color: #3f4f5e;
}

form .ysp-input-block, form select, form input[type="text"], form input[type="password"], form input[type="email"], form input[type="number"], form input[type="date"] {
    border-bottom: 1px solid #9c9c9c;
    box-shadow: 0 1px 0 0 #9c9c9c;
}

form .ysp-input-block:focus, form select:focus, form input[type="text"]:focus, form input[type="password"]:focus, form input[type="email"]:focus, form input[type="number"]:focus, form input[type="date"]:focus {
    -webkit-appearance: none;
    border: none;
    border-bottom: 1px solid #ef5c6e;
    box-shadow: 0 1px 0 0 #ef5c6e;
}

/* outside of form eg filter on finances */
.select-container select {
    border-bottom: 1px solid #9c9c9c;
    box-shadow: 0 1px 0 0 #9c9c9c;
}

.select-container select:focus {
    -webkit-appearance: none;
    border: none;
    border-bottom: 1px solid #ef5c6e;
    box-shadow: 0 1px 0 0 #ef5c6e;
}

input:disabled, input[readonly], textarea:disabled, textarea[readonly], select:disabled, select[readonly] {
    opacity: 0.7;
}

select {
    border: none;
    padding: 0;
    background-image: none;
}

#ysp-form-settings .select-container {
    height: auto;
    padding: 0 0 0.5rem 0;
    font-weight: 400;
}

select:disabled {
    background-color: transparent;
}

label {
    font-size: 1rem !important;
    color: #3f4f5e;
    max-width: 100%;
    word-wrap: break-word;
}

input[type=date]::-webkit-clear-button, input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-calendar-picker-indicator {
    display: none;
}

.ysp-input {
    position: relative;
    font-weight: 400;
}

.ysp-input .fa-caret-down {
    position: absolute;
    right: 0;
    top: 0.3em;
    font-size: 140%;
}

.ysp-input select:focus {
    outline: none;
}

.readonly .icon-pencil, .readonly .fa-pencil {
    display: none;
}

.ysp-help {
    color: #7bb919;
}

.ysp-help-inverse {
    background: #7bb919;
    color: #fff;
    padding: 0.8em;
    border-radius: 1em;
    text-align: center;
}

.ysp-help-inverse a {
    color: #fff !important;
}

.ysp-row label, li#ysp_enter_username label, li#ysp_enter_password label, li#ysp_enter_firstname label, li#ysp_enter_lastname label, li#ysp_enter_postcode label, li#ysp_enter_email label {
    font-weight: 700;
}

.input-field#tlf_yspbundle_userprofiletype_user_firstname label, .input-field#tlf_yspbundle_userprofiletype_user_lastname label, .input-field#tlf_yspbundle_userprofiletype_user_username label, .input-field#tlf_yspbundle_userprofiletype_user_email label, .input-field#tlf_yspbundle_changeemailtype_emailAddress label, .input-field#tlf_yspbundle_changeemailtype_currentPassword label, .input-field#tlf_yspbundle_nonusercontactus_name label, .input-field#tlf_yspbundle_nonusercontactus_phoneNumber label, .input-field#tlf_yspbundle_nonusercontactus_emailAddress label, .input-field#tlf_yspbundle_contactus_firstName label {
    display: block !important;
}

.ysp-row #tlf_yspbundle_userprofiletype_user_username, .ysp-row span#tlf_yspbundle_userprofiletype_user_firstname label, .ysp-row span#tlf_yspbundle_userprofiletype_user_lastname label, .ysp-row span#tlf_yspbundle_userprofiletype_postcode label, .ysp-row span#tlf_yspbundle_userprofiletype_user_username label, .ysp-row span#tlf_yspbundle_changeemailtype_emailAddress label, .ysp-row span#tlf_yspbundle_changeemailtype_currentPassword label, .ysp-row span#tlf_yspbundle_nonusercontactus_name label, .ysp-row span#tlf_yspbundle_nonusercontactus_phoneNumber label, .ysp-row span#tlf_yspbundle_nonusercontactus_emailAddress label, .ysp-row span#tlf_yspbundle_contactus_firstName label, .ysp-row #user_email label, .ysp-row #tlf_yspbundle_userprofiletype_user_username i, .input-field label#dob {
    display: none;
}

.ysp-input .input-field#tlf_yspbundle_userprofiletype_user_username, .ysp-input .input-field#tlf_yspbundle_userprofiletype_user_email {
    margin-top: 0;
}

.input-external-link {
    position: relative;
    float: right;
    margin-top: -55px;
}

.input-external-link a {
    color: #ef5c6e;
    text-decoration: underline;
}

.input-external-link a#email-change-link {
    right: 25px;
    position: absolute;
}

.input-external-link a:hover {
    text-decoration: none;
    color: #ef5c6e;
}

.ysp-input-block {
    padding-top: 0.7rem;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}

.foundation-form-errors {
    color: #e57373;
}

.foundation-form-errors #tlf_yspbundle_registrationtype_firstName, .foundation-form-errors #tlf_yspbundle_registrationtype_lastName, .foundation-form-errors #tlf_yspbundle_registrationtype_email, .foundation-form-errors #tlf_yspbundle_registrationtype_postcode, .foundation-form-errors #tlf_yspbundle_welcometype_firstName, .foundation-form-errors #tlf_yspbundle_welcometype_lastName, .foundation-form-errors #tlf_yspbundle_welcometype_email, .foundation-form-errors #tlf_yspbundle_welcometype_postcode {
    padding-bottom: 30px;
}

.foundation-form-errors #tlf_yspbundle_registrationtype_consent, .foundation-form-errors #tlf_yspbundle_registrationtype_compulsoryone {
    margin-top: 20px;
}

.placeholder {
    color: #ccc;
}

.error {
    font-weight: 700;
}

.error ul {
    list-style-type: none;
}

.k-grid tr:hover {
    background: #9c3;
}

.survey-continuation-row {
    border-bottom: none !important;
}

.survey-end-row {
    border-bottom: 1px solid #3f4f5e;
}

.message-warning {
    color: #ef5c6e;
}

#confettiLayer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
}

nav {
    box-shadow: none;
}

div#desktop-nav {
    display: none;
}

.sticky-container {
    display: none;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    z-index: 4;
}

nav#mobile-nav ul.ysp-tabs > li.tabmob a.slideout-link-mob {
    border-bottom: 2px solid #fff;
}

nav#mobile-nav {
    position: fixed;
    bottom: -5px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #e9e9e9;
    height: 70px;
    line-height: 70px;
}

nav#mobile-nav ul.lessthan580 {
    width: 100% !important;
    bottom: 61px !important;
}

nav#mobile-nav ul.lessthan580 > li.tabmob a {
    height: 50px;
}

nav#mobile-nav ul.lessthan580 > li.slideout-list a {
    height: 40px !important;
    line-height: 30px !important;
}

nav#mobile-nav ul.ysp-tabs {
    height: 65px;
    line-height: 65px;
}

nav#mobile-nav ul.ysp-tabs > li.tabmob a {
    color: #3f4f5e;
    font-weight: bold;
    line-height: 40px;
    height: 45px;
    display: block;
    padding: 0px 10px;
    border-bottom: 2px solid #e9e9e9;
}

nav#mobile-nav ul.ysp-tabs li.tabmob a:hover {
    color: #ccc;
}

nav#mobile-nav ul.ysp-tabs li.tabmob ul {
    transition: bottom 300ms linear 0s;
    display: none;
    position: absolute;
    background: #fff;
    bottom: 61px;
    border: 1px solid #ccc;
    border-bottom: 0;
    width: 50%;
    padding-left: 10px;
    right: 0;
    z-index: -1;
}

nav#mobile-nav ul.ysp-tabs li.tabmob ul li {
    float: none;
    width: 100%;
    list-style: none;
    color: #000;
    text-align: left;
    padding: 5px 0;
}

nav#mobile-nav ul.ysp-tabs li.tabmob ul.lessthan580 li {
    width: 50%;
    float: left;
}

nav#mobile-nav ul.ysp-tabs li.tab {
    height: 65px;
    float: left;
    line-height: 65px;
    width: 25%;
    text-align: center;
    font-size: 15px;
    list-style: none;
}

nav#mobile-nav ul.ysp-tabs li.tab .notification-wrapper {
    position: absolute;
    width: 25%;
    top: 0;
}

nav#mobile-nav ul.ysp-tabs li.tab .notification-wrapper .notification {
    background-color: #f00;
    border-radius: 50%;
    color: white;
    padding: 1px 10px;
    font-size: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: 5px;
}

nav#mobile-nav ul.ysp-tabs li.tab a i {
    color: #3f4f5e;
    font-size: 25px;
    height: 37px;
    line-height: 45px;
    display: block;
    padding: 0 2px;
}

nav#mobile-nav ul.ysp-tabs li.tab a.button-collapse {
    margin: 0;
}

nav#mobile-nav ul.ysp-tabs li.tab a.active i, nav#mobile-nav ul.ysp-tabs li.tab a.active span {
    color: #ef5c6e !important;
    font-weight: bold;
}

nav#mobile-nav ul.ysp-tabs li.tab a.active span {
    border-bottom: #ef5c6e 2px solid;
}

nav#mobile-nav ul.ysp-tabs li.tab span {
    color: #3f4f5e;
    display: block;
    line-height: 23px;
    text-transform: lowercase;
    font-size: 1.15em;
}

nav#mobile-nav ul.ysp-tabs .indicator {
    height: 6px;
    border-radius: 50px;
    background: #9c3;
    bottom: 2px;
}

nav#mobile-nav ul.ysp-tabs li.tabmob ul li:last-child::after {
    content: '\f0d8';
    font-family: "Font Awesome 5 Free";
    color: #e6e6e6;
    position: absolute;
    bottom: 0;
    transform: scale(4, 4);
    left: 74%;
    font-weight: 900;
}

nav#mobile-nav ul.ysp-tabs li.tabmob ul.lessthan580 li:last-child::after {
    left: 87%;
    bottom: 0;
}

.slide-out-nav {
    min-height: 100%;
    width: 275px;
    position: absolute;
    background: #fff;
    top: 0;
    right: -275px;
    bottom: 0;
    padding: 20px;
    text-align: center;
    z-index: 3;
    color: #3f4f5e;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.slide-out-nav img {
    margin-bottom: 30px;
}

.slide-out-nav ul hr.slide-out-hr {
    border-top: 1px solid #e9e9e9;
    margin: 0;
    border-radius: 50%;
}

.slide-out-nav ul a {
    font-size: 1.05em;
    color: inherit;
}

.slide-out-nav ul a li {
    text-align: left;
    padding: 15px 0;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
}

.slide-out-nav ul a:hover {
    color: #9c3;
}

.slide-out-nav ul a:hover li {
    margin-left: 10px;
}

.slide-out-nav ul a.btn-log-out {
    background: #e57373;
    border-radius: 50px;
    font-size: 1.2em;
    box-shadow: 0;
    padding: 15px 40px;
    display: block;
    margin: 0 auto;
    margin-top: 6vh;
    color: #fff;
    -webkit-transition: background 150ms ease;
    transition: background 150ms ease;
}

.slide-out-nav ul a.btn-log-out:hover {
    background: #dd4848;
}

.slide-out-active {
    height: 100vh;
    right: 0;
    bottom: 0;
    top: 0;
    position: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    visibility: hidden;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.active-overlay {
    opacity: 1;
    transition: all 50ms ease-in-out 0s;
    visibility: visible;
    z-index: 1;
}

/*slideout menu on the right*/
nav#slideout-menu {
    background: #fff none repeat scroll 0 0;
    border-left: 2px solid #e9e9e9;
    bottom: 0;
    color: #576364;
    min-height: 100vh;
    height: calc(100% + 50px);
    padding-top: 100px;
    position: absolute;
    right: -300px;
    top: 0;
    transition: right 300ms linear 0s;
    width: 300px;
    z-index: 3;
    padding-left: 25px;
    display: none;
}

nav#slideout-menu #slideout-button {
    margin-top: 30%;
    text-align: center;
}

nav#slideout-menu #slideout-button a {
    font-size: 1.2em;
    padding: 15px 40px;
}

nav#slideout-menu img {
    margin: 0 auto;
}

nav#slideout-menu ul#slideout-links {
    font-size: 1.05em;
    margin: 0 0 50px 0;
}

nav#slideout-menu ul#slideout-links li {
    list-style: outside none none;
    transition: all 500ms ease 0s;
    border-bottom: 2px solid #e9e9e9;
    padding: 20px 0;
    width: 90%;
}

nav#slideout-menu ul#slideout-links li:last-child {
    border-bottom: none;
}

nav#slideout-menu ul#slideout-links li a {
    color: #3f4f5e;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

nav#slideout-menu ul#slideout-links li a:hover {
    color: #53697d;
    margin-left: 8px;
}

nav#slideout-menu img {
    margin: 0 auto;
}

nav#slideout-menu hr.yellow-hr {
    border-top: 1px solid #e9e9e9;
    margin: 20px auto 20px 0;
    width: 90%;
}

nav#slideout-menu #slideout-button {
    margin-top: 30%;
    text-align: center;
}

nav#slideout-menu #slideout-button button {
    font-size: 1.2em;
    padding: 15px 40px;
}

ul#slideout links {
    margin-left: 50px;
}

.slideout-active {
    box-shadow: -5px 0 10px 0 rgba(50, 50, 50, 0.2);
    right: 0 !important;
    display: block !important;
}

.blur {
    backface-visibility: hidden;
    filter: blur(2px);
    -webkit-filter: blur(2px);
    /* Prefixed CSS3 blur filters */
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    transform: translateZ(0px);
}

body {
    transition: margin-left 300ms ease 0s;
}

body.user-profile, body.user-surveys, body.user-account, body.user-other {
    height: auto;
    min-height: 100%;
}

body.user-profile .sidebar-active:after, body.user-surveys .sidebar-active:after, body.user-account .sidebar-active:after, body.user-other .sidebar-active:after {
    background: rgba(0, 0, 0, 0) url("/assets/images/triangle.png") no-repeat scroll center center / cover;
    content: "";
    display: inline-block;
    height: 125px;
    position: absolute;
    right: -54px;
    width: 64px;
    margin-top: -25px;
    z-index: -1;
}

body.nobgimage {
    background-image: none !important;
    background-color: #9c3;
}

body.user-profile .sidebar-active::after {
    top: 40%;
}

body.user-other .sidebar-active::after {
    display: none;
}

body.user-surveys .sidebar-active::after, body.user-account .sidebar-active::after {
    top: 25%;
}

.body-slideout {
    margin-left: -300px !important;
}

/* sidebar navigation */
#sidebar-outer {
    background: #eee none repeat scroll 0 0;
    font-weight: 100 !important;
    min-height: 100vh;
    padding: 0;
    position: absolute;
    height: 100%;
    top: 50px;
    bottom: 0;
    z-index: 1;
    display: table;
    padding-bottom: 60px;
}

#sidebar-outer hr.sidebar-hr {
    border-top: 1px solid #ccc;
    margin: 0 auto;
    width: 90%;
}

#sidebar-outer .sidebar {
    background-color: #eee;
}

#sidebar-outer .cash-out, #sidebar-outer .payment-pending {
    margin-bottom: 40px;
    display: inline-block;
}

#sidebar-outer.sidebar-fixed {
    position: absolute;
    display: block;
}

#sidebar-outer .sidebar {
    background: #eee none repeat scroll 0 0;
}

#sidebar-outer a.sidebar-content {
    color: #576364;
    cursor: pointer;
    display: block;
    height: 100%;
    padding: 50px 30px;#sidebar-outer
    width: 100%;
    z-index: 1;
}

#sidebar-outer a.sidebar-content h3 {
    font-size: 14px;
    padding-top: 0;
}

#sidebar-outer a.sidebar-content h4 {
    font-size: 12px;
}

#sidebar-outer a.sidebar-content h4.sidebar-link {
    color: #ef5c6e;
    display: inline-block;
    transition: all 200ms ease 0s;
}

#sidebar-outer a.sidebar-content h4.sidebar-link:hover {
    color: #ea2e45;
}

#sidebar-outer a.sidebar-content i {
    color: #9c3;
}

#sidebar-outer a.sidebar-content .sidebar-circle-heading {
    background: #fff none repeat scroll 0 0;
    border: 5px solid #9c3;
    border-radius: 50%;
    color: #24b699;
    height: 100px;
    position: relative;
    text-align: center;
    transition: all 500ms ease 0s;
    width: 100px;
    margin: 0 auto;
}

#sidebar-outer a.sidebar-content .sidebar-circle-heading h2 {
    font-size: 1.8em;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 35%;
    color: #3f4f5e;
    font-weight: 400;
}

#sidebar-outer a.sidebar-content:hover {
    text-decoration: none;
}

#sidebar-outer a.sidebar-content:hover h4 {
    text-decoration: underline;
}

#sidebar-outer a.sidebar-content:hover .sidebar-circle-heading {
    border: 5px solid #7aa329;
}

#sidebar-outer a#sidebar-profile {
    text-align: center;
    padding-bottom: 0;
}

#sidebar-outer a#sidebar-profile h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: 10px;
    color: #9c3;
    text-decoration: none !important;
    word-break: break-all;
}

#sidebar-outer a#sidebar-profile img#sidebar-avatar {
    border: 5px solid #9c3;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 500ms ease 0s;
    width: 200px;
    height: 200px;
    overflow: hidden;
    color: transparent;
    background: url("/assets/images/profile-picture-placeholder.png") no-repeat 0 0;
    background-size: 100% 100%;
}

#sidebar-outer a#sidebar-profile:hover h2 {
    text-decoration: none !important;
}

#sidebar-outer a#sidebar-profile button {
    position: relative;
}

#sidebar-outer a#sidebar-profile button::after {
    transition: all 300ms ease 0s;
}

#sidebar-outer a#sidebar-profile button:hover {
    margin-right: -20px;
    padding-right: 40px;
}

#sidebar-outer a#sidebar-profile button:hover::after {
    color: #fff;
    content: "";
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 12px;
}

#sidebar-outer #view-profile-button {
    text-align: center;
    margin-top: 20px;
}

span#thumbnail {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 5px solid #9c3;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

span#thumbnail img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: auto;
    max-width: none;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

span#thumbnail.portrait img {
    width: 100%;
    height: auto;
}

.sidebar-active {
    position: relative;
}

span.btn {
    display: block;
}

.btn {
    border: medium none;
    border-radius: 30px;
    color: #fff;
    padding: 1rem 0;
    text-shadow: none;
}

.btn#left {
    float: left;
}

.btn#right {
    float: right;
}

.btn#square-at-mob {
    border-radius: 0;
    display: inline-block;
}

.btn:active, .btn:hover, .btn:focus {
    background-color: #ea2e45;
}

.btn.viewprofile {
    padding: 10px 30px;
    display: inline-block;
}

.btn:active, .btn:focus, .btn:hover {
    color: #fff;
    outline: 0 none !important;
}

.btn-red {
    background: #ef5c6e;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
}

.btn-red a {
    color: #fff;
}

.btn-green {
    background: #9c3;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
}

.btn-green.#payment-pending {
    pointer-events: none;
}

.btn-green a {
    color: #fff;
}

.btn-red-stroke {
    background: #fff;
    color: #ef5c6e;
    border: 5px solid #ef5c6e;
    padding: 10px 20px;
}

.btn-red-stroke:hover, .btn-red-stroke:focus {
    color: #ef5c6e;
}

.btn-red-off {
    color: #3f4f5e;
    padding: 10px 20px;
    border: 5px solid #fff;
}

.btn-red-off:hover, .btn-red-off:focus {
    color: #ef5c6e;
    border: 5px solid #ef5c6e;
}

input.btn-red-stroke-fill {
    font-size: 1.6rem !important;
}

.btn-red-stroke-fill {
    background: #fff;
    color: #ef5c6e;
    border: 5px solid #ef5c6e;
    padding: 0 10px;
    font-weight: 700;
    display: inline-block;
    line-height: normal;
    margin: 2px 0;
}

.btn-red-stroke-fill:hover, .btn-red-stroke-fill:focus {
    color: #fff;
    background: #ef5c6e;
}

.btn-red-stroke-fill:hover a, .btn-red-stroke-fill:focus a {
    color: #fff;
}

.btn-red-stroke-fill a {
    color: #ef5c6e;
}

.btn-red:active, .btn-red:focus, .btn-red:hover {
    background: #ea2e45;
}

.btn-green:active, .btn-green:focus, .btn-green:hover {
    background: #9c3;
}

.tlf-social-icon {
    font-size: 3.5rem;
}

.tlf-social-icon:nth-of-type(2) {
    display: none;
}

.fa-facebook-square {
    color: #3b5998;
}

.fa-facebook-square:hover {
    color: #4c70ba;
}

.fa-twitter-square {
    color: #00aced;
}

.fa-twitter-square:hover {
    color: #21c2ff;
}

.fa-paypal {
    color: #003087;
}

.fa-paypal:hover {
    color: #0042ba;
}

@media only screen and (min-width: 640px) {
    .btn#square-at-mob {
        border-radius: 30px;
    }
}

/*--------------------------------------------------------------
 Site Styling - Mobile and global styling
 --------------------------------------------------------------*/
/*
 *	Contents
 *
 *	Note: use CTRL + F and search for '//*' to find these content headings within the code.
 *
 *	1. Elements (Section, Aside, Blockquote, etc.)
 *	2. Default Lists (Lists ULs, LIs)
 *	3. Header (Header elements)
 *	4. Image Styling (If images require borders, etc.)
 *	5. Content (Body content styling)
 *	6. Footer (Footer elements)
 *	7. Tablet Breakpoint (Responsive Tablet)
 *	8. Desktop Breakpoint (Responsive Desktop)
 *	9. Large Desktop Breakpoint (Responsive Large Desktop)
 *
 */
.vich-file {
    display: none;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    font-style: normal;
    color: #3f4f5e;
    position: relative;
}

img {
    image-rendering: -webkit-optimize-contrast;
    /* Webkit (non-standard naming) */
}

body.bgimageatmobile {
    background: #9c3 url("/assets/images/bgtile.png") repeat !important;
}

body.is-reveal-open {
    overflow-y: scroll !important;
}

body.is-reveal-open .reveal-overlay {
    overflow-y: auto !important;
}

h1, h2, h3, h4, h5, h6 {
    font-style: normal;
    line-height: 1.2;
}

h1, h2 {
    font-weight: 100;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4rem;
}

p.sup {
    font-size: 1.4rem;
}

p.sup a {
    color: #3f4f5e;
    text-decoration: underline;
}

p.sup a:visited {
    color: #3f4f5e;
}

p.sup a:hover {
    color: #53697d;
    text-decoration: none;
}

p.sup a:active, p.sup a:focus {
    color: #53697d;
}

p a {
    color: #ef5c6e;
    text-decoration: underline;
}

p a:visited {
    color: #e57373;
}

p a:hover {
    color: #ea2e45;
    text-decoration: none;
}

p a:active, p a:focus {
    color: #ea2e45;
}

a {
    color: #3f4f5e;
}

a:hover {
    cursor: pointer;
    color: #53697d;
}

h2.primary-info-heading {
    color: #9c3;
    font-weight: 900;
    font-size: 2.1rem;
    margin-bottom: 5px;
}

h2.primary-info-heading#default {
    color: #3f4f5e;
    margin-top: 20px;
}

h2.main-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #9c3;
    margin: 15px 0;
    word-break: break-all;
}

h2.main-heading.bonus-surveys {
    color: #f5ab35;
}

h2.main-heading#error, h2.main-heading#notfound {
    word-break: normal;
}

h3.primary-info-subheading {
    font-size: 1.1rem;
    margin: 0;
}

li#fa a span {
    margin-top: -26px;
}

ul.select-dropdown li span {
    font-size: 1.1em;
}

/* flexbox class for nice vertical alignment*/
.flexbox-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

section {
    margin-left: 1rem;
    margin-right: 1rem;
}

img.desk-logo {
    width: 520px;
}

.container {
    margin: 0 auto;
    /*max-width: 1140px;*/
    width: 100%;
    padding-bottom: 100px;
}

.main {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

#logo-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 1rem;
    z-index: 1;
    min-height: 59px;
}

#logo-container.no-profile-avatar {
    position: relative;
    margin-bottom: 3%;
}

#logo-container.no-profile-avatar {
    position: relative;
    margin-bottom: 3%;
}

#logo-container.no-profile-avatar {
    position: relative;
    margin-bottom: 3%;
}

#logo-container .info-block {
    text-align: center;
}

#logo-container img.logo {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    width: 75%;
    height: auto;
    position: relative;
    padding: 0 1rem;
    image-rendering: crisp-edges;
}

#user-avatar {
    display: inline-block;
    padding: 4px;
    border: 5px solid #fff;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    max-width: 200px;
    max-height: 200px;
    margin-top: 2%;
    margin-bottom: -40px;
    overflow: hidden;
    color: transparent;
    background: url("/assets/images/profile-picture-placeholder.png") no-repeat 0 0;
    background-size: 100% 100%;
}

#user-avatar.preferences {
    margin-bottom: 0;
}

#user-avatar-other, #user-avatar.preferences {
    border: 5px solid #9c3;
    display: inline-block;
    padding: 4px;
    border-radius: 50%;
}

#primary-info {
    overflow: hidden;
    margin-top: 3rem;
    padding-top: 1rem;
}

#primary-info h2, #primary-info h3 {
    text-align: center;
}

#primary-info .progress-outer {
    border-radius: 30px;
    height: 10px;
    border: 1px solid #e57373;
    width: 50%;
    margin: 7px auto 0;
    position: relative;
    max-width: 250px;
}

#primary-info .progress-outer .progress-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    background: #e57373;
    border-radius: 30px;
    transition: width 1s;
}

.header-coloured {
    background: #9c3;
}

.ysp-form {
    margin-top: 1rem;
}

#ysp-register ul li, .ysp-signin ul li, #contact-form ul li {
    list-style: none;
    padding: 5px 10px 10px 0;
}

#ysp_register a, #ysp_sign_up a, #ysp_sign_up_small a, #ysp_privacy a {
    color: #3f4f5e;
}

#ysp_register p, #ysp_sign_up p, #ysp_sign_up_small p, #ysp_privacy p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

#ysp_register p span, #ysp_sign_up p span, #ysp_sign_up_small p span, #ysp_privacy p span {
    font-weight: bold;
}

#sidebar {
    height: 100%;
    min-height: 100vh;
    background: #e9e9e9;
}

.row > div {
    margin-bottom: 1rem;
}

.ysp-input-block > a {
    display: block;
}

.ysp-label {
    font-size: 1.1rem;
    background-color: #3f4f5e;
    cursor: pointer;
}

section#register, section#login {
    margin-left: 0;
    margin-right: 0;
}

section#register ul, section#login ul {
    margin-left: 1rem;
    margin-right: 1rem;
}

section#register a, section#login a {
    color: #ef5c6e;
    text-decoration: underline;
}

section#register a:visited, section#login a:visited {
    color: #e57373;
}

section#register a:hover, section#login a:hover {
    color: #ea2e45;
    text-decoration: none;
}

section#register a:active, section#login a:active, section#register a:focus, section#login a:focus {
    color: #ea2e45;
}

section#register a.external, section#login a.external {
    font-weight: bold;
    color: #3f4f5e;
}

.sign-in-or-register {
    padding: 20px 0;
}

label#ysp_remember_me {
    padding: 20px 0;
}

label.label-checkbox {
    cursor: pointer;
}

.item-media i.icon {
    background: no-repeat center center;
    background-size: 100% auto;
    display: inline-block;
    font-style: normal;
    position: relative;
    vertical-align: middle;
}

#ysp-register label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox, label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox, .ysp-login label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox {
    background-color: white;
}

#ysp-register label.label-checkbox i.icon-form-checkbox, .ysp-login label.label-checkbox i.icon-form-checkbox {
    border: 1px solid #ef5c6e;
}

#ysp-register label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox::after, .ysp-login label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox::after, label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox::after {
    background-image: none;
    color: #ef5c6e;
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    margin-left: -7px;
    margin-top: -12px;
    font-weight: 900;
}

label.label-checkbox i.icon-form-checkbox::after {
    content: " ";
    height: 9px;
    left: 50%;
    margin-left: -6px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    width: 12px;
}

#ysp-register label.label-checkbox i.icon-form-checkbox, .ysp-login label.label-checkbox i.icon-form-checkbox {
    border: 2px solid #ef5c6e;
}

label.label-checkbox i.icon-form-checkbox {
    border: 2px solid #ef5c6e;
    border-radius: 32px;
    box-sizing: border-box;
    height: 32px;
    width: 32px;
    position: relative;
}

label#ysp_agree_compulsoryone, label#ysp_agree_compulsorytwo, label#ysp_agree_tc {
    margin-top: 20px !important;
}

label#ysp_agree_compulsoryone.label-checkbox .item-media, label#ysp_agree_compulsorytwo.label-checkbox .item-media, label#ysp_agree_tc.label-checkbox .item-media {
    float: left;
}

label#ysp_agree_compulsoryone.label-checkbox .item-inner, label#ysp_agree_compulsorytwo.label-checkbox .item-inner, label#ysp_agree_tc.label-checkbox .item-inner {
    margin-left: 40px;
}

input #tlf_yspbundle_registrationtype_emailConsent, input #tlf_yspbundle_registrationtype_profileConsent, input #tlf_yspbundle_registrationtype_consent {
    margin-top: 0;
}

div #tlf_yspbundle_registrationtype_emailConsent, div #tlf_yspbundle_registrationtype_profileConsent, div #tlf_yspbundle_registrationtype_consent {
    margin-top: 20px !important;
}

input#_remember_me {
    opacity: 0;
}

/*hides an unwanted extra version of facebook and twitter icons on registration and login pages only*/
.tlf-social-icon .fa-facebook, .tlf-social-icon .fa-twitter {
    display: none !important;
}

/*necessary for 3 social media icons to show correctly */
/*has children page */
ul#children_list {
    list-style-type: none;
    width: 100%;
    counter-reset: child;
    margin-bottom: 0 !important;
}

ul#children_list li.child > div > label:before {
    counter-increment: child;
    content: 'Child ' counter(child);
}

div.child a.add_child_link {
    color: #fff !important;
}

a.profile-child-delete span.fa-times-circle {
    color: #ef5c6e;
    font-size: 29px;
    vertical-align: bottom;
    margin: 0 5px;
}

div.child {
    float: left;
    clear: left;
}

select.ui-datepicker-year, select.ui-datepicker-month {
    background: url("/assets/images/date-down.png") no-repeat 100% 50% #fff;
}

.datepicker-close {
    width: 20px !important;
    padding: 5px !important;
}

.survey-started {
    padding: 0 0.5em;
    background-color: #ef5c6e;
    color: white;
    border-radius: 30px;
    margin-left: 0.5em;
    font-size: 80%;
    word-wrap: normal;
}

#foundation-flash-messages {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

#foundation-flash-messages .callout, #foundation-flash-messages .error, #foundation-flash-messages .info, #foundation-flash-messages .success, #foundation-flash-messages .alert {
    border: 2px solid #ccc;
    padding: 10px;
    color: #333;
    text-align: center;
}

#foundation-flash-messages .error {
    color: #ea2e45;
    border-color: #ea2e45;
    background-color: #fce6e2;
    text-shadow: 1px 1px #ccc;
}

#foundation-flash-messages .info {
    color: #333;
    border-color: #999;
    background-color: #fff;
    text-shadow: 1px 1px #ccc;
}

#foundation-flash-messages .success {
    border-color: #7aa329;
    background-color: #e1faea;
    color: #090;
    text-shadow: 1px 1px #ccc;
}

#foundation-flash-messages .alert {
    border-color: #f90;
    color: #ee4900;
    background-color: #f8e692 !important;
    text-shadow: 1px 1px #ccc;
}

/*survey list page*/
.survey-details {
    font-size: 1.6rem;
    color: #3f4f5e;
    border-bottom: 1px solid #3f4f5e;
    word-wrap: break-word;
}

.survey-details .prize-title {
    font-weight: 700;
    color: #ef5c6e;
}

.survey-details a.survey {
    color: #3f4f5e;
}

.survey-details a.survey:hover {
    color: #53697d;
}

.survey-details > div {
    margin: 1rem 0;
}

#complete-profile {
    border-bottom: 2px solid #ef5c6e;
    font-size: 1.8rem;
    font-weight: bold;
}

#complete-profile a.survey {
    color: #3f4f5e;
}

#complete-profile a.survey:hover {
    color: #53697d;
}

/* finances page */
.list-block .payment-section:nth-of-type(odd) {
    background-color: #e9e9e9;
}

.list-block .payment-section:nth-of-type(odd) .row > div {
    border: 1px solid #fff;
}

.payment-heading {
    font-weight: 700;
}

.payment-section > div, .payment-info .row > div, .payment-heading .row > div {
    margin-bottom: 0;
}

.payment-section {
    margin: 10px 0;
}

.payment-section > div {
    margin-bottom: 0;
}

.payment-section .row > div {
    border: 1px solid #e9e9e9;
    padding: 5px;
    height: 35px;
}

p.finances-text {
    font-size: 1.2rem;
}

p.finances-text, h4.finances-text {
    line-height: 1rem;
    height: 45px;
    margin: 0;
    padding: 10px;
}

h3.finances-balance {
    font-size: 1.6rem;
    font-weight: bold;
}

h4.total-paid {
    background: #f3f3f3;
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(243, 243, 243, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(243, 243, 243, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(243, 243, 243, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding: 10px;
    display: inline-block;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
}

/* the table at desktop view */
.k-grid {
    border: none !important;
}

.k-grid tr th {
    padding: 0.4rem 0.1rem !important;
    border: none !important;
    box-sizing: border-box;
    background: #fff;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #e9e9e9 !important;
    color: #3f4f5e !important;
}

.k-grid td {
    padding: 0.4rem 0.1rem !important;
    box-sizing: border-box;
    border-color: #e9e9e9;
}

.k-grid td:first-of-type {
    border-left: 1px solid #e9e9e9;
}

.k-grid td:last-of-type {
    border-right: 1px solid #e9e9e9;
}

/*styles for the pager - now on all screen sizes */
.k-pager-numbers .k-state-selected {
    border-radius: 0 !important;
    background: #ef5c6e !important;
    margin: 0;
    line-height: 2em;
    border-color: #ef5c6e !important;
}

.k-pager-wrap {
    text-align: left;
    display: inline-block;
    padding: 20px 0 0 0;
    border-color: #fff;
    background-color: #fff;
    background-image: none, linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
}

.k-pager-wrap .k-icon, .k-pager-wrap .k-link:after {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 1em;
    height: 1em;
    text-align: center;
    vertical-align: middle;
    background-image: none;
    font: 16px/1 'WebComponentsIcons';
    speak: none;
    font-variant: normal;
    text-transform: none;
    text-indent: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
}

.k-pager-wrap .k-icon:before, .k-pager-wrap .k-link:after:before {
    margin: auto;
    width: 1em;
    height: 1em;
    line-height: 1;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.k-pager-wrap .k-i-arrow-60-up:before {
    content: "\e004";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-60-up:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-end-up:before {
    content: "\e008";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-end-up:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-60-left:before {
    content: "\e007";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-60-left:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-end-left:before {
    content: "\e00b";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-end-left:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-60-right:before {
    content: "\e005";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-60-right:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-end-right:before {
    content: "\e009";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-end-right:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-60-down:before {
    content: "\e006";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-60-down:hover:before {
    color: #fff;
}

.k-pager-wrap .k-i-arrow-end-down:before {
    content: "\e00a";
    color: #ef5c6e;
}

.k-pager-wrap .k-i-arrow-end-down:hover:before {
    color: #fff;
}

.k-pager-wrap > .k-link, .k-pager-numbers .k-link {
    border-radius: 0 !important;
    border-color: #ef5c6e !important;
    margin: 0;
    border-right: none;
}

.k-pager-wrap > .k-link:hover, .k-pager-numbers .k-link:hover {
    color: #fff !important;
}

.k-pager-wrap > .k-state-expanded .k-link {
    border: none !important;
}

.k-pager-wrap > .k-state-expanded .k-current-page .k-link {
    border: 1px solid #ef5c6e !important;
}

.k-state-expanded, .k-current-page {
    background-color: #fff !important;
}

.k-current-page .k-link {
    background-color: #ef5c6e !important;
    color: #fff !important;
    background-image: none !important;
}

.k-pager-numbers li.k-current-page span {
    padding-right: 0 !important;
}

.k-pager-last {
    border-right: 1px solid #ef5c6e !important;
}

ul.k-pager-numbers {
    margin: 0 0 0 -9px !important;
}

ul.k-pager-numbers .k-state-selected {
    color: #fff !important;
}

ul.k-pager-numbers .k-state-selected:hover {
    border: 1px solid #ef5c6e !important;
    background-color: #ef5c6e !important;
}

.k-current-page .k-pager-nav {
    width: 4em !important;
}

.k-current-page .k-link::after {
    background-image: none !important;
    content: "\E006" !important;
}

.k-link:hover, .k-link:visited {
    background: #ef5c6e !important;
    border-radius: 0 !important;
}

.k-link:hover {
    color: #fff !important;
}

/*override various kendo styles for dropdowns on account page*/
.select-container {
    color: #3f4f5e;
}

.select-container #finances-filter, .select-container#finances {
    font-size: 1.2rem;
    font-weight: 300;
}

.select-container #finances-filter .k-dropdown, .select-container#finances .k-dropdown {
    font-size: 1.2rem;
    font-weight: 300;
}

.select-container .k-input {
    color: #3f4f5e;
    font-weight: 400;
}

.select-container .k-dropdown-wrap {
    background: #fff !important;
}

.select-container .k-dropdown-wrap.k-state-focused, .select-container .k-dropdown-wrap.k-state-border-down, .select-container .k-dropdown-wrap.k-state-active {
    border-bottom: 2px solid #ef5c6e !important;
}

.select-container .k-dropdown {
    overflow: hidden;
    width: 100%;
    border-radius: 0 !important;
}

.select-container .k-dropdown-wrap .k-select .k-i-arrow-60-down {
    background-position: 5px -32px;
}

.select-container .k-dropdown-wrap.k-state-default {
    border: none;
    border-bottom: 2px solid #9c9c9c;
    background-color: #fff !important;
    border-radius: 0;
}

.select-container .k-dropdown-wrap.k-state-default:hover {
    border: none;
    border-bottom: 2px solid #9c9c9c;
    background-color: #fff !important;
    border-radius: 0;
}

.select-container .k-dropdown-wrap.k-state-default:focus {
    -webkit-appearance: none;
    border: none;
}

.select-container .k-state-border-down {
    background: #fff !important;
}

.select-container .k-state-border-down .k-dropdown-wrap {
    background: #fff !important;
}

.k-state-selected, .k-state-selected:link, .k-state-selected:visited {
    background-color: #fff !important;
    color: #3f4f5e !important;
    border: 1px solid #fff !important;
}

.k-state-hover {
    border-radius: 0 !important;
    background-image: none !important;
    background-color: #e9e9e9 !important;
}

.k-state-selected:hover {
    border-radius: 0 !important;
    background-image: none !important;
    background-color: #e9e9e9 !important;
}

body .k-popup {
    padding: 0 !important;
    margin: 0;
    border-radius: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: #fff;
    border: 2px solid #e9e9e9 !important;
}

/*handle flash of table at wrong size as kendo loads*/
table#account-summary {
    width: 100%;
    color: #3f4f5e;
}

table#account-summary thead {
    border: none;
}

table#account-summary thead tr {
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #e9e9e9;
}

table#account-summary thead tr th {
    text-align: center;
    color: #3f4f5e !important;
}

table#account-summary tbody td {
    padding: 0.4rem 0.1rem;
}

/*mobile view only*/
#finances-list {
    border: none;
}

.finance-list-item table.finance-list-item-table tbody tr {
    background: #e9e9e9;
}

.finance-list-item table.finance-list-item-table tbody th {
    text-align: right;
    border: 1px solid #fff;
    width: 50%;
}

.finance-list-item table.finance-list-item-table tbody td {
    border: 1px solid #fff;
}

.finance-list-item:nth-child(odd) table.finance-list-item-table tbody tr {
    background: #fff;
}

.finance-list-item:nth-child(odd) table.finance-list-item-table tbody th {
    text-align: right;
    border: 1px solid #e9e9e9;
    width: 50%;
}

.finance-list-item:nth-child(odd) table.finance-list-item-table tbody td {
    border: 1px solid #e9e9e9;
}

.no-padd {
    padding: 0;
}

.circle-icon {
    background: #669;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    vertical-align: middle;
    padding: 15px;
    color: #fff;
    margin-bottom: 10px;
}

.thankyou-modal, .deactivate-modal, .ineligible-modal, .profilecomplete-modal {
    border-radius: 20px;
    top: 0 !important;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 4px rgba(86, 156, 215, 0.5);
}

.thankyou-modal h2, .deactivate-modal h2, .ineligible-modal h2, .profilecomplete-modal h2 {
    margin: 30px 0 10px 0;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    font-size: 1.7rem;
    font-weight: 400;
}

.thankyou-modal h3, .deactivate-modal h3, .ineligible-modal h3, .profilecomplete-modal h3 {
    font-size: 1.5rem;
}

.thankyou-modal h3 span, .deactivate-modal h3 span, .ineligible-modal h3 span, .profilecomplete-modal h3 span {
    font-weight: bold;
}

.thankyou-modal p, .deactivate-modal p, .ineligible-modal p, .profilecomplete-modal p {
    margin-top: 10px;
}

.thankyou-modal .warning, .deactivate-modal .warning, .ineligible-modal .warning, .profilecomplete-modal .warning {
    font-size: 4rem;
    color: orange;
}

.ineligible-modal h2, .ineligible-modal h3 span {
    font-weight: 600 !important;
}

.ineligible-modal p.ineligible {
    font-size: 1.5rem;
    line-height: 1.4em;
    font-weight: 600;
}

button.close-button {
    font-weight: bold;
    color: #ef5c6e;
    font-size: 3rem !important;
    top: 0 !important;
}

.no-padd {
    padding: 0 !important;
}

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

/*preferences page*/
h3.preferences, label.preferences {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/*not found page*/
img#not-found {
    width: 170px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/*help section*/
ul.help-section li {
    font-size: 1.3rem;
    font-weight: 500;
    list-style: inside;
    color: #9c3;
}

ul.help-section li.active {
    color: #7aa329;
}

ul.help-section li.active a {
    color: #7aa329;
}

ul.help-section li a {
    color: #9c3;
}

section#faq ul li, section#cookie-policy ul li, section#privacy-policy ul li, section#terms-and-conditions ul li {
    list-style: inside;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4rem;
    padding-left: 1rem;
    text-indent: -1rem;
    margin-bottom: 0.4rem;
}

section#faq p.subhead, section#cookie-policy p.subhead, section#privacy-policy p.subhead, section#terms-and-conditions p.subhead {
    margin-bottom: 0.6rem;
}

/* help section - terms and conditions in an accordion */

section#terms-and-conditions li.accordion-item {
    list-style: none !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    margin-bottom: 0 !important;
    background: #f3f3f3;
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 237, 237, 1) 100%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

section#terms-and-conditions li.accordion-item a.accordion-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3f4f5e;
}

section#terms-and-conditions li.accordion-item span.visible {
    padding: 1rem;
    display: block;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
}

section#terms-and-conditions li.accordion-item span.moreinfo {
    font-weight: normal;
}

section#terms-and-conditions li.accordion-item ul li a {
    color: #ef5c6e;
    text-decoration: underline;
}

section#terms-and-conditions li.accordion-item ul li a:visited {
    color: #e57373;
}

section#terms-and-conditions li.accordion-item ul li a:hover {
    color: #ea2e45;
    text-decoration: none;
}

section#terms-and-conditions li.accordion-item ul li a:active, section#terms-and-conditions li.accordion-item ul li a:focus {
    color: #ea2e45;
}

/*community page*/
/*facebook comments and messenger chat*/
.fb-comments, .fb-comments iframe[style], .fb-like-box, .fb-like-box iframe[style], .fb-page, .fb-page iframe[style] {
    width: 100% !important;
}

.fb-comments span, .fb-comments iframe span[style], .fb-like-box span, .fb-like-box iframe span[style], .fb-page span, .fb-page iframe span[style] {
    width: 100% !important;
}

#facebook-comments {
    float: left;
    padding: 0 10px;
    margin: 15px 0 0 0;
}

hr.greenbreak {
    border-bottom: 1px solid #9c3;
}

/*twitter feed*/
#twitter-feed {
    float: right;
    border-radius: 20px;
    background: #eee;
    border: 1px solid #9c9c9c;
    padding: 10px;
    margin: 15px 0 0 0;
    box-shadow: 0 0 5px #888;
}

#twitter-feed > div {
    width: 100%;
}

#twitter-feed #twitter-fallback {
    display: none;
}

/*twitter feed - show ie fallback message and image */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #twitter-feed a.twitter-follow-button {
        position: relative;
        height: 20px;
        box-sizing: border-box;
        padding: 1px 8px 1px 6px;
        background-color: #1b95e0;
        color: #fff;
        border-radius: 3px;
        font-weight: 500;
        cursor: pointer;
    }

    #twitter-feed #twitter-fallback {
        display: block !important;
    }

    #twitter-feed #twitter-fallback p {
        color: #ef5c6e;
    }

    #twitter-feed > div iframe {
        display: none;
        /*if it decided to show again!*/
    }
}

/*marketing index page*/
.allposts, .marketingpostbg {
    height: auto;
    margin: 0 auto;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.allposts h1, .marketingpostbg h1 {
    font-weight: 500;
    text-shadow: 2px 2px 4px #000;
}

.allposts .row, .marketingpostbg .row {
    padding: 50px 0;
}

.allposts h2, .marketingpostbg h2 {
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.allposts a, .marketingpostbg a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 7px 30px;
    margin: 5px 0;
    transition: all 0.3s ease 0s;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.allposts a:hover, .marketingpostbg a:hover {
    background: #000;
}

.allposts p, .marketingpostbg p {
    font-size: 1.5rem;
    line-height: 2rem;
    text-shadow: 2px 2px 4px #000;
}

.marketingpostbg {
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.marketingpostbg .opacitywrap {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}

section#marketingintro {
    box-shadow: none;
}

section.marketingpostnobg {
    background: url('/assets/images/bgtile-marketing.jpg') 50% 0 fixed #9c3;
}

/* http://foundation.zurb.com/sites/docs/media-queries.html */
/*	7. Tablet Breakpoint (Responsive Tablet) */
/*	8. Desktop Breakpoint (Responsive Desktop) */
/*	9. Large Desktop Breakpoint (Responsive Large Desktop) */
body.landing {
    background: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: proxima-nova, source-sans-pro, sans-serif;
    font-size: 18px;
    font-style: normal;
    color: #546e7a;
}

body.landing #foundation-flash-messages {
    top: 0;
    z-index: 9999;
}

body.landing h2 {
    font-size: 2.2em;
}

body.landing h3 {
    font-weight: 400;
}

body.landing p {
    font-family: source-sans-pro, sans-serif;
    color: #546e7a;
    font-style: normal;
    font-weight: 400;
}

.row > div.title-bar-left, .row > div.title-bar-right {
    margin-bottom: 0;
}

ul.navbar-links {
    text-align: center;
}

ul.navbar-links a {
    color: #666;
}

.menu-icon {
    display: block;
    background: #666;
    height: 21px;
}

.menu-icon:hover::after {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
}

.parallax {
    /* The image used */
    background-image: url('/assets/images/mockup-1.png');
    image-rendering: -webkit-crisp-edges;
    /* Full height */
    height: 680px;
    background-attachment: scroll;
    /* Create the parallax scrolling effect */
    background-position: 15% 50%;
    background-repeat: no-repeat;
    background-size: 250px auto;
}

.parallax#choose {
    background-image: url('/assets/images/mockup-2.png');
}

.parallax#earn {
    background-image: url('/assets/images/mockup-3.png');
}

section .mockup-text {
    height: auto;
    margin: 50px 0;
}

section#second {
    margin: 0;
    background: #ccc;
}

section#second .flexbox-container > div {
    margin-bottom: 0;
}

section#third {
    margin: 0;
}

section#third .flexbox-container > div {
    margin-bottom: 0;
}

section#fourth {
    margin: 0;
    background: #f1f2f2;
}

section#fourth .flexbox-container > div {
    margin-bottom: 0;
}

section .mockup-text {
    height: 200px;
    position: relative;
}

.sss {
    height: 0;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    overflow: hidden;
}

.ssslide {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    overflow: hidden;
    min-height: 120px;
}

.ssslide img {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
}

.sssnext, .sssprev {
    width: 25px;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    background: url('/assets/images/arr.png') no-repeat;
}

.sssprev {
    left: 3%;
    background-position: 0 50%;
}

.sssnext {
    right: 3%;
    background-position: -26px 50%;
}

.sssprev:hover, .sssnext:hover {
    cursor: pointer;
}

.simpleslider blockquote {
    border-left: none;
}

/* to sort */
a.mouse-link {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.mouse_scroll {
    display: block;
    width: 18px;
    margin: 0 auto;
}

.m_scroll_arrows {
    display: block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin: 0 0 3px 4px;
    width: 16px;
    height: 16px;
}

.unu {
    margin-top: 1px;
}

.doi, .trei, .unu {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}

.unu {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -webkit-animation-direction: alternate;
}

.doi {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-direction: alternate;
    margin-top: -6px;
}

.trei {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -webkit-animation-direction: alternate;
    margin-top: -6px;
}

.mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    transform: none;
    border: 2px solid #fff;
    top: 170px;
}

.wheel {
    display: block;
    margin: 5px auto;
    background: #fff;
    position: relative;
    height: 4px;
    width: 4px;
    border: 2px solid #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-animation: mouse-wheel 1s linear infinite;
    -moz-animation: mouse-wheel 1s linear infinite;
}

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

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

@-moz-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

a.landing-btn {
    background: #28ae63;
    color: #fff;
    padding: 12px 35px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

a.landing-btn:active, a.landing-btn:focus, a.landing-btn:hover {
    background: #239957;
    color: #fff;
    border: 3px solid #239957;
}

a.landing-btn-hero {
    border: 3px solid #28ae63;
}

a.landing-btn-default {
    background: #28ae63;
    text-transform: none;
    margin: 20px 0;
    border: 0;
}

a.landing-btn-default:active, a.landing-btn-default:focus, a.landing-btn-default:hover {
    background: #239957;
    color: #fff;
    border: 0;
}

hgroup button {
    margin: 0 10px;
}

h2.number-descriptor, h2.number-descriptor-white {
    margin: 1rem 0;
}

nav.navbar-hero .navbar-links, nav.reveal-nav .navbar-links {
    height: 50px;
    padding: 10px 0;
    display: inline-block;
}

nav.navbar-hero .navbar-links li, nav.reveal-nav .navbar-links li {
    display: inline-block;
    padding: 10px;
}

nav.navbar-hero .navbar-links a, nav.reveal-nav .navbar-links a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
}

nav.navbar-hero .navbar-links a:after, nav.reveal-nav .navbar-links a:after {
    background-color: #182e4a;
    bottom: 0;
    content: '';
    height: 1px;
    left: -5px;
    opacity: 0;
    position: absolute;
    right: -5px;
}

nav.navbar-hero a, nav.reveal-nav a {
    font-size: 0.95em !important;
    font-family: proxima-nova, source-sans-pro, sans-serif;
    color: #546e7a;
    -moz-transition: all 50ms ease ease-in-out;
    -o-transition: all 50ms ease ease-in-out;
    -webkit-transition: all 50ms ease ease-in-out;
    transition: all 50ms ease ease-in-out;
}

nav.navbar-hero a#nav-sign-up, nav.reveal-nav a#nav-sign-up {
    color: #ef5c6e;
    font-weight: 700;
}

nav.navbar-hero a#nav-sign-up:hover, nav.reveal-nav a#nav-sign-up:hover {
    color: #ea2e45;
    border-bottom: 1px solid #ea2e45;
}

nav.navbar-hero.reveal-nav, nav.reveal-nav.reveal-nav {
    background: #fff;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

nav.navbar-hero.reveal-nav .navbar-links, nav.reveal-nav.reveal-nav .navbar-links {
    padding: 15px 0 5px 0;
}

nav.navbar-hero.reveal-nav a#hero-sign-up, nav.reveal-nav.reveal-nav a#hero-sign-up {
    color: #ef5c6e;
    margin-left: 30px;
    font-weight: 700;
    font-size: 1em !important;
}

nav.navbar-hero.reveal-nav a:hover, nav.reveal-nav.reveal-nav a:hover, nav.navbar-hero.reveal-nav a:active, nav.reveal-nav.reveal-nav a:active, nav.navbar-hero.reveal-nav a:focus, nav.reveal-nav.reveal-nav a:focus {
    color: #ef5c6e;
    border-bottom: 1px solid #ef5c6e;
}

nav.navbar-hero.navbar-hero, nav.reveal-nav.navbar-hero {
    padding: 10px 0;
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    overflow: hidden;
}

nav.navbar-hero.navbar-hero a, nav.reveal-nav.navbar-hero a {
    color: #fff;
}

nav.navbar-hero.navbar-hero a#hero-sign-up, nav.reveal-nav.navbar-hero a#hero-sign-up {
    font-weight: 700;
    font-size: 1em !important;
}

nav.navbar-hero.navbar-hero a#hero-sign-up:hover, nav.reveal-nav.navbar-hero a#hero-sign-up:hover {
    color: #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}

nav.navbar-hero.navbar-hero a:hover, nav.reveal-nav.navbar-hero a:hover, nav.navbar-hero.navbar-hero a:active, nav.reveal-nav.navbar-hero a:active, nav.navbar-hero.navbar-hero a:focus, nav.reveal-nav.navbar-hero a:focus {
    color: #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}

nav.navbar-hero .navbar-container ul.navbar-links li a {
    -moz-transition: all 50ms ease ease-in-out;
    -o-transition: all 50ms ease ease-in-out;
    -webkit-transition: all 50ms ease ease-in-out;
    transition: all 50ms ease ease-in-out;
}

.navbar-container {
    margin: 0 auto;
    width: 90%;
}

.hero {
    background: url("/assets/images/header.jpg") center center no-repeat;
    background-size: cover;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-height: 450px;
    position: relative;
    height: 100%;
    width: 100%;
}

.hero h1 {
    margin: 0 0 15px;
    color: #fff !important;
    z-index: 200;
}

.hero p {
    color: #fff !important;
    margin: 0 auto 20px;
    max-width: 550px;
    width: 85%;
    z-index: 200;
}

.hero #hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(230deg, #9c3 0, rgba(37, 156, 127, .9) 50%, rgba(25, 207, 199, .85) 100%);
    background: linear-gradient(220deg, #9c3 0, rgba(37, 156, 127, .9) 50%, rgba(25, 207, 199, .85) 100%);
}

.hero .hero-container {
    z-index: 2;
    margin: auto;
    padding: 0 15px;
    text-align: center;
}

.about {
    background: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.about .about-text {
    border-left: 1px solid #dfe6eb;
    padding: 60px 25px;
    width: 100%;
}

.about .about-photo-container {
    background: #25292d;
    border-bottom: solid 1px #dfe6eb;
    border-top: solid 1px #dfe6eb;
    cursor: pointer;
    height: 300px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.about .about-photo-container .about-photo {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

section.hero {
    text-align: center;
    position: relative;
}

section.hero h1 {
    font-size: 2em;
    font-weight: 100;
}

section.hero h3 {
    color: #fff !important;
    margin-bottom: 20px;
    font-weight: 400;
}

section.hero hgroup {
    z-index: 200;
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
}

section.hero .rowtwo {
    margin-left: 15px;
}

section.hero a.landing-btn-hero {
    font-size: 1rem;
}

section.hero a.landing-btn-outline {
    background: 0 0;
    border: 3px solid #fff;
    font-size: 1rem;
}

section.hero a.landing-btn-outline:active, section.hero a.landing-btn-outline:focus, section.hero a.landing-btn-outline:hover {
    background: #fff;
    color: #2ebeb0;
}

.fixedHead {
    width: 100%;
    display: block;
    position: relative;
    background: url("/assets/images/header.jpg") no-repeat fixed;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    z-index: 100;
}

/*mobile nav*/
.top-bar-right ul.vertical {
    margin-left: -10px;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
}

.top-bar-right ul.vertical li {
    border-bottom: 1px solid #f1f2f2;
}

.top-bar-right ul.vertical li a {
    color: #3f4f5e;
}

ul.navbarlinks {
    background: #fff !important;
}

section#about {
    height: auto;
    padding: 0;
}

section#about .about-photo-container {
    background: url("/assets/images/speech-bubble.jpg") center center no-repeat;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
}

section#about .about-text {
    height: auto;
    padding: 50px 10px;
    border-left: 0;
}

section#testimonials {
    background: #f1f2f2;
    margin: 0;
    position: relative;
    padding: 50px 0;
}

section#testimonials #testimonial-stats {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
}

section#testimonials #testimonial-stats #testimonial-content h2 {
    color: #9c3;
}

section#testimonials #testimonial-stats #testimonial-content span.testimonials-span {
    font-weight: 100;
    color: #3f4f5e;
}

section .mockup-text .mockup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

section .mockup-text .mockup-content .number-two h2 {
    color: #9c3;
}

section .mockup-text .mockup-content .number-circle {
    width: 100px;
    height: 100px;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    font-weight: 700;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 4px solid #fff;
}

section .mockup-text .mockup-content .number-circle h2 {
    color: #fff;
    font-weight: 700;
    display: inline;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

section:hover .mockup-text .mockup-content .number-circle, section.play .mockup-text .mockup-content .number-circle {
    box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .36), 0 4px 20px 0 rgba(0, 0, 0, .1), 0 8px 10px -5px rgba(0, 0, 0, .15);
    background: #fff;
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

section:hover .mockup-text .mockup-content .number-one h2, section.play .mockup-text .mockup-content .number-one h2, section:hover .mockup-text .mockup-content .number-two h2, section.play .mockup-text .mockup-content .number-two h2, section:hover .mockup-text .mockup-content .number-three h2, section.play .mockup-text .mockup-content .number-three h2 {
    color: #259c7f;
}

section:hover .mockup-text .mockup-content .number-two, section.play .mockup-text .mockup-content .number-two {
    border: 3px solid #259c7f;
}

.screenshots-mobile img.screenshot {
    display: block;
    margin: 0 auto;
}

section#homepage-cta {
    height: auto;
    padding: 150px 0;
    text-align: center;
    background: #fff;
}

section#homepage-cta #cta-text h2.cta-heading {
    font-size: 2.5em;
    margin-bottom: 18px;
    font-weight: 100;
}

section#homepage-cta #cta-text h4.cta-subheading {
    font-size: 1.7em;
}

/*footer*/
footer {
    display: block;
    width: 100%;
    height: auto;
    background: #9c3;
    color: #fff;
    padding: 10px 50px 20px;
}

footer hr {
    border-top: 2px solid #fff;
}

footer a {
    color: #fff;
}

footer a:active, footer a:focus, footer a:hover {
    color: #fff;
    text-decoration: underline !important;
}

footer .footer-links {
    position: relative;
    height: 20px;
    padding-top: 10px;
}

footer .footer-links img#footer-logo {
    text-align: center;
    height: 25px;
    width: auto;
    display: inline;
    position: absolute;
    top: 25px;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

footer .footer-links a:active, footer .footer-links a:focus, footer .footer-links a:hover {
    color: #fff;
    text-decoration: underline !important;
}

footer .footer-links #footer-links-right {
    float: right;
    display: inline;
}

footer .footer-links #footer-links-right a {
    margin-left: 20px;
}

footer #footer-social {
    display: inline;
}

footer #footer-social ul {
    display: inline;
}

footer #footer-social ul li {
    display: inline;
    text-align: center;
    margin-left: 5px;
}

footer #footer-social ul li:hover a i {
    color: #fff;
}

footer #footer-social ul li a {
    margin: 0 auto;
}

footer #footer-social ul li a:hover {
    text-decoration: none !important;
}

footer #footer-social ul li a i {
    margin: 0 auto;
    font-size: 2em;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #259c7f;
}

footer .footer-content ul {
    display: inline;
    margin: 0 auto;
    list-style: none;
}

footer .footer-content ul li:active, footer .footer-content ul li:focus, footer .footer-content ul li:hover {
    color: #fff;
}

footer .footer-content ul#footer-contact, footer .footer-content ul#generic-footer-links, footer .footer-content ul#right-links {
    text-align: center;
}

/******media queries******/
@media (min-width: 370px) {
    .rowtwo {
        margin-left: 11px;
    }
}

@media (min-width: 640px) {
    section#about .about-text {
        padding: 50px;
    }

    section#about .about-photo-container {
        height: 300px;
    }

    section.hero h1 {
        font-size: 2.1em;
    }

    section.hero hgroup {
        width: 75%;
        top: 50%;
        -moz-transform: translate(16.5%, -50%);
        -ms-transform: translate(16.5%, -50%);
        -o-transform: translate(16.5%, -50%);
        -webkit-transform: translate(16.5%, -50%);
        transform: translate(16.5%, -50%);
    }

    .navbar-hero .flexbox-container {
        display: inherit;
    }

    footer hr {
        margin-top: 10px !important;
    }
}

@media (min-width: 1024px) {
    section.hero h1 {
        font-size: 2.8em;
    }

    section.hero hgroup {
        width: 60%;
        -moz-transform: translate(33.3333%, -50%);
        -ms-transform: translate(33.3333%, -50%);
        -o-transform: translate(33.3333%, -50%);
        -webkit-transform: translate(33.3333%, -50%);
        transform: translate(33.3333%, -50%);
    }

    section.hero a.landing-btn-outline {
        font-size: 1.2rem;
    }

    section.hero a.landing-btn-hero {
        font-size: 1.2rem;
    }

    .navbar-hero .flexbox-container {
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .navbar-hero .navbar-links li {
        padding: 10px 15px;
    }

    .navbar-hero .navbar-links li a#hero-sign-up {
        margin-left: 30px;
    }

    section#about .about-photo-container {
        height: 850px;
    }

    nav.navbar-hero .navbar-links, nav.reveal-nav .navbar-links {
        float: right;
    }

    nav.reveal-nav, nav.reveal-nav .flexbox-container {
        height: 80px;
    }

    section .mockup-text {
        position: relative;
        width: 100%;
        height: auto;
        text-align: center;
    }

    footer .footer-content ul#footer-contact {
        text-align: left;
    }

    footer .footer-content ul#right-links {
        text-align: right;
    }
}

@media (min-width: 1025px) {
    .parallax {
        background-position: 32% 50%;
        background-size: 265px auto;
        background-attachment: fixed;
    }
}

@media (min-width: 1200px) {
    section#about .about-photo-container {
        height: 700px;
    }
}

@media (min-width: 1550px) {
    section#about .about-photo-container {
        height: 640px;
    }
}

/* Text Inputs + Textarea
 ========================================================================== */
/* Style Placeholders */
::-webkit-input-placeholder {
    color: #69829a;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #69829a;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #69829a;
}

:-ms-input-placeholder {
    color: #69829a;
}

/* Text inputs */
input:not([type]), input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9c9c9c;
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 20px 0;
    padding: 0;
    box-shadow: 0 1px 0 0 #9c9c9c;
    box-sizing: content-box;
    transition: all 0.3s;
}

input:not([type]):disabled, input[type=text]:disabled, input[type=password]:disabled, input[type=email]:disabled, input[type=url]:disabled, input[type=time]:disabled, input[type=date]:disabled, input[type=datetime]:disabled, input[type=datetime-local]:disabled, input[type=tel]:disabled, input[type=number]:disabled, input[type=search]:disabled, textarea.materialize-textarea:disabled, input:not([type])[readonly="readonly"], input[type=text][readonly="readonly"], input[type=password][readonly="readonly"], input[type=email][readonly="readonly"], input[type=url][readonly="readonly"], input[type=time][readonly="readonly"], input[type=date][readonly="readonly"], input[type=datetime][readonly="readonly"], input[type=datetime-local][readonly="readonly"], input[type=tel][readonly="readonly"], input[type=number][readonly="readonly"], input[type=search][readonly="readonly"], textarea.materialize-textarea[readonly="readonly"] {
    color: #3f4f5e;
    border-bottom: 1px dotted #3f4f5e;
    pointer-events: none;
}

input:not([type]):disabled + label, input[type=text]:disabled + label, input[type=password]:disabled + label, input[type=email]:disabled + label, input[type=url]:disabled + label, input[type=time]:disabled + label, input[type=date]:disabled + label, input[type=datetime]:disabled + label, input[type=datetime-local]:disabled + label, input[type=tel]:disabled + label, input[type=number]:disabled + label, input[type=search]:disabled + label, textarea.materialize-textarea:disabled + label, input:not([type])[readonly="readonly"] + label, input[type=text][readonly="readonly"] + label, input[type=password][readonly="readonly"] + label, input[type=email][readonly="readonly"] + label, input[type=url][readonly="readonly"] + label, input[type=time][readonly="readonly"] + label, input[type=date][readonly="readonly"] + label, input[type=datetime][readonly="readonly"] + label, input[type=datetime-local][readonly="readonly"] + label, input[type=tel][readonly="readonly"] + label, input[type=number][readonly="readonly"] + label, input[type=search][readonly="readonly"] + label, textarea.materialize-textarea[readonly="readonly"] + label {
    color: #3f4f5e;
}

input:not([type]):focus:not([readonly]), input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #ef5c6e;
    box-shadow: 0 1px 0 0 #ef5c6e;
}

input:not([type]):focus:not([readonly]) + label, input[type=text]:focus:not([readonly]) + label, input[type=password]:focus:not([readonly]) + label, input[type=email]:focus:not([readonly]) + label, input[type=url]:focus:not([readonly]) + label, input[type=time]:focus:not([readonly]) + label, input[type=date]:focus:not([readonly]) + label, input[type=datetime]:focus:not([readonly]) + label, input[type=datetime-local]:focus:not([readonly]) + label, input[type=tel]:focus:not([readonly]) + label, input[type=number]:focus:not([readonly]) + label, input[type=search]:focus:not([readonly]) + label, textarea.materialize-textarea:focus:not([readonly]) + label {
    color: #ef5c6e;
}

input:not([type]).valid, input[type=text].valid, input[type=password].valid, input[type=email].valid, input[type=url].valid, input[type=time].valid, input[type=date].valid, input[type=datetime].valid, input[type=datetime-local].valid, input[type=tel].valid, input[type=number].valid, input[type=search].valid, textarea.materialize-textarea.valid {
    border-bottom: 1px solid #9c9c9c;
    box-shadow: 0 1px 0 0 #9c9c9c;
}

input:not([type]):focus.valid, input[type=text]:focus.valid, input[type=password]:focus.valid, input[type=email]:focus.valid, input[type=url]:focus.valid, input[type=time]:focus.valid, input[type=date]:focus.valid, input[type=datetime]:focus.valid, input[type=datetime-local]:focus.valid, input[type=tel]:focus.valid, input[type=number]:focus.valid, input[type=search]:focus.valid, textarea.materialize-textarea:focus.valid {
    border-bottom: 1px solid #ef5c6e;
    box-shadow: 0 1px 0 0 #ef5c6e;
}

input:not([type]).valid + label:after, input[type=text].valid + label:after, input[type=password].valid + label:after, input[type=email].valid + label:after, input[type=url].valid + label:after, input[type=time].valid + label:after, input[type=date].valid + label:after, input[type=datetime].valid + label:after, input[type=datetime-local].valid + label:after, input[type=tel].valid + label:after, input[type=number].valid + label:after, input[type=search].valid + label:after, textarea.materialize-textarea.valid + label:after, input:not([type]):focus.valid + label:after, input[type=text]:focus.valid + label:after, input[type=password]:focus.valid + label:after, input[type=email]:focus.valid + label:after, input[type=url]:focus.valid + label:after, input[type=time]:focus.valid + label:after, input[type=date]:focus.valid + label:after, input[type=datetime]:focus.valid + label:after, input[type=datetime-local]:focus.valid + label:after, input[type=tel]:focus.valid + label:after, input[type=number]:focus.valid + label:after, input[type=search]:focus.valid + label:after, textarea.materialize-textarea:focus.valid + label:after {
    content: attr(data-success);
    color: #9c9c9c;
    opacity: 1;
}

input:not([type]).invalid, input[type=text].invalid, input[type=password].invalid, input[type=email].invalid, input[type=url].invalid, input[type=time].invalid, input[type=date].invalid, input[type=datetime].invalid, input[type=datetime-local].invalid, input[type=tel].invalid, input[type=number].invalid, input[type=search].invalid, textarea.materialize-textarea.invalid {
    border-bottom: 1px solid 1px solid #9c9c9c;
    box-shadow: 0 1px 0 0 #9c9c9c;
}

input:not([type]):focus.invalid, input[type=text]:focus.invalid, input[type=password]:focus.invalid, input[type=email]:focus.invalid, input[type=url]:focus.invalid, input[type=time]:focus.invalid, input[type=date]:focus.invalid, input[type=datetime]:focus.invalid, input[type=datetime-local]:focus.invalid, input[type=tel]:focus.invalid, input[type=number]:focus.invalid, input[type=search]:focus.invalid, textarea.materialize-textarea:focus.invalid {
    border-bottom: 1px solid #ef5c6e;
    box-shadow: 0 1px 0 0 #ef5c6e;
}

input:not([type]).invalid + label:after, input[type=text].invalid + label:after, input[type=password].invalid + label:after, input[type=email].invalid + label:after, input[type=url].invalid + label:after, input[type=time].invalid + label:after, input[type=date].invalid + label:after, input[type=datetime].invalid + label:after, input[type=datetime-local].invalid + label:after, input[type=tel].invalid + label:after, input[type=number].invalid + label:after, input[type=search].invalid + label:after, textarea.materialize-textarea.invalid + label:after, input:not([type]):focus.invalid + label:after, input[type=text]:focus.invalid + label:after, input[type=password]:focus.invalid + label:after, input[type=email]:focus.invalid + label:after, input[type=url]:focus.invalid + label:after, input[type=time]:focus.invalid + label:after, input[type=date]:focus.invalid + label:after, input[type=datetime]:focus.invalid + label:after, input[type=datetime-local]:focus.invalid + label:after, input[type=tel]:focus.invalid + label:after, input[type=number]:focus.invalid + label:after, input[type=search]:focus.invalid + label:after, textarea.materialize-textarea:focus.invalid + label:after {
    content: attr(data-error);
    color: #9c9c9c;
    opacity: 1;
}

input:not([type]).validate + label, input[type=text].validate + label, input[type=password].validate + label, input[type=email].validate + label, input[type=url].validate + label, input[type=time].validate + label, input[type=date].validate + label, input[type=datetime].validate + label, input[type=datetime-local].validate + label, input[type=tel].validate + label, input[type=number].validate + label, input[type=search].validate + label, textarea.materialize-textarea.validate + label {
    width: 100%;
    pointer-events: none;
}

input:not([type]) + label:after, input[type=text] + label:after, input[type=password] + label:after, input[type=email] + label:after, input[type=url] + label:after, input[type=time] + label:after, input[type=date] + label:after, input[type=datetime] + label:after, input[type=datetime-local] + label:after, input[type=tel] + label:after, input[type=number] + label:after, input[type=search] + label:after, textarea.materialize-textarea + label:after {
    display: block;
    content: "";
    position: absolute;
    top: 60px;
    opacity: 0;
    transition: 0.2s opacity ease-out, 0.2s color ease-out;
}

.input-field {
    position: relative;
    margin-top: 1rem;
}

.input-field > .input-field, .input-field .input-field > .input-field > .input-field {
    margin: 0;
    padding: 0;
}

.input-field.inline {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.input-field.inline input, .input-field.inline .select-dropdown {
    margin-bottom: 1rem;
}

.input-field label {
    color: #3f4f5e;
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-size: 1rem;
    cursor: text;
    transition: 0.2s ease-out;
    text-align: initial;
}

.input-field label:not(.label-icon).active {
    font-size: 0.8rem;
    transform: translateY(-140%);
    -webkit-transform: translateY(-140%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.input-field .prefix {
    position: absolute;
    width: 3rem;
    font-size: 2rem;
    transition: color 0.2s;
}

.input-field .prefix.active {
    color: #ef5c6e;
}

.input-field .prefix ~ input, .input-field .prefix ~ textarea, .input-field .prefix ~ label, .input-field .prefix ~ .validate ~ label, .input-field .prefix ~ .autocomplete-content {
    margin-left: 3rem;
    width: 92%;
    width: calc(100% - 3rem);
}

.input-field .prefix ~ label {
    margin-left: 3rem;
}

/* Search Field */
.input-field input[type=search] {
    display: block;
    line-height: inherit;
    padding-left: 4rem;
    width: calc(100% - 4rem);
}

.input-field input[type=search]:focus {
    background-color: #fff;
    border: 0;
    box-shadow: none;
    color: #444;
}

.input-field input[type=search]:focus + label i, .input-field input[type=search]:focus ~ .mdi-navigation-close, .input-field input[type=search]:focus ~ .material-icons {
    color: #444;
}

.input-field input[type=search] + label {
    left: 1rem;
}

.input-field input[type=search] ~ .mdi-navigation-close, .input-field input[type=search] ~ .material-icons {
    position: absolute;
    top: 0;
    right: 1rem;
    color: transparent;
    cursor: pointer;
    font-size: 2rem;
    transition: 0.3s color;
}

/* Textarea */
textarea {
    width: 100%;
    height: 3rem;
    background-color: transparent;
    /*make look less lost */
}

textarea.materialize-textarea {
    overflow-y: hidden;
    /* prevents scroll bar flash */
    padding: 0.8rem 0 1.6rem 0;
    /* prevents text jump on Enter keypress */
    resize: none;
    min-height: 3rem;
    border: 1px solid #ccc;
}

.hiddendiv {
    display: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* future version of deprecated 'word-wrap' */
    padding-top: 1.2rem;
    /* prevents text jump on Enter keypress */
    position: absolute;
    top: 0;
}

/* ==========================================================================
 $BASE-PICKER
 ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
.picker {
    font-size: 16px;
    text-align: left;
    line-height: 1.2;
    color: #000;
    position: absolute;
    z-index: 10000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/**
 * The picker input element.
 */
.picker__input {
    cursor: default;
}

/**
 * When the picker is opened, the input element is "activated".
 */
.picker__input.picker__input--active {
    border-color: #ef5c6e;
}

/**
 * The holder is the only "scrollable" top-level container element.
 */
.picker__holder {
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder, .picker__frame {
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
}

/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
    position: fixed;
    -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
    -moz-transition: background 0.15s ease-out, top 0s 0.15s;
    transition: background 0.15s ease-out, top 0s 0.15s;
    -webkit-backface-visibility: hidden;
}

/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
    position: absolute;
    margin: 0 auto;
    min-width: 256px;
    width: 300px;
    max-height: 350px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

@media (min-height: 28.875em) {
    .picker__frame {
        overflow: visible;
        top: auto;
        bottom: -100%;
        max-height: 80%;
    }
}

@media (min-height: 40.125em) {
    .picker__frame {
        margin-bottom: 7.5%;
    }
}

/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
    display: table;
    width: 100%;
    height: 100%;
}

@media (min-height: 28.875em) {
    .picker__wrap {
        display: block;
    }
}

/**
 * The box contains all the picker contents.
 */
.picker__box {
    background: #fff;
    display: table-cell;
    vertical-align: middle;
}

@media (min-height: 28.875em) {
    .picker__box {
        display: block;
        border: 1px solid #777;
        border-top-color: #898989;
        border-bottom-width: 0;
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
        -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
        -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
        box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    }
}

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
    top: 0;
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
    zoom: 1;
    background: rgba(0, 0, 0, 0.32);
    -webkit-transition: background 0.15s ease-out;
    -moz-transition: background 0.15s ease-out;
    transition: background 0.15s ease-out;
}

.picker--opened .picker__frame {
    top: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

@media (min-height: 35.875em) {
    .picker--opened .picker__frame {
        top: 10%;
        bottom: auto;
    }
}

/**
 * For `large` screens, transform into an inline picker.
 */
/* ==========================================================================
 CUSTOM MATERIALIZE STYLES
 ========================================================================== */
.picker__input.picker__input--active {
    border-color: color("blue", "lighten-5");
}

.picker__frame {
    margin: 0 auto;
    max-width: 325px;
}

@media (min-height: 38.875em) {
    .picker--opened .picker__frame {
        top: 10%;
        bottom: auto;
    }
}

/* ==========================================================================
 $BASE-DATE-PICKER
 ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
    padding: 0 1em;
}

/**
 * The header containing the month and year stuff.
 */
.picker__header {
    text-align: center;
    position: relative;
    margin-top: 0.75em;
}

/**
 * The month and year labels.
 */
.picker__month, .picker__year {
    display: inline-block;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

/**
 * The month and year selectors.
 */
.picker__select--month, .picker__select--year {
    height: 2em;
    padding: 0;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.picker__select--month.browser-default {
    display: inline;
    background-color: #fff;
    width: 40%;
}

.picker__select--year.browser-default {
    display: inline;
    background-color: #fff;
    width: 26%;
}

.picker__select--month:focus, .picker__select--year:focus {
    border-color: rgba(0, 0, 0, .05);
}

/**
 * The month navigation buttons.
 */
.picker__nav--prev, .picker__nav--next {
    position: absolute;
    padding: 0.5em 1.25em;
    width: 1em;
    height: 1em;
    box-sizing: content-box;
    top: -0.25em;
}

.picker__nav--prev {
    left: -1em;
    padding-right: 1.25em;
}

.picker__nav--next {
    right: -1em;
    padding-left: 1.25em;
}

.picker__nav--disabled, .picker__nav--disabled:hover, .picker__nav--disabled:before, .picker__nav--disabled:before:hover {
    cursor: default;
    background: none;
    border-right-color: #f5f5f5;
    border-left-color: #f5f5f5;
}

/**
 * The calendar table of dates
 */
.picker__table {
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    font-size: 1rem;
    width: 100%;
    margin-top: 0.75em;
    margin-bottom: 0.5em;
}

.picker__table th, .picker__table td {
    text-align: center;
}

.picker__table td {
    margin: 0;
    padding: 0;
}

/**
 * The weekday labels
 */
.picker__weekday {
    width: 14.28571%;
    font-size: 0.75em;
    padding-bottom: 0.25em;
    color: #999;
    font-weight: 500;
    /* Increase the spacing a tad */
}

@media (min-height: 33.875em) {
    .picker__weekday {
        padding-bottom: 0.5em;
    }
}

/**
 * The days on the calendar
 */
.picker__day--today {
    position: relative;
    color: #595959;
    letter-spacing: -0.3;
    padding: 0.75rem 0;
    font-weight: 400;
    border: 1px solid transparent;
}

.picker__day--disabled:before {
    border-top-color: #aaa;
}

.picker__day--infocus:hover {
    cursor: pointer;
    color: #000;
    font-weight: 500;
}

.picker__day--outfocus {
    display: none;
    padding: 0.75rem 0;
    color: #fff;
}

.picker__day--outfocus:hover {
    cursor: pointer;
    color: #ddd;
    font-weight: 500;
}

.picker__day--highlighted:hover, .picker--focused .picker__day--highlighted {
    cursor: pointer;
}

.picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
    border-radius: 50%;
    transform: scale(0.75);
    background: #0089ec;
    color: #fff;
}

.picker__day--disabled, .picker__day--disabled:hover, .picker--focused .picker__day--disabled {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #ddd;
    cursor: default;
}

.picker__day--highlighted.picker__day--disabled, .picker__day--highlighted.picker__day--disabled:hover {
    background: #bbb;
}

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.picker__button--today, .picker__button--clear, .picker__button--close {
    border: 1px solid #fff;
    background: #fff;
    font-size: 0.8em;
    padding: 0.66em 0;
    font-weight: bold;
    width: 33%;
    display: inline-block;
    vertical-align: bottom;
}

.picker__button--today:hover, .picker__button--clear:hover, .picker__button--close:hover {
    cursor: pointer;
    color: #000;
    background: #b1dcfb;
    border-bottom-color: #b1dcfb;
}

.picker__button--today:focus, .picker__button--clear:focus, .picker__button--close:focus {
    background: #b1dcfb;
    border-color: rgba(0, 0, 0, .05);
    outline: none;
}

.picker__button--today:before, .picker__button--clear:before, .picker__button--close:before {
    position: relative;
    display: inline-block;
    height: 0;
}

.picker__button--today:before, .picker__button--clear:before {
    content: " ";
    margin-right: 0.45em;
}

.picker__button--today:before {
    top: -0.05em;
    width: 0;
    border-top: 0.66em solid #0059bc;
    border-left: 0.66em solid transparent;
}

.picker__button--clear:before {
    top: -0.25em;
    width: 0.66em;
    border-top: 3px solid #e20;
}

.picker__button--close:before {
    content: "\D7";
    top: -0.1em;
    vertical-align: top;
    font-size: 1.1em;
    margin-right: 0.35em;
    color: #777;
}

.picker__button--today[disabled], .picker__button--today[disabled]:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #ddd;
    cursor: default;
}

.picker__button--today[disabled]:before {
    border-top-color: #aaa;
}

/* ==========================================================================
 CUSTOM MATERIALIZE STYLES
 ========================================================================== */
.picker__box {
    border-radius: 2px;
    overflow: hidden;
}

.picker__date-display {
    text-align: center;
    background-color: #9c3;
    color: #fff;
    padding-bottom: 15px;
    font-weight: 300;
}

.picker__nav--prev:hover, .picker__nav--next:hover {
    cursor: pointer;
    color: #000;
    background: #9c3;
}

.picker__weekday-display {
    background-color: #7aa329;
    padding: 10px;
    font-weight: 200;
    letter-spacing: 0.5;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
    display: block;
}

.picker__month-display {
    text-transform: uppercase;
    font-size: 2rem;
}

.picker__day-display {
    display: block;
    font-size: 4.5rem;
    font-weight: 400;
}

.picker__year-display {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, .6);
}

.picker__box {
    padding: 0;
}

.picker__calendar-container {
    padding: 0 1rem;
}

.picker__calendar-container thead {
    border: none;
}

.picker__table {
    margin-top: 0;
    margin-bottom: 0.5em;
}

.picker__day--infocus {
    color: #595959;
    letter-spacing: -0.3;
    padding: 0.75rem 0;
    font-weight: 400;
    border: 1px solid transparent;
}

.picker__day.picker__day--today {
    color: #259c7f;
}

.picker__day.picker__day--today.picker__day--selected {
    color: #fff;
}

.picker__weekday {
    font-size: 0.9rem;
}

.picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
    border-radius: 50%;
    transform: scale(0.9);
    background-color: #9c3;
    color: #fff;
}

.picker__day--selected.picker__day--outfocus, .picker__day--selected:hover.picker__day--outfocus, .picker--focused .picker__day--selected.picker__day--outfocus {
    background-color: #7aa329;
}

.picker__footer {
    text-align: right;
    padding: 5px 10px;
}

.picker__close, .picker__today {
    font-size: 1.1rem;
    padding: 0 1rem;
    color: #9c3;
}

.picker__nav--prev:before, .picker__nav--next:before {
    content: " ";
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-right: 0.75em solid #676767;
    width: 0;
    height: 0;
    display: block;
    margin: 0 auto;
}

.picker__nav--next:before {
    border-right: 0;
    border-left: 0.75em solid #676767;
}

button.picker__today:focus, button.picker__clear:focus, button.picker__close:focus {
    background-color: #99daca;
}

.circleslidercentered {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    margin-bottom: 2.8rem !important;
}

#rotatescroll {
    height: 300px;
    position: relative;
    width: 300px;
    /*may be needed*/
    /*pointer-events:none*/
}

#rotatescroll .viewport {
    height: 300px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    width: 300px;
}

#rotatescroll .overview {
    position: absolute;
    width: 798px;
    list-style: none;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
}

#rotatescroll .overview li {
    height: 300px;
    width: 300px;
    float: left;
    position: relative;
}

#rotatescroll .overlayt {
    background: url("/assets/images/bg-rotatescroll.png") no-repeat 0 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 300px;
    width: 300px;
}

#rotatescroll .thumb {
    background: url("/assets/images/bg-thumb.png") no-repeat 50% 50%;
    touch-action: none;
    -ms-touch-action: none;
    position: absolute;
    top: -3px;
    cursor: pointer;
    left: 137px;
    width: 100px;
    z-index: 2;
    height: 100px;
}

#rotatescroll .dot {
    background: url("/assets/images/bg-dot.png") no-repeat 0 0;
    display: none;
    height: 12px;
    width: 12px;
    position: absolute;
    left: 155px;
    top: 3px;
    z-index: 1;
}

#rotatescroll .dot span {
    display: none;
}

@media only screen and (max-width: 480px) {
    body, html {
        font-size: 12px;
    }
}

@media only screen and (min-width: 640px) {
    img#not-found {
        width: 300px;
    }
}

@media only screen and (min-width: 1024px) {
    /*not found page*/
    body {
        background: #9c3 url("/assets/images/bgtile.png") repeat !important;
    }

    .active-overlay {
        z-index: 2;
    }

    #logo-container {
        position: static;
        top: auto;
        padding-top: 0;
        margin-top: 0;
    }

    .container {
        background: #fff !important;
        margin-top: 25px;
        margin-bottom: 50px;
        border-radius: 20px;
        padding-top: 0;
    }

    .user-profile .callout, .user-profile #foundation-flash-messages .error, #foundation-flash-messages .user-profile .error, .user-profile #foundation-flash-messages .info, #foundation-flash-messages .user-profile .info, .user-profile #foundation-flash-messages .success, #foundation-flash-messages .user-profile .success, .user-profile #foundation-flash-messages .alert, #foundation-flash-messages .user-profile .alert, .user-surveys .callout, .user-surveys #foundation-flash-messages .error, #foundation-flash-messages .user-surveys .error, .user-surveys #foundation-flash-messages .info, #foundation-flash-messages .user-surveys .info, .user-surveys #foundation-flash-messages .success, #foundation-flash-messages .user-surveys .success, .user-surveys #foundation-flash-messages .alert, #foundation-flash-messages .user-surveys .alert, .user-account .callout, .user-account #foundation-flash-messages .error, #foundation-flash-messages .user-account .error, .user-account #foundation-flash-messages .info, #foundation-flash-messages .user-account .info, .user-account #foundation-flash-messages .success, #foundation-flash-messages .user-account .success, .user-account #foundation-flash-messages .alert, #foundation-flash-messages .user-account .alert, .user-other .callout, .user-other #foundation-flash-messages .error, #foundation-flash-messages .user-other .error, .user-other #foundation-flash-messages .info, #foundation-flash-messages .user-other .info, .user-other #foundation-flash-messages .success, #foundation-flash-messages .user-other .success, .user-other #foundation-flash-messages .alert, #foundation-flash-messages .user-other .alert {
        margin-left: 30%;
        width: 66.6667%;
    }

    .user-profile .container, .user-surveys .container, .user-account .container, .user-other .container {
        max-width: auto;
        margin-left: 30%;
        width: 68%;
    }

    .user-profile#no-sidebar .container, .user-surveys#no-sidebar .container, .user-account#no-sidebar .container, .user-other#no-sidebar .container {
        margin-left: auto;
        width: auto;
    }

    #sidebar-outer a.sidebar-content {
        padding: 15px 10px;
    }

    #sidebar-outer a.sidebar-content h3 {
        font-size: 14px;
        padding-top: 25px;
    }

    #sidebar-outer a.sidebar-content h4 {
        font-size: 12px;
    }

    #sidebar-outer a.sidebar-content .sidebar-circle-heading {
        height: 90px;
        width: 90px;
    }

    #sidebar-outer a.sidebar-content .sidebar-circle-heading h2 {
        font-size: 1.25em;
    }

    #sidebar-outer a#sidebar-profile h2 {
        font-size: 1.25rem;
    }

    img.logo {
        display: none !important;
    }

    div#desktop-nav {
        display: block !important;
    }

    .sticky-container {
        display: block;
        background: #fff;
    }

    .hide-for-large-only {
        display: none !important;
    }

    .header-coloured {
        background: none;
        margin-top: 200px;
    }

    .info-block {
        display: none;
    }

    nav#desktop-nav {
        background: #fff;
        padding: 15px;
    }

    nav#desktop-nav ul.ysp-tabs {
        background: #fff;
        border: none;
    }

    nav#desktop-nav ul.ysp-tabs li.tab {
        float: left;
        padding: 0 10px;
        list-style: none;
    }

    nav#desktop-nav ul.ysp-tabs li.tab a {
        color: #3f4f5e;
    }

    nav#desktop-nav ul.ysp-tabs li.tab a i {
        padding: 4px;
        font-size: 1.4em;
    }

    nav#desktop-nav ul.ysp-tabs li.tab a.button-collapse {
        margin: 0;
    }

    nav#desktop-nav ul.ysp-tabs li.tab a.active {
        border-bottom: 1px solid #9c3;
        padding-bottom: 3px;
    }

    nav#desktop-nav ul.ysp-tabs li.tab a.active i, nav#desktop-nav ul.ysp-tabs li.tab a.active span {
        color: #9c3 !important;
    }

    nav#desktop-nav ul.ysp-tabs li.tab a span {
        color: #3f4f5e;
        font-size: 1.2em;
    }

    .btn-red-off, .btn-red-stroke {
        padding: 10px 15%;
    }

    .sign-in-or-register {
        padding: 0;
    }

    #tlf_yspbundle_userprofilechildrentype_childrenUnder18 > .ysp-row {
        width: 48%;
        margin: 0 1%;
        float: left;
    }

    #tlf_yspbundle_userprofilechildrentype_childrenUnder18 .ysp-row > #tlf_yspbundle_userprofilechildrentype_childrenUnder18 .ysp-row {
        width: 100%;
    }

    ul#children_list {
        width: 100%;
    }

    ul#children_list li.child {
        width: 46%;
        float: left;
        margin: 20px 2%;
    }

    div.child {
        margin-left: 2%;
    }

    #foundation-flash-messages {
        top: 65px;
    }

    .callout, #foundation-flash-messages .error, #foundation-flash-messages .info, #foundation-flash-messages .success, #foundation-flash-messages .alert {
        border-radius: 15px;
    }

    #user-avatar {
        max-width: 250px;
    }

    #primary-info {
        margin-top: 0;
        padding-top: 0;
    }

    .payment-section {
        margin: 0;
    }

    .list-block .payment-section:nth-of-type(odd) .row > div {
        border-top: none;
        border-bottom: none;
    }

    #account-summary-table {
        border: none;
        color: #3f4f5e;
    }

    #account-summary-table #account-summary {
        border-bottom: 1px solid #e9e9e9;
    }

    #account-summary-table tr:nth-child(2n) td {
        border: 1px solid #fff;
        border-bottom: none;
        border-top: none;
    }

    ul.k-pager-numbers {
        margin: 0 !important;
    }

    img#not-found {
        position: relative;
        width: 405px;
        margin-bottom: -100px;
        float: right;
        margin-right: 20px;
        z-index: 0;
    }

    .allposts .row, .marketingpostbg .row {
        padding: 100px 0;
    }
}

@media only screen and (min-width: 1440px) {
    /*extra breakpoint*/
    .user-profile .container, .user-surveys .container, .user-account .container, .user-other .container {
        /*max-width: 1280px;*/
    }

    #sidebar-outer a.sidebar-content {
        padding: 15px 10px;
    }

    #sidebar-outer a.sidebar-content h3 {
        font-size: 24px;
    }

    #sidebar-outer a.sidebar-content h4 {
        font-size: 18px;
    }

    #sidebar-outer a.sidebar-content .sidebar-circle-heading {
        height: 105px;
        width: 105px;
    }

    #sidebar-outer a.sidebar-content .sidebar-circle-heading h2 {
        font-size: 1.5em;
    }

    #sidebar-outer a#sidebar-profile h2 {
        font-size: 2rem;
    }

    .xlarge-pull-1, .xlarge-pull-10, .xlarge-pull-11, .xlarge-pull-2, .xlarge-pull-3, .xlarge-pull-4, .xlarge-pull-5, .xlarge-pull-6, .xlarge-pull-7, .xlarge-pull-8, .xlarge-pull-9, .xlarge-push-1, .xlarge-push-10, .xlarge-push-11, .xlarge-push-2, .xlarge-push-3, .xlarge-push-4, .xlarge-push-5, .xlarge-push-7, .xlarge-push-8, .xlarge-push-9 {
        position: relative;
    }

    .xlarge-1 {
        width: 8.33333%;
    }

    .xlarge-push-1 {
        left: 8.33333%;
    }

    .xlarge-pull-1 {
        left: -8.33333%;
    }

    .xlarge-offset-0 {
        margin-left: 0;
    }

    .xlarge-2 {
        width: 16.66667%;
    }

    .xlarge-push-2 {
        left: 16.66667%;
    }

    .xlarge-pull-2 {
        left: -16.66667%;
    }

    .xlarge-offset-1 {
        margin-left: 8.33333%;
    }

    .xlarge-3 {
        width: 25%;
    }

    .xlarge-push-3 {
        left: 25%;
    }

    .xlarge-pull-3 {
        left: -25%;
    }

    .xlarge-offset-2 {
        margin-left: 16.66667%;
    }

    .xlarge-4 {
        width: 33.33333%;
    }

    .xlarge-push-4 {
        left: 33.33333%;
    }

    .xlarge-pull-4 {
        left: -33.33333%;
    }

    .xlarge-offset-3 {
        margin-left: 25%;
    }

    .xlarge-5 {
        width: 41.66667%;
    }

    .xlarge-push-5 {
        left: 41.66667%;
    }

    .xlarge-pull-5 {
        left: -41.66667%;
    }

    .xlarge-offset-4 {
        margin-left: 33.33333%;
    }

    .xlarge-6 {
        width: 50%;
    }

    .xlarge-push-6 {
        position: relative;
        left: 50%;
    }

    .xlarge-pull-6 {
        left: -50%;
    }

    .xlarge-offset-5 {
        margin-left: 41.66667%;
    }

    .xlarge-7 {
        width: 58.33333%;
    }

    .xlarge-push-7 {
        left: 58.33333%;
    }

    .xlarge-pull-7 {
        left: -58.33333%;
    }

    .xlarge-offset-6 {
        margin-left: 50%;
    }

    .xlarge-8 {
        width: 66.66667%;
    }

    .xlarge-push-8 {
        left: 66.66667%;
    }

    .xlarge-pull-8 {
        left: -66.66667%;
    }

    .xlarge-offset-7 {
        margin-left: 58.33333%;
    }

    .xlarge-9 {
        width: 75%;
    }

    .xlarge-push-9 {
        left: 75%;
    }

    .xlarge-pull-9 {
        left: -75%;
    }

    .xlarge-offset-8 {
        margin-left: 66.66667%;
    }

    .xlarge-10 {
        width: 83.33333%;
    }

    .xlarge-push-10 {
        left: 83.33333%;
    }

    .xlarge-pull-10 {
        left: -83.33333%;
    }

    .xlarge-offset-9 {
        margin-left: 75%;
    }

    .xlarge-11 {
        width: 91.66667%;
    }

    .xlarge-push-11 {
        left: 91.66667%;
    }

    .xlarge-pull-11 {
        left: -91.66667%;
    }

    .xlarge-offset-10 {
        margin-left: 83.33333%;
    }

    .xlarge-12 {
        width: 100%;
    }

    .xlarge-offset-11 {
        margin-left: 91.66667%;
    }

    .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
        width: 100%;
        float: left;
    }

    .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
        clear: both;
    }

    .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
        float: left;
    }

    .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
        width: 50%;
        float: left;
    }

    .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
        clear: both;
    }

    .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
        float: left;
    }

    .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
        width: 33.33333%;
        float: left;
    }

    .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
        clear: both;
    }

    .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
        float: left;
    }

    .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
        width: 25%;
        float: left;
    }

    .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
        clear: both;
    }

    .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
        float: left;
    }

    .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
        width: 20%;
        float: left;
    }

    .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
        clear: both;
    }

    .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
        float: left;
    }

    .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
        width: 16.66667%;
        float: left;
    }

    .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
        clear: both;
    }

    .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
        float: left;
    }

    .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
        width: 14.28571%;
        float: left;
    }

    .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
        clear: both;
    }

    .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
        float: left;
    }

    .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
        width: 12.5%;
        float: left;
    }

    .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
        clear: both;
    }

    .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
        float: left;
    }

    .xlarge-collapse > .column, .xlarge-collapse > .columns {
        padding-left: 0;
        padding-right: 0;
    }

    .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .xlarge-centered {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .xlarge-pull-0, .xlarge-push-0, .xlarge-uncentered {
        position: static;
        margin-left: 0;
        margin-right: 0;
    }
}

.member-info-box{
    padding: 15px  0;
}
.member-info-box h1{
    font-size: 24px;
    margin-bottom: 10px;
}