@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap);

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
    animation-iteration-count: calc(var(--animate-repeat)*2);
}

.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
    animation-iteration-count: calc(var(--animate-repeat)*3);
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay)*2);
    animation-delay: calc(var(--animate-delay)*2);
}

.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay)*3);
    animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay)*4);
    animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay)*5);
    animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: calc(var(--animate-duration)/2);
    animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-duration: calc(var(--animate-duration)*.8);
    animation-duration: calc(var(--animate-duration)*.8)
}

.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration)*2);
    animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration)*3);
    animation-duration: calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce),
print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important
    }
    .animate__animated[class*=Out] {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes shakeX {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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 shakeX {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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)
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX
}

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

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

.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY
}

@-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)
    }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

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

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

.animate__heartBeat {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration)*1.3);
    animation-duration: calc(var(--animate-duration)*1.3);
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes backInDown {
    0% {
        opacity: .7;
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInDown {
    0% {
        opacity: .7;
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown
}

@-webkit-keyframes backInLeft {
    0% {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInLeft {
    0% {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft
}

@-webkit-keyframes backInRight {
    0% {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInRight {
    0% {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight
}

@-webkit-keyframes backInUp {
    0% {
        opacity: .7;
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInUp {
    0% {
        opacity: .7;
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7)
    }
    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}

@-webkit-keyframes backOutDown {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7)
    }
}

@keyframes backOutDown {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7)
    }
}

.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown
}

@-webkit-keyframes backOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7)
    }
}

@keyframes backOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7)
    }
}

.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft
}

@-webkit-keyframes backOutRight {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7)
    }
}

@keyframes backOutRight {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7)
    }
}

.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7)
    }
}

@keyframes backOutUp {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }
    to {
        opacity: .7;
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7)
    }
}

.animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp
}

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

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

.animate__bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

.animate__bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft
}

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

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

.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight
}

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

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

.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft
}

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

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

.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft
}

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

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

.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight
}

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

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

.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight
}

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

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

.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }
    50% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg)
    }
    to {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)
    }
}

@keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }
    50% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg)
    }
    to {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)
    }
}

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

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

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

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

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

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

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

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

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

.animate__flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

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

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

.animate__flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg)
    }
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg)
    }
}

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

@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
}

.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

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

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

.animate__hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration)*2);
    animation-duration: calc(var(--animate-duration)*2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    -webkit-transform-origin: top left;
    transform-origin: top left
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

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

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

.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.owl-carousel {
    -webkit-tap-highlight-color: transparent;
    display: none;
    position: relative;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    -moz-backface-visibility: hidden;
    position: relative;
    touch-action: manipulation
}

.owl-carousel .owl-stage:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    transform: translateZ(0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0)
}

.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    float: left;
    min-height: 1px;
    position: relative
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0 !important
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    display: block;
    opacity: 0
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

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

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

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

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

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

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    background: #000;
    height: 100%;
    position: relative
}

.owl-carousel .owl-video-play-icon {
    -webkit-backface-visibility: hidden;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    height: 80px;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    position: absolute;
    top: 50%;
    transition: transform .1s ease;
    width: 80px;
    z-index: 1
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1
}

.owl-theme .owl-nav {
    -webkit-tap-highlight-color: transparent;
    margin-top: 10px;
    text-align: center
}

.owl-theme .owl-nav [class*=owl-] {
    background: #d6d6d6;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    cursor: default;
    opacity: .5
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots {
    -webkit-tap-highlight-color: transparent;
    text-align: center
}

.owl-theme .owl-dots .owl-dot {
    zoom: 1;
    display: inline-block;
    *display: inline
}

.owl-theme .owl-dots .owl-dot span {
    -webkit-backface-visibility: visible;
    background: #d6d6d6;
    border-radius: 30px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    transition: opacity .2s ease;
    width: 10px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

@charset "UTF-8";
.slick-loading .slick-list {
    background: #fff url(ajax-loader.gif) 50% no-repeat
}

@font-face {
    font-family: slick;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/slick.eot);
    src: url(fonts/slick.eot?#iefix) format("embedded-opentype"), url(fonts/slick.woff) format("woff"), url(fonts/slick.ttf) format("truetype"), url(fonts/slick.svg#slick) format("svg")
}

.slick-next,
.slick-prev {
    border: none;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    background: transparent;
    color: transparent;
    outline: none;
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25;
}

.slick-next:before,
.slick-prev:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
}

.slick-prev {
    left: -25px;
}

[dir=rtl] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir=rtl] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir=rtl] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir=rtl] .slick-next:before {
    content: "←";
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    bottom: -25px;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    position: relative;
}

.slick-dots li,
.slick-dots li button {
    cursor: pointer;
    height: 20px;
    width: 20px;
}

.slick-dots li button {
    background: transparent;
    border: 0;
    color: transparent;
    display: block;
    font-size: 0;
    line-height: 0;
    outline: none;
    padding: 5px;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1;
}

.slick-dots li button:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    content: "•";
    font-family: slick;
    font-size: 6px;
    height: 20px;
    left: 0;
    line-height: 20px;
    opacity: .25;
    position: absolute;
    text-align: center;
    top: 0;
    width: 20px;
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75;
}

.slick-slider {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -khtml-user-select: none;
}

.slick-list,
.slick-slider {
    display: block;
    position: relative;
}

.slick-list {
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translateZ(0);
}

.slick-track {
    display: block;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    border: 1px solid transparent;
    display: block;
    height: auto;
}

.slick-arrow.slick-hidden {
    display: none;
}

html.with-featherlight {
    overflow: hidden;
}

.featherlight {
    background: #333;
    background: transparent;
    bottom: 0;
    cursor: pointer;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    white-space: nowrap;
    z-index: 2147483647;
}

.featherlight:last-of-type {
    background: rgba(0, 0, 0, .8);
}

.featherlight:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.featherlight .featherlight-content {
    background: #fff;
    border-bottom: 25px solid transparent;
    cursor: auto;
    display: inline-block;
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    overflow: auto;
    padding: 25px 25px 0;
    position: relative;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
}

.featherlight .featherlight-inner {
    display: block;
}

.featherlight link.featherlight-inner,
.featherlight script.featherlight-inner,
.featherlight style.featherlight-inner {
    display: none;
}

.featherlight .featherlight-close-icon {
    background: #fff;
    background: rgba(255, 255, 255, .3);
    border: 0;
    color: #000;
    cursor: pointer;
    font-family: Arial, sans-serif;
    line-height: 25px;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 25px;
    z-index: 9999;
}

.featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.featherlight .featherlight-image {
    width: 100%;
}

.featherlight-iframe .featherlight-content {
    -webkit-overflow-scrolling: touch;
    border-bottom: 0;
    padding: 0;
}

.featherlight iframe {
    border: 0;
}

.featherlight * {
    box-sizing: border-box;
}

@media only screen and (max-width:1024px) {
    .featherlight .featherlight-content {
        border-bottom: 10px solid transparent;
        margin-left: 0;
        margin-right: 0;
        max-height: 98%;
        padding: 10px 10px 0
    }
}

@media print {
    html.with-featherlight>*>:not(.featherlight) {
        display: none;
    }
}

[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
    transition-duration: .15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: .15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
    transition-duration: .2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
    transition-duration: .25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: .25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
    transition-duration: .3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
    transition-duration: .35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: .35s
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
    transition-duration: .45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: .45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
    transition-duration: .5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: .5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
    transition-duration: .55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: .55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
    transition-duration: .65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: .65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
    transition-duration: .7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: .7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
    transition-duration: .75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: .75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
    transition-duration: .8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: .8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
    transition-duration: .85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: .85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
    transition-duration: .9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: .9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
    transition-duration: .95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: .95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .25, .75, .75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
    transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
    transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
    transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}

[data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
    transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
    transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
    transform: scale(.6);
}

[data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(.6);
}

[data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(.6);
}

[data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(.6);
}

[data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(.6);
}

[data-aos=zoom-out] {
    transform: scale(1.2);
}

[data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
    transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
    transform: translateZ(0);
}

[data-aos=slide-up] {
    transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
    transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
    transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform;
}

[data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0);
}

@charset "UTF-8";

@font-face {
    font-display: swap;
    font-family: Pilat Wide;
    font-style: normal;
    font-weight: 700;
    src: url(PilatWide-Bold.eot);
    src: local("PilatWide-Bold"), url(PilatWide-Bold.eot?#iefix) format("embedded-opentype"), url(PilatWide-Bold.woff2) format("woff2"), url(PilatWide-Bold.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Pilat Wide;
    font-style: normal;
    font-weight: 600;
    src: url(PilatWide-DemiBold.eot);
    src: local("PilatWide-DemiBold"), url(PilatWide-DemiBold.eot?#iefix) format("embedded-opentype"), url(PilatWide-DemiBold.woff2) format("woff2"), url(PilatWide-DemiBold.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Pilat Wide;
    font-style: normal;
    font-weight: 900;
    src: url(PilatWide-Heavy.eot);
    src: local("PilatWide-Heavy"), url(PilatWide-Heavy.eot?#iefix) format("embedded-opentype"), url(PilatWide-Heavy.woff2) format("woff2"), url(PilatWide-Heavy.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Pilat Wide;
    font-style: normal;
    font-weight: 400;
    src: url(PilatWide-Regular.eot);
    src: local("PilatWide-Regular"), url(PilatWide-Regular.eot?#iefix) format("embedded-opentype"), url(PilatWide-Regular.woff2) format("woff2"),
    url(PilatWide-Regular.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Axiforma Book;
    font-style: normal;
    font-weight: 300;
    src: url(Axiforma-Book.eot);
    src: local("Axiforma-Book"), url(Axiforma-Book.eot?#iefix) format("embedded-opentype"), url(Axiforma-Book.woff2) format("woff2"), url(Axiforma-Book.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Axiforma;
    font-style: normal;
    font-weight: 500;
    src: url(Axiforma-Medium.eot);
    src: local("Axiforma-Medium"), url(Axiforma-Medium.eot?#iefix) format("embedded-opentype"), url(Axiforma-Medium.woff2) format("woff2"), url(Axiforma-Medium.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Axiforma;
    font-style: normal;
    font-weight: 400;
    src: url(Axiforma-Regular.eot);
    src: local("Axiforma-Regular"), url(Axiforma-Regular.eot?#iefix) format("embedded-opentype"), url(Axiforma-Regular.woff2) format("woff2"), url(Axiforma-Regular.woff) format("woff");
}

@media (max-width:768px) {
    .is-hidden-mobile:not(.columns) {
        display: none !important
    }
    .is-hidden-mobile.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-mobile {
    display: none !important
}

@media (max-width:768px) {
    .is-not-hidden-mobile:not(.columns) {
        display: block !important
    }
    .is-not-hidden-mobile.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (min-width:768px) {
    .is-hidden-:not(.columns) {
        display: none !important
    }
    .is-hidden-.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden- {
    display: none !important
}

@media (min-width:768px) {
    .is-not-hidden-:not(.columns) {
        display: block !important
    }
    .is-not-hidden-.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
    .is-hidden-tablet:not(.columns) {
        display: none !important
    }
    .is-hidden-tablet.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-tablet {
    display: none !important
}

@media (min-width:768px) {
    .is-not-hidden-tablet:not(.columns) {
        display: block !important
    }
    .is-not-hidden-tablet.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (max-width:767px) {
    .is-hidden-tablet-max:not(.columns) {
        display: none !important
    }
    .is-hidden-tablet-max.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-tablet-max {
    display: none !important
}

@media (max-width:767px) {
    .is-not-hidden-tablet-max:not(.columns) {
        display: block !important
    }
    .is-not-hidden-tablet-max.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (min-width:1024px) {
    .is-hidden-desktop:not(.columns) {
        display: none !important
    }
    .is-hidden-desktop.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-desktop {
    display: none !important
}

@media (min-width:1024px) {
    .is-not-hidden-desktop:not(.columns) {
        display: block !important
    }
    .is-not-hidden-desktop.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (max-width:1023px) {
    .is-hidden-desktop-max:not(.columns) {
        display: none !important
    }
    .is-hidden-desktop-max.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-desktop-max {
    display: none !important
}

@media (max-width:1023px) {
    .is-not-hidden-desktop-max:not(.columns) {
        display: block !important
    }
    .is-not-hidden-desktop-max.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (min-width:1280px) {
    .is-hidden-desktop-l:not(.columns) {
        display: none !important
    }
    .is-hidden-desktop-l.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-desktop-l {
    display: none !important
}

@media (min-width:1280px) {
    .is-not-hidden-desktop-l:not(.columns) {
        display: block !important
    }
    .is-not-hidden-desktop-l.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (max-width:1279px) {
    .is-hidden-desktop-l-max:not(.columns) {
        display: none !important
    }
    .is-hidden-desktop-l-max.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-desktop-l-max {
    display: none !important
}

@media (max-width:1279px) {
    .is-not-hidden-desktop-l-max:not(.columns) {
        display: block !important
    }
    .is-not-hidden-desktop-l-max.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (min-width:1440px) {
    .is-hidden-widescreen:not(.columns) {
        display: none !important
    }
    .is-hidden-widescreen.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-widescreen {
    display: none !important
}

@media (min-width:1440px) {
    .is-not-hidden-widescreen:not(.columns) {
        display: block !important
    }
    .is-not-hidden-widescreen.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

@media (max-width:1439px) {
    .is-hidden-widescreen-max:not(.columns) {
        display: none !important
    }
    .is-hidden-widescreen-max.columns {
        left: -9999px !important;
        position: absolute !important;
        top: -9999px !important
    }
}

.is-not-hidden-widescreen-max {
    display: none !important
}

@media (max-width:1439px) {
    .is-not-hidden-widescreen-max:not(.columns) {
        display: block !important
    }
    .is-not-hidden-widescreen-max.columns {
        left: 0 !important;
        position: relative !important;
        top: 0 !important
    }
}

.columns {
    display: block;
    margin: -.75rem
}

.columns.is-mobile {
    display: flex
}

.columns.is-multiline {
    flex-wrap: wrap
}

.columns.is-vcentered {
    align-items: center
}

.columns.is-gapless {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0
}

.columns.is-gapless>.column {
    margin: 0;
    padding: 0 !important
}

.columns.is-gapless:not(:last-child) {
    margin-bottom: 1.5rem
}

.columns.is-gapless:last-child {
    margin-bottom: 0
}

@media (min-width:768px) {
    .columns {
        display: flex
    }
}

.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: .75rem
}

.columns.is-mobile>.column.is-narrow {
    flex: none
}

.columns.is-mobile>.column.is-full {
    flex: none;
    width: 100%
}

.columns.is-mobile>.column.is-three-quarters {
    flex: none;
    width: 75%
}

.columns.is-mobile>.column.is-two-thirds {
    flex: none;
    width: 66.6666%
}

.columns.is-mobile>.column.is-half {
    flex: none;
    width: 50%
}

.columns.is-mobile>.column.is-one-third {
    flex: none;
    width: 33.3333%
}

.columns.is-mobile>.column.is-one-quarter {
    flex: none;
    width: 25%
}

.columns.is-mobile>.column.is-one-fifth {
    flex: none;
    width: 20%
}

.columns.is-mobile>.column.is-two-fifths {
    flex: none;
    width: 40%
}

.columns.is-mobile>.column.is-three-fifths {
    flex: none;
    width: 60%
}

.columns.is-mobile>.column.is-four-fifths {
    flex: none;
    width: 80%
}

.columns.is-mobile>.column.is-offset-three-quarters {
    margin-left: 75%
}

.columns.is-mobile>.column.is-offset-two-thirds {
    margin-left: 66.6666%
}

.columns.is-mobile>.column.is-offset-half {
    margin-left: 50%
}

.columns.is-mobile>.column.is-offset-one-third {
    margin-left: 33.3333%
}

.columns.is-mobile>.column.is-offset-one-quarter {
    margin-left: 25%
}

.columns.is-mobile>.column.is-offset-one-fifth {
    margin-left: 20%
}

.columns.is-mobile>.column.is-offset-two-fifths {
    margin-left: 40%
}

.columns.is-mobile>.column.is-offset-three-fifths {
    margin-left: 60%
}

.columns.is-mobile>.column.is-offset-four-fifths {
    margin-left: 80%
}

.columns.is-mobile>.column.is-0 {
    flex: none;
    width: 0
}

.columns.is-mobile>.column.is-offset-0 {
    margin-left: 0
}

.columns.is-mobile>.column.is-1 {
    flex: none;
    width: 8.3333333333%
}

.columns.is-mobile>.column.is-offset-1 {
    margin-left: 8.3333333333%
}

.columns.is-mobile>.column.is-2 {
    flex: none;
    width: 16.6666666667%
}

.columns.is-mobile>.column.is-offset-2 {
    margin-left: 16.6666666667%
}

.columns.is-mobile>.column.is-3 {
    flex: none;
    width: 25%
}

.columns.is-mobile>.column.is-offset-3 {
    margin-left: 25%
}

.columns.is-mobile>.column.is-4 {
    flex: none;
    width: 33.3333333333%
}

.columns.is-mobile>.column.is-offset-4 {
    margin-left: 33.3333333333%
}

.columns.is-mobile>.column.is-5 {
    flex: none;
    width: 41.6666666667%
}

.columns.is-mobile>.column.is-offset-5 {
    margin-left: 41.6666666667%
}

.columns.is-mobile>.column.is-6 {
    flex: none;
    width: 50%
}

.columns.is-mobile>.column.is-offset-6 {
    margin-left: 50%
}

.columns.is-mobile>.column.is-7 {
    flex: none;
    width: 58.3333333333%
}

.columns.is-mobile>.column.is-offset-7 {
    margin-left: 58.3333333333%
}

.columns.is-mobile>.column.is-8 {
    flex: none;
    width: 66.6666666667%
}

.columns.is-mobile>.column.is-offset-8 {
    margin-left: 66.6666666667%
}

.columns.is-mobile>.column.is-9 {
    flex: none;
    width: 75%
}

.columns.is-mobile>.column.is-offset-9 {
    margin-left: 75%
}

.columns.is-mobile>.column.is-10 {
    flex: none;
    width: 83.3333333333%
}

.columns.is-mobile>.column.is-offset-10 {
    margin-left: 83.3333333333%
}

.columns.is-mobile>.column.is-11 {
    flex: none;
    width: 91.6666666667%
}

.columns.is-mobile>.column.is-offset-11 {
    margin-left: 91.6666666667%
}

.columns.is-mobile>.column.is-12 {
    flex: none;
    width: 100%
}

.columns.is-mobile>.column.is-offset-12 {
    margin-left: 100%
}

@media (max-width:768px) {
    .column.is-narrow-mobile {
        flex: none;
        width: auto
    }
    .column.is-full-mobile {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-mobile {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-mobile {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-mobile {
        flex: none;
        width: 50%
    }
    .column.is-one-third-mobile {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-mobile {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-mobile {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-mobile {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-mobile {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-mobile {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-mobile {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-mobile {
        margin-left: 66.6666%
    }
    .column.is-offset-half-mobile {
        margin-left: 50%
    }
    .column.is-offset-one-third-mobile {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-mobile {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-mobile {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-mobile {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-mobile {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-mobile {
        margin-left: 80%
    }
    .column.is-0-mobile {
        flex: none;
        width: 0
    }
    .column.is-offset-0-mobile {
        margin-left: 0
    }
    .column.is-1-mobile {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-mobile {
        margin-left: 8.3333333333%
    }
    .column.is-2-mobile {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-mobile {
        margin-left: 16.6666666667%
    }
    .column.is-3-mobile {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-mobile {
        margin-left: 25%
    }
    .column.is-4-mobile {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-mobile {
        margin-left: 33.3333333333%
    }
    .column.is-5-mobile {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-mobile {
        margin-left: 41.6666666667%
    }
    .column.is-6-mobile {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-mobile {
        margin-left: 50%
    }
    .column.is-7-mobile {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-mobile {
        margin-left: 58.3333333333%
    }
    .column.is-8-mobile {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-mobile {
        margin-left: 66.6666666667%
    }
    .column.is-9-mobile {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-mobile {
        margin-left: 75%
    }
    .column.is-10-mobile {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-mobile {
        margin-left: 83.3333333333%
    }
    .column.is-11-mobile {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-mobile {
        margin-left: 91.6666666667%
    }
    .column.is-12-mobile {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-mobile {
        margin-left: 100%
    }
}

@media (min-width:768px) {
    .column.is-narrow- {
        flex: none;
        width: auto
    }
    .column.is-full- {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters- {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds- {
        flex: none;
        width: 66.6666%
    }
    .column.is-half- {
        flex: none;
        width: 50%
    }
    .column.is-one-third- {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter- {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth- {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths- {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths- {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths- {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters- {
        margin-left: 75%
    }
    .column.is-offset-two-thirds- {
        margin-left: 66.6666%
    }
    .column.is-offset-half- {
        margin-left: 50%
    }
    .column.is-offset-one-third- {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter- {
        margin-left: 25%
    }
    .column.is-offset-one-fifth- {
        margin-left: 20%
    }
    .column.is-offset-two-fifths- {
        margin-left: 40%
    }
    .column.is-offset-three-fifths- {
        margin-left: 60%
    }
    .column.is-offset-four-fifths- {
        margin-left: 80%
    }
    .column.is-0- {
        flex: none;
        width: 0
    }
    .column.is-offset-0- {
        margin-left: 0
    }
    .column.is-1- {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1- {
        margin-left: 8.3333333333%
    }
    .column.is-2- {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2- {
        margin-left: 16.6666666667%
    }
    .column.is-3- {
        flex: none;
        width: 25%
    }
    .column.is-offset-3- {
        margin-left: 25%
    }
    .column.is-4- {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4- {
        margin-left: 33.3333333333%
    }
    .column.is-5- {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5- {
        margin-left: 41.6666666667%
    }
    .column.is-6- {
        flex: none;
        width: 50%
    }
    .column.is-offset-6- {
        margin-left: 50%
    }
    .column.is-7- {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7- {
        margin-left: 58.3333333333%
    }
    .column.is-8- {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8- {
        margin-left: 66.6666666667%
    }
    .column.is-9- {
        flex: none;
        width: 75%
    }
    .column.is-offset-9- {
        margin-left: 75%
    }
    .column.is-10- {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10- {
        margin-left: 83.3333333333%
    }
    .column.is-11- {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11- {
        margin-left: 91.6666666667%
    }
    .column.is-12- {
        flex: none;
        width: 100%
    }
    .column.is-offset-12- {
        margin-left: 100%
    }
    .column.is-narrow-tablet {
        flex: none;
        width: auto
    }
    .column.is-full-tablet {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-tablet {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-tablet {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-tablet {
        flex: none;
        width: 50%
    }
    .column.is-one-third-tablet {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-tablet {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-tablet {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-tablet {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-tablet {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-tablet {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-tablet {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-tablet {
        margin-left: 66.6666%
    }
    .column.is-offset-half-tablet {
        margin-left: 50%
    }
    .column.is-offset-one-third-tablet {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-tablet {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-tablet {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-tablet {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-tablet {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-tablet {
        margin-left: 80%
    }
    .column.is-0-tablet {
        flex: none;
        width: 0
    }
    .column.is-offset-0-tablet {
        margin-left: 0
    }
    .column.is-1-tablet {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-tablet {
        margin-left: 8.3333333333%
    }
    .column.is-2-tablet {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-tablet {
        margin-left: 16.6666666667%
    }
    .column.is-3-tablet {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-tablet {
        margin-left: 25%
    }
    .column.is-4-tablet {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-tablet {
        margin-left: 33.3333333333%
    }
    .column.is-5-tablet {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-tablet {
        margin-left: 41.6666666667%
    }
    .column.is-6-tablet {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-tablet {
        margin-left: 50%
    }
    .column.is-7-tablet {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-tablet {
        margin-left: 58.3333333333%
    }
    .column.is-8-tablet {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-tablet {
        margin-left: 66.6666666667%
    }
    .column.is-9-tablet {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-tablet {
        margin-left: 75%
    }
    .column.is-10-tablet {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-tablet {
        margin-left: 83.3333333333%
    }
    .column.is-11-tablet {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-tablet {
        margin-left: 91.6666666667%
    }
    .column.is-12-tablet {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-tablet {
        margin-left: 100%
    }
}

@media (max-width:767px) {
    .column.is-narrow-tablet-max {
        flex: none;
        width: auto
    }
    .column.is-full-tablet-max {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-tablet-max {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-tablet-max {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-tablet-max {
        flex: none;
        width: 50%
    }
    .column.is-one-third-tablet-max {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-tablet-max {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-tablet-max {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-tablet-max {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-tablet-max {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-tablet-max {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-tablet-max {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-tablet-max {
        margin-left: 66.6666%
    }
    .column.is-offset-half-tablet-max {
        margin-left: 50%
    }
    .column.is-offset-one-third-tablet-max {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-tablet-max {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-tablet-max {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-tablet-max {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-tablet-max {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-tablet-max {
        margin-left: 80%
    }
    .column.is-0-tablet-max {
        flex: none;
        width: 0
    }
    .column.is-offset-0-tablet-max {
        margin-left: 0
    }
    .column.is-1-tablet-max {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-tablet-max {
        margin-left: 8.3333333333%
    }
    .column.is-2-tablet-max {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-tablet-max {
        margin-left: 16.6666666667%
    }
    .column.is-3-tablet-max {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-tablet-max {
        margin-left: 25%
    }
    .column.is-4-tablet-max {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-tablet-max {
        margin-left: 33.3333333333%
    }
    .column.is-5-tablet-max {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-tablet-max {
        margin-left: 41.6666666667%
    }
    .column.is-6-tablet-max {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-tablet-max {
        margin-left: 50%
    }
    .column.is-7-tablet-max {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-tablet-max {
        margin-left: 58.3333333333%
    }
    .column.is-8-tablet-max {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-tablet-max {
        margin-left: 66.6666666667%
    }
    .column.is-9-tablet-max {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-tablet-max {
        margin-left: 75%
    }
    .column.is-10-tablet-max {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-tablet-max {
        margin-left: 83.3333333333%
    }
    .column.is-11-tablet-max {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-tablet-max {
        margin-left: 91.6666666667%
    }
    .column.is-12-tablet-max {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-tablet-max {
        margin-left: 100%
    }
}

@media (min-width:1024px) {
    .column.is-narrow-desktop {
        flex: none;
        width: auto
    }
    .column.is-full-desktop {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-desktop {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-desktop {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-desktop {
        flex: none;
        width: 50%
    }
    .column.is-one-third-desktop {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-desktop {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-desktop {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-desktop {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-desktop {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-desktop {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-desktop {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-desktop {
        margin-left: 66.6666%
    }
    .column.is-offset-half-desktop {
        margin-left: 50%
    }
    .column.is-offset-one-third-desktop {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-desktop {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-desktop {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-desktop {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-desktop {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-desktop {
        margin-left: 80%
    }
    .column.is-0-desktop {
        flex: none;
        width: 0
    }
    .column.is-offset-0-desktop {
        margin-left: 0
    }
    .column.is-1-desktop {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-desktop {
        margin-left: 8.3333333333%
    }
    .column.is-2-desktop {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-desktop {
        margin-left: 16.6666666667%
    }
    .column.is-3-desktop {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-desktop {
        margin-left: 25%
    }
    .column.is-4-desktop {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-desktop {
        margin-left: 33.3333333333%
    }
    .column.is-5-desktop {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-desktop {
        margin-left: 41.6666666667%
    }
    .column.is-6-desktop {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-desktop {
        margin-left: 50%
    }
    .column.is-7-desktop {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-desktop {
        margin-left: 58.3333333333%
    }
    .column.is-8-desktop {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-desktop {
        margin-left: 66.6666666667%
    }
    .column.is-9-desktop {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-desktop {
        margin-left: 75%
    }
    .column.is-10-desktop {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-desktop {
        margin-left: 83.3333333333%
    }
    .column.is-11-desktop {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-desktop {
        margin-left: 91.6666666667%
    }
    .column.is-12-desktop {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-desktop {
        margin-left: 100%
    }
}

@media (max-width:1023px) {
    .column.is-narrow-desktop-max {
        flex: none;
        width: auto
    }
    .column.is-full-desktop-max {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-desktop-max {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-desktop-max {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-desktop-max {
        flex: none;
        width: 50%
    }
    .column.is-one-third-desktop-max {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-desktop-max {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-desktop-max {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-desktop-max {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-desktop-max {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-desktop-max {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-desktop-max {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-desktop-max {
        margin-left: 66.6666%
    }
    .column.is-offset-half-desktop-max {
        margin-left: 50%
    }
    .column.is-offset-one-third-desktop-max {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-desktop-max {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-desktop-max {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-desktop-max {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-desktop-max {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-desktop-max {
        margin-left: 80%
    }
    .column.is-0-desktop-max {
        flex: none;
        width: 0
    }
    .column.is-offset-0-desktop-max {
        margin-left: 0
    }
    .column.is-1-desktop-max {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-desktop-max {
        margin-left: 8.3333333333%
    }
    .column.is-2-desktop-max {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-desktop-max {
        margin-left: 16.6666666667%
    }
    .column.is-3-desktop-max {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-desktop-max {
        margin-left: 25%
    }
    .column.is-4-desktop-max {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-desktop-max {
        margin-left: 33.3333333333%
    }
    .column.is-5-desktop-max {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-desktop-max {
        margin-left: 41.6666666667%
    }
    .column.is-6-desktop-max {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-desktop-max {
        margin-left: 50%
    }
    .column.is-7-desktop-max {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-desktop-max {
        margin-left: 58.3333333333%
    }
    .column.is-8-desktop-max {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-desktop-max {
        margin-left: 66.6666666667%
    }
    .column.is-9-desktop-max {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-desktop-max {
        margin-left: 75%
    }
    .column.is-10-desktop-max {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-desktop-max {
        margin-left: 83.3333333333%
    }
    .column.is-11-desktop-max {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-desktop-max {
        margin-left: 91.6666666667%
    }
    .column.is-12-desktop-max {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-desktop-max {
        margin-left: 100%
    }
}

@media (min-width:1280px) {
    .column.is-narrow-desktop-l {
        flex: none;
        width: auto
    }
    .column.is-full-desktop-l {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-desktop-l {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-desktop-l {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-desktop-l {
        flex: none;
        width: 50%
    }
    .column.is-one-third-desktop-l {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-desktop-l {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-desktop-l {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-desktop-l {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-desktop-l {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-desktop-l {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-desktop-l {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-desktop-l {
        margin-left: 66.6666%
    }
    .column.is-offset-half-desktop-l {
        margin-left: 50%
    }
    .column.is-offset-one-third-desktop-l {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-desktop-l {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-desktop-l {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-desktop-l {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-desktop-l {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-desktop-l {
        margin-left: 80%
    }
    .column.is-0-desktop-l {
        flex: none;
        width: 0
    }
    .column.is-offset-0-desktop-l {
        margin-left: 0
    }
    .column.is-1-desktop-l {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-desktop-l {
        margin-left: 8.3333333333%
    }
    .column.is-2-desktop-l {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-desktop-l {
        margin-left: 16.6666666667%
    }
    .column.is-3-desktop-l {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-desktop-l {
        margin-left: 25%
    }
    .column.is-4-desktop-l {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-desktop-l {
        margin-left: 33.3333333333%
    }
    .column.is-5-desktop-l {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-desktop-l {
        margin-left: 41.6666666667%
    }
    .column.is-6-desktop-l {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-desktop-l {
        margin-left: 50%
    }
    .column.is-7-desktop-l {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-desktop-l {
        margin-left: 58.3333333333%
    }
    .column.is-8-desktop-l {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-desktop-l {
        margin-left: 66.6666666667%
    }
    .column.is-9-desktop-l {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-desktop-l {
        margin-left: 75%
    }
    .column.is-10-desktop-l {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-desktop-l {
        margin-left: 83.3333333333%
    }
    .column.is-11-desktop-l {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-desktop-l {
        margin-left: 91.6666666667%
    }
    .column.is-12-desktop-l {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-desktop-l {
        margin-left: 100%
    }
}

@media (max-width:1279px) {
    .column.is-narrow-desktop-l-max {
        flex: none;
        width: auto
    }
    .column.is-full-desktop-l-max {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-desktop-l-max {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-desktop-l-max {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-desktop-l-max {
        flex: none;
        width: 50%
    }
    .column.is-one-third-desktop-l-max {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-desktop-l-max {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-desktop-l-max {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-desktop-l-max {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-desktop-l-max {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-desktop-l-max {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-desktop-l-max {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-desktop-l-max {
        margin-left: 66.6666%
    }
    .column.is-offset-half-desktop-l-max {
        margin-left: 50%
    }
    .column.is-offset-one-third-desktop-l-max {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-desktop-l-max {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-desktop-l-max {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-desktop-l-max {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-desktop-l-max {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-desktop-l-max {
        margin-left: 80%
    }
    .column.is-0-desktop-l-max {
        flex: none;
        width: 0
    }
    .column.is-offset-0-desktop-l-max {
        margin-left: 0
    }
    .column.is-1-desktop-l-max {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-desktop-l-max {
        margin-left: 8.3333333333%
    }
    .column.is-2-desktop-l-max {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-desktop-l-max {
        margin-left: 16.6666666667%
    }
    .column.is-3-desktop-l-max {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-desktop-l-max {
        margin-left: 25%
    }
    .column.is-4-desktop-l-max {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-desktop-l-max {
        margin-left: 33.3333333333%
    }
    .column.is-5-desktop-l-max {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-desktop-l-max {
        margin-left: 41.6666666667%
    }
    .column.is-6-desktop-l-max {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-desktop-l-max {
        margin-left: 50%
    }
    .column.is-7-desktop-l-max {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-desktop-l-max {
        margin-left: 58.3333333333%
    }
    .column.is-8-desktop-l-max {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-desktop-l-max {
        margin-left: 66.6666666667%
    }
    .column.is-9-desktop-l-max {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-desktop-l-max {
        margin-left: 75%
    }
    .column.is-10-desktop-l-max {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-desktop-l-max {
        margin-left: 83.3333333333%
    }
    .column.is-11-desktop-l-max {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-desktop-l-max {
        margin-left: 91.6666666667%
    }
    .column.is-12-desktop-l-max {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-desktop-l-max {
        margin-left: 100%
    }
}

@media (min-width:1440px) {
    .column.is-narrow-widescreen {
        flex: none;
        width: auto
    }
    .column.is-full-widescreen {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-widescreen {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-widescreen {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-widescreen {
        flex: none;
        width: 50%
    }
    .column.is-one-third-widescreen {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-widescreen {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-widescreen {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-widescreen {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-widescreen {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-widescreen {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-widescreen {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-widescreen {
        margin-left: 66.6666%
    }
    .column.is-offset-half-widescreen {
        margin-left: 50%
    }
    .column.is-offset-one-third-widescreen {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-widescreen {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-widescreen {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-widescreen {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-widescreen {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-widescreen {
        margin-left: 80%
    }
    .column.is-0-widescreen {
        flex: none;
        width: 0
    }
    .column.is-offset-0-widescreen {
        margin-left: 0
    }
    .column.is-1-widescreen {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-widescreen {
        margin-left: 8.3333333333%
    }
    .column.is-2-widescreen {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-widescreen {
        margin-left: 16.6666666667%
    }
    .column.is-3-widescreen {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-widescreen {
        margin-left: 25%
    }
    .column.is-4-widescreen {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-widescreen {
        margin-left: 33.3333333333%
    }
    .column.is-5-widescreen {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-widescreen {
        margin-left: 41.6666666667%
    }
    .column.is-6-widescreen {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-widescreen {
        margin-left: 50%
    }
    .column.is-7-widescreen {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-widescreen {
        margin-left: 58.3333333333%
    }
    .column.is-8-widescreen {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-widescreen {
        margin-left: 66.6666666667%
    }
    .column.is-9-widescreen {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-widescreen {
        margin-left: 75%
    }
    .column.is-10-widescreen {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-widescreen {
        margin-left: 83.3333333333%
    }
    .column.is-11-widescreen {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-widescreen {
        margin-left: 91.6666666667%
    }
    .column.is-12-widescreen {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-widescreen {
        margin-left: 100%
    }
}

@media (max-width:1439px) {
    .column.is-narrow-widescreen-max {
        flex: none;
        width: auto
    }
    .column.is-full-widescreen-max {
        flex: none;
        width: 100%
    }
    .column.is-three-quarters-widescreen-max {
        flex: none;
        width: 75%
    }
    .column.is-two-thirds-widescreen-max {
        flex: none;
        width: 66.6666%
    }
    .column.is-half-widescreen-max {
        flex: none;
        width: 50%
    }
    .column.is-one-third-widescreen-max {
        flex: none;
        width: 33.3333%
    }
    .column.is-one-quarter-widescreen-max {
        flex: none;
        width: 25%
    }
    .column.is-one-fifth-widescreen-max {
        flex: none;
        width: 20%
    }
    .column.is-two-fifths-widescreen-max {
        flex: none;
        width: 40%
    }
    .column.is-three-fifths-widescreen-max {
        flex: none;
        width: 60%
    }
    .column.is-four-fifths-widescreen-max {
        flex: none;
        width: 80%
    }
    .column.is-offset-three-quarters-widescreen-max {
        margin-left: 75%
    }
    .column.is-offset-two-thirds-widescreen-max {
        margin-left: 66.6666%
    }
    .column.is-offset-half-widescreen-max {
        margin-left: 50%
    }
    .column.is-offset-one-third-widescreen-max {
        margin-left: 33.3333%
    }
    .column.is-offset-one-quarter-widescreen-max {
        margin-left: 25%
    }
    .column.is-offset-one-fifth-widescreen-max {
        margin-left: 20%
    }
    .column.is-offset-two-fifths-widescreen-max {
        margin-left: 40%
    }
    .column.is-offset-three-fifths-widescreen-max {
        margin-left: 60%
    }
    .column.is-offset-four-fifths-widescreen-max {
        margin-left: 80%
    }
    .column.is-0-widescreen-max {
        flex: none;
        width: 0
    }
    .column.is-offset-0-widescreen-max {
        margin-left: 0
    }
    .column.is-1-widescreen-max {
        flex: none;
        width: 8.3333333333%
    }
    .column.is-offset-1-widescreen-max {
        margin-left: 8.3333333333%
    }
    .column.is-2-widescreen-max {
        flex: none;
        width: 16.6666666667%
    }
    .column.is-offset-2-widescreen-max {
        margin-left: 16.6666666667%
    }
    .column.is-3-widescreen-max {
        flex: none;
        width: 25%
    }
    .column.is-offset-3-widescreen-max {
        margin-left: 25%
    }
    .column.is-4-widescreen-max {
        flex: none;
        width: 33.3333333333%
    }
    .column.is-offset-4-widescreen-max {
        margin-left: 33.3333333333%
    }
    .column.is-5-widescreen-max {
        flex: none;
        width: 41.6666666667%
    }
    .column.is-offset-5-widescreen-max {
        margin-left: 41.6666666667%
    }
    .column.is-6-widescreen-max {
        flex: none;
        width: 50%
    }
    .column.is-offset-6-widescreen-max {
        margin-left: 50%
    }
    .column.is-7-widescreen-max {
        flex: none;
        width: 58.3333333333%
    }
    .column.is-offset-7-widescreen-max {
        margin-left: 58.3333333333%
    }
    .column.is-8-widescreen-max {
        flex: none;
        width: 66.6666666667%
    }
    .column.is-offset-8-widescreen-max {
        margin-left: 66.6666666667%
    }
    .column.is-9-widescreen-max {
        flex: none;
        width: 75%
    }
    .column.is-offset-9-widescreen-max {
        margin-left: 75%
    }
    .column.is-10-widescreen-max {
        flex: none;
        width: 83.3333333333%
    }
    .column.is-offset-10-widescreen-max {
        margin-left: 83.3333333333%
    }
    .column.is-11-widescreen-max {
        flex: none;
        width: 91.6666666667%
    }
    .column.is-offset-11-widescreen-max {
        margin-left: 91.6666666667%
    }
    .column.is-12-widescreen-max {
        flex: none;
        width: 100%
    }
    .column.is-offset-12-widescreen-max {
        margin-left: 100%
    }
}

.columns.is-variable {
    --columnGap: $column-gap;
    margin: calc(var(--columnGap)*-1)
}

.columns.is-variable .column {
    padding: var(--columnGap)
}

@media (max-width:768px) {
    .columns.is-variable.is-0-mobile {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-mobile {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-mobile {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-mobile {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-mobile {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-mobile {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-mobile {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-mobile {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-mobile {
        --columnGap: 2rem
    }
}

@media (min-width:768px) {
    .columns.is-variable.is-0- {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1- {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2- {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3- {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4- {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5- {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6- {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7- {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8- {
        --columnGap: 2rem
    }
    .columns.is-variable.is-0-tablet {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-tablet {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-tablet {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-tablet {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-tablet {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-tablet {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-tablet {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-tablet {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-tablet {
        --columnGap: 2rem
    }
}

@media (max-width:767px) {
    .columns.is-variable.is-0-tablet-max {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-tablet-max {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-tablet-max {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-tablet-max {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-tablet-max {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-tablet-max {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-tablet-max {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-tablet-max {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-tablet-max {
        --columnGap: 2rem
    }
}

@media (min-width:1024px) {
    .columns.is-variable.is-0-desktop {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-desktop {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-desktop {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-desktop {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-desktop {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-desktop {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-desktop {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-desktop {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-desktop {
        --columnGap: 2rem
    }
}

@media (max-width:1023px) {
    .columns.is-variable.is-0-desktop-max {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-desktop-max {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-desktop-max {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-desktop-max {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-desktop-max {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-desktop-max {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-desktop-max {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-desktop-max {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-desktop-max {
        --columnGap: 2rem
    }
}

@media (min-width:1280px) {
    .columns.is-variable.is-0-desktop-l {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-desktop-l {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-desktop-l {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-desktop-l {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-desktop-l {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-desktop-l {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-desktop-l {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-desktop-l {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-desktop-l {
        --columnGap: 2rem
    }
}

@media (max-width:1279px) {
    .columns.is-variable.is-0-desktop-l-max {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-desktop-l-max {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-desktop-l-max {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-desktop-l-max {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-desktop-l-max {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-desktop-l-max {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-desktop-l-max {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-desktop-l-max {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-desktop-l-max {
        --columnGap: 2rem
    }
}

@media (min-width:1440px) {
    .columns.is-variable.is-0-widescreen {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-widescreen {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-widescreen {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-widescreen {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-widescreen {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-widescreen {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-widescreen {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-widescreen {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-widescreen {
        --columnGap: 2rem
    }
}

@media (max-width:1439px) {
    .columns.is-variable.is-0-widescreen-max {
        --columnGap: 0rem
    }
    .columns.is-variable.is-1-widescreen-max {
        --columnGap: 0.25rem
    }
    .columns.is-variable.is-2-widescreen-max {
        --columnGap: 0.5rem
    }
    .columns.is-variable.is-3-widescreen-max {
        --columnGap: 0.75rem
    }
    .columns.is-variable.is-4-widescreen-max {
        --columnGap: 1rem
    }
    .columns.is-variable.is-5-widescreen-max {
        --columnGap: 1.25rem
    }
    .columns.is-variable.is-6-widescreen-max {
        --columnGap: 1.5rem
    }
    .columns.is-variable.is-7-widescreen-max {
        --columnGap: 1.75rem
    }
    .columns.is-variable.is-8-widescreen-max {
        --columnGap: 2rem
    }
}

.wrapper {
    margin: 0 auto;
    max-width: 1440px;
    width: 90%
}

.wrapper.is-small {
    max-width: 1280px
}

.wrapper.is-flex {
    display: flex
}

.wrapper.is-v-aligned {
    align-items: center
}

.wrapper.is-mobile {
    width: 100%
}

@media (max-width:768px) {
    .wrapper.is-mobile {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-mobile {
        max-width: none;
        width: 100%
    }
}

.wrapper.is- {
    width: 100%
}

@media (min-width:768px) {
    .wrapper.is- {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not- {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-tablet {
    width: 100%
}

@media (min-width:768px) {
    .wrapper.is-tablet {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-tablet {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-tablet-max {
    width: 100%
}

@media (max-width:767px) {
    .wrapper.is-tablet-max {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-tablet-max {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-desktop {
    width: 100%
}

@media (min-width:1024px) {
    .wrapper.is-desktop {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-desktop {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-desktop-max {
    width: 100%
}

@media (max-width:1023px) {
    .wrapper.is-desktop-max {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-desktop-max {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-desktop-l {
    width: 100%
}

@media (min-width:1280px) {
    .wrapper.is-desktop-l {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-desktop-l {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-desktop-l-max {
    width: 100%
}

@media (max-width:1279px) {
    .wrapper.is-desktop-l-max {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-desktop-l-max {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-widescreen {
    width: 100%
}

@media (min-width:1440px) {
    .wrapper.is-widescreen {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-widescreen {
        max-width: none;
        width: 100%
    }
}

.wrapper.is-widescreen-max {
    width: 100%
}

@media (max-width:1439px) {
    .wrapper.is-widescreen-max {
        max-width: 1440px;
        width: 90%
    }
    .wrapper.is-not-widescreen-max {
        max-width: none;
        width: 100%
    }
}

.bpoint {
    bottom: 0;
    position: fixed;
    right: 0;
    z-index: 9999999
}

.bpoint:before {
    background: #ef5329;
    color: #fff;
    display: block;
    font-weight: 700;
    padding: 1rem 3rem;
    position: relative
}

@media (max-width:768px) {
    .bpoint:before {
        content: "mobile"
    }
}

@media (min-width:768px) {
    .bpoint:before {
        content: "";
        content: "tablet"
    }
}

@media (max-width:767px) {
    .bpoint:before {
        content: "tablet-max"
    }
}

@media (min-width:1024px) {
    .bpoint:before {
        content: "desktop"
    }
}

@media (max-width:1023px) {
    .bpoint:before {
        content: "desktop-max"
    }
}

@media (min-width:1280px) {
    .bpoint:before {
        content: "desktop-l"
    }
}

@media (max-width:1279px) {
    .bpoint:before {
        content: "desktop-l-max"
    }
}

@media (min-width:1440px) {
    .bpoint:before {
        content: "widescreen"
    }
}

@media (max-width:1439px) {
    .bpoint:before {
        content: "widescreen-max"
    }
}

@-webkit-keyframes widthSlide {
    0% {
        width: 0
    }
    to {
        width: 100%
    }
}

@keyframes widthSlide {
    0% {
        width: 0
    }
    to {
        width: 100%
    }
}

@-webkit-keyframes spinAround {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(359deg)
    }
}

@keyframes spinAround {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(359deg)
    }
}

@-webkit-keyframes float {
    0%,
    to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.02)
    }
}

@keyframes float {
    0%,
    to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.02)
    }
}

@-webkit-keyframes locationPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: 1
    }
    80% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3)
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3)
    }
}

@keyframes locationPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: 1
    }
    80% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3)
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3)
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(1turn)
    }
}

@-webkit-keyframes wiggle {
    0%,
    to {
        transform: rotate(0)
    }
    25%,
    75% {
        transform: rotate(7deg)
    }
    50% {
        transform: rotate(-7deg)
    }
}

@keyframes wiggle {
    0%,
    to {
        transform: rotate(0)
    }
    25%,
    75% {
        transform: rotate(7deg)
    }
    50% {
        transform: rotate(-7deg)
    }
}

@-webkit-keyframes heart {
    0%,
    to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

@keyframes heart {
    0%,
    to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

@-webkit-keyframes heartRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: .3
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4)
    }
}

@keyframes heartRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }
    50% {
        opacity: .3
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4)
    }
}

html {
    font-size: 62.5%
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: #f2f5f9;
    color: #99a0a7;
    font: 400 1.6rem Axiforma, sans-serif;
    height: 100%;
    margin: 0
}

body.is-overflow-h,
main {
    overflow: hidden
}

main {
    padding-top: 54px
}

@media (min-width:1024px) {
    main {
        padding-top: 134px
    }
}

img {
    max-width: 100%;
    vertical-align: bottom
}

hr {
    background-color: #d9d8eb;
    border: 0;
    height: 1px;
    margin: 0 auto;
    width: 100%
}

::-moz-selection {
    background-color: #ef5329;
    color: #fff
}

::selection {
    background-color: #ef5329;
    color: #fff
}

.featured-collections:before {
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    color: #000;
    content: "wwbt";
    font-family: Pilat Wide, sans-serif;
    font-size: 200px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    opacity: .05;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase
}

.featured-collections__grid:after,
.inner-header.is-large .inner-header__image:before {
    background-image: url(../icons/x-grid-small.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 370px;
    pointer-events: none;
    position: absolute;
    width: 440px
}

.join-us .wrapper:after,
.sponsor .wrapper:after {
    background-image: url(../icons/x-grid-large.svg);
    height: 880px;
    width: 880px;
}

.affiliates-list .wrapper:after,
.brands-intro:before,
.join-us .wrapper:after,
.sponsor .wrapper:after,
.text-image:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    pointer-events: none;
    position: absolute
}

.affiliates-list .wrapper:after,
.brands-intro:before,
.text-image:before {
    background-image: url(../icons/x-grid-large-alt.svg);
    height: 790px;
    width: 790px
}

.collection-filters__filter h6 span,
.collection-filters__mobile-toggle span {
    background-color: #ef5329;
    border-radius: 50%;
    color: #fff;
    display: none;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    height: 16px;
    line-height: 15px;
    margin-left: 5px;
    padding-right: 1px;
    position: relative;
    text-align: center;
    top: -1px;
    vertical-align: middle;
    width: 16px
}

@media (max-width:1023px) {
    .collection-filters__filter h6 span,
    .collection-filters__mobile-toggle span {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%)
    }
}

.collection-filters__filter h6 span.is-double,
.collection-filters__mobile-toggle span.is-double {
    font-size: 8px;
    line-height: 13px
}

.collection-filters__filter h6 span.is-count,
.collection-filters__mobile-toggle span.is-count {
    display: inline-block
}

*,
:after,
:before {
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    height: 100%;
    margin: 0
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0
}

figure,
xmp {
    margin: 0
}

xmp {
    display: inline
}

a:active,
a:focus,
a:hover {
    outline: 0
}

.xxl-title {
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -1.22px;
    line-height: 1
}

@media (min-width:768px) {
    .xxl-title {
        font-size: 50px
    }
}

@media (min-width:1440px) {
    .xxl-title {
        font-size: 110px
    }
}

.xl-title,
h1 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.89px;
    line-height: 1
}

@media (min-width:768px) {
    .xl-title,
    h1 {
        font-size: 40px
    }
}

@media (min-width:1440px) {
    .xl-title,
    h1 {
        font-size: 80px
    }
}

.lg-title,
h2 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.56px;
    line-height: 1.1
}

@media (min-width:768px) {
    .lg-title,
    h2 {
        font-size: 30px
    }
}

@media (min-width:1440px) {
    .lg-title,
    h2 {
        font-size: 50px
    }
}

.md-title,
h3 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: normal;
    line-height: 1.3
}

@media (min-width:768px) {
    .md-title,
    h3 {
        font-size: 30px
    }
}

@media (min-width:1440px) {
    .md-title,
    h3 {
        font-size: 35px
    }
}

.sm-title,
body.template-page-landing .inner-header p,
h4 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.28px;
    line-height: 1.3
}

@media (min-width:1440px) {
    .sm-title,
    body.template-page-landing .inner-header p,
    h4 {
        font-size: 25px
    }
}

.xs-title,
h5 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .21px;
    line-height: 1.3
}

@media (min-width:1440px) {
    .xs-title,
    h5 {
        font-size: 16px
    }
}

.xxs-title,
h6 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .28px;
    line-height: 1.3
}

@media (min-width:1440px) {
    .xxs-title,
    h6 {
        font-size: 12px
    }
}

.slash-title:before {
    color: #ef5329;
    content: "//"
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #99a0a7;
    font-family: Pilat Wide, sans-serif;
    margin: 0 0 10px;
    text-transform: uppercase
}

h1.text-black em,
h2.text-black em,
h3.text-black em,
h4.text-black em,
h5.text-black em,
h6.text-black em {
    -webkit-text-stroke-color: #000;
    text-stroke-color: #000;
    color: #000
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    color: #fff;
    display: inline-block;
    font-style: normal
}

@media (max-width:1023px) {
    h1 em,
    h2 em,
    h3 em,
    h4 em,
    h5 em,
    h6 em {
        text-stroke-width: 1px;
        -webkit-text-stroke-width: 1px
    }
}

h1 span.symbol,
h2 span.symbol,
h3 span.symbol,
h4 span.symbol,
h5 span.symbol,
h6 span.symbol {
    text-transform: none
}

.pre-heading {
    display: block;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase
}

@media (min-width:768px) {
    .pre-heading {
        font-size: 14px
    }
}

@media (min-width:1440px) {
    .pre-heading {
        font-size: 18px
    }
}

a,
li,
ol,
p,
ul {
    color: #99a0a7;
    font-size: 12px;
    line-height: 1.9
}

@media (min-width:1440px) {
    a,
    li,
    ol,
    p,
    ul {
        font-size: 1.6rem
    }
}

p:first-of-type {
    margin-top: 0
}

a {
    color: #ef5329
}

a,
a:hover {
    text-decoration: none
}

.text-black {
    color: #000
}

.text-white {
    color: #fff
}

.text-orange {
    color: #ef5329
}

.text-red {
    color: #f83030
}

.text-green {
    color: #549b1e
}

.text-offblack {
    color: #131415
}

.text-grey {
    color: #99a0a7
}

.text-light-grey {
    color: #f2f5f9
}

.text-dark-grey {
    color: #e1e7ee
}

.text-purple {
    color: #8c29ef
}

.bg-black {
    background-color: #000
}

.bg-white {
    background-color: #fff
}

.bg-orange {
    background-color: #ef5329
}

.bg-red {
    background-color: #f83030
}

.bg-green {
    background-color: #549b1e
}

.bg-offblack {
    background-color: #131415
}

.bg-grey {
    background-color: #99a0a7
}

.bg-light-grey {
    background-color: #f2f5f9
}

.bg-dark-grey {
    background-color: #e1e7ee
}

.bg-purple {
    background-color: #8c29ef
}

.font-heading {
    font-family: Pilat Wide, sans-serif
}

.font-paragraph {
    font-family: Axiforma, sans-serif
}

@media (max-width:768px) {
    .is-flipped-v-mobile else {
        flex-direction: column-reverse
    }
}

@media (min-width:768px) {
    .is-flipped-v- else,
    .is-flipped-v-tablet else {
        flex-direction: column-reverse
    }
}

@media (max-width:767px) {
    .is-flipped-v-tablet-max else {
        flex-direction: column-reverse
    }
}

@media (min-width:1024px) {
    .is-flipped-v-desktop else {
        flex-direction: column-reverse
    }
}

@media (max-width:1023px) {
    .is-flipped-v-desktop-max else {
        flex-direction: column-reverse
    }
}

@media (min-width:1280px) {
    .is-flipped-v-desktop-l else {
        flex-direction: column-reverse
    }
}

@media (max-width:1279px) {
    .is-flipped-v-desktop-l-max else {
        flex-direction: column-reverse
    }
}

@media (min-width:1440px) {
    .is-flipped-v-widescreen else {
        flex-direction: column-reverse
    }
}

@media (max-width:1439px) {
    .is-flipped-v-widescreen-max else {
        flex-direction: column-reverse
    }
}

@media (max-width:768px) {
    .is-flipped-h-mobile {
        flex-direction: row-reverse
    }
    .is-flipped-h-mobile else {
        flex-direction: column-reverse
    }
}

@media (min-width:768px) {
    .is-flipped-h- {
        flex-direction: row-reverse
    }
    .is-flipped-h- else {
        flex-direction: column-reverse
    }
    .is-flipped-h-tablet {
        flex-direction: row-reverse
    }
    .is-flipped-h-tablet else {
        flex-direction: column-reverse
    }
}

@media (max-width:767px) {
    .is-flipped-h-tablet-max {
        flex-direction: row-reverse
    }
    .is-flipped-h-tablet-max else {
        flex-direction: column-reverse
    }
}

@media (min-width:1024px) {
    .is-flipped-h-desktop {
        flex-direction: row-reverse
    }
    .is-flipped-h-desktop else {
        flex-direction: column-reverse
    }
}

@media (max-width:1023px) {
    .is-flipped-h-desktop-max {
        flex-direction: row-reverse
    }
    .is-flipped-h-desktop-max else {
        flex-direction: column-reverse
    }
}

@media (min-width:1280px) {
    .is-flipped-h-desktop-l {
        flex-direction: row-reverse
    }
    .is-flipped-h-desktop-l else {
        flex-direction: column-reverse
    }
}

@media (max-width:1279px) {
    .is-flipped-h-desktop-l-max {
        flex-direction: row-reverse
    }
    .is-flipped-h-desktop-l-max else {
        flex-direction: column-reverse
    }
}

@media (min-width:1440px) {
    .is-flipped-h-widescreen {
        flex-direction: row-reverse
    }
    .is-flipped-h-widescreen else {
        flex-direction: column-reverse
    }
}

@media (max-width:1439px) {
    .is-flipped-h-widescreen-max {
        flex-direction: row-reverse
    }
    .is-flipped-h-widescreen-max else {
        flex-direction: column-reverse
    }
}

.inline-svg {
    display: block;
    position: relative;
    width: 100%
}

.inline-svg>svg {
    display: block
}

.inline-svg>svg,
.object-cover--absolute {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.object-cover--absolute {
    font-family: "object-fit:cover;object-position:center";
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.object-cover--absolute.top-center {
    -o-object-position: top center;
    object-position: top center
}

.object-contain--absolute {
    bottom: 0;
    font-family: "object-fit:contain;object-position:center";
    height: 100%;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.object-contain--absolute.top-center {
    -o-object-position: top center;
    object-position: top center
}

.flip-x {
    transform: scaleX(-1)
}

.transform-center {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%)
}

.transformY-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.transformX-center {
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}

.btn,
.shopify-challenge__container .btn {
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    min-width: 129px;
    outline: none;
    padding: 17px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
    vertical-align: middle
}

@media (min-width:1024px) {
    .btn,
    .shopify-challenge__container .btn {
        font-size: 12px;
        min-width: 194px;
        padding: 24px 29px
    }
}
#button-confirm{
    border:0;
}
.btn--primary,
#button-confirm,
.shopify-challenge__container .btn {
    background-color: #ef5329;
    border-color: #ef5329;
    color: #fff
}

.btn--primary:hover,
#button-confirm:hover,
.shopify-challenge__container .btn:hover {
    background-color: #ed4012;
    border-color: #ed4012;
    color: #fff
}

.btn--white,
.btn--white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000
}

.btn--grey {
    background-color: #f2f5f9;
    border-color: #f2f5f9;
    color: #000
}

.btn--grey:hover {
    background-color: #e1e8f1;
    border-color: #e1e8f1;
    color: #000
}

.btn--outline {
    background-color: transparent;
    border: 1px solid #ef5329;
    color: #000
}

@media (min-width:1024px) {
    .btn--outline {
        border-width: 2px
    }
}

.btn--outline:hover {
    border-color: #ef5329;
    text-decoration: none
}

.btn--outline:focus,
.btn--outline:hover {
    background-color: #ef5329;
    color: #fff
}

.btn--outline.btn--white {
    color: #fff
}

.btn--dropdown:after {
    background-image: url(../icons/chevron-down-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 5px;
    margin-left: 20px;
    margin-right: -20px;
    transform: translateY(-1px);
    vertical-align: middle;
    width: 9px
}

.btn--icon {
    padding: 18px 20px
}

.btn--icon i,
.btn--icon img {
    margin-right: 10px;
    position: relative;
    top: -1px;
    vertical-align: middle
}

@media (max-width:1023px) {
    .btn--icon i,
    .btn--icon img {
        max-height: 17px
    }
}

.simple-btn {
    background-color: transparent;
    border-bottom: 2px solid #ef5329;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
    outline: none;
    padding: 0 0 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
    vertical-align: middle
}

@media (max-width:1023px) {
    .simple-btn {
        font-size: 10px;
        line-height: 1
    }
}

.simple-btn:hover {
    color: #fff;
    text-decoration: none
}

.simple-btn--black,
.simple-btn--black:hover {
    color: #000
}

.simple-btn--no-stock {
    border: 0;
    color: #f83030;
    padding-bottom: 0
}

.simple-btn--no-stock:hover {
    color: #f83030
}

.simple-btn--preorder {
    border: 0;
    color: #8c29ef;
    padding-bottom: 0
}

.simple-btn--preorder:hover {
    color: #8c29ef
}

.simple-btn--red {
    border-color: #f83030;
    color: #f83030
}

.simple-btn--red:hover {
    color: #f83030
}

.simple-btn--icon {
    border: 0;
    padding-bottom: 0
}

.simple-btn--icon i,
.simple-btn--icon img {
    margin-right: 10px;
    vertical-align: middle
}

.simple-btn--icon span {
    border-bottom: 2px solid #ef5329;
    padding-bottom: 2px
}

.play-btn {
    background-color: rgba(0, 0, 0, .3);
    background-image: url(../icons/play.svg);
    background-position: 52%;
    background-repeat: no-repeat;
    background-size: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    height: 44px;
    left: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px
}

.play-btn--large {
    background-color: #fff;
    background-image: url(../icons/play-black.svg);
    background-position: 54%;
    background-size: 20px;
    border: 0;
    height: 60px;
    width: 60px
}

@media (min-width:768px) {
    .play-btn--large {
        background-size: 25px;
        height: 80px;
        width: 80px
    }
}

@media (min-width:1440px) {
    .play-btn--large {
        background-size: 35px;
        height: 112px;
        width: 112px
    }
}

.play-btn--large:before {
    -webkit-animation: rotate 20s linear infinite;
    animation: rotate 20s linear infinite;
    background-image: url(../icons/play-video.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 80px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 80px
}

@media (min-width:768px) {
    .play-btn--large:before {
        height: 110px;
        left: -15px;
        top: -15px;
        width: 110px
    }
}

@media (min-width:1440px) {
    .play-btn--large:before {
        height: 170px;
        left: -30px;
        top: -30px;
        width: 170px
    }
}

.simple-play-btn {
    background-color: #fff;
    border: 1px solid #e1e7ee;
    border-radius: 20px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 15px 2px 5px;
    position: relative;
    text-transform: uppercase
}

@media (min-width:1024px) {
    .simple-play-btn {
        font-size: 12px;
        padding: 6px 15px 6px 5px
    }
}

.simple-play-btn:before {
    background-color: #ef5329;
    background-image: url(../icons/play.svg);
    background-position: 58%;
    background-repeat: no-repeat;
    background-size: 12px;
    border-radius: 50%;
    content: "";
    height: 32px;
    margin-right: 15px;
    width: 32px
}

.simple-play-btn:before,
.simple-play-btn span {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.simple-play-btn span {
    width: calc(100% - 47px)
}

.download-btn {
    background-color: transparent;
    color: #ef5329;
    cursor: pointer;
    display: block;
    font-family: Pilat Wide, sans-serif;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    outline: none;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
    vertical-align: middle
}

@media (min-width:1024px) {
    .download-btn {
        font-size: 10px
    }
}

.download-btn.is-disabled {
    color: #131415;
    opacity: .15;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.download-btn:hover {
    color: #ef5329;
    text-decoration: none
}

.download-btn:hover:before {
    -webkit-animation: wiggle .5s ease-in-out forwards;
    animation: wiggle .5s ease-in-out forwards
}

.download-btn:before {
    color: #131415;
    content: "";
    display: inline-block;
    font-family: unicons-line;
    font-size: 10px;
    margin-right: 8px;
    position: relative;
    top: -1px;
    transition: .2s ease-in-out;
    vertical-align: middle
}

@media (min-width:1024px) {
    .download-btn:before {
        font-size: 16px;
        top: -3px
    }
}

.buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
    margin-right: -35px;
    margin-top: 30px;
    width: 100%
}

@media (max-width:767px) {
    .buttons {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 10px
    }
}

.buttons .btn,
.buttons .simple-btn {
    margin: 10px 0
}

@media (min-width:768px) {
    .buttons .btn,
    .buttons .simple-btn {
        margin-right: 35px
    }
}

.add-to-cart i,
.buy-it-now i {
    font-size: 30px;
    line-height: 1;
    position: relative
}

.wishlist-btn {
    background: none;
    cursor: pointer;
    height: 38px;
    line-height: 77px;
    position: absolute;
    width: 38px;
    z-index: 10
}

@media (min-width:768px) {
    .wishlist-btn {
        height: 58px;
        width: 58px
    }
}

.wishlist-btn.is-active {
    -webkit-animation: heart .5s ease-in-out forwards;
    animation: heart .5s ease-in-out forwards
}

.wishlist-btn.is-active:before {
    -webkit-animation: heartRing .5s ease-in-out forwards;
    animation: heartRing .5s ease-in-out forwards
}

.wishlist-btn.is-active svg path {
    transition: .5s ease-in-out
}

.wishlist-btn.is-active .heart-left {
    fill: #ff5151
}

.wishlist-btn.is-active .heart-right {
    fill: #ef2929
}

.wishlist-btn.is-disabled {
    pointer-events: none
}

.wishlist-btn:before {
    background-color: #ff5151;
    border-radius: 50%;
    content: "";
    height: 38px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px
}

@media (min-width:768px) {
    .wishlist-btn:before {
        height: 58px;
        width: 58px;
    }
}

.wishlist-btn div {
    background-color: #fff;
    border-radius: 50%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

@media (max-width:767px) {
    .wishlist-btn div {
        line-height: 58px;
    }
    .wishlist-btn svg {
        width: 20px;
    }
}

.wishlist-btn svg path {
    transition: .2s ease
}

.spinner {
    -webkit-animation: spinAround .5s linear infinite;
    animation: spinAround .5s linear infinite;
    border-color: transparent transparent #ef5329 #ef5329;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    display: inline-block;
    height: 22px;
    position: relative;
    width: 22px;
}

.spinner--white {
    border-bottom-color: #fff;
    border-left-color: #fff;
}

.inner-header {
    background-color: #000;
    padding: 40px 0;
    position: relative;
}

@media (min-width:1024px) {
    .inner-header {
        padding: 80px 0 110px;
    }
}

.inner-header.is-image {
    padding: 60px 0;
}

@media (min-width:1024px) {
    .inner-header.is-image {
        padding: 60px 0 160px;
    }
}

.inner-header.is-image .breadcrumbs {
    margin-bottom: 40px;
}

@media (min-width:1024px) {
    .inner-header.is-image .breadcrumbs {
        margin-bottom: 60px;
    }
}

.inner-header.is-large {
    min-height: 850px;
    padding: 80px 0 215px;
}

@media (max-width:1023px) {
    .inner-header.is-large {
        min-height: auto;
        padding: 0 0 80px;
    }
}

.inner-header.is-large .wrapper {
    position: relative;
}

.inner-header.is-large h1 {
    max-width: 1015px;
}

@media (min-width:1024px) {
    .inner-header.is-large h1 {
        font-size: 70px;
    }
}

.inner-header.is-large .inner-header__image {
    height: 290px;
    width: 100vw;
}

@media (max-width:1023px) {
    .inner-header.is-large .inner-header__image {
        left: -5vw;
        margin-bottom: 40px;
        position: relative;
    }
}

@media (min-width:768px) {
    .inner-header.is-large .inner-header__image {
        height: 400px;
    }
}

@media (min-width:1024px) {
    .inner-header.is-large .inner-header__image {
        height: 741px;
        right: -17%;
        top: -80px;
        width: 67%;
    }
}

.inner-header.is-large .inner-header__image:before {
    background-image: url(../icons/x-grid-header.svg);
    bottom: -110px;
    height: 790px;
    left: -120px;
    top: auto;
    width: 790px;
}

@media (max-width:1023px) {
    .inner-header.is-large .inner-header__image:before {
        display: none;
    }
}

.inner-header.is-large .inner-header__image:after {
    content: none
}

@media (max-width:1023px) {
    .inner-header.is-large .breadcrumbs {
        position: absolute;
        top: 40px;
    }
}

.inner-header .breadcrumbs {
    margin-bottom: 20px;
    z-index: 1;
}

.inner-header .btn,
.inner-header .shopify-challenge__container .btn,
.inner-header h1,
.inner-header p,
.shopify-challenge__container .inner-header .btn {
    position: relative;
}

.inner-header p {
    margin: 20px 0 0;
    max-width: 600px;
}

.inner-header .btn,
.inner-header .shopify-challenge__container .btn,
.shopify-challenge__container .inner-header .btn {
    margin-top: 40px;
}

.inner-header__image {
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
}

@media (min-width:1024px) {
    .inner-header__image {
        background-position: 50%;
        right: 110px;
    }
}

.inner-header__image:after,
.inner-header__image:before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
}

.inner-header__image:before {
    background: linear-gradient(270deg, transparent, #000);
    left: 0;
    width: 40%;
}

@media (min-width:1024px) {
    .inner-header__image:before {
        width: 20%;
    }
}

.inner-header__image:after {
    background: linear-gradient(90deg, transparent, #000);
    right: 0;
    width: 10%;
}

.product-grid {
    margin: 40px 0 60px;
    position: relative;
}

@media (min-width:1024px) {
    .product-grid {
        margin: 60px 0 120px;
    }
}

.product-grid .columns {
    margin: -10px;
}

@media (min-width:1024px) {
    .product-grid .columns {
        margin: -15px;
    }
}

.product-grid .column {
    padding: 10px;
}

@media (min-width:1024px) {
    .product-grid .column {
        padding: 15px;
    }
}

.product-grid__not-found.is-filtering {
    -webkit-animation: float 1.5s ease-in-out infinite;
    animation: float 1.5s ease-in-out infinite;
    filter: blur(4px);
    opacity: .2;
    pointer-events: none;
    transition: .2s ease-in-out;
}

.product-grid__infinite {
    position: relative;
}

@media (min-width:1024px) {
    .product-grid__infinite {
        margin: 30px 0 0;
    }
}

.product-grid__infinite.is-loading img {
    opacity: 1;
    visibility: visible;
}

.product-grid__infinite img {
    display: block;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
}

.product-grid__pagination {
    margin-top: 20px;
    text-align: right;
}

.product-grid__pagination a,
.product-grid__pagination span {
    color: #4e5566;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 22px;
    line-height: 19px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 22px;
}

.product-grid__pagination a.is-current,
.product-grid__pagination span.is-current {
    background-color: #131415;
    border-radius: 50%;
    color: #fff;
}

.scroll-to-top {
    background-color: transparent;
    cursor: pointer;
    display: block;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin: 30px 0 0 auto;
    padding: 0;
    text-transform: uppercase;
}

@media (max-width:1023px) {
    .scroll-to-top {
        display: none
    }
}

.scroll-to-top:after {
    background-image: url(../icons/arrow-up-orange.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 33px;
    margin-left: 10px;
    vertical-align: middle;
    width: 19px;
}

.section-seperator {
    height: 10px;
    position: relative;
}

@media (min-width:1024px) {
    .section-seperator {
        height: 23px
    }
}

.section-seperator span {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 70%
}

.icon-blocks {
    margin: 40px 0
}

.icon-blocks figure {
    border: 2px solid #d2d2d2;
    border-radius: 10px;
    display: inline-block;
    height: 35px;
    margin-right: 15px;
    position: relative;
    vertical-align: middle;
    width: 35px
}

@media (min-width:1024px) {
    .icon-blocks figure {
        height: 52px;
        width: 52px
    }
}

.icon-blocks figure i {
    font-size: 18px
}

@media (min-width:1024px) {
    .icon-blocks figure i {
        font-size: 28px
    }
}

.icon-blocks figure i,
.icon-blocks figure img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%)
}

.icon-block {
    margin-bottom: 20px
}

@media (min-width:1024px) {
    .icon-block {
        margin-bottom: 40px
    }
}

.icon-block.is-description div,
.icon-block.is-description figure {
    vertical-align: top
}

.icon-block div {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 71px)
}

.icon-block div h5 {
    margin-bottom: 5px
}

.icon-block div p {
    margin-bottom: 0
}

.side-panels {
    margin-top: 50px
}

@media (min-width:1024px) {
    .side-panels {
        margin-top: 70px
    }
    .side-panels .side-panel {
        margin-left: auto;
        max-width: 420px;
        width: 90%
    }
}

.side-panels .side-panel:not(:last-child) {
    margin-bottom: 20px
}

.side-panels .side-panel__image {
    height: 120px;
    position: relative
}

@media (min-width:768px) {
    .side-panels .side-panel__image {
        height: 250px
    }
}

@media (min-width:1024px) {
    .side-panels .side-panel__image {
        height: 160px
    }
}

.side-panels .side-panel__text {
    background-color: #000;
    padding: 30px 37px 30px 30px
}

.side-panels .side-panel__text p {
    font-size: 12px;
    margin-bottom: 20px;
    width: 90%
}

.alternating-row:not(:last-child) {
    margin-bottom: 50px
}

.alternating-row.is-flipped .column:first-child {
    order: 2
}

.alternating-row.is-flipped .alternating-row__image {
    margin-left: auto;
    margin-right: 0
}

@media (max-width:1023px) {
    .alternating-row .column:first-child {
        order: 2
    }
}

.alternating-row p {
    margin-bottom: 0;
    margin-top: 20px;
    max-width: 600px
}

.alternating-row .simple-play-btn {
    margin-top: 30px
}

.alternating-row__logo {
    margin-bottom: 30px
}

@media (max-width:1023px) {
    .alternating-row__logo {
        margin-bottom: 20px;
        max-height: 43px
    }
}

.alternating-row__image {
    height: 380px;
    margin-right: auto;
    position: relative
}

@media (max-width:1023px) {
    .alternating-row__image {
        margin-top: 40px
    }
}

@media (min-width:1024px) {
    .alternating-row__image {
        height: 730px;
        max-width: 600px;
        width: 90%
    }
}

.cta-panel {
    background-color: #131415;
    padding: 60px 0;
    position: relative;
    text-align: center;
    z-index: 1
}

@media (min-width:1024px) {
    .cta-panel {
        padding: 80px 0
    }
}

.cta-panel h2,
.cta-panel p {
    margin: 0 auto;
    max-width: 1150px
}

.cta-panel h2 {
    font-size: 20px;
    margin-bottom: 20px
}

@media (min-width:1024px) {
    .cta-panel h2 {
        font-size: 60px
    }
}

.cta-panel h2 em {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px
}

.cta-panel .btn {
    margin-top: 20px;
    min-width: 212px
}

@media (min-width:1024px) {
    .cta-panel .btn {
        margin-top: 40px
    }
}

.variant-window {
    background-color: rgba(0, 0, 0, .8);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all .3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 9998
}

.variant-window.is-open {
    opacity: 1;
    visibility: visible
}

.variant-window.is-open .variant-window__box {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: .3s
}

.variant-window__box {
    background-color: #fff;
    left: 50%;
    max-width: 90%;
    opacity: 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -45%);
    transition: all .3s ease;
    width: 400px
}

.variant-window__close {
    background: none;
    cursor: pointer;
    font-size: 15px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0
}

.variant-window .add-to-cart {
    display: block;
    margin-top: 10px
}

.variant-window .add-to-cart.is-adding {
    border-color: transparent;
    height: 14px;
    transform: translateY(-5px);
    transition: none
}

@media (min-width:1024px) {
    .variant-window .add-to-cart.is-adding {
        height: 27px
    }
}

@media (max-width:1023px) {
    .variant-window .add-to-cart {
        font-size: 10px
    }
    .variant-window .add-to-cart i {
        font-size: 25px
    }
    .variant-window .add-to-cart .spinner {
        height: 17px;
        width: 17px
    }
}

.variant-window .add-to-cart i {
    color: #ef5329;
    right: -5px;
    top: -3px
}

.variant-window .add-to-cart .spinner {
    top: 2px
}

@media (min-width:1024px) {
    .variant-window .add-to-cart .spinner {
        top: 4px
    }
}

.form label,
form label {
    color: #000;
    display: block;
    font-size: 12px;
    margin-bottom: 5px
}

@media (min-width:1024px) {
    .form label,
    form label {
        font-size: 14px
    }
}

.form label.is-smaller,
form label.is-smaller {
    font-size: 12px
}

.form label.is-inline,
form label.is-inline {
    display: inline-block;
    margin-right: 30px
}

.form label .required,
form label .required {
    color: #ef5329
}

.form fieldset,
form fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

@media (max-width:768px) {
    .form .form-submit,
    form .form-submit {
        width: 100%
    }
}

.form .errors,
form .errors {
    margin-top: 20px
}

.cart-quantity .qty_box{
    border:0;
    padding: 0;
    width: auto;
    text-align: center;
}

@media (min-width:1024px) {
    .form .errors,
    form .errors {
        margin-top: 45px
    }
}

.form .errors.is-success ul,
form .errors.is-success ul {
    background-color: #549b1e
}

.form .errors ul,
form .errors ul {
    background-color: #f83030;
    list-style: none;
    margin: 0 0 20px;
    padding: 11px 16px
}

@media (min-width:1024px) {
    .form .errors ul,
    form .errors ul {
        margin-bottom: 40px
    }
}

.form .errors li,
form .errors li {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px
}

@media (min-width:1024px) {
    .form .errors li,
    form .errors li {
        font-size: 14px
    }
}

.form .errors li:last-child,
form .errors li:last-child {
    margin-bottom: 0
}

.form .errors a,
form .errors a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline
}

input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
    background: #fff;
    border: 1px solid #d9d8eb;
    color: #000;
    font-family: Axiforma, sans-serif;
    font-size: 12px;
    outline: none;
    padding: 14px;
    transition: all .3s ease;
    width: 100%
}

@media (min-width:1024px) {
    input[type=date],
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    input[type=url],
    select,
    textarea {
        padding: 17px
    }
}

input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
    border-color: #99a0a7
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(../icons/chevron-down.svg);
    background-position: center right 16px;
    background-repeat: no-repeat;
    background-size: 7px
}

select:focus {
    border-color: #d9d8eb
}

textarea {
    min-height: 142px;
    resize: none
}

input[type=checkbox],
input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    height: 18px;
    margin: 0 5px 0 0;
    outline: none;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 18px
}

input[type=checkbox]:before,
input[type=radio]:before {
    background-color: #fff;
    border: 1px solid #c2d1d9;
    border-radius: 2px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

input[type=checkbox]:after,
input[type=radio]:after {
    background-image: url(../icons/tick-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 2px;
    content: "";
    height: 14px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
    background-color: #ef5329;
    border: 0
}

input[type=checkbox]:checked:after,
input[type=radio]:checked:after {
    opacity: 1
}

.form-field {
    margin-bottom: 30px
}

.form-upload {
    background-color: #fff;
    border: 1px solid #d9d8eb;
    height: 50px;
    position: relative
}

.form-upload button,
.form-upload span {
    pointer-events: none
}

.form-upload input {
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.form-upload button {
    background-color: #ef5329;
    color: #fff;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    position: absolute;
    right: -1px;
    text-transform: uppercase;
    top: -1px;
    width: 100px
}

@media (min-width:1024px) {
    .form-upload button {
        font-size: 12px;
        width: 164px
    }
}

.form-upload .spinner {
    top: 5px
}

.form-upload i {
    font-size: 30px;
    position: relative;
    top: -3px
}

.form-upload__label {
    color: #000;
    font-family: Axiforma, sans-serif;
    font-size: 12px;
    line-height: 50px;
    padding-left: 16px
}

.form-checkbox {
    display: inline-block;
    margin-right: 30px
}

.form-checkbox input:before {
    background-color: #f2f5f9
}

.form-checkbox label {
    color: #637d93
}

:-moz-placeholder,
:-ms-input-placeholder,
::-webkit-input-placeholder {
    color: #678095;
    opacity: 1
}

.slick-dots li {
    height: 4px !important;
    margin: 0 4px !important;
    transition: all .3s ease;
    width: 33px !important
}

.slick-dots li.slick-active button:after {
    width: 100%
}

.slick-dots button {
    height: 100% !important;
    padding: 0 !important;
    width: 100% !important
}

.slick-dots button:before {
    background-color: #fff !important;
    content: "" !important;
    height: 100% !important;
    opacity: .5 !important;
    transition: .2s ease-in-out;
    width: 100% !important
}

.slick-dots button:after {
    background-color: #fff !important;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0
}

.featherlight-content {
    background-color: #131415 !important;
    min-height: 300px;
    min-width: 90%;
    overflow: hidden !important
}

@media (min-width:768px) {
    .featherlight-content {
        min-height: 500px
    }
}

@media (min-width:1440px) {
    .featherlight-content {
        min-height: 720px;
        min-width: 1280px
    }
}

.featherlight-content iframe {
    height: 100% !important;
    left: 0;
    position: absolute;
    top: 0;
    width: 100% !important
}

.bestpush-subscription-toast,
.restock-alerts-notify-button {
    display: none !important
}

.shopify-challenge__container {
    padding: 50px 0
}

.shopify-challenge__container p {
    color: #000
}

.shopify-challenge__container .btn {
    border: 0;
    display: block;
    margin: 0 auto
}

.threedy_modal__container {
    padding: 10px
}

.threedy_modal__content {
    padding-top: 0
}

table.cart-table {
    border-spacing: 0;
    font-family: Pilat Wide, sans-serif;
    text-transform: uppercase;
    width: 100%
}
@media (min-width: 1280px){
    table.cart-table .cart-quantity .cart-remove{
        display: none;
    }
}

@media (max-width:1279px) {
    table.cart-table {
        /*display: none;*/
    }
    table.cart-table thead, table.cart-table .cart-subtotal{
        display: none;
    }
    table.cart-table tbody tr{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        padding-left:calc(30% + 20px);
        position: relative;
        background: white;
        margin-bottom: 15px;
    }
    table.cart-table tbody tr td{
        padding:0;
        border:0;
        width: 100%;
    }
    table.cart-table tbody tr .cart-quantity{
        padding: 20px 0;
    }
    table.cart-table .cart-name a{
        line-height: normal;
        margin-bottom: 10px;
    }
    table.cart-table .cart-name .cart-remove{
        display: none;
    }
    table.cart-table .cart-quantity .cart-remove{
        float: right;
        margin-right: 20px;
    }
    table.cart-table .cart-image{
        position: absolute;
        left:0;
        top:0;
        overflow: hidden;
        width: 30%;
    }
}

table.cart-table thead th {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-align: left
}

table.cart-table tbody tr {
    transition: all .3s ease
}

table.cart-table tbody tr.is-updating {
    opacity: .5;
    pointer-events: none
}

table.cart-table tbody tr.is-removed {
    opacity: 0;
    transform: translateX(50%)
}

table.cart-table tbody td {
    background-color: #fff;
    border-top: 15px solid #f2f5f9;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 25px 0;
    vertical-align: top
}

table.cart-table tbody td a {
    font-size: 12px
}

table.cart-table tbody td.cart-image {
    padding: 0 10px 0 0
}

table.cart-table tbody td.cart-name {
    padding-top: 20px
}

.small-table {
    background-color: #fff
}

.small-table ul {
    border: 1px solid #f2f5f9;
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media (min-width:1440px) {
    .small-table ul {
        padding: 0 20px
    }
}

.small-table li {
    border-bottom: 1px solid #f2f5f9;
    font-size: 14px;
    overflow: hidden;
    padding: 14px 20px
}

@media (max-width:768px) {
    .small-table li {
        font-size: 10px
    }
}

@media (min-width:1440px) {
    .small-table li {
        padding: 21px 0
    }
}

.small-table li:last-of-type {
    border-bottom: 0
}

.small-table li span,
.small-table li strong {
    display: block
}

@media (min-width:1440px) {
    .small-table li span,
    .small-table li strong {
        float: left
    }
}

.small-table li strong {
    color: #637d93;
    font-weight: 400;
    margin-right: 1%;
    width: 100%
}

@media (min-width:1440px) {
    .small-table li strong {
        width: 29%
    }
}

.small-table li label,
.small-table li span {
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: none
}

@media (max-width:768px) {
    .small-table li label,
    .small-table li span {
        font-size: 10px
    }
}

.small-table li span {
    position: relative;
    width: 100%
}

@media (min-width:1440px) {
    .small-table li span {
        width: 70%
    }
}

.small-table li span.is-full {
    width: 100%
}

.small-table li span.is-green {
    color: #549b1e
}

.small-table li span.is-red {
    color: #f83030
}

.small-table li span.is-orange {
    color: #ef5329
}

.small-table li label {
    padding-right: 5px;
    vertical-align: top;
    width: 80%
}

.small-table li em {
    color: #ef5329;
    font-style: normal
}

.small-table input {
    border: 0;
    display: none;
    padding: 0;
    width: 80%
}

.small-table a,
.small-table button {
    background-color: transparent;
    color: #ef5329;
    display: inline-block;
    font-size: 12px;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
    width: 20%
}

@media (min-width:1440px) {
    .small-table a,
    .small-table button {
        font-size: 14px;
        right: 10px
    }
}

.small-table .account-billing-update {
    display: none
}

.account-splash {
    min-height: calc(100vh - 128px);
    overflow: hidden;
    padding: 60px 0;
    position: relative
}

@media (min-width:1024px) {
    .account-splash {
        padding: 150px 0 200px
    }
}

.account-splash .wrapper {
    position: relative;
    z-index: 1
}

.account-splash__columns {
    margin: -60px
}

.account-splash__columns>.column {
    padding: 60px
}

.account-splash__box {
    max-width: 480px;
    overflow: hidden
}

@media (max-width:1023px) {
    .account-splash__box {
        margin: 0 auto
    }
}

.account-splash__box.is-larger {
    max-width: 670px
}

@media (min-width:1280px) {
    .account-splash__box.is-larger .columns {
        margin: -15px
    }
    .account-splash__box.is-larger .column {
        padding: 15px
    }
}

.account-splash__box h1 {
    margin-bottom: 0
}

@media (min-width:1024px) {
    .account-splash__box h1 {
        font-size: 30px
    }
}

.account-splash__box label {
    position: relative
}

.account-splash__box label.is-smaller {
    color: #637d93
}

.account-splash__box p {
    color: #000;
    font-size: 12px
}

@media (min-width:1024px) {
    .account-splash__box p {
        font-size: 14px
    }
}

.account-splash__box p.is-terms {
    color: #637d93;
    font-size: 12px;
    margin-top: 10px
}

.account-splash__box p.is-terms a {
    font-size: 12px
}

.account-splash__box p.is-description {
    color: #637d93
}

.account-splash__box p a {
    font-size: 12px
}

@media (min-width:1024px) {
    .account-splash__box p a {
        font-size: 14px
    }
}

.account-splash__box hr {
    margin: 15px 0 30px;
    width: 100%
}

.account-splash__box .columns {
    margin: -10px
}

.account-splash__box .column {
    padding: 10px
}

.account-splash__box .btn {
    margin-top: 30px
}

@media (max-width:1023px) {
    .account-splash__box .btn {
        width: 100%
    }
}

.account-splash__forgot {
    color: #ef5329;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    right: 0;
    text-transform: none;
    top: 0
}

@media (max-width:768px) {
    .account-splash__forgot {
        font-size: 10px
    }
}

.account-splash__signup-link {
    margin-top: 30px
}

@media (max-width:1023px) {
    .account-splash__signup-link {
        text-align: center
    }
}

.account-splash__signup-link a {
    text-decoration: underline
}

.account-login .btn {
    width: 100%
}

.account-forgot {
    /* display: none; */
}

.account-navigation {
    color: #678095;
    font-size: 12px;
    margin: 40px 0 20px
}

@media (min-width:1024px) {
    .account-navigation {
        margin: 70px 0 35px
    }
}

.account-navigation a {
    color: #678095;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    margin: 5px 10px;
    text-transform: uppercase
}

@media (min-width:1024px) {
    .account-navigation a {
        font-size: 14px;
        margin: 0 10px
    }
}

.account-navigation a.is-current {
    color: #ef5329;
    position: relative;
    text-decoration: underline
}

.account-navigation__items {
    margin: 0 -10px
}

.account-container {
    margin: 20px 0 60px;
    overflow: hidden
}

@media (min-width:1024px) {
    .account-container {
        margin: 35px 0 120px
    }
}

.account-container h1 {
    margin-bottom: 20px
}

@media (min-width:1024px) {
    .account-container h1 {
        margin-bottom: 40px
    }
}

.account-container h3 {
    font-size: 12px;
    margin-bottom: 15px
}

@media (min-width:1024px) {
    .account-container h3 {
        font-size: 16px
    }
}

.account-order-history table {
    border-spacing: 0;
    width: 100%
}

@media (max-width:1023px) {
    .account-order-history table {
        display: none
    }
}

.account-order-history thead th {
    color: #000;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 0 20px;
    text-align: left;
    text-transform: uppercase
}

.account-order-history tbody tr {
    background-color: #fff
}

.account-order-history tbody td {
    border-top: 15px solid #f2f5f9;
    color: #678095;
    font-size: 14px;
    padding: 26px 20px;
    vertical-align: middle
}

.account-order-history tbody td a {
    color: #678095
}

.account-order-history tbody td .btn {
    color: #fff
}

.account-order-history .order-link {
    padding: 10px;
    text-align: right;
    width: 18%
}

.account-orders-responsive {
    max-width: 600px
}

@media (min-width:1024px) {
    .account-orders-responsive {
        display: none
    }
}

.account-orders-responsive .columns {
    margin: 0
}

.account-orders-responsive .column {
    padding: 20px
}

.account-orders-responsive h6 {
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: none
}

.account-orders-responsive .order-date a,
.account-orders-responsive .order-date p,
.account-orders-responsive .order-number a,
.account-orders-responsive .order-number p,
.account-orders-responsive .order-status a,
.account-orders-responsive .order-status p {
    font-size: 10px;
    letter-spacing: -.4px
}

.account-orders-responsive .order-date p,
.account-orders-responsive .order-number p,
.account-orders-responsive .order-status p {
    color: #000
}

.account-orders-responsive .btn {
    width: 100%
}

.account-orders-responsive__order {
    background-color: #fff;
    margin-bottom: 20px
}

.account-orders-responsive__order:last-child {
    margin-bottom: 0
}

.account-order h3 i {
    font-size: 25px
}

.account-order h3 i,
.account-order h3 span {
    vertical-align: middle
}

.account-order .cart-responsive {
    margin-top: 60px
}

@media (min-width:1024px) {
    .account-order .cart-responsive {
        display: none
    }
}

.account-order .cart-responsive .product-card {
    margin-bottom: 10px
}

.account-order .cart-totals {
    margin-left: 0;
    margin-top: 30px;
    max-width: none
}

.account-order .cart-table {
    margin-top: 40px
}

@media (max-width:1023px) {
    .account-order .cart-table {
        display: none
    }
}

.account-order__payment {
    border-bottom: 1px solid #f2f5f9;
    padding-bottom: 20px
}

.account-order__buttons {
    margin-top: 30px;
    text-align: right;
    width: 100%
}

@media (min-width:1280px) {
    .account-order__buttons {
        margin-top: 70px
    }
}

.account-order__buttons .btn {
    width: 100%
}

@media (min-width:1024px) {
    .account-order__buttons .btn {
        width: auto
    }
}

@media (min-width:1440px) {
    .account-order__buttons .btn {
        width: 50%
    }
}

.account-addresses h3,
.account-addresses input {
    margin-bottom: 20px
}

.account-addresses .simple-btn {
    margin-top: 20px
}

.account-addresses__address {
    border: 1px solid #f2f5f9
}

.account-addresses__add-address {
    display: none;
    margin-top: 20px
}

.account-addresses .columns,
.account-order .columns,
.account-overview .columns {
    margin: -5px
}

@media (min-width:1024px) {
    .account-addresses .columns,
    .account-order .columns,
    .account-overview .columns {
        margin: -40px
    }
}

.account-addresses .column,
.account-order .column,
.account-overview .column {
    padding: 5px
}

@media (min-width:1024px) {
    .account-addresses .column,
    .account-order .column,
    .account-overview .column {
        padding: 40px
    }
}

.account-wishlist.is-share {
    margin-top: 60px
}

.account-wishlist .wrapper {
    position: relative
}

.account-wishlist .product-grid {
    margin-bottom: 0;
    margin-top: 40px
}

@media (min-width:1024px) {
    .account-wishlist__share {
        position: absolute;
        right: 0;
        top: 9px
    }
}

.account-wishlist__share p {
    color: #505d68;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 14px;
    vertical-align: middle
}

.account-wishlist__share a {
    display: inline-block;
    margin: 0 7px;
    vertical-align: middle
}

.account-wishlist__share a:first-of-type {
    margin-left: 0
}

.account-wishlist__share a img {
    vertical-align: middle
}

.template-page-wishlist main {
    min-height: calc(100vh - 128px)
}

.article-header h1 {
    margin-bottom: 35px;
    max-width: 1200px
}

.article-header .article-details {
    margin-bottom: 50px
}

.article-details {
    line-height: 32px;
    min-height: 32px
}

.article-details__tag {
    border-radius: 18px;
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    margin-right: 15px;
    padding: 10px 15px 9px
}

@media (min-width:1024px) {
    .article-details__tag {
        font-size: 12px
    }
}

.article-details__date {
    font-size: 10px;
    margin-right: 15px
}

@media (min-width:1024px) {
    .article-details__date {
        font-size: 14px
    }
}

.article-details__length {
    color: #678095;
    font-size: 10px
}

@media (min-width:1024px) {
    .article-details__length {
        font-size: 14px
    }
}

.article-image {
    height: 200px;
    margin-bottom: 50px;
    max-width: 1200px;
    position: relative
}

@media (max-width:1023px) {
    .article-image {
        margin-left: -5vw;
        width: 100vw
    }
}

@media (min-width:1024px) {
    .article-image {
        height: 600px
    }
}

@media (min-width:1280px) {
    .article-image {
        margin-left: 120px
    }
}

.article-excerpt {
    border-left: 2px solid #000;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 40px 20px;
    max-width: 960px;
    padding-left: 7px
}

@media (min-width:1024px) {
    .article-excerpt {
        border-left-width: 4px;
        font-size: 21px;
        padding-left: 25px
    }
}

@media (min-width:1280px) {
    .article-excerpt {
        margin: 0 0 0 120px
    }
}

.article-content {
    color: #505d68;
    max-width: 1000px
}

@media (max-width:1023px) {
    .article-content {
        font-size: 12px
    }
}

.article-content p {
    color: #505d68
}

@media (max-width:1023px) {
    .article-content p {
        font-size: 12px
    }
}

.article-featured-products p {
    color: #505d68
}

.article-featured-product {
    margin: 40px 0
}

@media (min-width:1024px) {
    .article-featured-product {
        margin: 80px 0
    }
    .article-featured-product.is-flipped .column:first-child {
        order: 2
    }
}

.article-featured-product.is-flipped .article-featured-product__image {
    margin-left: 0;
    margin-right: auto
}

.article-featured-product__item {
    background-color: #fff;
    color: #000;
    display: block;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 16px 20px;
    text-transform: uppercase
}

@media (min-width:1024px) {
    .article-featured-product__item {
        font-size: 12px;
        max-width: 630px;
        padding: 20px 24px
    }
}

.article-featured-product__item:first-of-type {
    margin-top: 40px
}

.article-featured-product__item:not(:last-of-type) {
    margin-bottom: 10px
}

.article-featured-product__item span {
    display: inline-block;
    vertical-align: top;
    width: 70%
}

@media (min-width:1440px) {
    .article-featured-product__item span {
        vertical-align: middle
    }
}

.article-featured-product__item .money {
    display: inline-block;
    text-align: right;
    vertical-align: top;
    width: 30%
}

@media (min-width:1440px) {
    .article-featured-product__item .money {
        vertical-align: middle
    }
}

.article-featured-product__image {
    height: 325px;
    position: relative
}

@media (min-width:768px) {
    .article-featured-product__image {
        height: 450px
    }
}

@media (max-width:1023px) {
    .article-featured-product__image {
        margin-top: 40px
    }
}

@media (min-width:1024px) {
    .article-featured-product__image {
        height: 560px;
        margin-left: auto;
        max-width: 560px;
        width: 90%
    }
}

.article-share {
    margin-top: 50px
}

@media (min-width:1024px) {
    .article-share {
        margin-top: 100px
    }
}

.article-slider {
    padding: 40px 0
}

@media (min-width:1024px) {
    .article-slider {
        padding: 80px 0
    }
}

.article-slider h2 {
    margin-bottom: 20px
}

.article-slider .columns {
    margin: -5px
}

@media (min-width:1024px) {
    .article-slider .columns {
        margin: -15px
    }
}

.article-slider .column {
    padding: 5px
}

@media (min-width:1024px) {
    .article-slider .column {
        padding: 15px
    }
}

@media (max-width:1439px) {
    .article-slider .blog-card,
    .article-slider .product-card {
        width: 400px
    }
}

@media (max-width:1023px) {
    .article-slider .blog-card,
    .article-slider .product-card {
        width: 300px
    }
}

.article-slider__controls {
    margin-top: 15px
}

@media (min-width:1440px) {
    .article-slider__controls {
        display: none
    }
}

.article-slider__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 40px;
    padding: 0;
    transition: .2s ease;
    width: 52px
}

.article-slider__control.slick-disabled {
    filter: grayscale(100%);
    opacity: .2;
    pointer-events: none
}

.article-slider__control--prev {
    background-image: url(../icons/arrow-prev-black.svg)
}

.article-slider__control--next {
    background-image: url(../icons/arrow-next-black.svg);
    margin-left: -12px
}

@media (max-width:1023px) {
    .blog-tags-container {
        position: relative
    }
    .blog-tags-container:after {
        background: linear-gradient(90deg, transparent, #f2f5f9);
        content: "";
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        width: 20%
    }
}

.blog-tags {
    margin: -5px
}

@media (max-width:1023px) {
    .blog-tags {
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap
    }
    .blog-tags button:last-child {
        margin-right: 10%
    }
}

.blog-tags button {
    background-color: #e1e7ee;
    border-radius: 18px;
    color: #131415;
    cursor: pointer;
    font-family: Axiforma, sans-serif;
    font-size: 10px;
    line-height: 1;
    margin: 5px;
    padding: 10px 15px 9px
}

@media (min-width:1024px) {
    .blog-tags button {
        font-size: 12px
    }
}

.blog-tags button.is-active {
    background-color: #131415;
    color: #fff
}

.blog-search form {
    position: relative
}

.blog-search input {
    background-color: #fff;
    border: 0;
    font-family: Axiforma, sans-serif;
    font-size: 10px;
    letter-spacing: .38px;
    padding: 18px 20px
}

@media (min-width:1024px) {
    .blog-search input {
        font-size: 14px
    }
}

.blog-search input::-moz-placeholder {
    color: #678095;
    font-weight: 400;
    opacity: 1
}

.blog-search input:-ms-input-placeholder {
    color: #678095;
    font-weight: 400;
    opacity: 1
}

.blog-search input::placeholder {
    color: #678095;
    font-weight: 400;
    opacity: 1
}

.blog-search button {
    background-color: transparent;
    background-image: url(../icons/search-orange.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 17px;
    cursor: pointer;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px
}

@media (max-width:1023px) {
    .template-blog .product-grid {
        margin-top: 20px
    }
}

.cart-main {
    margin: 40px 0 60px
}

@media (min-width:1280px) {
    .cart-responsive {
        display: none
    }
}

.cart-responsive .cart-name__tag {
    margin-top: 4px;
    padding: 4px 6px
}

.cart-responsive .cart-image,
.cart-responsive .cart-name,
.cart-responsive .cart-subtotal {
    width: 100%
}

.cart-responsive .cart-price,
.cart-responsive .cart-quantity {
    margin: 10px 0
}

.cart-responsive .cart-image {
    position: relative;
    width: 100px
}

.cart-responsive .cart-quantity {
    color: #000;
    margin-bottom: 0;
    width: 100%
}

.cart-responsive .cart-quantity .cart-update {
    height: 25px;
    width: 25px
}

.cart-responsive .cart-quantity .cart-decrease {
    margin-left: -9px
}

.cart-responsive .cart-quantity span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 25px;
    line-height: 25px;
    pointer-events: none;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    width: 20px
}

.cart-responsive .cart-info {
    background-color: #fff;
    padding: 10px 10px 10px 15px;
    width: calc(100% - 104px)
}

.cart-responsive h6 {
    letter-spacing: -.5px;
    line-height: 1;
    margin-bottom: 0
}

@media (max-width:1279px) {
    .cart-responsive h6 {
        font-size: 10px
    }
}

.cart-responsive h6 a {
    font-size: 10px;
    line-height: 1.4
}

.cart-responsive h6 .money {
    color: #678095;
    font-size: 10px;
    line-height: 1
}

.cart-responsive__item {
    background-color: #f5f7fb;
    display: flex;
    margin-bottom: 10px;
    position: relative
}

.cart-responsive__item:last-child {
    margin-bottom: 0
}

.cart-image {
    line-height: 1;
    width: 14%
}

.cart-image__container {
    height: 135px;
    position: relative;
    width: 150px
}

.cart-name {
    overflow: hidden;
    width: 28%
}

.cart-name a {
    color: #000;
    display: block;
    max-width: 285px
}

.cart-name__tag {
    background-color: #ef5329
}

.cart-name__preorder,
.cart-name__tag {
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-family: Axiforma, sans-serif;
    font-size: 10px;
    padding: 0 6px;
    text-transform: none
}

.cart-name__preorder {
    background-color: #8c29ef;
    font-weight: 600;
    line-height: 1.9
}

.cart-name button {
    margin-top: 5px
}

.cart-quantity {
    line-height: 1;
    width: 24%
}

.cart-quantity .cart-decrease {
    margin-left: -9px
}

.cart-update {
    background: none;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 9px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    padding: 0;
    position: relative;
    vertical-align: middle;
    width: 29px
}

.cart-update.cart-decrease {
    background-image: url(../icons/minus.svg)
}

.cart-update.cart-increase {
    background-image: url(../icons/plus.svg)
}

.cart-update.is-disabled {
    filter: grayscale(100%);
    opacity: .3;
    pointer-events: none
}

.cart-remove {
    background: none;
    color: #f83030;
    cursor: pointer;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 0;
    text-transform: uppercase
}

.cart-subtotal {
    width: 10%
}

.cart-totals {
    background-color: #fff;
    margin-left: auto;
    margin-top: 15px;
    max-width: 580px;
    padding: 20px
}

@media (min-width:1024px) {
    .cart-totals {
        padding: 30px
    }
}

.cart-totals .money,
.cart-totals .saso-cart-total {
    color: #000;
    font-family: Pilat Wide, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: right
}

@media (min-width:1024px) {
    .cart-totals .money,
    .cart-totals .saso-cart-total {
        font-size: 21px
    }
}

.cart-totals .saso-price {
    color: #ef5329
}

.cart-totals .saso-use-discount-code-cart-container {
    display: none !important
}

.cart-totals__row {
    line-height: 0
}

.cart-totals__row:not(:last-of-type) {
    margin-bottom: 10px
}

.cart-totals__row .money,
.cart-totals__row .saso-cart-total,
.cart-totals__row .saso-summary,
.cart-totals__row p {
    display: inline-block;
    line-height: 1.4;
    vertical-align: top;
    width: 50%
}

.cart-totals__row p {
    font-size: 12px;
    margin-bottom: 0;
    transform: translateY(2px)
}

@media (min-width:1024px) {
    .cart-totals__row p {
        font-size: 14px
    }
}

.cart-totals .buttons {
    margin-top: 17px
}

.cart-totals .buttons .btn {
    margin: 5px 0;
    width: 100%
}

@media (min-width:1024px) {
    .cart-totals .buttons .btn {
        width: 48%
    }
    .cart-totals .buttons .btn:first-child {
        margin-right: 4%
    }
}

.cart-message {
    background-color: #f2f5f9;
    border: 2px solid #ef5329;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 17px;
    padding: 20px 30px
}

.cart-note {
    margin-top: 20px
}

.cart-note p {
    font-size: 12px
}

@media (min-width:1024px) {
    .cart-note p {
        font-size: 14px
    }
}

.cart-note img {
    width: 129px
}

@media (min-width:1024px) {
    .cart-note img {
        width: 179px
    }
}

.template-cart .page-container {
    margin-bottom: 60px
}

.template-cart .breadcrumbs a,
.template-cart .breadcrumbs span {
    font-size: 12px
}

.template-cart .reviews {
    position: relative
}

.template-cart .reviews:after {
    background-color: #131415;
    bottom: 0;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    width: 100%
}

.template-cart .reviews.is-overlap {
    margin-top: 60px;
    padding: 0 0 100px
}

.collection__stats {
    margin: 25px 0 40px
}

@media (min-width:1024px) {
    .collection__stats {
        margin: 60px 0 50px
    }
}

.collection__stats p {
    color: #697580;
    font-size: 10px;
    margin-bottom: 0
}

@media (min-width:768px) {
    .collection__stats p {
        font-size: 14px
    }
}

.collection__stats button {
    background-color: transparent;
    color: #ef5329;
    cursor: pointer;
    font-family: Axiforma, sans-serif;
    font-size: 10px;
    margin-left: 10px;
    padding: 0
}

@media (min-width:768px) {
    .collection__stats button {
        font-size: 14px
    }
}

.collection__info {
    margin: 60px 0
}

@media (min-width:1024px) {
    .collection__info {
        margin: 80px 0 100px
    }
}

.collection__info h2 {
    margin-bottom: 15px
}

.collection__info p {
    font-size: 14px;
    margin-bottom: 0
}

.collection__info .columns {
    margin: -10px -60px
}

.collection__info .column {
    padding: 10px 60px
}

.template-collection-xrliving main,
.template-collection main {
    overflow: visible
}

body.template-page-landing .inner-header {
    padding: 80px 0 120px
}

body.template-page-landing .inner-header p {
    color: #fff;
    font-family: Pilat Wide, sans-serif;
    font-weight: 700;
    max-width: none;
    text-transform: uppercase
}

@media (min-width:1024px) {
    body.template-page-landing .brands {
        margin: 40px 0
    }
    body.template-page-landing .alternating-row h2 {
        font-size: 40px
    }
}

body.template-page-landing .alternating-row .buttons.disabled {
    pointer-events: none
}

@media (max-width:1023px) {
    body.template-page-landing .alternating-row .column:last-child {
        order: 2
    }
}

body.template-page-landing .alternating-row__image {
    margin-top: 0;
    max-width: 600px
}

@media (max-width:1023px) {
    body.template-page-landing .alternating-row__image {
        margin-bottom: 20px
    }
}

@media (min-width:1024px) {
    body.template-page-landing .alternating-row__image {
        height: 600px
    }
}

.page-container {
    margin: 40px 0 80px
}

@media (min-width:1024px) {
    .page-container {
        margin: 60px 0 120px
    }
}

.page-container.standard-page {
    margin-top: 65px
}

@media (min-width:1024px) {
    .page-container.standard-page {
        margin-top: 120px
    }
}

.page-container.standard-page .page-content h1,
.page-container.standard-page .page-content h2,
.page-container.standard-page .page-content h3,
.page-container.standard-page .page-content h4,
.page-container.standard-page .page-content h5,
.page-container.standard-page .page-content h6 {
    margin-top: 60px
}

@media (min-width:1024px) {
    .page-container.standard-page .page-content h1,
    .page-container.standard-page .page-content h2,
    .page-container.standard-page .page-content h3,
    .page-container.standard-page .page-content h4,
    .page-container.standard-page .page-content h5,
    .page-container.standard-page .page-content h6 {
        font-size: 16px;
        margin-top: 80px
    }
}

.page-content {
    max-width: 1200px
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #000;
    font-size: 12px
}

@media (min-width:1024px) {
    .page-content h1,
    .page-content h2,
    .page-content h3,
    .page-content h4,
    .page-content h5,
    .page-content h6 {
        font-size: 21px
    }
}

.page-content p {
    color: #678095;
    font-size: 12px
}

@media (min-width:1024px) {
    .page-content p {
        font-size: 14px
    }
}

.page-content p a {
    color: #000;
    font-size: 12px;
    text-decoration: underline
}

@media (min-width:1024px) {
    .page-content p a {
        font-size: 14px
    }
}

.page-content strong {
    color: #000
}

.page-content ol,
.page-content ul {
    margin: 30px 0;
    padding-left: 30px
}

@media (min-width:1024px) {
    .page-content ol,
    .page-content ul {
        margin: 60px 0
    }
}

.page-content ol li,
.page-content ul li {
    color: #678095;
    font-size: 12px;
    margin-bottom: 20px;
    padding-left: 10px
}

@media (min-width:1024px) {
    .page-content ol li,
    .page-content ul li {
        font-size: 14px
    }
}

.page-content table td {
    vertical-align: top
}

.product {
    padding-bottom: 60px
}

@media (min-width:1024px) {
    .product {
        padding: 60px 0 120px
    }
    .product.is-anchors {
        padding-top: 115px
    }
}

.product.is-anchors .product-side.is-sticky {
    top: 154px
}

@media (min-width:1024px) {
    .product.is-anchors .product-side.is-sticky {
        top: 209px
    }
    .product .slick-slide {
        opacity: 1 !important
    }
}

.product .review-widget {
    margin-top: 50px
}

@media (min-width:1024px) {
    .product-columns {
        display: flex;
        margin: 0 -10px
    }
    .product-columns__column {
        padding: 0 10px;
        width: 100%
    }
    .product-columns__column--main {
        width: 57%
    }
}

.product-columns__column--side {
    position: relative
}

@media (min-width:1024px) {
    .product-columns__column--side {
        width: 43%
    }
}

.product-icon-blocks {
    margin-top: 30px
}

.product-icon-blocks__block {
    max-width: 550px
}

.product-icon-blocks__block:not(:last-child) {
    margin-bottom: 20px
}

.product-icon-blocks__block i {
    border: 2px solid #d2d2d2;
    border-radius: 10px;
    display: inline-block;
    font-size: 16px;
    height: 35px;
    line-height: 22px;
    margin-right: 15px;
    padding: 4px;
    text-align: center;
    vertical-align: middle;
    width: 35px
}

@media (min-width:1024px) {
    .product-icon-blocks__block i {
        font-size: 26px;
        height: 52px;
        line-height: 40px;
        margin-right: 20px;
        width: 52px
    }
}

.product-icon-blocks__block i:before {
    vertical-align: middle
}

.product-icon-blocks__block div {
    display: inline-block;
    padding-top: 7px;
    vertical-align: top;
    width: calc(100% - 76px)
}

@media (min-width:1024px) {
    .product-icon-blocks__block div {
        padding-top: 0;
    }
}

.product-icon-blocks__block div h3 {
    margin-bottom: 5px
}

@media (max-width:1023px) {
    .product-icon-blocks__block div h3 {
        font-size: 12px
    }
}

.product-icon-blocks__block div p {
    color: #505d68;
    font-size: 12px
}

.product-section-slider__controls {
    margin-top: 15px
}

@media (min-width:1920px) {
    .product-section-slider__controls {
        left: -53px;
        position: absolute;
        top: 50%;
        transform: translate(-100%, -50%)
    }
}

.product-section-slider__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 40px;
    padding: 0;
    transition: .2s ease;
    width: 52px
}

@media (min-width:1440px) {
    .product-section-slider__control {
        height: 55px;
        width: 72px
    }
}

.product-section-slider__control.slick-disabled {
    filter: grayscale(100%);
    opacity: .2;
    pointer-events: none;
}

.product-section-slider__control--prev {
    background-image: url(../icons/arrow-prev-black.svg);
}

.product-section-slider__control--next {
    background-image: url(../icons/arrow-next-black.svg);
    margin-left: -12px
}

.product-threedy {
    margin: 0;
}

.template-product-xrliving main,
.template-product main {
    overflow: visible;
}

.template-page-quality .page-intro {
    background-color: #000;
    margin: 0;
    padding: 20px 0 0;
    position: relative;
}

.template-page-quality .page-intro:after {
    background-color: #f2f5f9;
    bottom: 0;
    content: "";
    height: 55px;
    left: 0;
    position: absolute;
    width: 100%
}

.template-page-quality .page-intro .wrapper {
    position: relative;
    z-index: 1
}

.support-products {
    margin: 20px 0 60px
}

@media (min-width:1024px) {
    .support-products {
        margin: 25px 0 90px
    }
}

.support-products form {
    text-align: left
}

.support-products fieldset {
    margin-bottom: 10px;
    position: relative
}

@media (min-width:1024px) {
    .support-products fieldset {
        margin-bottom: 20px
    }
}

.support-products input {
    background-color: #fff;
    border: 0;
    font-family: Axiforma, sans-serif;
    font-size: 12px;
    letter-spacing: .38px;
    padding: 18px 20px
}

@media (min-width:1024px) {
    .support-products input {
        font-size: 14px
    }
}

.support-products input::-moz-placeholder {
    color: #678095;
    font-weight: 400;
    opacity: 1
}

.support-products input:-ms-input-placeholder {
    color: #678095;
    font-weight: 400;
    opacity: 1
}

.support-products input::placeholder {
    color: #678095;
    font-weight: 400;
    opacity: 1
}

.support-products button {
    background-color: transparent;
    background-image: url(../icons/search-orange.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 15px;
    cursor: pointer;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px
}

@media (min-width:1024px) {
    .support-products button {
        background-size: 17px
    }
}

.support-products select {
    font-family: Axiforma, sans-serif;
    font-size: 10px
}

@media (min-width:1024px) {
    .support-products select {
        font-size: 14px;
        max-width: 320px
    }
}

@media (max-width:1023px) {
    .support-products .product-grid {
        margin-top: 20px
    }
}

.support-products__search {
    max-width: 1200px;
    text-align: right
}

.support-products__find {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 10px
}

@media (max-width:1023px) {
    .support-products__find {
        display: none
    }
}

.support-products__total {
    color: #697580;
    font-size: 10px
}

@media (min-width:1024px) {
    .support-products__total {
        font-size: 14px;
        padding-top: 42px;
        text-align: right
    }
}

.template-collection-xrliving h1,
.template-collection-xrliving h2,
.template-collection-xrliving h3,
.template-collection-xrliving h4,
.template-collection-xrliving h5,
.template-collection-xrliving h6,
.template-page-xrliving h1,
.template-page-xrliving h2,
.template-page-xrliving h3,
.template-page-xrliving h4,
.template-page-xrliving h5,
.template-page-xrliving h6,
.template-product-xrliving h1,
.template-product-xrliving h2,
.template-product-xrliving h3,
.template-product-xrliving h4,
.template-product-xrliving h5,
.template-product-xrliving h6 {
    font-family: Poppins, sans-serif;
    text-transform: none
}

.template-collection-xrliving h1 em,
.template-collection-xrliving h2 em,
.template-collection-xrliving h3 em,
.template-collection-xrliving h4 em,
.template-collection-xrliving h5 em,
.template-collection-xrliving h6 em,
.template-page-xrliving h1 em,
.template-page-xrliving h2 em,
.template-page-xrliving h3 em,
.template-page-xrliving h4 em,
.template-page-xrliving h5 em,
.template-page-xrliving h6 em,
.template-product-xrliving h1 em,
.template-product-xrliving h2 em,
.template-product-xrliving h3 em,
.template-product-xrliving h4 em,
.template-product-xrliving h5 em,
.template-product-xrliving h6 em {
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: inherit
}

.template-collection-xrliving .text-orange,
.template-page-xrliving .text-orange,
.template-product-xrliving .text-orange {
    color: #374353
}

.template-collection-xrliving .font-heading,
.template-page-xrliving .font-heading,
.template-product-xrliving .font-heading {
    font-family: Poppins, sans-serif
}

.template-collection-xrliving .collection-filters__filter h6 span,
.template-collection-xrliving .collection-filters__mobile-toggle span,
.template-collection-xrliving input[type=checkbox]:checked:before,
.template-collection-xrliving input[type=radio]:checked:before,
.template-page-xrliving .collection-filters__filter h6 span,
.template-page-xrliving .collection-filters__mobile-toggle span,
.template-page-xrliving input[type=checkbox]:checked:before,
.template-page-xrliving input[type=radio]:checked:before,
.template-product-xrliving .collection-filters__filter h6 span,
.template-product-xrliving .collection-filters__mobile-toggle span,
.template-product-xrliving input[type=checkbox]:checked:before,
.template-product-xrliving input[type=radio]:checked:before {
    background-color: #374353
}

.template-collection-xrliving .collection-filters__filter button.is-filtered,
.template-collection-xrliving .collection__stats button,
.template-page-xrliving .collection-filters__filter button.is-filtered,
.template-page-xrliving .collection__stats button,
.template-product-xrliving .collection-filters__filter button.is-filtered,
.template-product-xrliving .collection__stats button {
    color: #374353
}

.template-collection-xrliving .scroll-to-top:after,
.template-page-xrliving .scroll-to-top:after,
.template-product-xrliving .scroll-to-top:after {
    filter: brightness(0) saturate(100%) invert(24%) sepia(18%) saturate(683%) hue-rotate(174deg) brightness(93%) contrast(92%)
}

.template-collection-xrliving .product-card__bottom .add-to-cart i,
.template-page-xrliving .product-card__bottom .add-to-cart i,
.template-product-xrliving .product-card__bottom .add-to-cart i {
    color: #374353
}

.template-collection-xrliving .product-card__bottom .money,
.template-page-xrliving .product-card__bottom .money,
.template-product-xrliving .product-card__bottom .money {
    font-family: Poppins, sans-serif
}

.template-collection-xrliving .simple-btn,
.template-page-xrliving .simple-btn,
.template-product-xrliving .simple-btn {
    border-color: #374353;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    text-transform: none
}

.template-collection-xrliving .simple-play-btn:before,
.template-page-xrliving .simple-play-btn:before,
.template-product-xrliving .simple-play-btn:before {
    background-color: #374353
}

.template-collection-xrliving .simple-btn--icon span,
.template-page-xrliving .simple-btn--icon span,
.template-product-xrliving .simple-btn--icon span {
    border-color: #fff
}

.template-collection-xrliving .featured-collections-large a div h6,
.template-collection-xrliving .featured-sponsor .pre-heading,
.template-page-xrliving .featured-collections-large a div h6,
.template-page-xrliving .featured-sponsor .pre-heading,
.template-product-xrliving .featured-collections-large a div h6,
.template-product-xrliving .featured-sponsor .pre-heading {
    color: #fff
}

.shopify-challenge__container .template-collection-xrliving .btn,
.shopify-challenge__container .template-page-xrliving .btn,
.shopify-challenge__container .template-product-xrliving .btn,
.template-collection-xrliving .btn--primary,
.template-collection-xrliving .shopify-challenge__container .btn,
.template-page-xrliving .btn--primary,
.template-page-xrliving .shopify-challenge__container .btn,
.template-product-xrliving .btn--primary,
.template-product-xrliving .shopify-challenge__container .btn {
    background-color: #374353;
    border-color: #374353
}

.shopify-challenge__container .template-collection-xrliving .btn:hover,
.shopify-challenge__container .template-page-xrliving .btn:hover,
.shopify-challenge__container .template-product-xrliving .btn:hover,
.template-collection-xrliving .btn--primary:hover,
.template-collection-xrliving .shopify-challenge__container .btn:hover,
.template-page-xrliving .btn--primary:hover,
.template-page-xrliving .shopify-challenge__container .btn:hover,
.template-product-xrliving .btn--primary:hover,
.template-product-xrliving .shopify-challenge__container .btn:hover {
    background-color: #232a34;
    border-color: #232a34
}

.template-collection-xrliving .btn--outline,
.template-page-xrliving .btn--outline,
.template-product-xrliving .btn--outline {
    border-color: #374353
}

.template-collection-xrliving .btn--outline:hover,
.template-page-xrliving .btn--outline:hover,
.template-product-xrliving .btn--outline:hover {
    background-color: #374353;
    border-color: #374353
}

.template-collection-xrliving .spinner,
.template-page-xrliving .spinner,
.template-product-xrliving .spinner {
    border-bottom-color: #374353;
    border-left-color: #374353
}

.template-collection-xrliving .product-card__bottom,
.template-page-xrliving .product-card__bottom,
.template-product-xrliving .product-card__bottom {
    align-items: center
}

.template-collection-xrliving .product-card__text small,
.template-page-xrliving .product-card__text small,
.template-product-xrliving .product-card__text small {
    font-family: Axiforma, sans-serif;
    font-weight: 400;
    text-transform: none
}

.template-collection-xrliving .product-info__price span,
.template-page-xrliving .product-info__price span,
.template-product-xrliving .product-info__price span {
    font-weight: 400;
    text-transform: none
}

.template-collection-xrliving .product-slider__control--next,
.template-page-xrliving .product-slider__control--next,
.template-product-xrliving .product-slider__control--next {
    background-image: url(../icons/arrow-next-xrliving-white.svg)
}

.template-collection-xrliving .product-slider__control--prev,
.template-page-xrliving .product-slider__control--prev,
.template-product-xrliving .product-slider__control--prev {
    background-image: url(../icons/arrow-prev-xrliving-white.svg)
}

.template-collection-xrliving .product-section-slider__control--next,
.template-page-xrliving .product-section-slider__control--next,
.template-product-xrliving .product-section-slider__control--next {
    background-image: url(../icons/arrow-next-xrliving.svg)
}

.template-collection-xrliving .product-section-slider__control--prev,
.template-page-xrliving .product-section-slider__control--prev,
.template-product-xrliving .product-section-slider__control--prev {
    background-image: url(../icons/arrow-prev-xrliving.svg)
}

.template-collection-xrliving .product-technical ul strong,
.template-page-xrliving .product-technical ul strong,
.template-product-xrliving .product-technical ul strong {
    text-transform: none
}

.template-collection-xrliving .cart-remove,
.template-collection-xrliving .cart-side__view-all,
.template-page-xrliving .cart-remove,
.template-page-xrliving .cart-side__view-all,
.template-product-xrliving .cart-remove,
.template-product-xrliving .cart-side__view-all {
    color: #374353
}

.template-collection-xrliving .cart-update,
.template-page-xrliving .cart-update,
.template-product-xrliving .cart-update {
    filter: brightness(0) saturate(100%) invert(24%) sepia(18%) saturate(683%) hue-rotate(174deg) brightness(93%) contrast(92%)
}

.affiliates-featured {
    margin: 60px 0
}

@media (min-width:1024px) {
    .affiliates-featured {
        margin: 100px 0
    }
}

.affiliates-featured h2 {
    margin-bottom: 40px
}

@media (min-width:1024px) {
    .affiliates-featured h2 {
        margin-bottom: 50px
    }
}

.affiliates-featured .slick-list {
    overflow: visible
}

.affiliates-featured .slick-track {
    display: flex
}

.affiliates-featured .slick-slide {
    height: inherit
}

.affiliates-featured .slick-slide>div {
    height: 100%
}

.affiliates-featured__container {
    position: relative
}

.affiliates-featured__slider {
    cursor: grab;
    overflow: hidden
}

.affiliates-featured__slide {
    height: 100%
}

.affiliates-featured__controls {
    margin-top: 15px
}

@media (min-width:1920px) {
    .affiliates-featured__controls {
        left: -53px;
        position: absolute;
        top: 46%;
        transform: translate(-100%, -50%)
    }
}

.affiliates-featured__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 40px;
    padding: 0;
    transition: .2s ease;
    width: 52px
}

@media (min-width:1440px) {
    .affiliates-featured__control {
        height: 55px;
        width: 72px
    }
}

.affiliates-featured__control.slick-disabled {
    filter: grayscale(100%);
    opacity: .2;
    pointer-events: none
}

.affiliates-featured__control--prev {
    background-image: url(../icons/arrow-prev-black.svg)
}

.affiliates-featured__control--next {
    background-image: url(../icons/arrow-next-black.svg);
    margin-left: -12px
}

.affiliates-intro {
    background-color: #000;
    position: relative
}

@media (min-width:1280px) {
    .affiliates-intro {
        padding: 100px 0
    }
}

@media (max-width:1023px) {
    .affiliates-intro:after {
        background-color: #f2f5f9;
        bottom: 0;
        content: "";
        height: 80px;
        left: 0;
        position: absolute;
        width: 100%
    }
}

.affiliates-intro .columns {
    margin: 0 -45px
}

.affiliates-intro .column {
    padding: 0 45px
}

@media (min-width:1024px) {
    .affiliates-intro .column:first-child {
        order: 2
    }
}

.affiliates-intro h2 {
    position: relative;
    z-index: 2
}

@media (min-width:1440px) {
    .affiliates-intro h2 {
        margin-bottom: 25px
    }
}

.affiliates-intro .icon-blocks {
    margin-top: 30px
}

@media (min-width:1280px) {
    .affiliates-intro .icon-blocks {
        padding-left: 20px
    }
}

.affiliates-intro .icon-blocks h5,
.affiliates-intro .icon-blocks i {
    color: #fff
}

.affiliates-intro__image {
    height: 220px;
    position: relative;
    z-index: 1
}

@media (min-width:768px) {
    .affiliates-intro__image {
        height: 350px
    }
}

@media (min-width:1280px) {
    .affiliates-intro__image {
        height: 525px
    }
}

.affiliates-intro__text {
    position: relative
}

@media (min-width:1280px) {
    .affiliates-intro__text {
        margin-top: 25px
    }
}

.affiliates-list {
    margin: 60px 0;
    overflow: hidden
}

@media (min-width:1024px) {
    .affiliates-list {
        margin: 150px 0
    }
}

.affiliates-list .wrapper {
    position: relative
}

.affiliates-list .wrapper:after {
    right: -180px;
    top: -60px
}

@media (max-width:1023px) {
    .affiliates-list .wrapper:after {
        display: none
    }
}

.affiliates-list h2 {
    margin-bottom: 40px;
    max-width: 650px;
    position: relative;
    z-index: 1
}

.affiliates-list .columns {
    margin: -10px
}

@media (min-width:1024px) {
    .affiliates-list .columns {
        margin: -15px
    }
}

.affiliates-list .column {
    padding: 10px
}

@media (min-width:1024px) {
    .affiliates-list .column {
        padding: 15px
    }
}

.affiliates-list__grid {
    position: relative;
    z-index: 1
}

.audio {
    background-color: #000;
    padding: 0 0 60px;
    position: relative
}

@media (min-width:1024px) {
    .audio {
        padding: 120px 0
    }
}

.audio h2 {
    margin-bottom: 30px;
    max-width: 700px
}

.audio p {
    max-width: 600px
}

@media (min-width:1024px) {
    .audio .btn {
        margin-top: 70px
    }
}

.audio .wrapper {
    position: relative;
    z-index: 1
}

@media (max-width:1023px) {
    .audio .wrapper {
        margin-top: -100px
    }
}

.audio__image {
    height: 400px;
    position: relative
}

@media (min-width:1024px) {
    .audio__image {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 51%
    }
}

.audio__image:after {
    background: linear-gradient(180deg, transparent, #000);
    bottom: 0;
    content: "";
    height: 50%;
    position: absolute;
    right: 0;
    width: 100%
}

@media (min-width:1024px) {
    .audio__image:after {
        background: linear-gradient(90deg, transparent, #000);
        height: 100%;
        top: 0;
        width: 25%
    }
}

.best-sellers {
    background-color: #000;
    padding: 50px 0;
    position: relative
}

@media (min-width:1024px) {
    .best-sellers {
        padding: 100px 0
    }
}

.best-sellers:after {
    background-color: #000;
    bottom: -10px;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    width: 60%
}

@media (min-width:1024px) {
    .best-sellers:after {
        bottom: -20px;
        height: 20px
    }
}

.best-sellers .slick-list {
    overflow: visible
}

.best-sellers .slick-slide {
    transition: .3s ease-in-out
}

.best-sellers .slick-slide.is-prev {
    opacity: .3
}

.best-sellers .wrapper {
    position: relative
}

.best-sellers .slick-dotted.slick-slider {
    margin-bottom: 0
}

.best-sellers .slick-dots {
    bottom: -35px !important;
    height: 4px;
    padding-left: 6px;
    text-align: left
}

@media (min-width:768px) {
    .best-sellers .slick-dots {
        padding-left: 11px
    }
}

.best-sellers .slick-dots li {
    vertical-align: top
}

.best-sellers .slick-dots .slick-active button:after,
.best-sellers .slick-dots .slick-active button:before {
    background-color: #ef5329 !important
}

.best-sellers .slick-dots button:after,
.best-sellers .slick-dots button:before {
    background-color: #e1e7ee !important;
    opacity: 1 !important
}

.best-sellers__container {
    overflow: hidden
}

@media (max-width:1023px) {
    .best-sellers__container {
        padding-bottom: 35px
    }
}

.best-sellers__controls {
    position: absolute;
    right: 0;
    top: 10px
}

@media (max-width:1023px) {
    .best-sellers__controls {
        display: none
    }
}

.best-sellers__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 55px;
    padding: 0;
    transition: .2s ease;
    width: 72px
}

.best-sellers__control:hover {
    filter: grayscale(0) brightness(1)
}

.best-sellers__control--prev {
    background-image: url(../icons/arrow-prev.svg);
    filter: grayscale(100%) brightness(.4)
}

.best-sellers__control--next {
    background-image: url(../icons/arrow-next.svg);
    margin-left: -12px
}

.best-sellers__slider {
    margin: 20px -10px 0
}

@media (min-width:1024px) {
    .best-sellers__slider {
        margin: 40px -15px 0
    }
}

.best-sellers__slide {
    max-width: 100% !important;
    padding: 0 10px;
    width: 302px !important
}

@media (min-width:768px) {
    .best-sellers__slide {
        width: 375px !important
    }
}

@media (min-width:1024px) {
    .best-sellers__slide {
        padding: 0 15px;
        width: 490px !important
    }
}

.brands-intro {
    background-color: #000;
    margin-bottom: 60px;
    padding-top: 40px;
    position: relative
}

@media (min-width:1280px) {
    .brands-intro {
        margin-bottom: 100px;
        padding-top: 70px
    }
}

.brands-intro:before {
    background-image: url(../icons/x-grid-brands.svg);
    right: 30px;
    top: 30px
}

@media (max-width:1279px) {
    .brands-intro:before {
        display: none
    }
}

.brands-intro:after {
    background-color: #f2f5f9;
    bottom: 0;
    content: "";
    height: 80px;
    left: 0;
    position: absolute;
    width: 100%
}

@media (min-width:1280px) {
    .brands-intro:after {
        height: 160px
    }
}

.brands-intro .breadcrumbs {
    margin-bottom: 60px
}

@media (min-width:1280px) {
    .brands-intro .breadcrumbs {
        margin-bottom: 115px
    }
    .brands-intro__text {
        margin: 0 auto;
        max-width: 1200px;
        text-align: center
    }
}

.brands-intro__text h1 {
    font-size: 20px
}

@media (min-width:1280px) {
    .brands-intro__text h1 {
        font-size: 70px;
        margin-bottom: 30px
    }
    .brands-intro__text p {
        margin: 0 auto;
        max-width: 840px
    }
}

.brands-intro__image {
    height: 178px;
    margin: 40px auto 0;
    max-width: 1200px;
    position: relative;
    z-index: 1
}

@media (min-width:768px) {
    .brands-intro__image {
        height: 300px
    }
}

@media (min-width:1280px) {
    .brands-intro__image {
        height: 525px;
        margin-top: 75px
    }
}

.brands {
    margin: 60px 0
}

@media (min-width:1024px) {
    .brands {
        margin: 100px 0
    }
}

.cart-products {
    margin: 60px 0 90px
}

.cart-products h2 {
    margin-bottom: 20px
}

.cart-products .columns {
    margin: -5px
}

@media (min-width:1024px) {
    .cart-products .columns {
        margin: -15px
    }
}

.cart-products .column {
    padding: 5px
}

@media (min-width:1024px) {
    .cart-products .column {
        padding: 15px
    }
}

@media (max-width:1439px) {
    .cart-products .product-card {
        width: 400px
    }
}

@media (max-width:1023px) {
    .cart-products .product-card {
        width: 300px
    }
}

.cart-products__controls {
    margin-top: 15px
}

@media (min-width:1440px) {
    .cart-products__controls {
        display: none
    }
}

.cart-products__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 40px;
    padding: 0;
    transition: .2s ease;
    width: 52px
}

.cart-products__control.slick-disabled {
    filter: grayscale(100%);
    opacity: .2;
    pointer-events: none
}

.cart-products__control--prev {
    background-image: url(../icons/arrow-prev-black.svg)
}

.cart-products__control--next {
    background-image: url(../icons/arrow-next-black.svg);
    margin-left: -12px
}

.contact-form form {
    max-width: 840px
}

.contact-form form .columns {
    margin: 0 -12px
}

.contact-form form .column {
    padding: 0 12px
}

.contact-form form input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.contact-form__section {
    margin-bottom: 60px
}

.contact-form__section h2 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px
}

@media (min-width:1024px) {
    .contact-form__section h2 {
        font-size: 16px
    }
}

.contact-form__section p {
    color: #678095;
    font-size: 12px
}

.contact-form__errors {
    display: none;
    margin-bottom: 40px
}

.contact-form__errors.is-visible {
    display: block
}

.contact-form__errors h4 {
    color: #df0505
}

.contact-form__errors ul {
    list-style-type: none;
    padding: 0
}

.contact-form__errors ul li {
    color: #df0505;
    font-size: 14px
}

.contact-form__thankyou h2 {
    margin-bottom: 40px
}

.shipping-covid__text {
    background-color: #fff;
    margin: 40px 0;
    max-width: 1080px;
    padding: 30px
}

@media (min-width:1024px) {
    .shipping-covid__text {
        margin: 60px 0
    }
}

.faqs__categories {
    margin-bottom: 25px
}

.faqs__categories button {
    background-color: #e1e7ee;
    border-radius: 18px;
    color: #131415;
    cursor: pointer;
    font-family: Axiforma, sans-serif;
    font-size: 10px;
    line-height: 1;
    margin-bottom: 15px;
    margin-right: 10px;
    padding: 10px 15px 9px
}

@media (min-width:1024px) {
    .faqs__categories button {
        font-size: 12px
    }
}

.faqs__categories button.is-active {
    background-color: #131415;
    color: #fff
}

.faqs__list div {
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 15px;
    padding: 25px 45px 25px 25px;
    position: relative;
    width: 100%
}

.faqs__list div.is-open:after {
    transform: rotate(180deg)
}

.faqs__list div:after {
    color: #ef5329;
    content: "";
    font-family: unicons-line;
    font-size: 26px;
    position: absolute;
    right: 20px;
    top: 18px;
    transition: .2s ease-in-out
}

.faqs__list div h5 {
    margin-bottom: 0
}

.faqs__list div p {
    color: #678095;
    display: none;
    font-size: 12px;
    margin: 20px 0 0;
    width: 95%
}

@media (min-width:1024px) {
    .faqs__list div p {
        font-size: 14px
    }
}

.faqs__list div p a {
    font-size: 12px
}

@media (min-width:1024px) {
    .faqs__list div p a {
        font-size: 14px
    }
}

.featured-collections-large {
    background-color: #131415;
    position: relative
}

.featured-collections-large .columns {
    z-index: 1
}

.featured-collections-large .column {
    border-bottom: 1px solid hsla(0, 0%, 100%, .3)
}

@media (max-width:1023px) {
    .featured-collections-large .column:last-child {
        border-bottom: 0
    }
}

.featured-collections-large .column:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, .3)
}

.featured-collections-large a {
    overflow: hidden;
    position: relative;
    transition: .2s ease-in-out
}

@media (min-width:1024px) {
    .featured-collections-large a {
        height: 400px
    }
}

@media (min-width:1440px) {
    .featured-collections-large a {
        height: 620px
    }
}

@media (min-width:1024px) {
    .featured-collections-large a:hover h3 {
        transform: translateY(-60px)
    }
    .featured-collections-large a:hover h6 {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden
    }
    .featured-collections-large a:hover .btn {
        opacity: 1;
        visibility: visible
    }
}

.featured-collections-large a .btn {
    bottom: 30px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    transition: .2s ease-in-out;
    visibility: hidden;
    width: 55%;
    z-index: 1
}

.featured-collections-large a div {
    padding: 10px 0;
    text-align: center;
    width: 100%;
    z-index: 1
}

@media (min-width:1024px) {
    .featured-collections-large a div {
        bottom: 30px;
        left: 0;
        padding: 0;
        position: absolute
    }
}

.featured-collections-large a div h3 {
    font-size: 16px;
    margin-bottom: 0;
    transition: .2s ease-in-out
}

@media (min-width:1440px) {
    .featured-collections-large a div h3 {
        font-size: 30px
    }
}

.featured-collections-large a div h6 {
    margin-bottom: 0;
    transition: .2s ease-in-out
}

.featured-collections-large__background {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.featured-collections-large__background:first-child {
    display: block
}

.featured-collections-large__background:after {
    background-color: rgba(0, 0, 0, .8);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media (min-width:1024px) {
    .featured-collections-large__background:after {
        background-color: rgba(0, 0, 0, .6)
    }
}

.featured-collections {
    background-color: #f1f5f8;
    padding: 60px 0;
    position: relative
}

@media (min-width:1440px) {
    .featured-collections {
        padding: 120px 0 175px
    }
}

.featured-collections.is-large {
    padding: 0
}

.featured-collections.is-large:before {
    display: none
}

.featured-collections.is-large .featured-collections__grid {
    margin-top: 0
}

.featured-collections.is-large .featured-collections__grid:after {
    display: none
}

.featured-collections:before {
    left: -115px;
    top: 40px
}

@media (max-width:1439px) {
    .featured-collections:before {
        display: none
    }
}

@media (min-width:1440px) {
    .featured-collections h2 {
        width: 80%
    }
}

.featured-collections .wrapper {
    position: relative
}

.featured-collections figure {
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    transition: .2s ease-in-out
}

.featured-collections figure:hover {
    transform: scale(1.06)
}

.featured-collections figure:hover:after {
    bottom: 0
}

.featured-collections figure:hover figcaption {
    opacity: 0;
    transform: translateY(-10px) scale(.8);
    transition-delay: 0s;
    visibility: hidden
}

.featured-collections figure:hover .btn {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    transition-delay: .2s;
    visibility: visible
}

.featured-collections figure:after {
    background: linear-gradient(180deg, transparent, #000);
    bottom: -70px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: .2s ease-in-out;
    width: 100%
}

.featured-collections figure .btn {
    bottom: 30px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%) scale(.8);
    transition: .2s ease-in-out;
    visibility: hidden;
    width: 80%;
    z-index: 1
}

.featured-collections figcaption {
    bottom: 30px;
    left: 0;
    position: absolute;
    text-align: center;
    transition: .2s ease-in-out;
    transition-delay: .2s;
    width: 100%;
    z-index: 1
}

.featured-collections figcaption h3 {
    font-size: 30px;
    margin-bottom: 0
}

@media (max-width:1439px) {
    .featured-collections figcaption h3 {
        font-size: 20px
    }
}

.featured-collections figcaption h6 {
    margin-bottom: 0
}

@media (min-width:1440px) {
    .featured-collections__all {
        position: absolute;
        right: 0;
        top: 35px
    }
}

.featured-collections__grid {
    margin-top: 20px;
    position: relative
}

.featured-collections__grid:after {
    bottom: -110px;
    right: -110px
}

@media (max-width:1439px) {
    .featured-collections__grid:after {
        display: none
    }
}

.featured-sponsor {
    background-color: #131415;
    padding: 40px 0 0;
    position: relative
}

@media (min-width:1024px) {
    .featured-sponsor {
        padding: 115px 0
    }
}

.featured-sponsor p {
    margin-top: 20px
}

.featured-sponsor__logo {
    margin-bottom: 30px
}

@media (max-width:1023px) {
    .featured-sponsor__logo {
        max-height: 50px
    }
}

.featured-sponsor__image {
    height: 300px;
    position: relative
}

@media (min-width:768px) {
    .featured-sponsor__image {
        height: 500px
    }
}

@media (min-width:1024px) {
    .featured-sponsor__image {
        height: 100%;
        left: 0;
        margin-right: auto;
        position: absolute;
        top: 0;
        width: 44%
    }
}

.featured-sponsor__image:after {
    background: linear-gradient(0, rgba(19, 20, 21, 0), #131415);
    content: "";
    height: 60%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

@media (min-width:1024px) {
    .featured-sponsor__image:after {
        background: linear-gradient(90deg, rgba(19, 20, 21, 0), #131415);
        height: 100%;
        width: 32%
    }
}

.finance-klarna__logos {
    margin-bottom: 10px
}

@media (min-width:1024px) {
    .finance-klarna__logos {
        margin-bottom: 20px
    }
}

.finance-klarna__logos img {
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle
}

@media (min-width:1024px) {
    .finance-klarna__logos img {
        margin-bottom: 20px;
        margin-right: 20px
    }
}

.finance-klarna__intro h2,
.finance-klarna__intro p {
    font-family: Axiforma, sans-serif
}

.finance-klarna__intro h2 {
    letter-spacing: normal;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 960px;
    text-transform: none
}

.finance-klarna__intro p {
    color: #505d68;
    max-width: 1140px
}

.finance-klarna__steps {
    margin: 40px 0
}

@media (min-width:1024px) {
    .finance-klarna__steps {
        margin: 60px 0
    }
}

.finance-klarna__steps h2 {
    margin-bottom: 30px
}

.finance-klarna__step {
    background-color: #fff;
    height: 100%;
    padding: 20px
}

@media (min-width:1024px) {
    .finance-klarna__step {
        padding: 26px 60px 30px 30px
    }
}

.finance-klarna__step span {
    background-color: #e1e7ee;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 27px;
    line-height: 24px;
    margin-bottom: 10px;
    text-align: center;
    width: 27px
}

.finance-klarna__step h5 {
    font-size: 12px
}

@media (min-width:1024px) {
    .finance-klarna__step h5 {
        font-size: 16px
    }
}

.finance-klarna__step p {
    color: #505d68;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0
}

.finance-klarna__additional {
    margin: 40px 0;
    max-width: 1020px
}

@media (min-width:1024px) {
    .finance-klarna__additional {
        margin: 60px 0
    }
}

.global {
    background-color: #000;
    padding: 150px 0;
    position: relative;
    text-align: center
}

@media (min-width:1024px) {
    .global {
        padding: 300px 0
    }
}

.global .wrapper {
    position: relative;
    z-index: 1
}

@media (min-width:1024px) {
    .global .wrapper {
        pointer-events: none
    }
    .global h2 {
        font-size: 70px
    }
}

.global p {
    margin: 20px auto 0;
    max-width: 850px
}

.global .btn {
    margin-top: 20px;
    pointer-events: auto
}

@media (min-width:1024px) {
    .global .btn {
        margin-top: 40px
    }
}

.global #global-map {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.global .map-location {
    cursor: pointer;
    height: 13px;
    pointer-events: none;
    position: absolute;
    transform: translate(-6px, -6px);
    transition: none;
    width: 13px;
    z-index: 9999
}

@media (min-width:1024px) {
    .global .map-location {
        height: 30px;
        pointer-events: auto;
        transform: translate(-15px, -15px);
        width: 30px
    }
}

.global .map-location:before {
    background-color: #ef5329;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px
}

@media (min-width:1024px) {
    .global .map-location:before {
        height: 8px;
        width: 8px
    }
}

.global .map-location:after {
    -webkit-animation: locationPulse 1.5s ease-in-out infinite;
    animation: locationPulse 1.5s ease-in-out infinite;
    background-color: rgba(239, 83, 41, .2);
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px
}

@media (min-width:1024px) {
    .global .map-location:after {
        height: 8px;
        width: 8px
    }
}

.global .map-location:hover .map-location__label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible
}

.global .map-location__label {
    background-color: #fff;
    border-radius: 3px;
    bottom: -40px;
    color: #131415;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 700;
    left: 50%;
    opacity: 0;
    padding: 8px 12px;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%) translateY(20px);
    transition: .2s ease-in-out;
    visibility: hidden;
    white-space: nowrap
}

.global .map-location__label:after {
    background-color: #fff;
    content: "";
    height: 10px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 10px
}

.global a[href^="http://maps.google.com/maps"],
.global a[href^="https://maps.google.com/maps"] {
    display: none !important
}

.global .gm-style-cc,
.global .gmnoprint a,
.global .gmnoprint span {
    display: none
}

.global .gmnoprint div {
    background: none !important
}

.global .gm-style-pbc {
    opacity: 0 !important
}

.guarantee {
    margin: 60px 0
}

@media (min-width:1024px) {
    .guarantee {
        margin: 120px 0
    }
}

.guarantee .columns {
    margin: 0 -45px
}

.guarantee .column {
    padding: 0 45px
}

@media (min-width:1024px) {
    .guarantee h2 {
        margin-bottom: 25px
    }
}

.guarantee .icon-blocks {
    margin-top: 40px
}

.guarantee__image {
    height: 220px;
    position: relative
}

@media (min-width:768px) {
    .guarantee__image {
        height: 350px
    }
}

@media (min-width:1024px) {
    .guarantee__image {
        height: 525px
    }
    .guarantee__text {
        margin-top: 25px
    }
}

.handmade {
    margin: 60px 0
}

@media (min-width:1024px) {
    .handmade {
        margin: 120px 0
    }
}

.handmade .columns {
    margin: 0 -45px
}

.handmade .column {
    padding: 0 45px
}

@media (min-width:1024px) {
    .handmade h2 {
        margin-bottom: 30px
    }
    .handmade__text {
        margin-top: 60px
    }
}

.handmade__image {
    height: 220px;
    margin-top: 40px;
    position: relative
}

@media (min-width:768px) {
    .handmade__image {
        height: 350px
    }
}

@media (min-width:1024px) {
    .handmade__image {
        height: 525px;
        margin-top: 0
    }
}

.hero {
    background-color: #000;
    position: relative
}

.hero .wrapper {
    position: relative;
    z-index: 1
}

.hero .pre-heading {
    color: #ef5329
}

.hero h1 {
    margin-bottom: 10px
}

.hero .slick-list,
.hero .slick-track {
    height: 100%
}

.hero .slick-dots {
    bottom: 20px;
    z-index: 2
}

.hero .slick-dots .slick-active {
    width: 65px !important
}

.hero .slick-dots .slick-active button:after {
    -webkit-animation: widthSlide 4.2s linear forwards;
    animation: widthSlide 4.2s linear forwards
}

.hero__slider {
    width: 100%
}

.hero__slider,
.hero__slider:before {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0
}

.hero__slider:before {
    background: linear-gradient(270deg, transparent, rgba(0, 0, 0, .4));
    content: "";
    width: 20%;
    z-index: 1
}

@media (min-width:1024px) {
    .hero__slider:before {
        background: linear-gradient(270deg, transparent, #000 27%);
        width: 62%
    }
}

.hero__slider:after {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .4));
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 20%
}

@media (min-width:1024px) {
    .hero__slider:after {
        background: linear-gradient(90deg, transparent, #000);
        right: -20px;
        width: 8%
    }
}

.hero__slide {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100% !important
}

@media (min-width:1024px) {
    .hero__slide {
        width: 55% !important
    }
}

.hero__slide:before {
    background: linear-gradient(0deg, transparent 0, #000);
    content: "";
    height: 179px;
    left: 0;
    position: absolute;
    top: -60px;
    width: 100%;
    z-index: 1
}

.hero__inner {
    max-width: 820px;
    padding: 200px 0 80px;
    position: relative;
    width: 100%;
    z-index: 1
}

@media (min-width:768px) {
    .hero__inner {
        width: 65%
    }
}

@media (min-width:1024px) {
    .hero__inner {
        padding: 228px 0 120px
    }
}

.hero__inner .buttons {
    margin-top: 15px
}

@media (min-width:1024px) {
    .hero__inner .buttons {
        margin-top: 30px
    }
}

.hero__inner .btn {
    margin: 0
}

.hero__notice {
    background-color: rgba(0, 0, 0, .7);
    border: 1px solid #ef5329;
    border-radius: 5px;
    bottom: 40px;
    display: none;
    overflow: hidden;
    padding: 15px;
    position: absolute;
    right: 40px;
    z-index: 1
}

@media (min-width:1440px) {
    .hero__notice {
        display: block
    }
}

.hero__notice .columns {
    position: relative;
    z-index: 1
}

.hero__notice figure {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-width: 112px;
    position: relative;
    width: 100%
}

.hero__notice h6 {
    font-weight: 600
}

.hero__notice p {
    color: #9299a0;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0
}

.hero__notice .buttons {
    margin: 0
}

.info-panels {
    background-color: #000;
    padding: 50px 0
}

@media (min-width:1024px) {
    .info-panels {
        padding: 100px 0
    }
}

.info-panels .columns {
    margin: -7px
}

.info-panels .column {
    padding: 7px
}

.info-panels__intro {
    margin: 0 auto;
    max-width: 1080px
}

@media (min-width:1024px) {
    .info-panels__intro {
        text-align: center
    }
}

.info-panels__intro p {
    margin: 0 auto;
    max-width: 720px
}

.info-panels__grid {
    margin-top: 40px
}

.info-panel i {
    font-size: 22px
}

.info-panel h3 {
    margin-bottom: 5px
}

@media (max-width:1023px) {
    .info-panel h3 {
        font-size: 16px
    }
}

.info-panel p {
    font-size: 12px;
    margin-bottom: 0
}

.info-panel .simple-btn {
    margin-top: 30px
}

.info-panel__image {
    height: 168px;
    position: relative
}

.info-panel__text {
    background-color: #131415;
    padding: 30px 20px;
    text-align: center
}

.innovation {
    margin: 70px 0
}

@media (min-width:1024px) {
    .innovation {
        margin: 140px 0
    }
}

.innovation h2 {
    margin-bottom: 25px
}

.innovation .icon-blocks {
    margin-top: 40px
}

@media (min-width:1024px) {
    .innovation .icon-blocks {
        margin-top: 60px
    }
}

.innovation__image {
    height: 220px;
    position: relative
}

@media (min-width:768px) {
    .innovation__image {
        height: 400px
    }
}

@media (min-width:1024px) {
    .innovation__image {
        height: 900px
    }
}

.innovation__image .play-btn {
    left: 85%;
    top: 0;
    z-index: 1
}

@media (min-width:1024px) {
    .innovation__image .play-btn {
        left: 80%
    }
}

.innovation__text {
    margin-top: 25px
}

@media (min-width:1024px) {
    .innovation__text {
        padding-left: 50px
    }
}

@media (min-width:1440px) {
    .innovation__text {
        padding-left: 150px
    }
}

.join-us {
    background-color: #000;
    position: relative
}

@media (max-width:1279px) {
    .join-us {
        padding-top: 40px
    }
}

.join-us .wrapper {
    position: relative
}

.join-us .wrapper:after {
    right: -200px;
    top: 50px
}

@media (max-width:1279px) {
    .join-us .wrapper:after {
        bottom: -430px;
        height: 800px;
        right: 0;
        top: inherit;
        width: 800px
    }
}

@media (min-width:1280px) {
    .join-us h2 {
        margin-bottom: 40px
    }
}

.join-us p {
    color: #888c90;
    max-width: 650px
}

@media (min-width:1280px) {
    .join-us__text {
        max-width: 800px;
        padding: 140px 0;
        width: 60%
    }
}

.join-us__logos {
    margin: 70px -30px -10px
}

.join-us__logos img {
    margin: 10px 30px;
    vertical-align: middle
}

.join-us__image {
    margin: 30px auto 0;
    position: relative;
    width: 500px;
    z-index: 1
}

@media (min-width:1280px) {
    .join-us__image {
        height: calc(100% + 60px);
        position: absolute;
        right: -200px;
        top: -60px;
        z-index: 1
    }
    .join-us__image img {
        height: 100%;
        left: 50%;
        max-width: none;
        position: absolute;
        top: 0;
        transform: translateX(-50%)
    }
}

.landing-product {
    margin: 40px 0
}

@media (min-width:1024px) {
    .landing-product .alternating-row:not(.is-flipped) h2,
    .landing-product .alternating-row:not(.is-flipped) h3,
    .landing-product .alternating-row:not(.is-flipped) p,
    .landing-product .alternating-row:not(.is-flipped) span {
        margin-left: auto;
        text-align: right
    }
    .landing-product .alternating-row:not(.is-flipped) .product-icon-blocks__block {
        margin-left: auto
    }
    .landing-product .alternating-row:not(.is-flipped) .product-icon-blocks__block i {
        margin-left: 20px;
        margin-right: 0
    }
}

.landing-product .product-icon-blocks__block div {
    vertical-align: middle
}

.landing-product .product-icon-blocks__block p {
    margin-top: 0
}

#shopify-section-landing-product-one {
    margin-top: -60px
}

.logos {
    background-color: #e1e7ee;
    padding: 25px 0
}

@media (min-width:768px) {
    .logos {
        padding: 50px 0
    }
}

.logos h2 {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center
}

@media (min-width:768px) {
    .logos h2 {
        margin-bottom: 35px
    }
}

.logos img {
    display: block;
    margin: 0 auto
}

@media (max-width:767px) {
    .logos img {
        max-width: 110px
    }
}

.logos .slick-list {
    width: 100%
}

@media (max-width:767px) {
    .logos .slick-list {
        overflow: visible
    }
}

.logos .slick-track {
    align-items: center;
    display: flex
}

@media (max-width:767px) {
    .logos__grid {
        margin: 0 auto;
        width: 50%
    }
}

.materials {
    margin: 60px 0
}

@media (min-width:1024px) {
    .materials {
        margin: 120px 0
    }
}

.materials .columns {
    margin: 0 -45px
}

.materials .column {
    padding: 0 45px
}

@media (min-width:1024px) {
    .materials h2 {
        margin-bottom: 25px
    }
    .materials .icon-blocks {
        margin-top: 60px
    }
}

.materials__image {
    height: 220px;
    position: relative
}

@media (min-width:768px) {
    .materials__image {
        height: 350px
    }
}

@media (min-width:1024px) {
    .materials__image {
        height: 525px
    }
    .materials__text {
        margin-top: 25px
    }
}

.partners {
    background-color: #e1e7ee;
    padding: 40px 0
}

@media (min-width:1024px) {
    .partners {
        padding: 100px 0
    }
    .partners h2 {
        margin-bottom: 30px;
        margin-top: 10px
    }
}

.partners p {
    color: #888c90;
    margin-bottom: 0
}

.partners .btn {
    margin-top: 40px
}

@media (max-width:1023px) {
    .partners .btn {
        margin-top: 20px;
        min-width: 191px
    }
}

.partners .slick-dots {
    bottom: 40px;
    z-index: 2
}

.partners .slick-dots .slick-active {
    width: 65px !important
}

.partners .slick-dots .slick-active button:after {
    -webkit-animation: widthSlide 4.2s linear forwards;
    animation: widthSlide 4.2s linear forwards
}

.partners__logos {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: 30px -25px 0
}

@media (max-width:1023px) {
    .partners__logos {
        margin: 30px -15px 0
    }
}

.partners__logos div {
    padding: 10px 25px
}

@media (max-width:1023px) {
    .partners__logos div {
        padding: 10px 15px;
        width: 33.3333%
    }
}

.partners__slider {
    margin-bottom: 0 !important;
    position: relative;
    width: 100%
}

@media (max-width:1023px) {
    .partners__slider {
        margin-top: 45px
    }
}

@media (min-width:1024px) {
    .partners__slider {
        margin-left: auto;
        width: 92%
    }
}

.partners__slider:after {
    background-color: rgba(0, 0, 0, .75);
    bottom: 9px;
    content: "";
    height: 80px;
    left: 0;
    position: absolute;
    width: 100%
}

.partners__slide {
    height: 220px;
    position: relative
}

@media (min-width:768px) {
    .partners__slide {
        height: 400px
    }
}

@media (min-width:1024px) {
    .partners__slide {
        height: 525px
    }
}

.register-product form {
    max-width: 840px
}

.register-product form .columns {
    margin: 0 -5px
}

@media (min-width:1024px) {
    .register-product form .columns {
        margin: 0 -12px
    }
}

.register-product form .column {
    padding: 0 5px
}

@media (min-width:1024px) {
    .register-product form .column {
        padding: 0 12px
    }
}

.register-product form input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

.register-product__intro {
    color: #505d68;
    margin-bottom: 60px;
    max-width: 840px
}

.register-product__section {
    margin-bottom: 60px
}

.register-product__section h2 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px
}

@media (min-width:1024px) {
    .register-product__section h2 {
        font-size: 16px
    }
}

.register-product__section p {
    color: #678095;
    font-size: 12px
}

.register-product__thankyou h2 {
    margin-bottom: 40px
}

.retail-gallery {
    margin: 80px 0;
    position: relative
}

@media (min-width:1024px) {
    .retail-gallery {
        margin: 120px 0
    }
}

.retail-gallery h2 {
    margin-bottom: 20px
}

.retail-gallery .slick-list {
    overflow: visible
}

.retail-gallery__container {
    position: relative
}

.retail-gallery__slider {
    cursor: grab;
    overflow: hidden
}

.retail-gallery__slider div {
    height: 300px;
    margin-right: 10px;
    position: relative;
    width: 300px
}

@media (min-width:1024px) {
    .retail-gallery__slider div {
        height: 450px;
        margin-right: 20px;
        width: 450px
    }
}

.retail-gallery__controls {
    margin-top: 15px
}

@media (min-width:1920px) {
    .retail-gallery__controls {
        left: -53px;
        margin-top: 0;
        position: absolute;
        top: 50%;
        transform: translate(-100%, -50%)
    }
}

.retail-gallery__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 40px;
    padding: 0;
    transition: .2s ease;
    width: 52px
}

@media (min-width:1024px) {
    .retail-gallery__control {
        height: 55px;
        width: 72px
    }
}

.retail-gallery__control.slick-disabled {
    filter: grayscale(100%);
    opacity: .2;
    pointer-events: none
}

.retail-gallery__control--prev {
    background-image: url(../icons/arrow-prev-black.svg)
}

.retail-gallery__control--next {
    background-image: url(../icons/arrow-next-black.svg);
    margin-left: -12px
}

.shipping-international {
    max-width: 960px
}

.shipping-international .columns {
    margin: -15px
}

.shipping-international .column {
    padding: 15px
}

.shipping-international__intro {
    margin-bottom: 20px
}

.shipping-international__link {
    background-color: #000;
    padding: 30px;
    width: 100%
}

.shipping-international__link h5 {
    color: #fff;
    font-size: 12px
}

@media (min-width:1024px) {
    .shipping-international__link h5 {
        font-size: 16px;
        margin-bottom: 20px
    }
}

.shipping-international__additional:first-of-type {
    margin-top: 40px
}

.signup {
    background-color: #131415;
    padding: 50px 0;
    text-align: center
}

@media (min-width:1024px) {
    .signup {
        padding: 100px 0
    }
}

.signup h2,
.signup p {
    margin: 0 auto;
    max-width: 930px
}

.signup h2 {
    margin-bottom: 20px
}

.signup h2 em {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px
}

@media (max-width:768px) {
    .signup h2 em {
        font-size: 27px
    }
}

.signup .btn {
    margin-top: 20px;
    min-width: 284px
}

.signup #mc_embed_signup {
    display: none;
    margin: 20px auto 0;
    max-width: 940px
}

.signup #mc_embed_signup .btn--dropdown:after {
    transform: translate(-8px, -2px) rotate(-90deg)
}

.signup .mc-field-group {
    margin-bottom: 10px
}

@media (min-width:1024px) {
    .signup .mc-field-group {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 1%;
        vertical-align: top;
        width: 49%
    }
}

.signup .mc-field-group.is-last {
    margin-right: 0
}

@media (max-width:1023px) {
    .signup #mce-error-response,
    .signup #mce-success-response,
    .signup .mce_inline_error {
        font-size: 12px
    }
}

.signup input {
    background-color: #1f1f1f;
    border: 0;
    color: #fff
}

@media (min-width:1024px) {
    .signup input {
        font-size: 16px
    }
}

.signup input::-moz-placeholder {
    color: #99a0a7;
    opacity: 1
}

.signup input:-ms-input-placeholder {
    color: #99a0a7;
    opacity: 1
}

.signup input::placeholder {
    color: #99a0a7;
    opacity: 1
}

.sponsor {
    background-color: #131415;
    overflow: hidden;
    position: relative
}

.sponsor.is-overlap {
    margin-top: -130px
}

@media (min-width:1280px) {
    .sponsor.is-overlap {
        margin-top: -160px
    }
}

.sponsor.is-overlap:before {
    background-color: #f2f5f9;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;
    width: 90%
}

@media (max-width:1279px) {
    .sponsor.is-overlap:before {
        display: none
    }
}

.sponsor .wrapper {
    padding-top: 150px;
    position: relative
}

.sponsor .wrapper.is-sponsor {
    padding-top: 60px
}

.sponsor .wrapper:after {
    right: -200px;
    top: 50px
}

@media (max-width:1279px) {
    .sponsor .wrapper:after {
        bottom: -430px;
        height: 800px;
        right: 0;
        top: inherit;
        width: 800px
    }
}

.sponsor .breadcrumbs {
    margin-bottom: 60px
}

@media (min-width:1280px) {
    .sponsor .breadcrumbs {
        margin-bottom: 115px
    }
    .sponsor h2 {
        margin-bottom: 40px
    }
}

.sponsor p {
    color: #888c90;
    max-width: 650px
}

@media (min-width:1280px) {
    .sponsor__text {
        max-width: 800px;
        padding: 150px 0 85px;
        width: 60%
    }
}

.sponsor__text.is-sponsor {
    max-width: 1075px;
    padding: 0 0 20px
}

@media (min-width:1280px) {
    .sponsor__text.is-sponsor {
        padding-bottom: 200px;
        width: 77%
    }
}

.sponsor__logos {
    margin: 70px -30px -10px
}

@media (max-width:1279px) {
    .sponsor__logos {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin: 40px 0 0;
        max-width: 500px
    }
}

.sponsor__logos img {
    margin: 10px 30px;
    vertical-align: middle
}

@media (max-width:1279px) {
    .sponsor__logos img {
        margin: 0;
        max-height: 24px
    }
}

.sponsor__image {
    margin: 30px auto 0;
    max-width: 500px;
    position: relative;
    z-index: 1
}

@media (min-width:1280px) {
    .sponsor__image {
        height: calc(100% - 110px);
        margin: 0;
        max-width: none;
        position: absolute;
        right: -200px;
        top: 110px
    }
    .sponsor__image img {
        display: block;
        height: 100%;
        margin-left: auto;
        max-width: none
    }
}

.sponsorship-teams {
    margin: 40px 0
}

@media (min-width:1024px) {
    .sponsorship-teams {
        margin: 70px 0
    }
}

.stockists {
    margin: 40px 0
}

@media (min-width:1024px) {
    .stockists {
        margin: 60px 0
    }
}

.stockists__intro {
    max-width: 840px
}

.stockists__intro p {
    color: #505d68;
    margin-bottom: 0
}

.stockists__locations {
    margin: 40px 0 25px
}

.stockists__locations button {
    background-color: #e1e7ee;
    border-radius: 18px;
    color: #131415;
    cursor: pointer;
    font-family: Axiforma, sans-serif;
    font-size: 10px;
    line-height: 1;
    margin-bottom: 15px;
    margin-right: 10px;
    padding: 10px 15px 9px
}

@media (min-width:1024px) {
    .stockists__locations button {
        font-size: 12px
    }
}

.stockists__locations button.is-active {
    background-color: #131415;
    color: #fff
}

.stockists__grid {
    margin-top: 25px
}

.stockists__grid .columns {
    margin: -10px
}

.stockists__grid .column {
    padding: 10px
}

.stockists__stockist {
    align-items: center;
    background-color: #fff;
    display: flex;
    padding: 20px 10px
}

@media (min-width:768px) {
    .stockists__stockist {
        height: 110px
    }
}

@media (min-width:1024px) {
    .stockists__stockist {
        padding: 20px 30px
    }
}

.stockists__stockist h3 {
    font-size: 16px;
    font-weight: 900;
    line-height: 1
}

@media (min-width:1024px) {
    .stockists__stockist h3 {
        font-size: 21px
    }
}

.stockists__stockist a {
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
    margin-right: 5px;
    text-transform: uppercase
}

@media (min-width:1024px) {
    .stockists__stockist a {
        font-size: 12px
    }
}

.stockists__stockist figure {
    margin-right: 30px;
    text-align: center;
    width: 40%
}

.stockists__stockist figure img {
    vertical-align: middle
}

@media (max-width:768px) {
    .stockists__stockist figure img {
        max-width: 70px
    }
}

.stockists__stockist div {
    line-height: 1;
    width: 60%
}

.story {
    background-color: #131415;
    overflow: hidden;
    padding: 40px 0 70px
}

@media (min-width:1024px) {
    .story {
        padding: 60px 0 30px
    }
}

.story .slick-slide {
    opacity: .2;
    transition: all .3s ease
}

.story .slick-active {
    opacity: 1
}

.story .slick-active figcaption {
    transition-delay: .3s
}

@media (min-width:1440px) {
    .story .slick-active figcaption {
        transform: translateY(-50%)
    }
}

.story .slick-active h4,
.story .slick-active p {
    opacity: 1;
    transition-delay: .6s
}

.story .slick-dots {
    bottom: 0;
    margin-top: 20px;
    position: relative
}

@media (max-width:1439px) {
    .story .slick-dots {
        margin-bottom: 15px
    }
}

.story .slick-dots li {
    height: auto !important;
    margin: 0 20px 0 0 !important;
    width: auto !important
}

@media (max-width:1439px) {
    .story .slick-dots li {
        display: none;
        margin: 0 !important
    }
    .story .slick-dots li.slick-active {
        display: block
    }
}

.story .slick-dots li.slick-active button {
    opacity: 1;
    transform: scale(1.2) translateY(-1px)
}

.story .slick-dots button {
    color: #fff;
    font-family: Pilat Wide, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: .3;
    text-align: center;
    transition: .2s ease-in-out;
    will-change: transform
}

.story .slick-dots button:after,
.story .slick-dots button:before {
    display: none
}

.story__intro {
    margin: 0 auto;
    max-width: 720px;
    text-align: center
}

.story__slider {
    cursor: grab;
    margin: 30px -5px 0;
    margin-bottom: 0 !important;
}

@media (min-width:1440px) {
    .story__slider {
        margin: 60px -10px 0
    }
}

.story__slider figure {
    height: 360px;
    position: relative;
    width: 250px
}

@media (min-width:1440px) {
    .story__slider figure {
        height: 640px;
        width: 430px
    }
}

.story__slider figcaption {
    overflow: auto;
    transition: .2s ease-in-out;
    z-index: 1
}

@media (max-width:1439px) {
    .story__slider figcaption {
        margin-top: 20px;
        text-align: center;
        transform: translateX(-12%);
        width: 130%
    }
}

@media (min-width:768px) {
    .story__slider figcaption {
        transform: translateX(-29%);
        width: 600px
    }
}

@media (min-width:1440px) {
    .story__slider figcaption {
        background-color: #131415;
        left: 100%;
        max-height: 640px;
        padding: 50px 40px;
        position: absolute;
        top: 50%;
        transform: translate(-100%, -50%);
        width: 425px
    }
}

.story__slider figcaption h4 {
    margin-bottom: 20px
}

@media (max-width:1439px) {
    .story__slider figcaption h4 {
        display: none
    }
}

.story__slider figcaption h4,
.story__slider figcaption p {
    opacity: 0;
    transition: .2s ease-in-out
}

.story__slider figcaption p {
    font-size: 12px;
    line-height: 2.1;
    margin-bottom: 0
}

@media (min-width:1440px) {
    .story__slider figcaption p {
        font-size: 14px
    }
}

.story__slider img {
    position: relative;
    z-index: 2
}

.story__slide {
    padding: 0 5px
}

@media (min-width:1440px) {
    .story__slide {
        padding: 0 10px
    }
}

.support-links {
    margin: 60px 0;
    text-align: center
}

@media (min-width:1024px) {
    .support-links {
        margin: 120px 0
    }
}

.support-links h2 {
    margin-bottom: 15px
}

.support-links p {
    margin: 0 auto;
    max-width: 950px
}

.support-links__links {
    margin-top: 50px
}

.support-links__links a {
    background-color: #fff;
    background-image: url(../icons/chevron-right.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 5px;
    box-shadow: 7px 7px 30px 0 rgba(0, 0, 0, .09);
    display: block;
    font-family: Pilat Wide, sans-serif;
    padding: 25px 20px;
    text-align: left;
}

.taglines {
    background-color: #fff;
    padding: 5px 0;
}

@media (min-width:1440px) {
    .taglines {
        padding: 30px 0;
    }
}

.taglines .wrapper {
    position: relative;
}

.taglines .columns {
    margin: 0 -85px
}

.taglines .column {
    padding: 0 85px
}

.taglines i {
    display: inline-block;
    font-size: 23px;
    margin-right: 10px;
    vertical-align: middle;
    width: 23px
}

@media (min-width:1440px) {
    .taglines i {
        transform: translateY(-4px);
        vertical-align: top
    }
}

.taglines a,
.taglines h3 {
    font-size: 14px
}

@media (max-width:1439px) {
    .taglines a,
    .taglines h3 {
        font-size: 10px;
        margin-bottom: 0
    }
}

.taglines a:hover {
    color: #ef5329
}

.taglines p {
    color: #697580;
    display: none;
    font-size: 14px;
    margin-bottom: 0
}

@media (min-width:1440px) {
    .taglines p {
        display: block
    }
}

.taglines__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 9px;
    height: 30px;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

@media (min-width:1440px) {
    .taglines__control {
        display: none;
    }
}

.taglines__control--prev {
    background-image: url(../icons/chevron-thin-left.svg);
    left: 0;
}

.taglines__control--next {
    background-image: url(../icons/chevron-thin-right.svg);
    right: 0;
}

.taglines__tagline {
    position: relative;
}

@media (max-width:1439px) {
    .taglines__tagline {
        display: block;
        margin: 0 auto;
        padding: 0 47px;
        text-align: center;
    }
}

.taglines__tagline.is-last:after {
    display: none;
}

.taglines__tagline:after {
    background-color: #d9d9d9;
    content: "";
    height: 24px;
    position: absolute;
    right: -85px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px
}

@media (max-width:1439px) {
    .taglines__tagline:after {
        display: none
    }
}

.taglines__tagline div {
    display: inline-block;
    vertical-align: middle
}

@media (min-width:1440px) {
    .taglines__tagline div {
        vertical-align: top;
        width: calc(100% - 37px)
    }
}

.thank-you {
    background-image: url(../icons/x-grid-backdrop.svg);
    background-repeat: repeat;
    background-size: 1300px;
    padding: 40px 0 100px
}

@media (min-width:1024px) {
    .thank-you {
        background-size: contain;
        padding: 70px 0 200px
    }
}

.thank-you .breadcrumbs {
    margin-bottom: 90px
}

@media (min-width:1024px) {
    .thank-you .breadcrumbs {
        margin-bottom: 120px
    }
}

.thank-you h1 {
    font-size: 26px
}

@media (min-width:1024px) {
    .thank-you h1 {
        font-size: 60px
    }
}

.thank-you .buttons {
    justify-content: center
}

@media (max-width:1023px) {
    .thank-you .buttons {
        align-items: center;
        flex-direction: row
    }
    .thank-you .buttons .btn:first-child {
        margin-right: 15px
    }
}

.thank-you__box {
    background-color: #131415;
    margin: 0 auto;
    max-width: 1200px;
    padding: 10px 5px 30px;
    text-align: center
}

@media (min-width:768px) {
    .thank-you__box {
        padding: 55px 65px
    }
}

.template-page-thankyou {
    background-color: #131415
}

.why-people-buy {
    overflow: hidden;
    padding: 60px 0;
    position: relative
}

@media (min-width:1024px) {
    .why-people-buy {
        padding: 100px 0
    }
}

.why-people-buy h2 {
    margin-bottom: 10px
}

@media (min-width:1024px) {
    .why-people-buy h2 {
        margin-bottom: 30px
    }
}

.why-people-buy__top {
    position: relative
}

@media (max-width:1023px) {
    .why-people-buy__top {
        padding-bottom: 30px
    }
}

.why-people-buy__top .columns {
    margin: 0 -75px
}

.why-people-buy__top .column {
    padding: 0 75px;
    position: relative
}

.why-people-buy__top .column:last-child:before {
    left: 73px
}

.why-people-buy__top .column:before {
    background-color: rgba(0, 0, 0, .2);
    content: "";
    height: 1066px;
    left: 75px;
    position: absolute;
    top: -100px;
    width: 1px
}

@media (max-width:1023px) {
    .why-people-buy__top .column:before {
        display: none
    }
}

.why-people-buy__top:after {
    background-image: url(../icons/underline.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    width: 100%
}

@media (min-width:1024px) {
    .why-people-buy__top:after {
        display: none
    }
}

.why-people-buy__description {
    margin-bottom: 0;
    max-width: 720px;
    padding-bottom: 40px;
    position: relative
}

@media (min-width:1024px) {
    .why-people-buy__description {
        padding-bottom: 50px
    }
}

.why-people-buy__description:after {
    background-image: url(../icons/underline.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    width: 100%;
}

@media (max-width:1023px) {
    .why-people-buy__description:after {
        display: none
    }
}

@media (min-width:1024px) {
    .why-people-buy__stat:first-child {
        margin-top: 10px
    }
}

.why-people-buy__stat:not(:last-child) {
    margin-bottom: 20px
}

@media (min-width:1024px) {
    .why-people-buy__stat:not(:last-child) {
        margin-bottom: 50px
    }
}

.why-people-buy__stat h3 {
    margin-bottom: 0
}

.why-people-buy__stat p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase
}

.why-people-buy__blocks {
    margin-top: 40px
}

@media (min-width:1024px) {
    .why-people-buy__blocks {
        margin-top: 80px
    }
}

@media (min-width:1440px) {
    .why-people-buy__blocks .columns {
        margin: 0 -74px
    }
}

.why-people-buy__blocks .column:not(:last-child) {
    margin-bottom: 30px
}

@media (min-width:1440px) {
    .why-people-buy__blocks .column {
        margin-bottom: 0;
        padding: 0 74px
    }
}

.why-people-buy__block-image {
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid rgba(60, 60, 60, .4);
    border-radius: 10px;
    display: inline-block;
    height: 52px;
    margin-right: 15px;
    vertical-align: top;
    width: 52px
}

.why-people-buy__block-text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 71px)
}

.why-people-buy__block-text h4 {
    margin-bottom: 5px
}

.why-people-buy__block-text p {
    margin-bottom: 0
}

.why-people-buy__video {
    -webkit-clip-path: polygon(12% 0, 88% 0, 88% 100%, 12% 100%);
    clip-path: polygon(12% 0, 88% 0, 88% 100%, 12% 100%);
    will-change: clip-path
}

@media (max-width:1439px) {
    .why-people-buy__video {
        -webkit-clip-path: none;
        clip-path: none
    }
}

.why-people-buy__video video {
    font-family: "object-fit:cover";
    height: 220px;
    left: 0;
    margin-top: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%
}

@media (min-width:768px) {
    .why-people-buy__video video {
        height: 400px
    }
}

@media (min-width:1024px) {
    .why-people-buy__video video {
        height: 600px
    }
}

@media (min-width:1440px) {
    .why-people-buy__video video {
        height: 785px;
        margin-top: 70px
    }
}

.affiliate-card {
    border-radius: 10px;
    margin-right: 10px;
    overflow: hidden;
    width: 318px
}

@media (min-width:1024px) {
    .affiliate-card {
        display: flex;
        height: 100%;
        margin-right: 30px;
        width: 720px
    }
}

.affiliate-card h4 {
    font-weight: 700;
    margin-bottom: 5px;
    width: 70%
}

.affiliate-card h5 {
    color: #678095;
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    width: 70%
}

.affiliate-card p {
    font-size: 12px
}

.affiliate-card .simple-btn {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-left: 5px;
    position: relative;
    top: 2px
}

.affiliate-card__image {
    position: relative;
    width: 100%
}

@media (max-width:1023px) {
    .affiliate-card__image {
        height: 320px
    }
}

@media (min-width:1024px) {
    .affiliate-card__image {
        width: 40%
    }
}

.affiliate-card__text {
    background-color: #fff;
    padding: 24px 24px 70px;
    position: relative;
    width: 100%
}

@media (min-width:1024px) {
    .affiliate-card__text {
        padding: 24px 38px 80px;
        width: 60%
    }
}

.affiliate-card__socials {
    position: absolute;
    right: 38px;
    text-align: right;
    top: 24px;
    width: 30%
}

.affiliate-card__socials a {
    display: inline-block
}

.affiliate-card__socials a:not(:last-child) {
    margin-right: 10px
}

.affiliate-card__socials img {
    vertical-align: top
}

.affiliate-card__bottom {
    bottom: 24px;
    margin: 0;
    position: absolute
}

.affiliate-grid-item {
    height: 340px;
    overflow: hidden;
    position: relative
}

.affiliate-grid-item:hover .affiliate-grid-item__text {
    opacity: 1;
    visibility: visible
}

.affiliate-grid-item h4 {
    font-weight: 500;
    text-transform: none;
    width: 70%
}

@media (max-width:768px) {
    .affiliate-grid-item h4 {
        font-size: 16px
    }
}

.affiliate-grid-item p {
    color: #bcc0c3;
    font-size: 12px
}

.affiliate-grid-item__image {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.affiliate-grid-item__text {
    background-color: rgba(0, 0, 0, .8);
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 28px 23px;
    position: absolute;
    top: 0;
    transition: .2s ease-in-out;
    visibility: hidden
}

.affiliate-grid-item__socials {
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    width: 100%
}

.affiliate-grid-item__socials a {
    background-color: #000;
    display: inline-block;
    height: 55px;
    line-height: 55px;
    position: relative;
    text-align: center;
    width: calc(50% + 10px)
}

.affiliate-grid-item__socials a:not(:last-child) {
    background-color: #131415;
    width: calc(50% - 10px)
}

.affiliate-grid-item__socials a:not(:last-child):after {
    background-color: #131415;
    content: "";
    height: 100%;
    position: absolute;
    right: -7px;
    top: 0;
    transform: skew(-15deg);
    width: 20px;
    z-index: 1
}

.affiliate-grid-item__socials img {
    filter: brightness(0) invert(1);
    vertical-align: middle
}

.affiliate-grid-item__bottom {
    bottom: 24px;
    margin: 0;
    position: absolute
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.blog-card.is-filtering {
    -webkit-animation: float 1.5s ease-in-out infinite;
    animation: float 1.5s ease-in-out infinite;
    filter: blur(4px);
    opacity: .2;
    pointer-events: none;
    transition: .2s ease-in-out
}

.blog-card__image {
    display: block;
    height: 250px;
    overflow: hidden;
    position: relative
}

@media (min-width:1024px) {
    .blog-card__image {
        height: 302px
    }
}

.blog-card__image img {
    width: 100%
}

.blog-card__text {
    background-color: #fff;
    line-height: 1;
    padding: 20px
}

@media (min-width:1024px) {
    .blog-card__text {
        padding: 30px
    }
}

.blog-card__text h5 {
    font-weight: 900;
    margin-bottom: 20px
}

@media (min-width:1024px) {
    .blog-card__text h5 {
        margin-bottom: 30px
    }
}

.blog-card__text h5 a {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 12px;
    line-height: 1;
    overflow: hidden
}

@media (min-width:1024px) {
    .blog-card__text h5 a {
        font-size: 16px
    }
}

.breadcrumbs {
    line-height: 1;
    margin-bottom: 20px;
    position: relative
}

.breadcrumbs.is-inverted .current {
    color: #fff
}

.breadcrumbs a,
.breadcrumbs span {
    color: #697580;
    font-size: 10px
}

@media (min-width:768px) {
    .breadcrumbs a,
    .breadcrumbs span {
        font-size: 14px
    }
}

.breadcrumbs a.current,
.breadcrumbs span.current {
    color: #000
}

.cart-side {
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: .2s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 9999
}

.cart-side.is-open {
    opacity: 1;
    visibility: visible
}

.cart-side.is-open .cart-side__main {
    transform: translateX(0);
    transition-delay: .3s
}

.cart-side h5 {
    border-bottom: 1px solid #c2d1d9;
    padding: 15px 0;
    text-align: center
}

@media (min-width:1024px) {
    .cart-side h5 {
        padding: 30px 0
    }
}

.cart-side .cart-totals {
    border-bottom: 1px solid #c2d1d9;
    border-top: 1px solid #c2d1d9;
    margin: 25px 0;
    max-width: none;
    padding: 15px 0
}

@media (min-width:1024px) {
    .cart-side .cart-totals {
        padding: 25px 0
    }
}

.cart-side .cart-totals p {
    color: #000;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(0)
}

.cart-side .cart-totals .money {
    font-size: 16px
}

@media (min-width:1024px) {
    .cart-side .cart-totals .money {
        font-weight: 900
    }
}

.cart-side__clickoff {
    background-color: rgba(0, 0, 0, .9);
    height: 100%;
    left: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.cart-side__close {
    background-color: transparent;
    background-image: url(../icons/cross.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    cursor: pointer;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px
}

@media (min-width:1024px) {
    .cart-side__close {
        background-size: 30px;
        right: 30px;
        top: 18px
    }
}

.cart-side__main {
    background-color: #fff;
    height: 100%;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: .2s ease-in-out;
    width: 90%;
    list-style: none;
    padding: 0;
    margin:0;
}
.hide{
    display: none;
}

@media (min-width:1024px) {
    .cart-side__main {
        width: 600px
    }
}

.cart-side__contents {
    padding: 15px 25px;
    list-style: none;
    margin:0;
}

@media (min-width:1024px) {
    .cart-side__contents {
        padding: 24px 45px
    }
}

.cart-side__view-all {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 25px;
    text-align: center;
    text-transform: uppercase
}

.cart-side__actions .btn {
    width: 100%
}

.cart-side__actions .btn:not(:last-child) {
    margin-bottom: 12px
}

.cart-side-item {
    margin-bottom: 24px;
    transition: all .3s ease
}

.cart-side-item:not(:last-of-type) {
    border-bottom: 1px solid #c2d1d9;
    padding-bottom: 24px
}

.cart-side-item.is-updating {
    opacity: .5;
    pointer-events: none
}

.cart-side-item.is-removed {
    opacity: 0;
    transform: translateX(50%)
}

.cart-side-item__image {
    display: inline-block;
    height: 100px;
    margin-right: 15px;
    position: relative;
    vertical-align: top;
    width: 100px
}

@media (min-width:1024px) {
    .cart-side-item__image {
        height: 150px;
        margin-right: 20px;
        width: 150px
    }
}

.cart-side-item__info {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 124px)
}

@media (min-width:1024px) {
    .cart-side-item__info {
        width: calc(100% - 174px)
    }
}

.cart-side-item__info a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    margin-bottom: 10px;
    max-width: 285px;
    overflow: hidden;
    text-transform: uppercase
}

.cart-side-item__info span {
    display: block;
    font-size: 10px;
    text-transform: uppercase
}

.cart-side-item__info .money {
    display: block;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px
}

@media (min-width:1024px) {
    .cart-side-item__info .money {
        font-size: 12px;
        margin-bottom: 20px
    }
    .cart-side-item__info .cart-remove {
        float: right;
        transform: translateY(7px)
    }
}

.cart-side-item__quantity {
    display: inline-block;
    line-height: 1
}

@media (min-width:1024px) {
    .cart-side-item__quantity {
        border: 1px solid #c2d1d9
    }
}

@media (max-width:1023px) {
    .cart-side-item__quantity .cart-decrease {
        margin-left: -9px
    }
}

.cart-side-item__quantity button {
    height: 25px;
    width: 25px
}

.cart-side-item__quantity span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 25px;
    line-height: 25px;
    pointer-events: none;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    width: 20px
}

@media (min-width:1024px) {
    .cart-side-item__quantity span {
        border-left: 1px solid #c2d1d9;
        border-right: 1px solid #c2d1d9;
        width: 50px
    }
}

.collection-filters {
    background-color: #fff;
    position: sticky;
    top: 54px;
    width: 100%;
    z-index: 9998
}

@media (min-width:1024px) {
    .collection-filters {
        top: 134px
    }
}

.collection-filters>.wrapper {
    align-items: center;
    display: flex
}

@media (min-width:1024px) {
    .collection-filters>.wrapper {
        align-items: flex-start
    }
}

.collection-filters__mobile-toggle {
    background: none;
    padding: 0 20px 0 0;
    position: relative
}

.collection-filters__mobile-toggle:after {
    background-image: url(../icons/chevron-down.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 4px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px
}

@media (min-width:1440px) {
    .collection-filters__mobile-toggle:after {
        right: -12px
    }
}

.collection-filters__mobile-toggle h6 {
    display: inline-block;
    font-size: 10px;
    height: 50px;
    line-height: 1;
    margin-bottom: 0;
    padding: 20px 0;
    vertical-align: middle
}

@media (min-width:768px) {
    .collection-filters__mobile-toggle h6 {
        font-size: 14px;
        font-weight: 600;
        height: 58px
    }
}

.collection-filters__mobile-toggle span {
    margin-left: 10px;
    position: relative;
    right: 0;
    top: 0;
    transform: none
}

.collection-filters__left {
    width: 50%
}

@media (min-width:1024px) {
    .collection-filters__left {
        width: 80%
    }
}

.collection-filters__right {
    text-align: right;
    width: 50%
}

@media (min-width:1024px) {
    .collection-filters__right {
        width: 20%
    }
}

.collection-filters__right select {
    display: none
}

.collection-filters__list {
    transition: .2s ease-in-out
}

@media (max-width:1023px) {
    .collection-filters__list {
        background-color: #f2f5f9;
        height: calc(100vh - 254px);
        left: 0;
        opacity: 0;
        overflow: auto;
        padding-bottom: 20vh;
        position: absolute;
        top: 100%;
        visibility: hidden;
        width: 100%;
        z-index: 99
    }
    .collection-filters__filter.is-open fieldset{
        display: block;
    }
}

.collection-filters__list.is-open {
    opacity: 1;
    visibility: visible
}

.collection-filters__filter {
    border-bottom: 1px solid #c2d1d9;
    position: relative;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (min-width:1024px) {
    .collection-filters__filter {
        border: 0;
        display: inline-block;
        margin-right: 50px
    }
}

.collection-filters__filter.sort {
    border-bottom: 0;
    margin-right: 0;
    min-width: auto;
    text-align: right
}

@media (max-width:1023px) {
    .collection-filters__filter.sort {
        position: static
    }
}

.collection-filters__filter.sort h6 {
    font-weight: 600
}

.collection-filters__filter.is-open fieldset,
.collection-filters__filter.is-open ul {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

.collection-filters__filter.is-open h6:after {
    transform: translateY(-50%) rotate(-180deg)
}

.collection-filters__filter h6 {
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
    height: 50px;
    line-height: 1;
    margin-bottom: 0;
    padding: 20px 20px 20px 0;
    position: relative
}

@media (min-width:768px) {
    .collection-filters__filter h6 {
        font-size: 14px;
        font-weight: 600;
        height: 58px
    }
}

@media (min-width:1024px) {
    .collection-filters__filter h6 {
        display: inline-block;
        padding: 20px 0
    }
}

.collection-filters__filter h6:after {
    background-image: url(../icons/chevron-down.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 4px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
}

@media (min-width:1024px) {
    .collection-filters__filter h6:after {
        right: -12px
    }
}

.collection-filters__filter fieldset {
    display: none;
    padding: 0 20px 20px
}

@media (min-width:1024px) {
    .collection-filters__filter fieldset {
        background-color: #fff;
        display: block;
        left: 0;
        min-width: 260px;
        opacity: 0;
        padding: 15px 20px;
        position: absolute;
        top: 100%;
        transform: translateY(-10px);
        transition: .2s ease-in-out;
        visibility: hidden;
        z-index: 10
    }
}

.collection-filters__filter ul {
    background-color: #fff;
    left: 0;
    margin: 0;
    min-width: 160px;
    opacity: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: translateY(-10px);
    transition: .2s ease-in-out;
    visibility: hidden;
    z-index: 10;
    list-style: none;
}

@media (max-width:1023px) {
    .collection-filters__filter ul {
        background-color: #f2f5f9;
        height: 68vh;
        width: 100%
    }
}

.collection-filters__filter ul li:last-child {
    border-bottom-color: #e0e8ec
}

.collection-filters__filter ul li {
    border-bottom: 1px solid #c2d1d9;
}

.collection-filters__filter ul li a{
    color: #000;
    display: block;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: normal;
    width: 100%;
    padding:12px 0;
}

@media (min-width:1024px) {
    .collection-filters__filter ul li {
        border-color: #e0e8ec;
        padding: 12px 15px
    }
}

.collection-filters__filter label {
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    padding: 7px 40px 7px 0;
    position: relative;
    white-space: nowrap
}

.collection-filters__filter label span {
    border-radius: 50%;
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    width: 18px
}

.collection-filters__filter label span.is-border {
    border: 1px solid #c2d1d9
}

.collection-filters__filter input[type=checkbox] {
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.collection-filters__filter button {
    background-color: transparent;
    color: #678095;
    cursor: pointer;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    padding: 0;
    pointer-events: none
}

.collection-filters__filter button.is-filtered {
    color: #ef5329;
    pointer-events: auto
}

.collection-filters__mobile-actions {
    background-color: #eceff2;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 999999
}

.collection-filters__mobile-actions .buttons {
    flex-direction: row;
    margin: 0
}

.collection-filters__mobile-actions .buttons .btn {
    margin: 0;
    width: 50%
}

.collection-filters__mobile-actions .buttons .btn--grey {
    background-color: #e4e7ea;
    border-color: #e4e7ea
}

.footer {
    background-color: #000;
    overflow: hidden;
    padding: 30px 0
}

@media (min-width:1024px) {
    .footer {
        padding: 86px 0 46px
    }
}

.footer.is-limited {
    padding-top: 30px
}

@media (min-width:1024px) {
    .footer.is-limited {
        padding-top: 60px
    }
}

.footer.is-limited .footer__bottom {
    margin-top: 30px
}

@media (min-width:1024px) {
    .footer.is-limited .footer__bottom {
        margin-top: 60px
    }
}

.footer .wrapper {
    position: relative
}

.footer h6 a {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize
}

.footer ul {
    list-style: none;
    padding: 0
}

@media (max-width:1023px) {
    .footer .socials {
        position: absolute;
        right: 0;
        top: 14px
    }
}

.footer__logo {
    display: block;
    width: 132px
}

@media (max-width:767px) {
    .footer__menus {
        max-width: 80%
    }
}

@media (max-width:1023px) {
    .footer__menus {
        margin-top: 58px
    }
}

.footer__menus .columns {
    margin: -15px
}

@media (min-width:1024px) {
    .footer__menus .columns {
        margin: -30px
    }
}

.footer__menus .column {
    padding: 15px
}

@media (min-width:1024px) {
    .footer__menus .column {
        padding: 30px
    }
}

.footer__menus ul {
    margin: 10px 0 0
}

.footer__menus li a {
    color: #a8a8a8;
    font-size: 12px;
    transition: all .3s ease
}

@media (min-width:1024px) {
    .footer__menus li a {
        font-size: 14px
    }
}

.footer__menus li a:hover {
    color: #fff
}

.footer__bottom {
    margin-top: 50px
}

@media (min-width:1024px) {
    .footer__bottom {
        margin-top: 90px
    }
}

@media (max-width:767px) {
    .footer__bottom .columns {
        display: flex;
        flex-direction: column-reverse
    }
}

.footer__bottom p {
    font-size: 10px;
    margin-bottom: 0
}

@media (max-width:1023px) {
    .footer__bottom p {
        color: #9b9b9b
    }
}

.footer__bottom ul {
    margin: 0
}

@media (min-width:1024px) {
    .footer__bottom ul {
        text-align: right
    }
}

.footer__bottom li {
    display: inline-block;
    line-height: 1
}

.footer__bottom li:not(:last-child) {
    margin-right: 20px
}

.footer__bottom li a {
    font-size: 10px
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0
}

header li {
    font-family: Pilat Wide, sans-serif
}

header a {
    transition: .2s ease-in-out
}

header a:hover {
    text-decoration: none
}

.header {
    height: 128px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

.header-top {
    background-color: #131415;
    position: relative;
    text-align: right;
    z-index: 1
}

@media (min-width:1440px) {
    .header-top {
        padding: 0 100px
    }
}

.header-top__item {
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    letter-spacing: .38px;
    margin-right: 20px;
    padding: 5px 0 10px
}

.header-top__item:last-child {
    margin-right: 0
}

.header-top__item--parent {
    position: relative
}

.header-top__item--parent:after {
    background-image: url(../icons/dropdown.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 4px;
    margin-left: 5px;
    transition: .2s ease-in-out;
    vertical-align: middle;
    width: 7px
}

.header-top__item--parent.is-open:after {
    transform: rotate(180deg)
}

.header-top__item--parent.is-open .header-top__dropdown {
    opacity: 1;
    visibility: visible
}

.header-top__link {
    font-size: 12px;
    line-height: 1;
    transition: all .3s ease
}

.header-top__link:hover {
    color: #fff
}

.header-top__dropdown {
    background-color: #131415;
    left: 0;
    min-width: 160px;
    opacity: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    transition: .2s ease-in-out;
    visibility: hidden
}

.header-top__dropdown li:last-child a {
    border-bottom-color: #fff
}

.header-top__dropdown:hover a {
    color: hsla(0, 0%, 100%, .5)
}

.header-top__dropdown:hover a:hover {
    color: #fff
}

.header-top__dropdown a {
    border-bottom: 1px solid #4e5566;
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: normal;
    padding: 12px 15px;
    width: 100%
}

.header-main {
    background-color: #fff
}

@media (min-width:1440px) {
    .header-main {
        padding: 0 100px
    }
}

.header-main__container {
    align-items: center;
    display: flex
}

.header-main__left {
    transform: translateY(3px);
    width: 60%
}

@media (min-width:1280px) {
    .header-main__left {
        transform: translateY(-3px)
    }
}

.header-main__right {
    padding: 28px 0 21px;
    text-align: right;
    width: 40%
}

.header-main__logo {
    display: inline-block;
    margin-right: 20px;
    max-width: 100%;
    vertical-align: middle;
    width: 100px
}

@media (min-width:1440px) {
    .header-main__logo {
        margin-right: 45px;
        vertical-align: bottom;
        width: 178px
    }
}

.header-main__logo svg {
    vertical-align: top;
    width: 100%
}

@media (min-width:1440px) {
    .header-main__logo svg {
        vertical-align: bottom
    }
}

.header-main__menu {
    display: inline-block;
    vertical-align: middle
}

@media (min-width:1440px) {
    .header-main__menu {
        vertical-align: bottom
    }
}

.header-main__item {
    display: inline-block
}

.header-main__link {
    font-size: 14px;
    font-weight: 600;
    margin-right: 20px
}

@media (min-width:1440px) {
    .header-main__link {
        margin-right: 34px
    }
}

.header-main__link:hover {
    color: #ef5329
}

.header-main__link.is-sale {
    background-color: #ef5329;
    border-radius: 12px;
    color: #fff;
    padding: 1px 10px 4px
}

.header-main__link.is-xrliving {
    background-color: #374353;
    border-radius: 12px;
    color: #fff;
    padding: 1px 10px 4px
}

.header-main__link.is-open {
    color: #ef5329
}

.header-main__search {
    display: inline-block;
    margin-right: 30px;
    max-width: 170px;
    vertical-align: middle
}

@media (min-width:1440px) {
    .header-main__search {
        max-width: none
    }
}

.header-main__actions {
    margin-right: 22px
}

.header-main__action,
.header-main__actions {
    display: inline-block;
    line-height: 1;
    vertical-align: middle
}

.header-main__action {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 19px;
    width: 17px
}

.header-main__action--account {
    background-image: url(../icons/user.svg);
    margin-right: 20px
}

.header-main__action--cart {
    background-image: url(../icons/cart.svg);
    position: relative
}

.header-main__action--cart span {
    background-color: #ef5329;
    border-radius: 50%;
    color: #fff;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    height: 16px;
    line-height: 15px;
    padding-right: 1px;
    position: absolute;
    right: -9px;
    text-align: center;
    top: -9px;
    width: 16px
}

.header-main__action--cart span.is-double {
    font-size: 8px;
    line-height: 13px
}

.header-main__location {
    display: inline-block;
    vertical-align: middle
}

.header-navigation .columns--top {
    margin: 0 -30px
}

@media (min-width:1440px) {
    .header-navigation .columns--top {
        margin: 0 -70px
    }
}

.header-navigation .columns--top-alt {
    margin: 0 -20px
}

.header-navigation .columns--menus {
    margin: 0 -10px
}

@media (min-width:1440px) {
    .header-navigation .columns--menus {
        margin: 0 -20px
    }
}

.header-navigation .columns--menus .column {
    padding: 0 10px
}

@media (min-width:1440px) {
    .header-navigation .columns--menus .column {
        padding: 0 20px
    }
}

.header-navigation .columns--offers {
    margin: 0 -15px
}

.header-navigation .columns--offers .column {
    padding: 0 15px
}

.header-navigation .columns--images {
    margin: 0 -10px
}

@media (min-width:1440px) {
    .header-navigation .columns--images {
        margin: 0 -20px
    }
}

.header-navigation .columns--images:hover .header-navigation__image {
    opacity: .5
}

.header-navigation .columns--images:hover .header-navigation__image:hover {
    opacity: 1
}

.header-navigation .columns--images .column {
    padding: 0 10px
}

@media (min-width:1440px) {
    .header-navigation .columns--images .column {
        padding: 0 20px
    }
}

.header-navigation .column--top {
    padding: 0 30px
}

@media (min-width:1440px) {
    .header-navigation .column--top {
        padding: 0 70px
    }
}

.header-navigation .column--top-alt {
    padding: 0 20px
}

.header-navigation__dropdown {
    background-color: #fff;
    display: none;
    left: 50%;
    max-width: 1500px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%
}

.header-navigation__dropdown h4 {
    font-weight: 700;
    margin-bottom: 5px
}

.header-navigation__dropdown h5 {
    font-size: 14px;
    font-weight: 600
}

.header-navigation__wrapper {
    padding: 36px 36px 25px
}

.header-navigation__image {
    transition: all .3s ease
}

.header-navigation__image h5 {
    margin-top: 20px
}

.header-navigation__image img {
    width: 100%
}

.header-navigation__menu {
    margin-bottom: 20px
}

.header-navigation__menu:last-child {
    margin-bottom: 0
}

.header-navigation__menu li {
    transition: all .3s ease
}

.header-navigation__menu a,
.header-navigation__menu li {
    color: #697580;
    font-family: Axiforma, sans-serif;
    font-weight: 400
}

.header-navigation__menu a {
    display: block;
    line-height: 1;
    padding: 10px 0
}

.header-navigation__menu a:hover {
    color: #ef5329
}

.header-navigation__offer {
    display: block
}

.header-navigation__offer img {
    margin-bottom: 20px
}

.header-navigation__offer p {
    color: #697580;
    font-size: 12px;
    margin-bottom: 0
}

.header-navigation__all {
    border-top: 1px solid #d8dce2;
    display: block;
    font-family: Pilat Wide, sans-serif;
    font-weight: 700;
    letter-spacing: normal;
    padding: 25px 36px;
    text-transform: uppercase;
    width: 100%
}

.header-navigation__all:hover {
    background-color: #131415;
    color: #ef5329
}

.header-mobile {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 54px;
    padding: 0 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

.header-mobile__left {
    line-height: 1;
    width: 30%
}

.header-mobile__right {
    text-align: right;
    width: 70%
}

.header-mobile__logo {
    display: inline-block;
    line-height: 1;
    max-width: 100%;
    width: 78px
}

.header-mobile__logo img {
    vertical-align: middle
}

.header-mobile__actions {
    line-height: 1
}

.header-mobile__action {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 19px;
    line-height: 1;
    vertical-align: middle;
    width: 19px
}

.header-mobile__action--account {
    background-image: url(../icons/user.svg);
    margin-right: 20px
}

.header-mobile__action--cart {
    background-image: url(../icons/cart.svg);
    margin-right: 20px;
    position: relative;
    transform: translateY(1px)
}

.header-mobile__action--cart span {
    background-color: #ef5329;
    border-radius: 50%;
    color: #fff;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    height: 16px;
    line-height: 15px;
    padding-right: 1px;
    position: absolute;
    right: -9px;
    text-align: center;
    top: -9px;
    width: 16px
}

.header-mobile__action--cart span.is-double {
    font-size: 8px;
    line-height: 13px
}

.header-mobile__action--burger {
    background: none;
    position: relative
}

.header-mobile__action--burger span {
    background-color: #000;
    height: 2px;
    position: absolute;
    right: 0;
    width: 17px
}

.header-mobile__action--burger span:first-child {
    top: 3px
}

.header-mobile__action--burger span:nth-child(2) {
    top: 9px
}

.header-mobile__action--burger span:last-child {
    bottom: 2px;
    width: 11px
}

.header-mobile .search-form {
    display: inline-block;
    margin-right: 20px;
    width: 60%
}

.header-mobile .search-form input {
    font-size: 10px;
    padding: 10px 25px 10px 10px
}

@media (min-width:768px) {
    .header-mobile .search-form input {
        font-size: 12px
    }
}

.header-mobile .search-form button {
    background-size: 12px;
    height: 36px;
    width: 36px
}

.header-mobile-navigation {
    background-color: #f2f5f9;
    height: 100vh;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 50px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: opacity 0s .2s, visibility 0s .2s, transform .2s ease-in-out;
    visibility: hidden;
    width: 70vw;
    z-index: 999999
}

.header-mobile-navigation.is-open {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0s, visibility 0s, transform .2s ease-in-out;
    visibility: visible
}

.header-mobile-navigation__close {
    background-color: transparent;
    background-color: #fff;
    background-image: url(../icons/close.svg);
    background-position: top 14px right 14px;
    background-repeat: no-repeat;
    background-size: 20px;
    height: 70px;
    padding: 0;
    width: 100%
}

.header-mobile-navigation__parent {
    background-image: url(../icons/chevron-right.svg);
    background-position: center right 32px;
    background-repeat: no-repeat;
    background-size: 5px
}

.header-mobile-navigation__dropdown {
    background-image: url(../icons/chevron-down.svg);
    background-position: center right 32px;
    background-repeat: no-repeat;
    background-size: 7px
}

.header-mobile-navigation__dropdown.is-open a {
    border: 0
}

.header-mobile-navigation__level-one,
.header-mobile-navigation__level-two {
    overflow-x: hidden;
    overflow-y: auto
}

.header-mobile-navigation__level-one {
    position: relative
}

.header-mobile-navigation__level-one.is-disabled {
    height: 70vh
}

.header-mobile-navigation__level-one.is-disabled>ul>li {
    border-color: transparent !important
}

.header-mobile-navigation__level-one.is-disabled>ul>li>a {
    opacity: 0;
    visibility: hidden
}

.header-mobile-navigation__level-one li {
    border-top: 1px solid #c2d1d9;
    color: #000;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2px;
    text-transform: uppercase;
    transition: .2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.header-mobile-navigation__level-one li:last-child {
    border-bottom: 1px solid #c2d1d9
}

.header-mobile-navigation__level-one li a {
    color: #89929a;
    display: block;
    font-size: 10px;
    padding: 15px 25px;
    transition: .2s ease-in-out
}

.header-mobile-navigation__level-one li a.is-primary-item {
    background-color: #fff;
    color: #000
}

.header-mobile-navigation__level-one li a.is-sale {
    background-color: #ef5329;
    color: #fff
}

.header-mobile-navigation__level-one li a.is-xrliving {
    background-color: #374353;
    color: #fff
}

.header-mobile-navigation__level-two {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(100%);
    transition: .2s ease-in-out;
    width: 100%
}

.header-mobile-navigation__level-two.is-open {
    transform: translateX(0)
}

.header-mobile-navigation__level-two h6 {
    background-color: #fff;
    background-image: url(../icons/chevron-left.svg);
    background-position: top 4px left 25px;
    background-repeat: no-repeat;
    background-size: 5px;
    color: #637d93;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 0;
    padding: 0 0 20px 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header-mobile-navigation__level-three {
    background-color: #fff;
    display: none;
}

.header-mobile-navigation__level-three ul {
    padding: 0 45px 20px;
}

.header-mobile-navigation__level-three li {
    border: 0 !important;
}

.header-mobile-navigation__level-three li a {
    color: #000;
    font-weight: 600;
    letter-spacing: normal;
    padding: 5px 0;
    text-transform: none
}

.header-mobile-navigation__bottom {
    margin: 30px 0;
    padding-left: 25px;
    width: 100%
}

.header-mobile-navigation__bottom.is-reduced {
    bottom: 30px;
    margin: 0;
    position: absolute
}

.header-mobile-navigation__bottom.is-reduced .header-mobile-slider {
    opacity: 0;
    visibility: hidden
}

.header-mobile-navigation__bottom .location-selector {
    margin: 30px 0
}

.header-mobile-clickoff {
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 0;
    position: fixed;
    top: 0;
    transition: .2s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 999998
}

.header-mobile-clickoff.is-open {
    opacity: 1;
    visibility: visible
}

.header-mobile-slider {
    transition: .2s ease-in-out;
    width: 100%
}

.header-mobile-slider .slick-dotted.slick-slider {
    margin-bottom: 0
}

.header-mobile-slider .slick-slide {
    margin-right: 10px;
    width: 200px
}

.header-mobile-slider .slick-dots {
    bottom: 0 !important;
    height: 4px;
    margin-left: -4px;
    text-align: left
}

.header-mobile-slider .slick-dots li {
    vertical-align: top
}

.header-mobile-slider .slick-dots .slick-active button:after,
.header-mobile-slider .slick-dots .slick-active button:before {
    background-color: #ef5329 !important
}

.header-mobile-slider .slick-dots button:after,
.header-mobile-slider .slick-dots button:before {
    background-color: #fff !important;
    opacity: 1 !important
}

.header-mobile-slider__main {
    padding-bottom: 10px
}

.header-mobile-slider__main a {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 145px;
    position: relative
}

.header-mobile-slider__main a:after {
    background: linear-gradient(0deg, #000, transparent);
    bottom: 0;
    content: "";
    height: 20%;
    left: 0;
    position: absolute;
    width: 100%
}

.header-mobile-slider__main h6 {
    bottom: 0;
    font-size: 10px;
    left: 0;
    margin-bottom: 0;
    padding: 0 0 10px 10px;
    position: absolute;
    width: 100%;
    z-index: 1
}

.header-site-notice {
    font-size: 12px;
    padding: 5px;
    text-align: center
}

.header-site-notice a {
    color: inherit;
    font-size: inherit;
    text-decoration: underline
}

.instagram {
    margin: 10px 0;
    padding: 0 10px
}

@media (min-width:768px) {
    .instagram {
        margin: 20px 0;
        padding: 0 20px
    }
}

.instagram .columns {
    margin: -5px
}

@media (min-width:768px) {
    .instagram .columns {
        margin: -10px
    }
}

.instagram .column {
    padding: 5px
}

@media (min-width:768px) {
    .instagram .column {
        padding: 10px
    }
}

.instagram figure {
    padding-bottom: 100%;
    position: relative;
    width: 100%
}

.instagram figure:hover:after {
    opacity: .3
}

.instagram figure figcaption {
    background-color: rgba(0, 0, 0, .5);
    bottom: 0;
    color: #fff;
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 13px;
    position: absolute;
    width: 100%;
    z-index: 1
}

@media (min-width:768px) {
    .instagram figure figcaption {
        padding: 24px
    }
}

.instagram figure figcaption i {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    margin-right: 10px;
    vertical-align: middle
}

.instagram figure:after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .3s ease;
    width: 100%
}

.instagram a {
    display: block
}

.instagram .slick-slide {
    width: 255px !important
}

@media (min-width:768px) {
    .instagram .slick-slide {
        width: 475px !important
    }
}

.location-selector {
    line-height: 1;
    position: relative
}

.location-selector .flag-icon {
    border-radius: 4px;
    font-size: 16px;
    margin-right: 7px
}

.location-selector button {
    background-color: transparent;
    background-image: url(../icons/chevron-down.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 7px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding-right: 14px;
}

.location-selector a,
.location-selector span {
    color: #000;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.location-selector span {
    display: inline-block;
    vertical-align: middle;
}

.location-selector ul {
    background-color: #fff;
    bottom: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .1);
    left: -7px;
    list-style: none;
    opacity: 0;
    padding: 10px 13px;
    position: absolute;
    transform: translateY(5px);
    transition: .2s ease-in-out;
    visibility: hidden;
    width: 92px
}

@media (min-width:1024px) {
    .location-selector ul {
        bottom: inherit;
        box-shadow: 0 10px 18px 3px rgba(0, 0, 0, .2);
        top: 100%
    }
}

.location-selector ul.is-open {
    opacity: 1;
    transform: translateY(-30px);
    visibility: visible
}

@media (min-width:1024px) {
    .location-selector ul.is-open {
        transform: translateY(12px)
    }
}

.location-selector ul li {
    display: block;
    text-align: left
}

.location-selector ul li:not(:last-child) {
    margin-bottom: 3px
}

.location-selector ul a {
    display: block
}

.product-360 {
    margin-top: 60px
}

@media (min-width:1024px) {
    .product-360 {
        margin-top: 85px
    }
}

.product-360 h2 {
    margin-bottom: 25px
}

.product-360__rotation {
    background-color: #fff;
    cursor: grab;
    height: 400px;
    overflow: hidden;
    position: relative;
}

@media (min-width:768px) {
    .product-360__rotation {
        height: 686px
    }
}

.product-360__rotation:after {
    background-image: url(../icons/360-degree.png);
    background-position: 50%;
    background-size: contain;
    bottom: 12px;
    content: "";
    height: 48px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 48px
}

.product-360__rotation img {
    left: 50%;
    max-width: 80%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.product-360__rotation img.is-active {
    opacity: 1
}

.product-anchors {
    background-color: #131415;
    height: 55px;
    padding: 15px 0;
    position: fixed;
    top: 134px;
    width: 100%;
    z-index: 9998
}

@media (max-width:1023px) {
    .product-anchors {
        display: none
    }
}

.product-anchors .wrapper {
    overflow: hidden;
    white-space: nowrap
}

.product-anchors button {
    background-color: transparent;
    color: #adadad;
    cursor: pointer;
    font-family: Pilat Wide, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-right: 54px;
    padding: 0;
    text-transform: uppercase;
    transition: all .3s ease
}

@media (max-width:1439px) {
    .product-anchors button {
        font-size: 12px;
        margin-right: 40px
    }
}

.product-anchors button.is-active,
.product-anchors button:hover {
    color: #fff
}

.product-assembly {
    margin-top: 35px
}

@media (min-width:1024px) {
    .product-assembly {
        margin-top: 100px
    }
}

.product-assembly h2,
.product-assembly p {
    max-width: 600px
}

.product-assembly__media {
    height: 220px;
    margin-bottom: 60px;
    position: relative
}

@media (min-width:768px) {
    .product-assembly__media {
        height: 400px
    }
}

@media (min-width:1024px) {
    .product-assembly__media {
        height: 573px
    }
}

.product-assembly__media .play-btn {
    background-position: 54%;
    background-size: 12px;
    height: 38px;
    width: 38px
}

@media (min-width:1024px) {
    .product-assembly__media .play-btn {
        background-size: 44px;
        height: 128px;
        width: 128px
    }
}

.product-bundles {
    margin-top: 60px
}

@media (min-width:1024px) {
    .product-bundles {
        margin-top: 100px
    }
}

@media (min-width:768px) {
    .product-bundles__products {
        display: flex;
        flex-wrap: wrap;
        margin: -10px
    }
}

@media (max-width:767px) {
    .product-bundles__products .product-card:not(:last-child) {
        margin-bottom: 10px
    }
}

@media (min-width:768px) {
    .product-bundles__products .product-card {
        padding: 10px
    }
}

.product-bundles h2 {
    margin-bottom: 30px
}

.product-card-guide {
    position: relative
}

.product-card-guide.is-filtering {
    -webkit-animation: float 1.5s ease-in-out infinite;
    animation: float 1.5s ease-in-out infinite;
    filter: blur(4px);
    opacity: .2;
    pointer-events: none;
    transition: .2s ease-in-out
}

.product-card-guide__image {
    height: 220px;
    overflow: hidden;
    position: relative
}

@media (min-width:1024px) {
    .product-card-guide__image {
        height: 300px
    }
}

.product-card-guide__image img {
    width: 100%
}

.product-card-guide__text {
    background-color: #fff;
    line-height: 1;
    padding: 16px
}

.product-card-guide__text h5 {
    margin-bottom: 0
}

@media (min-width:1024px) {
    .product-card-guide__text h5 {
        margin-bottom: 8px
    }
}

.product-card-guide__text h5 a {
    font-size: 10px;
    line-height: 1
}

@media (min-width:1024px) {
    .product-card-guide__text h5 a {
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        font-size: 12px;
        overflow: hidden
    }
}

.product-card-guide__sku {
    color: #678095;
    font-size: 8px
}

@media (min-width:1024px) {
    .product-card-guide__sku {
        font-size: 12px
    }
}

.product-card-manual {
    display: flex;
    position: relative
}

.product-card-manual.is-filtering {
    -webkit-animation: float 1.5s ease-in-out infinite;
    animation: float 1.5s ease-in-out infinite;
    filter: blur(4px);
    opacity: .2;
    pointer-events: none;
    transition: .2s ease-in-out
}

.product-card-manual__image {
    overflow: hidden;
    padding-bottom: 35%;
    position: relative;
    width: 35%
}

.product-card-manual__image img {
    width: 100%
}

.product-card-manual__text {
    background-color: #fff;
    padding: 15px 17px;
    width: 65%
}

.product-card-manual__text h5 {
    margin-bottom: 0
}

@media (min-width:1024px) {
    .product-card-manual__text h5 {
        margin-bottom: 5px
    }
}

.product-card-manual__text h5 a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 10px;
    line-height: 1.7;
    overflow: hidden
}

@media (min-width:1024px) {
    .product-card-manual__text h5 a {
        font-size: 12px
    }
}

.product-card-manual__text .download-btn {
    margin-top: 5px
}

@media (min-width:1024px) {
    .product-card-manual__text .download-btn {
        margin-top: 10px
    }
}

.product-card-manual__sku {
    color: #678095;
    font-size: 8px
}

@media (min-width:1024px) {
    .product-card-manual__sku {
        font-size: 12px
    }
}

.product-card {
    position: relative
}

.product-card.is-filtering {
    -webkit-animation: float 1.5s ease-in-out infinite;
    animation: float 1.5s ease-in-out infinite;
    filter: blur(4px);
    opacity: .2;
    pointer-events: none;
    transition: .2s ease-in-out
}

.product-card--small {
    display: flex
}

@media (min-width:768px) {
    .product-card--small {
        width: 50%
    }
}

.product-card--small h5 a {
    font-size: 10px;
    line-height: 1.5
}

@media (min-width:768px) {
    .product-card--small h5 a {
        font-size: 12px
    }
}

.product-card--small .product-card__image {
    height: auto;
    padding-bottom: 30%;
    width: 30%
}

@media (min-width:768px) {
    .product-card--small .product-card__image {
        padding-bottom: 0;
        width: 40%
    }
}

.product-card--small .product-card__text {
    padding: 10px 15px;
    position: relative;
    width: 70%
}

@media (min-width:768px) {
    .product-card--small .product-card__text {
        padding: 20px;
        width: 60%
    }
}

.product-card--small .product-card__sku {
    font-size: 12px
}

@media (max-width:767px) {
    .product-card--small .product-card__sku {
        display: none
    }
}

.product-card--small .product-card__bottom {
    padding: 0 20px
}

@media (max-width:767px) {
    .product-card--small .product-card__bottom {
        bottom: 10px;
        left: 0;
        padding: 0 15px;
        position: absolute;
        width: 100%
    }
}

.product-card--small .product-card__bottom .money {
    font-size: 12px;
    transform: translateY(-2px)
}

@media (min-width:1700px) {
    .product-card--small .product-card__bottom .money {
        font-size: 16px
    }
}

.product-card--small .add-to-cart {
    font-size: 10px
}

.product-card--small .add-to-cart i {
    font-size: 25px
}

.product-card--small .add-to-cart .spinner {
    height: 17px;
    width: 17px
}

.product-card--small .simple-btn--no-stock {
    font-size: 10px
}

.product-card--square {
    border-radius: 10px;
    overflow: hidden
}

.product-card--square h5 a {
    font-size: 12px
}

.product-card--square .product-card__image {
    height: 320px
}

.product-card--square .product-card__text {
    padding: 20px
}

.product-card--square .product-card__bottom {
    bottom: 11px;
    left: 0;
    margin-top: 0;
    padding: 0 15px;
    position: absolute;
    width: 100%
}

@media (min-width:1024px) {
    .product-card--square .product-card__bottom {
        bottom: 26px;
        padding: 0 20px
    }
}

.product-card--square .product-card__bottom .money {
    font-size: 16px
}

.product-card--square .add-to-cart {
    font-size: 10px
}

.product-card--square .add-to-cart i {
    font-size: 25px
}

.product-card--square .add-to-cart .spinner {
    height: 17px;
    width: 17px
}

.product-card--regular .product-card__text {
    min-height: 114px
}

@media (min-width:1024px) {
    .product-card--regular .product-card__text {
        min-height: 166px
    }
}

.product-card--regular .product-card__bottom {
    bottom: 11px;
    left: 0;
    margin-top: 0;
    padding: 0 15px;
    position: absolute;
    width: 100%
}

@media (min-width:1024px) {
    .product-card--regular .product-card__bottom {
        bottom: 26px;
        padding: 0 30px
    }
}

.product-card__image {
    display: block;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    width: 100%
}

@media (min-width:1024px) {
    .product-card__image:hover .product-card__view {
        opacity: 1;
        transform: translateY(0);
        visibility: visible
    }
}

.product-card__image img {
    width: 100%
}

.product-card__label {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    height: 24px;
    left: -6px;
    line-height: 24px;
    min-width: 102px;
    padding: 0 15px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 16px;
    z-index: 1
}

.product-card__label:before {
    border-left: 6px solid transparent;
    border-right: 0 solid transparent;
    border-top: 6px solid #000;
    bottom: -6px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 0
}

.product-card__label--orange {
    background-color: #ef5329
}

.product-card__label--orange:before {
    border-color: #a62d0c transparent
}

.product-card__label--green {
    background-color: #549b1e
}

.product-card__label--green:before {
    border-color: #26460d transparent
}

.product-card__label--red {
    background-color: #ef2929
}

.product-card__label--red:before {
    border-color: #a60c0c transparent
}

.product-card__label--purple {
    background-color: #8c29ef
}

.product-card__label--purple:before {
    border-color: #590ca6 transparent
}

.product-card__label--blue {
    background-color: #143dd2
}

.product-card__label--blue:before {
    border-color: #0b2275 transparent
}

.product-card__view {
    background: linear-gradient(180deg, transparent, #000 140%);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translateY(10px);
    transition: all .3s ease;
    visibility: hidden;
    width: 100%
}

.product-card__view button {
    left: 50%;
    max-width: 276px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%
}

.product-card__text {
    background-color: #fff;
    min-height: 114px;
    padding: 10px 15px
}

@media (min-width:1024px) {
    .product-card__text {
        min-height: 166px;
        padding: 30px
    }
}

.product-card__text h5 {
    margin-bottom: 5px
}

.product-card__text h5 a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 1.3;
    overflow: hidden
}

.product-card__text small {
    color: #89929a;
    display: block;
    font-family: Pilat Wide, sans-serif;
    height: 16px;
    letter-spacing: normal;
    text-transform: uppercase
}

.product-card__bottom {
    align-items: flex-start;
    bottom: 11px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    left: 0;
    position: absolute;
    width: 100%
}

@media (min-width:1024px) {
    .product-card__bottom {
        bottom: 26px
    }
}

.product-card__bottom .money {
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1
}

.product-card__bottom .money .price-old{
    text-decoration: line-through;
    font-size: 16px;
    color: #99a0a7;
    font-weight: 600;
}

@media (min-width:1024px) {
    .product-card__bottom .money {
        font-size: 21px
    }
}

.product-card__bottom strike {
    color: #678095;
    font-size: 10px;
    margin-left: 5px
}

@media (min-width:1024px) {
    .product-card__bottom strike {
        font-size: 14px
    }
}

.product-card__bottom .add-to-cart.is-adding {
    border-color: transparent;
    height: 14px;
    transform: translateY(-5px);
    transition: none
}

@media (min-width:1024px) {
    .product-card__bottom .add-to-cart.is-adding {
        height: 27px
    }
}

@media (max-width:1023px) {
    .product-card__bottom .add-to-cart {
        font-size: 10px
    }
    .product-card__bottom .add-to-cart i {
        font-size: 25px
    }
    .product-card__bottom .add-to-cart .spinner {
        height: 17px;
        width: 17px
    }
}

.product-card__bottom .add-to-cart i {
    color: #ef5329;
    right: -5px;
    top: -3px
}

.product-card__bottom .add-to-cart .spinner {
    top: 2px
}

@media (min-width:1024px) {
    .product-card__bottom .add-to-cart .spinner {
        top: 4px
    }
}

.product-cart {
    margin-top: 20px;
    max-width: 550px;
    min-height: 60px
}

.product-cart form {
    overflow: hidden
}

.product-cart__gift-card {
    margin-bottom: 10px
}

@media (min-width:768px) {
    .product-cart__gift-card {
        max-width: 300px
    }
}

@media (min-width:1440px) {
    .product-cart__gift-card {
        margin-bottom: 40px;
        max-width: 500px
    }
}

.product-cart .product-cart__action {
    float: left;
    height: 60px;
    margin-right: 7px;
    min-width: auto;
    padding: 10px;
    width: calc(33.3333% - 5px)
}

@media (max-width:1439px) {
    .product-cart__action {
        height: 46px;
        width: calc(39.3333% - 5px)
    }
}

.product-cart__action.buy-it-now {
    margin-right: 0
}

.product-cart #product-quantity {
    font-family: Pilat Wide, sans-serif;
    font-weight: 600;
    height: 59px
}

@media (max-width:1439px) {
    .product-cart #product-quantity {
        height: 46px;
        width: calc(21.3333% - 5px)
    }
}

.product-cart .add-to-cart i,
.product-cart .buy-it-now i {
    top: -5px
}

@media (min-width:1024px) {
    .product-cart .add-to-cart i,
    .product-cart .buy-it-now i {
        top: -2px
    }
}

.product-cart .add-to-cart .spinner,
.product-cart .buy-it-now .spinner {
    border-bottom-color: #fff;
    border-left-color: #fff
}

.product-cart .bestpush-bis-notify-button,
.product-cart .bestpush-bis-notify-status {
    opacity: 0;
    padding: 0 !important
}

.product-cart__email {
    position: relative
}

.product-cart__email input {
    font-family: Pilat Wide, sans-serif;
    font-size: 10px;
    font-weight: 600;
    height: 45px;
    padding-right: 70px;
    text-transform: uppercase
}

@media (min-width:1440px) {
    .product-cart__email input {
        font-size: 12px;
        height: 60px
    }
}

.product-cart__email input::-moz-placeholder {
    opacity: 1
}

.product-cart__email input:-ms-input-placeholder {
    opacity: 1
}

.product-cart__email input::placeholder {
    opacity: 1
}

.product-cart__email button {
    background-image: url(../icons/chevron-right-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 8px;
    height: 45px;
    min-width: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
}

@media (min-width:1440px) {
    .product-cart__email button {
        height: 60px;
        width: 60px;
    }
}

.product-cart__note {
    margin-top: 10px;
    text-align: right;
    text-transform: uppercase
}

.product-cart__note p {
    font-size: 10px
}

@media (min-width:768px) {
    .product-cart__note p {
        font-size: 12px
    }
}

.product-compare {
    margin-top: 60px;
    position: relative
}

@media (min-width:1024px) {
    .product-compare {
        margin-top: 100px
    }
}

.product-compare h6 {
    font-size: 10px;
    font-weight: 700
}

@media (min-width:1024px) {
    .product-compare h6 {
        font-size: 14px
    }
}

.product-compare p {
    color: #678095;
    font-size: 10px
}

@media (min-width:1024px) {
    .product-compare p {
        font-size: 14px
    }
}

.product-compare__table {
    margin-top: 30px;
    overflow: hidden;
    position: relative
}

@media (min-width:1024px) {
    .product-compare__table {
        align-items: flex-end;
        display: flex
    }
}

.product-compare__properties {
    min-width: 225px
}

@media (max-width:1023px) {
    .product-compare__properties {
        display: none
    }
}

.product-compare__properties .product-compare__row:not(:last-child):after {
    background-color: #c2d1d9;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100vw
}

.product-compare__mobile-property {
    width: 100%
}

@media (min-width:1024px) {
    .product-compare__mobile-property {
        display: none
    }
}

.product-compare__slider {
    cursor: grab;
    overflow: hidden
}

.product-compare__slider .slick-track {
    margin-left: 0
}

.product-compare__image {
    margin: 0 auto 15px;
    max-width: 184px;
    width: 100%
}

.product-compare__title {
    line-height: 1.5;
    margin-bottom: 25px;
    text-decoration: underline
}

.product-compare__item {
    padding: 15px 15px 1px;
    position: relative;
    text-align: center
}

@media (min-width:1024px) {
    .product-compare__item {
        padding: 20px 20px 0
    }
}

.product-compare__item.is-current:after {
    border: 2px solid #ef5329;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.product-compare__row {
    align-items: center;
    display: flex;
    height: 60px;
    position: relative
}

@media (max-width:1023px) {
    .product-compare__row {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px
    }
}

.product-compare__row h6,
.product-compare__row p {
    margin: 0
}

.product-compare__row p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    width: 100%
}

.product-compare__row img {
    margin: 0 auto
}

.product-compatibility {
    margin: 20px 0
}

.product-compatibility h6 {
    color: #000;
    margin-bottom: 8px
}

.product-compatibility__platforms {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

.product-compatibility__platform {
    color: #fff;
    display: inline-block;
    font-family: Pilat Wide, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 3px;
    margin-right: 3px;
    min-width: 115px;
    padding: 6px;
    text-align: center;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (max-width:768px) {
    .product-compatibility__platform {
        font-size: 10px;
        min-width: auto
    }
}

.product-compatibility__platform--playstation {
    background-color: #3262ac
}

.product-compatibility__platform--xbox {
    background-color: #57ae32
}

.product-compatibility__platform--switch {
    background-color: #e40d11
}

.product-compatibility__platform--pc-mobile {
    background-color: #999
}

.product-connectivity {
    margin-top: 40px
}

@media (min-width:1024px) {
    .product-connectivity {
        margin-top: 100px
    }
}

.product-connectivity .columns {
    margin: -5px
}

.product-connectivity .column {
    padding: 5px
}

.product-connectivity__blocks {
    margin-top: 30px
}

.product-connectivity__block {
    background-color: #fff;
    padding: 20px
}

@media (min-width:1024px) {
    .product-connectivity__block {
        padding: 30px
    }
}

.product-connectivity__block img {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
    width: 60px
}

.product-connectivity__block i {
    font-size: 22px
}

.product-connectivity__block h3 {
    margin-bottom: 15px
}

.product-connectivity__block div {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 84px)
}

.product-connectivity__block div p {
    font-size: 13px;
    margin-bottom: 0
}

.product-description {
    margin-top: 60px
}

@media (min-width:1024px) {
    .product-description {
        margin-top: 120px
    }
}

.product-description p {
    font-size: 14px;
    max-width: 780px
}

.product-description-gallery {
    margin-top: 40px;
    position: relative
}

@media (min-width:1024px) {
    .product-description-gallery {
        margin-top: 64px
    }
}

.product-description-gallery .slick-list {
    overflow: visible
}

.product-description-gallery__slider {
    cursor: grab;
    overflow: hidden
}

.product-description-gallery__slider div {
    height: 295px;
    margin-right: 10px;
    position: relative;
    width: 295px
}

@media (min-width:1024px) {
    .product-description-gallery__slider div {
        height: 525px;
        margin-right: 20px;
        width: 525px
    }
}

.product-design {
    margin-top: 60px
}

@media (min-width:1024px) {
    .product-design {
        margin-top: 100px
    }
}

.product-design p {
    max-width: 720px
}

.product-design__blocks {
    margin-top: 30px
}

.product-design__image {
    height: 126px;
    position: relative;
    width: 100%
}

.product-design__text {
    background-color: #fff;
    padding: 25px 15px;
    text-align: center
}

.product-design__text h3 {
    margin: 0 auto 10px;
    max-width: 85%
}

.product-design__text p {
    color: #678095;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 0
}

.product-dimensions {
    margin-top: 70px
}

@media (min-width:1024px) {
    .product-dimensions {
        margin-top: 100px
    }
}

.product-dimensions h2 {
    margin-bottom: 40px
}

.product-dimensions h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px
}

.product-dimensions p {
    color: #678095;
    font-size: 12px;
    line-height: 1.7;
}

@media (min-width:768px) {
    .product-dimensions p {
        font-size: 14px;
    }
}

@media (min-width:1440px) {
    .product-dimensions__list:not(:last-child) {
        margin-bottom: 20px;
    }
}

.product-dimensions__image {
    height: 350px;
    position: relative;
}

@media (min-width:1024px) {
    .product-dimensions__image {
        height: 524px;
    }
}

.product-gallery {
    overflow: hidden;
    position: relative;
}

.product-gallery .columns {
    display: block;
    margin: 0;
}

@media (min-width:1024px) {
    .product-gallery .columns {
        display: flex;
        margin: -10px;
    }
}

.product-gallery .column {
    padding: 0;
}

@media (min-width:1024px) {
    .product-gallery .column {
        padding: 10px;
    }
    .product-gallery .column:nth-child(n+7) {
        display: none;
    }
}

.product-gallery .wishlist-btn {
    right: 10px;
    top: 10px;
}

@media (min-width:768px) {
    .product-gallery .wishlist-btn {
        right: 20px;
        top: 20px;
    }
}

.product-gallery .slick-slider {
    line-height: 0;
}

.product-gallery .slick-dots {
    bottom: 10px;
    height: 5px;
    line-height: 1;
}

.product-gallery .slick-dots li {
    border-radius: 50%;
    height: 5px !important;
    margin: 0 2px !important;
    overflow: hidden;
    vertical-align: top;
    width: 5px !important;
}

.product-gallery .slick-dots li.slick-active button:after {
    background-color: #ef5329 !important
}

.product-gallery .slick-dots li button:before {
    opacity: 0 !important
}

.product-gallery .slick-dots li button:after {
    background-color: #fff !important;
    transition: .3s ease-in-out;
    width: 100%
}

.product-gallery__link {
    cursor: pointer
}

.product-gallery__image {
    padding-bottom: 100%;
    position: relative
}

.product-gallery__small {
    background-color: #fff;
    border-radius: 7px;
    bottom: 20px;
    padding: 4px;
    position: absolute;
    right: 10px
}

.product-gallery__small img,
.product-gallery__small span {
    border-radius: 5px;
    vertical-align: middle
}

.product-gallery__small span {
    background-color: rgba(19, 20, 21, .5);
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    letter-spacing: .2px;
    line-height: 40px;
    text-align: center;
    width: 40px
}

.product-slider {
    background-color: rgba(0, 0, 0, .9);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: .3s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 9999
}

.product-slider.is-open {
    opacity: 1;
    visibility: visible
}

.product-slider button {
    background-color: transparent;
    cursor: pointer;
    padding: 0
}

.product-slider .columns {
    height: 100%
}

.product-slider .column {
    position: relative;
    text-align: center
}

.product-slider__slides {
    cursor: grab;
    transform: translateY(20px)
}

.product-slider__close {
    background-image: url(../icons/cross-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 30px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 15px;
    width: 40px
}

.product-slider__controls {
    display: inline-block;
    transform: translateY(20px)
}

.product-slider__control {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 55px;
    padding: 0;
    transition: .2s ease;
    width: 72px
}

.product-slider__control.slick-disabled {
    filter: grayscale(100%) brightness(.4);
    pointer-events: none;
}

.product-slider__control--prev {
    background-image: url(../icons/arrow-prev.svg);
}

.product-slider__control--next {
    background-image: url(../icons/arrow-next.svg);
    margin-left: -12px;
}

.product-slider__slide {
    padding: 0 15px;
}

.product-slider__image {
    padding-bottom: 100%;
    position: relative;
    width: 52vw;
}

@media (min-width:1440px) {
    .product-slider__image {
        width: 38vw;
    }
}

.product-info p {
    font-size: 14px;
    margin-top: 25px
}

.product-info__sku {
    font-size: 10px
}

@media (max-width:374px) {
    .product-info__sku {
        margin-right: 15px
    }
}

@media (min-width:1440px) {
    .product-info__sku {
        font-size: 14px
    }
}

.product-info__sku:after {
    background-color: #4e5566;
    content: "";
    display: inline-block;
    height: 20px;
    margin: 0 14px;
    vertical-align: middle;
    width: 1px
}

@media (max-width:374px) {
    .product-info__sku:after {
        display: none
    }
}

@media (min-width:1440px) {
    .product-info__sku:after {
        margin: 0 28px
    }
}

.product-info__reviews {
    display: inline-block
}

.product-info__reviews .trustpilot-widget {
    display: inline-block;
    margin-left: -44px;
    vertical-align: middle
}

@media (max-width:346px) {
    .product-info__reviews .trustpilot-widget {
        margin-left: -39px
    }
}

.product-info__reviews iframe {
    padding-top: 5px;
    width: 240px !important
}

.product-info__description-show {
    background: none;
    border-top: 1px solid #f2f5f9;
    color: #99a0a7;
    cursor: pointer;
    display: block;
    font-size: 10px;
    margin-top: 5px;
    padding: 2px 0 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%
}

.product-info__description-show.is-open i:before {
    transform: rotate(180deg)
}

.product-info__description-show i {
    font-size: 14px;
    transition: all .3s ease;
    vertical-align: middle
}

.product-info__description-show span {
    vertical-align: middle
}

.product-info__price {
    margin-top: 20px
}

@media (min-width:1440px) {
    .product-info__price {
        margin-top: 32px
    }
}

.product-info__price h6 {
    display: inline-block;
    font-size: 10px;
    margin-bottom: 0;
    margin-right: 5px;
    vertical-align: bottom
}

@media (min-width:1024px) {
    .product-info__price h6 {
        margin-right: 10px
    }
}

.product-info__price .money {
    line-height: 1;
    margin-right: 5px;
    vertical-align: bottom
}
.product-info__price .money-old{
    text-decoration: line-through;
}

@media (max-width:1439px) {
    .product-info__price .money {
        font-size: 18px
    }
}

@media (min-width:1440px) {
    .product-info__price .money {
        margin-right: 15px
    }
}

.product-info__price .money strike {
    color: #678095;
    font-size: 12px;
    margin-left: 5px
}

@media (min-width:1024px) {
    .product-info__price .money strike {
        font-size: 14px
    }
}

.product-info__price span {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: bottom
}

@media (min-width:1440px) {
    .product-info__price span {
        font-size: 10px
    }
}

.product-notes {
    list-style: none;
    margin: 20px 0;
    padding: 0
}

.product-notes li {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2px;
    margin-bottom: 10px;
    text-transform: uppercase
}

@media (min-width:1440px) {
    .product-notes li {
        font-size: 12px
    }
}

.product-notes li i,
.product-notes li img,
.product-notes li span {
    vertical-align: middle
}

.product-notes li i,
.product-notes li img {
    margin-right: 10px
}

.product-notes li i {
    font-size: 16px
}

@media (min-width:1440px) {
    .product-notes li i {
        font-size: 20px
    }
}

.product-notes li img {
    border-radius: 2px;
    width: 16px
}

@media (min-width:1440px) {
    .product-notes li img {
        width: 20px
    }
}

.product-notes klarna-placement .container {
    background: none;
    padding: 0
}

.product-personalise {
    margin-top: 45px
}

@media (min-width:1024px) {
    .product-personalise {
        margin-top: 100px
    }
}

.product-personalise h2 {
    max-width: 600px
}

@media (min-width:1024px) {
    .product-personalise h2 {
        margin-bottom: 20px
    }
}

.product-personalise p {
    max-width: 600px
}

.product-personalise .product-icon-blocks h3 {
    font-size: 14px;
    margin-bottom: 0
}

.product-personalise-gallery {
    margin-top: 40px;
    position: relative
}

@media (min-width:1024px) {
    .product-personalise-gallery {
        margin-top: 64px
    }
}

.product-personalise-gallery .slick-list {
    overflow: visible
}

.product-personalise-gallery__slider {
    cursor: grab;
    overflow: hidden;
}

.product-personalise-gallery__slider div {
    height: 295px;
    margin-right: 20px;
    position: relative;
    width: 295px
}

@media (min-width:1024px) {
    .product-personalise-gallery__slider div {
        height: 552px;
        width: 717px;
    }
}

.product-playstation {
    background-color: #27449c;
    margin-top: 50px;
    padding: 30px 30px 40px
}

@media (min-width:1024px) {
    .product-playstation {
        margin-top: 100px;
        padding: 40px 80px 40px 50px
    }
}

.product-playstation img {
    margin-bottom: 10px;
    vertical-align: middle;
    width: 80px
}

@media (min-width:1024px) {
    .product-playstation img {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 30px;
        width: 100px
    }
}

.product-playstation div {
    vertical-align: middle
}

@media (min-width:1024px) {
    .product-playstation div {
        display: inline-block;
        width: calc(100% - 134px)
    }
}

.product-playstation h2 {
    letter-spacing: normal;
    margin-bottom: 15px
}

.product-playstation p {
    color: #ededed;
    font-size: 14px;
    margin-bottom: 0;
    max-width: 512px
}

.product-related {
    margin-top: 100px;
    position: relative
}

.product-related h2 {
    margin-bottom: 20px
}

.product-related .product-card {
    margin-right: 20px;
    max-width: 282px;
    overflow: hidden
}

@media (min-width:1024px) {
    .product-related .product-card {
        border-radius: 10px;
        max-width: 345px
    }
}

.product-related .product-card__image {
    height: 282px;
    width: 282px
}

@media (min-width:1024px) {
    .product-related .product-card__image {
        height: 319px;
        width: 345px
    }
}

.product-related .product-card__text {
    padding: 20px
}

.product-related .product-card h5 a {
    font-size: 12px
}

.product-related .product-card .money {
    font-size: 16px
}

.product-related__slider {
    margin-bottom: -9px
}

.product-side {
    background-color: #fff;
    padding: 15px 0 40px
}

@media (min-width:1024px) {
    .product-side {
        padding: 25px
    }
}

@media (min-width:1440px) {
    .product-side {
        padding: 40px
    }
}

@media (min-width:1024px) {
    .product-side.is-sticky {
        position: sticky;
        top: 154px
    }
}

.product-side h1 {
    margin-bottom: 15px
}

.product-side .breadcrumbs a,
.product-side .breadcrumbs span {
    font-size: 8px
}

@media (min-width:1440px) {
    .product-side .breadcrumbs a,
    .product-side .breadcrumbs span {
        font-size: 10px
    }
}

.product-side__logo {
    display: block;
    filter: brightness(0);
    margin: 10px 0 15px
}

@media (min-width:1024px) {
    .product-side__logo {
        margin-left: auto
    }
}

@media (min-width:1440px) {
    .product-side__logo {
        margin: -20px -20px 5px auto
    }
}

@media (min-width:1024px) and (max-height:900px) {
    .product-side h1 {
        margin-bottom: 5px
    }
    .product-info__price {
        margin-top: 15px
    }
    .product-variants a.is-text {
        padding: 10px !important
    }
    .product-notes li {
        margin-bottom: 0
    }
    .product-cart__action {
        height: 45px
    }
    .product-cart #product-quantity {
        height: 44px
    }
}

.product-sticky-cta {
    bottom: 0;
    left: 0;
    position: fixed;
    transform: translateY(100%);
    transition: all .3s ease;
    width: 100%;
    z-index: 9997
}

.product-sticky-cta.is-active {
    transform: translateY(0)
}

.product-technical {
    margin-top: 60px
}

@media (min-width:1024px) {
    .product-technical {
        margin-top: 100px
    }
    .product-technical .buttons {
        margin-right: -20px
    }
}

@media (max-width:1023px) {
    .product-technical .buttons {
        margin-bottom: 0
    }
}

.product-technical .btn {
    margin-right: 20px
}

@media (max-width:1023px) {
    .product-technical .btn {
        margin: 5px 0;
        width: 100%
    }
}

.product-technical ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0
}

@media (min-width:1024px) {
    .product-technical ul {
        margin-top: 50px
    }
}

.product-technical ul li {
    border-bottom: 1px solid #c2d1d9;
    padding: 15px 0 10px
}

.product-technical ul span,
.product-technical ul strong {
    display: inline-block;
    font-size: 10px;
    vertical-align: top
}

@media (min-width:768px) {
    .product-technical ul span,
    .product-technical ul strong {
        font-size: 14px
    }
}

.product-technical ul strong {
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    width: 35%
}

.product-technical ul span {
    color: #678095;
    text-align: right;
    width: 65%
}

.product-variants {
    margin: 20px 0
}

.product-variants h6 {
    font-weight: 700;
    margin-bottom: 15px
}

.product-variants a {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase
}

@media (min-width:1024px) {
    .product-variants a {
        font-size: 12px
    }
}

.product-variants a.is-text {
    background-color: #bcbec0;
    margin-bottom: 4px;
    padding: 5px 10px;
    text-align: center;
    transition: all .3s ease
}

@media (min-width:1024px) {
    .product-variants a.is-text {
        margin-bottom: 5px;
        margin-right: 5px;
        min-width: 130px
    }
}

.product-variants a.is-text:nth-of-type(3n) {
    margin-right: 0
}

.product-variants a.is-text:hover {
    background-color: #ef5329
}

.product-variants a.is-text.is-selected {
    background-color: #ef5329;
    border: 0
}

.product-variants a.is-colour {
    border-radius: 50%;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    width: 18px
}

@media (min-width:1440px) {
    .product-variants a.is-colour {
        height: 30px;
        margin-right: 14px;
        width: 30px
    }
}

.product-variants a.is-colour.is-selected:after {
    border: 1px solid #678095;
    border-radius: 50%;
    content: "";
    height: 24px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px
}

@media (min-width:1440px) {
    .product-variants a.is-colour.is-selected:after {
        height: 38px;
        width: 38px
    }
}

.product-variants a.is-colour.is-white {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2)
}

.product-variants a span {
    border-radius: 50%;
    display: inline-block;
    height: 18px;
    overflow: hidden;
    position: relative;
    width: 18px
}

@media (min-width:1440px) {
    .product-variants a span {
        height: 30px;
        width: 30px
    }
}

.product-variants a span span {
    border-radius: 0;
    bottom: -6px;
    position: absolute;
    right: -6px;
    transform: rotate(45deg)
}

@media (min-width:1440px) {
    .product-variants a span span {
        bottom: -10px;
        right: -10px
    }
}

.product-variants select {
    padding: 7px 10px
}

.product-variants__grid {
    margin-bottom: -10px
}

.reviews {
    overflow: hidden;
    padding: 60px 0;
    position: relative
}

@media (min-width:1024px) {
    .reviews {
        padding: 100px 0
    }
}

.reviews.is-overlap {
    padding: 0 0 30px
}

@media (min-width:1024px) {
    .reviews.is-overlap .reviews__all {
        position: absolute;
        right: 0;
        top: 15px
    }
}

.reviews:not(.is-product) iframe {
    height: 170px !important
}

.reviews .wrapper {
    position: relative
}

.reviews h2 {
    width: 70%
}

.reviews iframe {
    margin: 40px auto 0;
    max-width: 1540px;
    z-index: 1
}

.search-form {
    max-width: 240px;
    position: relative;
    width: 100%
}

.search-form input {
    border-radius: 20px;
    font-family: Pilat Wide, sans-serif;
    font-weight: 700;
    letter-spacing: .38px;
    padding: 11px 35px 11px 17px
}

.search-form input:focus,
.search-form input:hover {
    border-color: #4e5566
}

.search-form input::-moz-placeholder {
    color: #949494;
    font-weight: 400;
    opacity: 1
}

.search-form input:-ms-input-placeholder {
    color: #949494;
    font-weight: 400;
    opacity: 1
}

.search-form input::placeholder {
    color: #949494;
    font-weight: 400;
    opacity: 1
}

.search-form button {
    background-color: transparent;
    background-image: url(../icons/magnify.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 17px;
    cursor: pointer;
    height: 40px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
}

.socials {
    text-align: right;
}

.socials:hover a {
    opacity: .5;
}

.socials:hover a:hover {
    opacity: 1;
}

.socials a {
    display: inline-block;
    transition: all .3s ease;
    vertical-align: middle;
}

.socials a:not(:last-child) {
    margin-right: 15px;
}

.socials img {
    height: 15px;
}

@media (min-width:1024px) {
    .socials img {
        height: 20px;
    }
}

.text-image {
    margin: 40px 0;
    position: relative;
}

@media (min-width:1024px) {
    .text-image {
        margin: 110px 0;
    }
}

.text-image.is-flipped:before {
    display: none;
}

@media (min-width:1024px) {
    .text-image.is-flipped .column:first-of-type {
        order: 2;
    }
}

.text-image.is-flipped .text-image__text {
    padding-right: 0;
}

@media (min-width:1024px) {
    .text-image.is-flipped .text-image__text {
        padding-left: 50px;
    }
}

.text-image:before {
    right: 44px;
    top: -160px;
}

@media (max-width:1439px) {
    .text-image:before {
        display: none;
    }
}

.text-image .wrapper {
    position: relative;
}

@media (min-width:1024px) {
    .text-image h2 {
        margin-bottom: 30px;
    }
}

.text-image p {
    margin-bottom: 0;
    max-width: 600px;
}

@media (min-width:1024px) {
    .text-image__text {
        padding-right: 20px;
    }
}

.text-image__image {
    height: 215px;
    position: relative;
}

@media (min-width:768px) {
    .text-image__image {
        height: 350px;
    }
}

@media (max-width:1023px) {
    .text-image__image {
        margin-top: 40px;
    }
}

@media (min-width:1024px) {
    .text-image__image {
        height: 525px;
    }
}