@charset "UTF-8"; /*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
: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
}

.iti {
    display: inline-block;
    position: relative
}

.iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box
}

.iti__hide {
    display: none
}

.iti__v-hide {
    visibility: hidden
}

.iti input,.iti input[type=tel],.iti input[type=text] {
    margin-bottom: 0!important;
    margin-right: 0;
    margin-top: 0!important;
    padding-right: 36px;
    position: relative;
    z-index: 0
}

.iti__flag-container {
    bottom: 0;
    padding: 1px;
    position: absolute;
    right: 0;
    top: 0
}

.iti__selected-flag {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 0 6px 0 8px;
    position: relative;
    z-index: 1
}

.iti__arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
    height: 0;
    margin-left: 6px;
    width: 0
}

.iti__arrow--up {
    border-bottom: 4px solid #555;
    border-top: none
}

.iti__country-list {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 4px rgba(0,0,0,.2);
    list-style: none;
    margin: 0 0 0 -1px;
    max-height: 200px;
    overflow-y: scroll;
    padding: 0;
    position: absolute;
    text-align: left;
    white-space: nowrap;
    z-index: 2;
    -webkit-overflow-scrolling: touch
}

.iti__country-list--dropup {
    bottom: 100%;
    margin-bottom: -1px
}

@media (max-width: 500px) {
    .iti__country-list {
        white-space:normal
    }
}

.iti__flag-box {
    display: inline-block;
    width: 20px
}

.iti__divider {
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    padding-bottom: 5px
}

.iti__country {
    outline: none;
    padding: 5px 10px
}

.iti__dial-code {
    color: #999
}

.iti__country.iti__highlight {
    background-color: rgba(0,0,0,.05)
}

.iti__country-name,.iti__dial-code,.iti__flag-box {
    vertical-align: middle
}

.iti__country-name,.iti__flag-box {
    margin-right: 6px
}

.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text] {
    margin-left: 0;
    padding-left: 52px;
    padding-right: 6px
}

.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container {
    left: 0;
    right: auto
}

.iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0,0,0,.05)
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover {
    cursor: default
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag {
    background-color: transparent
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0,0,0,.05)
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px
}

.iti--container {
    left: -1000px;
    padding: 1px;
    position: absolute;
    top: -1000px;
    z-index: 1060
}

.iti--container:hover {
    cursor: pointer
}

.iti-mobile .iti--container {
    bottom: 30px;
    left: 30px;
    position: fixed;
    right: 30px;
    top: 30px
}

.iti-mobile .iti__country-list {
    max-height: 100%;
    width: 100%
}

.iti-mobile .iti__country {
    line-height: 1.5em;
    padding: 10px
}

.iti__flag {
    width: 20px
}

.iti__flag.iti__be {
    width: 18px
}

.iti__flag.iti__ch {
    width: 15px
}

.iti__flag.iti__mc {
    width: 19px
}

.iti__flag.iti__ne {
    width: 18px
}

.iti__flag.iti__np {
    width: 13px
}

.iti__flag.iti__va {
    width: 15px
}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution:192dpi) {
    .iti__flag {
        background-size:5652px 15px
    }
}

.iti__flag.iti__ac {
    background-position: 0 0;
    height: 10px
}

.iti__flag.iti__ad {
    background-position: -22px 0;
    height: 14px
}

.iti__flag.iti__ae {
    background-position: -44px 0;
    height: 10px
}

.iti__flag.iti__af {
    background-position: -66px 0;
    height: 14px
}

.iti__flag.iti__ag {
    background-position: -88px 0;
    height: 14px
}

.iti__flag.iti__ai {
    background-position: -110px 0;
    height: 10px
}

.iti__flag.iti__al {
    background-position: -132px 0;
    height: 15px
}

.iti__flag.iti__am {
    background-position: -154px 0;
    height: 10px
}

.iti__flag.iti__ao {
    background-position: -176px 0;
    height: 14px
}

.iti__flag.iti__aq {
    background-position: -198px 0;
    height: 14px
}

.iti__flag.iti__ar {
    background-position: -220px 0;
    height: 13px
}

.iti__flag.iti__as {
    background-position: -242px 0;
    height: 10px
}

.iti__flag.iti__at {
    background-position: -264px 0;
    height: 14px
}

.iti__flag.iti__au {
    background-position: -286px 0;
    height: 10px
}

.iti__flag.iti__aw {
    background-position: -308px 0;
    height: 14px
}

.iti__flag.iti__ax {
    background-position: -330px 0;
    height: 13px
}

.iti__flag.iti__az {
    background-position: -352px 0;
    height: 10px
}

.iti__flag.iti__ba {
    background-position: -374px 0;
    height: 10px
}

.iti__flag.iti__bb {
    background-position: -396px 0;
    height: 14px
}

.iti__flag.iti__bd {
    background-position: -418px 0;
    height: 12px
}

.iti__flag.iti__be {
    background-position: -440px 0;
    height: 15px
}

.iti__flag.iti__bf {
    background-position: -460px 0;
    height: 14px
}

.iti__flag.iti__bg {
    background-position: -482px 0;
    height: 12px
}

.iti__flag.iti__bh {
    background-position: -504px 0;
    height: 12px
}

.iti__flag.iti__bi {
    background-position: -526px 0;
    height: 12px
}

.iti__flag.iti__bj {
    background-position: -548px 0;
    height: 14px
}

.iti__flag.iti__bl {
    background-position: -570px 0;
    height: 14px
}

.iti__flag.iti__bm {
    background-position: -592px 0;
    height: 10px
}

.iti__flag.iti__bn {
    background-position: -614px 0;
    height: 10px
}

.iti__flag.iti__bo {
    background-position: -636px 0;
    height: 14px
}

.iti__flag.iti__bq {
    background-position: -658px 0;
    height: 14px
}

.iti__flag.iti__br {
    background-position: -680px 0;
    height: 14px
}

.iti__flag.iti__bs {
    background-position: -702px 0;
    height: 10px
}

.iti__flag.iti__bt {
    background-position: -724px 0;
    height: 14px
}

.iti__flag.iti__bv {
    background-position: -746px 0;
    height: 15px
}

.iti__flag.iti__bw {
    background-position: -768px 0;
    height: 14px
}

.iti__flag.iti__by {
    background-position: -790px 0;
    height: 10px
}

.iti__flag.iti__bz {
    background-position: -812px 0;
    height: 14px
}

.iti__flag.iti__ca {
    background-position: -834px 0;
    height: 10px
}

.iti__flag.iti__cc {
    background-position: -856px 0;
    height: 10px
}

.iti__flag.iti__cd {
    background-position: -878px 0;
    height: 15px
}

.iti__flag.iti__cf {
    background-position: -900px 0;
    height: 14px
}

.iti__flag.iti__cg {
    background-position: -922px 0;
    height: 14px
}

.iti__flag.iti__ch {
    background-position: -944px 0;
    height: 15px
}

.iti__flag.iti__ci {
    background-position: -961px 0;
    height: 14px
}

.iti__flag.iti__ck {
    background-position: -983px 0;
    height: 10px
}

.iti__flag.iti__cl {
    background-position: -1005px 0;
    height: 14px
}

.iti__flag.iti__cm {
    background-position: -1027px 0;
    height: 14px
}

.iti__flag.iti__cn {
    background-position: -1049px 0;
    height: 14px
}

.iti__flag.iti__co {
    background-position: -1071px 0;
    height: 14px
}

.iti__flag.iti__cp {
    background-position: -1093px 0;
    height: 14px
}

.iti__flag.iti__cr {
    background-position: -1115px 0;
    height: 12px
}

.iti__flag.iti__cu {
    background-position: -1137px 0;
    height: 10px
}

.iti__flag.iti__cv {
    background-position: -1159px 0;
    height: 12px
}

.iti__flag.iti__cw {
    background-position: -1181px 0;
    height: 14px
}

.iti__flag.iti__cx {
    background-position: -1203px 0;
    height: 10px
}

.iti__flag.iti__cy {
    background-position: -1225px 0;
    height: 14px
}

.iti__flag.iti__cz {
    background-position: -1247px 0;
    height: 14px
}

.iti__flag.iti__de {
    background-position: -1269px 0;
    height: 12px
}

.iti__flag.iti__dg {
    background-position: -1291px 0;
    height: 10px
}

.iti__flag.iti__dj {
    background-position: -1313px 0;
    height: 14px
}

.iti__flag.iti__dk {
    background-position: -1335px 0;
    height: 15px
}

.iti__flag.iti__dm {
    background-position: -1357px 0;
    height: 10px
}

.iti__flag.iti__do {
    background-position: -1379px 0;
    height: 14px
}

.iti__flag.iti__dz {
    background-position: -1401px 0;
    height: 14px
}

.iti__flag.iti__ea {
    background-position: -1423px 0;
    height: 14px
}

.iti__flag.iti__ec {
    background-position: -1445px 0;
    height: 14px
}

.iti__flag.iti__ee {
    background-position: -1467px 0;
    height: 13px
}

.iti__flag.iti__eg {
    background-position: -1489px 0;
    height: 14px
}

.iti__flag.iti__eh {
    background-position: -1511px 0;
    height: 10px
}

.iti__flag.iti__er {
    background-position: -1533px 0;
    height: 10px
}

.iti__flag.iti__es {
    background-position: -1555px 0;
    height: 14px
}

.iti__flag.iti__et {
    background-position: -1577px 0;
    height: 10px
}

.iti__flag.iti__eu {
    background-position: -1599px 0;
    height: 14px
}

.iti__flag.iti__fi {
    background-position: -1621px 0;
    height: 12px
}

.iti__flag.iti__fj {
    background-position: -1643px 0;
    height: 10px
}

.iti__flag.iti__fk {
    background-position: -1665px 0;
    height: 10px
}

.iti__flag.iti__fm {
    background-position: -1687px 0;
    height: 11px
}

.iti__flag.iti__fo {
    background-position: -1709px 0;
    height: 15px
}

.iti__flag.iti__fr {
    background-position: -1731px 0;
    height: 14px
}

.iti__flag.iti__ga {
    background-position: -1753px 0;
    height: 15px
}

.iti__flag.iti__gb {
    background-position: -1775px 0;
    height: 10px
}

.iti__flag.iti__gd {
    background-position: -1797px 0;
    height: 12px
}

.iti__flag.iti__ge {
    background-position: -1819px 0;
    height: 14px
}

.iti__flag.iti__gf {
    background-position: -1841px 0;
    height: 14px
}

.iti__flag.iti__gg {
    background-position: -1863px 0;
    height: 14px
}

.iti__flag.iti__gh {
    background-position: -1885px 0;
    height: 14px
}

.iti__flag.iti__gi {
    background-position: -1907px 0;
    height: 10px
}

.iti__flag.iti__gl {
    background-position: -1929px 0;
    height: 14px
}

.iti__flag.iti__gm {
    background-position: -1951px 0;
    height: 14px
}

.iti__flag.iti__gn {
    background-position: -1973px 0;
    height: 14px
}

.iti__flag.iti__gp {
    background-position: -1995px 0;
    height: 14px
}

.iti__flag.iti__gq {
    background-position: -2017px 0;
    height: 14px
}

.iti__flag.iti__gr {
    background-position: -2039px 0;
    height: 14px
}

.iti__flag.iti__gs {
    background-position: -2061px 0;
    height: 10px
}

.iti__flag.iti__gt {
    background-position: -2083px 0;
    height: 13px
}

.iti__flag.iti__gu {
    background-position: -2105px 0;
    height: 11px
}

.iti__flag.iti__gw {
    background-position: -2127px 0;
    height: 10px
}

.iti__flag.iti__gy {
    background-position: -2149px 0;
    height: 12px
}

.iti__flag.iti__hk {
    background-position: -2171px 0;
    height: 14px
}

.iti__flag.iti__hm {
    background-position: -2193px 0;
    height: 10px
}

.iti__flag.iti__hn {
    background-position: -2215px 0;
    height: 10px
}

.iti__flag.iti__hr {
    background-position: -2237px 0;
    height: 10px
}

.iti__flag.iti__ht {
    background-position: -2259px 0;
    height: 12px
}

.iti__flag.iti__hu {
    background-position: -2281px 0;
    height: 10px
}

.iti__flag.iti__ic {
    background-position: -2303px 0;
    height: 14px
}

.iti__flag.iti__id {
    background-position: -2325px 0;
    height: 14px
}

.iti__flag.iti__ie {
    background-position: -2347px 0;
    height: 10px
}

.iti__flag.iti__il {
    background-position: -2369px 0;
    height: 15px
}

.iti__flag.iti__im {
    background-position: -2391px 0;
    height: 10px
}

.iti__flag.iti__in {
    background-position: -2413px 0;
    height: 14px
}

.iti__flag.iti__io {
    background-position: -2435px 0;
    height: 10px
}

.iti__flag.iti__iq {
    background-position: -2457px 0;
    height: 14px
}

.iti__flag.iti__ir {
    background-position: -2479px 0;
    height: 12px
}

.iti__flag.iti__is {
    background-position: -2501px 0;
    height: 15px
}

.iti__flag.iti__it {
    background-position: -2523px 0;
    height: 14px
}

.iti__flag.iti__je {
    background-position: -2545px 0;
    height: 12px
}

.iti__flag.iti__jm {
    background-position: -2567px 0;
    height: 10px
}

.iti__flag.iti__jo {
    background-position: -2589px 0;
    height: 10px
}

.iti__flag.iti__jp {
    background-position: -2611px 0;
    height: 14px
}

.iti__flag.iti__ke {
    background-position: -2633px 0;
    height: 14px
}

.iti__flag.iti__kg {
    background-position: -2655px 0;
    height: 12px
}

.iti__flag.iti__kh {
    background-position: -2677px 0;
    height: 13px
}

.iti__flag.iti__ki {
    background-position: -2699px 0;
    height: 10px
}

.iti__flag.iti__km {
    background-position: -2721px 0;
    height: 12px
}

.iti__flag.iti__kn {
    background-position: -2743px 0;
    height: 14px
}

.iti__flag.iti__kp {
    background-position: -2765px 0;
    height: 10px
}

.iti__flag.iti__kr {
    background-position: -2787px 0;
    height: 14px
}

.iti__flag.iti__kw {
    background-position: -2809px 0;
    height: 10px
}

.iti__flag.iti__ky {
    background-position: -2831px 0;
    height: 10px
}

.iti__flag.iti__kz {
    background-position: -2853px 0;
    height: 10px
}

.iti__flag.iti__la {
    background-position: -2875px 0;
    height: 14px
}

.iti__flag.iti__lb {
    background-position: -2897px 0;
    height: 14px
}

.iti__flag.iti__lc {
    background-position: -2919px 0;
    height: 10px
}

.iti__flag.iti__li {
    background-position: -2941px 0;
    height: 12px
}

.iti__flag.iti__lk {
    background-position: -2963px 0;
    height: 10px
}

.iti__flag.iti__lr {
    background-position: -2985px 0;
    height: 11px
}

.iti__flag.iti__ls {
    background-position: -3007px 0;
    height: 14px
}

.iti__flag.iti__lt {
    background-position: -3029px 0;
    height: 12px
}

.iti__flag.iti__lu {
    background-position: -3051px 0;
    height: 12px
}

.iti__flag.iti__lv {
    background-position: -3073px 0;
    height: 10px
}

.iti__flag.iti__ly {
    background-position: -3095px 0;
    height: 10px
}

.iti__flag.iti__ma {
    background-position: -3117px 0;
    height: 14px
}

.iti__flag.iti__mc {
    background-position: -3139px 0;
    height: 15px
}

.iti__flag.iti__md {
    background-position: -3160px 0;
    height: 10px
}

.iti__flag.iti__me {
    background-position: -3182px 0;
    height: 10px
}

.iti__flag.iti__mf {
    background-position: -3204px 0;
    height: 14px
}

.iti__flag.iti__mg {
    background-position: -3226px 0;
    height: 14px
}

.iti__flag.iti__mh {
    background-position: -3248px 0;
    height: 11px
}

.iti__flag.iti__mk {
    background-position: -3270px 0;
    height: 10px
}

.iti__flag.iti__ml {
    background-position: -3292px 0;
    height: 14px
}

.iti__flag.iti__mm {
    background-position: -3314px 0;
    height: 14px
}

.iti__flag.iti__mn {
    background-position: -3336px 0;
    height: 10px
}

.iti__flag.iti__mo {
    background-position: -3358px 0;
    height: 14px
}

.iti__flag.iti__mp {
    background-position: -3380px 0;
    height: 10px
}

.iti__flag.iti__mq {
    background-position: -3402px 0;
    height: 14px
}

.iti__flag.iti__mr {
    background-position: -3424px 0;
    height: 14px
}

.iti__flag.iti__ms {
    background-position: -3446px 0;
    height: 10px
}

.iti__flag.iti__mt {
    background-position: -3468px 0;
    height: 14px
}

.iti__flag.iti__mu {
    background-position: -3490px 0;
    height: 14px
}

.iti__flag.iti__mv {
    background-position: -3512px 0;
    height: 14px
}

.iti__flag.iti__mw {
    background-position: -3534px 0;
    height: 14px
}

.iti__flag.iti__mx {
    background-position: -3556px 0;
    height: 12px
}

.iti__flag.iti__my {
    background-position: -3578px 0;
    height: 10px
}

.iti__flag.iti__mz {
    background-position: -3600px 0;
    height: 14px
}

.iti__flag.iti__na {
    background-position: -3622px 0;
    height: 14px
}

.iti__flag.iti__nc {
    background-position: -3644px 0;
    height: 10px
}

.iti__flag.iti__ne {
    background-position: -3666px 0;
    height: 15px
}

.iti__flag.iti__nf {
    background-position: -3686px 0;
    height: 10px
}

.iti__flag.iti__ng {
    background-position: -3708px 0;
    height: 10px
}

.iti__flag.iti__ni {
    background-position: -3730px 0;
    height: 12px
}

.iti__flag.iti__nl {
    background-position: -3752px 0;
    height: 14px
}

.iti__flag.iti__no {
    background-position: -3774px 0;
    height: 15px
}

.iti__flag.iti__np {
    background-position: -3796px 0;
    height: 15px
}

.iti__flag.iti__nr {
    background-position: -3811px 0;
    height: 10px
}

.iti__flag.iti__nu {
    background-position: -3833px 0;
    height: 10px
}

.iti__flag.iti__nz {
    background-position: -3855px 0;
    height: 10px
}

.iti__flag.iti__om {
    background-position: -3877px 0;
    height: 10px
}

.iti__flag.iti__pa {
    background-position: -3899px 0;
    height: 14px
}

.iti__flag.iti__pe {
    background-position: -3921px 0;
    height: 14px
}

.iti__flag.iti__pf {
    background-position: -3943px 0;
    height: 14px
}

.iti__flag.iti__pg {
    background-position: -3965px 0;
    height: 15px
}

.iti__flag.iti__ph {
    background-position: -3987px 0;
    height: 10px
}

.iti__flag.iti__pk {
    background-position: -4009px 0;
    height: 14px
}

.iti__flag.iti__pl {
    background-position: -4031px 0;
    height: 13px
}

.iti__flag.iti__pm {
    background-position: -4053px 0;
    height: 14px
}

.iti__flag.iti__pn {
    background-position: -4075px 0;
    height: 10px
}

.iti__flag.iti__pr {
    background-position: -4097px 0;
    height: 14px
}

.iti__flag.iti__ps {
    background-position: -4119px 0;
    height: 10px
}

.iti__flag.iti__pt {
    background-position: -4141px 0;
    height: 14px
}

.iti__flag.iti__pw {
    background-position: -4163px 0;
    height: 13px
}

.iti__flag.iti__py {
    background-position: -4185px 0;
    height: 11px
}

.iti__flag.iti__qa {
    background-position: -4207px 0;
    height: 8px
}

.iti__flag.iti__re {
    background-position: -4229px 0;
    height: 14px
}

.iti__flag.iti__ro {
    background-position: -4251px 0;
    height: 14px
}

.iti__flag.iti__rs {
    background-position: -4273px 0;
    height: 14px
}

.iti__flag.iti__ru {
    background-position: -4295px 0;
    height: 14px
}

.iti__flag.iti__rw {
    background-position: -4317px 0;
    height: 14px
}

.iti__flag.iti__sa {
    background-position: -4339px 0;
    height: 14px
}

.iti__flag.iti__sb {
    background-position: -4361px 0;
    height: 10px
}

.iti__flag.iti__sc {
    background-position: -4383px 0;
    height: 10px
}

.iti__flag.iti__sd {
    background-position: -4405px 0;
    height: 10px
}

.iti__flag.iti__se {
    background-position: -4427px 0;
    height: 13px
}

.iti__flag.iti__sg {
    background-position: -4449px 0;
    height: 14px
}

.iti__flag.iti__sh {
    background-position: -4471px 0;
    height: 10px
}

.iti__flag.iti__si {
    background-position: -4493px 0;
    height: 10px
}

.iti__flag.iti__sj {
    background-position: -4515px 0;
    height: 15px
}

.iti__flag.iti__sk {
    background-position: -4537px 0;
    height: 14px
}

.iti__flag.iti__sl {
    background-position: -4559px 0;
    height: 14px
}

.iti__flag.iti__sm {
    background-position: -4581px 0;
    height: 15px
}

.iti__flag.iti__sn {
    background-position: -4603px 0;
    height: 14px
}

.iti__flag.iti__so {
    background-position: -4625px 0;
    height: 14px
}

.iti__flag.iti__sr {
    background-position: -4647px 0;
    height: 14px
}

.iti__flag.iti__ss {
    background-position: -4669px 0;
    height: 10px
}

.iti__flag.iti__st {
    background-position: -4691px 0;
    height: 10px
}

.iti__flag.iti__sv {
    background-position: -4713px 0;
    height: 12px
}

.iti__flag.iti__sx {
    background-position: -4735px 0;
    height: 14px
}

.iti__flag.iti__sy {
    background-position: -4757px 0;
    height: 14px
}

.iti__flag.iti__sz {
    background-position: -4779px 0;
    height: 14px
}

.iti__flag.iti__ta {
    background-position: -4801px 0;
    height: 10px
}

.iti__flag.iti__tc {
    background-position: -4823px 0;
    height: 10px
}

.iti__flag.iti__td {
    background-position: -4845px 0;
    height: 14px
}

.iti__flag.iti__tf {
    background-position: -4867px 0;
    height: 14px
}

.iti__flag.iti__tg {
    background-position: -4889px 0;
    height: 13px
}

.iti__flag.iti__th {
    background-position: -4911px 0;
    height: 14px
}

.iti__flag.iti__tj {
    background-position: -4933px 0;
    height: 10px
}

.iti__flag.iti__tk {
    background-position: -4955px 0;
    height: 10px
}

.iti__flag.iti__tl {
    background-position: -4977px 0;
    height: 10px
}

.iti__flag.iti__tm {
    background-position: -4999px 0;
    height: 14px
}

.iti__flag.iti__tn {
    background-position: -5021px 0;
    height: 14px
}

.iti__flag.iti__to {
    background-position: -5043px 0;
    height: 10px
}

.iti__flag.iti__tr {
    background-position: -5065px 0;
    height: 14px
}

.iti__flag.iti__tt {
    background-position: -5087px 0;
    height: 12px
}

.iti__flag.iti__tv {
    background-position: -5109px 0;
    height: 10px
}

.iti__flag.iti__tw {
    background-position: -5131px 0;
    height: 14px
}

.iti__flag.iti__tz {
    background-position: -5153px 0;
    height: 14px
}

.iti__flag.iti__ua {
    background-position: -5175px 0;
    height: 14px
}

.iti__flag.iti__ug {
    background-position: -5197px 0;
    height: 14px
}

.iti__flag.iti__um {
    background-position: -5219px 0;
    height: 11px
}

.iti__flag.iti__un {
    background-position: -5241px 0;
    height: 14px
}

.iti__flag.iti__us {
    background-position: -5263px 0;
    height: 11px
}

.iti__flag.iti__uy {
    background-position: -5285px 0;
    height: 14px
}

.iti__flag.iti__uz {
    background-position: -5307px 0;
    height: 10px
}

.iti__flag.iti__va {
    background-position: -5329px 0;
    height: 15px
}

.iti__flag.iti__vc {
    background-position: -5346px 0;
    height: 14px
}

.iti__flag.iti__ve {
    background-position: -5368px 0;
    height: 14px
}

.iti__flag.iti__vg {
    background-position: -5390px 0;
    height: 10px
}

.iti__flag.iti__vi {
    background-position: -5412px 0;
    height: 14px
}

.iti__flag.iti__vn {
    background-position: -5434px 0;
    height: 14px
}

.iti__flag.iti__vu {
    background-position: -5456px 0;
    height: 12px
}

.iti__flag.iti__wf {
    background-position: -5478px 0;
    height: 14px
}

.iti__flag.iti__ws {
    background-position: -5500px 0;
    height: 10px
}

.iti__flag.iti__xk {
    background-position: -5522px 0;
    height: 15px
}

.iti__flag.iti__ye {
    background-position: -5544px 0;
    height: 14px
}

.iti__flag.iti__yt {
    background-position: -5566px 0;
    height: 14px
}

.iti__flag.iti__za {
    background-position: -5588px 0;
    height: 14px
}

.iti__flag.iti__zm {
    background-position: -5610px 0;
    height: 14px
}

.iti__flag.iti__zw {
    background-position: -5632px 0;
    height: 10px
}

.iti__flag {
    background-color: #dbdbdb;
    background-image: url(../images/flags.png);
    background-position: 20px 0;
    background-repeat: no-repeat;
    box-shadow: 0 0 1px 0 #888;
    height: 15px
}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution:192dpi) {
    .iti__flag {
        background-image:url(../img/flags@2x.png)
    }
}

.iti__flag.iti__np {
    background-color: transparent
}

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute!important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47,0,.74,.71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22,.61,.36,1)
}

.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease,visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s,visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform,opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5,0,.14,1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform,opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,.fancybox-video {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30,30,30,.6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,.fancybox-button:link,.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: none
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right)
}

.fancybox-caption {
    background: linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))
    }
}

.fancybox-caption--separate {
    margin-top: -50px
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all
}

.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid;
    border-color: #888 #888 #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@keyframes fancybox-rotate {
    to {
        transform: rotate(1turn)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0,0,.25,1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%,0,0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%,0,0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19,1,.22,1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5,1.5,1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5,.5,.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-1turn);
    transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(1turn);
    transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0,0,0) translate3d(-100%,0,0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0,0,0) translate3d(100%,0,0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%,0,0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%,0,0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translateZ(0) scale(1)
}

@media (max-height: 576px) {
    .fancybox-slide {
        padding-left:6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left:max(12px,env(safe-area-inset-left));
            padding-right: max(12px,env(safe-area-inset-right))
        }
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0,0,0,.1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25,.46,.45,.94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width: 576px) {
    .fancybox-thumbs {
        width:110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-weight: 1 999;
    src: url(../fonts/Montserrat-VariableFont_wght.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: NunitoSans;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/NunitoSans-Regular.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: NunitoSans;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/NunitoSans-Bold.woff2) format("woff2")
}

.tooltip2 {
    position: relative
}

.tooltip-item:after {
    bottom: 100%;
    content: "";
    height: 20px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 360px
}

.tooltip2:hover .tooltip-item:after {
    pointer-events: auto
}

.tooltip-content {
    background: #2a3035;
    border-radius: 3px;
    bottom: 100%;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.53);
    box-shadow: 0 0 15px rgba(0,0,0,.53);
    cursor: default;
    left: 50%;
    margin: 0 0 10px -180px;
    opacity: 0;
    padding: 10px 15px;
    pointer-events: none;
    position: absolute;
    text-align: left;
    width: 360px;
    z-index: 9999
}

.tooltip-content.position-down:after {
    border-bottom-color: #2a3035;
    border-top-color: transparent;
    top: -20px
}

.tooltip-content.position-right:after {
    border-right-color: #2a3035;
    border-top-color: transparent;
    bottom: auto;
    left: -10px;
    margin-top: -10px;
    top: 50%
}

.tooltip-content.position-left:after {
    border-left-color: #2a3035;
    border-top-color: transparent;
    bottom: auto;
    left: auto;
    margin-top: -10px;
    right: -20px;
    top: 50%
}

.tooltip-effect-1 .tooltip-content {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
    -webkit-transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,transform .3s;
    transition: opacity .3s,transform .3s,-webkit-transform .3s
}

.tooltip-effect-2 .tooltip-content {
    -webkit-transform: perspective(1000px) rotateX(45deg);
    transform: perspective(1000px) rotateX(45deg);
    -webkit-transform-origin: 50% calc(100% + 10px);
    transform-origin: 50% calc(100% + 10px);
    -webkit-transition: opacity .2s,-webkit-transform .2s;
    transition: opacity .2s,-webkit-transform .2s;
    transition: opacity .2s,transform .2s;
    transition: opacity .2s,transform .2s,-webkit-transform .2s
}

.tooltip-effect-2 .tooltip-content.position-down {
    bottom: inherit;
    margin-bottom: 0;
    margin-top: 0;
    -webkit-transform-origin: 50% 10px;
    transform-origin: 50% 10px
}

.tooltip-effect-2 .tooltip-content.position-right {
    bottom: 50%;
    left: 130%;
    margin-bottom: 0;
    margin-left: 0;
    width: auto
}

.tooltip-effect-2 .tooltip-content.position-right .tooltip-text {
    white-space: nowrap
}

.tooltip-effect-2 .tooltip-content.position-left {
    bottom: 50%;
    left: auto;
    margin-bottom: 0;
    margin-left: 0;
    right: 130%;
    width: auto
}

.tooltip-effect-2 .tooltip-content.position-left .tooltip-text {
    white-space: nowrap
}

.tooltip-effect-2 .tooltip-content.tooltip-status-off {
    display: none!important
}

.tooltip-effect-3 .tooltip-content {
    -webkit-transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
    transform: translate3d(0,10px,0) rotate3d(1,1,0,25deg);
    -webkit-transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,transform .3s;
    transition: opacity .3s,transform .3s,-webkit-transform .3s
}

.tooltip-effect-4 .tooltip-content {
    -webkit-transform: scale3d(.7,.3,1);
    transform: scale3d(.7,.3,1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%
}

.tooltip-effect-4 .tooltip-content,.tooltip-effect-5 .tooltip-content {
    -webkit-transition: opacity .2s,-webkit-transform .2s;
    transition: opacity .2s,-webkit-transform .2s;
    transition: opacity .2s,transform .2s;
    transition: opacity .2s,transform .2s,-webkit-transform .2s
}

.tooltip-effect-5 .tooltip-content {
    margin-left: -90px;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    -webkit-transform-origin: 50% calc(100% + 6em);
    transform-origin: 50% calc(100% + 6em);
    -webkit-transition-timing-function: ease,cubic-bezier(.17,.67,.4,1.39);
    transition-timing-function: ease,cubic-bezier(.17,.67,.4,1.39);
    width: 180px
}

.tooltip2.open .tooltip-content,.tooltip2:hover .tooltip-content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateZ(0) rotate3d(0,0,0,0);
    transform: translateZ(0) rotate3d(0,0,0,0)
}

.tooltip2.tooltip-effect-2:hover .tooltip-content {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg)
}

.tooltip-content:after {
    border: 10px solid transparent;
    border-top-color: #2a3035;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -10px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    width: 0
}

.tooltip-content .img-wrap {
    margin-right: 15px
}

.tooltip-content .img-wrap img {
    display: block;
    max-width: 100%
}

.img-wrap,.tooltip-text {
    display: block;
    vertical-align: middle
}

.tooltip-text {
    color: #fff;
    font-size: 12px;
    line-height: 16px
}

.tooltip-effect-5 .tooltip-text {
    padding: 1.4em
}

.fancybox-bg {
    background-color: #131e2a
}

.fancybox-close-small {
    height: 14px;
    right: 40px;
    top: 35px;
    -webkit-transition: .5s ease-in;
    transition: .5s ease-in;
    width: 14px
}

.fancybox-close-small:after {
    border-radius: 0;
    color: #334555;
    font-size: 33px;
    height: 14px;
    right: 2px;
    top: -7px;
    width: 14px
}

@media screen and (max-width: 500px) {
    .fancybox-close-small:after {
        font-size:28px
    }
}

.fancybox-close-small:focus:after {
    outline: none
}

.fancybox-close-small:hover {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fancybox-close-small:hover:after {
    background: transparent;
    color: #334555
}

@media screen and (max-width: 840px) {
    .fancybox-close-small {
        right:21px;
        top: 20px
    }
}

@media screen and (max-width: 500px) {
    .fancybox-close-small {
        right:11px;
        top: 10px
    }
}

.fancybox-error {
    background-color: rgba(46,46,54,.6);
    border: 1px solid #33373c;
    color: #fff;
    padding: 35px
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    word-break: normal
}

*,:after,:before {
    background-repeat: no-repeat;
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

:after,:before {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    margin: 0;
    padding: 0
}

hr {
    color: inherit;
    height: 0;
    overflow: visible
}

details,main {
    display: block
}

summary {
    display: list-item
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

a {
    background-color: transparent
}

a:active,a:hover {
    outline-width: 0
}

code,kbd,pre,samp {
    font-family: monospace,monospace
}

pre {
    font-size: 1em
}

b,strong {
    font-weight: bolder
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

iframe {
    border-style: none
}

input {
    border-radius: 0
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,input,optgroup,select,textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

button,select {
    text-transform: none
}

[role=button],[type=button],[type=reset],[type=submit],button {
    cursor: pointer
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=reset],[type=submit],button,html [type=button] {
    -webkit-appearance: button
}

button,input,select,textarea {
    background-color: transparent;
    border-style: none
}

a:focus,button:focus,input:focus,select:focus,textarea:focus {
    outline-width: 0
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    color: inherit;
    font: inherit
}

[disabled] {
    cursor: default
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled=true] {
    cursor: default
}

.user-avatar {
    --user-avatar-size: 50px;
    height: var(--user-avatar-size);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: var(--user-avatar-size)
}

.user-avatar__img-wrap {
    border-radius: 50%;
    height: 100%;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%
}

.user-avatar__img {
    border-radius: 50%;
    display: block;
    max-width: 100%
}

.user-avatar__profile-level-icon {
    display: -webkit-box;
    display: flex;
    position: absolute;
    right: 6%;
    top: 6%;
    z-index: 1;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border-radius: 50%;
    height: 20%;
    justify-content: center;
    width: 20%
}

.user-avatar__profile-level-icon svg {
    display: block;
    height: 100%;
    width: 100%
}

.user-avatar .tooltip-content {
    display: none
}

.user-avatar .profile-level {
    --profile-level-size: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 1
}

.user-avatar .tooltip-content .tooltip-text {
    padding: 5px 10px
}

.user-avatar .tooltip-content.position-down {
    -webkit-transform: translate(-50%,calc(100% + 5px));
    transform: translate(-50%,calc(100% + 5px))
}

.user-avatar[class*="--level-"] .user-avatar__img-wrap {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%
}

.user-avatar[class*="--level-"]:not(.user-avatar--level-4):not(.user-avatar--level-5) .user-avatar__img-wrap:not(.user-avatar__img-wrap--demo) {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M97.993 38.7357C90.7572 35.6753 85.6801 28.5106 85.6801 20.16C85.6801 18.5348 85.8724 16.9544 86.2355 15.4405C79.2214 12.0073 71.3358 10.08 63.0001 10.08C33.7732 10.08 10.0801 33.7731 10.0801 63C10.0801 92.2269 33.7732 115.92 63.0001 115.92C92.227 115.92 115.92 92.2269 115.92 63C115.92 54.6643 113.993 46.7787 110.56 39.7646C109.046 40.1277 107.465 40.32 105.84 40.32M105.84 40.32C103.057 40.32 100.405 39.7559 97.993 38.7357Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M97.993 38.7357C90.7572 35.6753 85.6801 28.5106 85.6801 20.16C85.6801 18.5348 85.8724 16.9544 86.2355 15.4405C79.2214 12.0073 71.3358 10.08 63.0001 10.08C33.7732 10.08 10.0801 33.7731 10.0801 63C10.0801 92.2269 33.7732 115.92 63.0001 115.92C92.227 115.92 115.92 92.2269 115.92 63C115.92 54.6643 113.993 46.7787 110.56 39.7646C109.046 40.1277 107.465 40.32 105.84 40.32M105.84 40.32C103.057 40.32 100.405 39.7559 97.993 38.7357Z" fill="white"/> </svg>')
}

.user-avatar[class*="--level-"]:not(.user-avatar--level-4):not(.user-avatar--level-5) .user-avatar__img-wrap--with-status:not(.user-avatar__img-wrap--demo) {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M97.993 38.7357C90.7572 35.6753 85.6801 28.5106 85.6801 20.16C85.6801 18.5348 85.8724 16.9544 86.2355 15.4405C79.2214 12.0073 71.3358 10.08 63.0001 10.08C33.7732 10.08 10.0801 33.7731 10.0801 63C10.0801 92.2269 33.7732 115.92 63.0001 115.92C71.3358 115.92 79.2214 113.993 86.2356 110.559C85.8725 109.046 85.6802 107.465 85.6802 105.84C85.6802 94.706 94.7061 85.68 105.84 85.68C107.465 85.68 109.046 85.8723 110.56 86.2354C113.993 79.2213 115.92 71.3357 115.92 63C115.92 54.6643 113.993 46.7787 110.56 39.7646C109.046 40.1277 107.465 40.32 105.84 40.32M105.84 40.32C103.057 40.32 100.405 39.7559 97.993 38.7357Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M97.993 38.7357C90.7572 35.6753 85.6801 28.5106 85.6801 20.16C85.6801 18.5348 85.8724 16.9544 86.2355 15.4405C79.2214 12.0073 71.3358 10.08 63.0001 10.08C33.7732 10.08 10.0801 33.7731 10.0801 63C10.0801 92.2269 33.7732 115.92 63.0001 115.92C71.3358 115.92 79.2214 113.993 86.2356 110.559C85.8725 109.046 85.6802 107.465 85.6802 105.84C85.6802 94.706 94.7061 85.68 105.84 85.68C107.465 85.68 109.046 85.8723 110.56 86.2354C113.993 79.2213 115.92 71.3357 115.92 63C115.92 54.6643 113.993 46.7787 110.56 39.7646C109.046 40.1277 107.465 40.32 105.84 40.32M105.84 40.32C103.057 40.32 100.405 39.7559 97.993 38.7357Z" fill="white"/> </svg>')
}

.user-avatar[class*="--level-"]:not(.user-avatar--level-4):not(.user-avatar--level-5) .user-avatar__img-wrap--with-status+.profile-level .profile-level__icon-group--status {
    visibility: hidden
}

.user-avatar--level-0,.user-avatar--level-1 {
    color: #32ac41
}

.user-avatar--level-2 {
    color: #225aac
}

.user-avatar--level-3 {
    color: #e6a22d
}

.user-avatar--level-4 .user-avatar__img-wrap {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M72.7991 12.361C66.6102 9.31969 59.3899 9.31969 53.2011 12.361L41.0541 18.3303L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4339 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.338 39.791C107.823 32.9853 103.321 27.2576 97.1193 24.2444L84.9461 18.3303L72.7991 12.361Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M72.7991 12.361C66.6102 9.31969 59.3899 9.31969 53.2011 12.361L41.0541 18.3303L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4339 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.338 39.791C107.823 32.9853 103.321 27.2576 97.1193 24.2444L84.9461 18.3303L72.7991 12.361Z" fill="white"/> </svg>')
}

.user-avatar--level-4 .user-avatar__img-wrap--with-status {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M53.2011 12.361C59.3899 9.31969 66.6102 9.31969 72.7991 12.361L84.9461 18.3303L97.1193 24.2444C103.321 27.2576 107.823 32.9853 109.338 39.791L112.312 53.1487L115.345 66.4928C116.89 73.2915 115.283 80.4338 110.984 85.8791L110.68 86.2647C109.129 85.8826 107.508 85.68 105.84 85.68C94.7059 85.68 85.6799 94.7059 85.6799 105.84C85.6799 108.459 86.1793 110.961 87.0881 113.257C83.8668 114.992 80.2367 115.928 76.4968 115.92L63.0001 115.889L49.5034 115.92C42.6269 115.936 36.1216 112.757 31.8462 107.292L23.4547 96.5666L15.0161 85.8791C10.7167 80.4339 9.11001 73.2915 10.6551 66.4928L13.6878 53.1487L16.6617 39.791C18.1769 32.9853 22.6787 27.2576 28.8809 24.2444L41.0541 18.3303L53.2011 12.361Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M53.2011 12.361C59.3899 9.31969 66.6102 9.31969 72.7991 12.361L84.9461 18.3303L97.1193 24.2444C103.321 27.2576 107.823 32.9853 109.338 39.791L112.312 53.1487L115.345 66.4928C116.89 73.2915 115.283 80.4338 110.984 85.8791L110.68 86.2647C109.129 85.8826 107.508 85.68 105.84 85.68C94.7059 85.68 85.6799 94.7059 85.6799 105.84C85.6799 108.459 86.1793 110.961 87.0881 113.257C83.8668 114.992 80.2367 115.928 76.4968 115.92L63.0001 115.889L49.5034 115.92C42.6269 115.936 36.1216 112.757 31.8462 107.292L23.4547 96.5666L15.0161 85.8791C10.7167 80.4339 9.11001 73.2915 10.6551 66.4928L13.6878 53.1487L16.6617 39.791C18.1769 32.9853 22.6787 27.2576 28.8809 24.2444L41.0541 18.3303L53.2011 12.361Z" fill="white"/> </svg>')
}

.user-avatar--level-4 .user-avatar__img-wrap--notify {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M85.7312 18.7117L84.9461 18.3303L72.7991 12.361C66.6102 9.31969 59.3899 9.31969 53.2011 12.361L41.0541 18.3303L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4339 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.387 40.009C108.235 40.2134 107.05 40.32 105.84 40.32C94.7059 40.32 85.6799 31.2941 85.6799 20.16C85.6799 19.673 85.6972 19.19 85.7312 18.7117Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M85.7312 18.7117L84.9461 18.3303L72.7991 12.361C66.6102 9.31969 59.3899 9.31969 53.2011 12.361L41.0541 18.3303L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4339 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.387 40.009C108.235 40.2134 107.05 40.32 105.84 40.32C94.7059 40.32 85.6799 31.2941 85.6799 20.16C85.6799 19.673 85.6972 19.19 85.7312 18.7117Z" fill="white"/> </svg>')
}

.user-avatar--level-5 .user-avatar__img-wrap {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.841 15.3301C75.968 21.1763 69.9539 25.2 63.0001 25.2C56.0463 25.2 50.0322 21.1763 47.1592 15.3301L41.0541 18.3302L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4338 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.338 39.791C107.823 32.9853 103.321 27.2576 97.1193 24.2444L84.9461 18.3302L78.841 15.3301Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.841 15.3301C75.968 21.1763 69.9539 25.2 63.0001 25.2C56.0463 25.2 50.0322 21.1763 47.1592 15.3301L41.0541 18.3302L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4338 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.338 39.791C107.823 32.9853 103.321 27.2576 97.1193 24.2444L84.9461 18.3302L78.841 15.3301Z" fill="white"/> </svg>')
}

.user-avatar--level-5 .user-avatar__img-wrap--with-status {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.841 15.3301C75.968 21.1763 69.9539 25.2 63.0001 25.2C56.0463 25.2 50.0322 21.1763 47.1592 15.3301L41.0541 18.3302L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4338 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C80.2367 115.928 83.8668 114.992 87.0881 113.257C86.1793 110.961 85.6799 108.459 85.6799 105.84C85.6799 94.7059 94.7059 85.68 105.84 85.68C107.508 85.68 109.129 85.8826 110.68 86.2647L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.338 39.791C107.823 32.9853 103.321 27.2576 97.1193 24.2444L84.9461 18.3302L78.841 15.3301Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.841 15.3301C75.968 21.1763 69.9539 25.2 63.0001 25.2C56.0463 25.2 50.0322 21.1763 47.1592 15.3301L41.0541 18.3302L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4338 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C80.2367 115.928 83.8668 114.992 87.0881 113.257C86.1793 110.961 85.6799 108.459 85.6799 105.84C85.6799 94.7059 94.7059 85.68 105.84 85.68C107.508 85.68 109.129 85.8826 110.68 86.2647L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.338 39.791C107.823 32.9853 103.321 27.2576 97.1193 24.2444L84.9461 18.3302L78.841 15.3301Z" fill="white"/> </svg>')
}

.user-avatar--level-5 .user-avatar__img-wrap--notify {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.841 15.3301C75.968 21.1763 69.9539 25.2 63.0001 25.2C56.0463 25.2 50.0322 21.1763 47.1592 15.3301L41.0541 18.3302L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4338 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.387 40.009C108.235 40.2134 107.05 40.32 105.84 40.32C94.7059 40.32 85.6799 31.2941 85.6799 20.16C85.6799 19.673 85.6972 19.19 85.7312 18.7117L84.9461 18.3302L78.841 15.3301Z" fill="white"/> </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.841 15.3301C75.968 21.1763 69.9539 25.2 63.0001 25.2C56.0463 25.2 50.0322 21.1763 47.1592 15.3301L41.0541 18.3302L28.8809 24.2444C22.6787 27.2576 18.1769 32.9853 16.6617 39.791L13.6878 53.1487L10.6551 66.4928C9.11001 73.2915 10.7167 80.4338 15.0161 85.8791L23.4547 96.5666L31.8462 107.292C36.1216 112.757 42.6269 115.936 49.5034 115.92L63.0001 115.889L76.4968 115.92C83.3732 115.936 89.8785 112.757 94.1539 107.292L102.545 96.5666L110.984 85.8791C115.283 80.4338 116.89 73.2915 115.345 66.4928L112.312 53.1487L109.387 40.009C108.235 40.2134 107.05 40.32 105.84 40.32C94.7059 40.32 85.6799 31.2941 85.6799 20.16C85.6799 19.673 85.6972 19.19 85.7312 18.7117L84.9461 18.3302L78.841 15.3301Z" fill="white"/> </svg>')
}

.user-avatar--level-4 .user-avatar__img,.user-avatar--level-5 .user-avatar__img {
    border-radius: unset
}

.user-avatar--level-4 .user-avatar__img-wrap--notify+.profile-level .profile-level__icon-group--notify,.user-avatar--level-4 .user-avatar__img-wrap--with-status+.profile-level .profile-level__icon-group--status,.user-avatar--level-5 .user-avatar__img-wrap--notify+.profile-level .profile-level__icon-group--notify,.user-avatar--level-5 .user-avatar__img-wrap--with-status+.profile-level .profile-level__icon-group--status {
    visibility: hidden
}

.profile-level {
    --profile-level-size: 100px;
    height: var(--profile-level-size);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: var(--profile-level-size)
}

.profile-level svg {
    display: block
}

.profile-level .profile-level__check {
    height: 88%;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 88%
}

.profile-level .user-level-progress-icon {
    height: 100%;
    width: 100%
}

.profile-level .user-level-progress-icon .bg {
    fill: #98a6d1;
    opacity: .3
}

.intl-tel-input .country-list {
    z-index: auto
}

.intl-tel-input .country-list .country-name {
    color: #777
}

.intl-tel-input.allow-dropdown .selected-flag {
    padding-left: 18px;
    width: 56px
}

.intl-tel-input.allow-dropdown input[type=text] {
    padding-left: 56px
}

.flag_r_20x20 {
    background-image: url(../images/flags_20x20_r_sprites.png);
    display: inline-block;
    height: 20px;
    width: 20px
}

.flag_r_20x20_pl {
    background-position: -2px -2px
}

.flag_r_20x20_pt {
    background-position: -26px -2px
}

.flag_r_20x20_ro {
    background-position: -2px -26px
}

.flag_r_20x20_rs {
    background-position: -26px -26px
}

.flag_r_20x20_ru {
    background-position: -50px -2px
}

.flag_r_20x20_th {
    background-position: -50px -26px
}

.flag_r_20x20_tr {
    background-position: -2px -50px
}

.flag_r_20x20_vn {
    background-position: -26px -50px
}

.flag_r_20x20_ae {
    background-position: -50px -50px
}

.flag_r_20x20_cn {
    background-position: -74px -2px
}

.flag_r_20x20_cz {
    background-position: -74px -26px
}

.flag_r_20x20_de {
    background-position: -74px -50px
}

.flag_r_20x20_es {
    background-position: -2px -74px
}

.flag_r_20x20_fr {
    background-position: -26px -74px
}

.flag_r_20x20_gb {
    background-position: -50px -74px
}

.flag_r_20x20_gr {
    background-position: -74px -74px
}

.flag_r_20x20_hr {
    background-position: -98px -2px
}

.flag_r_20x20_id {
    background-position: -98px -26px
}

.flag_r_20x20_in {
    background-position: -98px -50px
}

.flag_r_20x20_ir {
    background-position: -98px -74px
}

.flag_r_20x20_it {
    background-position: -2px -98px
}

.flag_r_20x20_jp {
    background-position: -26px -98px
}

.flag_r_20x20_kr {
    background-position: -50px -98px
}

.flag_r_20x20_ua {
    background-position: -98px -98px
}

.flag_r_20x20_ms,.flag_r_20x20_my {
    background-position: -74px -98px
}

.flag_r_20x20_bd {
    background-position: -2px -122px
}

.flag_r_20x20_ph {
    background-position: -26px -122px
}

.flag_r_26x26 {
    background-image: url(../images/flags_26x26_r_sprites.png);
    background-position: -212px -452px;
    display: inline-block;
    height: 26px;
    width: 26px
}

.flag_r_26x26_an {
    background-position: -2px -2px
}

.flag_r_26x26_kz {
    background-position: -32px -2px
}

.flag_r_26x26_pr {
    background-position: -2px -32px
}

.flag_r_26x26_ic {
    background-position: -32px -32px
}

.flag_r_26x26_vu {
    background-position: -62px -2px
}

.flag_r_26x26_ws {
    background-position: -62px -32px
}

.flag_r_26x26_wf {
    background-position: -2px -62px
}

.flag_r_26x26_ye {
    background-position: -32px -62px
}

.flag_r_26x26_td {
    background-position: -62px -62px
}

.flag_r_26x26_tf {
    background-position: -92px -2px
}

.flag_r_26x26_tg {
    background-position: -92px -32px
}

.flag_r_26x26_th {
    background-position: -92px -62px
}

.flag_r_26x26_tj {
    background-position: -2px -92px
}

.flag_r_26x26_tk {
    background-position: -32px -92px
}

.flag_r_26x26_tl {
    background-position: -62px -92px
}

.flag_r_26x26_tn {
    background-position: -92px -92px
}

.flag_r_26x26_tm {
    background-position: -122px -2px
}

.flag_r_26x26_to {
    background-position: -122px -32px
}

.flag_r_26x26_tr {
    background-position: -122px -62px
}

.flag_r_26x26_tt {
    background-position: -122px -92px
}

.flag_r_26x26_tw {
    background-position: -2px -122px
}

.flag_r_26x26_tv {
    background-position: -32px -122px
}

.flag_r_26x26_tz {
    background-position: -62px -122px
}

.flag_r_26x26_ua {
    background-position: -92px -122px
}

.flag_r_26x26_ug {
    background-position: -122px -122px
}

.flag_r_26x26_us {
    background-position: -152px -2px
}

.flag_r_26x26_uy {
    background-position: -152px -32px
}

.flag_r_26x26_uz {
    background-position: -152px -62px
}

.flag_r_26x26_va {
    background-position: -152px -92px
}

.flag_r_26x26_vc {
    background-position: -152px -122px
}

.flag_r_26x26_ve {
    background-position: -2px -152px
}

.flag_r_26x26_vg {
    background-position: -32px -152px
}

.flag_r_26x26_vi {
    background-position: -62px -152px
}

.flag_r_26x26_vn {
    background-position: -92px -152px
}

.flag_r_26x26_vt {
    background-position: -122px -152px
}

.flag_r_26x26_yt {
    background-position: -152px -152px
}

.flag_r_26x26_za {
    background-position: -182px -2px
}

.flag_r_26x26_zm {
    background-position: -182px -32px
}

.flag_r_26x26_zw {
    background-position: -182px -62px
}

.flag_r_26x26_sm {
    background-position: -182px -92px
}

.flag_r_26x26_sn {
    background-position: -182px -122px
}

.flag_r_26x26_so {
    background-position: -182px -152px
}

.flag_r_26x26_sr {
    background-position: -2px -182px
}

.flag_r_26x26_ss {
    background-position: -32px -182px
}

.flag_r_26x26_st {
    background-position: -62px -182px
}

.flag_r_26x26_sv {
    background-position: -92px -182px
}

.flag_r_26x26_sx {
    background-position: -122px -182px
}

.flag_r_26x26_sy {
    background-position: -152px -182px
}

.flag_r_26x26_sz {
    background-position: -182px -182px
}

.flag_r_26x26_tc {
    background-position: -212px -2px
}

.flag_r_26x26_ps {
    background-position: -212px -32px
}

.flag_r_26x26_pt {
    background-position: -212px -62px
}

.flag_r_26x26_pw {
    background-position: -212px -92px
}

.flag_r_26x26_py {
    background-position: -212px -122px
}

.flag_r_26x26_qa {
    background-position: -212px -152px
}

.flag_r_26x26_ro {
    background-position: -212px -182px
}

.flag_r_26x26_rs {
    background-position: -2px -212px
}

.flag_r_26x26_rw {
    background-position: -32px -212px
}

.flag_r_26x26_ru {
    background-position: -62px -212px
}

.flag_r_26x26_sa {
    background-position: -92px -212px
}

.flag_r_26x26_sb {
    background-position: -122px -212px
}

.flag_r_26x26_sc {
    background-position: -152px -212px
}

.flag_r_26x26_sd {
    background-position: -182px -212px
}

.flag_r_26x26_sg {
    background-position: -212px -212px
}

.flag_r_26x26_se {
    background-position: -242px -2px
}

.flag_r_26x26_sh {
    background-position: -242px -32px
}

.flag_r_26x26_sk {
    background-position: -242px -62px
}

.flag_r_26x26_si {
    background-position: -242px -92px
}

.flag_r_26x26_sl {
    background-position: -242px -122px
}

.flag_r_26x26_mr {
    background-position: -242px -152px
}

.flag_r_26x26_mt {
    background-position: -242px -182px
}

.flag_r_26x26_mu {
    background-position: -242px -212px
}

.flag_r_26x26_mv {
    background-position: -2px -242px
}

.flag_r_26x26_my {
    background-position: -32px -242px
}

.flag_r_26x26_mw {
    background-position: -62px -242px
}

.flag_r_26x26_na {
    background-position: -92px -242px
}

.flag_r_26x26_ms {
    background-position: -122px -242px
}

.flag_r_26x26_mz {
    background-position: -152px -242px
}

.flag_r_26x26_nc {
    background-position: -182px -242px
}

.flag_r_26x26_ne {
    background-position: -212px -242px
}

.flag_r_26x26_nf {
    background-position: -242px -242px
}

.flag_r_26x26_ng {
    background-position: -272px -2px
}

.flag_r_26x26_mx {
    background-position: -272px -32px
}

.flag_r_26x26_ni {
    background-position: -272px -62px
}

.flag_r_26x26_no {
    background-position: -272px -92px
}

.flag_r_26x26_nl {
    background-position: -272px -122px
}

.flag_r_26x26_np {
    background-position: -272px -152px
}

.flag_r_26x26_nr {
    background-position: -272px -182px
}

.flag_r_26x26_nu {
    background-position: -272px -212px
}

.flag_r_26x26_pa {
    background-position: -272px -242px
}

.flag_r_26x26_nz {
    background-position: -2px -272px
}

.flag_r_26x26_om {
    background-position: -32px -272px
}

.flag_r_26x26_ph {
    background-position: -62px -272px
}

.flag_r_26x26_pf {
    background-position: -92px -272px
}

.flag_r_26x26_pe {
    background-position: -122px -272px
}

.flag_r_26x26_pg {
    background-position: -152px -272px
}

.flag_r_26x26_pl {
    background-position: -182px -272px
}

.flag_r_26x26_pn {
    background-position: -212px -272px
}

.flag_r_26x26_pk {
    background-position: -242px -272px
}

.flag_r_26x26_kn {
    background-position: -272px -272px
}

.flag_r_26x26_kp {
    background-position: -302px -2px
}

.flag_r_26x26_kr {
    background-position: -302px -32px
}

.flag_r_26x26_kw {
    background-position: -302px -62px
}

.flag_r_26x26_ky {
    background-position: -302px -92px
}

.flag_r_26x26_la {
    background-position: -302px -122px
}

.flag_r_26x26_lb {
    background-position: -302px -152px
}

.flag_r_26x26_lc {
    background-position: -302px -182px
}

.flag_r_26x26_li {
    background-position: -302px -212px
}

.flag_r_26x26_lk {
    background-position: -302px -242px
}

.flag_r_26x26_lr {
    background-position: -302px -272px
}

.flag_r_26x26_ls {
    background-position: -2px -302px
}

.flag_r_26x26_lt {
    background-position: -32px -302px
}

.flag_r_26x26_lu {
    background-position: -62px -302px
}

.flag_r_26x26_lv {
    background-position: -92px -302px
}

.flag_r_26x26_ly {
    background-position: -122px -302px
}

.flag_r_26x26_ma {
    background-position: -152px -302px
}

.flag_r_26x26_mc {
    background-position: -182px -302px
}

.flag_r_26x26_md {
    background-position: -212px -302px
}

.flag_r_26x26_me {
    background-position: -242px -302px
}

.flag_r_26x26_mf {
    background-position: -272px -302px
}

.flag_r_26x26_mg {
    background-position: -302px -302px
}

.flag_r_26x26_mh {
    background-position: -332px -2px
}

.flag_r_26x26_mk {
    background-position: -332px -32px
}

.flag_r_26x26_ml {
    background-position: -332px -62px
}

.flag_r_26x26_mm {
    background-position: -332px -92px
}

.flag_r_26x26_mn {
    background-position: -332px -122px
}

.flag_r_26x26_mo {
    background-position: -332px -152px
}

.flag_r_26x26_mp {
    background-position: -332px -182px
}

.flag_r_26x26_mq {
    background-position: -332px -212px
}

.flag_r_26x26_gr {
    background-position: -332px -242px
}

.flag_r_26x26_gs {
    background-position: -332px -272px
}

.flag_r_26x26_gt {
    background-position: -332px -302px
}

.flag_r_26x26_gu {
    background-position: -2px -332px
}

.flag_r_26x26_gw {
    background-position: -32px -332px
}

.flag_r_26x26_gy {
    background-position: -62px -332px
}

.flag_r_26x26_hk {
    background-position: -92px -332px
}

.flag_r_26x26_hm {
    background-position: -122px -332px
}

.flag_r_26x26_hn {
    background-position: -152px -332px
}

.flag_r_26x26_hr {
    background-position: -182px -332px
}

.flag_r_26x26_ht {
    background-position: -212px -332px
}

.flag_r_26x26_hu {
    background-position: -242px -332px
}

.flag_r_26x26_id {
    background-position: -272px -332px
}

.flag_r_26x26_ie {
    background-position: -302px -332px
}

.flag_r_26x26_il {
    background-position: -332px -332px
}

.flag_r_26x26_im {
    background-position: -362px -2px
}

.flag_r_26x26_in {
    background-position: -362px -32px
}

.flag_r_26x26_iq {
    background-position: -362px -62px
}

.flag_r_26x26_ir {
    background-position: -362px -92px
}

.flag_r_26x26_is {
    background-position: -362px -122px
}

.flag_r_26x26_it {
    background-position: -362px -152px
}

.flag_r_26x26_ja {
    background-position: -362px -182px
}

.flag_r_26x26_je {
    background-position: -362px -212px
}

.flag_r_26x26_jm {
    background-position: -362px -242px
}

.flag_r_26x26_jo {
    background-position: -362px -272px
}

.flag_r_26x26_jp {
    background-position: -362px -302px
}

.flag_r_26x26_ke {
    background-position: -362px -332px
}

.flag_r_26x26_kg {
    background-position: -2px -362px
}

.flag_r_26x26_kh {
    background-position: -32px -362px
}

.flag_r_26x26_ki {
    background-position: -62px -362px
}

.flag_r_26x26_km {
    background-position: -92px -362px
}

.flag_r_26x26_ec {
    background-position: -122px -362px
}

.flag_r_26x26_ee {
    background-position: -152px -362px
}

.flag_r_26x26_eg {
    background-position: -182px -362px
}

.flag_r_26x26_eh {
    background-position: -212px -362px
}

.flag_r_26x26_en {
    background-position: -242px -362px
}

.flag_r_26x26_er {
    background-position: -272px -362px
}

.flag_r_26x26_es {
    background-position: -302px -362px
}

.flag_r_26x26_et {
    background-position: -332px -362px
}

.flag_r_26x26_eu {
    background-position: -362px -362px
}

.flag_r_26x26_fi {
    background-position: -392px -2px
}

.flag_r_26x26_fj {
    background-position: -392px -32px
}

.flag_r_26x26_fk {
    background-position: -392px -62px
}

.flag_r_26x26_fm {
    background-position: -392px -92px
}

.flag_r_26x26_fo {
    background-position: -392px -122px
}

.flag_r_26x26_fr {
    background-position: -392px -152px
}

.flag_r_26x26_ga {
    background-position: -392px -182px
}

.flag_r_26x26_gb {
    background-position: -392px -212px
}

.flag_r_26x26_gd {
    background-position: -392px -242px
}

.flag_r_26x26_ge {
    background-position: -392px -272px
}

.flag_r_26x26_gf {
    background-position: -392px -302px
}

.flag_r_26x26_gg {
    background-position: -392px -332px
}

.flag_r_26x26_gh {
    background-position: -392px -362px
}

.flag_r_26x26_gi {
    background-position: -2px -392px
}

.flag_r_26x26_gl {
    background-position: -32px -392px
}

.flag_r_26x26_gm {
    background-position: -62px -392px
}

.flag_r_26x26_gn {
    background-position: -92px -392px
}

.flag_r_26x26_gq {
    background-position: -122px -392px
}

.flag_r_26x26_ad {
    background-position: -152px -392px
}

.flag_r_26x26_ae {
    background-position: -182px -392px
}

.flag_r_26x26_af {
    background-position: -212px -392px
}

.flag_r_26x26_ag {
    background-position: -242px -392px
}

.flag_r_26x26_ai {
    background-position: -272px -392px
}

.flag_r_26x26_al {
    background-position: -302px -392px
}

.flag_r_26x26_am {
    background-position: -332px -392px
}

.flag_r_26x26_ao {
    background-position: -362px -392px
}

.flag_r_26x26_aq {
    background-position: -392px -392px
}

.flag_r_26x26_ar {
    background-position: -422px -2px
}

.flag_r_26x26_as {
    background-position: -422px -32px
}

.flag_r_26x26_at {
    background-position: -422px -62px
}

.flag_r_26x26_au {
    background-position: -422px -92px
}

.flag_r_26x26_aw {
    background-position: -422px -122px
}

.flag_r_26x26_ax {
    background-position: -422px -152px
}

.flag_r_26x26_az {
    background-position: -422px -182px
}

.flag_r_26x26_ba {
    background-position: -422px -212px
}

.flag_r_26x26_bb {
    background-position: -422px -242px
}

.flag_r_26x26_bd {
    background-position: -422px -272px
}

.flag_r_26x26_be {
    background-position: -422px -302px
}

.flag_r_26x26_bf {
    background-position: -422px -332px
}

.flag_r_26x26_bg {
    background-position: -422px -362px
}

.flag_r_26x26_bh {
    background-position: -422px -392px
}

.flag_r_26x26_bi {
    background-position: -2px -422px
}

.flag_r_26x26_bj {
    background-position: -32px -422px
}

.flag_r_26x26_bl {
    background-position: -62px -422px
}

.flag_r_26x26_bm {
    background-position: -92px -422px
}

.flag_r_26x26_bn {
    background-position: -122px -422px
}

.flag_r_26x26_bo {
    background-position: -152px -422px
}

.flag_r_26x26_br {
    background-position: -182px -422px
}

.flag_r_26x26_bs {
    background-position: -212px -422px
}

.flag_r_26x26_bt {
    background-position: -242px -422px
}

.flag_r_26x26_bw {
    background-position: -272px -422px
}

.flag_r_26x26_by {
    background-position: -302px -422px
}

.flag_r_26x26_bz {
    background-position: -332px -422px
}

.flag_r_26x26_ca {
    background-position: -362px -422px
}

.flag_r_26x26_cc {
    background-position: -392px -422px
}

.flag_r_26x26_cd {
    background-position: -422px -422px
}

.flag_r_26x26_cf {
    background-position: -452px -2px
}

.flag_r_26x26_cg {
    background-position: -452px -32px
}

.flag_r_26x26_ch {
    background-position: -452px -62px
}

.flag_r_26x26_ci {
    background-position: -452px -92px
}

.flag_r_26x26_ck {
    background-position: -452px -122px
}

.flag_r_26x26_cl {
    background-position: -452px -152px
}

.flag_r_26x26_cm {
    background-position: -452px -182px
}

.flag_r_26x26_cn {
    background-position: -452px -212px
}

.flag_r_26x26_co {
    background-position: -452px -242px
}

.flag_r_26x26_cr {
    background-position: -452px -272px
}

.flag_r_26x26_cu {
    background-position: -452px -302px
}

.flag_r_26x26_cv {
    background-position: -452px -332px
}

.flag_r_26x26_cw {
    background-position: -452px -362px
}

.flag_r_26x26_cx {
    background-position: -452px -392px
}

.flag_r_26x26_cy {
    background-position: -452px -422px
}

.flag_r_26x26_cz {
    background-position: -2px -452px
}

.flag_r_26x26_de {
    background-position: -32px -452px
}

.flag_r_26x26_dj {
    background-position: -62px -452px
}

.flag_r_26x26_dk {
    background-position: -92px -452px
}

.flag_r_26x26_dm {
    background-position: -122px -452px
}

.flag_r_26x26_do {
    background-position: -152px -452px
}

.flag_r_26x26_dz {
    background-position: -182px -452px
}

.flag_r_50x50 {
    background-image: url(../images/flags_50x50_r_sprites.png);
    background-position: -434px -812px;
    display: inline-block;
    height: 50px;
    width: 50px
}

.flag_r_50x50_ad {
    background-position: -2px -2px
}

.flag_r_50x50_ae {
    background-position: -56px -2px
}

.flag_r_50x50_af {
    background-position: -2px -56px
}

.flag_r_50x50_ag {
    background-position: -56px -56px
}

.flag_r_50x50_ai {
    background-position: -110px -2px
}

.flag_r_50x50_an {
    background-position: -110px -56px
}

.flag_r_50x50_al {
    background-position: -2px -110px
}

.flag_r_50x50_am {
    background-position: -56px -110px
}

.flag_r_50x50_ao {
    background-position: -110px -110px
}

.flag_r_50x50_aq {
    background-position: -164px -2px
}

.flag_r_50x50_ar {
    background-position: -164px -56px
}

.flag_r_50x50_as {
    background-position: -164px -110px
}

.flag_r_50x50_at {
    background-position: -2px -164px
}

.flag_r_50x50_au {
    background-position: -56px -164px
}

.flag_r_50x50_aw {
    background-position: -110px -164px
}

.flag_r_50x50_ax {
    background-position: -164px -164px
}

.flag_r_50x50_az {
    background-position: -218px -2px
}

.flag_r_50x50_ba {
    background-position: -218px -56px
}

.flag_r_50x50_bb {
    background-position: -218px -110px
}

.flag_r_50x50_bd {
    background-position: -218px -164px
}

.flag_r_50x50_be {
    background-position: -2px -218px
}

.flag_r_50x50_bf {
    background-position: -56px -218px
}

.flag_r_50x50_bg {
    background-position: -110px -218px
}

.flag_r_50x50_bh {
    background-position: -164px -218px
}

.flag_r_50x50_bi {
    background-position: -218px -218px
}

.flag_r_50x50_bj {
    background-position: -272px -2px
}

.flag_r_50x50_bm {
    background-position: -272px -56px
}

.flag_r_50x50_bl {
    background-position: -272px -110px
}

.flag_r_50x50_bn {
    background-position: -272px -164px
}

.flag_r_50x50_bo {
    background-position: -272px -218px
}

.flag_r_50x50_br {
    background-position: -2px -272px
}

.flag_r_50x50_bs {
    background-position: -56px -272px
}

.flag_r_50x50_bt {
    background-position: -110px -272px
}

.flag_r_50x50_bw {
    background-position: -164px -272px
}

.flag_r_50x50_by {
    background-position: -218px -272px
}

.flag_r_50x50_bz {
    background-position: -272px -272px
}

.flag_r_50x50_ca {
    background-position: -326px -2px
}

.flag_r_50x50_cc {
    background-position: -326px -56px
}

.flag_r_50x50_cd {
    background-position: -326px -110px
}

.flag_r_50x50_cf {
    background-position: -326px -164px
}

.flag_r_50x50_cg {
    background-position: -326px -218px
}

.flag_r_50x50_ch {
    background-position: -326px -272px
}

.flag_r_50x50_ci {
    background-position: -2px -326px
}

.flag_r_50x50_ck {
    background-position: -56px -326px
}

.flag_r_50x50_cl {
    background-position: -110px -326px
}

.flag_r_50x50_cm {
    background-position: -164px -326px
}

.flag_r_50x50_cn {
    background-position: -218px -326px
}

.flag_r_50x50_co {
    background-position: -272px -326px
}

.flag_r_50x50_cr {
    background-position: -326px -326px
}

.flag_r_50x50_cu {
    background-position: -380px -2px
}

.flag_r_50x50_cv {
    background-position: -380px -56px
}

.flag_r_50x50_cw {
    background-position: -380px -110px
}

.flag_r_50x50_cx {
    background-position: -380px -164px
}

.flag_r_50x50_cy {
    background-position: -380px -218px
}

.flag_r_50x50_cz {
    background-position: -380px -272px
}

.flag_r_50x50_de {
    background-position: -380px -326px
}

.flag_r_50x50_dj {
    background-position: -2px -380px
}

.flag_r_50x50_dk {
    background-position: -56px -380px
}

.flag_r_50x50_dm {
    background-position: -110px -380px
}

.flag_r_50x50_do {
    background-position: -164px -380px
}

.flag_r_50x50_dz {
    background-position: -218px -380px
}

.flag_r_50x50_ec {
    background-position: -272px -380px
}

.flag_r_50x50_ee {
    background-position: -326px -380px
}

.flag_r_50x50_eg {
    background-position: -380px -380px
}

.flag_r_50x50_eh {
    background-position: -434px -2px
}

.flag_r_50x50_en {
    background-position: -434px -56px
}

.flag_r_50x50_er {
    background-position: -434px -110px
}

.flag_r_50x50_es {
    background-position: -434px -164px
}

.flag_r_50x50_et {
    background-position: -434px -218px
}

.flag_r_50x50_eu {
    background-position: -434px -272px
}

.flag_r_50x50_fi {
    background-position: -434px -326px
}

.flag_r_50x50_fj {
    background-position: -434px -380px
}

.flag_r_50x50_fk {
    background-position: -2px -434px
}

.flag_r_50x50_fm {
    background-position: -56px -434px
}

.flag_r_50x50_fo {
    background-position: -110px -434px
}

.flag_r_50x50_fr {
    background-position: -164px -434px
}

.flag_r_50x50_ga {
    background-position: -218px -434px
}

.flag_r_50x50_gb_eng {
    background-position: -272px -434px
}

.flag_r_50x50_gb_nir {
    background-position: -326px -434px
}

.flag_r_50x50_gb_sct {
    background-position: -380px -434px
}

.flag_r_50x50_gb_wls {
    background-position: -434px -434px
}

.flag_r_50x50_gd {
    background-position: -488px -2px
}

.flag_r_50x50_ge {
    background-position: -488px -56px
}

.flag_r_50x50_gf {
    background-position: -488px -110px
}

.flag_r_50x50_gg {
    background-position: -488px -164px
}

.flag_r_50x50_gh {
    background-position: -488px -218px
}

.flag_r_50x50_gi {
    background-position: -488px -272px
}

.flag_r_50x50_gl {
    background-position: -488px -326px
}

.flag_r_50x50_gm {
    background-position: -488px -380px
}

.flag_r_50x50_gn {
    background-position: -488px -434px
}

.flag_r_50x50_gq {
    background-position: -2px -488px
}

.flag_r_50x50_gr {
    background-position: -56px -488px
}

.flag_r_50x50_gt {
    background-position: -110px -488px
}

.flag_r_50x50_gy {
    background-position: -164px -488px
}

.flag_r_50x50_gu {
    background-position: -218px -488px
}

.flag_r_50x50_hk {
    background-position: -272px -488px
}

.flag_r_50x50_gw {
    background-position: -326px -488px
}

.flag_r_50x50_hn {
    background-position: -380px -488px
}

.flag_r_50x50_hm {
    background-position: -434px -488px
}

.flag_r_50x50_gs {
    background-position: -488px -488px
}

.flag_r_50x50_hr {
    background-position: -542px -2px
}

.flag_r_50x50_ht {
    background-position: -542px -56px
}

.flag_r_50x50_hu {
    background-position: -542px -110px
}

.flag_r_50x50_ic {
    background-position: -542px -164px
}

.flag_r_50x50_id {
    background-position: -542px -218px
}

.flag_r_50x50_ie {
    background-position: -542px -272px
}

.flag_r_50x50_il {
    background-position: -542px -326px
}

.flag_r_50x50_im {
    background-position: -542px -380px
}

.flag_r_50x50_in {
    background-position: -542px -434px
}

.flag_r_50x50_iq {
    background-position: -542px -488px
}

.flag_r_50x50_ir {
    background-position: -2px -542px
}

.flag_r_50x50_is {
    background-position: -56px -542px
}

.flag_r_50x50_it {
    background-position: -110px -542px
}

.flag_r_50x50_ja {
    background-position: -164px -542px
}

.flag_r_50x50_je {
    background-position: -218px -542px
}

.flag_r_50x50_jm {
    background-position: -272px -542px
}

.flag_r_50x50_jo {
    background-position: -326px -542px
}

.flag_r_50x50_ke {
    background-position: -380px -542px
}

.flag_r_50x50_kg {
    background-position: -434px -542px
}

.flag_r_50x50_kh {
    background-position: -488px -542px
}

.flag_r_50x50_ki {
    background-position: -542px -542px
}

.flag_r_50x50_km {
    background-position: -596px -2px
}

.flag_r_50x50_kn {
    background-position: -596px -56px
}

.flag_r_50x50_kp {
    background-position: -596px -110px
}

.flag_r_50x50_kr {
    background-position: -596px -164px
}

.flag_r_50x50_kw {
    background-position: -596px -218px
}

.flag_r_50x50_ky {
    background-position: -596px -272px
}

.flag_r_50x50_kz {
    background-position: -596px -326px
}

.flag_r_50x50_la {
    background-position: -596px -380px
}

.flag_r_50x50_lb {
    background-position: -596px -434px
}

.flag_r_50x50_lc {
    background-position: -596px -488px
}

.flag_r_50x50_li {
    background-position: -596px -542px
}

.flag_r_50x50_lk {
    background-position: -2px -596px
}

.flag_r_50x50_lr {
    background-position: -56px -596px
}

.flag_r_50x50_ls {
    background-position: -110px -596px
}

.flag_r_50x50_lt {
    background-position: -164px -596px
}

.flag_r_50x50_lu {
    background-position: -218px -596px
}

.flag_r_50x50_lv {
    background-position: -272px -596px
}

.flag_r_50x50_ly {
    background-position: -326px -596px
}

.flag_r_50x50_ma {
    background-position: -380px -596px
}

.flag_r_50x50_mc {
    background-position: -434px -596px
}

.flag_r_50x50_md {
    background-position: -488px -596px
}

.flag_r_50x50_me {
    background-position: -542px -596px
}

.flag_r_50x50_mf {
    background-position: -596px -596px
}

.flag_r_50x50_mg {
    background-position: -650px -2px
}

.flag_r_50x50_mh {
    background-position: -650px -56px
}

.flag_r_50x50_mk {
    background-position: -650px -110px
}

.flag_r_50x50_ml {
    background-position: -650px -164px
}

.flag_r_50x50_mm {
    background-position: -650px -218px
}

.flag_r_50x50_mn {
    background-position: -650px -272px
}

.flag_r_50x50_mo {
    background-position: -650px -326px
}

.flag_r_50x50_mp {
    background-position: -650px -380px
}

.flag_r_50x50_mq {
    background-position: -650px -434px
}

.flag_r_50x50_mr {
    background-position: -650px -488px
}

.flag_r_50x50_ms {
    background-position: -650px -542px
}

.flag_r_50x50_mt {
    background-position: -650px -596px
}

.flag_r_50x50_mu {
    background-position: -2px -650px
}

.flag_r_50x50_mv {
    background-position: -56px -650px
}

.flag_r_50x50_mw {
    background-position: -110px -650px
}

.flag_r_50x50_mx {
    background-position: -164px -650px
}

.flag_r_50x50_my {
    background-position: -218px -650px
}

.flag_r_50x50_mz {
    background-position: -272px -650px
}

.flag_r_50x50_na {
    background-position: -326px -650px
}

.flag_r_50x50_nc {
    background-position: -380px -650px
}

.flag_r_50x50_ne {
    background-position: -434px -650px
}

.flag_r_50x50_nf {
    background-position: -488px -650px
}

.flag_r_50x50_ng {
    background-position: -542px -650px
}

.flag_r_50x50_ni {
    background-position: -596px -650px
}

.flag_r_50x50_nl {
    background-position: -650px -650px
}

.flag_r_50x50_no {
    background-position: -704px -2px
}

.flag_r_50x50_np {
    background-position: -704px -56px
}

.flag_r_50x50_nr {
    background-position: -704px -110px
}

.flag_r_50x50_nu {
    background-position: -704px -164px
}

.flag_r_50x50_nz {
    background-position: -704px -218px
}

.flag_r_50x50_om {
    background-position: -704px -272px
}

.flag_r_50x50_pa {
    background-position: -704px -326px
}

.flag_r_50x50_pe {
    background-position: -704px -380px
}

.flag_r_50x50_pf {
    background-position: -704px -434px
}

.flag_r_50x50_pg {
    background-position: -704px -488px
}

.flag_r_50x50_ph {
    background-position: -704px -542px
}

.flag_r_50x50_pk {
    background-position: -704px -596px
}

.flag_r_50x50_pl {
    background-position: -704px -650px
}

.flag_r_50x50_pn {
    background-position: -2px -704px
}

.flag_r_50x50_pr {
    background-position: -56px -704px
}

.flag_r_50x50_ps {
    background-position: -110px -704px
}

.flag_r_50x50_pt {
    background-position: -164px -704px
}

.flag_r_50x50_pw {
    background-position: -218px -704px
}

.flag_r_50x50_py {
    background-position: -272px -704px
}

.flag_r_50x50_qa {
    background-position: -326px -704px
}

.flag_r_50x50_ro {
    background-position: -380px -704px
}

.flag_r_50x50_rs {
    background-position: -434px -704px
}

.flag_r_50x50_ru {
    background-position: -488px -704px
}

.flag_r_50x50_rw {
    background-position: -542px -704px
}

.flag_r_50x50_sa {
    background-position: -596px -704px
}

.flag_r_50x50_sb {
    background-position: -650px -704px
}

.flag_r_50x50_sc {
    background-position: -704px -704px
}

.flag_r_50x50_sd {
    background-position: -758px -2px
}

.flag_r_50x50_se {
    background-position: -758px -56px
}

.flag_r_50x50_sg {
    background-position: -758px -110px
}

.flag_r_50x50_sh {
    background-position: -758px -164px
}

.flag_r_50x50_si {
    background-position: -758px -218px
}

.flag_r_50x50_sk {
    background-position: -758px -272px
}

.flag_r_50x50_sl {
    background-position: -758px -326px
}

.flag_r_50x50_sm {
    background-position: -758px -380px
}

.flag_r_50x50_sn {
    background-position: -758px -434px
}

.flag_r_50x50_so {
    background-position: -758px -488px
}

.flag_r_50x50_sr {
    background-position: -758px -542px
}

.flag_r_50x50_ss {
    background-position: -758px -596px
}

.flag_r_50x50_st {
    background-position: -758px -650px
}

.flag_r_50x50_sv {
    background-position: -758px -704px
}

.flag_r_50x50_sx {
    background-position: -2px -758px
}

.flag_r_50x50_sy {
    background-position: -56px -758px
}

.flag_r_50x50_sz {
    background-position: -110px -758px
}

.flag_r_50x50_tc {
    background-position: -164px -758px
}

.flag_r_50x50_td {
    background-position: -218px -758px
}

.flag_r_50x50_tf {
    background-position: -272px -758px
}

.flag_r_50x50_tg {
    background-position: -326px -758px
}

.flag_r_50x50_th {
    background-position: -380px -758px
}

.flag_r_50x50_tj {
    background-position: -434px -758px
}

.flag_r_50x50_tk {
    background-position: -488px -758px
}

.flag_r_50x50_tl {
    background-position: -542px -758px
}

.flag_r_50x50_tm {
    background-position: -596px -758px
}

.flag_r_50x50_tn {
    background-position: -650px -758px
}

.flag_r_50x50_to {
    background-position: -704px -758px
}

.flag_r_50x50_tr {
    background-position: -758px -758px
}

.flag_r_50x50_tt {
    background-position: -812px -2px
}

.flag_r_50x50_tv {
    background-position: -812px -56px
}

.flag_r_50x50_tw {
    background-position: -812px -110px
}

.flag_r_50x50_tz {
    background-position: -812px -164px
}

.flag_r_50x50_ua {
    background-position: -812px -218px
}

.flag_r_50x50_ug {
    background-position: -812px -272px
}

.flag_r_50x50_us {
    background-position: -812px -326px
}

.flag_r_50x50_uy {
    background-position: -812px -380px
}

.flag_r_50x50_uz {
    background-position: -812px -434px
}

.flag_r_50x50_va {
    background-position: -812px -488px
}

.flag_r_50x50_vc {
    background-position: -812px -542px
}

.flag_r_50x50_ve {
    background-position: -812px -596px
}

.flag_r_50x50_vg {
    background-position: -812px -650px
}

.flag_r_50x50_vi {
    background-position: -812px -704px
}

.flag_r_50x50_vt {
    background-position: -812px -758px
}

.flag_r_50x50_vu {
    background-position: -2px -812px
}

.flag_r_50x50_wf {
    background-position: -56px -812px
}

.flag_r_50x50_ws {
    background-position: -110px -812px
}

.flag_r_50x50_ye {
    background-position: -164px -812px
}

.flag_r_50x50_yt {
    background-position: -218px -812px
}

.flag_r_50x50_za {
    background-position: -272px -812px
}

.flag_r_50x50_zm {
    background-position: -326px -812px
}

.flag_r_50x50_zw {
    background-position: -380px -812px
}

* {
    outline: none
}

html {
    font-size: 16px
}

@media screen and (max-width: 1680px) {
    html {
        font-size:15px
    }
}

@media screen and (max-width: 1450px) {
    html {
        font-size:14px
    }
}

@media screen and (max-width: 1350px) {
    html {
        font-size:13px
    }
}

@media screen and (max-width: 1000px) {
    html {
        font-size:16px
    }
}

body {
    background-color: #0f1c2b;
    color: #fff;
    font-family: NunitoSans;
    font-size: 1.063rem;
    min-width: 320px;
    overflow-x: hidden
}

.home {
    background-color: #fff
}

.layout {
    overflow: hidden
}

.compensate-for-scrollbar {
    margin-right: 0!important
}

.container {
    margin-left: auto;
    max-width: 96.75rem;
    padding: 6.25rem 1.875rem;
    width: 100%
}

.container__no-padding {
    padding: 0 1.875rem
}

@media screen and (max-width: 1000px) {
    .container__no-padding {
        padding:0 1.875rem
    }
}

@media screen and (max-width: 700px) {
    .container__no-padding {
        padding:0 .938rem
    }
}

.container_small-padding {
    padding: 3.3rem 1.875rem 4.3rem
}

@media screen and (max-width: 1000px) {
    .container_small-padding {
        padding:3.15rem 1.875rem
    }
}

@media screen and (max-width: 700px) {
    .container_small-padding {
        padding:2.25rem .938rem
    }
}

@media screen and (min-width: 2400px) {
    .container {
        margin-left:auto;
        margin-right: auto
    }
}

@media screen and (max-width: 1279px) {
    .container {
        max-width:none
    }
}

@media screen and (max-width: 1000px) {
    .container {
        padding:3.25rem 1.875rem
    }
}

@media screen and (max-width: 700px) {
    .container {
        padding:2.25rem .938rem 2.5rem
    }
}

.content {
    max-width: 93.75rem
}

@media screen and (min-width: 1279px) {
    .content {
        max-width:none
    }
}

@media screen and (min-width: 2400px) {
    .content {
        margin-left:auto;
        margin-right: auto
    }
}

.section {
    padding-right: 300px
}

.section_light {
    color: #515151
}

.section_light h2 {
    color: #1e385b
}

.section_dark {
    background-color: #0f1c2b;
    color: #fff
}

.section_white {
    background-color: #fff;
    color: #3a4a68
}

.section_light-blue {
    background-color: #eef2f9;
    color: #3a4a68
}

@media screen and (min-width: 2400px) {
    .section {
        padding-right:0
    }
}

@media screen and (max-width: 1279px) {
    .section {
        padding-right:0
    }
}

main section:first-child {
    padding-top: 7.5rem;
    -webkit-transition: padding-top .5s;
    transition: padding-top .5s
}

@media screen and (max-width: 700px) {
    main section:first-child {
        padding-top:6rem
    }
}

@media screen and (max-width: 550px) {
    main section:first-child {
        padding-top:5.5rem
    }
}

@media screen and (max-width: 420px) {
    main section:first-child {
        padding-top:4.7rem
    }
}

.has-pwa-banner section.top {
    padding-top: 160px
}

h1 {
    display: block;
    font-family: Montserrat;
    font-size: 2.813rem;
    font-weight: 600;
    line-height: 3.438rem
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size:2.3rem;
        line-height: 2.9rem
    }
}

@media screen and (max-width: 700px) {
    h1 {
        font-size:2rem;
        line-height: 2.5rem
    }
}

@media screen and (max-width: 550px) {
    h1 {
        font-size:1.65rem;
        line-height: 2rem
    }
}

h2 {
    font-family: Montserrat;
    font-size: 2.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 3.59rem;
    margin-bottom: 5.2rem
}

@media screen and (max-width: 1000px) {
    h2 {
        font-size:2.3rem;
        line-height: 3rem;
        margin-bottom: 3rem
    }
}

@media screen and (max-width: 700px) {
    h2 {
        font-size:2rem;
        line-height: 2.6rem;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 550px) {
    h2 {
        font-size:1.5rem;
        line-height: 2rem;
        margin-bottom: 1.75rem;
        text-align: center
    }
}

li {
    list-style: none
}

a {
    color: #b4c2e4;
    cursor: pointer;
    -webkit-transition: color .3s;
    transition: color .3s
}

a:focus,a:hover {
    color: #8fa4d7
}

.top-block .breadcrumbs {
    margin-bottom: 0
}

.top-block .breadcrumbs+p {
    margin-top: 1.875rem
}

@media screen and (max-width: 720px) {
    .top-block .breadcrumbs {
        font-size:.875rem
    }
}

.top-block--has-text p {
    font-size: 1.5rem
}

@media screen and (max-width: 1000px) {
    .top-block--has-text p {
        font-size:1rem
    }
}

[href="#ci"] {
    display: none
}

.css-ajax-loader {
    display: inline-block;
    height: 36px;
    position: relative;
    width: 36px
}

.css-ajax-loader .plane {
    height: 30px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 30px
}

.css-ajax-loader .plane.main {
    -webkit-animation: animated-circles-rotate 20s linear infinite;
    animation: animated-circles-rotate 20s linear infinite;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotateX(60deg) rotate(-30deg);
    transform: rotateX(60deg) rotate(-30deg)
}

.css-ajax-loader .plane.main .circle {
    border: 1px solid #0f80c2;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 2px #0f80c2,inset 0 0 2px #0f80c2;
    box-shadow: 0 0 2px #0f80c2,inset 0 0 2px #0f80c2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
    position: absolute;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 30px
}

.css-ajax-loader .plane.main .circle:after,.css-ajax-loader .plane.main .circle:before {
    background: #0f80c2;
    border-radius: 100%;
    bottom: 0;
    -webkit-box-shadow: 0 0 2px #0f80c2;
    box-shadow: 0 0 2px #0f80c2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px
}

.css-ajax-loader .plane.main .circle:before {
    -webkit-transform: translateZ(-10px);
    transform: translateZ(-10px)
}

.css-ajax-loader .plane.main .circle:after {
    -webkit-transform: translateZ(10px);
    transform: translateZ(10px)
}

.css-ajax-loader .plane.main .circle:first-child {
    -webkit-transform: rotate(72deg) rotateX(63.435deg);
    transform: rotate(72deg) rotateX(63.435deg)
}

.css-ajax-loader .plane.main .circle:nth-child(2) {
    -webkit-transform: rotate(144deg) rotateX(63.435deg);
    transform: rotate(144deg) rotateX(63.435deg)
}

.css-ajax-loader .plane.main .circle:nth-child(3) {
    -webkit-transform: rotate(216deg) rotateX(63.435deg);
    transform: rotate(216deg) rotateX(63.435deg)
}

.css-ajax-loader .plane.main .circle:nth-child(4) {
    -webkit-transform: rotate(288deg) rotateX(63.435deg);
    transform: rotate(288deg) rotateX(63.435deg)
}

.css-ajax-loader .plane.main .circle:nth-child(5) {
    -webkit-transform: rotate(1turn) rotateX(63.435deg);
    transform: rotate(1turn) rotateX(63.435deg)
}

@-webkit-keyframes animated-circles-rotate {
    0% {
        -webkit-transform: rotateX(0) rotateY(0) rotate(0);
        transform: rotateX(0) rotateY(0) rotate(0)
    }

    to {
        -webkit-transform: rotateX(1turn) rotateY(1turn) rotate(1turn);
        transform: rotateX(1turn) rotateY(1turn) rotate(1turn)
    }
}

.hidden {
    display: none!important
}

.nowrap {
    white-space: nowrap
}

.po-modal {
    background-color: #00162a;
    border-radius: 1.25rem;
    -webkit-box-shadow: 0 2.813rem 3.188rem rgba(0,22,42,.44);
    box-shadow: 0 2.813rem 3.188rem rgba(0,22,42,.44);
    font-family: NunitoSans;
    font-size: .875rem;
    max-width: 50.625rem;
    padding: 4.063rem 2.5rem 2.5rem;
    width: 100%
}

.po-modal__in {
    display: -webkit-box;
    display: flex
}

@media screen and (max-width: 650px) {
    .po-modal__in {
        flex-wrap:wrap
    }
}

.po-modal__left {
    -webkit-box-flex: 0;
    flex: 0 0 51%;
    margin-right: 2.5rem
}

@media screen and (max-width: 650px) {
    .po-modal__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin-right: 0
    }
}

.po-modal__right {
    -webkit-box-flex: 0;
    flex: 0 0 calc(49% - 2.5rem);
    padding-right: 1rem
}

@media screen and (max-width: 650px) {
    .po-modal__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        padding-right: 0
    }
}

.po-modal .title {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 1.25rem
}

.po-modal p {
    margin-bottom: .75rem
}

.po-modal a {
    border-bottom: 1px solid #0a79e9;
    color: #0a79e9;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.po-modal a:hover {
    border-bottom: 1px solid transparent
}

@media screen and (max-width: 870px) {
    .po-modal {
        max-width:calc(100% - 3.75rem)
    }
}

@media screen and (max-width: 840px) {
    .po-modal {
        padding:3.063rem 1.5rem 1.5rem
    }
}

@media screen and (max-width: 700px) {
    .po-modal {
        max-width:calc(100% - 1.875rem)
    }
}

@media screen and (max-width: 650px) {
    .po-modal {
        text-align:center
    }
}

@media screen and (max-width: 500px) {
    .po-modal {
        padding:2.063rem .7rem .7rem
    }
}

.adaptive-table {
    overflow-x: auto
}

.form-error {
    color: #e0616c;
    font-size: 13px;
    line-height: 17px;
    margin: 5px 0
}

.ajax-loader-v2__icon {
    height: 1.875rem;
    width: 1.875rem
}

.greg-captcha {
    max-width: 240px
}

.greg-captcha__wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: .5rem;
    margin-top: .35rem
}

.greg-captcha__left {
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% - 60px)
}

.greg-captcha__right {
    -webkit-box-flex: 0;
    flex: 0 0 60px;
    text-align: center
}

.greg-captcha__icon {
    fill: #96aec1;
    -webkit-transition: .5s;
    transition: .5s
}

.greg-captcha img {
    max-width: 100%
}

.greg-captcha__btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-block;
    height: 21px;
    margin: 0 auto;
    padding: 0;
    width: 21px
}

.greg-captcha__btn img {
    margin: 0
}

.greg-captcha__btn:hover {
    opacity: 1
}

.greg-captcha__btn:hover .greg-captcha__icon {
    fill: #fff
}

.js-loader-link {
    position: relative
}

.js-loader-link .affiliate-loader {
    display: inline-block;
    height: 1rem!important;
    margin-top: -.5rem!important;
    position: absolute;
    right: -1.25rem;
    top: 50%;
    width: 1rem!important
}

.js-loader-link .affiliate-loader svg {
    display: block;
    height: 1rem!important;
    width: 1rem!important
}

.js-top-loader-btn {
    position: relative
}

.js-top-loader-btn.shown-loader .header-login-icon {
    opacity: 0
}

.js-top-loader-btn.shown-loader .affiliate-loader {
    display: inline-block;
    height: 1rem!important;
    left: 0;
    margin-top: -.5rem!important;
    position: absolute;
    top: 50%;
    width: 1rem!important
}

.js-top-loader-btn.shown-loader .affiliate-loader svg {
    display: block;
    height: 1rem!important;
    width: 1rem!important
}

.mb-block__in_blue .affiliate-loader svg rect {
    fill: #fff
}

@media screen and (max-width: 1250px) {
    .slider__footer {
        -webkit-transform:translateZ(0)!important;
        transform: translateZ(0)!important
    }
}

@media screen and (max-width: 1000px) {
    .monitor,.reviews-slider__quotes {
        -webkit-transform:translateZ(0)!important;
        transform: translateZ(0)!important
    }
}

.ar-lang,.ar-lang *,.fa-lang,.fa-lang *,.ur-lang,.ur-lang * {
    font-family: Alexandria
}

.ar-lang .page,.fa-lang .page,.ur-lang .page {
    line-height: 1.6
}

.ar-lang .modal h2,.fa-lang .modal h2,.ur-lang .modal h2 {
    font-family: inherit;
    letter-spacing: 0
}

.ar-lang .btn,.fa-lang .btn,.ur-lang .btn {
    font-family: inherit
}

.ar-lang .link,.fa-lang .link,.ur-lang .link {
    font-weight: 500
}

.ar-lang .header,.ar-lang .header .info__icon,.fa-lang .header,.fa-lang .header .info__icon,.ur-lang .header,.ur-lang .header .info__icon {
    left: unset;
    right: 0
}

.ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
    left: unset;
    right: -14rem
}

.ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
    left: unset;
    right: 14rem
}

@media screen and (max-width: 1680px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -15rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 15rem
    }
}

@media screen and (max-width: 1450px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -16rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 16rem
    }
}

@media screen and (max-width: 1350px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -17.3rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 17.3rem
    }
}

@media screen and (max-width: 1000px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -14rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 14rem
    }
}

@media screen and (max-width: 768px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -3rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 3rem
    }
}

@media screen and (max-width: 700px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -2.8rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 2.8rem
    }
}

@media screen and (max-width: 380px) {
    .ar-lang .header .info__text,.fa-lang .header .info__text,.ur-lang .header .info__text {
        left:unset;
        right: -2rem
    }

    .ar-lang .header .info__text:before,.fa-lang .header .info__text:before,.ur-lang .header .info__text:before {
        left: unset;
        right: 2rem
    }
}

.ar-lang .header__logo,.fa-lang .header__logo,.ur-lang .header__logo {
    margin-left: 15px;
    margin-right: 0
}

.ar-lang .header__lang,.fa-lang .header__lang,.ur-lang .header__lang {
    margin-left: 3.25rem;
    margin-right: 0
}

.ar-lang .header__btns,.fa-lang .header__btns,.ur-lang .header__btns {
    margin-left: 1.6875rem;
    margin-right: 0
}

.ar-lang .header__btns .btn svg,.fa-lang .header__btns .btn svg,.ur-lang .header__btns .btn svg {
    margin-left: .5rem;
    margin-right: 0
}

.ar-lang .header__right,.fa-lang .header__right,.ur-lang .header__right {
    margin-left: unset;
    margin-right: auto;
    position: unset
}

.ar-lang .header__menu,.fa-lang .header__menu,.ur-lang .header__menu {
    padding: 0
}

.ar-lang .header__menu ul li:last-child,.fa-lang .header__menu ul li:last-child,.ur-lang .header__menu ul li:last-child {
    margin-right: var(--offset)
}

.ar-lang .header__avatar,.fa-lang .header__avatar,.ur-lang .header__avatar {
    margin-left: 25px;
    margin-right: 0
}

.ar-lang .header-mobile__right,.fa-lang .header-mobile__right,.ur-lang .header-mobile__right {
    margin-right: auto;
    text-align: unset;
    width: auto
}

.ar-lang .header-mobile__left .info,.fa-lang .header-mobile__left .info,.ur-lang .header-mobile__left .info {
    margin-left: unset;
    margin-right: var(--offset)
}

.ar-lang .header-mobile .header__logo,.fa-lang .header-mobile .header__logo,.ur-lang .header-mobile .header__logo {
    margin-left: 0
}

.ar-lang .mobile-block .mb-block__in_white .mb-block__link_title,.fa-lang .mobile-block .mb-block__in_white .mb-block__link_title,.ur-lang .mobile-block .mb-block__in_white .mb-block__link_title {
    padding-right: 0
}

.ar-lang .mobile-block__lang .languages__list,.fa-lang .mobile-block__lang .languages__list,.ur-lang .mobile-block__lang .languages__list {
    left: unset;
    right: 0!important
}

.ar-lang .mobile-block__title,.fa-lang .mobile-block__title,.ur-lang .mobile-block__title {
    font-family: inherit
}

.ar-lang .mobile-block .mb-block__link,.fa-lang .mobile-block .mb-block__link,.ur-lang .mobile-block .mb-block__link {
    background-position: 100%
}

.ar-lang .mobile-block .mb-block__title,.fa-lang .mobile-block .mb-block__title,.ur-lang .mobile-block .mb-block__title {
    font-family: inherit
}

@media screen and (max-width: 1279px) {
    .ar-lang .mobile-block,.fa-lang .mobile-block,.ur-lang .mobile-block {
        padding-left:0
    }
}

.ar-lang .languages .language-icon,.fa-lang .languages .language-icon,.ur-lang .languages .language-icon {
    margin-left: 10px;
    margin-right: 0
}

.ar-lang .languages__title-text,.fa-lang .languages__title-text,.ur-lang .languages__title-text {
    padding-left: 30px;
    padding-right: 0
}

.ar-lang .languages__title-text:after,.fa-lang .languages__title-text:after,.ur-lang .languages__title-text:after {
    left: 0;
    right: auto
}

.ar-lang .languages__list,.fa-lang .languages__list,.ur-lang .languages__list {
    margin-left: 0;
    margin-right: 0;
    right: -260px!important
}

.ar-lang .main-slider__in,.fa-lang .main-slider__in,.ur-lang .main-slider__in {
    direction: ltr;
    text-align: right
}

.ar-lang .main-slider__text-wrap,.fa-lang .main-slider__text-wrap,.ur-lang .main-slider__text-wrap {
    max-width: 38.37rem
}

.ar-lang .main-slider__title,.fa-lang .main-slider__title,.ur-lang .main-slider__title {
    font-family: inherit;
    letter-spacing: 0
}

.ar-lang .main-slider__scroll-down,.fa-lang .main-slider__scroll-down,.ur-lang .main-slider__scroll-down {
    left: unset;
    right: 0
}

.ar-lang .main-slider__scroll-down img,.fa-lang .main-slider__scroll-down img,.ur-lang .main-slider__scroll-down img {
    margin-left: 1rem;
    margin-right: 0
}

@media screen and (max-width: 550px) {
    .ar-lang .main-slider__scroll-down img,.fa-lang .main-slider__scroll-down img,.ur-lang .main-slider__scroll-down img {
        margin-left:.8rem;
        margin-right: 0
    }
}

.ar-lang .main-slider__desc,.fa-lang .main-slider__desc,.ur-lang .main-slider__desc {
    line-height: 1.6
}

.ar-lang .main-slider__btn-container2,.fa-lang .main-slider__btn-container2,.ur-lang .main-slider__btn-container2 {
    -webkit-box-pack: end;
    justify-content: flex-end
}

.ar-lang .conditions h2,.fa-lang .conditions h2,.ur-lang .conditions h2 {
    max-width: 31.68rem
}

.ar-lang .conditions .monitor,.fa-lang .conditions .monitor,.ur-lang .conditions .monitor {
    left: unset;
    right: calc(50% + .625rem)
}

@media screen and (max-width: 1100px) {
    .ar-lang .conditions .monitor,.fa-lang .conditions .monitor,.ur-lang .conditions .monitor {
        left:unset;
        right: calc(66.6% + .625rem)
    }
}

.ar-lang .conditions__star,.fa-lang .conditions__star,.ur-lang .conditions__star {
    left: unset;
    right: -1rem
}

@media screen and (max-width: 550px) {
    .ar-lang .conditions__star,.fa-lang .conditions__star,.ur-lang .conditions__star {
        left:unset;
        right: -.7rem
    }
}

.ar-lang .conditions__num,.fa-lang .conditions__num,.ur-lang .conditions__num {
    font-family: inherit
}

.ar-lang .why-we__in .why-list__sub-title,.fa-lang .why-we__in .why-list__sub-title,.ur-lang .why-we__in .why-list__sub-title {
    line-height: 1.6
}

.ar-lang .start-trading__text,.fa-lang .start-trading__text,.ur-lang .start-trading__text {
    margin-left: 2rem;
    margin-right: 0
}

@media screen and (max-width: 550px) {
    .ar-lang .start-trading__text,.fa-lang .start-trading__text,.ur-lang .start-trading__text {
        margin-left:0
    }
}

.ar-lang .start-trading,.fa-lang .start-trading,.ur-lang .start-trading {
    margin-top: .7rem
}

.ar-lang .start-trading__inn,.fa-lang .start-trading__inn,.ur-lang .start-trading__inn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

@media screen and (max-width: 550px) {
    .ar-lang .start-trading__inn,.fa-lang .start-trading__inn,.ur-lang .start-trading__inn {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.ar-lang .start-trading__text,.fa-lang .start-trading__text,.ur-lang .start-trading__text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .6px;
    margin-right: 2rem;
    text-transform: uppercase
}

@media screen and (max-width: 550px) {
    .ar-lang .start-trading__text,.fa-lang .start-trading__text,.ur-lang .start-trading__text {
        margin-bottom:1rem;
        margin-right: 0
    }
}

.ar-lang .offers .slider__arrows,.fa-lang .offers .slider__arrows,.ur-lang .offers .slider__arrows {
    left: 0;
    right: unset
}

.ar-lang .arrow-left,.fa-lang .arrow-left,.ur-lang .arrow-left {
    -webkit-box-ordinal-group: 3;
    order: 2
}

.ar-lang .arrow-right,.fa-lang .arrow-right,.ur-lang .arrow-right {
    -webkit-box-ordinal-group: 2;
    order: 1
}

.ar-lang .check-your-luck__in,.fa-lang .check-your-luck__in,.ur-lang .check-your-luck__in {
    padding: 4.1rem 13rem 3.8rem 5.5rem
}

.ar-lang .check-your-luck__in:before,.fa-lang .check-your-luck__in:before,.ur-lang .check-your-luck__in:before {
    left: unset;
    right: 0
}

.ar-lang .check-your-luck__in:after,.fa-lang .check-your-luck__in:after,.ur-lang .check-your-luck__in:after {
    background: -webkit-gradient(linear,left top,right top,from(#eef2f9),color-stop(50%,rgba(238,242,249,0)),to(rgba(238,242,249,0)));
    background: linear-gradient(90deg,#eef2f9,rgba(238,242,249,0) 50%,rgba(238,242,249,0));
    left: unset;
    right: 0
}

@media screen and (max-width: 550px) {
    .ar-lang .check-your-luck__in:after,.fa-lang .check-your-luck__in:after,.ur-lang .check-your-luck__in:after {
        background:-webkit-gradient(linear,left top,right top,from(#eef2f9),to(rgba(238,242,249,0)));
        background: linear-gradient(90deg,#eef2f9,rgba(238,242,249,0))
    }
}

.ar-lang .check-your-luck__in form input,.fa-lang .check-your-luck__in form input,.ur-lang .check-your-luck__in form input {
    font-family: inherit;
    font-weight: 500;
    margin-left: 1.25rem;
    margin-right: 0
}

@media screen and (max-width: 550px) {
    .ar-lang .check-your-luck__in form input,.fa-lang .check-your-luck__in form input,.ur-lang .check-your-luck__in form input {
        margin-left:0
    }
}

@media screen and (max-width: 750px) {
    .ar-lang .check-your-luck__in,.fa-lang .check-your-luck__in,.ur-lang .check-your-luck__in {
        padding:2.1rem 8rem 2.2rem 2.1rem
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .check-your-luck__in,.fa-lang .check-your-luck__in,.ur-lang .check-your-luck__in {
        padding:1.5rem
    }
}

.ar-lang .check-your-luck .title-desc,.fa-lang .check-your-luck .title-desc,.ur-lang .check-your-luck .title-desc {
    line-height: 1.6
}

.ar-lang .check-your-luck__left,.fa-lang .check-your-luck__left,.ur-lang .check-your-luck__left {
    -webkit-box-flex: 0;
    flex: 0 0 35%;
    padding-left: 2.813rem;
    padding-right: 0
}

@media screen and (max-width: 1000px) {
    .ar-lang .check-your-luck__left,.fa-lang .check-your-luck__left,.ur-lang .check-your-luck__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        padding-left: 0
    }
}

.ar-lang .check-your-luck__right,.fa-lang .check-your-luck__right,.ur-lang .check-your-luck__right {
    -webkit-box-flex: 0;
    flex: 0 0 auto
}

@media screen and (max-width: 1000px) {
    .ar-lang .check-your-luck__right,.fa-lang .check-your-luck__right,.ur-lang .check-your-luck__right {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

.ar-lang .applications__in .devices__title,.fa-lang .applications__in .devices__title,.ur-lang .applications__in .devices__title {
    padding: 0 10px
}

.ar-lang .applications .phone,.fa-lang .applications .phone,.ur-lang .applications .phone {
    left: 0;
    right: unset
}

.ar-lang .applications .phone_iphone,.fa-lang .applications .phone_iphone,.ur-lang .applications .phone_iphone {
    left: 10rem;
    right: unset
}

@media screen and (max-width: 1000px) {
    .ar-lang .applications .phone_iphone,.fa-lang .applications .phone_iphone,.ur-lang .applications .phone_iphone {
        left:2rem;
        right: unset
    }
}

.ar-lang .applications .phone_android,.fa-lang .applications .phone_android,.ur-lang .applications .phone_android {
    left: 0;
    right: unset
}

@media screen and (max-width: 1000px) {
    .ar-lang .applications .phone_android,.fa-lang .applications .phone_android,.ur-lang .applications .phone_android {
        left:-4rem;
        right: unset
    }
}

.ar-lang .reviews-slider__btn,.fa-lang .reviews-slider__btn,.ur-lang .reviews-slider__btn {
    left: 7rem;
    right: unset
}

.ar-lang .reviews-slider .slider__arrows,.fa-lang .reviews-slider .slider__arrows,.ur-lang .reviews-slider .slider__arrows {
    left: 3.3rem;
    right: unset
}

@media screen and (max-width: 700px) {
    .ar-lang .reviews-slider .slider__arrows,.fa-lang .reviews-slider .slider__arrows,.ur-lang .reviews-slider .slider__arrows {
        left:1.5rem;
        right: unset
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .reviews-slider .slider__arrows,.fa-lang .reviews-slider .slider__arrows,.ur-lang .reviews-slider .slider__arrows {
        left:1.25rem;
        right: unset
    }
}

.ar-lang .reviews-slider .slider__info-text,.fa-lang .reviews-slider .slider__info-text,.ur-lang .reviews-slider .slider__info-text {
    left: unset;
    right: 4.5rem
}

.ar-lang .reviews-slider .slider__footer,.fa-lang .reviews-slider .slider__footer,.ur-lang .reviews-slider .slider__footer {
    padding: 0 4.375rem 5rem 0
}

@media screen and (max-width: 1000px) {
    .ar-lang .reviews-slider .slider,.ar-lang .reviews-slider .slider__footer,.fa-lang .reviews-slider .slider,.fa-lang .reviews-slider .slider__footer,.ur-lang .reviews-slider .slider,.ur-lang .reviews-slider .slider__footer {
        padding:0
    }
}

.ar-lang .reviews-slider .review-item__stars span,.fa-lang .reviews-slider .review-item__stars span,.ur-lang .reviews-slider .review-item__stars span {
    margin-left: .35rem;
    margin-right: 0
}

.ar-lang .reviews-slider .review-item__info-text,.fa-lang .reviews-slider .review-item__info-text,.ur-lang .reviews-slider .review-item__info-text {
    text-align: left
}

.ar-lang .reviews-slider .review-item__footer,.fa-lang .reviews-slider .review-item__footer,.ur-lang .reviews-slider .review-item__footer {
    left: unset;
    right: 3.375rem
}

@media screen and (max-width: 700px) {
    .ar-lang .reviews-slider .review-item__footer,.fa-lang .reviews-slider .review-item__footer,.ur-lang .reviews-slider .review-item__footer {
        left:unset;
        right: 1.5rem
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .reviews-slider .review-item__footer,.fa-lang .reviews-slider .review-item__footer,.ur-lang .reviews-slider .review-item__footer {
        left:unset;
        right: 1.25rem
    }
}

.ar-lang .reviews-slider .review-item__flag,.fa-lang .reviews-slider .review-item__flag,.ur-lang .reviews-slider .review-item__flag {
    margin-left: .9rem;
    margin-right: 0
}

.ar-lang .payment-methods-list__item_last,.fa-lang .payment-methods-list__item_last,.ur-lang .payment-methods-list__item_last {
    text-align: right
}

.ar-lang .risk-disclosure__title,.fa-lang .risk-disclosure__title,.ur-lang .risk-disclosure__title {
    background-position: 100%;
    padding-left: 0;
    padding-right: 2.25rem
}

@media screen and (max-width: 600px) {
    .ar-lang .risk-disclosure__title,.fa-lang .risk-disclosure__title,.ur-lang .risk-disclosure__title {
        padding-left:0;
        padding-right: 2.1rem
    }
}

.ar-lang .risk-disclosure__brazil-block,.fa-lang .risk-disclosure__brazil-block,.ur-lang .risk-disclosure__brazil-block {
    margin-bottom: 2.5rem
}

.ar-lang .footer .socket__copyright,.fa-lang .footer .socket__copyright,.ur-lang .footer .socket__copyright {
    text-align: left
}

.ar-lang .footer .plus-21,.fa-lang .footer .plus-21,.ur-lang .footer .plus-21 {
    background-position: 0;
    padding-left: 3.438rem;
    padding-right: 0;
    text-align: left
}

@media screen and (max-width: 1000px) {
    .ar-lang .footer .plus-21,.fa-lang .footer .plus-21,.ur-lang .footer .plus-21 {
        padding-left:3rem;
        padding-right: 0
    }
}

@media screen and (max-width: 900px) {
    .ar-lang .footer .plus-21,.fa-lang .footer .plus-21,.ur-lang .footer .plus-21 {
        background-position:100%;
        padding-left: 0;
        padding-right: 3rem;
        text-align: right
    }
}

.ar-lang .sidebar .login .register-social .social-btn--fb,.fa-lang .sidebar .login .register-social .social-btn--fb,.ur-lang .sidebar .login .register-social .social-btn--fb {
    margin-left: .625rem;
    margin-right: 0
}

.ar-lang .sidebar-logged-in .user-balance__end,.fa-lang .sidebar-logged-in .user-balance__end,.ur-lang .sidebar-logged-in .user-balance__end {
    font-weight: 500
}

.ar-lang .form-group label,.fa-lang .form-group label,.ur-lang .form-group label {
    left: unset;
    right: 0
}

.ar-lang .form-group.recaptcha-block,.fa-lang .form-group.recaptcha-block,.ur-lang .form-group.recaptcha-block {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end
}

.ar-lang .checkbox label,.fa-lang .checkbox label,.ur-lang .checkbox label {
    padding-left: 0;
    padding-right: 2rem
}

.ar-lang .checkbox .checkmark,.fa-lang .checkbox .checkmark,.ur-lang .checkbox .checkmark {
    left: unset;
    right: 0
}

.ar-lang .winnings-reports__l,.fa-lang .winnings-reports__l,.ur-lang .winnings-reports__l {
    left: unset;
    margin-left: 12px;
    margin-right: 0;
    right: 0
}

.ar-lang .winnings-reports__r,.fa-lang .winnings-reports__r,.ur-lang .winnings-reports__r {
    padding-left: 0;
    padding-right: 52px
}

.ar-lang .winnings-reports__close,.fa-lang .winnings-reports__close,.ur-lang .winnings-reports__close {
    left: 10px;
    right: unset
}

.ar-lang .top-btn,.fa-lang .top-btn,.ur-lang .top-btn {
    right: 1.875rem
}

.ar-lang .sidebar__close,.fa-lang .sidebar__close,.ur-lang .sidebar__close {
    left: 1.875rem;
    right: unset
}

.ar-lang .winnings-reports__flag,.fa-lang .winnings-reports__flag,.ur-lang .winnings-reports__flag {
    left: unset;
    margin-left: .438rem;
    margin-right: 0;
    right: 0
}

.ar-lang .winnings-reports__info,.fa-lang .winnings-reports__info,.ur-lang .winnings-reports__info {
    line-height: 1.6
}

.ar-lang .winnings-reports__info .win,.fa-lang .winnings-reports__info .win,.ur-lang .winnings-reports__info .win {
    font-weight: 500
}

.ar-lang .winnings-reports__time-ago,.fa-lang .winnings-reports__time-ago,.ur-lang .winnings-reports__time-ago {
    padding-left: .625rem;
    padding-right: 0;
    text-align: left
}

@media screen and (max-width: 500px) {
    .ar-lang .risk-disclosure__link-title,.fa-lang .risk-disclosure__link-title,.ur-lang .risk-disclosure__link-title {
        text-align:right
    }
}

.ar-lang .breadcrumbs__item,.fa-lang .breadcrumbs__item,.ur-lang .breadcrumbs__item {
    margin-left: 28px;
    margin-right: 0
}

.ar-lang .breadcrumbs__item:before,.fa-lang .breadcrumbs__item:before,.ur-lang .breadcrumbs__item:before {
    left: -1.063rem;
    right: unset
}

.ar-lang .page .contacts__item,.fa-lang .page .contacts__item,.ur-lang .page .contacts__item {
    padding-left: 1rem;
    padding-right: 0
}

.ar-lang .page .contacts__title img,.fa-lang .page .contacts__title img,.ur-lang .page .contacts__title img {
    margin-left: .3rem;
    margin-right: 0
}

.ar-lang .page .contacts-form__left,.fa-lang .page .contacts-form__left,.ur-lang .page .contacts-form__left {
    padding-left: 3.125rem;
    padding-right: 0
}

@media screen and (max-width: 1000px) {
    .ar-lang .page .contacts-form__left,.fa-lang .page .contacts-form__left,.ur-lang .page .contacts-form__left {
        padding-left:0
    }
}

.ar-lang .page .contacts-form .g-recaptcha,.fa-lang .page .contacts-form .g-recaptcha,.ur-lang .page .contacts-form .g-recaptcha {
    -webkit-transform-origin: right center!important;
    transform-origin: right center!important
}

.ar-lang .page .contacts-form .form-group.recaptcha-block,.fa-lang .page .contacts-form .form-group.recaptcha-block,.ur-lang .page .contacts-form .form-group.recaptcha-block {
    -webkit-box-pack: start;
    justify-content: flex-start
}

.ar-lang .page .contacts-form__desc,.ar-lang .page .contacts-form__title,.fa-lang .page .contacts-form__desc,.fa-lang .page .contacts-form__title,.ur-lang .page .contacts-form__desc,.ur-lang .page .contacts-form__title {
    margin-left: auto
}

.ar-lang .page--reviews .reviews-list,.fa-lang .page--reviews .reviews-list,.ur-lang .page--reviews .reviews-list {
    margin: -1.25rem -1.25rem 0 0
}

@media screen and (max-width: 400px) {
    .ar-lang .page--reviews .review__uid,.fa-lang .page--reviews .review__uid,.ur-lang .page--reviews .review__uid {
        margin-left:0;
        margin-right: .938rem
    }

    .ar-lang .page--reviews .review__name,.fa-lang .page--reviews .review__name,.ur-lang .page--reviews .review__name {
        margin-left: 0;
        margin-right: auto
    }
}

.ar-lang .page--reviews .review__date,.fa-lang .page--reviews .review__date,.ur-lang .page--reviews .review__date {
    margin-left: 0;
    margin-right: auto
}

.ar-lang .page--reviews .form-block .alert-msg__text,.fa-lang .page--reviews .form-block .alert-msg__text,.ur-lang .page--reviews .form-block .alert-msg__text {
    margin-left: 0;
    margin-right: 1.25rem
}

@media screen and (max-width: 1200px) {
    .ar-lang .page--reviews .row__l .reviews-list,.fa-lang .page--reviews .row__l .reviews-list,.ur-lang .page--reviews .row__l .reviews-list {
        margin-left:-1.25rem
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .page--about-us h2,.fa-lang .page--about-us h2,.ur-lang .page--about-us h2 {
        text-align:right
    }
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--about-us .why__left,.fa-lang .page--about-us .why__left,.ur-lang .page--about-us .why__left {
        padding-left:2rem;
        padding-right: 0
    }
}

@media screen and (max-width: 850px) {
    .ar-lang .page--about-us .why__left,.fa-lang .page--about-us .why__left,.ur-lang .page--about-us .why__left {
        padding-left:0;
        padding-right: 0
    }
}

.ar-lang .page--about-us .how-we-work__left,.fa-lang .page--about-us .how-we-work__left,.ur-lang .page--about-us .how-we-work__left {
    padding-left: 3rem;
    padding-right: 0
}

@media screen and (max-width: 1100px) {
    .ar-lang .page--about-us .how-we-work__left,.fa-lang .page--about-us .how-we-work__left,.ur-lang .page--about-us .how-we-work__left {
        padding-left:0;
        padding-right: 0
    }
}

.ar-lang .page--about-us .how-we-work__svg,.fa-lang .page--about-us .how-we-work__svg,.ur-lang .page--about-us .how-we-work__svg {
    margin-left: 0;
    margin-right: -.5rem
}

@media screen and (max-width: 550px) {
    .ar-lang .page--about-us .how-we-work__svg,.fa-lang .page--about-us .how-we-work__svg,.ur-lang .page--about-us .how-we-work__svg {
        margin-left:0;
        margin-right: -.4rem
    }
}

.ar-lang .page--about-us .documents__info-wrap,.fa-lang .page--about-us .documents__info-wrap,.ur-lang .page--about-us .documents__info-wrap {
    padding-left: 0;
    padding-right: 4rem
}

@media screen and (max-width: 850px) {
    .ar-lang .page--about-us .documents__info-wrap,.fa-lang .page--about-us .documents__info-wrap,.ur-lang .page--about-us .documents__info-wrap {
        padding-left:0;
        padding-right: 0
    }
}

.ar-lang .page--about-us .documents__left,.fa-lang .page--about-us .documents__left,.ur-lang .page--about-us .documents__left {
    padding-left: 2rem;
    padding-right: 0
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--about-us .documents__left,.fa-lang .page--about-us .documents__left,.ur-lang .page--about-us .documents__left {
        padding-left:0;
        padding-right: 0
    }
}

.ar-lang .page--about-us .timeline .slider__header,.fa-lang .page--about-us .timeline .slider__header,.ur-lang .page--about-us .timeline .slider__header {
    padding-left: 0;
    padding-right: 2.5rem
}

.ar-lang .page--about-us .timeline .slider__header_year:before,.fa-lang .page--about-us .timeline .slider__header_year:before,.ur-lang .page--about-us .timeline .slider__header_year:before {
    left: unset;
    right: .95rem
}

.ar-lang .page--about-us .timeline .slider__header_first:after,.fa-lang .page--about-us .timeline .slider__header_first:after,.ur-lang .page--about-us .timeline .slider__header_first:after {
    left: unset;
    right: -.05rem
}

@media screen and (max-width: 700px) {
    .ar-lang .page--about-us .timeline .slider__header,.fa-lang .page--about-us .timeline .slider__header,.ur-lang .page--about-us .timeline .slider__header {
        padding-left:0;
        padding-right: 2rem
    }
}

.ar-lang .page--about-us .timeline .slider__divider:before,.fa-lang .page--about-us .timeline .slider__divider:before,.ur-lang .page--about-us .timeline .slider__divider:before {
    left: unset;
    right: 3.6rem
}

.ar-lang .page--about-us .timeline .slider__divider:after,.fa-lang .page--about-us .timeline .slider__divider:after,.ur-lang .page--about-us .timeline .slider__divider:after {
    left: unset;
    right: 3.35rem
}

.ar-lang .page--about-us .timeline .slider__info li,.fa-lang .page--about-us .timeline .slider__info li,.ur-lang .page--about-us .timeline .slider__info li {
    padding-left: 0;
    padding-right: 1rem
}

.ar-lang .page--about-us .timeline .slider__info li:before,.fa-lang .page--about-us .timeline .slider__info li:before,.ur-lang .page--about-us .timeline .slider__info li:before {
    left: unset;
    right: 0
}

.ar-lang .page--about-us .social-link__in,.fa-lang .page--about-us .social-link__in,.ur-lang .page--about-us .social-link__in {
    text-align: right
}

.ar-lang .page--about-us .social-link__in svg,.fa-lang .page--about-us .social-link__in svg,.ur-lang .page--about-us .social-link__in svg {
    margin-left: .5rem;
    margin-right: 0
}

.ar-lang .page--assets .tab-list li,.fa-lang .page--assets .tab-list li,.ur-lang .page--assets .tab-list li {
    margin-left: 1.875rem;
    margin-right: 0
}

.ar-lang .page--assets .tab-list li:first-child,.fa-lang .page--assets .tab-list li:first-child,.ur-lang .page--assets .tab-list li:first-child {
    margin-left: 1.875rem
}

.ar-lang .page--assets .tab-list li:last-child,.fa-lang .page--assets .tab-list li:last-child,.ur-lang .page--assets .tab-list li:last-child {
    margin-left: 0
}

@media screen and (max-width: 600px) {
    .ar-lang .page--assets .tab-list li,.fa-lang .page--assets .tab-list li,.ur-lang .page--assets .tab-list li {
        margin-left:0;
        margin-right: 0
    }
}

.ar-lang .page--assets .assets-table .divider:after,.fa-lang .page--assets .assets-table .divider:after,.ur-lang .page--assets .assets-table .divider:after {
    left: 1rem;
    right: unset
}

.ar-lang .page--assets .assets-table-container:before,.fa-lang .page--assets .assets-table-container:before,.ur-lang .page--assets .assets-table-container:before {
    left: unset;
    right: 15.5%
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .assets-table-container:before,.fa-lang .page--assets .assets-table-container:before,.ur-lang .page--assets .assets-table-container:before {
        left:unset;
        right: 10rem
    }
}

.ar-lang .page--assets .assets-table-container:after,.fa-lang .page--assets .assets-table-container:after,.ur-lang .page--assets .assets-table-container:after {
    left: unset;
    right: 28.5%
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .assets-table-container:after,.fa-lang .page--assets .assets-table-container:after,.ur-lang .page--assets .assets-table-container:after {
        left:unset;
        right: 18rem
    }
}

.ar-lang .page--assets .assets-table .row .time-line,.fa-lang .page--assets .assets-table .row .time-line,.ur-lang .page--assets .assets-table .row .time-line {
    margin-left: 0;
    margin-right: 3.55%
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .assets-table .row .time-line,.fa-lang .page--assets .assets-table .row .time-line,.ur-lang .page--assets .assets-table .row .time-line {
        margin-right:0
    }
}

.ar-lang .page--assets .assets-table .row .symbol,.fa-lang .page--assets .assets-table .row .symbol,.ur-lang .page--assets .assets-table .row .symbol {
    padding: 0 .5rem 0 2.5rem
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--assets .assets-table .row .symbol,.fa-lang .page--assets .assets-table .row .symbol,.ur-lang .page--assets .assets-table .row .symbol {
        padding:0 .5rem 0 1.5rem
    }
}

@media screen and (max-width: 500px) {
    .ar-lang .page--assets .assets-table .row .symbol,.fa-lang .page--assets .assets-table .row .symbol,.ur-lang .page--assets .assets-table .row .symbol {
        padding-left:.5rem;
        padding-right: 1.5rem
    }
}

.ar-lang .page--assets .assets-table .row .trading-status,.fa-lang .page--assets .assets-table .row .trading-status,.ur-lang .page--assets .assets-table .row .trading-status {
    left: unset;
    right: 11.7%
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--assets .assets-table .row .trading-status,.fa-lang .page--assets .assets-table .row .trading-status,.ur-lang .page--assets .assets-table .row .trading-status {
        left:unset;
        right: 12.7%
    }
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .assets-table .row .trading-status,.fa-lang .page--assets .assets-table .row .trading-status,.ur-lang .page--assets .assets-table .row .trading-status {
        left:unset;
        right: 8.5rem;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

@media screen and (max-width: 500px) {
    .ar-lang .page--assets .assets-table .row .trading-status,.fa-lang .page--assets .assets-table .row .trading-status,.ur-lang .page--assets .assets-table .row .trading-status {
        left:unset;
        right: .55rem
    }

    .ar-lang .page--assets .assets-table .row>div,.fa-lang .page--assets .assets-table .row>div,.ur-lang .page--assets .assets-table .row>div {
        text-align: right
    }
}

.ar-lang .page--assets .assets-table-header .right-block,.fa-lang .page--assets .assets-table-header .right-block,.ur-lang .page--assets .assets-table-header .right-block {
    margin-left: 0;
    margin-right: 2.45%
}

.ar-lang .page--assets .assets-table-header .right-block .bottom .hour:after,.fa-lang .page--assets .assets-table-header .right-block .bottom .hour:after,.ur-lang .page--assets .assets-table-header .right-block .bottom .hour:after {
    margin-left: 0;
    margin-right: -2px
}

.ar-lang .page--assets .assets-table-header .right-block .bottom .hour.current:before,.fa-lang .page--assets .assets-table-header .right-block .bottom .hour.current:before,.ur-lang .page--assets .assets-table-header .right-block .bottom .hour.current:before {
    left: unset;
    right: calc(50% - 2px)
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .assets-table-header .right-block,.fa-lang .page--assets .assets-table-header .right-block,.ur-lang .page--assets .assets-table-header .right-block {
        margin-right:0
    }
}

.ar-lang .page--assets .assets-table-header .left-block,.fa-lang .page--assets .assets-table-header .left-block,.ur-lang .page--assets .assets-table-header .left-block {
    padding-left: 0;
    padding-right: .625rem
}

@media screen and (max-width: 500px) {
    .ar-lang .page--assets .assets-table-header>div,.fa-lang .page--assets .assets-table-header>div,.ur-lang .page--assets .assets-table-header>div {
        text-align:right
    }
}

.ar-lang .page--assets .tab-content__current .assets-table-header .left-block,.fa-lang .page--assets .tab-content__current .assets-table-header .left-block,.ur-lang .page--assets .tab-content__current .assets-table-header .left-block {
    padding-left: 0;
    padding-right: 2.4rem
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .tab-content__current .assets-table-header .left-block,.fa-lang .page--assets .tab-content__current .assets-table-header .left-block,.ur-lang .page--assets .tab-content__current .assets-table-header .left-block {
        padding-left:0;
        padding-right: 1.25rem
    }
}

.ar-lang .page--assets .tab-content__current .assets-table-header .right-block,.fa-lang .page--assets .tab-content__current .assets-table-header .right-block,.ur-lang .page--assets .tab-content__current .assets-table-header .right-block {
    border-right: 0;
    margin-right: 0;
    padding-left: 4rem;
    padding-right: 0
}

.ar-lang .page--assets .tab-content__current .assets-table-header>div,.fa-lang .page--assets .tab-content__current .assets-table-header>div,.ur-lang .page--assets .tab-content__current .assets-table-header>div {
    text-align: right
}

.ar-lang .page--assets .tab-content__current .assets-table .row .symbol,.fa-lang .page--assets .tab-content__current .assets-table .row .symbol,.ur-lang .page--assets .tab-content__current .assets-table .row .symbol {
    padding: 0 3.5rem 0 1rem
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .tab-content__current .assets-table .row .symbol,.fa-lang .page--assets .tab-content__current .assets-table .row .symbol,.ur-lang .page--assets .tab-content__current .assets-table .row .symbol {
        padding:0 2rem 0 1rem
    }
}

.ar-lang .page--assets .tab-content__current .assets-table .row .trading-status,.fa-lang .page--assets .tab-content__current .assets-table .row .trading-status,.ur-lang .page--assets .tab-content__current .assets-table .row .trading-status {
    left: unset;
    right: 2.25rem
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .tab-content__current .assets-table .row .trading-status,.fa-lang .page--assets .tab-content__current .assets-table .row .trading-status,.ur-lang .page--assets .tab-content__current .assets-table .row .trading-status {
        left:unset;
        right: 1rem
    }
}

.ar-lang .page--assets .tab-content__current .assets-table .row .payout,.fa-lang .page--assets .tab-content__current .assets-table .row .payout,.ur-lang .page--assets .tab-content__current .assets-table .row .payout {
    padding-left: 2rem;
    padding-right: 0
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--assets .tab-content__current .assets-table .row .payout,.fa-lang .page--assets .tab-content__current .assets-table .row .payout,.ur-lang .page--assets .tab-content__current .assets-table .row .payout {
        padding-left:0
    }
}

.ar-lang .page--assets .tab-content__current .assets-table .row>div,.fa-lang .page--assets .tab-content__current .assets-table .row>div,.ur-lang .page--assets .tab-content__current .assets-table .row>div {
    text-align: right
}

.ar-lang .page--assets .tab-content__current .assets-table-comment,.fa-lang .page--assets .tab-content__current .assets-table-comment,.ur-lang .page--assets .tab-content__current .assets-table-comment {
    padding: 2.5rem 2.3rem 1rem .5rem
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .tab-content__current .assets-table-comment,.fa-lang .page--assets .tab-content__current .assets-table-comment,.ur-lang .page--assets .tab-content__current .assets-table-comment {
        padding:2rem 1rem 1rem .5rem
    }
}

.ar-lang .page--assets .tab-content__current .assets-table-date,.fa-lang .page--assets .tab-content__current .assets-table-date,.ur-lang .page--assets .tab-content__current .assets-table-date {
    padding: 1.5rem 2.3rem 0 .5rem
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .tab-content__current .assets-table-date,.fa-lang .page--assets .tab-content__current .assets-table-date,.ur-lang .page--assets .tab-content__current .assets-table-date {
        padding:1.5rem 1rem 0 .5rem
    }
}

@media screen and (max-width: 1200px) {
    .ar-lang .page--assets .tab-content__current .filter,.fa-lang .page--assets .tab-content__current .filter,.ur-lang .page--assets .tab-content__current .filter {
        padding-left:0;
        padding-right: 1.45rem
    }
}

@media screen and (max-width: 750px) {
    .ar-lang .page--assets .tab-content__current .filter,.fa-lang .page--assets .tab-content__current .filter,.ur-lang .page--assets .tab-content__current .filter {
        padding-right:1rem
    }
}

.ar-lang .page--regional-representative .intro__man,.fa-lang .page--regional-representative .intro__man,.ur-lang .page--regional-representative .intro__man {
    left: unset;
    right: 52.5rem
}

.ar-lang .page--regional-representative .how-list__num:before,.fa-lang .page--regional-representative .how-list__num:before,.ur-lang .page--regional-representative .how-list__num:before {
    left: unset;
    right: -.3rem
}

.ar-lang .page--regional-representative select.form-control,.fa-lang .page--regional-representative select.form-control,.ur-lang .page--regional-representative select.form-control {
    background-position: 10px calc(1em + 2px),15px calc(1em + 2px)
}

.ar-lang .page--regional-representative .form .form-group label,.fa-lang .page--regional-representative .form .form-group label,.ur-lang .page--regional-representative .form .form-group label {
    text-align: right
}

.ar-lang .page--regulatory-environment .re__flag,.fa-lang .page--regulatory-environment .re__flag,.ur-lang .page--regulatory-environment .re__flag {
    margin-left: 1.8rem;
    margin-right: 0
}

.ar-lang .page .top-section .bg,.fa-lang .page .top-section .bg,.ur-lang .page .top-section .bg {
    left: unset;
    right: 0
}

.ar-lang .page .top-section .bg__item_1,.fa-lang .page .top-section .bg__item_1,.ur-lang .page .top-section .bg__item_1 {
    left: unset;
    right: 19.5rem;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

@media screen and (max-width: 1279px) {
    .ar-lang .page .top-section .bg__item_1,.fa-lang .page .top-section .bg__item_1,.ur-lang .page .top-section .bg__item_1 {
        left:-53rem;
        right: unset
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .page--quick-start .title-section h2,.fa-lang .page--quick-start .title-section h2,.ur-lang .page--quick-start .title-section h2 {
        text-align:right
    }
}

.ar-lang .page--quick-start .steps__num,.fa-lang .page--quick-start .steps__num,.ur-lang .page--quick-start .steps__num {
    margin-left: 1rem;
    margin-right: 0
}

@media screen and (max-width: 800px) {
    .ar-lang .page--quick-start .steps__num,.fa-lang .page--quick-start .steps__num,.ur-lang .page--quick-start .steps__num {
        margin-left:.75rem;
        margin-right: 0
    }
}

.ar-lang .page--quick-start .steps__btn,.fa-lang .page--quick-start .steps__btn,.ur-lang .page--quick-start .steps__btn {
    padding-left: 1.34rem;
    padding-right: 0
}

.ar-lang .page--quick-start .steps__btn:after,.ar-lang .page--quick-start .steps__btn:before,.fa-lang .page--quick-start .steps__btn:after,.fa-lang .page--quick-start .steps__btn:before,.ur-lang .page--quick-start .steps__btn:after,.ur-lang .page--quick-start .steps__btn:before {
    left: 0;
    right: unset
}

.ar-lang .page--quick-start .steps__left,.fa-lang .page--quick-start .steps__left,.ur-lang .page--quick-start .steps__left {
    padding-left: 3.125rem;
    padding-right: 0
}

.ar-lang .page--quick-start .steps__img,.fa-lang .page--quick-start .steps__img,.ur-lang .page--quick-start .steps__img {
    left: unset;
    margin-left: 0;
    margin-right: -11.3rem;
    right: 50%
}

.ar-lang .page--quick-start .steps__img_0,.fa-lang .page--quick-start .steps__img_0,.ur-lang .page--quick-start .steps__img_0 {
    margin-left: -7.5rem;
    margin-right: -7.5rem
}

@media screen and (max-width: 900px) {
    .ar-lang .page--quick-start .steps__img,.fa-lang .page--quick-start .steps__img,.ur-lang .page--quick-start .steps__img {
        left:unset;
        margin-left: 0;
        margin-right: 0;
        right: 0
    }
}

.ar-lang .page--quick-start .steps__slider,.fa-lang .page--quick-start .steps__slider,.ur-lang .page--quick-start .steps__slider {
    left: unset;
    right: 50%
}

@media screen and (max-width: 900px) {
    .ar-lang .page--quick-start .steps__slider,.fa-lang .page--quick-start .steps__slider,.ur-lang .page--quick-start .steps__slider {
        left:unset;
        margin-left: 0;
        margin-right: 0;
        right: 0
    }
}

.ar-lang .page--quick-start .steps_right .steps__slider,.fa-lang .page--quick-start .steps_right .steps__slider,.ur-lang .page--quick-start .steps_right .steps__slider {
    left: unset;
    right: 0
}

@media screen and (max-width: 900px) {
    .ar-lang .page--quick-start .steps .slider__img-desc,.fa-lang .page--quick-start .steps .slider__img-desc,.ur-lang .page--quick-start .steps .slider__img-desc {
        text-align:right
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .page--quick-start .steps .slider__img-desc,.fa-lang .page--quick-start .steps .slider__img-desc,.ur-lang .page--quick-start .steps .slider__img-desc {
        text-align:center
    }
}

.ar-lang .page--quick-start .steps .slider__arrow svg,.fa-lang .page--quick-start .steps .slider__arrow svg,.ur-lang .page--quick-start .steps .slider__arrow svg {
    margin-left: -2px;
    margin-right: 0
}

.ar-lang .page--quick-start .steps .slider__arrow-left,.fa-lang .page--quick-start .steps .slider__arrow-left,.ur-lang .page--quick-start .steps .slider__arrow-left {
    margin-left: .3rem;
    margin-right: 0
}

.ar-lang .page--quick-start .steps .slider__arrow-left svg,.fa-lang .page--quick-start .steps .slider__arrow-left svg,.ur-lang .page--quick-start .steps .slider__arrow-left svg {
    margin-left: -2px;
    margin-right: 0
}

.ar-lang .page--quick-start .steps .dots__btn,.fa-lang .page--quick-start .steps .dots__btn,.ur-lang .page--quick-start .steps .dots__btn {
    left: 0
}

@media screen and (max-width: 550px) {
    .ar-lang .page--quick-start .info .item__title,.fa-lang .page--quick-start .info .item__title,.ur-lang .page--quick-start .info .item__title {
        text-align:right
    }
}

.ar-lang .page--quick-start .info .item__btn,.fa-lang .page--quick-start .info .item__btn,.ur-lang .page--quick-start .info .item__btn {
    left: unset;
    right: 3rem
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--quick-start .info .item__btn,.fa-lang .page--quick-start .info .item__btn,.ur-lang .page--quick-start .info .item__btn {
        left:unset;
        right: 1.5rem
    }
}

.ar-lang .your-earnings .modal__cross,.fa-lang .your-earnings .modal__cross,.ur-lang .your-earnings .modal__cross {
    left: .3rem;
    right: unset
}

.ar-lang .your-earnings__in .status,.fa-lang .your-earnings__in .status,.ur-lang .your-earnings__in .status {
    margin-left: 7px;
    margin-right: 0
}

.ar-lang .page--affiliate-program .first-section__list li,.fa-lang .page--affiliate-program .first-section__list li,.ur-lang .page--affiliate-program .first-section__list li {
    padding-left: 0;
    padding-right: 2rem
}

.ar-lang .page--affiliate-program .first-section__list li:before,.fa-lang .page--affiliate-program .first-section__list li:before,.ur-lang .page--affiliate-program .first-section__list li:before {
    left: unset;
    right: .35rem
}

.ar-lang .page--affiliate-program .first-section .bg,.fa-lang .page--affiliate-program .first-section .bg,.ur-lang .page--affiliate-program .first-section .bg {
    left: unset;
    right: 37.563rem;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.ar-lang .page--affiliate-program .first-section .bg:after,.fa-lang .page--affiliate-program .first-section .bg:after,.ur-lang .page--affiliate-program .first-section .bg:after {
    top: 29.45rem
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--affiliate-program .first-section .bg,.fa-lang .page--affiliate-program .first-section .bg,.ur-lang .page--affiliate-program .first-section .bg {
        left:unset;
        right: 32.563rem
    }
}

@media screen and (max-width: 900px) {
    .ar-lang .page--affiliate-program .first-section .bg,.fa-lang .page--affiliate-program .first-section .bg,.ur-lang .page--affiliate-program .first-section .bg {
        left:unset;
        right: 30.563rem
    }
}

@media screen and (max-width: 700px) {
    .ar-lang .page--affiliate-program .first-section .bg,.fa-lang .page--affiliate-program .first-section .bg,.ur-lang .page--affiliate-program .first-section .bg {
        left:unset;
        margin-left: 0;
        margin-right: -12.8rem;
        right: 50%
    }
}

.ar-lang .page--affiliate-program .advantages__left,.fa-lang .page--affiliate-program .advantages__left,.ur-lang .page--affiliate-program .advantages__left {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--affiliate-program .advantages__left,.fa-lang .page--affiliate-program .advantages__left,.ur-lang .page--affiliate-program .advantages__left {
        left:unset;
        margin-left: 0;
        margin-right: -9.5rem;
        right: 50%
    }
}

.ar-lang .page--affiliate-program .advantages__img,.fa-lang .page--affiliate-program .advantages__img,.ur-lang .page--affiliate-program .advantages__img {
    left: unset;
    right: 7rem
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--affiliate-program .advantages__img,.fa-lang .page--affiliate-program .advantages__img,.ur-lang .page--affiliate-program .advantages__img {
        left:unset;
        right: 0
    }
}

.ar-lang .page--affiliate-program .advantages .list__item:before,.fa-lang .page--affiliate-program .advantages .list__item:before,.ur-lang .page--affiliate-program .advantages .list__item:before {
    left: unset;
    right: 0
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--affiliate-program .advantages .list__item,.fa-lang .page--affiliate-program .advantages .list__item,.ur-lang .page--affiliate-program .advantages .list__item {
        padding:0 2.15rem 0 0
    }
}

.ar-lang .page--affiliate-program .advantages .info__text,.fa-lang .page--affiliate-program .advantages .info__text,.ur-lang .page--affiliate-program .advantages .info__text {
    padding-left: 2rem;
    padding-right: 0
}

@media screen and (max-width: 700px) {
    .ar-lang .page--affiliate-program .advantages .info__text,.fa-lang .page--affiliate-program .advantages .info__text,.ur-lang .page--affiliate-program .advantages .info__text {
        padding-left:0;
        padding-right: 0
    }
}

.ar-lang .page--affiliate-program .steps__num,.fa-lang .page--affiliate-program .steps__num,.ur-lang .page--affiliate-program .steps__num {
    margin-left: 1rem;
    margin-right: 0
}

@media screen and (max-width: 800px) {
    .ar-lang .page--affiliate-program .steps__num,.fa-lang .page--affiliate-program .steps__num,.ur-lang .page--affiliate-program .steps__num {
        margin-left:.75rem;
        margin-right: 0
    }
}

.ar-lang .page--affiliate-program .steps__left,.fa-lang .page--affiliate-program .steps__left,.ur-lang .page--affiliate-program .steps__left {
    padding-left: 3.125rem;
    padding-right: 0
}

@media screen and (max-width: 900px) {
    .ar-lang .page--affiliate-program .steps__left,.fa-lang .page--affiliate-program .steps__left,.ur-lang .page--affiliate-program .steps__left {
        padding-left:0;
        padding-right: 0
    }
}

.ar-lang .page--affiliate-program .steps__img,.fa-lang .page--affiliate-program .steps__img,.ur-lang .page--affiliate-program .steps__img {
    left: unset;
    margin-left: 0;
    margin-right: -11.3rem;
    right: 50%
}

.ar-lang .page--affiliate-program .steps__img_0,.fa-lang .page--affiliate-program .steps__img_0,.ur-lang .page--affiliate-program .steps__img_0 {
    margin-left: 0;
    margin-right: -7.5rem
}

@media screen and (max-width: 900px) {
    .ar-lang .page--affiliate-program .steps__img_0,.fa-lang .page--affiliate-program .steps__img_0,.ur-lang .page--affiliate-program .steps__img_0 {
        margin-left:0;
        margin-right: -10.5rem
    }
}

@media screen and (max-width: 800px) {
    .ar-lang .page--affiliate-program .steps__img_0,.fa-lang .page--affiliate-program .steps__img_0,.ur-lang .page--affiliate-program .steps__img_0 {
        margin-left:0!important;
        margin-right: -7.5rem!important
    }
}

@media screen and (max-width: 900px) {
    .ar-lang .page--affiliate-program .steps__img,.fa-lang .page--affiliate-program .steps__img,.ur-lang .page--affiliate-program .steps__img {
        margin-left:0;
        margin-right: -8.3rem
    }
}

@media screen and (max-width: 550px) {
    .ar-lang .page--affiliate-program .steps__img,.fa-lang .page--affiliate-program .steps__img,.ur-lang .page--affiliate-program .steps__img {
        margin-left:-6.3rem;
        margin-right: -6.3rem
    }
}

.ar-lang .page--affiliate-program .steps_right .steps__slider,.fa-lang .page--affiliate-program .steps_right .steps__slider,.ur-lang .page--affiliate-program .steps_right .steps__slider {
    left: unset;
    right: 0
}

.ar-lang .page--affiliate-program .level-tabs__btn svg,.fa-lang .page--affiliate-program .level-tabs__btn svg,.ur-lang .page--affiliate-program .level-tabs__btn svg {
    margin-left: .8rem;
    margin-right: 0
}

.ar-lang .page--affiliate-program .level-tabs__info table,.fa-lang .page--affiliate-program .level-tabs__info table,.ur-lang .page--affiliate-program .level-tabs__info table {
    text-align: right
}

.ar-lang .page--affiliate-program .form-wrap .bg,.fa-lang .page--affiliate-program .form-wrap .bg,.ur-lang .page--affiliate-program .form-wrap .bg {
    left: unset;
    right: 40rem;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

@media screen and (max-width: 1000px) {
    .ar-lang .page--affiliate-program .form-wrap .bg,.fa-lang .page--affiliate-program .form-wrap .bg,.ur-lang .page--affiliate-program .form-wrap .bg {
        right:unset
    }
}

.ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
    right: -7.2rem
}

.ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
    right: 7.2rem
}

@media screen and (max-width: 1680px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-7.6rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 7.6rem
    }
}

@media screen and (max-width: 1450px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-8.2rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 8.2rem
    }
}

@media screen and (max-width: 1350px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-8.85rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 8.85rem
    }
}

@media screen and (max-width: 1000px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-7.2rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 7.2rem
    }
}

@media screen and (max-width: 768px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-3.1rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 3.1rem
    }
}

@media screen and (max-width: 700px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-2.8rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 2.8rem
    }
}

@media screen and (max-width: 380px) {
    .ar-lang.po-trade .header .info__text,.fa-lang.po-trade .header .info__text,.ur-lang.po-trade .header .info__text {
        right:-2rem
    }

    .ar-lang.po-trade .header .info__text:before,.fa-lang.po-trade .header .info__text:before,.ur-lang.po-trade .header .info__text:before {
        right: 2rem
    }
}

.de-lang .offers__title {
    max-width: 100%
}

.form-group {
    margin-bottom: 1rem;
    position: relative
}

.form-group label {
    color: #96aec1;
    display: inline-block;
    left: 0;
    margin-bottom: .5rem;
    position: absolute;
    top: .4rem;
    -webkit-transform: translate(0) scale(1);
    transform: translate(0) scale(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: color .2s cubic-bezier(0,0,.2,1) 0s,-webkit-transform .2s cubic-bezier(0,0,.2,1) 0s;
    transition: color .2s cubic-bezier(0,0,.2,1) 0s,-webkit-transform .2s cubic-bezier(0,0,.2,1) 0s;
    transition: color .2s cubic-bezier(0,0,.2,1) 0s,transform .2s cubic-bezier(0,0,.2,1) 0s;
    transition: color .2s cubic-bezier(0,0,.2,1) 0s,transform .2s cubic-bezier(0,0,.2,1) 0s,-webkit-transform .2s cubic-bezier(0,0,.2,1) 0s;
    z-index: 1
}

.form-group .g-recaptcha {
    display: block;
    margin: 0
}

.form-group .intl-tel-input.allow-dropdown .selected-flag {
    padding-left: 0;
    width: 40px
}

.form-group .intl-tel-input.allow-dropdown input[type=text] {
    padding-left: 45px
}

.form-group_filled label {
    color: #fff;
    -webkit-transform: translateY(-1rem) scale(.75);
    transform: translateY(-1rem) scale(.75)
}

.form-group.has-error label {
    color: #a94442
}

.form-group.has-error .form-control {
    border-color: #a94442
}

.form-group.has-error .form-text {
    color: #a94442
}

.form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid hsla(0,2%,89%,.2);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: hsla(0,0%,100%,.8);
    font-family: NunitoSans;
    font-size: 1rem;
    font-weight: 300;
    padding: .5rem 0;
    position: relative;
    width: 100%;
    z-index: 2
}

.form-control::-webkit-input-placeholder {
    color: transparent
}

.form-control::-moz-placeholder {
    color: transparent
}

.form-control::placeholder {
    color: transparent
}

.form-control:focus+label,.form-control_filled+label {
    color: #fff;
    -webkit-transform: translateY(-1rem) scale(.75);
    transform: translateY(-1rem) scale(.75)
}

select.form-control {
    background-image: linear-gradient(45deg,transparent 50%,#555 0),linear-gradient(135deg,#555 50%,transparent 0);
    background-position: calc(100% - 20px) calc(1em + 2px),calc(100% - 15px) calc(1em + 2px);
    background-repeat: no-repeat;
    background-size: 5px 5px,5px 5px,1px 1.5em
}

select.form-control option {
    color: #000
}

.intl-tel-input+label,select.form-control+label {
    color: #fff;
    -webkit-transform: translateY(-1rem) scale(.75);
    transform: translateY(-1rem) scale(.75)
}

.checkbox {
    margin-bottom: 3rem
}

.checkbox label {
    cursor: pointer;
    display: block;
    font-size: .75rem;
    font-weight: 300;
    line-height: 1.1rem;
    margin-bottom: .75rem;
    padding-left: 1.8rem;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.checkbox a {
    border-bottom: 1px solid hsla(0,0%,100%,.6);
    color: hsla(0,0%,100%,.6);
    display: inline-block;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.checkbox a:hover {
    border-bottom: 1px solid hsla(0,0%,100%,0)
}

.checkbox .checkmark {
    border: 2px solid #fff;
    border-radius: 4px;
    height: 1rem;
    left: 0;
    top: 2px;
    width: 1rem
}

.checkbox .checkmark,.checkbox .checkmark:after {
    position: absolute;
    -webkit-transition: .3s;
    transition: .3s
}

.checkbox .checkmark:after {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: .5rem;
    left: .275rem;
    opacity: 0;
    top: 1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: .25rem
}

.checkbox input {
    cursor: pointer;
    opacity: 0;
    position: absolute
}

.checkbox input:checked~.checkmark:after {
    opacity: 1
}

.checkbox_small .checkmark {
    top: -2px
}

.form-check {
    display: block;
    margin-bottom: .5rem;
    position: relative
}

.form-check-label {
    margin-bottom: 0;
    padding-left: 1.25rem
}

.form-check-input {
    margin-left: -1.25rem;
    margin-top: .25rem
}

.form-text {
    display: block;
    font-size: 80%;
    font-weight: 400;
    margin-top: .25rem
}

.external-ratings-item {
    --width: 136px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: rgba(0,19,41,.9);
    border: 1px solid rgba(0,163,255,.2);
    border-radius: 30px;
    justify-content: center;
    padding: 32px 10px;
    -webkit-transition: border-color .3s,background .3s;
    transition: border-color .3s,background .3s
}

.external-ratings-item__inner {
    display: grid;
    gap: 8px;
    width: 255px
}

.external-ratings-item__img {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 34px
}

.external-ratings-item img {
    display: block;
    max-height: 100%;
    max-width: var(--width)
}

html[dir=rtl] .external-ratings-item img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.external-ratings-item__stars {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    gap: 8px;
    grid-template-columns: repeat(5,auto);
    height: 43px;
    justify-content: flex-start
}

.external-ratings-item__stars svg {
    --size: 40px;
    color: #00a3ff;
    height: var(--size);
    width: var(--size)
}

.country-br .external-ratings-item__stars svg,.country-es .external-ratings-item__stars svg {
    color: var(--primary-color)
}

.external-ratings-item__rated-text {
    color: #fff;
    font-size: 14px;
    line-height: 18px
}

.external-ratings-item:hover {
    background: -webkit-gradient(linear,left bottom,left top,from(rgba(0,163,255,.05)),to(rgba(0,163,255,.05))),rgba(0,19,41,.9);
    background: linear-gradient(0deg,rgba(0,163,255,.05),rgba(0,163,255,.05)),rgba(0,19,41,.9);
    border-color: rgba(0,163,255,.2)
}

.external-ratings-item--hellopeter {
    --width: 110px
}

.external-ratings-item--trustedreviews {
    --width: 180px
}

.country-br .external-ratings-item {
    background-color: #00792d
}

.country-es .external-ratings-item {
    background-color: #1a8bd5
}

.external-ratings-badge {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    -webkit-transition: background .3s;
    transition: background .3s
}

.external-ratings-badge img {
    display: block
}

.external-ratings-badge__icon {
    margin-right: 8px
}

.external-ratings-badge__text {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
    gap: 5px;
    grid-template-columns: repeat(3,auto);
    line-height: 30px
}

.external-ratings-badge__text span {
    font-weight: 700
}

.external-ratings-badge--po {
    padding: 12px 0
}

.external-ratings-badge--pb {
    padding: 12px
}

.external-ratings-badge--pb .external-ratings-badge__text span {
    color: #4778a6
}

.external-ratings-badge--pb:hover {
    background: rgba(0,19,41,.9)
}

html[dir=rtl] .external-ratings-badge .external-ratings-badge__icon {
    margin-left: 8px;
    margin-right: 0
}

.alert {
    border: 1px solid transparent;
    border-radius: .25rem;
    margin-bottom: 1rem;
    padding: .75rem 1.25rem
}

.alert--primary {
    background-color: #cce5ff;
    border-color: #b8daff;
    color: #004085
}

.alert--secondary {
    background-color: #e7e8ea;
    border-color: #dddfe2;
    color: #464a4e
}

.alert--success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724
}

.alert--danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24
}

.alert--warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404
}

.alert--info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460
}

.alert--light {
    background-color: #fefefe;
    border-color: #fdfdfe;
    color: #818182
}

.alert--dark {
    background-color: #d6d8d9;
    border-color: #c6c8ca;
    color: #1b1e21
}

.languages {
    font-family: NunitoSans;
    font-weight: 300;
    position: relative
}

.languages .language-icon {
    margin-right: 10px;
    width: 20px
}

.languages__title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: #1e385b;
    cursor: pointer
}

.languages__title-text {
    font-weight: 300;
    margin-top: 1px;
    padding-right: 30px;
    position: relative
}

.languages__title-text:after {
    content: "";
    display: -webkit-box;
    display: flex;
    position: absolute;
    right: 0;
    top: -.1rem;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    background-image: url(../images/icon-drop-down.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 1.625rem;
    justify-content: center;
    -webkit-transition: .5s;
    transition: .5s;
    width: 1.625rem
}

.languages__list {
    background: #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 70px rgba(0,0,0,.1);
    box-shadow: 0 10px 70px rgba(0,0,0,.1);
    display: grid;
    gap: 8px 4px;
    grid-template-columns: repeat(3,1fr);
    margin-right: 0;
    margin-top: 1.1rem;
    min-width: 350px;
    opacity: 0;
    padding: 18px 20px;
    pointer-events: none;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(1.25rem);
    transform: translateY(1.25rem);
    -webkit-transition: opacity .5s,visibility .5s,-webkit-transform .5s;
    transition: opacity .5s,visibility .5s,-webkit-transform .5s;
    transition: opacity .5s,transform .5s,visibility .5s;
    transition: opacity .5s,transform .5s,visibility .5s,-webkit-transform .5s;
    visibility: hidden;
    z-index: 999
}

.languages__list--once {
    grid-template-columns: 1fr;
    min-width: auto;
    right: auto
}

.is-logged-in .languages__list {
    right: -6rem
}

@media screen and (max-width: 420px) {
    .languages__list {
        gap:4px;
        grid-template-columns: repeat(2,1fr);
        min-width: calc(100vw - 40px);
        padding: 15px
    }
}

@media screen and (max-width: 320px) {
    .languages__list {
        min-width:280px
    }
}

.languages__item:hover>a {
    background: #eef2f9;
    color: #1e385b
}

.languages__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    color: #1e385b;
    font-size: 14px;
    padding: .313rem .625rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

[lang=ja] .languages__link,[lang=ko] .languages__link {
    font: caption
}

@media screen and (max-width: 420px) {
    .languages__link {
        font-size:15px
    }
}

.languages--disabled .languages__title {
    cursor: default
}

.languages--disabled .languages__title-text {
    padding-right: 0
}

.languages--disabled .languages__title-text:after {
    display: none
}

.languages--opened .languages__title-text:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.languages--opened .languages__list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible
}

.payment-methods {
    --color: #fff
}

.payment-methods__list {
    display: grid;
    gap: 32px 35px;
    grid-template-columns: repeat(5,1fr)
}

@media screen and (max-width: 960px) {
    .payment-methods__list {
        gap:10px;
        grid-template-columns: repeat(3,1fr)
    }
}

@media screen and (max-width: 640px) {
    .payment-methods__list {
        gap:0 10px;
        grid-template-columns: repeat(2,1fr)
    }
}

.payment-methods__list-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    color: var(--color);
    justify-content: center;
    max-height: 100px;
    max-width: 100%
}

.payment-methods__list-item:last-child {
    grid-column: span 5;
    margin-top: 24px
}

@media screen and (max-width: 960px) {
    .payment-methods__list-item:last-child {
        grid-column:auto;
        margin-top: 0
    }
}

@media screen and (max-width: 640px) {
    .payment-methods__list-item:last-child {
        grid-column:span 2;
        margin-top: 24px
    }
}

.payment-methods__link {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    display: inline-block;
    text-decoration: none
}

.payment-methods__link:hover {
    border-bottom: 1px solid transparent;
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s
}

.payment-methods svg {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

@media screen and (max-width: 480px) {
    .payment-methods svg {
        max-width:80%
    }
}

.btn {
    border-radius: .75rem;
    color: #fff;
    display: inline-block;
    font-family: Montserrat;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .7px;
    padding: 1rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: .5s;
    transition: .5s
}

.btn_blue {
    background: #0099fa
}

.btn_blue:focus,.btn_blue:hover {
    background: #002ed9;
    color: #fff
}

.btn_dark-blue {
    background: #0f487c
}

.btn_dark-blue:focus,.btn_dark-blue:hover {
    background: #0099fa;
    color: #fff
}

.btn_light-blue {
    background: #d6e6f2;
    color: #1e385b
}

.btn_light-blue:focus,.btn_light-blue:hover {
    background: #0099fa;
    color: #fff
}

.btn_white {
    background: #fff;
    color: #173257
}

.btn_white:focus,.btn_white:hover {
    background: #96aec1;
    color: #173257;
    -webkit-transition: background .5s,color .5s;
    transition: background .5s,color .5s
}

.btn_blue-gradient {
    background: linear-gradient(79deg,#0099fa,#002ed9);
    background-size: 115% auto;
    overflow: hidden;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s
}

.btn_blue-gradient:hover {
    background-position: 100%;
    color: #fff
}

.btn_pink-gradient {
    background: linear-gradient(79deg,#cb0fea,#002ed9);
    background-size: 115% auto;
    overflow: hidden;
    position: relative;
    -webkit-transition: background-position .5s,color .5s;
    transition: background-position .5s,color .5s
}

.btn_pink-gradient:hover {
    background-position: 100%;
    color: #fff
}

.btn_transparent {
    background-color: transparent;
    color: #3a4a68
}

.btn_transparent:focus,.btn_transparent:hover {
    color: #0099fb
}

.btn_gray {
    background-color: #96aec1;
    color: #102c52
}

.btn_gray:focus,.btn_gray:hover {
    background-color: #fff
}

.btn_border {
    border: 1px solid hsla(0,0%,100%,.3);
    color: hsla(0,0%,88%,.8);
    font-size: 1rem;
    padding: .563rem .5rem
}

.btn_border:focus,.btn_border:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #192539
}

.btn_full {
    width: 100%
}

.btn_small-side-padding {
    letter-spacing: inherit;
    padding: 1rem 1.25rem
}

.btn_large {
    padding: 1rem 1.875rem
}

.btn[disabled] {
    opacity: .5
}

.btn.hidden {
    height: 0!important;
    margin-left: 0!important;
    margin-right: 0!important;
    padding: 0!important;
    -webkit-transition: 0s;
    transition: 0s;
    visibility: hidden;
    width: 0!important
}

@media screen and (max-width: 700px) {
    .btn {
        font-size:.813rem;
        padding: .875rem 1.125rem
    }
}

button.btn {
    font-family: Montserrat;
    font-weight: 600
}

.link,a.btn {
    text-decoration: none
}

.link {
    border-bottom: 1px solid #0099fa;
    font-weight: 700;
    -webkit-transition: .5s;
    transition: .5s
}

.link_light,.link_light:hover {
    color: #fff
}

.link_dark,.link_dark:hover {
    color: #1e385b
}

.link_white {
    border-bottom: 1px solid #fff;
    color: #fff
}

.link_white:hover {
    color: #fff
}

.link:hover,.link_white:hover {
    border-bottom: 1px solid transparent
}

@media screen and (max-width: 700px) {
    .layout_affiliate .btn {
        font-size:1rem;
        padding: .875rem 1.563rem
    }
}

.mobile-block {
    background-color: rgba(11,29,54,.9);
    height: 0;
    left: 0;
    opacity: 0;
    padding-right: 18.75rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: opacity .5s,visibility .5s,height .5s,top .5s;
    transition: opacity .5s,visibility .5s,height .5s,top .5s;
    visibility: hidden;
    width: 100%;
    z-index: 1000
}

.mobile-block .container {
    padding: 7.5rem 1.875rem 5.1rem
}

.has-pwa-banner .mobile-block .container {
    padding-top: calc(7.5rem + 72px)
}

@media screen and (max-width: 1000px) {
    .mobile-block .container {
        padding:6rem 1.875rem 5.1rem
    }
}

@media screen and (max-width: 700px) {
    .mobile-block .container {
        padding-bottom:4rem;
        padding-left: .935rem;
        padding-right: .935rem
    }
}

.mobile-block__mob {
    display: none
}

@media screen and (max-width: 768px) {
    .mobile-block__mob {
        display:block
    }
}

.mobile-block__lang {
    margin-bottom: 2rem
}

.mobile-block__lang .languages__list {
    background: #fff;
    left: 0;
    width: 100%
}

.mobile-block__lang .languages__title-text:after {
    background-image: url(../images/icon-drop-down-white.svg)
}

.mobile-block__lang .languages:not(.languages--opened) .languages__title:hover .language-icon,.mobile-block__lang .languages:not(.languages--opened) .languages__title:hover .languages__title-text {
    color: #a5dcff
}

.mobile-block__lang .languages:not(.languages--opened) .language-icon,.mobile-block__lang .languages:not(.languages--opened) .languages__title-text {
    color: #fff
}

.mobile-block__lang .languages--opened .language-icon,.mobile-block__lang .languages--opened .languages__title-text {
    color: #a5dcff
}

@media screen and (max-width: 767px) {
    .mobile-block__lang .languages__link {
        font-size:16px
    }
}

@media screen and (max-width: 600px) {
    .mobile-block__lang {
        margin-bottom:1.5rem
    }
}

.mobile-block__btn-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.7rem
}

.mobile-block__btn {
    display: block;
    width: 48%
}

.mobile-block__title {
    font-family: Montserrat;
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.55rem;
    opacity: 0;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .mobile-block__title {
        font-size:2.3rem
    }
}

@media screen and (max-width: 550px) {
    .mobile-block__title {
        font-size:2rem
    }
}

.mobile-block .mobile-nav {
    display: -webkit-box;
    display: flex;
    margin: 0 -.938rem;
    max-width: 63.75rem
}

.mobile-block .mobile-nav__col {
    position: relative;
    -webkit-box-flex: 0;
    flex: 0 0 33.3%;
    opacity: 0;
    padding: 0 .938rem
}

@media screen and (max-width: 900px) {
    .mobile-block .mobile-nav__col_1 {
        -webkit-box-ordinal-group:3;
        order: 2
    }

    .mobile-block .mobile-nav__col_2 {
        -webkit-box-ordinal-group: 4;
        order: 3
    }
}

.mobile-block .mobile-nav__col_3 .mb-block__link:hover {
    border: none!important
}

@media screen and (max-width: 900px) {
    .mobile-block .mobile-nav__col_3 {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 2;
        order: 1
    }

    .mobile-block .mobile-nav__col_3 .mb-block {
        width: 100%
    }
}

@media screen and (max-width: 1000px) {
    .mobile-block .mobile-nav__col {
        padding:0 .9rem
    }
}

@media screen and (max-width: 900px) {
    .mobile-block .mobile-nav__col {
        -webkit-box-flex:0;
        flex: 0 0 50%;
        padding: 0 .9rem 1.25rem
    }
}

@media screen and (max-width: 600px) {
    .mobile-block .mobile-nav__col {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

@media screen and (max-width: 1000px) {
    .mobile-block .mobile-nav {
        margin:0 -.9rem
    }
}

@media screen and (max-width: 900px) {
    .mobile-block .mobile-nav {
        flex-wrap:wrap
    }

    .mobile-block .mobile-nav .mobile-nav__col_3 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .mobile-block .mobile-nav .mobile-nav__col_3 .mb-block:nth-child(3) {
        -webkit-box-ordinal-group: 2;
        order: 1
    }

    .mobile-block .mobile-nav .mobile-nav__col_3 .mb-block:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        order: 2
    }
}

.mobile-block .mb-block__in {
    background-color: rgba(42,75,119,.4);
    border-radius: .75rem;
    padding: 1.25rem;
    width: 100%
}

.mobile-block .mb-block__in_white {
    background-color: hsla(0,0%,100%,.9)
}

.mobile-block .mb-block__in_white .mb-block__title {
    color: #173257
}

.mobile-block .mb-block__in_white .mb-block__link {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 0;
    color: #5b6675;
    gap: 12px;
    grid-template-columns: 26px auto
}

.mobile-block .mb-block__in_white .mb-block__link_title {
    border-bottom: 1px solid #0099fa;
    color: #1e385b;
    padding-left: 0;
    -webkit-transition: .5s;
    transition: .5s
}

.mobile-block .mb-block__in_white .mb-block__link:focus,.mobile-block .mb-block__in_white .mb-block__link:hover {
    border-bottom: 1px solid transparent;
    color: #173257
}

.mobile-block .mb-block__in_white .mb-block__desc {
    color: #1e385b
}

.mobile-block .mb-block__in_transparent {
    background-color: transparent;
    padding: 0
}

.mobile-block .mb-block__in_blue {
    background-color: #0099fa
}

.mobile-block .mb-block__btn-wrap {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
    grid-template-columns: repeat(auto-fill,minmax(-webkit-min-content,120px));
    grid-template-columns: repeat(auto-fill,minmax(min-content,120px))
}

.mobile-block .mb-block__btn-wrap .btn {
    white-space: nowrap
}

[lang=de] .mobile-block .mb-block__btn-wrap,[lang=fi] .mobile-block .mb-block__btn-wrap,[lang=hr] .mobile-block .mb-block__btn-wrap,[lang=ms] .mobile-block .mb-block__btn-wrap,[lang=pl] .mobile-block .mb-block__btn-wrap,[lang=pt] .mobile-block .mb-block__btn-wrap {
    grid-template-columns: 1fr
}

.mobile-block .mb-block+.mb-block {
    margin-top: 1.875rem
}

@media screen and (max-width: 1000px) {
    .mobile-block .mb-block+.mb-block {
        margin-top:1.25rem
    }
}

.mobile-block .mb-block__title {
    color: #b1c6d7;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .813rem;
    text-transform: uppercase
}

@media screen and (max-width: 800px) {
    .mobile-block .mb-block__title {
        font-size:1.1rem;
        margin-bottom: .513rem
    }
}

@media screen and (max-width: 450px) {
    .mobile-block .mb-block__title {
        font-size:1.05rem;
        margin-bottom: .513rem
    }
}

.mobile-block .mb-block ul li {
    margin-bottom: .6rem
}

.mobile-block .mb-block ul li:last-child {
    margin-bottom: 0
}

.mobile-block .mb-block__link {
    border-bottom: 1px solid transparent;
    color: #b1c6d7;
    font-size: 1rem;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s
}

.mobile-block .mb-block__link .svg-icon {
    display: block;
    height: 26px;
    pointer-events: none;
    width: 26px
}

.mobile-block .mb-block__link_title {
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: Montserrat;
    font-size: 1.375rem;
    letter-spacing: .05rem;
    -webkit-transition: .5s;
    transition: .5s
}

.mobile-block .mb-block__link_affiliate {
    border-bottom: 1px solid #eef2f9;
    color: #eef2f9;
    font-family: Montserrat;
    letter-spacing: .05rem;
    padding-bottom: .3rem
}

.mobile-block .mb-block__link:focus,.mobile-block .mb-block__link:hover {
    border-bottom: 1px solid #0099fa;
    color: #fff
}

.mobile-block .mb-block__link:last-child {
    margin-bottom: 0
}

.mobile-block .mb-block__desc {
    font-size: .75rem;
    margin-top: .75rem
}

.mobile-block .social-icons-block {
    display: none;
    margin-top: 1.25rem;
    opacity: 0
}

.mobile-block .social-icons-block .socials {
    --icon-size: 90%;
    --gap: 0;
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit,minmax(18px,1fr))
}

.mobile-block .social-icons-block .socials__icon {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none
}

.mobile-block .social-icons-block .socials__icon .svg-icon {
    color: #96aec1;
    display: block;
    height: auto;
    max-width: 22px;
    -webkit-transition: color .3s;
    transition: color .3s;
    width: var(--icon-size)
}

.mobile-block .social-icons-block .socials__icon:hover .svg-icon {
    color: #fff
}

@media screen and (max-width: 1680px) {
    .mobile-block .social-icons-block .socials {
        --icon-size:22px;
        --gap: 5px
    }
}

@media screen and (max-width: 768px) {
    .mobile-block .social-icons-block .socials {
        max-width:15.625rem
    }
}

.mobile-block .social-icons-block .socials {
    --icon-size: 64px;
    --gap: 10px;
    -webkit-box-pack: unset;
    grid-template-columns: repeat(auto-fit,minmax(40px,64px));
    justify-content: unset;
    max-width: unset!important
}

.mobile-block .social-icons-block .socials__item {
    margin-bottom: 0
}

.mobile-block .social-icons-block .socials__icon {
    background: rgba(42,75,119,.4);
    border-radius: 10px;
    padding-bottom: 8px;
    padding-top: 8px
}

.mobile-block .social-icons-block .socials__icon .svg-icon {
    height: 22px;
    margin: 0 auto;
    width: 22px
}

@media screen and (max-width: 900px) {
    .mobile-block .social-icons-block {
        margin-top:0
    }
}

@media screen and (max-width: 1280px) {
    .mobile-block .social-icons-block {
        display:block
    }
}

@media screen and (max-width: 700px) {
    .mobile-block__header {
        display:-webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        background-color: #13243d;
        justify-content: space-between;
        margin: -1.5rem -.938rem 1.25rem;
        padding: .938rem .938rem .625rem
    }

    .mobile-block__header .languages__title .languages__flag {
        border: 2px solid #fff
    }

    .mobile-block__header .mobile-block__mob {
        -webkit-box-ordinal-group: 3;
        order: 2
    }

    .mobile-block__header .mobile-block__lang {
        margin-bottom: 0;
        padding-right: 1.5rem
    }

    .mobile-block__header .mobile-block__lang .languages__list {
        left: unset;
        margin-top: .81rem;
        right: -1.5rem;
        width: calc(100vw - 1.875rem)
    }

    .mobile-block__header .mobile-block__title {
        -webkit-box-ordinal-group: 2;
        color: #eef2f9;
        font-size: 1.5rem;
        margin-bottom: 0;
        order: 1
    }
}

@media screen and (max-width: 550px) {
    .mobile-block__header {
        margin:-1.25rem -.938rem 1.25rem
    }
}

.mobile-block--opened {
    height: 100%;
    opacity: 1;
    pointer-events: all;
    visibility: visible
}

.mobile-block--opened .mobile-block__title {
    opacity: 1;
    -webkit-transition: opacity 2s linear .5s;
    transition: opacity 2s linear .5s
}

@media screen and (max-width: 768px) {
    .mobile-block--opened .mobile-block__title {
        -webkit-transition:0s;
        transition: 0s
    }
}

.mobile-block--opened .mobile-nav__col {
    -webkit-animation: menuFadeInRight .6s ease forwards;
    animation: menuFadeInRight .6s ease forwards;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.mobile-block--opened .mobile-nav__col:nth-child(2) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

.mobile-block--opened .mobile-nav__col:nth-child(3) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

@media screen and (max-width: 768px) {
    .mobile-block--opened .mobile-nav__col {
        -webkit-animation:none;
        animation: none;
        left: 0;
        opacity: 1
    }
}

.mobile-block--opened .social-icons-block {
    -webkit-animation: menuFadeInRight .6s ease forwards;
    animation: menuFadeInRight .6s ease forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    position: relative
}

.mobile-block--opened+.layout main {
    -webkit-filter: blur(14px);
    filter: blur(14px);
    -webkit-transition: .5s;
    transition: .5s
}

.mobile-block--opened+.layout .header:not(.header_affiliate) {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

@media screen and (max-width: 1000px) {
    .mobile-block--opened+.layout .header:not(.header_affiliate) {
        background:#fff
    }

    .mobile-block--opened+.layout .header:not(.header_affiliate) .btn_transparent,.mobile-block--opened+.layout .header:not(.header_affiliate) .languages__title {
        color: #173257
    }

    .mobile-block--opened+.layout .header:not(.header_affiliate) .header__logo svg {
        color: #1e385b
    }

    .mobile-block--opened+.layout .header:not(.header_affiliate) .header__btns .link {
        color: #173257
    }

    .mobile-block--opened+.layout .header:not(.header_affiliate) .header__btns .link .icon-sign-in {
        fill: #173257
    }

    .mobile-block--opened+.layout .header:not(.header_affiliate) .languages__title-text:after {
        background-image: url(../images/icon-drop-down.svg)
    }
}

html[dir=rtl] .mobile-block--opened .mobile-nav__col,html[dir=rtl] .mobile-block--opened .social-icons-block {
    -webkit-animation-name: menuFadeInLeft;
    animation-name: menuFadeInLeft
}

@media screen and (min-width: 2400px) {
    .mobile-block {
        padding-right:0
    }
}

@media screen and (max-width: 1279px) {
    .mobile-block {
        padding-right:0
    }
}

@media screen and (max-width: 1000px) {
    .mobile-block {
        overflow-y:auto
    }

    .mobile-block--opened+.layout .header_dark .languages:not(.languages--opened) .languages__title:hover .language-icon,.mobile-block--opened+.layout .header_dark .languages:not(.languages--opened) .languages__title:hover .languages__title-text {
        color: #0099fb
    }

    .mobile-block--opened+.layout .header_dark .languages:not(.languages--opened) .language-icon,.mobile-block--opened+.layout .header_dark .languages:not(.languages--opened) .languages__title-text {
        color: #1e385b
    }

    .mobile-block--opened+.layout .header_dark .languages--opened .language-icon,.mobile-block--opened+.layout .header_dark .languages--opened .languages__title-text {
        color: #0099fb
    }
}

@media screen and (max-width: 768px) {
    .mobile-block {
        -webkit-transition:opacity .5s,visibility .5s,height 0s,top .5s;
        transition: opacity .5s,visibility .5s,height 0s,top .5s
    }
}

@-webkit-keyframes menuFadeInRight {
    0% {
        left: 20%;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}

@keyframes menuFadeInRight {
    0% {
        left: 20%;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}

@-webkit-keyframes menuFadeInLeft {
    0% {
        opacity: 0;
        right: 20%
    }

    to {
        opacity: 1;
        right: 0
    }
}

@keyframes menuFadeInLeft {
    0% {
        opacity: 0;
        right: 20%
    }

    to {
        opacity: 1;
        right: 0
    }
}

.page .top-section {
    background: #02274b;
    background: linear-gradient(135deg,#02274b,#02274b 5%,#012d5a);
    overflow: hidden;
    padding-top: 4.375rem;
    position: relative
}

.page .top-section:after {
    background: linear-gradient(135deg,#01203f,rgba(2,29,75,0));
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.page .top-section__title {
    font-size: 3.125rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase
}

.page .top-section__title span {
    display: block
}

@media screen and (max-width: 1000px) {
    .page .top-section__title {
        font-size:2.3rem;
        line-height: 2.9rem;
        margin-bottom: 1.5rem
    }
}

@media screen and (max-width: 700px) {
    .page .top-section__title {
        font-size:2rem;
        line-height: 2.5rem
    }
}

@media screen and (max-width: 550px) {
    .page .top-section__title {
        font-size:1.65rem;
        line-height: 2rem
    }
}

.page .top-section__desc {
    margin-bottom: 2.1rem
}

@media screen and (max-width: 1000px) {
    .page .top-section__desc {
        margin-bottom:2rem
    }
}

.page .top-section__container {
    padding-top: 3.2rem;
    position: relative
}

.has-pwa-banner .page .top-section__container {
    padding-top: 100px
}

@media only screen and (max-width: 1000px) {
    .page .top-section__container {
        padding-top:2.5rem
    }
}

@media only screen and (max-width: 700px) {
    .page .top-section__container {
        padding-top:1.5rem
    }
}

@media only screen and (max-width: 550px) {
    .page .top-section__container {
        padding-top:.5rem
    }
}

.page .top-section .register-btn {
    padding-left: 90px;
    padding-right: 90px
}

.page .top-section__btn-container2 {
    display: -webkit-box;
    display: flex;
    margin-top: 15px
}

.page .top-section__btn-container2 a {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    text-decoration: none;
    -webkit-transition: border-color .3s;
    transition: border-color .3s
}

.page .top-section__btn-container2 a:hover {
    border-bottom: 1px solid rgba(0,153,250,0)
}

.page .top-section__btn-container2 .dvdr {
    margin-left: 10px;
    margin-right: 10px
}

@media screen and (max-width: 768px) {
    .page .top-section__btn-container2 .dvdr,.page .top-section__btn-container2 a:first-child {
        display:none
    }
}

.page .top-section__content {
    position: relative;
    z-index: 3
}

.page .top-section .bg {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(100% - 18.75rem);
    z-index: 2
}

.page .top-section .bg__item {
    position: absolute;
    top: 50%
}

.page .top-section .bg__item_1 {
    left: 19.5rem;
    margin-top: -19rem
}

@media screen and (max-width: 1279px) {
    .page .top-section .bg__item_1 {
        left:unset;
        right: -53rem
    }
}

.page .top-section_no-img {
    background: linear-gradient(135deg,#02274b,#0f487c)
}

.page .top-section_no-img:after {
    display: none!important
}

.page .row {
    max-width: 82rem
}

.page_dark-blue {
    background-color: #1d2941
}

.page_dark-blue .page__in>section:first-child .container {
    position: relative
}

.page_dark-blue .page__in>section:first-child .container:before {
    background: #1d2941;
    background: radial-gradient(ellipse closest-side at 49rem 21rem,#0b2f63,#1d2941);
    content: "";
    display: block;
    height: 41rem;
    left: -14rem;
    position: absolute;
    top: -30rem;
    width: 100%
}

@media screen and (max-width: 1200px) {
    .page_dark-blue .page__in>section:first-child .container:before {
        display:none
    }
}

.page_dark-blue .page__in>section:first-child+section {
    position: relative
}

.page_dark-blue .top,.page_dark-blue .top-block {
    position: relative;
    z-index: 2
}

.page>.top .container {
    padding: 0 1.875rem 1rem
}

@media screen and (max-width: 1000px) {
    .page>.top .container {
        padding:0 1.875rem 1rem
    }
}

@media screen and (max-width: 700px) {
    .page>.top .container {
        padding:0 .938rem 1rem
    }
}

@media screen and (max-width: 550px) {
    .page>.top .container {
        padding:0 .938rem .5rem
    }
}

.page .text-section {
    background: #fff;
    color: #3a4a68
}

.page .text-section__container {
    padding-top: 3.75rem
}

.page .text-section__container p {
    margin-bottom: 1.8rem
}

@media screen and (max-width: 700px) {
    .page .text-section__container p {
        margin-bottom:1.3rem
    }

    .page .text-section__container {
        padding-top: 2.75rem
    }
}

@media screen and (max-width: 500px) {
    .page {
        font-size:.95rem;
        line-height: 1.45rem
    }
}

.page--affiliate-program {
    letter-spacing: .045rem
}

.page--affiliate-program h2 {
    font-size: 2.5rem;
    line-height: 3.2rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program h2 {
        font-size:2.3rem;
        line-height: 3rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program h2 {
        font-size:2rem;
        line-height: 2.6rem;
        text-align: center
    }
}

@media screen and (max-width: 550px) {
    .page--affiliate-program h2 {
        font-size:1.625rem;
        line-height: 2rem
    }
}

.page--affiliate-program .test-svg-app svg {
    display: block;
    height: 30px;
    width: 30px
}

.page--affiliate-program .first-section {
    padding-bottom: 2rem
}

.page--affiliate-program .first-section__container {
    padding-top: 4.4rem;
    position: relative
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section__container {
        padding-top:2.4rem
    }
}

.page--affiliate-program .first-section__left {
    max-width: 36.563rem;
    width: 100%
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section__left {
        max-width:31.563rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .first-section__left {
        max-width:100%
    }
}

.page--affiliate-program .first-section__title {
    font-size: 3.125rem;
    line-height: 3.7rem;
    margin-bottom: 2.7rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section__title {
        font-size:2.3rem;
        line-height: 2.9rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .first-section__title {
        font-size:2rem;
        line-height: 2.5rem;
        margin-bottom: 23.2rem;
        text-align: center
    }
}

@media screen and (max-width: 550px) {
    .page--affiliate-program .first-section__title {
        font-size:1.65rem;
        line-height: 2rem
    }
}

.page--affiliate-program .first-section__list {
    font-size: 1.25rem;
    margin-bottom: 2.5rem
}

.page--affiliate-program .first-section__list span {
    font-weight: 700
}

.page--affiliate-program .first-section__list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative
}

.page--affiliate-program .first-section__list li:before {
    background-color: #0099fa;
    border-radius: .188rem;
    content: "";
    display: block;
    height: .5rem;
    left: .35rem;
    position: absolute;
    top: .5rem;
    width: .5rem
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .first-section__list li {
        margin-bottom:.6rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section__list {
        font-size:1.1rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .first-section__list {
        font-size:1rem;
        margin-bottom: 2rem
    }

    .page--affiliate-program .first-section__btn-wrap {
        text-align: center
    }

    .page--affiliate-program .first-section__btn-wrap .affiliate-loader {
        margin: 0 auto
    }
}

.page--affiliate-program .first-section .bg {
    left: 37.563rem;
    position: absolute;
    top: 6.8rem
}

.page--affiliate-program .first-section .bg:after {
    background: #eef2f9;
    content: "";
    display: block;
    height: 15rem;
    left: 55rem;
    position: absolute;
    top: 29.1rem;
    width: 15rem;
    z-index: 5
}

.page--affiliate-program .first-section .bg__img {
    position: absolute
}

.page--affiliate-program .first-section .bg__1 {
    left: 0;
    max-width: 53.125rem;
    top: 0;
    z-index: 2
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section .bg__1 {
        max-width:28.5rem;
        top: 6.4rem
    }
}

.page--affiliate-program .first-section .bg__2 {
    left: -2rem;
    max-width: 21.875rem;
    top: -8rem;
    z-index: 1
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section .bg__2 {
        left:-.5rem;
        max-width: 11.2rem;
        top: 2.2rem
    }
}

.page--affiliate-program .first-section .bg__3 {
    left: 25rem;
    max-width: 37.125rem;
    top: -7rem;
    z-index: 3
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section .bg__3 {
        left:13.8rem;
        max-width: 20.125rem;
        top: 3rem
    }
}

.page--affiliate-program .first-section .bg__4 {
    left: 6.9rem;
    max-width: 21.875rem;
    top: 3rem;
    z-index: 3
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section .bg__4 {
        left:3.9rem;
        max-width: 11.875rem;
        top: 8rem
    }
}

.page--affiliate-program .first-section .bg__5 {
    left: 11.9rem;
    max-width: 28.125rem;
    top: 12.9rem;
    z-index: 3
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section .bg__5 {
        left:5.9rem;
        max-width: 16.125rem
    }

    .page--affiliate-program .first-section .bg {
        left: 32.563rem;
        top: 5.8rem
    }
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .first-section .bg {
        left:30.563rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .first-section .bg {
        left:50%;
        margin-left: -12.8rem;
        top: 5.1rem;
        width: 28rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .first-section {
        padding-bottom:0
    }
}

.page--affiliate-program .form-group label.error {
    color: #ff9b93!important;
    font-size: .75rem!important;
    left: 0;
    padding-left: 0;
    position: absolute;
    top: 2.5rem;
    -webkit-transform: unset;
    transform: unset
}

.page--affiliate-program .form-group label.error_recaptcha {
    bottom: -2rem;
    top: unset
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-group {
        margin-bottom:1.75rem
    }

    .page--affiliate-program .advantages__container {
        padding-top: 3.5rem
    }
}

.page--affiliate-program .advantages__content {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages__content {
        position:relative
    }
}

.page--affiliate-program .advantages__full {
    -webkit-box-flex: 1;
    flex: 1 1 100%
}

.page--affiliate-program .advantages__left {
    -webkit-box-flex: 0;
    flex: 0 0 24.625rem;
    max-width: 24.625rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages__left {
        bottom:4rem;
        left: 50%;
        position: absolute;
        z-index: 1;
        -webkit-box-flex: 0;
        flex: 0 0 19rem;
        -webkit-box-ordinal-group: 3;
        height: 28.938rem;
        margin-left: -9.5rem;
        max-width: 100%;
        order: 2;
        width: 19rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages__left {
        bottom:9rem
    }
}

.page--affiliate-program .advantages__right {
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% - 24.625rem);
    max-width: calc(100% - 24.625rem)
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages__right {
        position:relative;
        z-index: 2;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 2;
        max-width: 100%;
        order: 1
    }
}

.page--affiliate-program .advantages__title {
    max-width: 39.5rem
}

.page--affiliate-program .advantages__img-wrap {
    left: -7rem;
    max-width: 29.375rem;
    position: relative;
    top: 1.5rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages__img-wrap {
        left:0;
        max-width: 100%;
        top: 1.5rem
    }
}

.page--affiliate-program .advantages__img {
    left: 0;
    max-width: 100%;
    position: absolute;
    top: 0;
    width: 29.375rem
}

.page--affiliate-program .advantages__img_1 {
    z-index: 2
}

.page--affiliate-program .advantages__img_2 {
    z-index: 3
}

.page--affiliate-program .advantages__img_3,.page--affiliate-program .advantages__img_4 {
    z-index: 1
}

.page--affiliate-program .advantages__img img,.page--affiliate-program .advantages__img source {
    max-width: 100%;
    width: 29.375rem
}

.page--affiliate-program .advantages__right-in {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap
}

.page--affiliate-program .advantages .list {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    margin-top: .5rem;
    max-width: 50%
}

.page--affiliate-program .advantages .list__item {
    margin-bottom: 3.35rem;
    padding: 0 2rem 0 2.15rem;
    position: relative
}

.page--affiliate-program .advantages .list__item:before {
    background: url(../images/icon-check.svg) no-repeat 50%;
    background-size: 1.25rem;
    content: "";
    display: block;
    height: 1.25rem;
    left: 0;
    position: absolute;
    top: .2rem;
    width: 1.25rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages .list__item {
        margin-bottom:2.35rem
    }
}

@media screen and (max-width: 850px) {
    .page--affiliate-program .advantages .list__item {
        padding:0 0 0 2.15rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages .list__item {
        margin-bottom:1.35rem
    }
}

.page--affiliate-program .advantages .list__title {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: .5rem;
    max-width: 20rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages .list__title {
        font-size:1.1rem
    }
}

@media screen and (max-width: 850px) {
    .page--affiliate-program .advantages .list__title {
        max-width:100%
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages .list__title {
        font-size:1rem;
        margin-bottom: .2rem
    }
}

.page--affiliate-program .advantages .list__desc {
    max-width: 23rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages .list__desc {
        font-size:.95rem
    }
}

@media screen and (max-width: 850px) {
    .page--affiliate-program .advantages .list__desc {
        max-width:100%
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages .list__desc {
        font-size:.938rem
    }
}

@media screen and (max-width: 850px) {
    .page--affiliate-program .advantages .list {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--affiliate-program .advantages .info {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    background: #fff;
    border-radius: .75rem;
    justify-content: space-between;
    padding: 2.2rem
}

.page--affiliate-program .advantages .info__text {
    font-weight: 700;
    padding-right: 2rem
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages .info__text {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin-bottom: 1.3rem;
        max-width: 100%;
        padding-right: 0;
        text-align: center
    }
}

.page--affiliate-program .advantages .info__btn-wrap a {
    min-width: 16rem
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages .info__btn-wrap a {
        min-width:14rem
    }

    .page--affiliate-program .advantages .info__btn-wrap {
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center
    }

    .page--affiliate-program .advantages .info__btn-wrap .affiliate-loader {
        margin: 0 auto
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .advantages .info {
        margin-top:22rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .advantages .info {
        flex-wrap:wrap;
        margin-top: 24.5rem;
        padding: 1.8rem
    }
}

.page--affiliate-program .steps {
    background-color: #fff
}

.page--affiliate-program .steps_first {
    padding-top: .3rem
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps_first {
        position:relative;
        z-index: 2;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 2;
        max-width: 100%;
        order: 1
    }
}

.page--affiliate-program .steps__container {
    padding-bottom: 4.5rem;
    padding-top: 2rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .steps__container {
        padding-bottom:3rem;
        padding-top: 3rem
    }
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__container {
        padding-bottom:0;
        padding-top: 1.5rem
    }
}

.page--affiliate-program .steps__content {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    position: relative
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__content {
        flex-wrap:wrap
    }
}

.page--affiliate-program .steps__main-title-wrap {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__main-title-wrap {
        margin-top:1rem
    }
}

.page--affiliate-program .steps__title-wrap {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: baseline;
    align-items: baseline;
    margin-bottom: .9rem;
    margin-top: 4.5rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .steps__title-wrap {
        -webkit-box-align:end;
        align-items: flex-end
    }
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__title-wrap {
        margin-bottom:1.1rem;
        margin-top: 1.25rem
    }
}

.page--affiliate-program .steps__num {
    background: linear-gradient(135deg,#0099fa,#1a4dde);
    -webkit-background-clip: text;
    color: #0b75ec;
    font-family: Montserrat;
    font-size: 3.5rem;
    font-weight: 700;
    margin-right: 1rem;
    -webkit-text-fill-color: transparent
}

@media screen and (max-width: 800px) {
    .page--affiliate-program .steps__num {
        font-size:3rem;
        margin-right: .75rem
    }
}

@media screen and (max-width: 550px) {
    .page--affiliate-program .steps__num {
        font-size:3.5rem;
        line-height: 3.5rem
    }
}

.page--affiliate-program .steps__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .8px;
    max-width: 28rem;
    text-transform: uppercase
}

@media screen and (max-width: 550px) {
    .page--affiliate-program .steps__title {
        font-size:1rem;
        max-width: 15rem
    }
}

.page--affiliate-program .steps__text {
    max-width: 36rem
}

.page--affiliate-program .steps__text p {
    margin-bottom: 2rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .steps__text p {
        margin-bottom:1.5rem
    }
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__text p {
        margin-bottom:1rem
    }
}

.page--affiliate-program .steps__text a {
    border-bottom: 1px solid #0099fa;
    color: #515151;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.page--affiliate-program .steps__text a:hover {
    border-bottom: 1px solid transparent
}

.page--affiliate-program .steps__text_hidden {
    display: none
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__text {
        max-width:100%
    }
}

.page--affiliate-program .steps__img-wrap {
    opacity: 1;
    position: relative;
    -webkit-transition: visibility 0s,z-index 0s,opacity .3s linear;
    transition: visibility 0s,z-index 0s,opacity .3s linear;
    visibility: visible;
    z-index: 1
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__img-wrap {
        height:14.875rem
    }
}

@media screen and (max-width: 800px) {
    .page--affiliate-program .steps__img-wrap {
        height:13rem
    }
}

@media screen and (max-width: 550px) {
    .page--affiliate-program .steps__img-wrap {
        height:12rem
    }
}

.page--affiliate-program .steps__left {
    padding-right: 3.125rem
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__left {
        padding-right:0
    }
}

.page--affiliate-program .steps__left,.page--affiliate-program .steps__right {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__left,.page--affiliate-program .steps__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--affiliate-program .steps__img {
    left: 50%;
    margin-left: -11.3rem;
    position: absolute;
    top: .8rem;
    visibility: hidden;
    width: 22.5rem
}

.page--affiliate-program .steps__img img,.page--affiliate-program .steps__img source {
    width: 22.5rem
}

.page--affiliate-program .steps__img_0 {
    margin-left: -7.5rem;
    top: -3.2rem
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__img_0 {
        margin-left:-10.5rem
    }
}

@media screen and (max-width: 800px) {
    .page--affiliate-program .steps__img_0 {
        margin-left:-7.5rem!important;
        max-width: 20rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .steps__img img,.page--affiliate-program .steps__img source {
        max-width:17rem
    }
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps__img {
        margin-left:-8.3rem;
        visibility: visible
    }
}

@media screen and (max-width: 800px) {
    .page--affiliate-program .steps__img img,.page--affiliate-program .steps__img source {
        max-width:15rem
    }
}

@media screen and (max-width: 550px) {
    .page--affiliate-program .steps__img {
        margin-left:-6.3rem
    }

    .page--affiliate-program .steps__img img,.page--affiliate-program .steps__img source {
        max-width: 13rem
    }
}

.page--affiliate-program .steps_right .steps__slider {
    left: 0
}

@media screen and (max-width: 900px) {
    .page--affiliate-program .steps_left .steps__right {
        -webkit-box-ordinal-group:2;
        order: 1
    }

    .page--affiliate-program .steps_left .steps__left {
        -webkit-box-ordinal-group: 3;
        order: 2
    }
}

.page--affiliate-program .offer-plans__container {
    padding-top: 11.5rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans__container {
        padding-top:5.5rem
    }
}

.page--affiliate-program .offer-plans__title {
    margin-bottom: 1rem
}

.page--affiliate-program .offer-plans__desc {
    margin-bottom: 5rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans__desc {
        margin-bottom:4rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans__desc {
        margin-bottom:3rem
    }
}

@media screen and (max-width: 550px) {
    .page--affiliate-program .offer-plans__desc {
        text-align:center
    }
}

.page--affiliate-program .offer-plans__btn-wrap {
    margin-top: 3.8rem;
    text-align: center
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans__btn-wrap {
        margin-top:2.7rem
    }
}

.page--affiliate-program .offer-plans__btn-wrap .affiliate-loader {
    margin: 0 auto
}

.page--affiliate-program .offer-plans .list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: -1.563rem
}

.page--affiliate-program .offer-plans .list .item {
    -webkit-box-flex: 0;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 1.563rem
}

.page--affiliate-program .offer-plans .list .item__in {
    background-color: #fff;
    border-radius: .75rem;
    -webkit-box-shadow: 0 0 1.25rem rgba(0,0,0,.15);
    box-shadow: 0 0 1.25rem rgba(0,0,0,.15);
    height: 100%;
    padding: 1.8rem 2.5rem 2rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans .list .item__in {
        padding:1.8rem 1.5rem 1.5rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans .list .item__in {
        padding:1.7rem 1.5rem 1.3rem
    }
}

.page--affiliate-program .offer-plans .list .item__icon {
    margin-bottom: .7rem
}

.page--affiliate-program .offer-plans .list .item__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans .list .item__title {
        font-size:1.1rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans .list .item__title {
        font-size:1rem;
        margin-bottom: .2rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans .list .item__desc {
        font-size:.95rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans .list .item__desc {
        font-size:.938rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans .list .item {
        -webkit-box-flex:0;
        flex: 0 0 50%;
        max-width: 50%;
        padding: .938rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans .list .item {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%;
        padding: .625rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .offer-plans .list {
        margin:-.938rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .offer-plans .list {
        margin:-.625rem
    }
}

.page--affiliate-program .level-tabs__title {
    margin-bottom: 4.2rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .level-tabs__title {
        margin-bottom:2.5rem
    }
}

.page--affiliate-program .level-tabs__btn-wrap {
    display: -webkit-box;
    display: flex
}

.page--affiliate-program .level-tabs__btn {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border-radius: .75rem .75rem 0 0;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 900;
    justify-content: center;
    padding: 2.1rem 1rem 1.6rem;
    text-transform: uppercase;
    -webkit-transition: .5s;
    transition: .5s
}

.page--affiliate-program .level-tabs__btn:after {
    background-color: #fff;
    bottom: -1rem;
    content: "";
    display: block;
    height: 1rem;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    -webkit-transition: .5s;
    transition: .5s;
    width: 100%
}

.page--affiliate-program .level-tabs__btn svg {
    margin-right: .8rem;
    max-width: 2.5rem
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .level-tabs__btn svg {
        display:none
    }
}

.page--affiliate-program .level-tabs__btn.active,.page--affiliate-program .level-tabs__btn:hover {
    background-color: #fff;
    color: #0099fa;
    position: relative
}

.page--affiliate-program .level-tabs__btn.active:after,.page--affiliate-program .level-tabs__btn:hover:after {
    opacity: 1
}

.page--affiliate-program .level-tabs__btn.active .filled-el,.page--affiliate-program .level-tabs__btn:hover .filled-el {
    fill: #0099fa
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .level-tabs__btn {
        font-size:1rem;
        padding: 1.2rem 1rem .75rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .level-tabs__btn {
        -webkit-box-flex:0;
        flex: 0 0 auto
    }
}

.page--affiliate-program .level-tabs__info {
    background-color: #fff;
    border-radius: .75rem;
    display: none;
    padding: 2.2rem 4.375rem
}

.page--affiliate-program .level-tabs__info table {
    border-collapse: collapse;
    text-align: left;
    width: 100%
}

.page--affiliate-program .level-tabs__info table td,.page--affiliate-program .level-tabs__info table th {
    border-bottom: 2px solid rgba(150,174,193,.3);
    padding: 1.14rem 0;
    width: 50%
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .level-tabs__info table td,.page--affiliate-program .level-tabs__info table th {
        display:block;
        width: 100%
    }
}

.page--affiliate-program .level-tabs__info table tr:last-child td,.page--affiliate-program .level-tabs__info table tr:last-child th {
    border-bottom: 0
}

.page--affiliate-program .level-tabs__info table td br {
    display: none
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .level-tabs__info table th {
        border-bottom:0;
        padding-bottom: 0
    }

    .page--affiliate-program .level-tabs__info table td {
        padding-bottom: .5rem;
        padding-top: 0
    }
}

.page--affiliate-program .level-tabs__info.active {
    display: block
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .level-tabs__info {
        padding:.9rem 1.25rem
    }
}

.page--affiliate-program .level-tabs .filled-el {
    fill: #3a4a68;
    -webkit-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .level-tabs {
        padding-top:1.5rem
    }
}

.page--affiliate-program .form-wrap {
    background: -webkit-gradient(linear,left top,left bottom,from(#00498c),to(#0089e0));
    background: linear-gradient(180deg,#00498c,#0089e0)
}

.page--affiliate-program .form-wrap__container {
    padding-bottom: 3rem
}

.page--affiliate-program .form-wrap__content {
    position: relative
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .form-wrap__content {
        padding-bottom:24rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap__content {
        padding-bottom:20rem
    }
}

.page--affiliate-program .form-wrap__left {
    max-width: 37rem;
    position: relative;
    z-index: 9
}

.page--affiliate-program .form-wrap__title {
    margin-bottom: 3rem;
    max-width: 30rem
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap__title {
        margin-bottom:2rem
    }
}

.page--affiliate-program .form-wrap .form .affiliate-loader svg rect,.page--affiliate-program .form-wrap .form .ajax-loader-v2__icon rect {
    fill: #fff
}

.page--affiliate-program .form-wrap .form__row {
    display: -webkit-box;
    display: flex;
    margin-bottom: 1.6rem
}

.page--affiliate-program .form-wrap .form__row_with-col {
    margin-left: -1.125rem;
    margin-right: -1.125rem
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .form__row_rules {
        margin-bottom:1rem
    }

    .page--affiliate-program .form-wrap .form__row .btn {
        margin-left: auto;
        margin-right: auto
    }

    .page--affiliate-program .form-wrap .form__row .affiliate-loader {
        margin: 0 auto
    }

    .page--affiliate-program .form-wrap .form__row {
        flex-wrap: wrap;
        margin-bottom: 1rem
    }
}

.page--affiliate-program .form-wrap .form__col {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1.125rem
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .form__col {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--affiliate-program .form-wrap .form__login-link {
    font-weight: 300
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .form__login-link {
        margin-left:auto;
        margin-right: auto
    }
}

.page--affiliate-program .form-wrap .form .form-group label {
    color: #fff;
    font-size: 1rem;
    z-index: 2
}

.page--affiliate-program .form-wrap .form .form-control {
    border-bottom-color: #fff
}

.page--affiliate-program .form-wrap .form .checkbox {
    margin-bottom: 0
}

.page--affiliate-program .form-wrap .form .checkbox .checkmark {
    top: 0
}

.page--affiliate-program .form-wrap .form .checkbox label {
    font-size: .813rem
}

.page--affiliate-program .form-wrap .form .checkbox label br {
    display: none
}

.page--affiliate-program .form-wrap .form .checkbox a {
    border-bottom: 1px solid #fff;
    color: #fff
}

.page--affiliate-program .form-wrap .form .checkbox a:hover {
    border-bottom: 1px solid transparent
}

.page--affiliate-program .form-wrap .bg {
    bottom: -4.6rem;
    left: 40rem;
    position: absolute
}

.page--affiliate-program .form-wrap .bg__img {
    position: absolute
}

.page--affiliate-program .form-wrap .bg__0 {
    bottom: 0;
    left: 4.7rem;
    z-index: 0
}

.page--affiliate-program .form-wrap .bg__1 {
    bottom: 0;
    left: 4.7rem;
    max-width: 34.313rem;
    z-index: 3
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .bg__1 {
        left:3rem;
        max-width: 20rem
    }
}

.page--affiliate-program .form-wrap .bg__2 {
    bottom: 25rem;
    left: 16rem;
    max-width: 16.625rem;
    z-index: 1
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .bg__2 {
        bottom:14.5rem;
        left: 9.5rem;
        max-width: 9.625rem
    }
}

.page--affiliate-program .form-wrap .bg__3 {
    bottom: -4.5rem;
    left: 0;
    max-width: 16.5rem;
    z-index: 4
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .bg__3 {
        bottom:-2.5rem;
        max-width: 9.5rem
    }
}

.page--affiliate-program .form-wrap .bg__4 {
    bottom: 0;
    left: 5rem;
    max-width: 35.438rem;
    z-index: 2
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .bg__4 {
        left:2.75rem;
        max-width: 21rem
    }
}

.page--affiliate-program .form-wrap .bg__circle-wrap {
    bottom: 0;
    height: 35.438rem;
    left: 2.7rem;
    overflow: hidden;
    position: absolute;
    width: 35.438rem;
    z-index: 0
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .form-wrap .bg__circle-wrap {
        max-width:20rem
    }
}

.page--affiliate-program .form-wrap .bg__circle {
    left: 0;
    position: absolute;
    top: 6rem;
    width: 100%
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .bg__circle {
        top:16rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .form-wrap .bg {
        bottom:-3rem;
        height: 37.5rem;
        left: 50%;
        margin-left: -18.75rem;
        width: 37.5rem
    }
}

@media screen and (max-width: 700px) {
    .page--affiliate-program .form-wrap .bg {
        bottom:-3rem;
        height: 25rem;
        margin-left: -12.5rem;
        width: 25rem
    }
}

@media screen and (max-width: 1000px) {
    .page--affiliate-program .form-wrap {
        padding-top:.9rem
    }
}

.page--affiliate-program .affiliate-loader {
    display: block;
    height: 35px;
    width: 30px
}

.page--affiliate-program .affiliate-loader svg {
    display: block;
    height: 30px;
    width: 30px
}

.page--affiliate-program .animation-tel-1 img {
    -webkit-animation: animationTel1 4s ease-out infinite;
    animation: animationTel1 4s ease-out infinite
}

.page--affiliate-program .animation-tel-2 img {
    -webkit-animation: animationTel2 5s ease-out infinite;
    animation: animationTel2 5s ease-out infinite
}

.page--affiliate-program .animation-tel-3 img {
    -webkit-animation: animationTel3 7s ease-out infinite;
    animation: animationTel3 7s ease-out infinite
}

@-webkit-keyframes animationTel1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(.5rem);
        transform: translateY(.5rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes animationTel1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(.5rem);
        transform: translateY(.5rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes animationTel2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateX(.4rem);
        transform: translateX(.4rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes animationTel2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateX(.4rem);
        transform: translateX(.4rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes animationTel3 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes animationTel3 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.page--affiliate-program .ajax-loader-v2__icon {
    display: block;
    height: 30px
}

.page--affiliate-program input:-webkit-autofill,.page--affiliate-program input:-webkit-autofill:focus,.page--affiliate-program input:-webkit-autofill:hover,.page--affiliate-program select:-webkit-autofill,.page--affiliate-program select:-webkit-autofill:focus,.page--affiliate-program select:-webkit-autofill:hover,.page--affiliate-program textarea:-webkit-autofill,.page--affiliate-program textarea:-webkit-autofill:focus,.page--affiliate-program textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: #96aec1;
    -webkit-box-shadow: inset 0 0 0 1000px #0068b4;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

.page--about-us h2 {
    font-size: 2.5rem;
    line-height: 3rem
}

@media screen and (max-width: 1000px) {
    .page--about-us h2 {
        font-size:2rem;
        line-height: 2.7rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us h2 {
        font-size:1.7rem;
        line-height: 2.3rem
    }
}

@media screen and (max-width: 550px) {
    .page--about-us h2 {
        font-size:1.4rem;
        line-height: 1.9rem;
        text-align: left
    }
}

.page--about-us .top-section__content {
    max-width: 62.5rem
}

.page--about-us .top-section__title span {
    display: inline-block
}

.page--about-us .top-section .bg__item_1 {
    margin-top: -23rem
}

.page--about-us .why {
    background: #eef2f9
}

.page--about-us .why h2 {
    margin-bottom: 1.875rem
}

@media screen and (max-width: 550px) {
    .page--about-us .why h2 {
        margin-bottom:1.4rem
    }
}

.page--about-us .why__container {
    padding-bottom: 2.3rem
}

.page--about-us .why__text {
    max-width: 45rem
}

.page--about-us .why__content {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap
}

.page--about-us .why__left {
    -webkit-box-flex: 0;
    flex: 0 0 70%;
    max-width: 70%
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__left {
        -webkit-box-flex:0;
        flex: 0 0 63%;
        max-width: 63%;
        padding-right: 2rem
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .why__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0
    }
}

.page--about-us .why__right {
    -webkit-box-flex: 0;
    flex: 0 0 30%;
    max-width: 30%
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__right {
        -webkit-box-flex:0;
        flex: 0 0 37%;
        max-width: 37%
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .why__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--about-us .why__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem
}

.page--about-us .why__list .why__col:nth-child(odd) {
    -webkit-box-flex: 0;
    flex: 0 0 45%
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__list .why__col:nth-child(odd) {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .why__list .why__col:nth-child(odd) {
        -webkit-box-flex:0;
        flex: 0 0 45%
    }
}

@media screen and (max-width: 600px) {
    .page--about-us .why__list .why__col:nth-child(odd) {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

.page--about-us .why__list .why__col:nth-child(2n) {
    -webkit-box-flex: 0;
    flex: 0 0 55%
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__list .why__col:nth-child(2n) {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .why__list .why__col:nth-child(2n) {
        -webkit-box-flex:0;
        flex: 0 0 55%
    }
}

@media screen and (max-width: 600px) {
    .page--about-us .why__list .why__col:nth-child(2n) {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__list {
        margin-top:2.5rem
    }
}

@media screen and (max-width: 600px) {
    .page--about-us .why__list {
        margin-top:1.5rem
    }
}

.page--about-us .why__col {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    margin-bottom: 5rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__col {
        margin-bottom:2.25rem
    }
}

@media screen and (max-width: 600px) {
    .page--about-us .why__col {
        margin-bottom:1.25rem
    }
}

.page--about-us .why__num {
    font-family: Montserrat;
    font-size: 3.125rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 3.125rem;
    margin-bottom: .65rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg,#0099fa,#1a4dde);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0b75ec
}

.page--about-us .why__num i {
    font-style: normal;
    white-space: nowrap
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .page--about-us .why__num {
        background: transparent;
        color: #0b75ec
    }
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__num {
        font-size:2.5rem;
        letter-spacing: .5px;
        line-height: 2.5rem;
        margin-bottom: .4rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .why__num {
        font-size:2.2rem;
        line-height: 2.2rem;
        margin-bottom: .3rem
    }
}

@media screen and (max-width: 600px) {
    .page--about-us .why__num {
        font-size:2rem;
        line-height: 2rem
    }
}

.page--about-us .why__desc {
    color: rgba(23,50,87,.7);
    display: block;
    font-size: 1.25rem;
    font-weight: 700
}

@media screen and (max-width: 1000px) {
    .page--about-us .why__desc {
        font-size:1.05rem
    }
}

@media screen and (max-width: 550px) {
    .page--about-us .why__desc {
        font-size:1rem
    }
}

.page--about-us .why .info {
    background: #fff;
    border-radius: .75rem;
    margin-top: 6.563rem;
    padding: 8.125rem 1.875rem 1.875rem;
    position: relative
}

.page--about-us .why .info p {
    margin-bottom: 1.25rem
}

.page--about-us .why .info p span {
    color: #4bb9ff
}

.page--about-us .why .info__img {
    display: block;
    left: 50%;
    margin-left: -11.063rem;
    position: absolute;
    top: -8.49rem;
    width: 22.188rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .why .info__img {
        margin-left:-8.5rem;
        top: -6.5rem;
        width: 17rem
    }

    .page--about-us .why .info {
        margin-top: 10rem;
        padding: 7.125rem 1.875rem 1.875rem
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .why .info {
        margin-top:6rem;
        padding: 7.125rem 1.75rem 1.875rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .why .info {
        padding:7.125rem .938rem 1.875rem
    }
}

.page--about-us .how-we-work h2 {
    margin-top: 2.4rem
}

@media screen and (max-width: 1100px) {
    .page--about-us .how-we-work h2 {
        margin-bottom:3.2rem;
        margin-top: 0
    }
}

@media screen and (max-width: 1000px) {
    .page--about-us .how-we-work h2 {
        margin-bottom:1.875rem
    }
}

@media screen and (max-width: 550px) {
    .page--about-us .how-we-work h2 {
        margin-bottom:1.4rem
    }
}

.page--about-us .how-we-work__content {
    display: -webkit-box;
    display: flex
}

@media screen and (max-width: 1100px) {
    .page--about-us .how-we-work__content {
        flex-wrap:wrap
    }
}

.page--about-us .how-we-work__left {
    -webkit-box-flex: 0;
    flex: 0 0 31%;
    max-width: 31%;
    padding-right: 3rem
}

@media screen and (max-width: 1100px) {
    .page--about-us .how-we-work__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0
    }
}

.page--about-us .how-we-work__right {
    -webkit-box-flex: 0;
    flex: 0 0 69%;
    max-width: 69%
}

@media screen and (max-width: 1100px) {
    .page--about-us .how-we-work__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--about-us .how-we-work__svg {
    height: 3.875rem;
    margin-left: -.5rem;
    margin-top: -1.2rem;
    width: 3.875rem
}

@media screen and (max-width: 550px) {
    .page--about-us .how-we-work__svg {
        height:3rem;
        margin-left: -.4rem;
        margin-top: -.5rem;
        width: 3rem
    }
}

.page--about-us .how-we-work__text {
    margin-bottom: 1.875rem;
    max-width: 42rem
}

.page--about-us .support-head__name {
    color: #0099fa;
    margin-right: 1rem;
    position: relative
}

.page--about-us .support-head__name:after {
    background-color: #96aec1;
    content: "";
    display: block;
    height: 1.688rem;
    position: absolute;
    right: calc(-1rem - 2px);
    top: -2px;
    width: 2px
}

.page--about-us .support-head__post {
    color: #96aec1;
    margin-left: 1rem
}

.page--about-us .about-us_blue-bg {
    background: -webkit-gradient(linear,left top,left bottom,from(#10497d),color-stop(60%,#10497d),to(#002546));
    background: linear-gradient(#10497d,#10497d 60%,#002546)
}

.page--about-us .documents {
    color: #1e385b
}

.page--about-us .documents h2 {
    margin-bottom: 2rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .documents h2 {
        margin-bottom:1.1rem
    }
}

@media screen and (max-width: 550px) {
    .page--about-us .documents h2 {
        margin-bottom:1rem
    }
}

.page--about-us .documents__content {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: .75rem;
    padding: 2.5rem 3.75rem
}

@media screen and (max-width: 850px) {
    .page--about-us .documents__content {
        flex-wrap:wrap;
        padding: 1.75rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .documents__content {
        padding:1.4rem .938rem 1.9rem
    }
}

.page--about-us .documents__img-wrap {
    -webkit-box-flex: 0;
    flex: 0 0 9.25rem;
    max-width: 9.25rem
}

@media screen and (max-width: 850px) {
    .page--about-us .documents__img-wrap {
        display:none;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--about-us .documents__img {
    width: 9.25rem
}

.page--about-us .documents__info-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% - 9.25rem);
    -webkit-box-align: center;
    align-items: center;
    max-width: calc(100% - 9.25rem);
    padding-left: 4rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .documents__info-wrap {
        flex-wrap:wrap
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .documents__info-wrap {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0
    }
}

.page--about-us .documents__left {
    -webkit-box-flex: 0;
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 2rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .documents__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0
    }
}

.page--about-us .documents__right {
    -webkit-box-flex: 0;
    flex: 0 0 60%;
    max-width: 60%
}

@media screen and (max-width: 1000px) {
    .page--about-us .documents__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--about-us .documents__desc {
    max-width: 19rem
}

.page--about-us .documents__desc a {
    border-bottom: 1px solid #0099fa;
    color: #1e385b;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    white-space: nowrap
}

.page--about-us .documents__desc a:hover {
    border-bottom: 1px solid transparent
}

@media screen and (max-width: 1000px) {
    .page--about-us .documents__desc {
        flex-wrap:wrap;
        margin-bottom: 2rem;
        max-width: 100%
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .documents__desc {
        margin-bottom:1.5rem;
        margin-bottom: 1.1rem
    }
}

.page--about-us .documents .list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
    max-width: 32rem
}

.page--about-us .documents .list__item {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    padding: 1rem
}

@media screen and (max-width: 600px) {
    .page--about-us .documents .list__item {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

@media screen and (max-width: 850px) {
    .page--about-us .documents .list__item {
        padding:.5rem
    }
}

.page--about-us .documents .list__link {
    border-bottom: 1px solid #0099fa;
    color: #1e385b;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.page--about-us .documents .list__link:hover {
    border-bottom: 1px solid transparent
}

@media screen and (max-width: 850px) {
    .page--about-us .documents .list {
        margin:-.5rem
    }
}

.page--about-us .timeline h2 {
    margin-bottom: 2.5rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .timeline h2 {
        margin-bottom:1.875rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .timeline h2 {
        margin-bottom:1rem
    }
}

.page--about-us .timeline__container {
    padding: 8.25rem 1.875rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .timeline__container {
        padding:5.25rem 1.875rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .timeline__container {
        padding:3.25rem .938rem 2rem
    }
}

.page--about-us .timeline__arrows {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-bottom: 3rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .timeline__arrows {
        margin-bottom:2rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .timeline__arrows {
        margin-bottom:1rem
    }
}

.page--about-us .timeline__arrow {
    display: -webkit-box!important;
    display: flex!important;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border: 2px solid transparent;
    border-radius: 50%;
    color: #0099fa;
    cursor: pointer;
    font-size: 2.2rem;
    height: 2.688rem;
    justify-content: center;
    line-height: 2.2rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    width: 2.688rem
}

.page--about-us .timeline__arrow svg path {
    stroke: #0099fa
}

.page--about-us .timeline__arrow:hover {
    border: 2px solid #fff;
    color: #fff
}

.page--about-us .timeline__arrow:hover svg path {
    stroke: #fff
}

.page--about-us .timeline .slider {
    margin: 0 -.938rem;
    position: relative
}

.page--about-us .timeline .slider__wrap {
    padding: .938rem
}

.page--about-us .timeline .slider__header {
    border-bottom: 2px solid #0099fa;
    color: #0099fa;
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 600;
    height: 4.813rem;
    margin-bottom: -2px;
    padding-left: 2.5rem;
    position: relative
}

.page--about-us .timeline .slider__header_year:before {
    background-color: #0099fa;
    content: "";
    display: block;
    height: 4.813rem;
    left: .95rem;
    position: absolute;
    top: 0;
    width: 2px
}

@media screen and (max-width: 1000px) {
    .page--about-us .timeline .slider__header_year:before {
        height:4rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .timeline .slider__header_year:before {
        height:3.5rem
    }
}

.page--about-us .timeline .slider__header_first:after {
    background-color: #10497d;
    bottom: -.3rem;
    content: "";
    display: block;
    height: .5rem;
    left: -.05rem;
    position: absolute;
    width: 1rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .timeline .slider__header {
        font-size:2.2rem;
        height: 4rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .timeline .slider__header {
        font-size:1.8rem;
        height: 3.5rem;
        padding-left: 2rem
    }
}

.page--about-us .timeline .slider__divider {
    height: 1rem;
    position: relative
}

.page--about-us .timeline .slider__divider:after,.page--about-us .timeline .slider__divider:before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute
}

.page--about-us .timeline .slider__divider:before {
    height: 2rem;
    left: 3.6rem;
    top: 0;
    width: 2px
}

.page--about-us .timeline .slider__divider:after {
    border-radius: 50%;
    height: .625rem;
    left: 3.35rem;
    top: -.27rem;
    width: .625rem
}

.page--about-us .timeline .slider__in {
    background: #fff;
    border-radius: .75rem;
    color: #1e385b;
    min-height: 7.688rem;
    padding: 1rem 1.25rem 1.2rem
}

.page--about-us .timeline .slider__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .65rem;
    text-transform: uppercase
}

.page--about-us .timeline .slider__info li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative
}

.page--about-us .timeline .slider__info li:before {
    background-color: #0099fa;
    border-radius: 50%;
    content: "";
    display: block;
    height: .438rem;
    left: 0;
    position: absolute;
    top: .5rem;
    width: .438rem
}

.page--about-us .timeline .slider__info li span {
    font-weight: 700
}

.page--about-us .timeline .slider__info li:last-child {
    margin-bottom: 0
}

.page--about-us .timeline .slider__soc {
    display: inline-block;
    height: 1.625rem;
    margin-right: .3rem;
    margin-top: .7rem;
    text-decoration: none;
    width: 1.625rem
}

.page--about-us .timeline .slider__soc_web {
    background: url(../images/icon-web.svg) no-repeat 0;
    background-size: contain
}

.page--about-us .timeline .slider__soc_android {
    background: url(../images/icon-android.svg) no-repeat 0;
    background-size: contain
}

.page--about-us .timeline .slider__soc_ios {
    background: url(../images/icon-ios.svg) no-repeat 0;
    background-size: contain
}

.page--about-us .timeline .slider__soc_tb {
    background: url(../images/icon-tb.svg) no-repeat 0;
    background-size: contain
}

.page--about-us .timeline .slider__soc_first {
    margin-left: 1rem
}

.page--about-us .core-values {
    padding-bottom: 7.5rem
}

.page--about-us .core-values__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: -1.7rem -3.125rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .core-values__list {
        margin:-1.25rem -1.5rem
    }
}

.page--about-us .core-values__item {
    -webkit-box-flex: 1;
    flex: 1 1 33.3333%;
    max-width: 33.333%;
    padding: 2.25rem 3.125rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .core-values__item {
        padding:1.75rem 1.5rem
    }
}

@media screen and (max-width: 900px) {
    .page--about-us .core-values__item {
        -webkit-box-flex:1;
        flex: 1 1 50%;
        max-width: 50%
    }
}

@media screen and (max-width: 650px) {
    .page--about-us .core-values__item {
        -webkit-box-flex:1;
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.25rem 1.5rem
    }
}

@media screen and (max-width: 500px) {
    .page--about-us .core-values__item {
        padding:1rem 1.5rem
    }
}

.page--about-us .core-values .item__icon {
    margin-bottom: .5rem
}

@media screen and (max-width: 650px) {
    .page--about-us .core-values .item__icon {
        width:3.125rem
    }
}

.page--about-us .core-values .item__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: .9rem;
    text-transform: uppercase
}

@media screen and (max-width: 650px) {
    .page--about-us .core-values .item__title {
        font-size:1.15rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .core-values {
        padding-bottom:3.5rem
    }
}

.page--about-us .documents+.core-values {
    padding-top: 8.25rem
}

@media screen and (max-width: 1000px) {
    .page--about-us .documents+.core-values {
        padding-top:5.25rem
    }
}

@media screen and (max-width: 700px) {
    .page--about-us .documents+.core-values {
        padding-top:3.25rem
    }
}

.page--about-us .social {
    background-color: #fff;
    color: #515151;
    padding-bottom: 2.5rem;
    padding-top: 1.4rem;
    text-align: center
}

.page--about-us .social h2 {
    margin-bottom: 1.7rem
}

@media screen and (max-width: 550px) {
    .page--about-us .social h2 {
        text-align:center
    }
}

.page--about-us .social__text {
    margin: 0 auto;
    max-width: 60rem
}

.page--about-us .social-link__list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(172px,1fr));
    margin: 2.4rem auto 0;
    max-width: 760px;
    row-gap: 45px
}

@media screen and (max-width: 1000px) {
    .page--about-us .social-link__list {
        margin-top:1.4rem
    }
}

.page--about-us .social-link__item {
    visibility: hidden
}

.page--about-us .social-link__in {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border-radius: .75rem;
    color: #fff;
    font-size: .938rem;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: .65rem 0;
    text-align: left;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.page--about-us .social-link__in svg {
    height: 22px;
    margin-right: .5rem;
    width: 22px
}

.page--about-us .social-link__in_fb {
    background-color: #0099fa
}

.page--about-us .social-link__in_fb:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(24,119,242,.4);
    box-shadow: 0 .938rem 1.25rem rgba(24,119,242,.4)
}

.page--about-us .social-link__in_vk {
    background-color: #298ae4
}

.page--about-us .social-link__in_vk:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(70,128,194,.4);
    box-shadow: 0 .938rem 1.25rem rgba(70,128,194,.4)
}

.page--about-us .social-link__in_ig {
    background: #7047ce;
    background: linear-gradient(45deg,#f99335,#f0693c 20%,#c82cc2 57%,#7047ce)
}

.page--about-us .social-link__in_ig:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(231,72,85,.4);
    box-shadow: 0 .938rem 1.25rem rgba(231,72,85,.4)
}

.page--about-us .social-link__in_tg {
    background-color: #2f9edf
}

.page--about-us .social-link__in_tg:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(39,165,229,.4);
    box-shadow: 0 .938rem 1.25rem rgba(39,165,229,.4)
}

.page--about-us .social-link__in_yt {
    background-color: #d8000e
}

.page--about-us .social-link__in_yt:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(255,0,0,.4);
    box-shadow: 0 .938rem 1.25rem rgba(255,0,0,.4)
}

.page--about-us .social-link__in_tw {
    background-color: #303030
}

.page--about-us .social-link__in_tw:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(48,48,48,.4);
    box-shadow: 0 .938rem 1.25rem rgba(48,48,48,.4)
}

.page--about-us .social-link__in_ds {
    background-color: #707af7
}

.page--about-us .social-link__in_ds:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(112,122,247,.4);
    box-shadow: 0 .938rem 1.25rem rgba(112,122,247,.4)
}

.page--about-us .social-link__in_tt {
    background-color: #fe2c55
}

.page--about-us .social-link__in_tt:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem rgba(254,44,85,.4);
    box-shadow: 0 .938rem 1.25rem rgba(254,44,85,.4)
}

.page--about-us .social-link__in_th {
    background-color: #101010
}

.page--about-us .social-link__in_th:hover {
    -webkit-box-shadow: 0 .938rem 1.25rem hsla(0,0%,6%,.4);
    box-shadow: 0 .938rem 1.25rem hsla(0,0%,6%,.4)
}

@media screen and (max-width: 1000px) {
    .page--about-us .social-link__in {
        padding:.5rem 0
    }
}

@media screen and (max-width: 810px) {
    .page--about-us .social-link__in {
        row-gap:20px
    }
}

@media screen and (max-width: 550px) {
    .page--about-us .social-link__in {
        padding:.4rem 0
    }
}

@media screen and (max-width: 400px) {
    .page--about-us .social-link__in {
        row-gap:10px
    }
}

@media screen and (max-width: 1000px) {
    .page--about-us .social {
        padding-bottom:0;
        padding-top: 0
    }
}

.page--about-us .join-us {
    background: -webkit-gradient(linear,left top,left bottom,from(#00498c),to(#0089e0));
    background: linear-gradient(180deg,#00498c,#0089e0);
    overflow: hidden;
    position: relative;
    text-align: center
}

.page--about-us .join-us__content {
    position: relative;
    z-index: 3
}

.page--about-us .join-us .bg {
    bottom: 0;
    display: -webkit-box;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%
}

.page--about-us .join-us .bg__item_1 {
    margin-left: 6rem;
    margin-top: -25rem
}

.page--about-us .join-us h2 {
    margin-bottom: 2.2rem
}

@media screen and (max-width: 550px) {
    .page--about-us .join-us h2 {
        text-align:center
    }
}

.page--about-us .join-us__text {
    margin: 0 auto 3rem;
    max-width: 62rem
}

.page--about-us .join-us__text span {
    font-weight: 700
}

@media screen and (max-width: 550px) {
    .page--about-us .join-us__text {
        margin:0 auto 2rem
    }
}

.page--about-us .join-us__btn {
    min-width: 17rem
}

.page--payment-methods .top-section {
    background: #0f487c;
    overflow: visible
}

.page--payment-methods .top-section:after {
    background: linear-gradient(135deg,#02274b,#0f487c);
    bottom: -12.5rem;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.page--payment-methods .pm-section {
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(15,72,124,0)),color-stop(10rem,#0f487c),to(#0f487c));
    background: linear-gradient(180deg,rgba(15,72,124,0),#0f487c 10rem,#0f487c);
    position: relative;
    z-index: 2
}

.page--payment-methods .pm-section .container {
    padding-bottom: 5rem
}

@media screen and (max-width: 1000px) {
    .page--payment-methods .pm-section .container {
        padding-bottom:3.25rem
    }
}

@media screen and (max-width: 700px) {
    .page--payment-methods .pm-section .container {
        padding-bottom:2.5rem
    }
}

@media screen and (max-width: 1000px) {
    .page--payment-methods .pm-section {
        background:-webkit-gradient(linear,left top,left bottom,from(rgba(15,72,124,0)),color-stop(6rem,#0f487c),to(#0f487c));
        background: linear-gradient(180deg,rgba(15,72,124,0),#0f487c 6rem,#0f487c)
    }
}

.page--payment-methods .pm-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: -.9375rem
}

.page--payment-methods .pm-list__item {
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
    padding: .9375rem
}

@media screen and (max-width: 1700px) {
    .page--payment-methods .pm-list__item {
        -webkit-box-flex:0;
        flex: 0 0 25%;
        max-width: 25%
    }
}

@media screen and (max-width: 1270px) {
    .page--payment-methods .pm-list__item {
        -webkit-box-flex:0;
        flex: 0 0 33.333%;
        max-width: 33.333%
    }
}

@media screen and (max-width: 1000px) {
    .page--payment-methods .pm-list__item {
        padding:.45rem
    }
}

@media screen and (max-width: 850px) {
    .page--payment-methods .pm-list__item {
        -webkit-box-flex:0;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media screen and (max-width: 550px) {
    .page--payment-methods .pm-list__item {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin: 0 auto;
        max-width: 23rem
    }
}

.page--payment-methods .pm-list__link {
    background-color: #eef2f9;
    border-radius: .75rem;
    color: #1e385b;
    display: block;
    height: 100%;
    overflow: hidden;
    padding-bottom: 5.75rem;
    position: relative;
    text-align: center;
    text-decoration: none
}

.page--payment-methods .pm-list__img-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    height: 6.6rem;
    justify-content: center
}

.page--payment-methods .pm-list__img-wrap img {
    display: inline-block;
    max-height: 90%;
    max-width: 90%;
    vertical-align: middle
}

.page--payment-methods .pm-list__top {
    min-height: 11.875rem
}

.page--payment-methods .pm-list__name {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.4rem;
    margin: 0 auto;
    max-width: 15rem;
    min-height: 3rem;
    padding-left: .625rem;
    padding-right: .625rem
}

.page--payment-methods .pm-list .info {
    background: #dbe6ef;
    bottom: 0;
    font-size: 1rem;
    left: 0;
    min-height: 7.5rem;
    padding: 1.3rem 1.4rem;
    position: absolute;
    text-align: left;
    width: 100%
}

.page--payment-methods .pm-list .info__label {
    display: inline-block;
    font-size: 1rem;
    margin-right: .5rem;
    min-width: 5.75rem
}

@media screen and (max-width: 1000px) {
    .page--payment-methods .pm-list .info__label {
        font-size:.95rem
    }
}

.page--payment-methods .pm-list .info__commission {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: .4rem
}

.page--payment-methods .pm-list .info__commission .info__value {
    background-color: #34a853;
    border-radius: .75rem;
    color: #fff;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25rem;
    padding: .25rem .438rem .125rem;
    text-align: center
}

@media screen and (max-width: 1000px) {
    .page--payment-methods .pm-list .info__commission .info__value {
        font-size:1.1rem;
        line-height: 1.1rem
    }
}

.page--payment-methods .pm-list .info__min-amount {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.page--payment-methods .pm-list .info__min-amount .info__value {
    font-weight: 700
}

@media screen and (max-width: 1000px) {
    .page--payment-methods .pm-list .info {
        font-size:.95rem;
        min-height: 6.4rem;
        padding: 1rem
    }

    .page--payment-methods .pm-list {
        margin: -.45rem
    }
}

.page--assets .tab-content__current .utc-label {
    left: 46px!important;
    -webkit-transform: none!important;
    transform: none!important
}

.page--assets .tab-content__current .assets-table-header {
    border-bottom: 1px solid #dde1e5
}

.page--assets .tab-content__current .assets-table-header>div {
    text-align: left
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current .assets-table-header>div {
        height:3rem;
        line-height: 4rem
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table-header>div {
        height:auto
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table-header>div {
        line-height:3rem
    }
}

.page--assets .tab-content__current .assets-table-header .left-block {
    padding-left: 2.4rem;
    width: 16.4rem
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current .assets-table-header .left-block {
        -webkit-box-ordinal-group:3;
        order: 2
    }
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .assets-table-header .left-block {
        width:14rem
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table-header .left-block {
        padding-left:1.25rem
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table-header .left-block {
        width:13rem
    }
}

.page--assets .tab-content__current .assets-table-header .payout-label {
    width: calc(37.5% - 16.4rem)
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current .assets-table-header .payout-label {
        -webkit-box-ordinal-group:4;
        order: 3
    }
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .assets-table-header .payout-label {
        width:calc(100% - 14rem)
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table-header .payout-label {
        width:calc(100% - 13rem)
    }
}

.page--assets .tab-content__current .assets-table-header .right-block {
    margin-left: 0;
    padding-right: 4rem;
    width: 62.5%
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table-header .right-block>div {
        height:auto
    }
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current .assets-table-header .right-block {
        -webkit-box-ordinal-group:2;
        order: 1;
        width: 100%
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table-header .right-block {
        margin-bottom:15px
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table-header .right-block {
        display:-webkit-box;
        display: flex
    }
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current .assets-table-header {
        display:-webkit-box;
        display: flex;
        flex-wrap: wrap;
        height: auto
    }

    .page--assets .tab-content__current .assets-table-header_fixed {
        -webkit-box-shadow: unset;
        box-shadow: unset;
        height: auto;
        max-width: 100%;
        position: unset
    }
}

.page--assets .tab-content__current .assets-table-container:after,.page--assets .tab-content__current .assets-table-container:before {
    display: none
}

.page--assets .tab-content__current .assets-table-date {
    font-size: .875rem;
    padding: 1.5rem .5rem 0 2.4rem
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table-date {
        font-size:.8rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }
}

.page--assets .tab-content__current .assets-table .row>div {
    text-align: left
}

.page--assets .tab-content__current .assets-table .row .trading-status {
    left: 2.25rem
}

.page--assets .tab-content__current .assets-table .row .trading-status-indicator {
    -webkit-animation: unset;
    animation: unset;
    -webkit-animation-iteration-count: unset;
    animation-iteration-count: unset
}

.page--assets .tab-content__current .assets-table .row .trading-status-indicator.animate {
    -webkit-animation: trading-status-indicator-pulsate 1.5s ease-out;
    animation: trading-status-indicator-pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .assets-table .row .trading-status {
        top:1.2rem;
        -webkit-transform: translateY(-54%);
        transform: translateY(-54%)
    }
}

@media screen and (max-width: 670px) {
    .page--assets .tab-content__current .assets-table .row .trading-status {
        top:.97rem
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table .row .trading-status {
        left:20px
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table .row .trading-status {
        left:0
    }
}

.page--assets .tab-content__current .assets-table .row .symbol {
    padding: 0 1rem 0 3.5rem;
    width: 16.4rem
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .assets-table .row .symbol {
        width:14rem
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table .row .symbol {
        padding:0 1rem 0 2.2rem
    }
}

@media screen and (max-width: 550px) {
    .page--assets .tab-content__current .assets-table .row .symbol {
        padding-right:1.1rem;
        width: 13rem
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table .row .symbol {
        padding-left:1.1rem
    }
}

.page--assets .tab-content__current .assets-table .row .payout {
    padding-right: 2rem;
    width: calc(100% - 16.4rem)
}

.page--assets .tab-content__current .assets-table .row .payout__in {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    background: #135ee4;
    background: -webkit-gradient(linear,left top,right top,from(#0056f9),to(#00c3fc));
    background: linear-gradient(90deg,#0056f9,#00c3fc);
    border-radius: .3rem;
    color: #fff;
    font-size: 1rem;
    height: 1.75rem;
    justify-content: flex-end;
    line-height: .75rem;
    min-width: 40px;
    overflow: hidden;
    padding: 0 .75rem
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .assets-table .row .payout__in {
        height:1.45rem;
        padding: 0 10px
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .assets-table .row .payout__in {
        height:1.6rem;
        line-height: 1.6rem
    }
}

@media screen and (max-width: 550px) {
    .page--assets .tab-content__current .assets-table .row .payout__in {
        -webkit-box-pack:end;
        background: transparent;
        color: #1d2941;
        justify-content: flex-end;
        padding: 0;
        width: 100%!important
    }
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .assets-table .row .payout {
        padding-right:0;
        width: calc(100% - 15rem)
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .assets-table .row .payout {
        width:calc(100% - 13rem)
    }
}

.page--assets .tab-content__current .hidden {
    display: none
}

.page--assets .tab-content__current .filter {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end
}

.page--assets .tab-content__current .filter__item {
    padding-left: 1.25rem;
    white-space: nowrap
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .filter__item {
        height:1.75rem
    }
}

.page--assets .tab-content__current .filter__checkbox {
    margin: .625rem 0 0 1.25rem;
    opacity: 0;
    position: absolute;
    z-index: -1
}

.page--assets .tab-content__current .filter__checkbox+label span:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: .95rem;
    width: .95rem
}

.page--assets .tab-content__current .filter__checkbox_currency+label span:before {
    background-image: url(../images/icon-currency.png)
}

.page--assets .tab-content__current .filter__checkbox_commodity+label span:before {
    background-image: url(../images/icon-commodities.png)
}

.page--assets .tab-content__current .filter__checkbox_cryptocurrencies+label span:before {
    background-image: url(../images/icon-crypto.png)
}

.page--assets .tab-content__current .filter__checkbox_stock+label span:before {
    background-image: url(../images/icon-stocks.png)
}

.page--assets .tab-content__current .filter__checkbox_indeces+label span:before {
    background-image: url(../images/icon-indices.png)
}

.page--assets .tab-content__current .filter__checkbox+label {
    cursor: pointer;
    font-size: .875rem;
    opacity: .5;
    padding: 0 0 0 3.125rem;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s
}

.page--assets .tab-content__current .filter__checkbox+label:before {
    border: 2px solid #1d2941;
    border-radius: .188rem;
    content: "";
    height: 1.125rem;
    left: 0;
    position: absolute;
    top: .05rem;
    -webkit-transition: .5s;
    transition: .5s;
    width: 1.125rem
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .filter__checkbox+label:before {
        height:1rem;
        width: 1rem
    }
}

.page--assets .tab-content__current .filter__checkbox+label:after {
    border-color: #fff;
    border-style: solid;
    border-width: 0 0 2px 2px;
    content: "";
    display: block;
    height: .438rem;
    left: .188rem;
    opacity: 0;
    position: absolute;
    top: .25rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: .5s;
    transition: .5s;
    width: .75rem
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .filter__checkbox+label:after {
        height:.38rem;
        width: .65rem
    }
}

.page--assets .tab-content__current .filter__checkbox+label span {
    position: relative
}

.page--assets .tab-content__current .filter__checkbox+label span:before {
    left: -1.25rem;
    position: absolute;
    top: 2px
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content__current .filter__checkbox+label {
        font-size:.8rem;
        padding: 0 0 0 3rem
    }
}

.page--assets .tab-content__current .filter__checkbox:checked+label {
    opacity: 1
}

.page--assets .tab-content__current .filter__checkbox:checked+label:before {
    background: #1d2941
}

.page--assets .tab-content__current .filter__checkbox:checked+label:after {
    opacity: 1
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current .filter {
        flex-wrap:wrap;
        -webkit-box-pack: start;
        justify-content: flex-start;
        padding-left: 1.45rem
    }
}

@media screen and (max-width: 900px) {
    .page--assets .tab-content__current .filter {
        flex-wrap:wrap;
        -webkit-box-pack: start;
        justify-content: flex-start;
        padding-left: 0
    }
}

@media screen and (max-width: 500px) {
    .page--assets .tab-content__current .filter {
        margin-bottom:.5rem
    }
}

@media screen and (max-width: 1200px) {
    .page--assets .tab-content__current {
        padding-top:0!important
    }
}

.page--assets .content {
    max-width: 1250px
}

.page--assets .btn-wrap:last-child {
    margin-top: 1.875rem
}

.page--assets .assets-table .row .time-line>div:not(.from-to-line),.page--assets .assets-table .row>div {
    display: inline-block;
    font-size: 14px;
    vertical-align: middle
}

.page--assets .assets-table-comment {
    font-size: .875rem;
    padding: 2.5rem .5rem 1rem 2.3rem
}

@media screen and (max-width: 900px) {
    .page--assets .assets-table-comment {
        font-size:.8rem;
        line-height: 1.2rem;
        padding: 2rem .5rem 1rem 1rem
    }
}

.page--assets .assets-table .row {
    font-size: 0;
    height: 3.125rem;
    line-height: 3.125rem;
    margin: 0
}

.page--assets .assets-table .row>div {
    text-align: center
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row>div {
        text-align:left
    }
}

.page--assets .assets-table .row .symbol {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3rem;
    padding: 0 2.5rem 0 .5rem;
    width: 15%
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .row .symbol {
        font-size:.85rem;
        line-height: 1.1rem;
        padding: 0 1.5rem 0 .5rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .symbol {
        width:10rem
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row .symbol {
        font-size:.8rem;
        padding-left: 15px;
        width: 70%
    }
}

.page--assets .assets-table .row .payout {
    font-size: 1rem;
    font-weight: 700;
    width: 13.5%
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .row .payout {
        font-size:.9rem;
        line-height: 1.1rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .payout {
        width:8rem
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row .payout {
        font-size:.8rem;
        text-align: right;
        width: 30%
    }
}

.page--assets .assets-table .row .trading-status {
    left: 11.7%;
    position: absolute;
    width: .625rem
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .trading-status .tooltip-content {
        display:none!important
    }
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .row .trading-status {
        left:12.7%
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .trading-status {
        left:8.5rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row .trading-status {
        left:0;
        top: .17rem;
        -webkit-transform: none;
        transform: none
    }
}

.page--assets .assets-table .row .time-line {
    font-size: 0;
    margin-left: 3.55%;
    position: relative;
    width: 64.05%
}

.page--assets .assets-table .row .time-line:before {
    background-image: linear-gradient(90deg,#eee,#eee calc(100% - 1px),#c9cbcc calc(100% - 1px),#c9cbcc);
    background-repeat: repeat-x;
    background-size: 4.1666666667% .25rem;
    content: "";
    display: block;
    height: .25rem;
    left: 0;
    position: absolute;
    top: 1.35rem;
    width: 100%;
    z-index: 2
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .row .time-line:before {
        height:.6rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table .row .time-line:before {
        height:.4rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .time-line:before {
        display:none
    }
}

.page--assets .assets-table .row .time-line:after {
    background: #eee;
    content: "";
    display: block;
    height: .25rem;
    position: absolute;
    right: 0;
    top: 1.35rem;
    width: 2px;
    z-index: 4
}

.page--assets .assets-table .row .time-line>div:not(.from-to-line) {
    width: 4.1666666667%
}

.page--assets .assets-table .row .time-line>div:not(.from-to-line).current {
    background-color: rgba(29,41,65,.05)
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .time-line>div:not(.from-to-line).current {
        background-color:transparent
    }

    .page--assets .assets-table .row .time-line>div:not(.from-to-line) {
        display: none
    }
}

.page--assets .assets-table .row .time-line .hour {
    position: relative
}

.page--assets .assets-table .row .time-line .hour:after {
    background-color: hsla(0,0%,100%,.2);
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    z-index: 6
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .time-line .hour {
        display:none
    }
}

.page--assets .assets-table .row .time-line .from-to-line {
    left: 0;
    position: absolute;
    text-transform: lowercase;
    top: .6rem;
    width: 100%;
    z-index: 5
}

.page--assets .assets-table .row .time-line .from-to-line__in {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    background: #135ee4;
    background: -webkit-gradient(linear,left top,right top,from(#0056f9),to(#00c3fc));
    background: linear-gradient(90deg,#0056f9,#00c3fc);
    border-radius: .3rem;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.22);
    box-shadow: 0 5px 10px rgba(0,0,0,.22);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    height: 1.75rem;
    justify-content: space-between;
    line-height: .75rem;
    padding: 0 15px;
    text-align: center
}

.page--assets .assets-table .row .time-line .from-to-line__in_dots {
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.page--assets .assets-table .row .time-line .from-to-line__in_dots span {
    margin-top: -.5rem
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .row .time-line .from-to-line__in_dots {
        display:none
    }

    .page--assets .assets-table .row .time-line .from-to-line__in {
        font-size: .8rem;
        height: 1.45rem;
        padding: 0 10px
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .time-line .from-to-line__in {
        -webkit-box-pack:center;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #1d2941;
        justify-content: center;
        padding: 0
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row .time-line .from-to-line__in {
        -webkit-box-pack:start;
        justify-content: flex-start
    }
}

.page--assets .assets-table .row .time-line .from-to-line .tooltip-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row .time-line .from-to-line .tooltip-text {
        -webkit-box-pack:start;
        justify-content: flex-start
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .row .time-line .from-to-line {
        position:unset;
        width: 100%!important
    }

    .page--assets .assets-table .row .time-line {
        line-height: .5rem;
        margin-left: 0;
        padding: 0 2rem;
        width: calc(100% - 18rem)
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row .time-line {
        border-bottom:1px solid #dde1e5;
        padding: 0;
        width: 100%
    }
}

.page--assets .assets-table .row .trading-status-indicator {
    -webkit-animation: trading-status-indicator-pulsate 1.5s ease-out;
    animation: trading-status-indicator-pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 50%;
    display: inline-block;
    height: .625rem;
    width: .625rem
}

.page--assets .assets-table .row .trading-status-indicator.trading {
    background-color: #008641;
    -webkit-box-shadow: 0 0 3px 3px rgba(0,134,65,.2);
    box-shadow: 0 0 3px 3px rgba(0,134,65,.2)
}

.page--assets .assets-table .row .trading-status-indicator.not-trading {
    background-color: #b3b3b3;
    -webkit-box-shadow: 0 0 3px 3px hsla(0,0%,70%,.2);
    box-shadow: 0 0 3px 3px hsla(0,0%,70%,.2)
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .row .trading-status-indicator {
        height:.425rem;
        width: .425rem
    }

    .page--assets .assets-table .row {
        height: 2.5rem;
        line-height: 2.5rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table .row {
        height:2rem;
        line-height: 2rem
    }
}

@media screen and (max-width: 7500px) {
    .page--assets .assets-table .row {
        height:auto;
        min-height: 2rem;
        position: relative
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .row {
        line-height:1rem;
        padding: .25rem 0
    }
}

.page--assets .assets-table .divider {
    background-color: #eff1f3;
    border-top: 1px solid #dde1e5;
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 2.8rem;
    position: relative
}

.page--assets .assets-table .divider:after {
    border-color: #000;
    border-style: solid;
    border-width: 0 0 4px 4px;
    content: "";
    display: block;
    height: .75rem;
    margin-top: -.6rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition: .5s;
    transition: .5s;
    width: .75rem
}

.page--assets .assets-table .divider.hide:after {
    margin-top: -.3rem;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.page--assets .assets-table .divider.hide+.assets-table-container {
    display: none
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table .divider {
        font-size:1rem;
        padding: 1rem 1.25rem
    }

    .page--assets .assets-table .divider:after {
        right: 1.5rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table .divider:after {
        border-width:0 0 3px 3px;
        height: .6rem;
        right: .75rem;
        width: .6rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table .divider {
        font-size:.8rem;
        padding: .7rem 1rem
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table .divider {
        padding:.5rem .625rem
    }

    .page--assets .assets-table .divider:after {
        border-width: 0 0 2px 2px;
        height: .45rem;
        margin-top: -.4rem;
        width: .45rem
    }
}

.page--assets .assets-table-comment+.assets-table-comment {
    padding-top: 0
}

.page--assets .assets-table-days {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-left: -10px;
    margin-top: -10px;
    padding: 10px 20px 0
}

.page--assets .assets-table-days a {
    -webkit-box-flex: 1;
    background-color: #f7f7f7;
    border: 1px solid #e0e1e1;
    border-radius: 4px;
    color: #a7b0be;
    flex: 1;
    font-weight: 700;
    margin-left: 10px;
    margin-top: 10px;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: background-color .3s,color .3s,-webkit-box-shadow .3s;
    transition: background-color .3s,color .3s,-webkit-box-shadow .3s;
    transition: background-color .3s,box-shadow .3s,color .3s;
    transition: background-color .3s,box-shadow .3s,color .3s,-webkit-box-shadow .3s
}

.page--assets .assets-table-days a.active,.page--assets .assets-table-days a:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,.5);
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.5);
    color: #1d2941
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-days a {
        font-size:14px;
        padding: 2px 10px
    }
}

.page--assets .assets-table-header {
    font-size: 0;
    height: 5rem
}

.page--assets .assets-table-header_fixed {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,.25);
    box-shadow: 0 10px 40px rgba(0,0,0,.25);
    font-size: 0;
    height: 5rem;
    max-width: 1250px;
    position: fixed;
    top: 4rem;
    width: 100%;
    z-index: 9
}

@media screen and (max-width: 1242px) {
    .page--assets .assets-table-header_fixed {
        max-width:calc(100% - 22.5rem)
    }
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header_fixed {
        max-width:calc(100% - 3.75rem)
    }
}

@media screen and (max-width: 700px) {
    .page--assets .assets-table-header_fixed {
        max-width:100%;
        position: unset
    }
}

.page--assets .assets-table-header .left-block,.page--assets .assets-table-header .payout-label {
    font-size: 1.125rem;
    text-transform: uppercase
}

.page--assets .assets-table-header>div {
    display: inline-block;
    text-align: center;
    vertical-align: top
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-header>div {
        text-align:left
    }
}

.page--assets .assets-table-header .top {
    bottom: -.5rem;
    color: rgba(29,41,65,.1);
    font-size: 4.25rem;
    font-weight: 700;
    height: 4.25rem!important;
    left: .4rem;
    line-height: 4.25rem!important;
    position: absolute;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header .top {
        bottom:-.9rem;
        font-size: 3.25rem
    }
}

@media screen and (max-width: 850px) {
    .page--assets .assets-table-header .top {
        bottom:-.3rem;
        font-size: 2.25rem;
        height: 2.25rem!important;
        line-height: 2.25rem!important
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-header .top {
        color:#1d2941;
        font-size: .9rem;
        font-weight: 300;
        height: 4rem!important;
        line-height: 4rem!important;
        position: unset;
        text-align: center
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table-header .top {
        font-size:.8rem;
        height: 3rem!important;
        line-height: 3rem!important
    }
}

.page--assets .assets-table-header .left-block {
    line-height: 5rem;
    position: relative;
    width: 15%
}

.page--assets .assets-table-header .left-block .utc-label {
    bottom: -18px;
    font-size: 12px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header .left-block {
        font-size:.9rem;
        line-height: 4rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-header .left-block {
        width:10rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table-header .left-block {
        font-size:.8rem;
        line-height: 3rem
    }

    .page--assets .assets-table-header .left-block .utc-label {
        bottom: -14px;
        font-size: 10px
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-header .left-block {
        padding-left:.625rem;
        width: 70%
    }

    .page--assets .assets-table-header .left-block .utc-label {
        left: .625rem;
        -webkit-transform: none;
        transform: none
    }
}

.page--assets .assets-table-header .payout-label {
    line-height: 5rem;
    width: 13.5%
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header .payout-label {
        font-size:.9rem;
        line-height: 4rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-header .payout-label {
        width:8rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table-header .payout-label {
        font-size:.8rem;
        line-height: 3rem
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-header .payout-label {
        padding-right:.625rem;
        text-align: right;
        width: 30%
    }
}

.page--assets .assets-table-header .right-block {
    margin-left: 2.45%;
    position: relative;
    width: 66.5%
}

.page--assets .assets-table-header .right-block>div {
    height: 5rem;
    line-height: 5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header .right-block>div {
        height:4rem;
        line-height: 4rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table-header .right-block>div {
        height:3rem;
        line-height: 3rem
    }
}

.page--assets .assets-table-header .right-block .bottom {
    font-size: 0;
    position: relative
}

.page--assets .assets-table-header .right-block .bottom .hour {
    display: inline-block;
    font-size: 1rem;
    position: relative;
    vertical-align: top;
    width: 4%
}

.page--assets .assets-table-header .right-block .bottom .hour:after {
    background-color: #c9cbcc;
    bottom: 0;
    content: "";
    display: block;
    height: .5rem;
    left: 50%;
    margin-left: -2px;
    position: absolute;
    width: 1px
}

.page--assets .assets-table-header .right-block .bottom .hour.current {
    position: relative
}

.page--assets .assets-table-header .right-block .bottom .hour.current:before {
    background-color: rgba(29,41,65,.05);
    content: "";
    display: block;
    height: 100%;
    left: calc(50% - 2px);
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header .right-block .bottom .hour {
        font-size:.8rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-header .right-block .bottom {
        display:none
    }

    .page--assets .assets-table-header .right-block {
        margin-left: 0;
        width: calc(100% - 18rem)
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-header .right-block {
        display:none
    }
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-header {
        height:4rem
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table-header {
        height:3rem
    }
}

.page--assets .assets-table-container {
    padding: 1.3rem 0;
    position: relative
}

.page--assets .assets-table-container:after,.page--assets .assets-table-container:before {
    background-color: #dde1e5;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 1px
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-container:after,.page--assets .assets-table-container:before {
        display:none
    }
}

.page--assets .assets-table-container:before {
    left: 15.5%
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-container:before {
        left:10rem
    }
}

.page--assets .assets-table-container:after {
    left: 28.5%
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-container:after {
        left:18rem
    }
}

.page--assets .assets-table-container .row:first-child .current,.page--assets .assets-table-container .row:last-child .current {
    position: relative
}

.page--assets .assets-table-container .row:first-child .current:before {
    background-color: hsla(0,0%,100%,.1);
    content: "";
    height: 100px;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    z-index: 6
}

.page--assets .assets-table-container .row:first-child .current:after {
    background-color: rgba(29,41,65,.05);
    bottom: 100%;
    content: "";
    display: block;
    height: 5.55rem;
    left: 0;
    position: absolute;
    top: unset;
    width: 100%
}

@media screen and (max-width: 1000px) {
    .page--assets .assets-table-container .row:first-child .current:after {
        height:4.7rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-container .row:first-child .current:after {
        display:none
    }
}

@media screen and (max-width: 670px) {
    .page--assets .assets-table-container .row:first-child .current:after {
        height:3.8rem
    }
}

.page--assets .assets-table-container .row:last-child .current:before {
    background-color: rgba(29,41,65,.05);
    bottom: -1.3rem;
    content: "";
    display: block;
    height: 1.3rem;
    left: 0;
    position: absolute;
    width: 100%
}

@media screen and (max-width: 750px) {
    .page--assets .assets-table-container .row:last-child .current:before {
        display:none
    }
}

@media screen and (max-width: 500px) {
    .page--assets .assets-table-container {
        padding-left:15px;
        padding-right: 15px
    }
}

.page--assets .tab-content {
    background-color: #fff;
    border-radius: .75rem;
    color: #1d2941;
    margin-top: 2.5rem
}

@media screen and (max-width: 1000px) {
    .page--assets .tab-content {
        margin-top:2rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .tab-content {
        padding-top:0!important
    }
}

@media screen and (max-width: 450px) {
    .page--assets .tab-content {
        margin-top:0
    }
}

.page--assets .tab-text {
    font-size: .875rem;
    margin: 2.5rem 0 3rem
}

.page--assets .tab-list {
    margin-bottom: 1.563rem;
    margin-top: 1.563rem
}

.page--assets .tab-list ul {
    font-size: 0
}

.page--assets .tab-list li {
    display: inline-block;
    font-size: .875rem;
    margin-bottom: .5rem;
    margin-right: 1.875rem
}

.page--assets .tab-list li:first-child {
    margin-left: 0
}

.page--assets .tab-list li:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 600px) {
    .page--assets .tab-list li {
        margin-bottom:.75rem;
        margin-right: 0;
        width: 100%
    }
}

.page--assets .tab-list a {
    border: 1px solid rgba(233,234,237,.5);
    color: #7d8ca3;
    min-width: 10.625rem;
    padding: .47rem 1.875rem
}

.page--assets .tab-list a.active,.page--assets .tab-list a:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #1d2941
}

@media screen and (max-width: 600px) {
    .page--assets .tab-list a {
        width:100%
    }
}

.page--assets .tooltip-content {
    background: #e9eefc;
    background: -webkit-gradient(linear,left bottom,left top,from(#e9eefc),to(#fff));
    background: linear-gradient(0deg,#e9eefc,#fff);
    bottom: 68%;
    -webkit-box-shadow: 0 .313rem .625rem rgba(0,0,0,.15);
    box-shadow: 0 .313rem .625rem rgba(0,0,0,.15);
    padding: 1.0625rem .9375rem
}

.page--assets .tooltip-content:after {
    border-top-color: #e9eefc
}

@media screen and (max-width: 750px) {
    .page--assets .tooltip-content:after {
        display:none
    }

    .page--assets .tooltip-content {
        background: transparent;
        bottom: unset;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        opacity: 1;
        position: unset;
        -webkit-transform: none;
        transform: none;
        width: unset
    }
}

.page--assets .tooltip-text {
    color: #1d2941;
    font-size: .875rem
}

.page--assets .tooltip-text span {
    font-weight: 700
}

@media screen and (max-width: 750px) {
    .page--assets .tooltip-text {
        font-size:.8rem
    }
}

.page--assets .trading-status .tooltip-text {
    text-align: center
}

.page--assets .from-to-line__left {
    padding-right: .5rem
}

.page--assets .from-to-line .tooltip-content {
    margin-left: -5.625rem;
    width: 11.25rem
}

@media screen and (max-width: 1000px) {
    .page--assets .from-to-line .tooltip-content {
        font-size:.85rem;
        font-weight: 700;
        margin-left: -4.625rem;
        padding: .5rem;
        width: 9.25rem
    }
}

@media screen and (max-width: 750px) {
    .page--assets .from-to-line .tooltip-content {
        margin-left:0;
        padding: 0;
        text-align: center;
        width: 100%
    }
}

@media screen and (max-width: 500px) {
    .page--assets .from-to-line .tooltip-content {
        text-align:left
    }
}

.page--assets .from-to-line .tooltip-text {
    text-align: center
}

@media screen and (max-width: 500px) {
    .page--assets .from-to-line .tooltip-text {
        text-align:left
    }
}

.page--assets .page__in {
    padding-top: .7rem
}

.page--assets .assets-section {
    padding-bottom: 3rem;
    padding-top: .8rem
}

.page--assets .assets-section .content {
    position: relative
}

@media screen and (max-width: 500px) {
    .page--assets .assets-section {
        padding-bottom:2.5rem;
        padding-top: .8rem
    }
}

@media screen and (max-width: 450px) {
    .page--assets .btn {
        width:100%
    }
}

@-webkit-keyframes trading-status-indicator-pulsate {
    0% {
        opacity: 0;
        -webkit-transform: scale(.6);
        transform: scale(.6)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
}

@keyframes trading-status-indicator-pulsate {
    0% {
        opacity: 0;
        -webkit-transform: scale(.6);
        transform: scale(.6)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.page .contacts__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap
}

@media screen and (max-width: 1000px) {
    .page .contacts__list {
        margin-bottom:-3rem
    }
}

@media screen and (max-width: 750px) {
    .page .contacts__list {
        margin-bottom:-2rem
    }
}

.page .contacts__item {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 1rem
}

.page .contacts__item p:not(.contacts__title) {
    line-height: 1.4rem;
    max-width: 30.5rem
}

@media screen and (max-width: 750px) {
    .page .contacts__item p:not(.contacts__title) {
        max-width:32rem
    }
}

@media screen and (max-width: 1000px) {
    .page .contacts__item {
        -webkit-box-flex:0;
        flex: 0 0 50%;
        margin-bottom: 3rem;
        max-width: 50%
    }
}

@media screen and (max-width: 750px) {
    .page .contacts__item {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin-bottom: 2rem;
        max-width: 100%
    }
}

.page .contacts__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase
}

.page .contacts__title img {
    margin-right: .3rem;
    position: relative;
    top: 4px
}

@media screen and (max-width: 1000px) {
    .page .contacts__title {
        font-size:1.2rem;
        line-height: 1.5rem
    }
}

@media screen and (max-width: 750px) {
    .page .contacts__title {
        font-size:1.05rem;
        line-height: 1.3rem;
        margin-bottom: 1rem
    }
}

.page .contacts__link {
    color: #3a4a68;
    display: inline-block;
    margin-top: 1.5rem
}

.page .contacts__link:hover {
    color: #3a4a68
}

@media screen and (max-width: 1000px) {
    .page .contacts__link {
        font-size:.95rem;
        margin-top: .5rem
    }
}

.page .contacts__work-time {
    margin-top: .7rem
}

.page .contacts-form .container {
    padding-top: 0
}

@media screen and (max-width: 400px) {
    .page .contacts-form .container {
        padding-bottom:0
    }
}

.page .contacts-form .content {
    background-color: #fff;
    border-radius: .75rem;
    padding: 2.7rem 3rem
}

@media screen and (max-width: 1000px) {
    .page .contacts-form .content {
        padding:2rem
    }
}

@media screen and (max-width: 800px) {
    .page .contacts-form .content {
        padding:2rem 1.5rem
    }
}

@media screen and (max-width: 500px) {
    .page .contacts-form .content {
        padding:1.5rem 1rem
    }
}

@media screen and (max-width: 400px) {
    .page .contacts-form .content {
        border-radius:0;
        margin: 0 -.938rem;
        padding: 2.5rem 1rem
    }
}

.page .contacts-form__wrap {
    display: -webkit-box;
    display: flex
}

@media screen and (max-width: 1000px) {
    .page .contacts-form__wrap {
        flex-wrap:wrap
    }
}

.page .contacts-form__left {
    -webkit-box-flex: 0;
    flex: 0 0 47%;
    padding-right: 3.125rem
}

.page .contacts-form__left .alert {
    max-width: 31rem
}

@media screen and (max-width: 1000px) {
    .page .contacts-form__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        padding-right: 0
    }
}

.page .contacts-form__right {
    -webkit-box-flex: 0;
    flex: 0 0 53%
}

@media screen and (max-width: 1000px) {
    .page .contacts-form__right {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

.page .contacts-form__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.8rem;
    margin-bottom: 1.5rem
}

@media screen and (max-width: 1000px) {
    .page .contacts-form__title {
        font-size:2rem;
        line-height: 2.1rem;
        margin-bottom: 1rem
    }
}

@media screen and (max-width: 700px) {
    .page .contacts-form__title {
        font-size:2rem;
        line-height: 2.1rem
    }
}

@media screen and (max-width: 550px) {
    .page .contacts-form__title {
        font-size:1.5rem;
        line-height: 1.6rem;
        text-align: left
    }
}

.page .contacts-form__desc {
    margin-bottom: 1rem;
    max-width: 31rem
}

@media screen and (max-width: 1000px) {
    .page .contacts-form__desc {
        margin-bottom:2rem
    }
}

.page .contacts-form .form {
    max-width: 33.75rem
}

.page .contacts-form .form-group {
    margin-bottom: 1rem
}

.page .contacts-form .form-group label {
    color: #1e385b;
    font-size: 1rem
}

.page .contacts-form .form-group label span {
    color: #0099fa
}

.page .contacts-form .form input,.page .contacts-form .form textarea {
    border-bottom: 1px solid #96aec1;
    color: #3a4a68;
    width: 100%
}

.page .contacts-form textarea {
    min-height: 6.563rem;
    resize: none
}

.page .contacts-form .btn {
    min-width: 10rem
}

@media screen and (max-width: 400px) {
    .page .contacts-form .btn {
        width:100%
    }
}

.page .contacts-form .rules {
    color: rgba(30,56,91,.8);
    margin-bottom: 2.3rem
}

.page .contacts-form .checkbox {
    margin-bottom: 0
}

.page .contacts-form .checkbox .checkmark {
    background-color: transparent;
    border: 2px solid rgba(30,56,91,.8);
    height: 1rem;
    top: 0;
    width: 1rem
}

.page .contacts-form .checkbox .checkmark:after {
    border-color: rgba(30,56,91,.8);
    height: .5rem;
    left: .25rem;
    top: 1px;
    width: .25rem
}

.page .contacts-form .checkbox label {
    font-size: .875rem;
    line-height: 1.1rem
}

@media screen and (max-width: 400px) {
    .page .contacts-form .checkbox label {
        font-size:.75rem;
        line-height: 1rem
    }
}

.page .contacts-form .checkbox a {
    border-bottom: 1px solid rgba(30,56,91,.8);
    color: rgba(30,56,91,.8);
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.page .contacts-form .checkbox a:hover {
    border-bottom: 1px solid rgba(30,56,91,0)
}

.page .contacts-form .g-recaptcha {
    -webkit-transform: scale(.85);
    transform: scale(.85);
    -webkit-transform-origin: 0 center!important;
    transform-origin: 0 center!important
}

@media screen and (max-width: 800px) {
    .page .contacts-form .g-recaptcha {
        margin-top:.75rem
    }
}

.page .contacts-form .form-error {
    font-size: .688rem;
    line-height: .75rem;
    margin-top: 0;
    position: absolute;
    top: 100%
}

.page .contacts-form .alert--success {
    background-color: #00a178;
    border-color: transparent;
    color: #fff
}

.page--privacy-policy .top-section__title {
    display: inline-block;
    font-size: clamp(12px,100%,50px);
    text-align: justify;
    white-space: nowrap;
    width: 100%
}

.page--privacy-policy .page__in section:first-child {
    padding-top: 0
}

.page--privacy-policy .privacy-policy__content h2 {
    font-size: 22px;
    margin-bottom: 14px
}

.page--privacy-policy .privacy-policy__content p {
    margin-bottom: 10px
}

.page--privacy-policy .privacy-policy__content a {
    color: #2299fa
}

.page--privacy-policy .privacy-policy__content ul {
    color: inherit;
    list-style-type: disc;
    margin: 1em 0;
    padding-left: 40px
}

.page--privacy-policy .privacy-policy__content ul li {
    display: list-item;
    list-style: initial;
    margin: .5em 0
}

.page--privacy-policy .privacy-policy__content .table-wrapper {
    margin: 20px 0;
    overflow-x: auto
}

.page--privacy-policy .privacy-policy__content table {
    border-collapse: collapse;
    width: 100%
}

.page--privacy-policy .privacy-policy__content td,.page--privacy-policy .privacy-policy__content th {
    border: 1px solid #c8cfd8;
    padding: 12px;
    vertical-align: top
}

.page--privacy-policy .privacy-policy__content th {
    background-color: #f5f7fa;
    color: #1c2e4a;
    font-weight: 700
}

.page--privacy-policy .privacy-policy__content td:first-child {
    font-weight: 700;
    width: 5%
}

.page--privacy-policy .privacy-policy__content td ol {
    margin: 0;
    padding-left: 15px
}

.page--responsible-gaming .page__in section:first-child {
    padding-top: 0
}

.page--responsible-gaming p {
    margin-bottom: 10px
}

.page--payment-policy .page__in section:first-child {
    padding-top: 0
}

.page--payment-policy p {
    margin-bottom: 10px
}

.page--public-offer .text-section__container a {
    color: #1255cc
}

.page--public-offer .po-list small {
    bottom: -4px;
    position: relative
}

.page--public-offer .po-list ul {
    counter-reset: item
}

.page--public-offer .po-list li>ul {
    margin-left: 20px;
    margin-top: 1.8rem
}

.page--public-offer .po-list li {
    display: block;
    margin-bottom: 1.8rem
}

.page--public-offer .po-list li:before {
    color: #0099fa;
    content: counters(item,".") ". ";
    counter-increment: item;
    font-size: 1.063rem;
    font-weight: 700
}

.page--public-offer .po-title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700
}

.page--public-offer .countries-list {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    max-width: 500px
}

.page--public-offer .po-list li.li-title:before {
    font-size: 20px
}

.page--responsability-deisclosure .page__in section:first-child {
    padding-top: 0
}

.page--responsability-deisclosure p {
    margin-bottom: 10px
}

.page--error-404 {
    background-color: #dfe2e7;
    color: #3a4a68;
    text-align: center
}

.page--error-404 .container {
    padding-top: 3rem
}

@media screen and (max-width: 700px) {
    .page--error-404 .container {
        padding-top:2rem
    }
}

@media screen and (max-width: 550px) {
    .page--error-404 .container {
        padding-top:0
    }
}

.page--error-404 .content {
    max-width: 77.2rem;
    padding-top: 0
}

@media screen and (max-width: 1800px) {
    .page--error-404 .content {
        padding-top:0
    }
}

.page--error-404 .btn {
    margin-top: 1.25rem
}

@media screen and (max-width: 600px) {
    .page--error-404 .btn {
        margin-top:2rem
    }
}

.error-404__subtitle {
    font-size: 1.875rem;
    margin-bottom: 4rem
}

@media screen and (max-width: 1000px) {
    .error-404__subtitle {
        font-size:1.5rem;
        margin-bottom: 3rem
    }
}

@media screen and (max-width: 600px) {
    .error-404__subtitle {
        font-size:1.1rem;
        margin-bottom: 1.1rem
    }
}

.error-404__image {
    margin-bottom: -11.5rem;
    max-width: 100%
}

@media screen and (max-width: 1000px) {
    .error-404__image {
        margin-bottom:-9.5rem;
        width: 30rem
    }
}

@media screen and (max-width: 600px) {
    .error-404__image {
        margin-bottom:-6rem;
        width: 18rem
    }
}

.error-404 h1 {
    color: #fff;
    font-size: 2.47rem;
    line-height: 3rem;
    margin-bottom: 8.2rem
}

@media screen and (max-width: 1000px) {
    .error-404 h1 {
        font-size:1.9rem;
        line-height: 2.1rem;
        margin-bottom: 7rem
    }
}

@media screen and (max-width: 600px) {
    .error-404 h1 {
        font-size:1.2rem;
        line-height: 2rem;
        margin-bottom: 4.5rem
    }
}

.error-404__text {
    font-size: .875rem;
    line-height: 2rem
}

@media screen and (max-width: 600px) {
    .error-404__text {
        font-size:.8rem;
        line-height: 1.2rem
    }
}

.error-404__text a {
    border-bottom: 1px solid rgba(0,153,250,.3);
    color: #0099fa;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.error-404__text a:hover {
    border-bottom: 1px solid #0099fa
}

.page--regional-representative h1 {
    margin-bottom: 1rem;
    max-width: 38rem;
    text-transform: uppercase
}

.page--regional-representative h2 {
    font-size: 2.75rem;
    line-height: 3rem
}

@media screen and (max-width: 1000px) {
    .page--regional-representative h2 {
        font-size:2.5rem;
        line-height: 3rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative h2 {
        font-size:2rem;
        line-height: 2.5rem
    }
}

@media screen and (max-width: 550px) {
    .page--regional-representative h2 {
        font-size:1.55rem;
        line-height: 2.1rem
    }
}

.page--regional-representative .content {
    max-width: 73.125rem
}

.page--regional-representative .intro {
    overflow: hidden;
    padding-bottom: 6.7rem;
    padding-top: 8.7rem
}

.page--regional-representative .intro__text {
    position: relative;
    z-index: 2
}

.page--regional-representative .intro__desc {
    color: #95b7c8;
    font-size: 1.25rem;
    margin-bottom: 5rem;
    max-width: 38rem
}

@media screen and (max-width: 750px) {
    .page--regional-representative .intro__desc {
        font-size:1.1rem;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 550px) {
    .page--regional-representative .intro__desc {
        font-size:1rem
    }
}

.page--regional-representative .intro__man {
    height: calc(100% + 17.4rem);
    left: 52.5rem;
    position: absolute;
    top: -8.7rem;
    z-index: 1
}

.page--regional-representative .intro__man:before {
    background: radial-gradient(closest-side,#1842b3,#1d2941);
    content: "";
    display: block;
    height: 100rem;
    left: 50%;
    position: absolute;
    top: -19rem;
    -webkit-transform: translateX(-62rem);
    transform: translateX(-62rem);
    width: 121rem;
    z-index: 0
}

@media screen and (max-width: 750px) {
    .page--regional-representative .intro__man:before {
        left:0
    }
}

.page--regional-representative .intro__man img {
    height: 100%;
    position: relative
}

.page--regional-representative .intro__btn {
    min-width: 17rem
}

.page--regional-representative .intro .container {
    position: relative
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .intro {
        padding-bottom:4.65rem;
        padding-top: 7.65rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .intro {
        padding-bottom:3.65rem;
        padding-top: 6.65rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .intro {
        padding-bottom:2.65rem;
        padding-top: 5.65rem;
        text-align: center
    }
}

.page--regional-representative .how-it-works {
    background: url(../images/bg-how.jpg) no-repeat 50% 50%;
    background-size: cover;
    color: #3a4a68
}

@media screen and (max-width: 750px) {
    .page--regional-representative .how-it-works .container {
        padding-bottom:1.75rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .how-it-works .container {
        padding-bottom:.75rem
    }
}

.page--regional-representative .how-it-works h2 {
    margin-bottom: 3.5rem;
    text-align: center
}

@media screen and (max-width: 500px) {
    .page--regional-representative .how-it-works h2 {
        margin-bottom:2rem
    }
}

@media screen and (max-width: 900px) {
    .page--regional-representative .how-it-works {
        display:block
    }
}

.page--regional-representative .how-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0 -1.25rem
}

.page--regional-representative .how-list__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    max-width: 25%;
    padding: 0 1.25rem
}

@media screen and (max-width: 1230px) {
    .page--regional-representative .how-list__item {
        padding:0 .5rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .how-list__item {
        -webkit-box-flex:0;
        flex: 0 0 50%;
        margin-bottom: 2.5rem;
        max-width: 50%;
        text-align: center
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .how-list__item {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin-bottom: 2rem;
        max-width: 100%
    }
}

.page--regional-representative .how-list__num {
    color: #fff;
    font-family: Montserrat;
    font-size: 5rem;
    font-weight: 700;
    line-height: 5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
    text-shadow: 0 0 1.25rem rgba(26,76,221,.35)
}

.page--regional-representative .how-list__num:before {
    background: #015eea;
    background: linear-gradient(80deg,#015eea,#00c0fa);
    border-radius: 50%;
    content: "";
    display: block;
    height: 4.375rem;
    left: -.3rem;
    position: absolute;
    top: -.5rem;
    width: 4.375rem
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .how-list__num:before {
        height:3rem;
        width: 3rem
    }
}

.page--regional-representative .how-list__num span {
    position: relative
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .how-list__num {
        font-size:3rem;
        line-height: 3rem;
        padding-left: .7rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .how-list__num {
        margin:0 auto .5rem;
        width: 3rem
    }
}

.page--regional-representative .how-list__desc {
    font-size: 1.375rem
}

.page--regional-representative .how-list__desc span {
    display: block;
    font-size: 1.688rem;
    font-weight: 700;
    line-height: 1.7rem;
    margin-bottom: 1.6rem
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .how-list__desc span {
        font-size:1.3rem;
        line-height: 1.4rem;
        margin-bottom: .6rem
    }
}

@media screen and (max-width: 850px) {
    .page--regional-representative .how-list__desc span {
        font-size:1.2rem;
        line-height: 1.3rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .how-list__desc span {
        margin-bottom:.25rem
    }
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .how-list__desc {
        font-size:1.075rem
    }
}

@media screen and (max-width: 850px) {
    .page--regional-representative .how-list__desc {
        font-size:1rem
    }
}

@media screen and (max-width: 1230px) {
    .page--regional-representative .how-list {
        margin:0 -.5rem
    }
}

.page--regional-representative .local-office {
    padding-top: 2rem;
    text-align: center
}

.page--regional-representative .local-office__logo {
    margin-bottom: 4rem
}

.page--regional-representative .local-office__logo img {
    max-width: 100%
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .local-office__logo {
        margin:0 auto 3rem;
        max-width: 26rem
    }
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .local-office__logo {
        margin:0 auto 1.5rem;
        max-width: 20rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .local-office__logo {
        max-width:17rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .local-office__logo {
        margin:0 auto 1rem;
        max-width: 14rem
    }
}

.page--regional-representative .local-office__title {
    color: #242121;
    font-size: 2rem;
    margin-bottom: 3rem
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .local-office__title {
        font-size:1.75rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .local-office__title {
        font-size:1.55rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .local-office__title {
        font-size:1.25rem
    }
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .local-office {
        padding-top:0
    }
}

.page--regional-representative .office-scheme {
    margin: 0 auto;
    max-width: 54.375rem;
    position: relative
}

.page--regional-representative .office-scheme__img {
    width: 100%
}

.page--regional-representative .office-scheme__title {
    font-size: 1.375rem;
    font-weight: 700;
    position: absolute;
    text-transform: uppercase;
    width: 18.5rem
}

.page--regional-representative .office-scheme__title:before {
    background: url(../images/pin.png) no-repeat 50% 50%;
    background-size: contain;
    content: "";
    display: block;
    height: 3.75rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3.75rem
}

@media(-webkit-min-device-pixel-ratio: 1.5),(min-resolution:144dpi) {
    .page--regional-representative .office-scheme__title:before {
        background-image:url(../images/pin%402x.png)
    }
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .office-scheme__title:before {
        height:2.75rem;
        width: 2.75rem
    }
}

@media screen and (max-width: 950px) {
    .page--regional-representative .office-scheme__title:before {
        height:2rem;
        width: 2rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .office-scheme__title:before {
        height:1.5rem;
        width: 1.5rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title:before {
        height:1rem;
        width: 1rem
    }
}

.page--regional-representative .office-scheme__title_left {
    text-align: right
}

.page--regional-representative .office-scheme__title_left:before {
    right: -5rem
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .office-scheme__title_left:before {
        right:-3.5rem
    }
}

@media screen and (max-width: 950px) {
    .page--regional-representative .office-scheme__title_left:before {
        right:-2.5rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .office-scheme__title_left:before {
        right:-2rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title_left:before {
        right:-1.3rem
    }
}

.page--regional-representative .office-scheme__title_right {
    text-align: left
}

.page--regional-representative .office-scheme__title_right:before {
    left: -5rem
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .office-scheme__title_right:before {
        left:-3.5rem
    }
}

@media screen and (max-width: 950px) {
    .page--regional-representative .office-scheme__title_right:before {
        left:-2.5rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .office-scheme__title_right:before {
        left:-2rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title_right:before {
        left:-1.3rem
    }
}

.page--regional-representative .office-scheme__title_1 {
    right: 72%;
    top: 13.5%;
    width: 19.5rem
}

.page--regional-representative .office-scheme__title_2 {
    left: 95.5%;
    top: 32%
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title_2 {
        max-width:4rem
    }
}

.page--regional-representative .office-scheme__title_3 {
    right: 85.5%;
    top: 81.5%
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title_3 {
        right:86.5%;
        top: 75.5%
    }
}

.page--regional-representative .office-scheme__title_4 {
    left: 82.5%;
    top: 87.5%
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title_4 {
        left:87.5%;
        top: 82.5%
    }
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .office-scheme__title {
        font-size:1.175rem;
        width: 15.75rem
    }
}

@media screen and (max-width: 950px) {
    .page--regional-representative .office-scheme__title {
        font-size:1rem;
        width: 13.75rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .office-scheme__title {
        font-size:.75rem;
        line-height: .9rem;
        width: 8.75rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme__title {
        font-size:.6rem;
        line-height: .8rem;
        width: 5.5rem
    }
}

@media screen and (max-width: 1400px) {
    .page--regional-representative .office-scheme {
        max-width:33rem
    }
}

@media screen and (max-width: 950px) {
    .page--regional-representative .office-scheme {
        max-width:23rem
    }
}

@media screen and (max-width: 720px) {
    .page--regional-representative .office-scheme {
        max-width:18rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .office-scheme {
        max-width:12rem
    }
}

.page--regional-representative .income h2 {
    text-align: center
}

@media screen and (max-width: 550px) {
    .page--regional-representative .income .container {
        padding-top:1rem
    }
}

.page--regional-representative .income-block {
    display: -webkit-box;
    display: flex;
    margin: 0 auto;
    max-width: 68.75rem
}

.page--regional-representative .income-block__left {
    padding: 0 4.063rem
}

@media screen and (max-width: 1200px) {
    .page--regional-representative .income-block__left {
        -webkit-box-flex:0;
        flex: 0 0 24rem
    }

    .page--regional-representative .income-block__left img {
        max-width: 100%
    }
}

@media screen and (max-width: 930px) {
    .page--regional-representative .income-block__left {
        display:none
    }
}

@media screen and (max-width: 1200px) {
    .page--regional-representative .income-block__right {
        -webkit-box-flex:0;
        flex: 0 0 calc(100% - 24rem)
    }
}

@media screen and (max-width: 930px) {
    .page--regional-representative .income-block__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        text-align: center
    }
}

.page--regional-representative .income-block__text {
    font-size: 1.375rem;
    margin-bottom: 3.75rem
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .income-block__text {
        font-size:1.25rem;
        margin-bottom: 2.75rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .income-block__text {
        font-size:1.1rem
    }
}

@media screen and (max-width: 550px) {
    .page--regional-representative .income-block__text {
        font-size:1rem;
        margin-bottom: 1.75rem
    }
}

.page--regional-representative .income-block__desc {
    font-size: .75rem;
    max-width: 22rem
}

.page--regional-representative .income-block__desc a {
    border-bottom: 1px solid rgba(58,74,104,.5);
    color: #3a4a68;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .5s;
    transition: .5s
}

.page--regional-representative .income-block__desc a:hover {
    border-bottom: 1px solid rgba(58,74,104,0)
}

@media screen and (max-width: 930px) {
    .page--regional-representative .income-block__desc {
        margin:0 auto
    }
}

@media screen and (max-width: 550px) {
    .page--regional-representative .income-block__desc {
        line-height:1rem
    }
}

.page--regional-representative .form {
    background-color: #162b4f;
    overflow: hidden
}

.page--regional-representative .form__block {
    background: -webkit-gradient(linear,left top,left bottom,from(#fcfdff),to(#e3e8f3));
    background: linear-gradient(180deg,#fcfdff,#e3e8f3);
    border-radius: 1.875rem;
    -webkit-box-shadow: 0 0 15.625rem rgba(26,78,212,.3),0 0 .875rem rgba(0,0,0,.3);
    box-shadow: 0 0 15.625rem rgba(26,78,212,.3),0 0 .875rem rgba(0,0,0,.3);
    color: #3a4a68;
    margin: 7rem auto 0;
    max-width: 64.375rem;
    padding: 3.8rem 1rem;
    position: relative;
    text-align: center
}

.page--regional-representative .form__block:before {
    background: url(../images/form-logo.png) no-repeat 50% 50%;
    background-size: contain;
    content: "";
    display: block;
    height: 4.188rem;
    left: 50%;
    position: absolute;
    top: -4.188rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 32.75rem
}

@media screen and (max-width: 750px) {
    .page--regional-representative .form__block:before {
        height:3.45rem;
        top: -3.45rem;
        width: 26.75rem
    }
}

@media screen and (max-width: 650px) {
    .page--regional-representative .form__block:before {
        height:2.55rem;
        top: -2.55rem;
        width: 19.75rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form__block:before {
        height:1.9rem;
        top: -1.9rem;
        width: 14.75rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .form__block {
        border-radius:.875rem;
        margin: 6rem auto 0;
        padding: 2.5rem 1rem
    }
}

@media screen and (max-width: 650px) {
    .page--regional-representative .form__block {
        margin:5rem auto 0
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form__block {
        border-radius:.5rem;
        margin: 4rem auto 0
    }
}

.page--regional-representative .form__content {
    position: relative
}

.page--regional-representative .form__content:before {
    background: radial-gradient(closest-side,#1a4cdd,#162b4f);
    content: "";
    display: block;
    height: 100rem;
    left: 50%;
    position: absolute;
    top: -35rem;
    -webkit-transform: translateX(-37rem);
    transform: translateX(-37rem);
    width: 121rem;
    z-index: 0
}

.page--regional-representative .form__title {
    font-size: 1.563rem;
    font-weight: 300;
    margin-bottom: 1.85rem
}

@media screen and (max-width: 750px) {
    .page--regional-representative .form__title {
        font-size:1.2rem;
        line-height: 1.5rem;
        margin-bottom: 1.5rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form__title {
        font-size:1.1rem;
        line-height: 1.4rem;
        margin-bottom: 2rem
    }
}

.page--regional-representative .form__subtitle {
    font-size: .875rem
}

.page--regional-representative .form__subtitle span {
    display: inline-block;
    padding-left: 2rem;
    position: relative
}

.page--regional-representative .form__subtitle span:before {
    background: #015eea;
    background: linear-gradient(45deg,#015eea,#015eea 60%,#00c0fa);
    border-radius: 50%;
    color: #fff;
    content: "";
    display: block;
    font: normal normal normal 1rem/1 FontAwesome;
    height: 1.625rem;
    left: -.625rem;
    line-height: 1.625rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.625rem
}

@media screen and (max-width: 750px) {
    .page--regional-representative .form__subtitle span:before {
        font:normal normal normal .9rem/1 FontAwesome;
        height: 1.4rem;
        left: 0;
        line-height: 1.4rem;
        width: 1.4rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form__subtitle span:before {
        left:50%;
        top: -1.5rem;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .page--regional-representative .form__subtitle span {
        padding-left: 0
    }
}

.page--regional-representative .form .form-control {
    border-bottom: 1px solid #3a4a68;
    color: #3a4a68
}

.page--regional-representative .form .form-control+label {
    color: #3a4a68
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form .form-control {
        font-size:.9rem
    }

    .page--regional-representative .form .form-control::-webkit-input-placeholder {
        font-size: .9rem
    }

    .page--regional-representative .form .form-control::-moz-placeholder {
        font-size: .9rem
    }

    .page--regional-representative .form .form-control::placeholder {
        font-size: .9rem
    }
}

.page--regional-representative .form .form-group {
    margin-bottom: 2.2rem
}

.page--regional-representative .form .form-group .g-recaptcha>div {
    margin: 0 auto
}

.page--regional-representative .form .form-group label {
    color: #3a4a68;
    text-align: left
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form .form-group label {
        line-height:.9rem;
        top: .6rem
    }

    .page--regional-representative .form .form-group {
        margin-bottom: 1.2rem
    }
}

.page--regional-representative .form .container {
    padding: 4rem 1.875rem
}

@media screen and (max-width: 700px) {
    .page--regional-representative .form .container {
        padding:3.25rem .938rem
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form .container {
        padding:2.5rem .938rem
    }
}

.page--regional-representative .form .checkbox .checkmark {
    background-color: #fff
}

.page--regional-representative .form .checkbox .checkmark:after {
    border-color: #3a4a68
}

.page--regional-representative .form .checkbox label {
    font-size: 1rem;
    line-height: 1rem;
    text-align: left
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form .checkbox label {
        font-size:.9rem
    }

    .page--regional-representative .form .checkbox {
        margin-bottom: 1.5rem
    }
}

.page--regional-representative .form .intl-tel-input {
    width: 100%
}

.page--regional-representative .form .intl-tel-input .country-list {
    z-index: 3
}

.page--regional-representative .form .alert {
    border-color: transparent;
    margin: 2rem auto 0;
    max-width: 46rem
}

.page--regional-representative .form .alert--success {
    background-color: #00a178;
    color: #fff
}

.page--regional-representative .form h2 {
    font-size: 1.875rem;
    line-height: 2.313rem;
    position: relative;
    text-align: center;
    text-transform: inherit
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .form h2 {
        font-size:1.7rem;
        line-height: 2.18rem
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .form h2 {
        font-size:1.6rem;
        line-height: 2.08rem
    }
}

@media screen and (max-width: 550px) {
    .page--regional-representative .form h2 {
        font-size:1.3rem;
        line-height: 1.78rem
    }
}

.page--regional-representative .form h2 span {
    display: block;
    text-transform: uppercase
}

.page--regional-representative .form form {
    margin: 6.5rem auto 0;
    max-width: 35.625rem
}

@media screen and (max-width: 1000px) {
    .page--regional-representative .form form {
        margin:5.5rem auto 0
    }
}

@media screen and (max-width: 750px) {
    .page--regional-representative .form form {
        margin:4.5rem auto 0
    }
}

@media screen and (max-width: 500px) {
    .page--regional-representative .form form {
        margin:2.5rem auto 0
    }
}

.page--regional-representative .form textarea {
    max-height: 5.4rem
}

.page--regional-representative.page_dark-blue .page__in>section:first-child .container:before {
    display: none
}

.page--email-verification .page__in section:first-child {
    padding-top: 0
}

.page--email-verification .verification-email {
    padding: 12.5rem 0 0
}

.page--email-verification .verification-email__text {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 2rem
}

.page--email-verification .verification-email--success {
    background: url(../images/email-icon--success.png) no-repeat 0 0
}

.page--email-verification .verification-email--failed {
    background: url(../images/email-icon--failed.png) no-repeat 0 0
}

.page--mt5-info {
    text-align: center
}

.page--mt5-info>.top {
    background-size: auto
}

.page--mt5-info a.btn {
    margin-top: 20px
}

.page--mt5-info table,.page--mt5-info tbody,.page--mt5-info td,.page--mt5-info tfoot,.page--mt5-info th,.page--mt5-info thead,.page--mt5-info tr {
    border-collapse: collapse;
    border-spacing: 0
}

.page--mt5-info .table {
    margin: 0 auto;
    width: 250px
}

.page--mt5-info .table td {
    padding: 10px 15px
}

.page--mt5-info .table tr>td:first-child {
    text-align: right
}

.page--mt5-info .table tr>td:last-child {
    text-align: left
}

.page--mt5-info .table tr:nth-child(odd)>td {
    background: rgba(51,51,61,.5)
}

.page--riskdisclosure .page__in section:first-child {
    padding-top: 0
}

.page--riskdisclosure .uc {
    text-transform: uppercase
}

.page--riskdisclosure p {
    margin-bottom: 16px
}

.page--reviews>.top {
    background-size: auto
}

.page--reviews .content {
    max-width: 82rem
}

.page--reviews .page__in>.alert {
    margin-bottom: 0;
    margin-top: 1.875rem
}

.page--reviews .page__in {
    padding-bottom: 4rem
}

.page--reviews .page__in section:first-child {
    padding-top: 0
}

.page--reviews .top-text {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center
}

.page--reviews .top-text__btn {
    background: #042cc2 url(../images/icon-bar-graph.png) no-repeat left 1.25rem center;
    background-size: 1rem;
    margin-top: 1.25rem;
    padding-left: 50px;
    white-space: nowrap
}

.page--reviews .top-text__btn i {
    margin-right: .438rem
}

@media only screen and (max-width: 770px) {
    .page--reviews .top-text {
        flex-wrap:wrap
    }

    .page--reviews .top-text__btn {
        margin-left: 0;
        margin-top: 20px
    }
}

.page--reviews .copy {
    background-image: url(../images/platform-logo.png)
}

.page--reviews .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-left: -3.75rem
}

.page--reviews .row__l {
    -webkit-box-flex: 1;
    flex: 1
}

.page--reviews .row__l.two-column .review {
    flex-basis: 50%
}

.page--reviews .row__r {
    flex-basis: 28.125rem
}

.page--reviews .row .ttl {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 2.063rem;
    text-transform: uppercase
}

.page--reviews .row__l,.page--reviews .row__r {
    margin-left: 3.75rem
}

@media screen and (max-width: 1200px) {
    .page--reviews .row {
        flex-wrap:wrap
    }

    .page--reviews .row__l {
        -webkit-box-ordinal-group: 3;
        margin-top: 1.875rem;
        order: 2
    }

    .page--reviews .row__l .reviews-list {
        margin-right: -1.25rem
    }

    .page--reviews .row__r {
        -webkit-box-ordinal-group: 2;
        max-width: 100%;
        order: 1
    }

    .page--reviews .row__l,.page--reviews .row__r {
        flex-basis: 100%
    }
}

.page--reviews .reviews-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: -1.25rem 0 0 -1.25rem
}

.page--reviews .review {
    -webkit-box-flex: 0;
    flex: 0 1 100%;
    padding: 1.25rem
}

.page--reviews .review__in {
    border-radius: .25rem;
    display: -webkit-box;
    display: flex;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s,-webkit-box-shadow .3s
}

.page--reviews .review__in:hover {
    -webkit-box-shadow: 0 0 0 2px #0060af;
    box-shadow: 0 0 0 2px #0060af
}

@media screen and (max-width: 400px) {
    .page--reviews .review__in {
        flex-wrap:wrap
    }
}

.page--reviews .review__l {
    -webkit-box-flex: 1;
    background-color: #20293a;
    border-radius: .25rem 0 0 .25rem;
    flex: 1 0 11.25rem;
    padding: 2.188rem;
    text-align: center
}

.page--reviews .review__l a {
    text-decoration: none
}

@media screen and (max-width: 500px) {
    .page--reviews .review__l {
        flex-basis:150px
    }
}

@media screen and (max-width: 400px) {
    .page--reviews .review__l {
        display:-webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        border-radius: .25rem .25rem 0 0;
        text-align: unset
    }

    .page--reviews .review__l-start {
        margin-right: 15px
    }
}

.page--reviews .review__r {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: 1 1 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #242e41;
    border-radius: 0 .25rem .25rem 0;
    flex-direction: column;
    padding: 1.875rem 2.188rem
}

@media screen and (max-width: 400px) {
    .page--reviews .review__r {
        border-radius:0 0 .25rem .25rem
    }
}

.page--reviews .review__avatar {
    background-color: #192952;
    border-radius: 50%;
    height: 4.063rem;
    margin: 0 auto;
    overflow: hidden;
    width: 4.063rem
}

@media screen and (max-width: 400px) {
    .page--reviews .review__avatar {
        margin:0
    }
}

.page--reviews .review__avatar-img {
    display: block;
    max-width: 100%
}

.page--reviews .review__top {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 1.875rem
}

@media screen and (max-width: 550px) {
    .page--reviews .review__top {
        display:block
    }
}

@media screen and (max-width: 400px) {
    .page--reviews .review__top {
        margin-bottom:.938rem
    }
}

@media screen and (max-width: 550px) {
    .page--reviews .review__stars {
        margin-top:5px
    }
}

.page--reviews .review__name {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    font-size: .813rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.063rem;
    margin: 1.063rem 0 .438rem;
    white-space: nowrap
}

@media screen and (max-width: 400px) {
    .page--reviews .review__name {
        -webkit-box-pack:unset;
        justify-content: unset;
        margin: 0 0 5px
    }
}

.page--reviews .review__flag {
    margin-right: 7px
}

html[dir=rtl] .page--reviews .review__flag {
    margin-left: 7px;
    margin-right: 0
}

.page--reviews .review__flag-img {
    border-radius: 50%;
    display: block;
    height: 18px
}

.page--reviews .review__date {
    margin-left: auto
}

@media screen and (max-width: 550px) {
    .page--reviews .review__date {
        margin-top:3px
    }
}

.page--reviews .review__controls {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-left: .688rem
}

.page--reviews .review__text {
    font-size: .875rem;
    line-height: 1.125rem;
    margin-bottom: 10px
}

.page--reviews .review__bottom {
    color: #a8abb3;
    font-size: 12px;
    line-height: 16px;
    margin-top: auto;
    text-align: right
}

.page--reviews .review__uid {
    text-transform: uppercase
}

.page--reviews .review__status {
    margin-top: .938rem;
    text-align: right
}

.page--reviews .review__rating {
    font-size: 1.25rem;
    line-height: 1.25rem;
    top: 3px;
    width: 120px!important
}

@media screen and (max-width: 400px) {
    .page--reviews .review__rating {
        top:3px
    }
}

.page--reviews .review .status-0 {
    color: #a0a020
}

.page--reviews .review .status-1 {
    color: #127312
}

.page--reviews .review .status-2 {
    color: #b93b3b
}

@media screen and (max-width: 500px) {
    .page--reviews .review__l,.page--reviews .review__r {
        padding:1.25rem
    }
}

.page--reviews .review__controls,.page--reviews .review__date,.page--reviews .review__status,.page--reviews .review__uid {
    color: #8fa5bf
}

.page--reviews .review__date,.page--reviews .review__status,.page--reviews .review__uid {
    font-size: .75rem;
    line-height: 1rem
}

@media screen and (max-width: 1200px) {
    .page--reviews .review {
        padding:0 1.25rem 1.25rem
    }
}

.page--reviews .review-answer {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: .25rem;
    margin-left: 11.25rem;
    margin-top: 1.25rem;
    padding: 2.188rem
}

.page--reviews .review-answer__avatar {
    margin-right: 2.188rem;
    min-width: 4.063rem
}

.page--reviews .review-answer__avatar-img {
    display: block;
    max-width: 100%
}

.page--reviews .review-answer__text {
    color: #000;
    font-size: .875rem;
    line-height: 1.125rem
}

.page--reviews .review-answer__triangle {
    background-color: #fff;
    height: 1.125rem;
    left: 2.188rem;
    position: absolute;
    top: -.5625rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1.125rem
}

@media screen and (max-width: 500px) {
    .page--reviews .review-answer {
        margin-left:0;
        padding: 1.25rem 1.875rem
    }

    .page--reviews .review-answer__avatar {
        margin-right: 1.25rem;
        min-width: auto;
        width: 2.5rem
    }
}

.page--reviews .form-block {
    background-color: #242e41;
    border-radius: .25rem;
    padding: 2.188rem
}

.page--reviews .form-block .alert-msg {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background: url(../images/icon-exclamation-mark.png) no-repeat left 10px center;
    background-size: 2.125rem;
    border: 2px solid #f15a22;
    border-radius: .25rem;
    font-size: .875rem;
    line-height: 1.125rem;
    margin-bottom: 2.188rem;
    padding: .938rem .938rem .938rem 2.188rem
}

.page--reviews .form-block .alert-msg__text {
    margin-left: 1.25rem
}

.page--reviews .form-block .fa {
    color: #f15a22;
    font-size: 2.5rem;
    line-height: 2.5rem
}

.page--reviews .form-block .stars-block,.page--reviews .form-block textarea {
    font-size: .875rem;
    line-height: 1.125rem
}

.page--reviews .form-block .stars-block {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    gap: 5px;
    grid-template-columns: 140px 1fr;
    padding: .375rem 25px 0
}

.page--reviews .form-block .stars-block .rating {
    height: 55px!important;
    margin-left: auto;
    top: 6px;
    width: 220px!important
}

@media screen and (max-width: 520px) {
    .page--reviews .form-block .stars-block .rating {
        margin-left:0
    }
}

@media screen and (max-width: 400px) {
    .page--reviews .form-block .stars-block .rating {
        font-size:30px;
        height: 52px!important;
        width: 170px!important
    }
}

@media screen and (max-width: 520px) {
    .page--reviews .form-block .stars-block {
        display:block
    }
}

.page--reviews .form-block .field-wrap {
    background-color: #0f1c2b;
    border: 1px solid #202a44;
    border-radius: 4px;
    margin-bottom: 2.188rem
}

@media screen and (max-width: 500px) {
    .page--reviews .form-block .field-wrap {
        margin-bottom:1.25rem
    }
}

.page--reviews .form-block textarea {
    color: #fff;
    display: block;
    min-height: 16.875rem;
    padding: 1.125rem 25px;
    width: 100%
}

.page--reviews .form-block textarea::-webkit-input-placeholder {
    color: #fff
}

.page--reviews .form-block textarea::-moz-placeholder {
    color: #fff
}

.page--reviews .form-block textarea::placeholder {
    color: #fff
}

@media screen and (max-width: 500px) {
    .page--reviews .form-block textarea {
        min-height:6.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }
}

.page--reviews .form-block .help-text {
    color: #888;
    font-size: .75rem;
    line-height: 1rem;
    margin-top: .438rem
}

.page--reviews .form-block .error-block {
    color: #b12c2c;
    display: none;
    font-size: .813rem;
    line-height: 1.063rem;
    margin-bottom: .938rem;
    margin-top: -2rem
}

.page--reviews .form-block .msg {
    display: none;
    margin-bottom: 2.188rem
}

@media screen and (max-width: 500px) {
    .page--reviews .form-block [type=submit] {
        width:100%
    }

    .page--reviews .form-block {
        padding: 1.25rem
    }
}

.page--reviews .pagination {
    flex-wrap: wrap
}

.page--reviews .pagination a {
    background-color: #20293a
}

.page--reviews .rate-base-layer,.page--reviews .rate-hover-layer,.page--reviews .rate-select-layer {
    margin-left: -4px
}

.page--reviews .rate-base-layer>span,.page--reviews .rate-hover-layer>span,.page--reviews .rate-select-layer>span {
    margin-left: 4px
}

.page--regulatory-environment .page__in section:first-child {
    padding-top: 0
}

.page--regulatory-environment .content {
    max-width: 66.5rem;
    position: relative;
    z-index: 2
}

.page--regulatory-environment .re__container {
    padding-top: 2.25rem
}

.page--regulatory-environment .re__title {
    font-size: 1.48rem;
    margin-bottom: 3rem
}

@media screen and (max-width: 1000px) {
    .page--regulatory-environment .re__title {
        font-size:1.3rem;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 550px) {
    .page--regulatory-environment .re__title {
        font-size:1.1rem;
        margin-bottom: 1.5rem
    }
}

.page--regulatory-environment .re__row {
    background-color: #fff;
    border-radius: .75rem;
    color: #1d2941;
    display: -webkit-box;
    display: flex;
    margin-bottom: 3rem;
    overflow: hidden
}

@media screen and (max-width: 800px) {
    .page--regulatory-environment .re__row {
        flex-wrap:wrap
    }
}

.page--regulatory-environment .re__left {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: 1 1 calc(100% - 16.4rem);
    max-width: calc(100% - 16.4rem);
    padding: 4.5rem 2.5rem 1.25rem 2.2rem
}

@media screen and (max-width: 1000px) {
    .page--regulatory-environment .re__left {
        padding:3rem 2.5rem 1.25rem 1.5rem
    }
}

@media screen and (max-width: 800px) {
    .page--regulatory-environment .re__left {
        -webkit-box-flex:1;
        flex: 1 1 100%;
        max-width: 100%
    }
}

@media screen and (max-width: 550px) {
    .page--regulatory-environment .re__left {
        padding:2rem 1.5rem .5rem
    }
}

@media screen and (max-width: 400px) {
    .page--regulatory-environment .re__left {
        padding:1.5rem 1rem .5rem
    }
}

.page--regulatory-environment .re__flag {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border-radius: 50%;
    -webkit-box-shadow: 0 .5rem 1rem rgba(0,153,250,.3);
    box-shadow: 0 .5rem 1rem rgba(0,153,250,.3);
    height: 4.45rem;
    justify-content: center;
    margin-right: 1.8rem;
    margin-top: -1rem;
    overflow: hidden;
    width: 4.45rem
}

@media screen and (max-width: 1000px) {
    .page--regulatory-environment .re__flag {
        height:3.45rem;
        width: 3.45rem
    }

    .page--regulatory-environment .re__flag img {
        height: 3.45rem
    }
}

@media screen and (max-width: 550px) {
    .page--regulatory-environment .re__flag {
        display:none
    }
}

.page--regulatory-environment .re__text {
    -webkit-box-flex: 1;
    flex: 1 1 calc(100% - 6.25rem);
    font-size: 1.125rem;
    line-height: 1.35rem
}

.page--regulatory-environment .re__text span {
    font-weight: 700
}

.page--regulatory-environment .re__text p {
    margin-bottom: 1.8rem
}

@media screen and (max-width: 1000px) {
    .page--regulatory-environment .re__text p {
        margin-bottom:1.3rem
    }
}

@media screen and (max-width: 550px) {
    .page--regulatory-environment .re__text p {
        margin-bottom:.8rem
    }
}

.page--regulatory-environment .re__text a {
    color: #1a4ddd
}

.page--regulatory-environment .re__text .re__text-title {
    margin-bottom: 0
}

@media screen and (max-width: 1000px) {
    .page--regulatory-environment .re__text {
        font-size:1rem;
        line-height: 1.35rem
    }
}

@media screen and (max-width: 550px) {
    .page--regulatory-environment .re__text {
        font-size:.9rem;
        line-height: 1.3rem
    }
}

.page--regulatory-environment .re__text-title {
    color: #0099fa;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0
}

.page--regulatory-environment .re__short-line {
    max-width: 23rem
}

.page--regulatory-environment .re__right {
    -webkit-box-flex: 1;
    background: -webkit-gradient(linear,left top,left bottom,from(#ecf5fb),to(#cbe8fa));
    background: linear-gradient(180deg,#ecf5fb,#cbe8fa);
    flex: 1 1 16.4rem;
    padding: 3.4rem 1rem 5.5rem;
    text-align: center
}

@media screen and (max-width: 800px) {
    .page--regulatory-environment .re__right {
        padding:2.5rem 1rem
    }
}

@media screen and (max-width: 550px) {
    .page--regulatory-environment .re__right {
        padding:1.5rem 1rem
    }
}

.page--regulatory-environment .re__sert {
    background-color: #fff;
    border-radius: .5rem;
    display: inline-block;
    padding: .313rem;
    width: 10.5rem
}

.page--regulatory-environment .re__sert_large-padding {
    padding: .75rem
}

.page--regulatory-environment .re__sert-title {
    margin-bottom: 1.8rem
}

.page--regulatory-environment .re__sert img {
    display: block;
    max-width: 100%
}

.page--quick-start .title-section {
    background-color: #eef2f9
}

.page--quick-start .title-section h2 {
    margin-bottom: 0
}

@media screen and (max-width: 550px) {
    .page--quick-start .title-section h2 {
        text-align:left
    }
}

.page--quick-start .title-section__container {
    padding-bottom: 3.5rem;
    padding-top: 4rem
}

@media screen and (max-width: 1000px) {
    .page--quick-start .title-section__container {
        padding-bottom:3rem;
        padding-top: 2.65rem
    }
}

@media screen and (max-width: 700px) {
    .page--quick-start .title-section__container {
        padding-bottom:2rem;
        padding-top: 2rem
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .title-section__container {
        padding-bottom:1.5rem;
        padding-top: 1.5rem
    }
}

.page--quick-start .steps {
    background-color: #fff
}

.page--quick-start .steps__container {
    padding-bottom: 8rem;
    padding-top: 4rem
}

@media screen and (max-width: 1000px) {
    .page--quick-start .steps__container {
        padding-bottom:3rem;
        padding-top: 3rem
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps__container {
        padding-bottom:2rem;
        padding-top: 2.5rem
    }
}

.page--quick-start .steps__title-wrap {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: baseline;
    align-items: baseline;
    margin-bottom: .9rem
}

.page--quick-start .steps__num {
    font-family: Montserrat;
    font-size: 3.5rem;
    font-weight: 700;
    margin-right: 1rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg,#0099fa,#1a4dde);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0b75ec
}

@media screen and (max-width: 800px) {
    .page--quick-start .steps__num {
        font-size:3rem;
        margin-right: .75rem
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps__num {
        font-size:2.5rem;
        line-height: 2.5rem
    }
}

.page--quick-start .steps__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase
}

.page--quick-start .steps__text {
    max-width: 36rem
}

.page--quick-start .steps__text p {
    margin-bottom: 2rem
}

@media screen and (max-width: 1000px) {
    .page--quick-start .steps__text p {
        margin-bottom:1.5rem
    }
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__text p {
        margin-bottom:1rem
    }
}

.page--quick-start .steps__text a {
    border-bottom: 1px solid #0099fa;
    color: #515151;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.page--quick-start .steps__text a:hover {
    border-bottom: 1px solid transparent
}

.page--quick-start .steps__text_hidden {
    display: none
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__text {
        max-width:100%
    }
}

.page--quick-start .steps__btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding-right: 1.34rem;
    position: relative
}

.page--quick-start .steps__btn:after,.page--quick-start .steps__btn:before {
    background-color: #1e385b;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    right: 0;
    top: .75rem;
    -webkit-transition: 1s;
    transition: 1s;
    width: 12px
}

.page--quick-start .steps__btn:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.page--quick-start .steps__btn:hover {
    cursor: pointer
}

.page--quick-start .steps__btn:hover:after,.page--quick-start .steps__btn:hover:before {
    background-color: #fff
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__btn {
        margin-top:1rem
    }
}

.page--quick-start .steps__hidden-btn-text {
    display: none
}

.page--quick-start .steps__content {
    display: -webkit-box;
    display: flex;
    position: relative
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__content {
        flex-wrap:wrap
    }
}

.page--quick-start .steps__left {
    padding-right: 3.125rem
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__left {
        padding-right:0
    }
}

.page--quick-start .steps__img-wrap {
    opacity: 1;
    position: relative;
    -webkit-transition: visibility 0s,z-index 0s,opacity .3s linear;
    transition: visibility 0s,z-index 0s,opacity .3s linear;
    visibility: visible;
    z-index: 1
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__img-wrap {
        height:14.875rem
    }
}

@media screen and (max-width: 800px) {
    .page--quick-start .steps__img-wrap {
        height:13rem
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps__img-wrap {
        height:12rem
    }
}

.page--quick-start .steps__img {
    left: 50%;
    margin-left: -11.3rem;
    position: absolute;
    top: .8rem;
    visibility: hidden;
    width: 22.5rem
}

.page--quick-start .steps__img img,.page--quick-start .steps__img source {
    width: 22.5rem
}

.page--quick-start .steps__img_0 {
    margin-left: -7.5rem;
    top: -3.2rem
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__img_0 {
        margin-left:-10.5rem
    }
}

@media screen and (max-width: 800px) {
    .page--quick-start .steps__img_0 {
        margin-left:-7.5rem!important;
        max-width: 20rem
    }
}

@media screen and (max-width: 1000px) {
    .page--quick-start .steps__img img,.page--quick-start .steps__img source {
        max-width:17rem
    }
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__img {
        margin-left:-8.3rem;
        visibility: visible
    }
}

@media screen and (max-width: 800px) {
    .page--quick-start .steps__img img,.page--quick-start .steps__img source {
        max-width:15rem
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps__img {
        margin-left:-6.3rem
    }

    .page--quick-start .steps__img img,.page--quick-start .steps__img source {
        max-width: 13rem
    }
}

.page--quick-start .steps__slider {
    left: 50%;
    margin-top: 2rem;
    max-width: 33.75rem;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    z-index: -1
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__slider {
        left:0;
        -webkit-box-ordinal-group: 4;
        margin-left: 0;
        order: 3
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps__slider {
        max-width:100%
    }
}

.page--quick-start .steps_right .steps__slider {
    left: 0
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps_left .steps__right {
        -webkit-box-ordinal-group:2;
        order: 1
    }

    .page--quick-start .steps_left .steps__left {
        -webkit-box-ordinal-group: 3;
        order: 2
    }
}

.page--quick-start .steps .slider {
    max-width: 33.75rem
}

.page--quick-start .steps .slider__img img,.page--quick-start .steps .slider__img source {
    border-radius: .75rem;
    margin-bottom: 1.25rem;
    width: 100%
}

.page--quick-start .steps .slider__img-desc {
    color: rgba(81,81,81,.5);
    margin-bottom: 1.563rem;
    text-align: center
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps .slider__img-desc {
        text-align:left
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps .slider__img-desc {
        margin-bottom:.5rem;
        text-align: center
    }
}

.page--quick-start .steps .slider__arrows {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%
}

.page--quick-start .steps .slider__arrows .slider-arrow-stroke {
    stroke: #0099fa;
    -webkit-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps .slider__arrows {
        -webkit-box-pack:start;
        justify-content: flex-start
    }
}

@media screen and (max-width: 550px) {
    .page--quick-start .steps .slider__arrows {
        -webkit-box-pack:center;
        justify-content: center
    }
}

.page--quick-start .steps .slider__arrow {
    display: -webkit-box!important;
    display: flex!important;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border: 2px solid transparent;
    border-radius: 50%;
    color: #0099fa;
    font-size: 2.2rem;
    height: 2.688rem;
    justify-content: center;
    line-height: 2.2rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    width: 2.688rem
}

.page--quick-start .steps .slider__arrow svg {
    margin-right: -2px
}

.page--quick-start .steps .slider__arrow-left {
    margin-right: .3rem
}

.page--quick-start .steps .slider__arrow-left svg {
    margin-left: -2px;
    margin-right: 0
}

.page--quick-start .steps .slider__arrow:focus,.page--quick-start .steps .slider__arrow:hover {
    border: 2px solid #0099fa;
    color: #0099fa
}

.page--quick-start .steps .slider__arrow:focus .slider-arrow-stroke,.page--quick-start .steps .slider__arrow:hover .slider-arrow-stroke {
    stroke: #0099fa
}

.page--quick-start .steps .swiper-pagination {
    display: -webkit-box;
    display: flex;
    width: 100%
}

.page--quick-start .steps .swiper-pagination-bullet {
    -webkit-box-flex: 1;
    background-color: #d6e6f2;
    flex-grow: 1;
    height: 2px
}

.page--quick-start .steps .dots {
    margin: 0 .625rem;
    position: relative;
    width: 5.813rem
}

.page--quick-start .steps .dots__btn {
    background-color: #0099fa;
    height: 4px;
    left: 0;
    position: absolute;
    top: -1px;
    -webkit-transition: .5s;
    transition: .5s
}

.page--quick-start .steps.full-info .steps__btn:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.page--quick-start .steps.full-info .steps__visible-btn-text {
    display: none
}

.page--quick-start .steps.full-info .steps__hidden-btn-text {
    display: inline
}

.page--quick-start .steps.full-info .steps__text_hidden {
    display: block
}

.page--quick-start .steps.full-info .steps__img-wrap {
    opacity: 0;
    -webkit-transition: visibility 0s linear .3s,z-index 0s linear .3s,opacity .3s linear;
    transition: visibility 0s linear .3s,z-index 0s linear .3s,opacity .3s linear;
    visibility: hidden;
    z-index: -1
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps.full-info .steps__img-wrap {
        opacity:1;
        visibility: visible;
        z-index: 1
    }
}

.page--quick-start .steps.full-info .steps__slider {
    opacity: 1;
    visibility: visible;
    z-index: 1
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps.full-info .steps__slider {
        position:relative
    }
}

.page--quick-start .steps__left,.page--quick-start .steps__right {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%
}

@media screen and (max-width: 900px) {
    .page--quick-start .steps__left,.page--quick-start .steps__right {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page--quick-start .info {
    background-color: #eef2f9
}

.page--quick-start .info__content {
    display: -webkit-box;
    display: flex;
    margin: -.625rem
}

@media screen and (max-width: 900px) {
    .page--quick-start .info__content {
        flex-wrap:wrap
    }
}

.page--quick-start .info .item {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    padding: .625rem
}

.page--quick-start .info .item__icon-wrap {
    margin-bottom: 1.5rem
}

@media screen and (max-width: 550px) {
    .page--quick-start .info .item__icon-wrap {
        margin-bottom:.5rem
    }
}

.page--quick-start .info .item__in {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: .75rem;
    height: 100%;
    padding: 3.2rem 3rem 6.125rem;
    position: relative
}

@media screen and (max-width: 1000px) {
    .page--quick-start .info .item__in {
        padding:1.5rem 1.5rem 4rem
    }
}

@media screen and (max-width: 700px) {
    .page--quick-start .info .item__in {
        padding:1.5rem 1.5rem 4rem
    }
}

.page--quick-start .info .item__title {
    margin-bottom: 1.4rem
}

@media screen and (max-width: 550px) {
    .page--quick-start .info .item__title {
        text-align:left
    }
}

.page--quick-start .info .item__text {
    margin-bottom: 2rem
}

.page--quick-start .info .item__text p {
    margin-bottom: 1.25rem
}

.page--quick-start .info .item__bold-text {
    font-weight: 700
}

.page--quick-start .info .item__btn {
    bottom: 3rem;
    left: 3rem;
    position: absolute
}

@media screen and (max-width: 1000px) {
    .page--quick-start .info .item__btn {
        bottom:1.5rem;
        left: 1.5rem
    }
}

@media screen and (max-width: 900px) {
    .page--quick-start .info .item {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

.page--quick-start .info .social {
    background-image: url(../images/social-bg.jpg)
}

.page--quick-start .info .chat {
    background-image: url(../images/chat-bg.jpg);
    color: #515151
}

.fade-in-up-quick-start {
    -webkit-animation-name: fade-in-up-quick-start;
    animation-name: fade-in-up-quick-start
}

@media screen and (max-width: 900px) {
    .fade-in-up-quick-start {
        -webkit-animation:none;
        animation: none
    }
}

@-webkit-keyframes fade-in-up-quick-start {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,50px,0);
        transform: translate3d(0,50px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fade-in-up-quick-start {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,50px,0);
        transform: translate3d(0,50px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.breadcrumbs {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    color: #96aec1;
    margin-bottom: 4.375rem
}

.breadcrumbs__item {
    font-size: .813rem;
    margin-right: .813rem;
    position: relative
}

.breadcrumbs__item:before {
    content: "/";
    position: absolute;
    right: -.5rem;
    top: 0
}

.breadcrumbs__item:last-child {
    margin-right: 0
}

.breadcrumbs__item:last-child:before {
    display: none
}

.breadcrumbs__link {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    display: block;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.breadcrumbs__link:hover {
    border-bottom: 1px solid transparent;
    color: #fff
}

@media only screen and (max-width: 1000px) {
    .breadcrumbs {
        margin-bottom:2.375rem
    }
}

@media only screen and (max-width: 600px) {
    .breadcrumbs {
        margin-bottom:1.875rem
    }
}

.register-form {
    background-color: rgba(51,122,183,.2);
    border: 1px solid #337ab7;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 10px 0 #337ab7;
    box-shadow: 0 0 10px 0 #337ab7;
    display: none;
    margin: 0 auto;
    padding: 50px 130px;
    width: 750px
}

.register-form .message {
    display: none
}

.register-form .css-ajax-loader {
    display: block;
    height: 49px;
    margin: 0 auto
}

.register-form .form-group {
    position: relative
}

.register-form .form-group.label-up .control-label {
    background: #1a2c43;
    border-radius: 4px;
    padding: 3px 10px;
    -webkit-transform: translate3d(0,-33px,0);
    transform: translate3d(0,-33px,0)
}

.register-form .has-checkbox {
    padding-left: 40px;
    padding-right: 40px;
    text-align: center
}

.register-form .has-checkbox [type=checkbox] {
    border-radius: 4px;
    height: 20px;
    margin-right: 7px;
    vertical-align: middle;
    width: 20px
}

.register-form .control-label {
    color: #797f7d;
    font-size: 14px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    top: 9px;
    -webkit-transition: background .3s,padding .3s,border-radius .3s,-webkit-transform .3s;
    transition: background .3s,padding .3s,border-radius .3s,-webkit-transform .3s;
    transition: background .3s,padding .3s,border-radius .3s,transform .3s;
    transition: background .3s,padding .3s,border-radius .3s,transform .3s,-webkit-transform .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.register-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase
}

.register-form .btn {
    display: block;
    margin: 0 auto
}

.mCustomScrollbar {
    touch-action: pinch-zoom
}

.mCustomScrollbar.mCS_no_scrollbar,.mCustomScrollbar.mCS_touch_action {
    touch-action: auto
}

.mCustomScrollBox {
    direction: ltr;
    height: 100%;
    max-width: 100%;
    outline: none;
    overflow: hidden;
    position: relative
}

.mCSB_container {
    height: auto;
    overflow: hidden;
    width: auto
}

.mCSB_inside>.mCSB_container {
    margin-right: 30px
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
    margin-left: 30px;
    margin-right: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0
}

.mCSB_scrollTools {
    bottom: 0;
    height: auto;
    left: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 16px
}

.mCSB_outside+.mCSB_scrollTools {
    right: -26px
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    left: 0;
    right: auto
}

.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    left: -26px
}

.mCSB_scrollTools .mCSB_draggerContainer {
    bottom: 0;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.mCSB_scrollTools a+.mCSB_draggerContainer {
    margin: 20px 0
}

.mCSB_scrollTools .mCSB_draggerRail {
    border-radius: 16px;
    height: 100%;
    margin: 0 auto;
    width: 2px
}

.mCSB_scrollTools .mCSB_dragger {
    cursor: pointer;
    height: 30px;
    width: 100%;
    z-index: 1
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 16px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 4px
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px
}

.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonUp {
    cursor: pointer;
    display: block;
    height: 20px;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    width: 100%
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-bottom: 30px;
    margin-right: 0
}

.mCSB_horizontal.mCSB_outside>.mCSB_container {
    min-height: 100%
}

.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    height: 16px;
    left: 0;
    right: 0;
    top: auto;
    width: auto
}

.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
    margin: 0 20px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 2px;
    margin: 7px 0;
    width: 100%
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    height: 100%;
    left: 0;
    width: 30px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 4px;
    margin: 6px auto;
    width: 100%
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    margin: 2px auto
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    margin: 4px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    cursor: pointer;
    display: block;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    width: 20px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0
}

.mCSB_container_wrapper {
    bottom: 0;
    height: auto;
    left: 0;
    margin-bottom: 30px;
    margin-right: 30px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: auto
}

.mCSB_container_wrapper>.mCSB_container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 30px;
    padding-right: 30px
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper {
    margin-left: 30px;
    margin-right: 0
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
    padding-right: 0
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
    padding-bottom: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
    margin-right: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0
}

.mCSB_scrollTools,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    -webkit-transition: opacity .2s ease-in-out,background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out,background-color .2s ease-in-out
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
    -webkit-transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;
    transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out
}

.mCSB_scrollTools {
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
    opacity: .75
}

.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)";
    opacity: 0
}

.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,.mCustomScrollBox:hover>.mCSB_scrollTools,.mCustomScrollBox:hover~.mCSB_scrollTools,.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag {
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
    opacity: 1
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85);
    filter: "alpha(opacity=85)";
    -ms-filter: "alpha(opacity=85)"
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9);
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp {
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
    opacity: .4
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px
}

.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover,.mCSB_scrollTools .mCSB_buttonUp:hover {
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
    opacity: .75
}

.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active,.mCSB_scrollTools .mCSB_buttonUp:active {
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)";
    opacity: .9
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.85)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.9)
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.1);
    border-radius: 1px;
    width: 4px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.75);
    border-radius: 1px;
    width: 4px
}

.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px auto;
    width: 100%
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85)
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9)
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.1);
    border-radius: 2px;
    width: 4px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.75);
    border-radius: 2px;
    width: 6px
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    width: 100%
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px auto;
    width: 100%
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85)
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9)
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px
}

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.1)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 2px;
    margin: 7px auto;
    width: 100%
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.15)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,.mCS-rounded.mCSB_scrollTools .mCSB_dragger {
    height: 14px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 1px;
    width: 14px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 14px;
    margin: 1px 0
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    margin: -1px 0;
    width: 16px
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    margin: 0 -1px;
    width: 16px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px
}

.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: 50%
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
    background-repeat: repeat-y;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
    opacity: .3
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-repeat: repeat-x;
    height: 4px;
    margin: 6px 0
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=")
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-image: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,.5)),to(hsla(0,0%,100%,0)));
    background-image: linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,0));
    background-repeat: repeat-y
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-image: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,.5)),to(hsla(0,0%,100%,0)));
    background-image: linear-gradient(180deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,0));
    background-repeat: repeat-x
}

.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px
}

.mCS-3d-dark.mCSB_scrollTools,.mCS-3d.mCSB_scrollTools {
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
    opacity: 1
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
    border-radius: 16px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    -webkit-box-shadow: inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px hsla(0,0%,100%,.2);
    box-shadow: inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px hsla(0,0%,100%,.2);
    width: 8px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #555
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 8px
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px hsla(0,0%,100%,.2);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px hsla(0,0%,100%,.2);
    height: 8px;
    margin: 4px 0;
    width: 100%
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 8px;
    margin: 4px auto;
    width: 100%
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    -webkit-box-shadow: inset 1px 0 1px rgba(0,0,0,.1);
    box-shadow: inset 1px 0 1px rgba(0,0,0,.1)
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1)
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools {
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
    opacity: 1
}

.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,.mCS-3d-thick.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    border-radius: 7px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 5px
}

.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical {
    right: 1px
}

.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCS-3d-thick.mCSB_scrollTools_vertical {
    -webkit-box-shadow: inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5);
    box-shadow: inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,.mCS-3d-thick.mCSB_scrollTools_horizontal {
    bottom: 1px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    bottom: 0;
    -webkit-box-shadow: inset 1px 0 0 hsla(0,0%,100%,.4);
    box-shadow: inset 1px 0 0 hsla(0,0%,100%,.4);
    height: auto;
    left: 0;
    margin: 2px;
    position: absolute;
    right: 0;
    top: 0;
    width: 12px
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.4);
    box-shadow: inset 0 1px 0 hsla(0,0%,100%,.4)
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #555
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    width: auto
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0,0,0,.05);
    -webkit-box-shadow: inset 1px 1px 16px rgba(0,0,0,.1);
    box-shadow: inset 1px 1px 16px rgba(0,0,0,.1)
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-3d-thick-dark.mCSB_scrollTools {
    -webkit-box-shadow: inset 0 0 14px rgba(0,0,0,.2);
    box-shadow: inset 0 0 14px rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    -webkit-box-shadow: inset 1px 0 0 hsla(0,0%,100%,.4),inset -1px 0 0 rgba(0,0,0,.2);
    box-shadow: inset 1px 0 0 hsla(0,0%,100%,.4),inset -1px 0 0 rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.4),inset 0 -1px 0 rgba(0,0,0,.2);
    box-shadow: inset 0 1px 0 hsla(0,0%,100%,.4),inset 0 -1px 0 rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #777
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0,0,0,.05);
    -webkit-box-shadow: inset 1px 1px 16px rgba(0,0,0,.1);
    box-shadow: inset 1px 1px 16px rgba(0,0,0,.1)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical {
    margin: 12px 0;
    right: 0
}

.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px
}

.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical {
    left: 0;
    right: auto
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px
}

.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)"
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)"
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)"
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)"
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    width: 6px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px
}

.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 6px;
    margin: 5px 0;
    width: 100%
}

.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px
}

.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    width: 12px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    bottom: 0;
    height: auto;
    left: 0;
    margin: 3px 5px;
    position: absolute;
    right: 0;
    top: 0;
    width: 6px
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    bottom: 0;
    height: 6px;
    left: 0;
    margin: 5px 3px;
    position: absolute;
    right: 0;
    top: 0;
    width: auto
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0;
    width: 100%
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border: 1px solid hsla(0,0%,100%,.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0,0,0,.2)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.6)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.6)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.75)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.85)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: hsla(0,0%,100%,.9)
}

.message {
    font-size: .75rem
}

.message-error {
    color: #f44336
}

.message--form-errors {
    background: rgba(211,47,47,.2);
    border: 1px dashed #f44336;
    border-radius: 10px;
    color: #fff;
    padding: 12px 16px
}

.content-placeholder {
    position: relative
}

.content-placeholder__animated-background {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: -webkit-gradient(linear,left top,right top,color-stop(8%,#eee),color-stop(18%,#ddd),color-stop(33%,#eee));
    background: linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);
    background-size: 800px 104px
}

.content-placeholder .mk {
    position: absolute
}

.content-placeholder__item {
    position: relative
}

.content-placeholder--social .content-placeholder__item .mk {
    background: #1f232f
}

.content-placeholder--social .content-placeholder__item:nth-child(2n) .content-placeholder__animated-background {
    background: -webkit-gradient(linear,left top,right top,color-stop(8%,#0b1220),color-stop(18%,#121d33),color-stop(33%,#0b1220));
    background: linear-gradient(90deg,#0b1220 8%,#121d33 18%,#0b1220 33%)
}

.content-placeholder--social .content-placeholder__item:nth-child(2n) .mk {
    background: #0b1220
}

.content-placeholder--social .content-placeholder__animated-background {
    background: -webkit-gradient(linear,left top,right top,color-stop(8%,#1f232f),color-stop(18%,#292e3e),color-stop(33%,#1f232f));
    background: linear-gradient(90deg,#1f232f 8%,#292e3e 18%,#1f232f 33%);
    height: 69px
}

.content-placeholder--social .ht {
    height: 15px;
    left: 0;
    right: 0;
    top: 0;
    width: 100%
}

.content-placeholder--social .hr {
    height: 100%;
    right: 0;
    width: 15px
}

.content-placeholder--social .hl {
    height: 100%;
    left: 0;
    width: 15px
}

.content-placeholder--social .h2 {
    height: 100%;
    left: 30px;
    width: 15px
}

.content-placeholder--social .h3 {
    height: 100%;
    left: 87px;
    width: 15px
}

.content-placeholder--social .h4 {
    height: 12px;
    left: 100px;
    top: 29px;
    width: calc(100% - 100px)
}

.content-placeholder--social .hb {
    bottom: 0;
    height: 15px;
    left: 0;
    right: 0;
    width: 100%
}

.content-placeholder--tournament .content-placeholder__item .mk {
    background: #1f232f
}

.content-placeholder--tournament .content-placeholder__item:nth-child(2n) .content-placeholder__animated-background {
    background: -webkit-gradient(linear,left top,right top,color-stop(8%,#0b1220),color-stop(18%,#121d33),color-stop(33%,#0b1220));
    background: linear-gradient(90deg,#0b1220 8%,#121d33 18%,#0b1220 33%)
}

.content-placeholder--tournament .content-placeholder__item:nth-child(2n) .mk {
    background: #0b1220
}

.content-placeholder--tournament .content-placeholder__animated-background {
    background: -webkit-gradient(linear,left top,right top,color-stop(8%,#1f232f),color-stop(18%,#292e3e),color-stop(33%,#1f232f));
    background: linear-gradient(90deg,#1f232f 8%,#292e3e 18%,#1f232f 33%);
    height: 47px
}

.content-placeholder--tournament .ht {
    height: 10px;
    left: 0;
    right: 0;
    top: 0;
    width: 100%
}

.content-placeholder--tournament .hr {
    height: 100%;
    right: 0;
    width: 10px
}

.content-placeholder--tournament .hb {
    bottom: 0;
    height: 10px;
    left: 0;
    right: 0;
    width: 100%
}

.content-placeholder--tournament .hl {
    height: 100%;
    left: 0;
    width: 10px
}

.content-placeholder--tournament .h1,.content-placeholder--tournament .h2 {
    height: 100%;
    left: 150px;
    width: 40px
}

.content-placeholder--tournament .h3 {
    height: 100%;
    left: 260px;
    width: 30px
}

.content-placeholder--tournament .h4 {
    height: 100%;
    right: 86px;
    width: 50px
}

@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    to {
        background-position: 468px 0
    }
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    to {
        background-position: 468px 0
    }
}

.winnings-reports-stream {
    --bottom: 7.5rem;
    bottom: var(--bottom);
    position: fixed;
    right: 2.11rem;
    width: 14.75rem;
    z-index: 1003
}

.winnings-reports-stream .winnings-reports__item {
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s
}

.winnings-reports-stream .winnings-reports__item:hover {
    z-index: 4
}

.winnings-reports-stream .winnings-reports__item[data-winning-report-num="3"] {
    bottom: 0;
    z-index: 3
}

.winnings-reports-stream .winnings-reports__item[data-winning-report-num="2"] {
    bottom: 1.563rem;
    z-index: 2
}

.winnings-reports-stream .winnings-reports__item[data-winning-report-num="1"] {
    bottom: 3.125rem;
    z-index: 1
}

.winnings-reports-stream .winnings-reports__item[data-winning-report-num="0"] {
    bottom: 3.125rem;
    z-index: 0
}

@media screen and (max-width: 770px) {
    .winnings-reports-stream .winnings-reports__item {
        -webkit-transform:scale(.8);
        transform: scale(.8);
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }
}

@media screen and (max-height: 950px) {
    body.is-logged-in .winnings-reports-stream {
        --bottom:1.875rem;
        left: 1.875rem;
        right: unset;
        z-index: 999
    }
}

@media screen and (max-height: 920px) {
    body:not(.is-logged-in) .winnings-reports-stream {
        --bottom:1.875rem;
        left: 1.875rem;
        right: unset;
        z-index: 999
    }
}

@media screen and (max-width: 1279px) {
    .winnings-reports-stream {
        left:1.875rem;
        right: unset
    }
}

@media screen and (max-width: 700px) {
    .winnings-reports-stream {
        --bottom:0.938rem;
        left: .938rem
    }
}

.winnings-reports__item {
    background: #fff;
    border-radius: .75rem;
    bottom: 0;
    -webkit-box-shadow: 0 0 3.125rem rgba(0,153,250,.9);
    box-shadow: 0 0 3.125rem rgba(0,153,250,.9);
    color: #475764;
    font-size: .875rem;
    line-height: 1.125rem;
    opacity: 0;
    padding: .438rem 1.25rem .938rem;
    position: absolute;
    -webkit-transform: translate3d(0,6.25rem,0);
    transform: translate3d(0,6.25rem,0);
    -webkit-transition: visibility .7s,opacity .7s,-webkit-transform .7s;
    transition: visibility .7s,opacity .7s,-webkit-transform .7s;
    transition: visibility .7s,opacity .7s,transform .7s;
    transition: visibility .7s,opacity .7s,transform .7s,-webkit-transform .7s;
    visibility: hidden;
    width: 15rem
}

.winnings-reports__item--show {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: visible
}

.winnings-reports__item--show-first {
    -webkit-animation: move-to-first-winning-report 1s ease forwards;
    animation: move-to-first-winning-report 1s ease forwards
}

.winnings-reports__rw {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column
}

.winnings-reports__info {
    margin-bottom: -2px
}

.winnings-reports__info .asset,.winnings-reports__info .win {
    font-weight: 700
}

.winnings-reports__info .win {
    color: #0099fa
}

.winnings-reports__fio {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: .938rem;
    font-weight: 700;
    line-height: 1.125rem;
    margin-bottom: .313rem
}

.winnings-reports__time-ago {
    color: #96aec1;
    font-size: .75rem;
    line-height: 1.125rem;
    padding-right: .625rem;
    text-align: right
}

.winnings-reports__close {
    background-image: url(../images/icon-win-cross.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: .563rem;
    height: 1.25rem;
    position: absolute;
    right: .313rem;
    top: .313rem;
    -webkit-transition: .5s;
    transition: .5s;
    width: 1.25rem
}

.winnings-reports__close:hover {
    opacity: .7
}

.winnings-reports__flag {
    border-radius: 50%;
    height: 1.625rem;
    margin-right: .438rem;
    overflow: hidden;
    width: 1.625rem
}

.winnings-reports__flag img {
    display: block;
    max-width: 100%
}

.winnings-reports__buttons {
    margin-top: 1rem;
    text-align: center
}

.winnings-reports__buttons a {
    font-size: 1.063rem
}

@-webkit-keyframes move-to-first-winning-report {
    0% {
        z-index: 1
    }

    50% {
        bottom: -12rem;
        z-index: 1
    }

    51% {
        z-index: 3
    }

    to {
        bottom: 0;
        z-index: 3
    }
}

@keyframes move-to-first-winning-report {
    0% {
        z-index: 1
    }

    50% {
        bottom: -12rem;
        z-index: 1
    }

    51% {
        z-index: 3
    }

    to {
        bottom: 0;
        z-index: 3
    }
}

.status {
    -webkit-animation: status-pulse 2s infinite;
    animation: status-pulse 2s infinite;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    opacity: 0;
    width: 8px
}

.status--on {
    background-color: #15f38e
}

.status--off {
    background-color: #7f7f7f
}

@-webkit-keyframes status-pulse {
    0% {
        opacity: 0;
        -webkit-transform: scale(.6);
        transform: scale(.6);
        -webkit-transform-origin: center;
        transform-origin: center
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
}

@keyframes status-pulse {
    0% {
        opacity: 0;
        -webkit-transform: scale(.6);
        transform: scale(.6);
        -webkit-transform-origin: center;
        transform-origin: center
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
}

input {
    background-color: transparent;
    border-bottom: 1px solid hsla(0,2%,89%,.2);
    color: hsla(0,0%,88%,.5);
    font-family: NunitoSans;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 0
}

.rating {
    font-size: 40px;
    line-height: 40px
}

.rating .rate-select-layer {
    color: #ffc107
}

.rating .rate-hover-layer {
    color: #a07e14
}

.pagination {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-left: -1px;
    margin-top: -1px
}

.pagination a {
    background-color: #111a32;
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 13px;
    text-decoration: none
}

.pagination li {
    margin-left: 1px;
    margin-top: 1px
}

.pagination li.active a,.pagination li:hover a {
    background-color: #343c4c;
    color: #9e9e9e
}

.pagination>li:first-child>a {
    border-radius: 4px 0 0 4px
}

.pagination>li:last-child>a {
    border-radius: 0 4px 4px 0
}

.reviews-slider {
    background: #eef2f9;
    overflow: hidden
}

.reviews-slider__title {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

@media screen and (max-width: 550px) {
    .reviews-slider__title-desc {
        text-align:center
    }
}

.reviews-slider__btn {
    position: absolute;
    right: 7rem;
    top: -3rem
}

.reviews-slider .swiper-slide {
    pointer-events: none;
    z-index: 1
}

.reviews-slider .swiper-slide.swiper-slide-active,.reviews-slider .swiper-slide.swiper-slide-duplicate-active {
    pointer-events: auto;
    z-index: 2
}

.reviews-slider .slider {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: 6rem;
    position: relative
}

.reviews-slider .slider__in {
    background-color: hsla(0,0%,100%,.65);
    border-radius: .938rem;
    -webkit-box-shadow: 0 1.188rem 6.25rem rgba(13,38,85,.15);
    box-shadow: 0 1.188rem 6.25rem rgba(13,38,85,.15);
    overflow: hidden;
    position: relative;
    -webkit-transition: all .3s cubic-bezier(.25,.8,.25,1);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    z-index: 1
}

.reviews-slider .slider__left {
    position: relative;
    width: 62%
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider__left {
        -webkit-box-ordinal-group:3;
        order: 2;
        width: 100%
    }
}

.reviews-slider .slider__right {
    width: 38%
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider__right {
        -webkit-box-ordinal-group:2;
        margin-bottom: 1rem;
        order: 1;
        width: 100%
    }
}

@media screen and (max-width: 550px) {
    .reviews-slider .slider__right {
        text-align:center
    }
}

.reviews-slider .slider__arrows {
    bottom: 2.812rem;
    display: -webkit-box;
    display: flex;
    position: absolute;
    right: 3.3rem;
    z-index: 1
}

.reviews-slider .slider__arrows .slider-arrow-stroke {
    stroke: #96aec1;
    -webkit-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 700px) {
    .reviews-slider .slider__arrows {
        bottom:2rem;
        right: 1.5rem
    }
}

@media screen and (max-width: 550px) {
    .reviews-slider .slider__arrows {
        bottom:1.25rem;
        right: 1.25rem
    }
}

.reviews-slider .slider .arrow {
    display: -webkit-box!important;
    display: flex!important;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border: 2px solid transparent;
    border-radius: 50%;
    color: #96aec1;
    font-size: 2.2rem;
    height: 2.688rem;
    justify-content: center;
    line-height: 2.2rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 2.688rem
}

.reviews-slider .slider .arrow svg {
    margin-right: -2px
}

.reviews-slider .slider .arrow-left {
    margin-right: .3rem
}

.reviews-slider .slider .arrow-left svg {
    margin-left: -2px;
    margin-right: 0
}

.reviews-slider .slider .arrow:focus,.reviews-slider .slider .arrow:hover {
    border: 2px solid #0099fa;
    color: #0099fa
}

.reviews-slider .slider .arrow:focus .slider-arrow-stroke,.reviews-slider .slider .arrow:hover .slider-arrow-stroke {
    stroke: #0099fa
}

.reviews-slider .slider .arrow-disable {
    color: #6f798a;
    cursor: default
}

.reviews-slider .slider__link-all {
    border-bottom: 1px solid #0099fa;
    color: #515151;
    display: inline-block;
    margin-bottom: 3rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.reviews-slider .slider__link-all:hover {
    border-bottom: 1px solid transparent
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider__link-all {
        margin-bottom:0
    }
}

.reviews-slider .slider__info-text {
    bottom: 0;
    color: rgba(81,81,81,.4);
    font-size: .875rem;
    left: 4.5rem;
    max-width: 18rem;
    position: absolute
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider__info-text {
        position:unset
    }
}

.reviews-slider .slider__footer {
    height: 100%;
    margin-top: 0;
    padding: 0 0 5rem 4.375rem;
    position: relative;
    z-index: 1
}

.reviews-slider .slider__footer p {
    max-width: 24.5rem
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider__footer p {
        max-width:100%
    }
}

.reviews-slider .slider__footer .btn {
    margin-top: 1.9rem
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider__footer .btn {
        margin-top:0
    }

    .reviews-slider .slider__footer {
        padding: 0
    }
}

@media screen and (max-width: 550px) {
    .reviews-slider .slider__footer {
        font-size:.95rem
    }
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider {
        margin-top:.75rem;
        padding: 0
    }
}

.reviews-slider .bx-wrapper {
    background: transparent
}

.reviews-slider .review-item {
    padding: 2.9rem 3.3rem 8.125rem;
    position: relative
}

.reviews-slider .review-item__stars {
    color: #0099fa;
    font-size: 1.9rem;
    line-height: 1.9rem;
    margin-bottom: 1rem
}

.reviews-slider .review-item__stars span {
    margin-right: .35rem
}

@media screen and (max-width: 550px) {
    .reviews-slider .review-item__stars {
        font-size:1.5rem;
        line-height: 1.5rem
    }
}

@media screen and (max-width: 420px) {
    .reviews-slider .review-item__stars {
        margin-bottom:.5rem
    }
}

.reviews-slider .review-item__top {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 420px) {
    .reviews-slider .review-item__top {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.reviews-slider .review-item__info-text {
    color: #a8abb3;
    font-size: 12px;
    text-align: right
}

.reviews-slider .review-item__user-data a {
    color: #3a4a68;
    text-decoration: none
}

.reviews-slider .review-item__user-data a:hover {
    color: #194cdd
}

.reviews-slider .review-item__date {
    margin-top: .2rem
}

@media screen and (max-width: 550px) {
    .reviews-slider .review-item__date {
        font-size:.95rem
    }
}

@media screen and (max-width: 420px) {
    .reviews-slider .review-item__date {
        margin-bottom:1rem;
        margin-top: 0
    }
}

.reviews-slider .review-item__text {
    color: #515151;
    font-size: 1rem;
    line-height: 1.375rem;
    margin-bottom: 1.875rem
}

@media screen and (max-width: 550px) {
    .reviews-slider .review-item__text {
        font-size:.95rem;
        margin-bottom: .875rem
    }
}

.reviews-slider .review-item__footer {
    bottom: 2.5rem;
    display: -webkit-box;
    display: flex;
    left: 3.375rem;
    position: absolute;
    -webkit-box-align: center;
    align-items: center;
    border-top: 2px solid rgba(150,174,193,.4);
    padding-top: 1.625rem;
    width: calc(100% - 6.75rem)
}

@media screen and (max-width: 700px) {
    .reviews-slider .review-item__footer {
        bottom:1.5rem;
        left: 1.5rem;
        padding-top: 1.3rem;
        width: calc(100% - 3rem)
    }
}

@media screen and (max-width: 550px) {
    .reviews-slider .review-item__footer {
        bottom:1.2rem;
        left: 1.25rem;
        padding-top: 1rem;
        width: calc(100% - 2.45rem)
    }
}

.reviews-slider .review-item__flag {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border-radius: 50%;
    height: 3.125rem;
    justify-content: center;
    margin-right: .9rem;
    overflow: hidden;
    width: 3.125rem
}

.reviews-slider .review-item__flag img {
    max-width: 100%
}

@media screen and (max-width: 550px) {
    .reviews-slider .review-item__flag {
        height:2.5rem;
        width: 2.5rem
    }
}

.reviews-slider .review-item__fio {
    color: #1e385b;
    font-weight: 700;
    margin-bottom: .25rem
}

.reviews-slider .review-item__uid {
    font-size: .875rem;
    line-height: 1rem
}

.reviews-slider .review-item__hide-show-btn {
    margin-top: .5rem
}

.reviews-slider .review-item__more-btn {
    border-bottom: 1px solid #0099fa;
    color: #515151;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.reviews-slider .review-item__more-btn:hover {
    border-bottom: 1px solid transparent
}

.reviews-slider .review-item.show-full-text .review-item__more-btn--hide,.reviews-slider .review-item.show-full-text .review-item__text-next {
    display: inline
}

.reviews-slider .review-item.show-full-text .review-item__more-btn--show,.reviews-slider .review-item.show-full-text .review-item__text-dots,.reviews-slider .review-item__more-btn--hide,.reviews-slider .review-item__text-next {
    display: none
}

@media screen and (max-width: 700px) {
    .reviews-slider .review-item {
        padding:1.5rem 1.5rem 5.5rem
    }
}

@media screen and (max-width: 550px) {
    .reviews-slider .review-item {
        padding:1.2rem 1.2rem 5.5rem
    }
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider-footer__text {
        -webkit-box-ordinal-group:2;
        margin-bottom: .75rem;
        order: 1
    }

    .reviews-slider .slider-footer__desc {
        -webkit-box-ordinal-group: 3;
        margin-bottom: 2rem;
        max-width: 100%;
        order: 2;
        width: 100%
    }
}

@media screen and (max-width: 380px) {
    .reviews-slider .slider-footer__desc {
        margin-bottom:1rem
    }
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider-footer__btn {
        -webkit-box-ordinal-group:4;
        order: 3
    }
}

@media screen and (max-width: 380px) {
    .reviews-slider .slider-footer__btn {
        margin-bottom:1rem
    }
}

@media screen and (max-width: 1000px) {
    .reviews-slider .slider-footer__link-all {
        -webkit-box-ordinal-group:5;
        order: 4
    }

    .reviews-slider .slider-footer {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 380px) {
    .reviews-slider .slider-footer {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        align-items: center
    }
}

@media screen and (max-width: 550px) {
    .reviews-slider {
        font-size:.95rem
    }
}

.top-btn {
    background-color: #0099fa;
    background-image: url(../images/icon-top-arrow.svg);
    background-position: top .5rem center;
    background-repeat: no-repeat;
    background-size: 1.563rem 1.625rem;
    border-radius: .75rem;
    bottom: .625rem;
    -webkit-box-shadow: 0 .313rem .625rem rgba(0,0,0,.3);
    box-shadow: 0 .313rem .625rem rgba(0,0,0,.3);
    cursor: pointer;
    display: block;
    height: 2.5rem;
    opacity: 0;
    position: fixed;
    right: 19.75rem;
    -webkit-transition: .5s;
    transition: .5s;
    visibility: hidden;
    width: 2.5rem;
    z-index: -1
}

.top-btn_visible {
    opacity: 1;
    visibility: visible;
    z-index: 99
}

.top-btn:hover {
    background-color: #002ed9
}

@media screen and (max-width: 1735px) {
    .top-btn {
        bottom:1rem;
        right: 1.875rem
    }
}

@media screen and (max-width: 1000px) {
    .top-btn {
        display:none
    }
}

[data-name=svg-link] .svg-icon {
    color: #96aec1;
    display: block;
    pointer-events: none
}

[data-name=svg-link] .svg-icon path {
    -webkit-transition: .5s;
    transition: .5s
}

[data-name=svg-link] .svg-icon .android__layer-2 {
    fill-opacity: .9
}

[data-name=svg-link] .svg-icon .android__layer-3 {
    fill-opacity: .8
}

[data-name=svg-link] .svg-icon .android__layer-4 {
    fill-opacity: .6
}

[data-name=svg-link]:hover .svg-icon.ios {
    color: #000
}

[data-name=svg-link]:hover .svg-icon .android__layer-1 {
    color: #4285f4
}

[data-name=svg-link]:hover .svg-icon .android__layer-2 {
    color: #34a853
}

[data-name=svg-link]:hover .svg-icon .android__layer-3 {
    color: #ea4335
}

[data-name=svg-link]:hover .svg-icon .android__layer-4 {
    color: #fbbc04
}

[data-name=svg-link]:hover .svg-icon .android__layer-2,[data-name=svg-link]:hover .svg-icon .android__layer-3,[data-name=svg-link]:hover .svg-icon .android__layer-4 {
    fill-opacity: 1
}

[data-name=svg-link]:hover .svg-icon.apk,[data-name=svg-link]:hover .svg-icon.web {
    color: #1a4dde
}

[data-name=svg-link]:hover .svg-icon.tg {
    color: #2aabee
}

[data-name=svg-link]:hover .svg-icon .xiaomi__layer-1 {
    color: #ff5c69
}

[data-name=svg-link]:hover .svg-icon .xiaomi__layer-4 {
    color: #8f61ff
}

[data-name=svg-link]:hover .svg-icon .xiaomi__arrow,[data-name=svg-link]:hover .svg-icon .xiaomi__layer-2 {
    color: #0cf
}

[data-name=svg-link]:hover .svg-icon .xiaomi__layer-3,[data-name=svg-link]:hover .svg-icon .xiaomi__line {
    color: #00e691
}

[data-name=svg-link]:hover .svg-icon.huawei {
    color: #fb6361
}

[data-name=svg-link]:hover .svg-icon.rustore {
    color: #07f
}

.pwa-banner {
    display: grid;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1001;
    -webkit-box-align: center;
    align-items: center;
    background-color: #eef2f9;
    gap: 12px;
    grid-template-columns: 24px 1fr auto;
    margin-right: 18.75rem;
    min-height: 72px;
    padding: 0 24px
}

.pwa-banner svg {
    display: block
}

.pwa-banner__close-icon {
    color: #8ea5c0;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.pwa-banner__close-icon:hover {
    opacity: 1
}

.pwa-banner__btn-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.pwa-banner__text-block {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
    grid-template-columns: 50px 1fr
}

.pwa-banner__text-title {
    color: #1e385b;
    font-size: 14px
}

.pwa-banner__sub-text {
    color: #96aec1;
    font-size: 12px
}

.pwa-banner .btn {
    font-size: 14px;
    font-weight: 600;
    padding: .7rem 1.25rem;
    text-transform: unset
}

.pwa-banner .pwa-app-icon__wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    background-color: #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0 0 20px 0 rgba(13,38,85,.1);
    box-shadow: 0 0 20px 0 rgba(13,38,85,.1);
    height: 50px;
    justify-content: center;
    width: 50px
}

.pwa-banner .pwa-app-icon__icon svg {
    width: 25px
}

@media screen and (max-width: 1279px) {
    .pwa-banner {
        margin-right:0
    }
}

@media screen and (max-width: 700px) {
    .pwa-banner {
        padding-left:12px;
        padding-right: 12px
    }
}

@media screen and (max-width: 360px) {
    .pwa-banner__text-title {
        line-height:16px
    }

    .pwa-banner .btn {
        padding-left: 10px;
        padding-right: 10px
    }
}

.header {
    background-color: #fff;
    left: 0;
    position: fixed;
    top: 0;
    -webkit-transition: .5s;
    transition: .5s;
    width: 100%;
    z-index: 1001
}

.header:not(.header_dark) {
    -webkit-box-shadow: 0 1.188rem 6.25rem rgba(13,38,85,.15);
    box-shadow: 0 1.188rem 6.25rem rgba(13,38,85,.15)
}

.header svg {
    display: block
}

.header .container {
    padding-bottom: 0;
    padding-top: 0
}

.header .content {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-bottom: 1.1rem;
    padding-top: 1.5rem;
    -webkit-transition: padding .5s;
    transition: padding .5s
}

.header .info {
    position: relative
}

.header .info__icon-wrap {
    height: 1.75rem;
    position: relative;
    width: 1.25rem
}

.header .info__icon {
    cursor: pointer;
    height: 1.75rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: .5s;
    transition: .5s;
    width: 1.25rem
}

.header .info__icon_1 {
    background: url(../images/icon-lightning-1.svg) no-repeat 50%;
    background-size: 1.25rem 1.75rem
}

.header .info__icon_2 {
    background: url(../images/icon-lightning-2.svg) no-repeat 50%;
    background-size: 1.25rem 1.75rem;
    opacity: 0
}

.header .info__text {
    background: #e9f2f9;
    border-radius: .75rem;
    color: #5b6675;
    font-size: 1rem;
    left: -14rem;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 3.5rem;
    -webkit-transition: opacity .5s linear,visibility 0s linear .5s,padding 0s linear .5s;
    transition: opacity .5s linear,visibility 0s linear .5s,padding 0s linear .5s;
    visibility: hidden;
    width: 26.6rem
}

.header .info__text:before {
    background-color: #e9f2f9;
    content: "";
    display: block;
    height: 1.25rem;
    left: 14rem;
    position: absolute;
    top: -.625rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 1.25rem
}

.header .info__text span {
    font-weight: 700
}

@media screen and (max-width: 1680px) {
    .header .info__text {
        left:-15rem
    }

    .header .info__text:before {
        left: 15rem
    }
}

@media screen and (max-width: 1450px) {
    .header .info__text {
        left:-16rem
    }

    .header .info__text:before {
        left: 16rem
    }
}

@media screen and (max-width: 1350px) {
    .header .info__text {
        left:-17rem
    }

    .header .info__text:before {
        left: 17rem
    }
}

@media screen and (max-width: 1000px) {
    .header .info__text {
        left:-14rem
    }

    .header .info__text:before {
        left: 14rem
    }
}

@media screen and (max-width: 768px) {
    .header .info__text {
        left:-3rem
    }

    .header .info__text:before {
        left: 3rem
    }
}

@media screen and (max-width: 700px) {
    .header .info__text {
        font-size:.875rem;
        left: -2.8rem;
        max-width: calc(100vw - 1.9rem)
    }

    .header .info__text:before {
        height: 1rem;
        left: 2.85rem;
        top: -.5rem;
        width: 1rem
    }
}

@media screen and (max-width: 380px) {
    .header .info__text {
        left:-2rem
    }

    .header .info__text:before {
        left: 2.1rem
    }
}

.header .info:hover .info__icon_2 {
    opacity: 1
}

.header .info:hover .info__text {
    opacity: 1;
    padding: 1.25rem 1.875rem;
    -webkit-transition: opacity .5s linear,visibility 0s linear 0s,padding 0s linear 0s;
    transition: opacity .5s linear,visibility 0s linear 0s,padding 0s linear 0s;
    visibility: visible
}

@media screen and (max-width: 700px) {
    .header .info:hover .info__text {
        padding:1rem
    }
}

.header__logo {
    margin-right: 15px
}

.header__logo svg {
    color: #1e385b
}

.header__logo .po-logo {
    height: 28px;
    max-width: 100px;
    width: 100px
}

.header__logo.shown-loader {
    position: relative
}

.header__logo.shown-loader .affiliate-loader {
    display: inline-block;
    height: 2rem;
    left: 0;
    margin-top: -1rem;
    position: absolute;
    top: 50%;
    width: 2rem
}

.header__logo.shown-loader .affiliate-loader svg {
    display: block;
    height: 2rem;
    width: 2rem
}

.header__logo.shown-loader .affiliate-logo-desktop,.header__logo.shown-loader .affiliate-logo-mob {
    opacity: 0
}

.header__menu {
    -webkit-box-flex: 1;
    flex: 1;
    padding-right: 200px
}

.header__menu ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: space-evenly;
    justify-content: space-evenly
}

.header__menu ul li a {
    color: #1e385b;
    display: inline-block;
    font-weight: 300;
    text-align: center;
    text-decoration: none
}

.header__menu ul li a:hover {
    color: #0099fb
}

.header__menu ul li:last-child {
    margin-right: 0
}

@media screen and (max-width: 1279px) {
    .header__menu {
        padding-right:0
    }
}

@media screen and (max-width: 1030px) {
    .header__menu {
        display:none
    }
}

.header__menu-btn {
    -webkit-box-flex: 0;
    cursor: pointer;
    flex: 0 0 25px;
    -webkit-transition: .5s;
    transition: .5s;
    width: 25px
}

.header__menu-btn span {
    background-color: #242e41;
    display: block;
    height: 2px;
    -webkit-transition: .5s;
    transition: .5s;
    width: 100%
}

.header__menu-btn span:nth-child(2),.header__menu-btn span:nth-child(3) {
    margin-top: 7px
}

.header__menu-btn.open {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    -webkit-transition: opacity .5s,-webkit-transform .2s linear .6s;
    transition: opacity .5s,-webkit-transform .2s linear .6s;
    transition: opacity .5s,transform .2s linear .6s;
    transition: opacity .5s,transform .2s linear .6s,-webkit-transform .2s linear .6s
}

.header__menu-btn.open span {
    -webkit-transition: .5s;
    transition: .5s
}

.header__menu-btn.open span:first-child {
    -webkit-animation: rotate-menu-top-line 1s forwards;
    animation: rotate-menu-top-line 1s forwards;
    background: #0099fa
}

.header__menu-btn.open span:nth-child(2) {
    background: hsla(0,0%,100%,0)
}

.header__menu-btn.open span:nth-child(3) {
    -webkit-animation: rotate-menu-bottom-line 1s forwards;
    animation: rotate-menu-bottom-line 1s forwards;
    background: #0099fa
}

@media screen and (max-width: 768px) {
    .header__menu-btn.open span:nth-child(3) {
        margin-top:7px
    }
}

.header__menu-btn.open:hover {
    opacity: .6
}

.header__right {
    display: -webkit-box;
    display: flex;
    position: absolute;
    right: 20.625rem;
    -webkit-box-align: center;
    align-items: center
}

@media screen and (max-width: 1680px) {
    .header__right {
        right:330px
    }
}

@media screen and (max-width: 1279px) {
    .header__right {
        margin:0 0 0 auto;
        position: unset
    }
}

.header__lang {
    margin-right: 3.25rem
}

.header__avatar {
    cursor: pointer;
    display: none;
    margin-right: 25px
}

@media screen and (max-width: 1279px) {
    .header__avatar {
        display:block
    }
}

.header__btns {
    margin-right: 1.6875rem
}

.header__btns .link {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    font-family: NunitoSans;
    font-size: 1.063rem;
    font-weight: 700;
    margin-left: 2rem;
    padding: 0
}

.header__btns .link svg {
    left: -2rem;
    margin-right: .5rem;
    max-width: 1.625rem;
    position: absolute
}

.header__btns .link .icon-sign-in {
    fill: #173257
}

.header .affiliate-logo-mob {
    display: none
}

.header .login__btn {
    -webkit-box-flex: 1;
    border-bottom: 5px solid rgba(27,36,52,.25);
    color: hsla(0,0%,100%,.25);
    cursor: pointer;
    flex: 1 1 50%;
    font-size: .875rem;
    font-weight: 700;
    padding: 2.5rem .5rem 2.25rem;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .5s;
    transition: all .5s
}

.header .login__btn.active,.header .login__btn:hover {
    border-bottom: 5px solid rgba(106,120,146,.5);
    color: #fff
}

.header .languages .language-icon {
    width: 20px
}

.header .languages__item {
    margin-bottom: 0
}

.header .languages__title .language-icon,.header .languages__title .languages__title-text {
    -webkit-transition: color .3s;
    transition: color .3s
}

.header .languages:not(.languages--opened) .languages__title:hover .language-icon,.header .languages:not(.languages--opened) .languages__title:hover .languages__title-text {
    color: #0099fb
}

.header .languages:not(.languages--opened) .language-icon,.header .languages:not(.languages--opened) .languages__title-text {
    color: #1e385b
}

.header .languages--opened .language-icon,.header .languages--opened .languages__title-text {
    color: #0099fb
}

.header_dark {
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(7,59,107,.6)),to(rgba(21,81,137,0)));
    background: linear-gradient(180deg,rgba(7,59,107,.6),rgba(21,81,137,0))
}

.header_dark .header__menu ul li a {
    color: #fff
}

.header_dark .header__menu ul li a:hover {
    color: #a5dcff
}

.header_dark .header__btns .link {
    color: #fff
}

.header_dark .header__btns .link .icon-sign-in {
    fill: #fff
}

.header_dark .header__btns .link:hover {
    color: #fff
}

.header_dark .header__menu-btn span {
    background-color: #fff
}

.header_dark .languages__title-text,.header_dark .logo svg {
    color: #fff
}

.header_dark .languages__title-text:after {
    background-image: url(../images/icon-drop-down-white.svg)
}

.header_dark .languages:not(.languages--opened) .languages__title:hover .language-icon,.header_dark .languages:not(.languages--opened) .languages__title:hover .languages__title-text {
    color: #a5dcff
}

.header_dark .languages:not(.languages--opened) .language-icon,.header_dark .languages:not(.languages--opened) .languages__title-text {
    color: #fff
}

.header_dark .languages--opened .language-icon,.header_dark .languages--opened .languages__title-text {
    color: #a5dcff
}

.header_dark .btn_transparent {
    color: #fff
}

.header_dark .btn_transparent:hover {
    color: #a5dcff
}

body.has-pwa-banner .header {
    top: 72px
}

@media screen and (max-width: 768px) {
    .header {
        display:none
    }
}

@-webkit-keyframes rotate-menu-top-line {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(9px);
        transform: translateY(9px)
    }

    to {
        -webkit-transform: rotate(-45deg) translateY(9px) translateX(-4px);
        transform: rotate(-45deg) translateY(9px) translateX(-4px)
    }
}

@keyframes rotate-menu-top-line {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(9px);
        transform: translateY(9px)
    }

    to {
        -webkit-transform: rotate(-45deg) translateY(9px) translateX(-4px);
        transform: rotate(-45deg) translateY(9px) translateX(-4px)
    }
}

@-webkit-keyframes rotate-menu-bottom-line {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-9px);
        transform: translateY(-9px)
    }

    to {
        -webkit-transform: rotate(45deg) translateY(-9px) translateX(-3px);
        transform: rotate(45deg) translateY(-9px) translateX(-3px)
    }
}

@keyframes rotate-menu-bottom-line {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-9px);
        transform: translateY(-9px)
    }

    to {
        -webkit-transform: rotate(45deg) translateY(-9px) translateX(-3px);
        transform: rotate(45deg) translateY(-9px) translateX(-3px)
    }
}

.logo {
    display: block
}

.logo .svg-icon {
    height: 31px;
    vertical-align: middle;
    width: 40px
}

.logo img {
    display: block;
    max-width: 100%
}

.header-mobile {
    display: none
}

.header-mobile__left {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 40%
}

.header-mobile__left .info {
    --offset: 20px;
    margin-left: var(--offset)
}

.header-mobile__center {
    text-align: center;
    width: 20%
}

.header-mobile__right {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: right;
    width: 40%
}

.header-mobile__right .user-avatar {
    margin-left: auto
}

.header-mobile__btn {
    padding: .4rem .85rem
}

.header-mobile .container {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    min-height: 80px;
    padding-left: 2.188rem;
    padding-right: 2.188rem
}

.header-mobile .header__logo {
    margin-right: 0
}

.header-mobile .header__logo img,.header-mobile .header__logo svg {
    display: block;
    margin: 0 auto
}

@media screen and (max-width: 700px) {
    .header-mobile .container {
        padding-left:.938rem;
        padding-right: .938rem
    }
}

@media screen and (max-width: 768px) {
    .header-mobile {
        display:block
    }
}

.layout_affiliate .link {
    border-bottom: 0 solid #0099fa
}

@media screen and (max-width: 768px) {
    .layout_affiliate .affiliate-logo-mob,.layout_affiliate .header {
        display:block
    }

    .layout_affiliate .affiliate-logo-desktop,.layout_affiliate .header-mobile,.layout_affiliate .header__lang {
        display: none
    }
}

.po-trade .header .info__text {
    left: -3.5rem
}

.po-trade .header .info__text:before {
    left: 3.5rem
}

@media screen and (max-width: 1680px) {
    .po-trade .header .info__text {
        left:-3.5rem
    }

    .po-trade .header .info__text:before {
        left: 3.5rem
    }
}

@media screen and (max-width: 1450px) {
    .po-trade .header .info__text {
        left:-4rem
    }

    .po-trade .header .info__text:before {
        left: 4rem
    }
}

@media screen and (max-width: 1350px) {
    .po-trade .header .info__text {
        left:-4rem
    }

    .po-trade .header .info__text:before {
        left: 4rem
    }
}

@media screen and (max-width: 1000px) {
    .po-trade .header .info__text {
        left:-4rem
    }

    .po-trade .header .info__text:before {
        left: 4rem
    }
}

@media screen and (max-width: 768px) {
    .po-trade .header .info__text {
        left:-3.1rem
    }

    .po-trade .header .info__text:before {
        left: 3rem
    }
}

@media screen and (max-width: 700px) {
    .po-trade .header .info__text {
        left:-2.8rem
    }

    .po-trade .header .info__text:before {
        left: 3rem
    }
}

@media screen and (max-width: 380px) {
    .po-trade .header .info__text {
        left:-2rem
    }

    .po-trade .header .info__text:before {
        left: 2.1rem
    }
}

.sidebar {
    background: transparent;
    bottom: 0;
    -webkit-box-shadow: 0 2rem 2rem rgba(7,59,107,.2);
    box-shadow: 0 2rem 2rem rgba(7,59,107,.2);
    color: #96aec1;
    overflow: hidden;
    padding-bottom: 7.5rem;
    position: fixed;
    right: 0;
    top: 0;
    width: 18.75rem;
    z-index: 1002
}

.sidebar__container {
    padding: 1.563rem 1.875rem 0
}

.sidebar__login button[type=submit]+.ajax-loader-v2,.sidebar__register button[type=submit]+.ajax-loader-v2 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.sidebar__login .message--form-errors,.sidebar__register .message--form-errors {
    margin-bottom: 25px
}

.sidebar .tabs {
    position: relative;
    z-index: 2
}

.sidebar .tabs__btn-container {
    background: #2f3d56;
    display: -webkit-box;
    display: flex
}

.sidebar .tabs__btn {
    -webkit-box-flex: 1;
    background: #061b38;
    border-top: 2px solid #173257;
    color: #96aec1;
    cursor: pointer;
    flex: 1 1 50%;
    font-size: 1rem;
    font-weight: 300;
    padding: 1.6rem .5rem 1.4rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .5s;
    transition: all .5s
}

.sidebar .tabs__btn.active,.sidebar .tabs__btn:hover {
    background: #102c52;
    border-top: 2px solid #0099fa;
    color: #0099fa
}

.sidebar .tabs__info {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    z-index: -2
}

.sidebar .tabs__info-container {
    position: relative
}

.sidebar .tabs__info.active {
    opacity: 1;
    position: relative;
    visibility: visible;
    z-index: 1
}

.sidebar__soc-title {
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-transform: uppercase
}

.sidebar__soc-login {
    margin-top: 2.2rem
}

.sidebar .login__subtitle {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px
}

.sidebar .login__subtitle_large-margin {
    margin-bottom: 1.3rem
}

.sidebar .login .register-social {
    display: -webkit-box;
    display: flex;
    position: relative
}

.sidebar .login .register-social .social-btn {
    display: block;
    position: relative;
    -webkit-box-flex: 1;
    border-radius: .75rem;
    color: #fff;
    flex: 1 1 50%;
    font-size: .875rem;
    font-weight: 700;
    padding: .45rem .5rem .4rem 1.7rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.sidebar .login .register-social .social-btn:after,.sidebar .login .register-social .social-btn:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 18px;
    left: .7rem;
    margin-top: -.531rem;
    position: absolute;
    top: 50%;
    width: 18px
}

.sidebar .login .register-social .social-btn:hover {
    opacity: .85
}

.sidebar .login .register-social .social-btn--fb {
    background-color: #0099fa;
    margin-right: .625rem
}

.sidebar .login .register-social .social-btn--fb:before {
    background-image: url(../images/fb-icon.svg)
}

.sidebar .login .register-social .social-btn--gp {
    background-color: #fff;
    color: #707070;
    padding-left: 1rem
}

.sidebar .login .register-social .social-btn--gp:before {
    background-image: url(../images/gb-icon.svg);
    left: .8rem
}

.sidebar .login .btn,.sidebar .login button {
    padding-left: .4rem;
    padding-right: .4rem;
    width: 100%
}

.sidebar .login .checkbox {
    margin-bottom: 1.75rem
}

.sidebar .login .checkbox label {
    font-size: .813rem
}

.sidebar .login .checkbox input {
    left: 2px;
    top: 8px
}

.sidebar .login .checkbox .checkmark {
    border: 2px solid #96aec1
}

.sidebar .login .checkbox .checkmark:after {
    border: solid #96aec1;
    border-width: 0 2px 2px 0
}

.sidebar .checkbox label,.sidebar .form-group label {
    color: #96aec1
}

.sidebar .form-group_filled label {
    color: #fff;
    pointer-events: none;
    z-index: 2
}

.sidebar input:-webkit-autofill,.sidebar input:-webkit-autofill:focus,.sidebar input:-webkit-autofill:hover,.sidebar select:-webkit-autofill,.sidebar select:-webkit-autofill:focus,.sidebar select:-webkit-autofill:hover,.sidebar textarea:-webkit-autofill,.sidebar textarea:-webkit-autofill:focus,.sidebar textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: #96aec1;
    -webkit-box-shadow: inset 0 0 0 1000px #102c52;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

.sidebar .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #96aec1;
    border-radius: 0;
    color: #96aec1;
    padding: .45rem 0
}

.sidebar .form-control::-webkit-input-placeholder {
    color: hsla(0,0%,100%,0)
}

.sidebar .form-control::-moz-placeholder {
    color: hsla(0,0%,100%,0)
}

.sidebar .form-control::placeholder {
    color: hsla(0,0%,100%,0)
}

.sidebar .form-control:-ms-input-placeholder {
    color: hsla(0,0%,100%,0)!important
}

.sidebar .form-control:focus+label,.sidebar .form-control_filled+label {
    color: #fff;
    -webkit-transform: translateY(-1rem) scale(.75);
    transform: translateY(-1rem) scale(.75)
}

.sidebar .password-container {
    position: relative
}

.sidebar .password-container__icon {
    cursor: pointer;
    height: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1rem;
    z-index: 9
}

.sidebar .password-container__icon:before {
    background: url(../images/icon-eye.svg) no-repeat 50%;
    background-size: 1rem;
    color: #96aec1;
    content: "";
    display: inline-block;
    font-size: 1rem;
    height: 1rem;
    margin-top: -.5rem;
    position: absolute;
    right: 0;
    text-rendering: auto;
    top: 50%;
    width: 1rem
}

.sidebar .rules a {
    border-bottom: 1px solid #96aec1;
    color: #96aec1;
    display: inline;
    padding-bottom: 0;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.sidebar .rules a:hover {
    border-bottom: 1px solid rgba(150,174,193,0);
    color: #96aec1
}

.sidebar .submit-btn-wrap {
    margin-bottom: .5rem
}

.sidebar__soc-links {
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(16,44,82,0)),to(#102c52));
    background: linear-gradient(180deg,rgba(16,44,82,0),#102c52);
    bottom: 0;
    left: 0;
    padding-bottom: 1.25rem;
    position: absolute;
    width: 100%
}

@media screen and (max-height: 760px) {
    .sidebar__soc-links {
        display:none
    }
}

.sidebar .g-recaptcha {
    margin-left: -27px;
    -webkit-transform: scale(.795);
    transform: scale(.795)
}

@media screen and (max-width: 1680px) {
    .sidebar .g-recaptcha {
        margin-left:-33px;
        -webkit-transform: scale(.745);
        transform: scale(.745)
    }
}

@media screen and (max-width: 1450px) {
    .sidebar .g-recaptcha {
        margin-left:-38px;
        -webkit-transform: scale(.696);
        transform: scale(.696)
    }
}

@media screen and (max-width: 1350px) {
    .sidebar .g-recaptcha {
        margin-left:-41px;
        -webkit-transform: scale(.645);
        transform: scale(.645)
    }
}

.sidebar .ajax-message.js-message {
    height: auto!important
}

.sidebar .form-error {
    color: #f44336
}

.sidebar .password-recovery {
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-left: 1.75rem
}

.sidebar .password-recovery a {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    position: relative;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.sidebar .password-recovery a:hover {
    border-bottom: 1px solid transparent;
    color: #fff
}

.sidebar .password-recovery a:before {
    background-image: url(../images/icon-refresh.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 1rem;
    left: -1.75rem;
    position: absolute;
    top: .2rem;
    width: 1rem
}

.sidebar .country-access-deny {
    text-align: center
}

.sidebar .country-access-deny__text {
    color: #fff
}

.sidebar .socials {
    --icon-size: 90%;
    --gap: 0;
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit,minmax(18px,1fr))
}

.sidebar .socials__icon {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none
}

.sidebar .socials__icon .svg-icon {
    color: #96aec1;
    display: block;
    height: auto;
    max-width: 22px;
    -webkit-transition: color .3s;
    transition: color .3s;
    width: var(--icon-size)
}

.sidebar .socials__icon:hover .svg-icon {
    color: #fff
}

@media screen and (max-width: 1680px) {
    .sidebar .socials {
        --icon-size:22px;
        --gap: 5px
    }
}

@media screen and (max-width: 768px) {
    .sidebar .socials {
        max-width:15.625rem
    }
}

@media screen and (max-width: 1279px) {
    .sidebar {
        display:none
    }
}

.sidebar-affiliate .form-group {
    margin-bottom: 1.75rem
}

.sidebar-affiliate .form-group label.error {
    color: #f44336!important;
    font-size: .75rem!important;
    left: 0;
    padding-left: 0;
    position: absolute;
    top: 2.3rem;
    -webkit-transform: unset;
    transform: unset
}

.sidebar-affiliate .recaptcha-block {
    margin-bottom: 1rem
}

.mwali-footer {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    gap: 24px;
    grid-template-columns: 27px 1fr;
    margin-top: 20px
}

.mwali-footer__text {
    font-size: 12px;
    line-height: 20px
}

.mwali-footer__link {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px
}

.sidebar-logged-in {
    background: #102c52;
    bottom: 0;
    -webkit-box-shadow: 0 2rem 2rem rgba(7,59,107,.2);
    box-shadow: 0 2rem 2rem rgba(7,59,107,.2);
    color: #96aec1;
    overflow-y: auto;
    padding: 24px 30px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: opacity .3s,visibility .3s,-webkit-transform .3s;
    transition: opacity .3s,visibility .3s,-webkit-transform .3s;
    transition: transform .3s,opacity .3s,visibility .3s;
    transition: transform .3s,opacity .3s,visibility .3s,-webkit-transform .3s;
    width: 18.75rem;
    z-index: 1002
}

.sidebar-logged-in svg {
    display: block
}

.sidebar-logged-in .close-btn {
    display: none;
    position: absolute;
    right: 12px;
    top: 12px
}

.sidebar-logged-in .user-data {
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    gap: 16px;
    grid-template-columns: 80px 1fr;
    margin-bottom: 24px
}

.sidebar-logged-in .user-data__fio {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px
}

.sidebar-logged-in .user-data__text {
    font-size: 12px
}

.sidebar-logged-in .user-balance {
    display: grid;
    grid-template-columns: 45px 1fr;
    height: 50px;
    margin-bottom: 24px
}

.sidebar-logged-in .user-balance__start {
    background-color: #345070;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px
}

.sidebar-logged-in .user-balance__end {
    background-color: #1d395d;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700
}

.sidebar-logged-in .user-balance.big-number-2 .user-balance__end {
    font-size: 17px
}

.sidebar-logged-in .user-balance__end,.sidebar-logged-in .user-balance__start {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.sidebar-logged-in .btn-wrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    margin-left: -6px;
    margin-right: -6px
}

.sidebar-logged-in .btn-wrap__item {
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding: 0 6px
}

.sidebar-logged-in .btn-wrap__item:not(:last-child) {
    margin-bottom: 12px
}

.sidebar-logged-in .btn-wrap .btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    font-size: 13px;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px
}

.sidebar-logged-in .smenu__link {
    display: grid;
    grid-template-columns: 40px 1fr;
    margin-bottom: 17px;
    text-decoration: none
}

.sidebar-logged-in .smenu__link:hover {
    color: #fff
}

.sidebar-logged-in .smenu__link:last-child {
    margin-bottom: 0
}

.sidebar-logged-in .smenu__text {
    font-size: 17px
}

.sidebar-logged-in .smenu__divider {
    background-color: #fff;
    height: 1px;
    margin-bottom: 17px;
    opacity: .1
}

.sidebar-logged-in .login__subtitle {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px
}

html[dir=rtl] .sidebar-logged-in .user-balance__start {
    border-radius: 0 10px 10px 0
}

html[dir=rtl] .sidebar-logged-in .user-balance__end {
    border-radius: 10px 0 0 10px
}

.sidebar-logged-in .socials {
    --icon-size: 90%;
    --gap: 0;
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit,minmax(18px,1fr))
}

.sidebar-logged-in .socials__icon {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none
}

.sidebar-logged-in .socials__icon .svg-icon {
    color: #96aec1;
    display: block;
    height: auto;
    max-width: 22px;
    -webkit-transition: color .3s;
    transition: color .3s;
    width: var(--icon-size)
}

.sidebar-logged-in .socials__icon:hover .svg-icon {
    color: #fff
}

@media screen and (max-width: 1680px) {
    .sidebar-logged-in .socials {
        --icon-size:22px;
        --gap: 5px
    }
}

@media screen and (max-width: 768px) {
    .sidebar-logged-in .socials {
        max-width:15.625rem
    }
}

@media screen and (max-width: 1279px) {
    .sidebar-logged-in {
        opacity:0;
        pointer-events: none;
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        visibility: hidden
    }

    .sidebar-logged-in .close-btn {
        display: block
    }

    .sidebar-logged-in .sidebar__soc-links {
        display: none
    }
}

@media screen and (max-width: 320px) {
    .sidebar-logged-in {
        width:100%
    }
}

.conditions {
    background: #eef2f9
}

@media screen and (max-width: 550px) {
    .conditions .container {
        padding-bottom:1.5rem
    }
}

.conditions__in {
    position: relative
}

.conditions__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    max-width: 50%
}

@media screen and (max-width: 1100px) {
    .conditions__list {
        max-width:66.6%
    }
}

@media screen and (max-width: 800px) {
    .conditions__list {
        margin:0 -.625rem;
        max-width: calc(100% + 1.25rem)
    }
}

.conditions__item {
    -webkit-box-flex: 1;
    flex: 1 1 50%;
    margin-bottom: 3rem
}

.conditions__item_nomargin {
    margin-bottom: 0
}

@media screen and (max-width: 1000px) {
    .conditions__item {
        margin-bottom:2.5rem
    }

    .conditions__item_nomargin {
        margin-bottom: 0
    }
}

@media screen and (max-width: 800px) {
    .conditions__item {
        padding:0 .625rem
    }
}

@media screen and (max-width: 550px) {
    .conditions__item {
        -webkit-box-flex:1;
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
        text-align: center
    }
}

.conditions__num {
    font-family: Montserrat;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 3.5rem;
    margin-bottom: 1rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg,#0099fa,#1a4dde);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0b75ec
}

.conditions__num i {
    font-style: normal;
    white-space: nowrap
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .conditions__num {
        background: transparent;
        color: #0b75ec
    }
}

@media screen and (max-width: 1000px) {
    .conditions__num {
        font-size:3rem;
        letter-spacing: .5px;
        line-height: 3rem;
        margin-bottom: .75rem
    }
}

@media screen and (max-width: 550px) {
    .conditions__num {
        font-size:2.3rem;
        line-height: 2.3rem;
        margin-bottom: .3rem
    }
}

.conditions__subtitle {
    color: rgba(23,50,87,.7);
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    max-width: 16rem
}

@media screen and (max-width: 1000px) {
    .conditions__subtitle {
        font-size:1.05rem;
        max-width: 13rem
    }
}

@media screen and (max-width: 550px) {
    .conditions__subtitle {
        font-size:1rem;
        margin: 0 auto;
        max-width: 16rem
    }
}

.conditions .monitor {
    bottom: -13rem;
    left: calc(50% + .625rem);
    opacity: 0;
    position: absolute;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: 1.5s;
    transition: 1.5s;
    width: 58.5rem
}

.conditions .monitor img,.conditions .monitor picture,.conditions .monitor source {
    width: 100%
}

.conditions .monitor.rotate {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

@media screen and (max-width: 1100px) {
    .conditions .monitor {
        left:calc(66.6% + .625rem);
        width: 54rem
    }
}

@media screen and (max-width: 1000px) {
    .conditions .monitor {
        bottom:-11rem;
        width: 45rem
    }
}

@media screen and (max-width: 800px) {
    .conditions .monitor {
        display:none
    }
}

.conditions__star {
    font-size: 3rem;
    left: -1rem;
    line-height: 3rem;
    position: relative;
    top: -.8rem;
    -webkit-text-fill-color: transparent;
    background: -webkit-gradient(linear,left top,left bottom,from(#0099f9),to(#0b75ec));
    background: linear-gradient(180deg,#0099f9,#0b75ec);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0b75ec
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .conditions__star {
        background: transparent;
        color: #0b75ec
    }
}

@media screen and (max-width: 1000px) {
    .conditions__star {
        font-size:2.8rem;
        line-height: 2.8rem
    }
}

@media screen and (max-width: 550px) {
    .conditions__star {
        font-size:2.3rem;
        left: -.7rem;
        line-height: 2.3rem;
        top: -.4rem
    }
}

.conditions h2 {
    max-width: 40rem
}

.how-it-works {
    position: relative
}

.why-we {
    background: #fff
}

.why-we__in .why-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    margin: 0 -.625rem
}

.why-we__in .why-list__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 4.2rem;
    max-width: 25%;
    padding: 0 .625rem;
    visibility: hidden
}

.why-we__in .why-list__item_start-trading {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%
}

@media screen and (max-width: 1100px) {
    .why-we__in .why-list__item,.why-we__in .why-list__item_start-trading {
        -webkit-animation:none!important;
        animation: none!important;
        visibility: visible
    }

    .why-we__in .why-list__item {
        -webkit-box-flex: 0;
        flex: 0 0 33.3%;
        margin-bottom: 2.5rem;
        max-width: 33.3%
    }
}

@media screen and (max-width: 800px) {
    .why-we__in .why-list__item {
        -webkit-box-flex:0;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media screen and (max-width: 550px) {
    .why-we__in .why-list__item {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center
    }
}

.why-we__in .why-list__title {
    color: #212121;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 1.7rem;
    margin: .3rem 0 .6rem;
    max-width: 17rem;
    text-transform: uppercase
}

@media screen and (max-width: 1100px) {
    .why-we__in .why-list__title {
        font-size:1.1rem;
        line-height: 1.5rem
    }
}

@media screen and (max-width: 550px) {
    .why-we__in .why-list__title {
        margin:.3rem auto;
        max-width: 19rem
    }
}

.why-we__in .why-list__sub-title {
    color: #515151;
    max-width: 17rem
}

.why-we__in .why-list__sub-title span {
    border-bottom: 1px solid #0a79e9;
    color: #0a79e9
}

@media screen and (max-width: 1100px) {
    .why-we__in .why-list__sub-title {
        font-size:.95rem
    }
}

@media screen and (max-width: 550px) {
    .why-we__in .why-list__sub-title {
        margin:0 auto;
        max-width: 19rem
    }
}

.why-we__in .why-list__link {
    display: block;
    position: relative;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.why-we__in .why-list__link img {
    width: 60px
}

.why-we__in .why-list__link:hover {
    opacity: .6;
    -webkit-transition: .5s;
    transition: .5s
}

.why-we__in .why-list__link--diverse-trading-instruments .why-list__title {
    max-width: 14.5rem
}

.why-we__in .start-trading {
    margin-top: .7rem
}

.why-we__in .start-trading__inn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

@media screen and (max-width: 550px) {
    .why-we__in .start-trading__inn {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.why-we__in .start-trading__text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .6px;
    margin-right: 2rem;
    text-transform: uppercase
}

@media screen and (max-width: 550px) {
    .why-we__in .start-trading__text {
        margin-bottom:1rem;
        margin-right: 0
    }
}

.iframe {
    background: #080f20
}

.iframe__title .title__text {
    font-size: 64px;
    line-height: 74px
}

.iframe__title b {
    color: #009af8
}

.iframe__inner {
    border: 18px solid #0d1425;
    padding: 50px;
    position: relative
}

.iframe__inner:after {
    border: 1px solid #8b93a6;
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.iframe .row:after {
    clear: both;
    content: "";
    display: table
}

.iframe .row .l {
    float: left;
    width: 55%
}

@media only screen and (max-width: 950px) {
    .iframe .row .l {
        float:none;
        margin-bottom: 40px;
        width: 100%
    }
}

.iframe .row .r {
    float: right;
    width: 40%
}

.iframe .row .r>p {
    font-family: NunitoSans;
    font-size: 21px;
    letter-spacing: 1px;
    line-height: 50px;
    margin-top: -12px;
    text-transform: uppercase
}

.iframe .row .r>.btn {
    margin-top: 27px
}

@media only screen and (max-width: 950px) {
    .iframe .row .r {
        float:none;
        text-align: center;
        width: 100%
    }
}

@media only screen and (max-width: 760px) {
    .iframe {
        display:none
    }
}

@media only screen and (max-width: 1250px) {
    .iframe .row {
        text-align:center
    }

    .iframe .row .l {
        margin-bottom: 50px
    }

    .iframe .row .l,.iframe .row .r {
        display: block;
        width: 100%
    }
}

.trading-tools__in {
    text-align: center
}

.trading-tools__in .trading-tools-list {
    font-size: 0;
    margin-bottom: 80px;
    margin-top: -2%;
    text-align: center
}

.trading-tools__in .trading-tools-list__img {
    display: inline-block
}

.trading-tools__in .trading-tools-list__img--aig {
    background: url(../images/aig.png) no-repeat 0 0;
    height: 54px;
    width: 109px
}

.trading-tools__in .trading-tools-list__img--alcoa {
    background: url(../images/alcoa.png) no-repeat 0 0;
    height: 69px;
    width: 92px
}

.trading-tools__in .trading-tools-list__img--apple {
    background: url(../images/apple.png) no-repeat 0 0;
    height: 60px;
    width: 49px
}

.trading-tools__in .trading-tools-list__img--boeing {
    background: url(../images/boeing.png) no-repeat 0 0;
    height: 40px;
    width: 180px
}

.trading-tools__in .trading-tools-list__img--caterpillar {
    background: url(../images/caterpillar.png) no-repeat 0 0;
    height: 31px;
    width: 198px
}

.trading-tools__in .trading-tools-list__img--disney {
    background: url(../images/disney.png) no-repeat 0 0;
    height: 76px;
    width: 128px
}

.trading-tools__in .trading-tools-list__img--gazprom {
    background: url(../images/gazprom.png) no-repeat 0 0;
    height: 74px;
    width: 140px
}

.trading-tools__in .trading-tools-list__img--google {
    background: url(../images/google.png) no-repeat 0 0;
    height: 55px;
    width: 169px
}

.trading-tools__in .trading-tools-list__img--ibm {
    background: url(../images/ibm.png) no-repeat 0 0;
    height: 54px;
    width: 135px
}

.trading-tools__in .trading-tools-list__img--severstal {
    background: url(../images/severstal.png) no-repeat 0 0;
    height: 50px;
    width: 150px
}

.trading-tools__in .trading-tools-list__item {
    display: inline-block;
    margin-left: 2%;
    margin-top: 2%;
    vertical-align: middle;
    visibility: hidden;
    width: 18%
}

@media only screen and (max-width: 950px) {
    .trading-tools__in .trading-tools-list__item {
        margin-top:20px;
        width: 23%
    }
}

@media only screen and (max-width: 950px)and (max-width:768px) {
    .trading-tools__in .trading-tools-list__item {
        width:31.3333%
    }
}

@media only screen and (max-width: 950px)and (max-width:640px) {
    .trading-tools__in .trading-tools-list__item {
        width:48%
    }
}

@media only screen and (max-width: 950px)and (max-width:550px) {
    .trading-tools__in .trading-tools-list__item {
        margin-left:0;
        width: 100%
    }

    .trading-tools__in .trading-tools-list {
        margin-left: 0
    }
}

.applications {
    background-color: #fff;
    padding-bottom: 1rem
}

.applications__in {
    position: relative
}

.applications__in h2 {
    margin-bottom: 5rem;
    max-width: 32rem
}

@media screen and (max-width: 1000px) {
    .applications__in h2 {
        margin-bottom:3rem
    }
}

@media screen and (max-width: 750px) {
    .applications__in h2 {
        margin-bottom:2rem
    }
}

.applications__in .devices {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4,1fr);
    max-width: calc(62% + 1.2rem)
}

.applications__in .devices__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column
}

.applications__in .devices__top {
    -webkit-box-flex: 1;
    background-color: #eef2f9;
    border-radius: .75rem;
    color: #1e385b;
    flex-grow: 1;
    margin-bottom: 1.2rem;
    padding: 2rem 0 1rem;
    text-align: center;
    -webkit-transition: .5s;
    transition: .5s;
    width: 100%
}

@media screen and (max-width: 1000px) {
    .applications__in .devices__top {
        padding:1.6rem 0 .6rem
    }
}

@media screen and (max-width: 700px) {
    .applications__in .devices__top {
        margin-bottom:1rem
    }
}

@media screen and (max-width: 550px) {
    .applications__in .devices__top {
        margin-bottom:0
    }
}

.applications__in .devices .svg-icon {
    height: 64px;
    margin: 0 auto 24px;
    width: 64px
}

@media screen and (max-width: 1000px) {
    .applications__in .devices .svg-icon {
        height:58px;
        width: 58px
    }
}

.applications__in .devices__btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.applications__in .devices__btn:hover .devices__link {
    color: #0099fa
}

.applications__in .devices__title {
    font-weight: 300;
    padding: 0 5px
}

@media screen and (max-width: 950px) {
    .applications__in .devices__title {
        font-size:85%
    }
}

@media screen and (max-width: 550px) {
    .applications__in .devices__title {
        font-size:100%
    }
}

.applications__in .devices__link {
    border-bottom: 1px solid #0099fa;
    color: #1e385b;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 550px) {
    .applications__in .devices__link {
        display:none
    }
}

@media screen and (max-width: 1000px) {
    .applications__in .devices {
        max-width:calc(66.6% + .65rem)
    }
}

@media screen and (max-width: 950px) {
    .applications__in .devices {
        gap:10px
    }
}

@media screen and (max-width: 850px) {
    .applications__in .devices {
        max-width:calc(100% + .65rem)
    }
}

@media screen and (max-width: 700px) {
    .applications__in .devices {
        font-size:.95rem
    }
}

@media screen and (max-width: 550px) {
    .applications__in .devices {
        gap:16px;
        grid-template-columns: repeat(2,1fr)
    }
}

@media screen and (max-width: 360px) {
    .applications__in .devices {
        gap:10px
    }
}

.applications .phone {
    opacity: 0;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: 1.5s;
    transition: 1.5s;
    visibility: hidden;
    width: 15.625rem
}

.applications .phone img,.applications .phone source {
    max-width: 100%
}

.applications .phone_iphone {
    right: 10rem;
    top: 5rem;
    z-index: 3
}

@media screen and (max-width: 1000px) {
    .applications .phone_iphone {
        right:2rem
    }
}

@media screen and (max-width: 850px) {
    .applications .phone_iphone {
        display:none
    }
}

.applications .phone_android {
    right: 0;
    top: 2rem;
    z-index: 2
}

@media screen and (max-width: 1000px) {
    .applications .phone_android {
        right:-4rem
    }
}

@media screen and (max-width: 850px) {
    .applications .phone_android {
        display:none
    }
}

.applications .phone.fadeInUpPhone {
    -webkit-animation: fade-in-up-phone 1s ease forwards;
    animation: fade-in-up-phone 1s ease forwards
}

@media screen and (max-width: 1000px) {
    .applications .phone {
        width:11.625rem
    }
}

@media screen and (max-width: 850px) {
    .applications .phone {
        display:none!important
    }
}

@media screen and (max-width: 700px) {
    .applications {
        padding-bottom:0
    }
}

@-webkit-keyframes fade-in-up-phone {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fade-in-up-phone {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.achievements {
    background: #091221 url(../images/a-img1.jpg) no-repeat 100% 0
}

.achievements__in .achievements-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.achievements__in .achievements-list .plane.main {
    display: none;
    left: 50%;
    margin-left: -50px
}

.achievements__in .achievements-list__item {
    background: rgba(0,0,0,.1);
    border: 1px solid transparent;
    border-radius: 6px;
    min-height: 371px;
    overflow: hidden;
    padding: 15px 20px 30px;
    position: relative;
    -webkit-transition: border-color .5s,-webkit-box-shadow .5s;
    transition: border-color .5s,-webkit-box-shadow .5s;
    transition: border-color .5s,box-shadow .5s;
    transition: border-color .5s,box-shadow .5s,-webkit-box-shadow .5s;
    width: 23%;
    will-change: border-color,box-shadow
}

.achievements__in .achievements-list__item:hover {
    border-color: #3175b0;
    -webkit-box-shadow: 0 0 10px 1px #3175b0;
    box-shadow: 0 0 10px 1px #3175b0
}

.achievements__in .achievements-list__item:hover .plane.main {
    display: block
}

.achievements__in .achievements-list__item:hover .achievements-list__icon {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.achievements__in .achievements-list__item:hover .achievements-list__anwrap {
    -webkit-transform: translate3d(-25%,0,0);
    transform: translate3d(-25%,0,0)
}

.achievements__in .achievements-list__item:hover .achievements-list__anwrap .achievements-list__text {
    opacity: 0;
    pointer-events: all;
    visibility: hidden
}

.achievements__in .achievements-list__item:hover .achievements-list__anwrap .achievements-list__btn {
    opacity: 1;
    pointer-events: all;
    visibility: visible
}

@media only screen and (max-width: 1310px) {
    .achievements__in .achievements-list__item {
        margin-top:15px;
        width: 48%
    }
}

@media only screen and (max-width: 670px) {
    .achievements__in .achievements-list__item {
        width:100%
    }
}

.achievements__in .achievements-list__anwrap {
    display: -webkit-box;
    display: flex;
    margin-left: -50%;
    margin-right: -50%;
    -webkit-transform: translate3d(25%,0,0);
    transform: translate3d(25%,0,0);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
    will-change: transform
}

.achievements__in .achievements-list__anwrap .achievements-list__btn,.achievements__in .achievements-list__anwrap .achievements-list__text {
    width: 50%
}

.achievements__in .achievements-list__icon {
    height: 240px;
    margin: 0 auto;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
    will-change: transform
}

.achievements__in .achievements-list__text {
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase
}

.achievements__in .achievements-list__btn {
    opacity: 0;
    pointer-events: none;
    text-align: center;
    visibility: hidden
}

.achievements__in .achievements-list--activity .plane.main {
    top: -70px
}

.achievements__in .achievements-list--activity .achievements-list__icon {
    background: url(../images/a-activity.png) no-repeat 0 0;
    width: 253px
}

.achievements__in .achievements-list--progress .plane.main {
    top: -85px
}

.achievements__in .achievements-list--progress .plane.main .circle {
    border-color: #f14b1b;
    -webkit-box-shadow: 0 0 60px #f14b1b,inset 0 0 60px #f14b1b;
    box-shadow: 0 0 60px #f14b1b,inset 0 0 60px #f14b1b
}

.achievements__in .achievements-list--progress .achievements-list__icon {
    background: url(../images/a-progress.png) no-repeat 0 40px;
    width: 168px
}

.achievements__in .achievements-list--advantages .plane.main {
    top: -70px
}

.achievements__in .achievements-list--advantages .plane.main .circle {
    border-color: #52f143;
    -webkit-box-shadow: 0 0 60px #52f143,inset 0 0 60px #52f143;
    box-shadow: 0 0 60px #52f143,inset 0 0 60px #52f143
}

.achievements__in .achievements-list--advantages .achievements-list__icon {
    background: url(../images/a-advantages.png) no-repeat 0 30px;
    width: 225px
}

.achievements__in .achievements-list--secret-gem .plane.main {
    margin-left: -62px;
    top: -90px
}

.achievements__in .achievements-list--secret-gem .plane.main .circle {
    border-color: #8e68de;
    -webkit-box-shadow: 0 0 60px #8e68de,inset 0 0 60px #8e68de;
    box-shadow: 0 0 60px #8e68de,inset 0 0 60px #8e68de
}

.achievements__in .achievements-list--secret-gem .achievements-list__icon {
    background: url(../images/a-secret-gem.png) no-repeat 0 30px;
    width: 191px
}

.achievements__in .achievements-list__btn,.achievements__in .achievements-list__text {
    -webkit-transition: opacity .3s,visibility .3s,-webkit-transform .3s;
    transition: opacity .3s,visibility .3s,-webkit-transform .3s;
    transition: transform .3s,opacity .3s,visibility .3s;
    transition: transform .3s,opacity .3s,visibility .3s,-webkit-transform .3s;
    will-change: transform,opacity,visibility
}

.achievements__in .achievements-list .plane {
    height: 120px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 120px
}

.achievements__in .achievements-list .plane.main {
    -webkit-animation: animated-circles-rotate 20s linear infinite;
    animation: animated-circles-rotate 20s linear infinite;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotateX(60deg) rotate(-30deg);
    transform: rotateX(60deg) rotate(-30deg)
}

.achievements__in .achievements-list .plane.main .circle {
    border: 1px solid #0f80c2;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 60px #0f80c2,inset 0 0 60px #0f80c2;
    box-shadow: 0 0 60px #0f80c2,inset 0 0 60px #0f80c2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 120px;
    position: absolute;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 120px
}

.achievements__in .achievements-list .plane.main .circle:first-child {
    -webkit-transform: rotate(72deg) rotateX(63.435deg);
    transform: rotate(72deg) rotateX(63.435deg)
}

.achievements__in .achievements-list .plane.main .circle:nth-child(2) {
    -webkit-transform: rotate(144deg) rotateX(63.435deg);
    transform: rotate(144deg) rotateX(63.435deg)
}

.achievements__in .achievements-list .plane.main .circle:nth-child(3) {
    -webkit-transform: rotate(216deg) rotateX(63.435deg);
    transform: rotate(216deg) rotateX(63.435deg)
}

.achievements__in .achievements-list .plane.main .circle:nth-child(4) {
    -webkit-transform: rotate(288deg) rotateX(63.435deg);
    transform: rotate(288deg) rotateX(63.435deg)
}

.achievements__in .achievements-list .plane.main .circle:nth-child(5) {
    -webkit-transform: rotate(1turn) rotateX(63.435deg);
    transform: rotate(1turn) rotateX(63.435deg)
}

@keyframes animated-circles-rotate {
    0% {
        -webkit-transform: rotateX(0) rotateY(0) rotate(0);
        transform: rotateX(0) rotateY(0) rotate(0)
    }

    to {
        -webkit-transform: rotateX(1turn) rotateY(1turn) rotate(1turn);
        transform: rotateX(1turn) rotateY(1turn) rotate(1turn)
    }
}

.footer {
    background-color: #063764;
    color: #96aec1;
    line-height: 1.25rem
}

.footer .container {
    padding: 2.25rem 1.875rem 4.375rem
}

@media screen and (max-width: 1000px) {
    .footer .container {
        padding:2.25rem 1.875rem 3.6rem
    }
}

@media screen and (max-width: 700px) {
    .footer .container {
        padding:2rem .938rem 3.6rem
    }
}

@media screen and (max-width: 600px) {
    .footer .container {
        padding:1.9rem .938rem 3rem
    }
}

.footer__info {
    font-size: .813rem;
    line-height: 1.5rem
}

.footer__info p {
    margin-bottom: .9rem
}

.footer__info p.no-margin {
    margin-bottom: 0
}

@media screen and (max-width: 500px) {
    .footer__info p {
        margin-bottom:.5rem
    }
}

.footer__info a {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.footer__info a:hover {
    border-bottom: 1px solid rgba(0,153,250,0);
    color: #fff
}

@media screen and (max-width: 600px) {
    .footer__info {
        line-height:1.3rem
    }
}

.footer-nav {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 2.75rem -1.563rem -.8rem
}

.footer-nav__item {
    padding: .8rem 1.563rem
}

@media screen and (max-width: 1000px) {
    .footer-nav__item {
        padding:.5rem 1rem
    }
}

@media screen and (max-width: 600px) {
    .footer-nav__item {
        padding:.3rem 1rem
    }
}

@media screen and (max-width: 450px) {
    .footer-nav__item {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

.footer-nav__link {
    border-bottom: 1px solid #0099fa;
    font-size: 1rem;
    padding-bottom: .1rem;
    text-decoration: none
}

.footer-nav__link,.footer-nav__link:hover {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s
}

.footer-nav__link:hover {
    border-bottom: 1px solid rgba(0,153,250,0)
}

@media screen and (max-width: 1000px) {
    .footer-nav__link {
        font-size:.9rem
    }
}

@media screen and (max-width: 600px) {
    .footer-nav__link {
        font-size:.813rem
    }
}

body.potrade-zone .footer-nav {
    margin-top: 0
}

@media screen and (max-width: 1000px) {
    .footer-nav {
        -webkit-box-pack:start;
        justify-content: flex-start;
        margin: 1.75rem -.8rem -.5rem
    }
}

@media screen and (max-width: 600px) {
    .footer-nav {
        margin:1.25rem -1rem -.3rem
    }
}

.footer .socket {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    font-size: .813rem;
    justify-content: space-between;
    line-height: 1.5rem;
    padding-top: 4.8rem
}

.footer .socket__copyright {
    text-align: right
}

.footer .socket__logo svg {
    max-width: 13.125rem
}

.footer .socket__logo .svg-icon {
    height: 47px;
    width: 60px
}

.footer .socket__logo .po-logo {
    max-width: 6.625rem
}

@media screen and (max-width: 900px) {
    .footer .socket__logo {
        margin-bottom:1rem
    }

    .footer .socket {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        padding-top: 3.5rem
    }
}

@media screen and (max-width: 600px) {
    .footer .socket {
        padding-top:3rem
    }
}

.footer .plus-21 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background: url(../images/icon-21.svg) no-repeat 100%;
    background-size: 2.5rem;
    line-height: 1.25rem;
    min-height: 40px;
    min-width: 40px;
    padding-right: 3.438rem;
    text-align: right
}

body.potrade-zone .footer .plus-21 {
    padding-right: 0
}

@media screen and (max-width: 1000px) {
    .footer .plus-21 {
        background-size:2rem;
        padding-right: 3rem
    }
}

@media screen and (max-width: 900px) {
    .footer .plus-21 {
        background-position:0;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left
    }
}

@media screen and (max-width: 600px) {
    .footer p {
        margin-bottom:.5rem;
        text-align: justify
    }
}

.footer_affiliate .footer-nav {
    margin-top: 1.75rem
}

@media screen and (max-width: 600px) {
    .footer_affiliate .footer-nav {
        margin-top:.65rem
    }
}

.footer_affiliate .container {
    padding: 1.25rem 1.875rem 3.375rem
}

@media screen and (max-width: 600px) {
    .footer_affiliate .container {
        padding:1.25rem .938rem 2rem
    }
}

.footer_affiliate .socket {
    padding-top: 2rem
}

@media screen and (max-width: 600px) {
    .footer_affiliate .socket {
        -webkit-box-align:center;
        align-items: center;
        padding-top: 1.3rem
    }
}

.footer_affiliate .plus-21 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-position: 0;
    min-height: 2.1rem;
    padding-left: 3.438rem;
    padding-right: 0
}

@media screen and (max-width: 1000px) {
    .footer_affiliate .plus-21 {
        padding-left:3rem
    }
}

@media screen and (max-width: 600px) {
    .footer_affiliate .plus-21 p {
        margin-bottom:0
    }

    .footer_affiliate .footer-nav__item {
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        text-align: center
    }
}

.mt100pm {
    background: #0f487c
}

.mt100pm .container {
    padding-top: 4.5rem
}

@media screen and (max-width: 1000px) {
    .mt100pm .container {
        padding-top:3.25rem
    }
}

@media screen and (max-width: 700px) {
    .mt100pm .container {
        padding-top:2.25rem
    }
}

.your-earnings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column
}

.your-earnings__container {
    background: transparent!important;
    padding: 0!important
}

.your-earnings__logo_potrade svg {
    width: 6.824rem!important
}

.your-earnings__logo svg {
    width: 9.563rem
}

.your-earnings__in {
    text-align: center
}

.your-earnings__in_top {
    background: linear-gradient(45deg,#023367,#001b38);
    border-radius: .75rem .75rem 0 0;
    padding: 1.875rem 1.875rem 3rem
}

@media screen and (max-width: 550px) {
    .your-earnings__in_top {
        padding:1.5rem 1rem 2rem
    }
}

.your-earnings__in_bottom {
    background: linear-gradient(45deg,#fff,#dbe6ef);
    border-radius: 0 0 .75rem .75rem;
    color: #1e385b;
    padding: 1.75rem 1.875rem 1.8rem
}

@media screen and (max-width: 550px) {
    .your-earnings__in_bottom {
        padding:1.5rem 1rem 2rem
    }
}

.your-earnings__in .rw {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    background-image: url(../images/modal-arrow.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 5.588rem 1.176rem;
    justify-content: center;
    margin: -1.25rem auto 0;
    max-width: 59.375rem
}

.your-earnings__in .rw>.l,.your-earnings__in .rw>.r {
    -webkit-box-flex: 1;
    flex: 1 1 50%;
    margin-top: 1.25rem
}

@media screen and (max-width: 500px) {
    .your-earnings__in .rw>.l,.your-earnings__in .rw>.r {
        -webkit-box-flex:1;
        flex: 1 1 100%
    }
}

.your-earnings__in .rw .kv>p {
    font-family: Montserrat;
    font-size: 2.941rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 3.5rem;
    margin-bottom: .6rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg,#0099fa,#1a4dde);
    -webkit-background-clip: text;
    background-clip: text;
    color: #0b75ec
}

@media screen and (max-width: 1000px) {
    .your-earnings__in .rw .kv>p {
        font-size:2.5rem;
        line-height: 2.5rem
    }
}

@media screen and (max-width: 650px) {
    .your-earnings__in .rw .kv>p {
        font-size:2rem;
        line-height: 2rem;
        margin-bottom: .2rem
    }
}

.your-earnings__in .rw .kv>span {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 1px;
    line-height: 1.25rem
}

@media screen and (max-width: 1000px) {
    .your-earnings__in .rw .kv>span {
        font-size:.9rem
    }
}

@media screen and (max-width: 650px) {
    .your-earnings__in .rw .kv>span {
        letter-spacing:.7px
    }
}

.your-earnings__in .rw .kv>i {
    color: #b7aaaa;
    font-size: .75rem;
    font-style: normal;
    line-height: .75rem;
    text-transform: lowercase
}

@media screen and (max-width: 700px) {
    .your-earnings__in .rw {
        background-size:3.5rem
    }
}

@media screen and (max-width: 600px) {
    .your-earnings__in .rw {
        background:unset
    }
}

.your-earnings__in .status {
    height: .75rem;
    margin-right: 7px;
    vertical-align: middle;
    width: .75rem
}

.your-earnings__in .divider {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .8px;
    line-height: 1.5rem;
    margin-bottom: .9rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .your-earnings__in .divider {
        font-size:1.15rem;
        line-height: 1.5rem
    }
}

@media screen and (max-width: 700px) {
    .your-earnings__in .divider {
        font-size:1.1rem;
        line-height: 1.5rem
    }
}

@media screen and (max-width: 550px) {
    .your-earnings__in .divider {
        font-size:1rem;
        line-height: 1.4rem
    }
}

.your-earnings__in .btn {
    margin-top: 1.6rem
}

.your-earnings__info-text {
    color: #96aec1;
    font-size: .765rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

.your-earnings .modal__cross {
    height: 1.875rem;
    right: .3rem;
    top: 1rem;
    width: 1.875rem
}

.your-earnings .modal__cross div {
    background-color: #96aec1;
    width: 1.875rem
}

.your-earnings .modal__cross div:first-child {
    margin-top: .6rem
}

@media screen and (max-width: 550px) {
    .your-earnings .modal__cross div:first-child {
        margin-top:0
    }
}

.your-earnings .modal__cross div:nth-child(2) {
    margin-top: -1.25rem
}

@media screen and (max-width: 550px) {
    .your-earnings .modal__cross {
        height:1.3rem;
        top: 1.7rem;
        width: 1.3rem
    }
}

.your-earnings__footer,.your-earnings__header {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0
}

.risk-disclosure {
    background: #063764;
    color: #96aec1
}

.risk-disclosure .container {
    padding: 5rem 1.875rem 1rem
}

@media screen and (max-width: 1000px) {
    .risk-disclosure .container {
        padding:3.4rem 1.875rem 0
    }
}

@media screen and (max-width: 700px) {
    .risk-disclosure .container {
        padding:2.4rem .938rem 0
    }
}

.risk-disclosure__in {
    font-size: .813rem;
    line-height: 1.5rem
}

@media screen and (max-width: 600px) {
    .risk-disclosure__in {
        line-height:1.3rem;
        text-align: justify
    }
}

.risk-disclosure__title {
    background: url(../images/icon-risk.svg) no-repeat 0;
    background-size: 1.813rem;
    font-size: .938rem;
    font-weight: 700;
    margin-bottom: .4rem;
    padding-left: 2.25rem;
    text-transform: uppercase
}

@media screen and (max-width: 600px) {
    .risk-disclosure__title {
        background-size:1.55rem;
        padding-left: 2.1rem
    }
}

.risk-disclosure__link-title {
    margin-top: 1.25rem
}

@media screen and (max-width: 600px) {
    .risk-disclosure__link-title {
        margin-top:1rem
    }
}

.risk-disclosure__link {
    font-size: .938rem;
    font-weight: 300
}

.risk-disclosure__brazil-block {
    margin-bottom: 2.5rem
}

.risk-disclosure__license {
    margin-top: 1rem
}

.risk-disclosure__license p {
    margin-top: .5rem
}

.check-your-luck h2 {
    margin-bottom: .7rem
}

@media screen and (max-width: 550px) {
    .check-your-luck .title-desc {
        font-size:.95rem
    }
}

.check-your-luck__in {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    background-color: #eef2f9;
    border-radius: .75rem;
    margin-top: -4rem;
    padding: 4.1rem 5.5rem 3.8rem 13rem
}

.check-your-luck__in:before {
    background: url(../images/gift.png) no-repeat 0 100%;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 18.313rem;
    left: 0;
    position: absolute;
    width: 15.688rem;
    z-index: 1
}

@media screen and (max-width: 750px) {
    .check-your-luck__in:before {
        height:14rem;
        width: 11.688rem
    }
}

.check-your-luck__in:after {
    background: -webkit-gradient(linear,left top,right top,from(rgba(238,242,249,0)),color-stop(50%,rgba(238,242,249,0)),to(#eef2f9));
    background: linear-gradient(90deg,rgba(238,242,249,0),rgba(238,242,249,0) 50%,#eef2f9);
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    width: 15.875rem;
    z-index: 2
}

@media screen and (max-width: 750px) {
    .check-your-luck__in:after {
        width:11.875rem
    }
}

@media screen and (max-width: 550px) {
    .check-your-luck__in:after {
        background:-webkit-gradient(linear,left top,right top,from(rgba(238,242,249,0)),to(#eef2f9));
        background: linear-gradient(90deg,rgba(238,242,249,0),#eef2f9)
    }
}

.check-your-luck__in .form-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

@media screen and (max-width: 550px) {
    .check-your-luck__in .form-wrap {
        flex-wrap:wrap
    }
}

.check-your-luck__in input {
    -webkit-box-flex: 1;
    background-color: #fff;
    border-bottom: 0;
    border-radius: .75rem;
    color: rgba(81,81,81,.4);
    flex: 1 1;
    font-family: NunitoSans;
    font-size: 1rem;
    font-weight: 300;
    margin-right: 1.25rem;
    padding: 1rem 1.5rem
}

.check-your-luck__in input::-webkit-input-placeholder {
    color: rgba(81,81,81,.4)
}

.check-your-luck__in input::-moz-placeholder {
    color: rgba(81,81,81,.4)
}

.check-your-luck__in input::placeholder {
    color: rgba(81,81,81,.4)
}

@media screen and (max-width: 550px) {
    .check-your-luck__in input {
        margin-bottom:.8rem;
        margin-right: 0;
        padding: .7rem 1rem
    }

    .check-your-luck__in button,.check-your-luck__in input {
        -webkit-box-flex: 0;
        flex: 0 0 100%
    }
}

.check-your-luck__in .alert {
    border-radius: .75rem;
    display: none
}

@media screen and (max-width: 1000px) {
    .check-your-luck__in {
        flex-wrap:wrap
    }
}

@media screen and (max-width: 750px) {
    .check-your-luck__in {
        padding:2.1rem 2.1rem 2.2rem 8rem
    }
}

@media screen and (max-width: 700px) {
    .check-your-luck__in {
        margin-top:-2rem
    }
}

@media screen and (max-width: 550px) {
    .check-your-luck__in {
        padding:1.5rem;
        text-align: center
    }
}

.check-your-luck__left {
    position: relative;
    z-index: 3;
    -webkit-box-flex: 0;
    flex: 0 0 44%;
    padding-right: 2.813rem
}

@media screen and (max-width: 1000px) {
    .check-your-luck__left {
        -webkit-box-flex:0;
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
        padding-right: 0
    }
}

.check-your-luck__right {
    position: relative;
    z-index: 3;
    -webkit-box-flex: 0;
    flex: 0 0 57.5%
}

@media screen and (max-width: 1000px) {
    .check-your-luck__right {
        -webkit-box-flex:0;
        flex: 0 0 100%
    }
}

.check-your-luck--ts {
    background-color: #0f487c;
    padding-bottom: 20px
}

.main-slider {
    background: -webkit-gradient(linear,left top,left bottom,from(#003b72),color-stop(50%,#00264a),to(#00264a));
    background: linear-gradient(180deg,#003b72,#00264a 50%,#00264a);
    color: #fff;
    overflow: hidden;
    padding-top: 0!important;
    position: relative
}

.main-slider:after {
    background: -webkit-gradient(linear,left top,right top,from(#021d46),color-stop(50%,rgba(2,29,70,0)),to(rgba(2,29,70,0)));
    background: linear-gradient(90deg,#021d46,rgba(2,29,70,0) 50%,rgba(2,29,70,0));
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.main-slider__container {
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 2
}

.main-slider__content {
    position: relative;
    z-index: 3
}

.main-slider__btn-container2 {
    display: -webkit-box;
    display: flex;
    margin-top: 15px
}

.main-slider__btn-container2 a {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    text-decoration: none;
    -webkit-transition: border-color .3s;
    transition: border-color .3s
}

.main-slider__btn-container2 a:hover {
    border-bottom: 1px solid rgba(0,153,250,0)
}

.main-slider__btn-container2 .dvdr {
    margin-left: 10px;
    margin-right: 10px
}

@media screen and (max-width: 768px) {
    .main-slider__btn-container2 .dvdr,.main-slider__btn-container2 a:first-child {
        display:none
    }
}

@media screen and (max-width: 550px) {
    .main-slider__btn-container2 {
        -webkit-box-pack:center!important;
        justify-content: center!important
    }
}

.main-slider .register-btn {
    padding-left: 90px;
    padding-right: 90px
}

.main-slider .bg {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2
}

.main-slider .bg__item {
    position: absolute;
    top: 50%
}

.main-slider .bg__item_note {
    left: 36.5%;
    margin-top: -44rem;
    max-width: 96.063rem
}

@media screen and (max-width: 1024px) {
    .main-slider .bg__item_note {
        margin-top:-300px
    }
}

@media screen and (max-width: 550px) {
    .main-slider .bg__item_note {
        margin-top:-100px
    }
}

.main-slider .bg__item_phone {
    left: -18.75rem;
    margin-top: -20.2rem;
    max-width: 31.75rem
}

@media screen and (max-width: 550px) {
    .main-slider .bg__item_phone {
        display:none
    }
}

.main-slider .bg__item_candles {
    left: 50%;
    margin-left: -77rem;
    margin-top: -38rem;
    max-width: 161rem
}

.main-slider .bg__item_gradient {
    background: -webkit-gradient(linear,left top,right top,from(#021d46),to(transparent));
    background: linear-gradient(90deg,#021d46,transparent);
    height: 100vh;
    left: -42.75rem;
    top: 0;
    width: 42.75rem
}

.main-slider__in {
    min-height: 100vh;
    padding-bottom: 8.125rem;
    padding-top: 15rem;
    position: relative
}

.has-islamic-account-banner.has-pwa-banner .main-slider__in {
    padding-top: 11rem
}

.has-islamic-account-banner:not(.has-pwa-banner) .main-slider__in {
    padding-top: 6rem
}

.main-slider__text-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    max-width: 45.5rem
}

@media screen and (max-width: 1279px)and (min-height:821px) {
    .main-slider__text-wrap {
        min-height:auto
    }
}

@media screen and (max-width: 1480px) {
    .main-slider__text-wrap {
        padding-bottom:13rem
    }
}

@media screen and (max-width: 1000px) {
    .main-slider__text-wrap {
        padding-bottom:8.125rem
    }
}

@media screen and (max-width: 700px) {
    .main-slider__text-wrap {
        min-height:auto
    }
}

@media screen and (max-width: 550px) {
    .main-slider__text-wrap {
        text-align:center
    }
}

.main-slider__title {
    font-family: Montserrat;
    font-size: 3.125rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 3.85rem;
    margin-bottom: 1.6rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .main-slider__title {
        font-size:2.5rem;
        line-height: 3.2rem
    }
}

@media screen and (max-width: 700px) {
    .main-slider__title {
        font-size:2.1rem;
        line-height: 2.9rem
    }
}

@media screen and (max-width: 550px) {
    .main-slider__title {
        font-size:1.6rem;
        letter-spacing: .1px;
        line-height: 2rem
    }
}

.main-slider__desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem
}

.main-slider__desc_bold {
    font-weight: 700
}

@media screen and (max-width: 1000px) {
    .main-slider__desc {
        font-size:1.1rem
    }
}

@media screen and (max-width: 550px) {
    .main-slider__desc {
        font-size:1rem;
        margin-bottom: 1.5rem
    }
}

.main-slider__scroll-down {
    bottom: 3.125rem;
    display: -webkit-box;
    display: flex;
    left: 0;
    position: absolute;
    -webkit-box-align: center;
    align-items: center;
    color: #96aec1;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    white-space: nowrap
}

.main-slider__scroll-down svg {
    margin-right: 1rem;
    width: 1.25rem
}

@media screen and (max-width: 550px) {
    .main-slider__scroll-down svg {
        margin-right:.8rem;
        width: 1rem
    }
}

.main-slider__scroll-down:hover {
    color: #fff
}

@media screen and (max-width: 550px) {
    .main-slider__scroll-down {
        position:unset;
        -webkit-box-pack: center;
        font-size: .9rem;
        justify-content: center;
        margin-top: 2rem
    }
}

.main-slider__rating {
    margin-top: 15px
}

[lang=ar] .main-slider__in,[lang=fa] .main-slider__in {
    margin: 0 auto
}

.offers {
    background-color: #0f487c;
    margin-top: -1.7rem;
    padding-bottom: 2.5rem
}

.offers .container {
    padding: 3.25rem 1.875rem 6.25rem
}

@media screen and (max-width: 700px) {
    .offers .container {
        padding:1.5rem .938rem 2rem
    }
}

@media screen and (max-width: 550px) {
    .offers .container {
        padding:1rem .938rem 2rem
    }
}

.offers__in {
    position: relative
}

.offers__in:after,.offers__in:before {
    background-color: #0f487c;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: .625rem;
    z-index: 9
}

.offers__in:before {
    left: -.625rem
}

.offers__in:after {
    right: -.625rem
}

.offers__list {
    display: grid;
    margin: 0 -.625rem
}

.offers__item {
    height: 100%;
    min-height: 20.625rem;
    padding: 3rem .625rem 0;
    text-decoration: none
}

.offers__item:hover .offers__btn {
    background: #0099fa
}

.offers__item:hover .offers__img-wrap:before {
    opacity: .8
}

.offers__item:hover .offers__img {
    margin-top: -.625rem
}

.offers__item:hover .offers__img_shine {
    opacity: 1
}

.offers__col {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    background-color: #04294b;
    border-radius: .75rem;
    height: 100%;
    padding: 0 2rem 6rem;
    text-align: center
}

@media screen and (max-width: 1000px) {
    .offers__col {
        padding:0 1rem 6rem
    }
}

.offers__img-wrap {
    height: 10.5rem;
    position: relative;
    top: -3rem;
    width: 100%
}

.offers__img-wrap:before {
    background-image: radial-gradient(#0a89ff 0,#04294b 70%,#04294b 100%);
    border-radius: 50%;
    content: "";
    display: block;
    height: 18rem;
    left: 50%;
    opacity: .4;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .5s;
    transition: .5s;
    width: 18rem;
    z-index: 1
}

@media screen and (max-width: 1000px) {
    .offers__img-wrap:before {
        max-width:100%
    }
}

.offers__img-wrap:after {
    background: #0f487c;
    content: "";
    display: block;
    height: 3rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2
}

.offers__img {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-30%);
    transform: translateX(-50%) translateY(-30%);
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 3
}

.offers__img_shine {
    opacity: 0
}

.offers__title {
    display: -webkit-box;
    display: flex;
    position: relative;
    z-index: 4;
    -webkit-box-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.8rem;
    max-width: 12rem;
    min-height: 5.5rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .offers__title {
        font-size:1.1rem;
        line-height: 1.65rem
    }
}

.offers__btn {
    bottom: 1.8rem;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4
}

.offers__corner {
    height: 3.75rem;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 3.75rem;
    z-index: 9
}

.offers__corner_1 {
    left: -1.9rem;
    top: 1.1rem
}

.offers__corner_2 {
    right: -1.875rem;
    top: 1.1rem
}

.offers__corner_3 {
    bottom: -1.85rem;
    left: -1.9rem
}

.offers__corner_4 {
    bottom: -1.85rem;
    right: -1.875rem
}

.offers .slider__arrows {
    display: -webkit-box;
    display: flex;
    position: absolute;
    right: 0;
    top: -.938rem;
    z-index: 10
}

.offers .slider__arrows .slider-arrow-stroke {
    stroke: #0099fa;
    -webkit-transition: .5s;
    transition: .5s
}

@media screen and (max-width: 700px) {
    .offers .slider__arrows {
        top:-.3rem
    }
}

.offers .arrow {
    display: -webkit-box!important;
    display: flex!important;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border: 2px solid transparent;
    border-radius: 50%;
    color: #0099fa;
    font-size: 2.2rem;
    height: 2.688rem;
    justify-content: center;
    line-height: 2.2rem;
    text-decoration: none;
    width: 2.688rem
}

.offers .arrow,.offers .arrow svg {
    -webkit-transition: .5s;
    transition: .5s
}

.offers .arrow svg {
    margin-right: -2px
}

.offers .arrow-left {
    margin-right: .3rem
}

.offers .arrow-left svg {
    margin-left: -2px;
    margin-right: 0
}

.offers .arrow:focus,.offers .arrow:hover {
    border: 2px solid #fff;
    color: #fff
}

.offers .arrow:focus .slider-arrow-stroke,.offers .arrow:hover .slider-arrow-stroke {
    stroke: #fff
}

.offers .arrow-disable {
    color: #6f798a;
    cursor: default
}

@media screen and (max-width: 1000px) {
    .offers {
        margin-top:0
    }
}

.modal {
    display: -webkit-box;
    display: flex;
    position: fixed;
    z-index: -9;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    visibility: hidden
}

.modal,.modal__bg {
    bottom: 0;
    left: 0;
    opacity: 0;
    right: 0;
    top: 0
}

.modal__bg {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background-color: rgba(0,17,37,.8);
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 1
}

.modal__container {
    background-color: #00162a;
    border-radius: .75rem;
    max-width: 100%;
    opacity: 0;
    padding: 1.875rem 1.875rem 2rem;
    position: relative;
    -webkit-transform: translateY(9.375rem);
    transform: translateY(9.375rem);
    -webkit-transition: .5s linear;
    transition: .5s linear;
    width: 60rem;
    z-index: 2
}

@media screen and (max-width: 1000px) {
    .modal__container {
        margin-left:auto;
        margin-right: auto;
        width: calc(100vw - 1.875rem)
    }
}

@media screen and (max-width: 800px) {
    .modal__container {
        padding:2.5rem 2rem
    }
}

@media screen and (max-width: 500px) {
    .modal__container {
        padding:2rem 1rem
    }
}

.modal__header {
    min-height: 3.5rem;
    padding-top: 1rem
}

.modal h2 {
    font-family: Montserrat;
    font-size: 2.353rem;
    font-weight: 600;
    letter-spacing: 2.1px;
    margin-bottom: 3rem
}

@media screen and (max-width: 1000px) {
    .modal h2 {
        font-size:2rem;
        line-height: 2.4rem
    }
}

@media screen and (max-width: 700px) {
    .modal h2 {
        font-size:1.7rem;
        line-height: 2rem
    }
}

@media screen and (max-width: 550px) {
    .modal h2 {
        font-size:1.3rem;
        line-height: 1.75rem;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 420px) {
    .modal h2 {
        font-size:1.1rem;
        line-height: 1.5rem;
        margin-bottom: 1.5rem
    }
}

.modal__cross {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    right: 2.1rem;
    top: 2rem;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    cursor: pointer;
    height: 1rem;
    justify-content: center;
    -webkit-transition: .5s ease-in;
    transition: .5s ease-in;
    width: 1rem
}

.modal__cross div {
    background-color: #3386bd;
    height: .125rem;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 18rem
}

.modal__cross div:first-child {
    margin-top: .25rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.modal__cross div:nth-child(2) {
    margin-top: -.75rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.modal__cross:hover {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (max-width: 800px) {
    .modal__cross {
        right:1.1rem;
        top: 1.5rem
    }
}

@media screen and (max-width: 550px) {
    .modal__cross {
        right:.7rem;
        top: .7rem
    }
}

@media screen and (max-width: 1000px) {
    .modal__wrap {
        overflow-y:auto
    }
}

.modal.open {
    opacity: 1;
    visibility: visible;
    z-index: 1004
}

.modal.open .modal__container {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.modal.open .modal__bg {
    opacity: 1
}

.modal__footer,.modal__header {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0
}

@font-face {
    font-display: swap;
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff;
    --swiper-navigation-size: 44px
}

.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0
}

.swiper,.swiper-wrapper {
    position: relative;
    z-index: 1
}

.swiper-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    width: 100%
}

@media screen and (min-width: 480px) {
    .swiper-wrapper {
        height:auto!important
    }
}

@media screen and (max-width: 479px) {
    .swiper-wrapper {
        -webkit-transition-property:all;
        transition-property: all
    }
}

.swiper-slide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%
}

.swiper-pagination-bullet {
    border-radius: 10px;
    cursor: pointer;
    height: 10px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    width: 10px
}

.swiper {
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    width: 100%
}

.swiper-wrapper {
    height: 100%;
    max-height: 100%
}

.ie-page,.swiper-wrapper {
    display: -webkit-box;
    display: flex
}

.ie-page {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    background: #f4f4f4;
    color: #3a4a68;
    justify-content: center;
    min-height: 100vh
}

.ie-page main {
    padding: 30px 0;
    text-align: center
}

.ie-page__container {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 30px
}

@media screen and (max-width: 890px) {
    .ie-page__container {
        padding:0 20px
    }
}

@media screen and (max-width: 360px) {
    .ie-page__container {
        padding:0 15px
    }
}

.ie-page__title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 58px
}

@media screen and (max-width: 890px) {
    .ie-page__title {
        font-size:26px;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 360px) {
    .ie-page__title {
        font-size:23px;
        margin-bottom: 25px
    }
}

.ie-page__text {
    color: #616b80;
    font-size: 18px;
    margin-bottom: 50px;
    text-align: justify
}

.ie-page__text p {
    margin-bottom: 20px
}

@media screen and (max-width: 360px) {
    .ie-page__text p {
        margin-bottom:15px
    }
}

@media screen and (max-width: 890px) {
    .ie-page__text {
        font-size:17px;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 360px) {
    .ie-page__text {
        font-size:15px
    }
}

.ie-page__logo-wrap {
    margin-bottom: 100px
}

@media screen and (max-width: 890px) {
    .ie-page__logo-wrap {
        margin-bottom:50px
    }
}

@media screen and (max-width: 360px) {
    .ie-page__logo-wrap {
        margin-bottom:40px
    }
}

.ie-page__logo {
    max-width: 244px
}

@media screen and (max-width: 890px) {
    .ie-page__logo {
        max-width:200px
    }
}

.ie-page__img-wrap {
    margin-bottom: 25px;
    margin-left: 12px
}

@media screen and (max-width: 890px) {
    .ie-page__img-wrap {
        margin-bottom:20px
    }
}

.ie-page__img {
    max-width: 141px
}

@media screen and (max-width: 890px) {
    .ie-page__img {
        max-width:108px
    }
}

@media screen and (max-width: 680px) {
    .ie-page__btns-wrap {
        margin:0 -4px;
        text-align: left
    }
}

.ie-page__btn {
    background-color: #fff;
    background-position: left 10px center;
    background-repeat: no-repeat;
    background-size: 26px;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    color: #6a6a6a;
    display: inline-block;
    font-size: 19px;
    font-weight: 500;
    margin: 0 8px 8px;
    padding: 10px 15px 10px 45px;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s
}

.ie-page__btn_mozilla {
    background-image: url(../images/Firefox-icon%402x.png)
}

.ie-page__btn_google {
    background-image: url(../images/Chrome-icon%402x.png)
}

.ie-page__btn_opera {
    background-image: url(../images/Opera-icon%402x.png)
}

.ie-page__btn_safari {
    background-image: url(../images/Safari-icon%402x.png);
    background-position: left 3px center;
    background-size: 38px 26px
}

.ie-page__btn:hover {
    border: 1px solid #0099fa;
    color: #6a6a6a
}

@media screen and (max-width: 890px) {
    .ie-page__btn {
        font-size:16px;
        padding: 6px 15px 6px 43px
    }
}

@media screen and (max-width: 680px) {
    .ie-page__btn {
        margin:0 4px 10px
    }
}

@media screen and (max-width: 360px) {
    .ie-page__btn {
        font-size:14px
    }
}

.pwa-page .swiper-button-prev svg {
    margin-left: -2px
}

.pwa-page .swiper-button-next svg {
    margin-left: 4px
}

.pwa-page .swiper-button-disabled {
    cursor: not-allowed;
    opacity: .5
}

.pwa-page {
    --bg-color: #00264a;
    --slider-width: 800px;
    background-color: var(--bg-color)
}

.pwa-page .page .top-section {
    background: var(--bg-color)
}

.pwa-page .page .top-section:after {
    display: none
}

.pwa-page .page .top-section__container {
    padding-bottom: 0
}

.pwa-page .container .bg {
    pointer-events: none;
    position: absolute;
    right: 18.75rem;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.pwa-page .devices-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 50px
}

.pwa-page .devices {
    display: grid;
    gap: 24px;
    grid-template-columns: 200px 200px;
    z-index: 1
}

.pwa-page .devices__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border: 1px solid #96aec1;
    border-radius: 10px;
    color: #96aec1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    min-height: 44px;
    -webkit-transition: background-color .3s,border-color .3s,color .3s;
    transition: background-color .3s,border-color .3s,color .3s
}

.pwa-page .devices__item svg {
    margin-right: 10px
}

.pwa-page .devices__item:hover:not(.devices__item--active) {
    border-color: #fff;
    color: #fff
}

.pwa-page .devices__item--active {
    background-color: #0099fa;
    border-color: #0099fa;
    color: #fff
}

.pwa-page .devices__item--active svg {
    color: #fff
}

html[dir=rtl] .pwa-page .devices__item svg {
    margin-left: 10px;
    margin-right: 0
}

.pwa-page .slider-bg {
    height: unset;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: -300px;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: var(--slider-width)
}

.pwa-page .slider-bg img {
    display: block;
    max-width: 100%
}

.pwa-page .tab-body {
    margin: 0 auto;
    position: relative;
    width: var(--slider-width)
}

.pwa-page .swiper-slide img,.pwa-page .swiper-slide source {
    display: block;
    margin: 0 auto;
    max-width: 100%
}

.pwa-page .swiper-pagination {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin: 30px 10px
}

.pwa-page .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0099fa;
    height: 4px;
    margin-top: 0
}

.pwa-page .swiper-pagination-bullet {
    -webkit-box-flex: 1;
    background-color: #d6e6f2;
    cursor: pointer;
    flex-grow: 1;
    height: 2px;
    width: 30px
}

.pwa-page .slider__bottom {
    margin-bottom: 5px;
    margin-top: 20px;
    text-align: center
}

.pwa-page .slider__title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    font-size: 24px;
    justify-content: center;
    margin-bottom: 12px;
    text-transform: uppercase
}

.pwa-page .slider__title svg {
    margin-right: 12px
}

html[dir=rtl] .pwa-page .slider__title svg {
    margin-left: 12px;
    margin-right: 0
}

.pwa-page .slider__text {
    font-size: 22px;
    line-height: 32px
}

.pwa-page .slider__text a {
    border-bottom: 1px solid #0099fa;
    color: #fff;
    text-decoration: none;
    -webkit-transition: border-color .3s;
    transition: border-color .3s
}

.pwa-page .slider__text a:hover {
    border-color: transparent
}

.pwa-page .slider-arrows {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.pwa-page .slider-arrows .slider-arrow-stroke {
    stroke: #0099fa;
    -webkit-transition: .5s;
    transition: .5s
}

.pwa-page .slider-arrow {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    border: 2px solid transparent;
    border-radius: 50%;
    color: #0099fa;
    font-size: 2.2rem;
    height: 2.688rem;
    justify-content: center;
    line-height: 2.2rem;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    width: 2.688rem
}

.pwa-page .slider-arrow:focus,.pwa-page .slider-arrow:hover {
    border: 2px solid #0099fa;
    color: #0099fa
}

.pwa-page .slider-arrow:focus .slider-arrow-stroke,.pwa-page .slider-arrow:hover .slider-arrow-stroke {
    stroke: #0099fa
}

.pwa-page .slider-arrow.arrow-left svg {
    margin-left: -2px
}

.pwa-page .slider-arrow.arrow-right svg {
    margin-left: 4px
}

.pwa-page .slider-actions {
    position: relative
}

.pwa-page.mobile {
    --slider-width: 430px
}

.pwa-page.mobile .slider-bg {
    top: -30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media screen and (max-width: 460px) {
    .pwa-page.mobile {
        --slider-width:100%
    }
}

html[dir=rtl] .pwa-page .slider-dots {
    -webkit-box-ordinal-group: 3;
    order: 2
}

html[dir=rtl] .pwa-page .slider-arrow.arrow-left {
    -webkit-box-ordinal-group: 2;
    order: 1
}

html[dir=rtl] .pwa-page .slider-arrow.arrow-left svg {
    margin-left: 2px
}

html[dir=rtl] .pwa-page .slider-arrow.arrow-right {
    -webkit-box-ordinal-group: 4;
    order: 3
}

html[dir=rtl] .pwa-page .slider-arrow.arrow-right svg {
    margin-left: -2px
}

html[dir=rtl] .pwa-page .slider-arrow.arrow-left svg,html[dir=rtl] .pwa-page .slider-arrow.arrow-right svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (max-width: 768px) {
    html[dir=rtl] .pwa-page .container .bg {
        overflow:hidden
    }

    html[dir=rtl] .pwa-page .container .bg img {
        width: 170%
    }
}

@media screen and (max-width: 1279px) {
    .pwa-page .container .bg {
        right:0
    }
}

@media screen and (max-width: 460px) {
    .pwa-page .devices {
        flex-basis:100%;
        gap: 12px;
        grid-template-columns: 1fr 1fr
    }
}

@media screen and (max-width: 360px) {
    .pwa-page .devices {
        grid-template-columns:1fr
    }
}

.check-your-luck-captcha-modal .form-group {
    margin: 0
}

.check-your-luck-captcha-modal .fancybox-close-small {
    display: none
}

.check-your-luck-captcha-modal .greg-captcha__wrap {
    margin-top: 0
}

.check-your-luck-captcha-modal .greg-captcha__btn:hover .greg-captcha__icon {
    fill: #96aec1!important
}

.check-your-luck-captcha-modal .greg-captcha .form-group {
    border: 1px solid #96aec1
}

.check-your-luck-captcha-modal .greg-captcha .form-group label {
    background-color: #fff;
    color: #96aec1!important;
    padding-left: 7px;
    padding-right: 7px
}

.check-your-luck-captcha-modal .g-recaptcha {
    display: block;
    margin: 0
}

.check-your-luck-captcha-modal .confirm-btn {
    border-radius: 0;
    margin-top: .5rem;
    width: 100%
}

.check-your-luck-captcha-modal .form-control {
    color: #96aec1!important;
    padding-left: 7px;
    padding-right: 7px
}

.hp-8-banner {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(8,22,40,.9);
    background-image: url(../images/bg.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid #7e61d5;
    border-radius: 20px;
    -webkit-box-shadow: 0 20px 60px 0 rgba(94,80,187,.35);
    box-shadow: 0 20px 60px 0 rgba(94,80,187,.35);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr minmax(300px,-webkit-min-content);
    grid-template-columns: 1fr minmax(300px,min-content);
    margin-bottom: 30px;
    overflow: hidden;
    padding: 46px 40px 46px 202px;
    position: relative;
    width: 100%
}

.hp-8-banner__particles {
    position: absolute;
    z-index: 5
}

.hp-8-banner__grid {
    background-image: linear-gradient(90deg,#7e61d5 1px,transparent 0),linear-gradient(180deg,#7e61d5 1px,transparent 0);
    background-position: 0 0;
    background-size: 50px 50px;
    display: none;
    height: 220px;
    left: 50%;
    -webkit-mask-image: radial-gradient(41.88% 50% at 50% 50%,#7e61d5 0,rgba(126,97,213,0) 100%);
    mask-image: radial-gradient(41.88% 50% at 50% 50%,#7e61d5 0,rgba(126,97,213,0) 100%);
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 550px;
    z-index: 6
}

.hp-8-banner__grid,.hp-8-banner__noise {
    background-repeat: repeat;
    pointer-events: none;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.hp-8-banner__noise {
    background-image: url(../images/noise.png);
    background-position: 50%;
    inset: 0;
    opacity: .2;
    z-index: 7
}

.hp-8-banner__img {
    left: 20px;
    max-width: 125px;
    pointer-events: none;
    position: absolute;
    top: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.hp-8-banner__other {
    display: -webkit-box;
    display: flex;
    position: relative;
    z-index: 5;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: end
}

.hp-8-banner__title {
    -webkit-background-clip: text;
    background-clip: text;
    background-image: -webkit-gradient(linear,left top,right top,from(#b9a2ff),to(#fff));
    background-image: linear-gradient(90deg,#b9a2ff,#fff);
    color: transparent;
    display: inline-block;
    font-family: Montserrat,sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 10px
}

.hp-8-banner__text {
    color: #b3ddff;
    font-size: 18px;
    font-weight: 300
}

.hp-8-banner__after-register {
    display: none
}

.hp-8-banner .hb-8-timer__in {
    width: 250px
}

.hp-8-banner .hb-8-timer__number {
    font-family: Montserrat,sans-serif;
    font-size: 24px;
    height: 37px;
    min-width: 24px
}

@media screen and (min-width: 1071px) {
    .hp-8-banner:before {
        background-color:#5e50bb;
        content: " ";
        -webkit-filter: blur(35px);
        filter: blur(35px);
        height: 238px;
        left: -36px;
        position: absolute;
        top: 74px;
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
        width: 154px
    }

    .hp-8-banner__particles {
        bottom: 0;
        left: 0;
        top: 0;
        width: 200px
    }
}

@media only screen and (max-width: 1070px) {
    .hp-8-banner {
        background:#081628;
        gap: 32px;
        grid-template-columns: 1fr;
        padding: 180px 28px 24px
    }

    .hp-8-banner:after,.hp-8-banner:before {
        content: " ";
        position: absolute;
        width: 100%
    }

    .hp-8-banner:before {
        background: linear-gradient(84deg,rgba(94,80,187,0) 12.45%,#5e50bb 120.85%),#0a172b;
        height: 200px;
        z-index: 2
    }

    .hp-8-banner:after {
        background: -webkit-gradient(linear,left top,left bottom,from(rgba(8,22,40,0)),to(#081628));
        background: linear-gradient(180deg,rgba(8,22,40,0),#081628);
        height: 104px;
        left: 0;
        top: 86px;
        z-index: 8
    }

    .hp-8-banner__particles {
        height: 230px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 300px
    }

    .hp-8-banner__grid {
        display: block
    }

    .hp-8-banner__img {
        left: 50%;
        max-width: 130px;
        top: 10px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 8
    }

    .hp-8-banner__info {
        position: relative;
        text-align: center;
        z-index: 10
    }

    .hp-8-banner__info:after {
        background: #081628;
        content: " ";
        height: 100px;
        left: -30px;
        position: absolute;
        right: -30px;
        top: 10px;
        z-index: 1
    }

    .hp-8-banner__other {
        -webkit-box-pack: center;
        justify-content: center
    }

    .hp-8-banner__other,.hp-8-banner__text,.hp-8-banner__title {
        position: relative;
        z-index: 10
    }
}

.hb-8.has-pwa-banner .main-slider__in {
    padding-top: 12rem
}

.hb-8 .main-slider__in {
    padding-top: 8rem
}

[lang=ar] .hp-8-banner,[lang=fa] .hp-8-banner {
    direction: rtl;
    padding: 46px 202px 46px 40px
}

[lang=ar] .hp-8-banner__img,[lang=fa] .hp-8-banner__img {
    left: auto;
    right: 20px
}

@media screen and (min-width: 1071px) {
    [lang=ar] .hp-8-banner:before,[lang=fa] .hp-8-banner:before {
        left:auto;
        right: -36px;
        -webkit-transform: scaleX(-1) rotate(-15deg);
        transform: scaleX(-1) rotate(-15deg)
    }
}

@media only screen and (max-width: 1070px) {
    [lang=ar] .hp-8-banner,[lang=fa] .hp-8-banner {
        padding:180px 28px 24px
    }

    [lang=ar] .hp-8-banner__img,[lang=fa] .hp-8-banner__img {
        left: 50%;
        right: auto
    }

    [lang=ar] .hp-8-banner__other,[lang=fa] .hp-8-banner__other {
        -webkit-box-pack: center;
        justify-content: center
    }
}

.hb-8-header-btn {
    background-color: #102c52;
    border: 1px solid #7e61d5;
    border-radius: 10px;
    display: block;
    height: 48px;
    overflow: hidden;
    position: relative;
    width: 48px
}

.hb-8-header-btn:after,.hb-8-header-btn:before {
    content: " ";
    pointer-events: none;
    position: absolute
}

.hb-8-header-btn:before {
    background-color: hsla(0,0%,100%,.1);
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.hb-8-header-btn:after {
    background-color: #7e61d5;
    border-radius: 36px;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    height: 32px;
    left: 10px;
    top: 38px;
    width: 36px;
    z-index: 1
}

.hb-8-header-btn__img {
    left: 10px;
    max-width: 28px;
    top: 8px;
    -webkit-transition: top .3s;
    transition: top .3s;
    z-index: 4
}

.hb-8-header-btn__grid {
    left: 50%;
    opacity: .3;
    top: -22px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2
}

.hb-8-header-btn:hover:before {
    opacity: 1
}

.hb-8-header-btn:hover .hb-8-header-btn__img {
    top: 4px
}

.hb-8-header-btn__grid,.hb-8-header-btn__img,.hb-8-header-btn__noise {
    pointer-events: none;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

body:not(.ar-lang):not(.fa-lang) .hb-8-header-btn {
    margin-left: 15px
}

.ar-lang .hb-8-header-btn,.fa-lang .hb-8-header-btn {
    margin-right: 15px
}

@media screen and (max-width: 360px) {
    .hb-8-header-btn {
        height:30px;
        width: 30px
    }

    .hb-8-header-btn:after {
        left: 0;
        top: 20px
    }

    .hb-8-header-btn__img {
        left: 6px;
        max-width: 18px;
        top: 4px
    }

    .hb-8-header-btn:hover .hb-8-header-btn__img {
        top: 2px
    }
}

.header_dark .hb-8-header-btn {
    display: none
}

.hp-8-btn {
    display: inline-grid;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 0 1px rgba(126,97,213,.4);
    box-shadow: 0 0 0 1px rgba(126,97,213,.4);
    color: #e8e1fd;
    gap: 10px;
    grid-auto-flow: column;
    justify-content: center;
    overflow: hidden;
    padding: 13px 40px;
    text-decoration: none;
    -webkit-transition: border-color .3s,background-color .3s,color .3s,-webkit-box-shadow .2s ease-in;
    transition: border-color .3s,background-color .3s,color .3s,-webkit-box-shadow .2s ease-in;
    transition: border-color .3s,background-color .3s,color .3s,box-shadow .2s ease-in;
    transition: border-color .3s,background-color .3s,color .3s,box-shadow .2s ease-in,-webkit-box-shadow .2s ease-in
}

.hp-8-btn:after,.hp-8-btn:before {
    border-radius: 10px;
    content: " ";
    inset: 0;
    position: absolute;
    -webkit-transition: border-radius .3s;
    transition: border-radius .3s
}

.hp-8-btn:before {
    background-image: repeating-radial-gradient(circle farthest-corner at center -50%,rgba(122,94,207,.8) 0,#20235a 60%,#122040 100%);
    z-index: -2
}

.hp-8-btn:after {
    background-color: #e8e1fd;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    will-change: opacity;
    z-index: -1
}

.hp-8-btn svg {
    display: block
}

.hp-8-btn__text {
    font-family: Montserrat,sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .48px;
    text-transform: uppercase
}

.hp-8-btn:hover {
    -webkit-box-shadow: 0 0 40px 0 rgba(176,156,234,.8);
    box-shadow: 0 0 40px 0 rgba(176,156,234,.8);
    color: #17348d
}

.hp-8-btn:hover:after {
    opacity: 1
}

.theme-dark-blue .hp-8-btn {
    -webkit-box-shadow: 0 0 0 1px rgba(126,97,213,.4);
    box-shadow: 0 0 0 1px rgba(126,97,213,.4)
}

.theme-dark-blue .hp-8-btn:before {
    background-image: repeating-radial-gradient(circle farthest-corner at center -50%,rgba(122,94,207,.8) 0,#20235a 60%,#122040 100%)
}

.theme-dark-blue .hp-8-btn:after {
    background-color: #e8e1fd
}

.theme-dark-blue .hp-8-btn:hover {
    -webkit-box-shadow: 0 0 40px 0 rgba(176,156,234,.8);
    box-shadow: 0 0 40px 0 rgba(176,156,234,.8);
    color: #17348d
}

.theme-light .hp-8-btn {
    -webkit-box-shadow: 0 0 0 1px rgba(96,22,127,.4);
    box-shadow: 0 0 0 1px rgba(96,22,127,.4)
}

.theme-light .hp-8-btn:before {
    background-color: #76209a;
    background-image: radial-gradient(ellipse 50% 50% at 50% .94%,rgba(218,130,255,.6) 0,rgba(218,130,255,0) 100%)
}

.theme-light .hp-8-btn:after {
    background-color: #da82ff
}

.theme-light .hp-8-btn:hover {
    -webkit-box-shadow: 0 0 40px 0 rgba(218,130,255,.8);
    box-shadow: 0 0 40px 0 rgba(218,130,255,.8);
    color: #fff
}

.hb-8-you-are-participant {
    display: inline-grid;
    -webkit-box-align: center;
    align-items: center;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(126,97,213,0)),to(rgba(9,23,42,.2))),rgba(126,97,213,.05);
    background: linear-gradient(180deg,rgba(126,97,213,0),rgba(9,23,42,.2)),rgba(126,97,213,.05);
    border: 1px solid #42336f;
    border-radius: 30px;
    gap: 12px;
    grid-template-columns: 32px 1fr
}

.hb-8-you-are-participant svg {
    color: #42336f;
    display: block
}

.hb-8-you-are-participant__text {
    color: #e8e1fd;
    font-family: Montserrat,sans-serif;
    font-size: 16px
}

html:not([lang=ar]):not([lang=fa]) .hb-8-you-are-participant {
    padding-right: 20px
}

[lang=ar] .hb-8-you-are-participant,[lang=fa] .hb-8-you-are-participant {
    direction: rtl;
    padding-left: 20px
}

.theme-light .hb-8-you-are-participant {
    background: rgba(96,22,127,.05);
    border-color: #a945d3
}

.theme-light .hb-8-you-are-participant svg {
    color: #a945d3
}

.theme-light .hb-8-you-are-participant__text {
    color: #314e70
}

.hb-8-timer {
    font-family: Montserrat,sans-serif
}

.hb-8-timer__title {
    color: #e8e1fd;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center
}

.ar-lang .hb-8-timer__title,.fa-lang .hb-8-timer__title {
    direction: rtl
}

.hb-8-timer__in {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4,1fr);
    margin: 0 auto
}

.ar-lang .hb-8-timer__in,.fa-lang .hb-8-timer__in {
    direction: ltr
}

.hb-8-timer__numbers {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2,1fr)
}

.hb-8-timer__number {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    background-color: #2c2e72;
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    height: 36px;
    justify-content: center;
    min-width: 24px;
    text-align: center
}

.hb-8-timer__label {
    color: #b3ddff;
    font-size: 10px;
    margin-top: 5px;
    text-align: center
}

.theme-light .hb-8-timer__number {
    background-color: #e8eff6;
    font-family: inherit;
    font-weight: 600
}

.theme-light .hb-8-timer__label,.theme-light .hb-8-timer__number,.theme-light .hb-8-timer__title {
    color: #314e70
}

.regulation-modal {
    background-image: url(../images/po-modal-bg.png);
    background-position: right -3.125rem bottom -6.813rem;
    background-size: 45.625rem
}

.regulation-modal .img-wrap img {
    max-width: 100%
}

@media screen and (max-width: 650px) {
    .regulation-modal .img-wrap {
        margin-bottom:1rem
    }
}

@media screen and (max-width: 840px) {
    .regulation-modal {
        background-size:33.625rem
    }
}

.certificate-modal {
    display: inline-block;
    max-height: 90vh;
    padding: 0;
    width: auto
}

.certificate-modal img {
    display: block;
    max-height: 65vh;
    max-width: 100%
}

.certificate-modal .po-modal__in {
    -webkit-box-pack: center;
    justify-content: center
}

.customers-fbo-modal .fbo-p {
    background: url(../images/header.jpg) no-repeat 0 0;
    line-height: 100px;
    margin-bottom: 16px;
    margin-left: -35px;
    margin-right: -35px;
    padding: 0 35px
}

.customers-fbo-modal .fbo-p:after {
    clear: both;
    content: "";
    display: table
}

.customers-fbo-modal .fbo-p .logo {
    float: left;
    margin-right: 16px
}

.customers-fbo-modal .fbo-p .logo img {
    display: block
}

.customers-fbo-modal .regards {
    color: #9b9b9b;
    font-size: 13px;
    line-height: 20px
}

.customers-fbo-modal .btn-wrap {
    margin-top: 20px;
    text-align: center
}
