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

.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
    }
}

.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
}

/*!
 * Cropper.js v1.6.2
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2024-04-21T07:43:02.731Z
 */
.cropper-container {
    -webkit-touch-callout: none;
    direction: ltr;
    font-size: 0;
    line-height: 0;
    position: relative;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.cropper-container img {
    backface-visibility: hidden;
    display: block;
    height: 100%;
    image-orientation: 0deg;
    max-height: none!important;
    max-width: none!important;
    min-height: 0!important;
    min-width: 0!important;
    width: 100%
}

.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.cropper-canvas,.cropper-wrap-box {
    overflow: hidden
}

.cropper-drag-box {
    background-color: #fff;
    opacity: 0
}

.cropper-modal {
    background-color: #000;
    opacity: .5
}

.cropper-view-box {
    display: block;
    height: 100%;
    outline: 1px solid #39f;
    outline-color: rgba(51,153,255,.75);
    overflow: hidden;
    width: 100%
}

.cropper-dashed {
    border: 0 dashed #eee;
    display: block;
    opacity: .5;
    position: absolute
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: 33.33333%;
    left: 0;
    top: 33.33333%;
    width: 100%
}

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: 33.33333%;
    top: 0;
    width: 33.33333%
}

.cropper-center {
    display: block;
    height: 0;
    left: 50%;
    opacity: .75;
    position: absolute;
    top: 50%;
    width: 0
}

.cropper-center:after,.cropper-center:before {
    background-color: #eee;
    content: " ";
    display: block;
    position: absolute
}

.cropper-center:before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px
}

.cropper-center:after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px
}

.cropper-face,.cropper-line,.cropper-point {
    display: block;
    height: 100%;
    opacity: .1;
    position: absolute;
    width: 100%
}

.cropper-face {
    background-color: #fff;
    left: 0;
    top: 0
}

.cropper-line {
    background-color: #39f
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px
}

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px
}

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px
}

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0
}

.cropper-point {
    background-color: #39f;
    height: 5px;
    opacity: .75;
    width: 5px
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%
}

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px
}

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%
}

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px
}

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px
}

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px
}

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px
}

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px
}

@media (min-width: 768px) {
    .cropper-point.point-se {
        height:15px;
        width: 15px
    }
}

@media (min-width: 992px) {
    .cropper-point.point-se {
        height:10px;
        width: 10px
    }
}

@media (min-width: 1200px) {
    .cropper-point.point-se {
        height:5px;
        opacity: .75;
        width: 5px
    }
}

.cropper-point.point-se:before {
    background-color: #39f;
    bottom: -50%;
    content: " ";
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%
}

.cropper-invisible {
    opacity: 0
}

.cropper-bg {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC)
}

.cropper-hide {
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.cropper-hidden {
    display: none!important
}

.cropper-move {
    cursor: move
}

.cropper-crop {
    cursor: crosshair
}

.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point {
    cursor: not-allowed
}

.vip-upgrade-container {
    align-items: center;
    background-image: url(/static/media/upgrade-agency.5cfdc32d28f0f9a2f8ff.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin-top: -40px;
    padding-top: 80px;
    width: 100%
}

.vip-upgrade-container .header-image {
    margin-bottom: 40px;
    text-align: center
}

.vip-upgrade-container .header-image img {
    display: inline-block;
    width: 241px
}

.vip-upgrade-container .content-upgrade-vip {
    opacity: .6!important
}

.vip-upgrade-container .content-box {
    border-radius: 16px;
    max-width: 450px;
    padding: 20px;
    width: 100%
}

.vip-upgrade-container .header {
    background: hsla(0,0%,100%,.1);
    border: 2px solid rgba(255,225,176,.6);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 15px
}

.vip-upgrade-container .header-content {
    align-items: center;
    background-color: hsla(0,0%,100%,.15);
    border-radius: 16px;
    display: flex;
    padding: 5px
}

.vip-upgrade-container .rank-icon {
    margin-left: 10px;
    width: 60px
}

.vip-upgrade-container .rank-info {
    line-height: 13px;
    margin-left: 10px
}

.vip-upgrade-container .rank-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700
}

.vip-upgrade-container .rank-level {
    color: hsla(0,0%,100%,.5);
    font-size: 12px
}

.vip-upgrade-container .content {
    border-left: 2px solid rgba(255,225,176,.6);
    border-right: 2px solid rgba(255,225,176,.6);
    padding: 15px
}

.vip-upgrade-container .upgrade-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.vip-upgrade-container .upgrade-label {
    color: hsla(0,0%,100%,.5)
}

.vip-upgrade-container .level-control {
    align-items: center;
    display: flex
}

.vip-upgrade-container .level-btn {
    background: hsla(0,0%,100%,.2);
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 33px;
    margin: 0 5px;
    text-align: center;
    width: 33px
}

.vip-upgrade-container .current-level {
    background: #fff;
    border-radius: 5px;
    color: #333;
    padding: 5px 18px
}

.vip-upgrade-container .f1-info,.vip-upgrade-container .upgrade-fee {
    color: hsla(0,0%,100%,.5);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.vip-upgrade-container .footer {
    background-color: hsla(0,0%,100%,.1);
    border: 2px solid rgba(255,225,176,.6);
    border-radius: 0 0 16px 16px;
    border-top: none;
    padding: 15px
}

.vip-upgrade-container .agreement {
    align-items: center;
    display: flex;
    margin-bottom: 15px
}

.vip-upgrade-container .agreement label {
    color: #fff;
    font-size: 12px;
    margin-left: 6px;
    margin-top: 6px
}

.vip-upgrade-container .agreement a {
    color: #ffe1b0;
    text-decoration: underline
}

.vip-upgrade-container .upgrade-btn {
    background: #ffe1b0;
    border: none;
    border-radius: 6px;
    color: #000;
    cursor: not-allowed;
    font-weight: 700;
    padding: 10px;
    width: 100%
}

.vip-upgrade-container .upgrade-btn:enabled {
    cursor: pointer;
    opacity: 1
}

.vip-upgrade-container .description {
    --tw-text-opacity: 1!important;
    color: rgba(255,225,176,var(--tw-text-opacity))!important;
    font-size: .875rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    max-width: 665px;
    opacity: .6!important;
    text-align: left
}

@media screen and (max-width: 576px) {
    .vip-upgrade-container .description {
        margin:0 10px
    }
}

@media(min-width: 1024px) {
    .vip-upgrade-container .vip-description {
        flex-basis:58.3333333333%!important
    }
}

.upgradeFeeTooltip .ant-tooltip-inner {
    color: #000;
    font-size: 10pt;
    padding: 10px
}

.announToast span {
    margin-left: 5px
}

.twofaContainer {
    max-width: 420px;
    width: 100%
}

.twofaContainer .form2fa img {
    height: 80px;
    margin-bottom: 20px
}

@media screen and (max-width: 576px) {
    .twofaContainer .form2fa img {
        height:60px;
        margin-bottom: 15px
    }
}

.twofaContainer .form2fa .title {
    color: #f0b90b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px
}

.twofaContainer .form2fa .content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.twofaContainer .form2fa .content .input2fa {
    position: relative
}

.twofaContainer .form2fa .content .input2fa .ant-input {
    color: #f5f5f5;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px
}

.twofaContainer .form2fa .content .input2fa .paste {
    color: #ffc400;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-10px,-50%)
}

.twofaContainer .form2fa .content .btn2fa {
    height: 45px;
    margin-top: 6px
}

.login-drawer-container .main-login {
    margin-top: 0;
    padding: 0
}

.login-drawer-container .drawer-header {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.login-drawer-container .drawer-header .logo img {
    height: auto;
    width: 130px
}

.login-drawer-container .drawer-header .close-btn {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-top: -24px;
    position: relative;
    transition: background-color .3s ease;
    width: 44px
}

.login-drawer-container .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 38px
}

.login-drawer-container .drawer-header .close-btn svg {
    height: 24px;
    width: 24px
}

.login-drawer-container .drawer-footer {
    background-color: transparent;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    text-align: left
}

.login-drawer-container .drawer-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0
}

.login-drawer-container .drawer-footer a {
    color: #f0b90b;
    text-decoration: none
}

.login-drawer-container .drawer-footer a:hover {
    text-decoration: underline
}

@media(max-width: 768px) {
    .login-drawer-container .drawer-footer p {
        font-size:12px;
        margin: 6px 0
    }
}

.signup-drawer-container .main-signup {
    margin-top: 0;
    padding: 0
}

.signup-drawer-container .drawer-header {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.signup-drawer-container .drawer-header .logo img {
    height: auto;
    margin-top: 0!important;
    width: 130px
}

.signup-drawer-container .drawer-header .close-btn {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-top: -24px;
    position: relative;
    transition: background-color .3s ease;
    width: 44px
}

.signup-drawer-container .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 38px!important
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .signup-drawer-container .title {
        margin-bottom:30px!important
    }
}

.signup-drawer-container .drawer-header .close-btn svg {
    height: 24px;
    width: 24px
}

.signup-drawer-container .homeDrawer {
    height: 84dvh!important
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .signup-drawer-container .homeDrawer {
        height:80dvh!important
    }
}

.signup-drawer-container .drawer-footer {
    background-color: transparent;
    bottom: 15px;
    display: flex;
    left: 0;
    right: 0;
    text-align: left
}

.signup-drawer-container .drawer-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0
}

.signup-drawer-container .drawer-footer a {
    color: #f0b90b;
    text-decoration: none
}

.signup-drawer-container .drawer-footer a:hover {
    text-decoration: underline
}

@media(max-width: 768px) {
    .signup-drawer-container .drawer-footer p {
        font-size:12px;
        margin: 6px 0
    }
}

.signup-drawer-container .error {
    font-size: 9pt;
    font-style: italic
}

.signup-drawer-container .count-field {
    color: #f0b90b;
    font-size: 9pt;
    text-align: right
}

.signup-drawer-container .field {
    margin-bottom: 24px
}

.resend-signup-drawer-container .main-signup {
    margin-top: 0;
    padding: 0
}

.resend-signup-drawer-container .drawer-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45%
}

.resend-signup-drawer-container .drawer-header .logo img {
    height: auto;
    margin-top: 0!important;
    width: 130px
}

.resend-signup-drawer-container .drawer-header .close-btn {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-top: -24px;
    position: relative;
    transition: background-color .3s ease;
    width: 44px
}

.resend-signup-drawer-container .title {
    color: #fff!important;
    font-size: 1.5rem;
    font-weight: 600!important;
    margin-bottom: 38px!important
}

.resend-signup-drawer-container .desc {
    margin-bottom: 38px!important
}

.resend-signup-drawer-container .drawer-header .close-btn svg {
    height: 24px;
    width: 24px
}

.resend-signup-drawer-container .drawer-footer {
    background-color: transparent;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    text-align: center
}

.resend-signup-drawer-container .drawer-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0
}

.resend-signup-drawer-container .drawer-footer a {
    color: #f0b90b;
    text-decoration: none
}

.resend-signup-drawer-container .drawer-footer a:hover {
    text-decoration: underline
}

@media(max-width: 768px) {
    .resend-signup-drawer-container .drawer-footer p {
        font-size:12px;
        margin: 6px 0
    }
}

.resend-signup-drawer-container .error {
    font-size: 9pt;
    font-style: italic
}

.resend-signup-drawer-container .count-field {
    color: #f0b90b;
    font-size: 9pt;
    text-align: right
}

.resend-signup-drawer-container .field {
    margin-bottom: 24px
}

.verify-drawer-container .main-verify {
    margin-top: 0;
    padding: 0
}

.verify-drawer-container .drawer-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50%
}

.verify-drawer-container .drawer-header .logo img {
    height: auto;
    margin-top: 0!important;
    width: 130px
}

.verify-drawer-container .drawer-header .close-btn {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    position: relative;
    transition: background-color .3s ease;
    width: 44px
}

.verify-drawer-container .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 38px
}

.verify-drawer-container .drawer-header .close-btn svg {
    height: 24px;
    width: 24px
}

.verify-drawer-container .drawer-footer {
    background-color: transparent;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    text-align: left
}

.verify-drawer-container .drawer-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0
}

.verify-drawer-container .drawer-footer a {
    color: #f0b90b;
    text-decoration: none
}

.verify-drawer-container .drawer-footer a:hover {
    text-decoration: underline
}

@media(max-width: 768px) {
    .verify-drawer-container .drawer-footer p {
        font-size:12px;
        margin: 6px 0
    }
}

.verify-drawer-container .error {
    font-size: 9pt;
    font-style: italic
}

.verify-drawer-container .count-field {
    color: #f0b90b;
    font-size: 9pt;
    text-align: right
}

.verify-drawer-container .field {
    margin-bottom: 24px
}

.verify-drawer-container .btn-disable,.verify-drawer-container .btn-disable:hover {
    background: #828282!important
}

.verify-token-drawer-container .main-verify {
    margin-top: 0;
    padding: 0
}

.verify-token-drawer-container .drawer-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50%
}

.verify-token-drawer-container .drawer-header .logo img {
    height: auto;
    margin-top: 0!important;
    width: 130px
}

.verify-token-drawer-container .drawer-header .close-btn {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    position: relative;
    transition: background-color .3s ease;
    width: 44px
}

.verify-token-drawer-container .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 38px
}

.verify-token-drawer-container .drawer-header .close-btn svg {
    height: 24px;
    width: 24px
}

.verify-token-drawer-container .drawer-footer {
    background-color: transparent;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    text-align: left
}

.verify-token-drawer-container .drawer-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0
}

.verify-token-drawer-container .drawer-footer a {
    color: #f0b90b;
    text-decoration: none
}

.verify-token-drawer-container .drawer-footer a:hover {
    text-decoration: underline
}

@media(max-width: 768px) {
    .verify-token-drawer-container .drawer-footer p {
        font-size:12px;
        margin: 6px 0
    }
}

.verify-token-drawer-container .error {
    font-size: 9pt;
    font-style: italic
}

.verify-token-drawer-container .count-field {
    color: #f0b90b;
    font-size: 9pt;
    text-align: right
}

.verify-token-drawer-container .field {
    margin-bottom: 24px
}

.verify-token-drawer-container .btn-disable,.verify-token-drawer-container .btn-disable:hover {
    background: #828282!important
}

.verify-token-drawer-container .close-icon {
    align-items: center;
    border: 3px solid #de2349;
    border-radius: 50%;
    display: inline-flex;
    height: 86px;
    justify-content: center;
    position: relative;
    width: 86px
}

.verify-token-drawer-container .close-line {
    background: #de2349;
    height: 3px;
    position: absolute;
    transition: .3s ease-in-out;
    width: 26px
}

.verify-token-drawer-container .close-line:first-child {
    transform: rotate(45deg)
}

.verify-token-drawer-container .close-line:last-child {
    transform: rotate(-45deg)
}

.verify-token-drawer-container .check-container {
    align-items: center;
    background-color: transparent;
    border: 3px solid #4caf50;
    border-radius: 50%;
    display: flex;
    height: 86px;
    justify-content: center;
    position: relative;
    width: 86px
}

.verify-token-drawer-container .check-mark {
    border-bottom: 3px solid #4caf50;
    border-left: 3px solid #4caf50;
    height: 15px;
    position: absolute;
    transform: rotate(-45deg);
    width: 30px
}

.verify-token-drawer-container .active-message {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px
}

.verify-token-drawer-container .verify-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

.verify-token-pass-drawer-container .main-verify {
    margin-top: 0;
    padding: 0
}

.verify-token-pass-drawer-container .drawer-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30%
}

.verify-token-pass-drawer-container .drawer-header .logo img {
    height: auto;
    margin-top: 0!important;
    width: 130px
}

.verify-token-pass-drawer-container .drawer-header .close-btn {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    position: relative;
    transition: background-color .3s ease;
    width: 44px
}

.verify-token-pass-drawer-container .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 38px
}

.verify-token-pass-drawer-container .drawer-header .close-btn svg {
    height: 24px;
    width: 24px
}

.verify-token-pass-drawer-container .drawer-footer {
    background-color: transparent;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    text-align: left
}

.verify-token-pass-drawer-container .drawer-footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0
}

.verify-token-pass-drawer-container .drawer-footer a {
    color: #f0b90b;
    text-decoration: none
}

.verify-token-pass-drawer-container .drawer-footer a:hover {
    text-decoration: underline
}

@media(max-width: 768px) {
    .verify-token-pass-drawer-container .drawer-footer p {
        font-size:12px;
        margin: 6px 0
    }
}

.verify-token-pass-drawer-container .error {
    font-size: 9pt;
    font-style: italic
}

.verify-token-pass-drawer-container .count-field {
    color: #f0b90b;
    font-size: 9pt;
    text-align: right
}

.verify-token-pass-drawer-container .field {
    margin-bottom: 24px
}

.verify-token-pass-drawer-container .btn-disable,.verify-token-pass-drawer-container .btn-disable:hover {
    background: #828282!important
}

.verify-token-pass-drawer-container .close-icon {
    align-items: center;
    border: 3px solid #de2349;
    border-radius: 50%;
    display: inline-flex;
    height: 86px;
    justify-content: center;
    position: relative;
    width: 86px
}

.verify-token-pass-drawer-container .close-line {
    background: #de2349;
    height: 3px;
    position: absolute;
    transition: .3s ease-in-out;
    width: 26px
}

.verify-token-pass-drawer-container .close-line:first-child {
    transform: rotate(45deg)
}

.verify-token-pass-drawer-container .close-line:last-child {
    transform: rotate(-45deg)
}

.verify-token-pass-drawer-container .check-container {
    align-items: center;
    background-color: transparent;
    border: 3px solid #4caf50;
    border-radius: 50%;
    display: flex;
    height: 86px;
    justify-content: center;
    position: relative;
    width: 86px
}

.verify-token-pass-drawer-container .check-mark {
    border-bottom: 3px solid #4caf50;
    border-left: 3px solid #4caf50;
    height: 15px;
    position: absolute;
    transform: rotate(-45deg);
    width: 30px
}

.verify-token-pass-drawer-container .active-message {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px
}

.verify-token-pass-drawer-container .verify-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

header.header {
    height: 64px;
    padding: 0 16px;
    width: 100%
}

header.header .content {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 64px;
    justify-content: space-between;
    width: 100%
}

header.header .content .logo img {
    display: none;
    height: 40px;
    width: 72px
}

header.header .content .right-area {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

header.header .content .right-area .theme-zone {
    margin-right: 10px
}

header.header .content .right-area i.fa-house {
    color: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    margin-left: 20px;
    transition: all .15s ease
}

header.header .content .right-area i.fa-house:hover {
    color: #f0b90b
}

.main-login {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: -100px;
    padding: 36px
}

@media screen and (max-height: 700px) {
    .main-login {
        margin-top:-50px
    }
}

.main-login .center-area {
    width: 420px
}

.main-login .center-area img {
    height: 60px;
    margin-bottom: 20px
}

@media screen and (max-width: 576px) {
    .main-login .center-area img {
        height:60px;
        margin-bottom: 15px
    }
}

.main-login .center-area .title {
    color: #f0b90b;
    font-size: 24px;
    font-weight: 700
}

.main-login .center-area form label {
    color: #8b8d96!important;
    display: block;
    font-size: .875rem!important;
    line-height: 1.25rem!important
}

.main-login .center-area form input {
    border-color: #4d505d!important;
    font-size: .875rem!important
}

.main-login .center-area form .field.error input,.main-login .center-area form .field.error span.ant-input-affix-wrapper {
    border-bottom-color: #fa4b62!important;
    border-bottom-width: 2px!important
}

.main-login .center-area form .field {
    margin-bottom: 20px
}

.main-login .center-area form .password-field {
    margin-bottom: 4px
}

.main-login .center-area form i.toggle-code {
    color: gray;
    cursor: pointer;
    margin-left: 8px
}

.main-login .center-area form .error {
    color: #fa4b62!important;
    font-size: .75rem!important;
    font-style: italic;
    line-height: 1rem!important
}

.main-login .center-area form .error .spanError {
    margin-left: 8px;
    margin-top: -20px;
    position: absolute
}

.main-login .center-area form .forgot {
    color: #f0b90b;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: right
}

.main-login .center-area .link-to-login,.main-login .center-area .link-to-signup {
    margin-bottom: 30px
}

.main-login .center-area .link-to-login span,.main-login .center-area .link-to-signup span {
    color: #f0b90b;
    cursor: pointer;
    font-weight: 600
}

.enter-2fa-when-login input {
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center
}

.socialLogin button {
    height: 46px!important;
    margin: 5px 0!important;
    width: 100%!important
}

.main-signup {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: -100px;
    padding: 36px
}

@media screen and (max-height: 700px) {
    .main-signup {
        margin-top:0
    }
}

.main-signup .center-area {
    width: 420px
}

.main-signup .center-area img {
    height: 60px;
    margin-bottom: 20px;
    margin-top: 50px
}

@media screen and (max-width: 576px) {
    .main-signup .center-area img {
        height:60px;
        margin-bottom: 15px
    }
}

.main-signup .center-area .title {
    color: #f0b90b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px
}

.main-signup .center-area form label {
    color: #8b8d96!important;
    display: block;
    font-size: .875rem!important;
    line-height: 1.25rem!important
}

.main-signup .center-area form input {
    border-color: #4d505d!important;
    font-size: .875rem!important
}

.main-signup .center-area form .field.error input,.main-signup .center-area form .field.error span.ant-input-affix-wrapper {
    border-bottom-color: #fa4b62!important;
    border-bottom-width: 2px!important
}

.main-signup .center-area form .field {
    margin-bottom: 1.5rem
}

.main-signup .center-area form .new-field-pw {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr
}

.main-signup .center-area form .code-field {
    margin-bottom: 40px
}

.main-signup .center-area form i.toggle-code {
    color: gray;
    cursor: pointer;
    margin-left: 8px
}

.main-signup .center-area form .error {
    color: #fa4b62!important;
    font-weight: 400
}

.main-signup .center-area form .forgot {
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: right
}

.main-signup .center-area .link-to-login,.main-signup .center-area .link-to-signup {
    margin-bottom: 30px
}

.main-signup .center-area .link-to-login span,.main-signup .center-area .link-to-signup span {
    color: #f0b90b;
    cursor: pointer;
    font-weight: 600
}

.socialLoginSignup button {
    font-size: 16px!important;
    font-weight: 700!important;
    height: 40px!important;
    margin: 5px 0!important;
    width: 100%!important
}

footer.footer {
    align-items: center;
    border: none;
    display: flex;
    font-size: 12px;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 0;
    width: 360px
}

.kyc {
    border: 2px solid #1d233b;
    border-radius: 10px;
    margin-inline:auto;margin-bottom: 30px;
    overflow: hidden;
    padding: 15px 20px;
    width: 60%
}

@media screen and (max-width: 1500px) {
    .kyc {
        width:75%
    }
}

@media screen and (max-width: 768px) {
    .kyc {
        width:100%
    }
}

.kyc .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

.kyc .kyc-note-922023 {
    margin-bottom: 30px
}

.kyc .kyc-note-922023 .p-wrapper {
    display: flex;
    margin-bottom: 6px
}

.kyc .kyc-note-922023 .p-wrapper i {
    color: #f5f5f5;
    font-size: 16px;
    margin-right: 10px;
    transform: translateY(2px)
}

.kyc .kyc-note-922023 .p-wrapper p {
    color: #dfdfdf;
    font-size: 14px;
    margin-bottom: 0
}

.kyc form {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3,1fr);
    width: 100%
}

@media screen and (max-width: 1200px) {
    .kyc form {
        grid-template-columns:repeat(2,1fr)
    }
}

@media screen and (max-width: 992px) {
    .kyc form {
        grid-template-columns:repeat(1,1fr)
    }
}

.kyc form label {
    display: block;
    margin-bottom: 4px
}

.admin,.static {
    background: inherit;
    color: inherit
}

.admin .title,.static .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

.admin .tree,.static .tree {
    color: inherit;
    line-height: 2;
    position: relative
}

@media screen and (max-width: 576px) {
    .admin .tree,.static .tree {
        max-width:calc(100vw - 60px);
        overflow-x: scroll
    }
}

.admin .tree span.item-name,.static .tree span.item-name {
    color: #f5f5f5;
    cursor: pointer;
    font-size: 15px
}

.admin .tree span.item-name:hover,.static .tree span.item-name:hover {
    color: #f0b90b;
    text-decoration: underline
}

.admin .tree span.item-mail,.static .tree span.item-mail {
    color: gray;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px
}

.admin .tree .fa-house-user,.admin .tree .fa-user,.admin .tree .fa-users,.static .tree .fa-house-user,.static .tree .fa-user,.static .tree .fa-users {
    color: #f0b90b;
    font-size: 14px;
    margin-right: 8px
}

.admin .tree ul,.static .tree ul {
    list-style: none;
    padding-left: 15px
}

.admin .tree ul li,.static .tree ul li {
    box-sizing: border-box;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-top: 5px;
    position: relative
}

.admin .tree ul li:before,.static .tree ul li:before {
    background-color: #666;
    content: "";
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 15px;
    width: 10px
}

.admin .tree ul li:after,.static .tree ul li:after {
    background-color: #666;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px
}

.admin .tree ul li:last-child:after,.static .tree ul li:last-child:after {
    height: 15px
}

.admin .ant-descriptions-item-label,.static .ant-descriptions-item-label {
    width: 50%
}

.admin-container {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1,1fr)
}

.admin-container .new-static {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6,1fr)
}

@media screen and (max-width: 992px) {
    .admin-container .new-static {
        grid-template-columns:repeat(3,1fr)
    }
}

.admin-container .new-static .item {
    border: 1px solid gray;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
    padding: 10px 15px
}

.admin-container .new-static .item .i-value {
    font-size: 18px;
    font-weight: 600;
    text-align: right
}

p.admin-tree-network-username {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0
}

p.admin-tree-network-username:hover {
    text-decoration: underline
}

.fullpage-loading {
    align-items: center;
    display: flex;
    flex-direction: row;
    inset: 0 0 0 0;
    justify-content: center;
    position: fixed
}

.kyc-users {
    background: inherit;
    color: inherit
}

.kyc-users .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .kyc-users .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.kyc-users .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

.kyc-users .search-box {
    width: 300px
}

@media screen and (max-width: 992px) {
    .kyc-users .search-box {
        margin-bottom:10px;
        width: 100%
    }

    .kyc-users .pagination-box {
        margin-bottom: 25px;
        text-align: right;
        width: 100%
    }
}

.kyc-users .manage-kyc-users-table .t1-row {
    background: #050819
}

.kyc-users .manage-kyc-users-table .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.kyc-users .manage-kyc-users-table .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.kyc-users .manage-kyc-users-table .ant-table-placeholder {
    background: #050819
}

.all-users {
    background: inherit;
    color: inherit
}

.all-users .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .all-users .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.all-users .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

.all-users i.fa-pen-to-square {
    color: gray;
    cursor: pointer;
    transition: all .25s ease
}

.all-users i.fa-pen-to-square:hover {
    color: #f0b90b
}

.all-users .search-box {
    width: 300px
}

@media screen and (max-width: 992px) {
    .all-users .search-box {
        margin-bottom:10px;
        width: 100%
    }

    .all-users .pagination-box {
        margin-bottom: 25px;
        text-align: right;
        width: 100%
    }
}

.all-users .manage-all-users-table .t1-row {
    background: #050819
}

.all-users .manage-all-users-table .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.all-users .manage-all-users-table .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.all-users .manage-all-users-table .ant-table-placeholder {
    background: #050819
}

label {
    display: inline-block;
    margin-bottom: 8px
}

.statics-all-users {
    padding: 20px
}

.statics-title-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.statics-title-area .ant-select {
    min-width: 250px
}

.statics-title-area .ant-picker-range {
    min-width: 300px
}

.statics-title-area button {
    height: 32px
}

.statics-table-container {
    margin-top: 20px
}

.deposit .wallets {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1,1fr);
    margin-bottom: 30px
}

.wallet .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

.wallet .deposit-type button+button {
    margin-left: 5px
}

.wallet .deposit-content {
    margin: 60px 0;
    text-align: center
}

.wallet .deposit-content .address {
    word-wrap: break-word;
    font-weight: 500;
    margin: 25px auto;
    max-width: 200px;
    text-align: center
}

.wallet .deposit-content .fa-circle-check {
    font-size: 20px
}

.wallet .deposit-description dl {
    padding: 0 30px
}

.wallet .deposit-description dl div {
    display: flex;
    margin-bottom: 15px
}

.wallet .deposit-description dl div dt {
    min-width: 40px;
    width: 40px
}

.wallet .deposit-description dl div dt i {
    color: #f0b90b;
    font-size: 22px;
    margin-top: 3px;
    opacity: .5
}

.wallet .deposit-description dl div dd {
    color: gray
}

.wallet-new {
    margin: -30px
}

@media screen and (max-width: 992px) {
    .wallet-new {
        margin:-10px
    }
}

.wallet-new .panel {
    align-items: center;
    background: #d1a305;
    display: flex;
    height: 160px;
    justify-content: center
}

.wallet-new .panel .panel-content {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%
}

@media screen and (max-width: 1140px) {
    .wallet-new .panel .panel-content {
        max-width:960px
    }
}

.wallet-new .panel .panel-content .left div:first-of-type {
    color: hsla(0,0%,100%,.6);
    font-size: 16px;
    margin-bottom: 16px
}

.wallet-new .panel .panel-content .left div:nth-of-type(2) {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    height: 30px;
    line-height: 30px
}

.wallet-new .panel .panel-content .right {
    align-items: center;
    color: #fff;
    cursor: pointer;
    display: flex;
    gap: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wallet-new .tab-header {
    background: #1f2f43;
    margin-bottom: 52.8px
}

.wallet-new .tab-header .tab-header-content {
    display: flex;
    justify-content: flex-start;
    margin: auto;
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%
}

@media screen and (max-width: 1140px) {
    .wallet-new .tab-header .tab-header-content {
        max-width:960px
    }
}

.wallet-new .tab-header .tab-header-content .tab-item {
    align-items: center;
    color: hsla(0,0%,100%,.302);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 55px;
    justify-content: center;
    padding: 8px 16px;
    position: relative
}

.wallet-new .tab-header .tab-header-content .tab-item.active {
    color: #f0b90b;
    font-weight: 700
}

.wallet-new .tab-header .tab-header-content .tab-item.active:after {
    background: #f0b90b;
    border-radius: 4px 4px 0 0;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%
}

.wallet-new .tab-content {
    margin: auto;
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%
}

@media screen and (max-width: 1140px) {
    .wallet-new .tab-content {
        max-width:960px
    }
}

.deposit-history .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .deposit-history .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.deposit-history .title-area .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .deposit-history .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.deposit-history .table-row {
    background: #050819
}

.deposit-history .ant-table-thead>tr>th {
    background: #181a20!important
}

dl.deposit-history-modal {
    margin-bottom: 0
}

dl.deposit-history-modal div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 5px
}

dl.deposit-history-modal dt {
    color: inherit;
    font-weight: 400
}

dl.deposit-history-modal dd {
    align-items: center;
    color: inherit;
    display: flex;
    font-weight: 500;
    justify-content: flex-end;
    margin-bottom: 0;
    max-width: 300px;
    text-align: right
}

dl.deposit-history-modal dd .fa-circle {
    color: #00c900;
    font-size: 8px;
    margin-right: 5px
}

dl.deposit-history-modal dd img.coin-type {
    height: 25px;
    margin-right: 5px;
    width: 25px
}

dl.deposit-history-modal dd i.fa-clone,dl.deposit-history-modal dd i.fa-link {
    color: gray;
    cursor: pointer;
    margin-left: 10px;
    transition: all .25s ease
}

dl.deposit-history-modal dd i.fa-clone:hover,dl.deposit-history-modal dd i.fa-link:hover {
    color: #f0b90b
}

dl.deposit-history-modal-mobile {
    margin-bottom: 0
}

dl.deposit-history-modal-mobile div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 5px 0
}

dl.deposit-history-modal-mobile dt {
    color: inherit;
    font-weight: 400
}

dl.deposit-history-modal-mobile dd {
    align-items: center;
    color: inherit;
    display: flex;
    font-weight: 500;
    justify-content: flex-end;
    margin-bottom: 0;
    max-width: 300px;
    text-align: right
}

dl.deposit-history-modal-mobile dd .fa-circle {
    color: #00c900;
    font-size: 8px;
    margin-right: 5px
}

dl.deposit-history-modal-mobile dd img.coin-type {
    height: 25px;
    margin-right: 5px;
    width: 25px
}

dl.deposit-history-modal-mobile dd i.fa-clone,dl.deposit-history-modal-mobile dd i.fa-link {
    color: gray;
    cursor: pointer;
    margin-left: 10px;
    transition: all .25s ease
}

dl.deposit-history-modal-mobile dd i.fa-clone:hover,dl.deposit-history-modal-mobile dd i.fa-link:hover {
    color: #f0b90b
}

dl.deposit-history-modal-mobile dd.dd_address span,dl.deposit-history-modal-mobile dd.dd_txid span {
    word-wrap: break-word;
    display: inline-block;
    max-width: 200px
}

.withdraw .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative
}

.withdraw .type button+button {
    margin-left: 5px
}

.withdraw form {
    margin-top: 50px
}

.withdraw form label {
    display: inline-block;
    margin-bottom: 8px
}

.withdraw form .field {
    margin-bottom: 16px
}

.withdraw form .field3 {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.withdraw form .field3 .strong {
    font-weight: 500
}

.withdraw .withdraw-description {
    margin: 50px 0
}

.withdraw .withdraw-description dl div {
    display: flex;
    margin-bottom: 15px
}

.withdraw .withdraw-description dl div dt {
    min-width: 40px;
    width: 40px
}

.withdraw .withdraw-description dl div dt i {
    color: #f0b90b;
    font-size: 22px;
    opacity: .5
}

.withdraw-alert-in-modal-ejk {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px
}

.withdraw-alert-in-modal-ejk i {
    color: red;
    display: block;
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center
}

.withdraw-alert-in-modal-ejk h3 {
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 700;
    text-align: center
}

.withdraw-alert-in-modal-ejk p {
    color: #f5f5f5;
    font-size: 15px;
    text-align: center
}

.withdraw-alert-in-modal-ejk button {
    margin-top: 16px
}

.withdraw-history {
    animation: fadeInRight;
    animation-duration: .5s
}

.withdraw-history .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .withdraw-history .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.withdraw-history .title-area .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

.withdraw-history .title-area .search-box {
    width: 300px
}

@media screen and (max-width: 992px) {
    .withdraw-history .title-area .search-box {
        margin-bottom:10px;
        width: 100%
    }

    .withdraw-history .title-area .pagination-box {
        margin-bottom: 25px;
        text-align: right;
        width: 100%
    }
}

.withdraw-history .table-row {
    background: #050819
}

.withdraw-history .ant-table-thead>tr>th {
    background: #181a20!important
}

.modal-row-sl {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px
}

.modal-row-sl .left {
    font-weight: 600;
    min-width: 150px
}

.update-phi-rut-tien,.withdrawals {
    background: inherit;
    color: inherit
}

.update-phi-rut-tien .title-area,.withdrawals .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .update-phi-rut-tien .title-area,.withdrawals .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.update-phi-rut-tien .title,.withdrawals .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px
}

.update-phi-rut-tien .search-box,.withdrawals .search-box {
    width: 300px
}

@media screen and (max-width: 992px) {
    .update-phi-rut-tien .search-box,.withdrawals .search-box {
        margin-bottom:10px;
        width: 100%
    }

    .update-phi-rut-tien .pagination-box,.withdrawals .pagination-box {
        margin-bottom: 25px;
        text-align: right;
        width: 100%
    }
}

.update-phi-rut-tien input.ant-input-number-input,.withdrawals input.ant-input-number-input {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center
}

.update-phi-rut-tien .manage-withdraw-table-new-css .t1-row,.withdrawals .manage-withdraw-table-new-css .t1-row {
    background: #050819
}

.update-phi-rut-tien .manage-withdraw-table-new-css .t1-row td,.withdrawals .manage-withdraw-table-new-css .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.update-phi-rut-tien .manage-withdraw-table-new-css .ant-table-thead>tr>th,.withdrawals .manage-withdraw-table-new-css .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.update-phi-rut-tien .manage-withdraw-table-new-css .ant-table-placeholder,.withdrawals .manage-withdraw-table-new-css .ant-table-placeholder {
    background: #050819
}

.deposits {
    background: inherit;
    color: inherit
}

.deposits .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .deposits .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.deposits .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

.deposits .search-box {
    width: 300px
}

@media screen and (max-width: 992px) {
    .deposits .search-box {
        margin-bottom:10px;
        width: 100%
    }

    .deposits .pagination-box {
        margin-bottom: 25px;
        text-align: right;
        width: 100%
    }
}

.deposits .manage-deposit-table-new-css .t1-row {
    background: #050819
}

.deposits .manage-deposit-table-new-css .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.deposits .manage-deposit-table-new-css .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.deposits .manage-deposit-table-new-css .ant-table-placeholder {
    background: #050819
}

.mn-transfer,.update-phi-chuyen-tien {
    background: inherit;
    color: inherit
}

.mn-transfer .title-area,.update-phi-chuyen-tien .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .mn-transfer .title-area,.update-phi-chuyen-tien .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.mn-transfer .title,.update-phi-chuyen-tien .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px
}

.mn-transfer .search-box,.update-phi-chuyen-tien .search-box {
    width: 300px
}

@media screen and (max-width: 992px) {
    .mn-transfer .search-box,.update-phi-chuyen-tien .search-box {
        margin-bottom:10px;
        width: 100%
    }

    .mn-transfer .pagination-box,.update-phi-chuyen-tien .pagination-box {
        margin-bottom: 25px;
        text-align: right;
        width: 100%
    }
}

.mn-transfer input.ant-input-number-input,.update-phi-chuyen-tien input.ant-input-number-input {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center
}

.mn-transfer .manage-transfer-table-new-css .t1-row,.update-phi-chuyen-tien .manage-transfer-table-new-css .t1-row {
    background: #050819
}

.mn-transfer .manage-transfer-table-new-css .t1-row td,.update-phi-chuyen-tien .manage-transfer-table-new-css .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.mn-transfer .manage-transfer-table-new-css .ant-table-thead>tr>th,.update-phi-chuyen-tien .manage-transfer-table-new-css .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.mn-transfer .manage-transfer-table-new-css .ant-table-placeholder,.update-phi-chuyen-tien .manage-transfer-table-new-css .ant-table-placeholder {
    background: #050819
}

.profile .profile-info {
    border: 2px solid #1d233b;
    border-radius: 10px;
    margin-inline:auto;margin-bottom: 30px;
    overflow: hidden;
    padding: 15px 20px;
    width: 60%
}

@media screen and (max-width: 1500px) {
    .profile .profile-info {
        width:75%
    }
}

@media screen and (max-width: 768px) {
    .profile .profile-info {
        width:100%
    }
}

.profile .profile-info h2.title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

.profile .profile-info p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0
}

.profile .profile-info p i {
    margin-right: 10px
}

.profile .profile-new-img {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px
}

.profile .profile-new-img img {
    border: 2px solid #1d233b;
    border-radius: 50%;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 80px
}

.profile .profile-new-form {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 25px;
    margin-top: 25px
}

@media screen and (max-width: 576px) {
    .profile .profile-new-form {
        gap:15px;
        grid-template-columns: repeat(1,1fr)
    }
}

.profileModalUpdateAvatar .img-choser-placeholder {
    align-items: center;
    background-color: #050819;
    border: 2px dashed #1d233b;
    border-radius: 6px;
    color: #f5f5f5;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    height: 80px;
    justify-content: center;
    transition: all .15s ease;
    width: 100%
}

.profileModalUpdateAvatar .img-choser-placeholder:hover {
    background-color: #1d233b
}

.profileModalUpdateAvatar .upload-img-note {
    color: #b6b6b6;
    font-size: 14px;
    margin-top: 5px
}

.user-wallet .main-wallet-illus {
    align-items: flex-start;
    border: 2px solid #1d233b;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-inline:auto;margin-bottom: 30px;
    overflow: hidden;
    padding: 15px 20px;
    width: 60%
}

@media screen and (max-width: 1500px) {
    .user-wallet .main-wallet-illus {
        width:75%
    }
}

@media screen and (max-width: 768px) {
    .user-wallet .main-wallet-illus {
        width:100%
    }
}

.user-wallet .main-wallet-illus .left .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.user-wallet .main-wallet-illus .left .sodu-cohinh {
    align-items: center;
    display: flex
}

.user-wallet .main-wallet-illus .left .sodu-cohinh p {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0
}

@media screen and (max-width: 576px) {
    .user-wallet .main-wallet-illus .left .sodu-cohinh p {
        font-size:32px
    }
}

.user-wallet .main-wallet-illus .left .sodu-cohinh img {
    height: 35px;
    margin-left: 20px;
    width: 35px
}

@media screen and (max-width: 576px) {
    .user-wallet .main-wallet-illus .left .sodu-cohinh img {
        height:30px;
        width: 30px
    }
}

.user-wallet .main-wallet-illus .right {
    color: #fff;
    cursor: pointer;
    transition: all .15s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.user-wallet .main-wallet-illus .right:hover {
    color: #f0b90b
}

.user-wallet .main-wallet-illus .right i {
    margin-right: 5px
}

.user-wallet .tabs {
    border: 2px solid #1d233b;
    border-radius: 10px;
    margin-inline:auto;margin-bottom: 30px;
    overflow: hidden;
    padding: 15px 20px;
    width: 60%
}

@media screen and (max-width: 1500px) {
    .user-wallet .tabs {
        width:75%
    }
}

@media screen and (max-width: 768px) {
    .user-wallet .tabs {
        width:100%
    }
}

.user-wallet .tabs .ant-tabs-tab {
    font-size: 18px!important;
    font-weight: 600!important;
    padding-inline:50px!important}

@media screen and (max-width: 768px) {
    .user-wallet .tabs .ant-tabs-tab {
        padding-inline:10px!important
    }
}

.chart {
    width: 100%
}

.chart .selection {
    position: absolute
}

.chart .selection .btc-usdt-new {
    align-items: center;
    background-color: #1d233b;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    left: 10px;
    padding: 7px 10px;
    position: absolute;
    top: 10px;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 100
}

@media screen and (max-width: 992px) {
    .chart .selection .btc-usdt-new {
        left:20px
    }
}

.chart .selection .btc-usdt-new img {
    height: 20px;
    margin-right: .25rem;
    width: 20px
}

@media(min-width: 1024px) {
    .chart .selection .btc-usdt-new img {
        height:30px;
        width: 30px
    }
}

.chart .selection .btc-usdt-new span {
    color: #f5f5f5;
    font-size: .75rem;
    letter-spacing: 1px;
    line-height: 1rem;
    white-space: nowrap
}

@media(min-width: 1024px) {
    .chart .selection .btc-usdt-new span {
        font-size:1rem;
        line-height: 1.5rem
    }
}

.chart .selection .ss-chart {
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    left: 10px;
    padding: 4px 8px;
    position: absolute;
    top: 40px;
    width: -moz-fit-content;
    width: fit-content
}

.chart .selection .ss-chart span {
    color: #f5f5f5;
    font-size: 10px;
    font-weight: 600
}

.chart .chart-area {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: calc(100vh - 120px);
    transition: all .5s ease;
    width: 100%
}

@media screen and (max-width: 992px) {
    .chart .chart-area {
        padding:0 15px
    }
}

.chart .chart-area .fixed-left-zone {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .5s ease;
    width: calc(100% - 220px)
}

@media screen and (max-width: 992px) {
    .chart .chart-area .fixed-left-zone {
        border-right:2px solid #000;
        box-sizing: border-box;
        height: calc(100dvh - 60px);
        max-height: calc(100vh - 60px);
        width: calc(100% - 135px)
    }
}

.chart .chart-area .fixed-left-zone #chart,.chart .chart-area .fixed-left-zone #highchart_container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    transition: all .5s ease;
    width: 100%
}

@media screen and (max-width: 992px) {
    .chart .chart-area .fixed-left-zone #chart,.chart .chart-area .fixed-left-zone #highchart_container {
        flex:1 1
    }
}

.chart .chart-area .fixed-left-zone #chart:before,.chart .chart-area .fixed-left-zone #highchart_container:before {
    background-image: url(/static/media/world_map.3273ff9794f7c6a33d6f.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .chart .chart-area .fixed-left-zone #chart:before,.chart .chart-area .fixed-left-zone #highchart_container:before {
        background-size:70%
    }
}

.chart .chart-area .fixed-left-zone #chart *,.chart .chart-area .fixed-left-zone #highchart_container * {
    position: relative;
    z-index: 1
}

.chart .chart-area .newSidePane-sp.hide {
    display: none
}

.chart .chart-area.withSidePane .fixed-left-zone {
    width: calc(100% - 440px)
}

@media screen and (max-width: 992px) {
    .chart .chart-area.withSidePane .fixed-left-zone {
        width:calc(100% - 270px)
    }
}

.chart .chart-area.withSidePane .newSidePane-sp {
    display: block;
    transition: all .5s ease;
    width: 210px
}

@media screen and (max-width: 992px) {
    .chart .chart-area.withSidePane .newSidePane-sp {
        display:inline;
        display: initial;
        flex-shrink: 0;
        padding: 5px 0!important;
        width: 125px!important
    }
}

.chart .chart-area .cf-tabss .ant-tabs-content-holder,.chart .chart-area.withSidePane .cf-tabss .ant-tabs-content-holder {
    overflow: hidden
}

.chart .chart-area .cf-tabss .ant-tabs-content-holder .ant-tabs-content,.chart .chart-area.withSidePane .cf-tabss .ant-tabs-content-holder .ant-tabs-content {
    height: 100%
}

.chart .chart-area .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list,.chart .chart-area.withSidePane .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list {
    min-height: 29px;
    width: 100%
}

.chart .chart-area .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab,.chart .chart-area.withSidePane .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab {
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
    width: 50%
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .chart .chart-area .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab,.chart .chart-area.withSidePane .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab {
        font-size:10px
    }
}

.chart .chart-area .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab+.ant-tabs-tab,.chart .chart-area.withSidePane .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab+.ant-tabs-tab {
    margin-left: 0!important
}

.chart .chart-area .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-ink-bar,.chart .chart-area.withSidePane .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-ink-bar {
    height: 3px
}

.chart .chart-area .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-tab-btn,.chart .chart-area.withSidePane .newSidePane-sp .ant-tabs-nav-wrap .ant-tabs-tab-btn {
    margin-bottom: 5px
}

.chart .chart-area-admin {
    grid-gap: 20px;
    background: inherit;
    color: inherit;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5,1fr);
    width: 100%
}

@media screen and (max-width: 1200px) {
    .chart .chart-area-admin {
        display:flex;
        flex-direction: column;
        gap: 20px
    }
}

.chart .chart-area-admin .chart-footer-admin {
    grid-column: 2/span 5
}

.chart-vh-full-mobile .selection-mobile {
    margin-bottom: -14px;
    position: absolute;
    z-index: 10
}

.chart-vh-full-mobile .selection-mobile .btc-usdt-new {
    align-items: center;
    background-color: #1d233b;
    border-radius: 5px;
    display: flex;
    left: 5px;
    padding: 7px 10px;
    position: absolute;
    top: 0;
    width: -moz-fit-content;
    width: fit-content
}

.chart-vh-full-mobile .selection-mobile .btc-usdt-new img {
    height: 18px;
    margin-right: 4px;
    width: 18px
}

.chart-vh-full-mobile .selection-mobile .btc-usdt-new span {
    color: #f5f5f5;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 2
}

.chart-vh-full-mobile .selection-mobile .ss-chart {
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    left: 5px;
    padding: 4px 8px;
    position: absolute;
    top: 35px;
    width: -moz-fit-content;
    width: fit-content
}

.chart-vh-full-mobile .selection-mobile .ss-chart span {
    color: #f5f5f5;
    font-size: 10px;
    font-weight: 600
}

.chart-vh-full-mobile .chart-area-mobile {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 335px);
    height: calc(var(--vh100, 100vh) - 335px);
    justify-content: flex-start;
    position: relative;
    width: 100%
}

@media screen and (max-height: 500px)and (min-aspect-ratio:1/1) {
    .chart-vh-full-mobile .chart-area-mobile {
        height:calc(100vh - 90px);
        height: calc(var(--vh100, 100vh) - 90px)
    }
}

.chart-vh-full-mobile .chart-area-mobile #chart,.chart-vh-full-mobile .chart-area-mobile #highchart_container {
    background-image: url(/static/media/world_map.3273ff9794f7c6a33d6f.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    flex: 1 1;
    height: 100%;
    position: relative;
    width: 100%
}

.chart-vh-full-mobile .chart-area-mobile .fixed-bottom-zone {
    bottom: 35px;
    height: 235px;
    left: 50%;
    position: fixed;
    transform: translateX(-50%);
    width: 98%;
    z-index: 10
}

@media screen and (max-height: 500px)and (min-aspect-ratio:1/1) {
    .chart-vh-full-mobile .chart-area-mobile #chart,.chart-vh-full-mobile .chart-area-mobile #highchart_container {
        height:100%
    }

    .chart-vh-full-mobile .chart-area-mobile .fixed-bottom-zone {
        display: none
    }
}

.chart-vh-full-mobile .chart-area-mobile .ant-tabs .ant-tabs-nav .ant-tabs-tab-btn {
    margin-bottom: 2px;
    padding: 0!important
}

.chart-vh-full-mobile .chart-area-mobile .ant-tabs .ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab {
    margin-left: 15px!important
}

.chart-vh-full-mobile .chart-area-mobile .ant-tabs .ant-tabs-content-holder {
    height: 100px!important;
    max-height: 100px!important;
    min-height: 100px!important
}

.wrapper-loader-pola {
    height: calc(100vh - 125px);
    width: calc(100vw - 165px)
}

.wrapper-loader-pola,.wrapper-loader-pola-mobile {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.wrapper-loader-pola-mobile {
    height: calc(100vh - 85px);
    width: calc(100vw - 20px)
}

.chart-footer-container .ant-tabs {
    margin-top: 15px
}

@media screen and (max-width: 992px) {
    .chart-footer-container .ant-tabs {
        margin-top:0
    }
}

.chart-footer-container-collapsed {
    bottom: -28px;
    height: 50px;
    position: absolute
}

@media screen and (max-width: 992px) {
    .chart-footer-container-collapsed {
        position:static
    }
}

.chart-footer-container-collapsed .cf-tabss .ant-tabs-content-holder {
    height: 0!important;
    max-height: 0!important;
    min-height: 0!important
}

.chart-footer-container-collapsed .cf-tabss .ant-tabs-extra-content {
    display: none
}

.chart-footer-container-collapsed .footer-tab-content {
    height: 0;
    overflow: hidden
}

.chart-footer-container-mobile-collapsed {
    height: 50px;
    position: relative;
    top: 140px
}

.chart-footer-container-mobile-collapsed .cf-tabss .ant-tabs-content-holder {
    height: 0!important;
    max-height: 0!important;
    min-height: 0!important
}

.chart-footer-container-mobile-collapsed .cf-tabss .ant-tabs-extra-content {
    display: none
}

.chart-footer-container-mobile-collapsed .footer-tab-content {
    height: 0;
    overflow: hidden
}

.chart-footer .tile-area {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around
}

.chart-footer .tile-area .tile-group {
    display: flex;
    gap: 3px;
    grid-auto-flow: repeat(4,1fr);
    grid-template-columns: repeat(5,1fr)
}

@media(max-width: 667px) {
    .chart-footer .tile-area .tile-group:first-child,.chart-footer .tile-area .tile-group:nth-child(2) {
        display:none
    }
}

.chart-footer .tile-area .tile-row {
    display: inline-grid;
    gap: 3px
}

.chart-footer .tile-area .tile-zone {
    align-items: center;
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    width: -moz-fit-content;
    width: fit-content;
    width: 100%
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .chart-footer .tile-area .tile-zone {
        margin-top:10px
    }
}

@media screen and (min-width: 1024px) {
    .chart-footer .tile-area .tile-zone {
        gap:3px
    }
}

.chart-footer .tile-area .tile-zone .tile-item {
    background-color: #1d233b;
    border-radius: 50%;
    height: 1rem;
    width: 1rem
}

@media(min-width: 640px) {
    .chart-footer .tile-area .tile-zone .tile-item {
        height:1rem!important;
        width: 1rem!important
    }
}

@media screen and (min-width: 1024px) {
    .chart-footer .tile-area .tile-zone .tile-item {
        height:1rem!important;
        width: 1rem!important
    }
}

@media screen and (min-width: 1280px) {
    .chart-footer .tile-area .tile-zone .tile-item {
        height:1.5rem!important;
        width: 1.5rem!important
    }
}

.chart-footer .tile-area .tile-zone .tile-item.red {
    background-color: #fa4b62
}

.chart-footer .tile-area .tile-zone .tile-item.green {
    background-color: #04c793
}

.chart-footer .tile-area .tile-zone .tile-item.white {
    background-color: #fff
}

.chart-footer .tile-area .tile-zone .tile-item.space {
    margin-left: 5px
}

@media screen and (min-width: 1024px) {
    .chart-footer .tile-area .tile-zone .tile-item.space {
        margin-left:65px
    }
}

.chart-footer-mobile .tile-area-mobile {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around
}

.chart-footer-mobile .tile-area-mobile .tile-group {
    display: flex;
    gap: 3px;
    grid-auto-flow: repeat(4,1fr);
    grid-template-columns: repeat(5,1fr)
}

@media(max-width: 576px) {
    .chart-footer-mobile .tile-area-mobile .tile-group:first-child,.chart-footer-mobile .tile-area-mobile .tile-group:nth-child(2) {
        display:none
    }
}

.chart-footer-mobile .tile-area-mobile .tile-row {
    display: inline-grid;
    gap: 3px
}

.chart-footer-mobile .tile-area-mobile .tile-zone-mobile {
    align-items: center;
    display: flex;
    justify-content: space-around;
    width: -moz-fit-content;
    width: fit-content;
    width: 100%
}

@media screen and (min-width: 1024px) {
    .chart-footer-mobile .tile-area-mobile .tile-zone-mobile {
        gap:3px
    }
}

.chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile {
    background-color: #1d233b;
    border-radius: 50%;
    height: 1rem!important;
    width: 1rem!important
}

@media screen and (max-width: 400px) {
    .chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile {
        height:1rem!important;
        width: 1rem!important
    }
}

.chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile.red {
    background-color: #fa4b62
}

.chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile.green {
    background-color: #04c793
}

.chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile.white {
    background-color: #fff
}

.chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile.space {
    margin-left: 50px
}

@media screen and (max-width: 400px) {
    .chart-footer-mobile .tile-area-mobile .tile-zone-mobile .tile-item-mobile.space {
        margin-left:30px
    }
}

.chart-footer-admin {
    grid-gap: 20px;
    display: grid;
    font-size: 15px;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
    width: 100%
}

@media screen and (max-width: 1200px) {
    .chart-footer-admin {
        grid-template-columns:repeat(1,1fr)
    }
}

.chart-footer-admin .box {
    background-color: #050819;
    border-radius: 10px;
    padding: 5px 10px
}

.chart-footer-admin .box div.sta {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    justify-content: space-between
}

.chart-footer-admin .box div.sta span:last-child {
    font-size: 20px;
    font-weight: 700;
    margin-left: 5px
}

.chart-footer-admin .box .buy-title,.chart-footer-admin .box .sell-title {
    font-weight: 600
}

.chart-footer-admin .box .stb {
    margin-top: 15px;
    max-height: 70vh;
    overflow-y: auto
}

.chart-footer-admin .box .stb .item-box {
    align-items: center;
    color: #f5f5f5!important;
    display: flex;
    flex-direction: row;
    font-size: 14px!important;
    font-weight: 400!important;
    justify-content: space-between;
    line-height: 15px
}

.chart-footer-admin .box .stb .item-box a.user-link {
    font-weight: 500
}

.chart-footer-admin .box .stb .item-box span:first-child {
    flex-basis: 50%;
    text-align: left
}

.chart-footer-admin .box .stb .item-box span:last-child,.chart-footer-admin .box .stb .item-box span:nth-child(2) {
    flex-basis: 25%;
    text-align: right
}

.chart-footer-admin .box .stb .tenant-order {
    color: #fff
}

.chart-footer-admin .box-buy {
    border: 1px solid #04c793
}

.chart-footer-admin .box-buy div.sta {
    color: #04c793
}

.chart-footer-admin .box-sell {
    border: 1px solid #fa4b62
}

.chart-footer-admin .box-sell div.sta {
    color: #fa4b62
}

.cf-tabss .ant-tabs-tab {
    font-weight: 700;
    padding: 2px
}

.cf-tabss .ant-tabs-nav {
    margin-bottom: 5px!important
}

.cf-tabss .ant-tabs-nav:before {
    display: none
}

.cf-tabss .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn {
    color: #929292;
    font-size: .875rem!important;
    font-weight: 400;
    padding: 0 16px
}

.cf-tabss .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #fff;
    font-size: 16px;
    padding: 0 16px
}

.cf-tabss .ant-tabs-nav .ant-tabs-ink-bar {
    border-radius: 5px;
    height: 4px!important
}

.cf-tabss .ant-tabs-extra-content {
    position: absolute;
    right: 0
}

.cf-tabss .ant-tabs-extra-content .counter {
    align-items: center;
    align-self: flex-end;
    display: flex
}

.cf-tabss .ant-tabs-extra-content .counter .count-buy,.cf-tabss .ant-tabs-extra-content .counter .count-sell {
    align-items: center;
    background-color: hsla(0,0%,100%,.2)!important;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    gap: 16px;
    padding: .25rem .5rem!important
}

@media screen and (max-width: 992px) {
    .cf-tabss .ant-tabs-extra-content .counter .count-buy,.cf-tabss .ant-tabs-extra-content .counter .count-sell {
        padding:2px 8px
    }
}

.cf-tabss .ant-tabs-extra-content .counter .count-buy span,.cf-tabss .ant-tabs-extra-content .counter .count-sell span {
    color: #fff;
    font-size: .75rem!important;
    line-height: 1rem!important
}

@media screen and (min-width: 1024px) {
    .cf-tabss .ant-tabs-extra-content .counter .count-buy span,.cf-tabss .ant-tabs-extra-content .counter .count-sell span {
        font-size:1rem!important;
        line-height: 1.5rem!important
    }
}

.cf-tabss .ant-tabs-extra-content .counter .count-sell {
    margin-left: 8px
}

.cf-tabss .ant-tabs-extra-content .counter .count-sell i {
    color: #fa4b62
}

.counter-mobile-tabBarExtraContent {
    align-items: center;
    display: flex;
    margin-right: 5px
}

.counter-mobile-tabBarExtraContent .count-buy,.counter-mobile-tabBarExtraContent .count-sell {
    align-items: center;
    background-color: hsla(0,0%,100%,.2)!important;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: .25rem .5rem!important
}

.counter-mobile-tabBarExtraContent .count-buy span,.counter-mobile-tabBarExtraContent .count-sell span {
    color: #fff;
    font-size: .75rem!important;
    line-height: 1rem!important
}

.counter-mobile-tabBarExtraContent .count-sell {
    margin-left: 8px
}

.chartpane {
    margin-top: -10px;
    padding: 10px;
    width: 210px!important
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .chartpane {
        padding:5px!important;
        width: 100%!important
    }
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .chartpane {
        flex-shrink:0;
        padding: 5px 0!important;
        width: 125px!important
    }
}

@media screen and (max-width: 992px) {
    .chartpane .hide-mobile-992 {
        display:none!important
    }
}

.chartpane .amount .subtitle {
    font-size: .875rem!important;
    line-height: 1.25rem!important;
    margin-bottom: .5rem!important
}

@media screen and (max-width: 992px) {
    .chartpane .amount .subtitle {
        font-size:.75rem!important;
        line-height: 1rem!important
    }
}

.chartpane .amount .ant-input-number-prefix {
    margin-right: 0!important
}

.chartpane .amount .amount-line-1 {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .chartpane .amount .amount-line-1 {
        justify-content:center
    }
}

.chartpane .amount .amount-line-1 .input-center-desktop {
    background-color: #f5f5f5!important;
    color: #000!important
}

.chartpane .amount .amount-line-1 #chart-pane-input-amount-number {
    background-color: #f5f5f5!important;
    border: none;
    color: #171b2c!important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    width: 100%!important
}

.chartpane .amount .amount-line-1 button.amount-line-1-add,.chartpane .amount .amount-line-1 button.amount-line-1-subtract {
    align-self: stretch;
    background-color: #1d233b;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    height: 40px;
    outline: none;
    overflow: hidden;
    text-align: center;
    transition: all .15s ease;
    width: 40px!important
}

.chartpane .amount .amount-line-1 button.amount-line-1-subtract.disabled {
    cursor: not-allowed;
    opacity: .3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .amount .amount-line-1 button.amount-line-1-subtract.disabled:hover {
    background-color: #1d233b;
    color: #fff;
    opacity: .3
}

.chartpane .amount .btn-group {
    grid-gap: 5px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 5px
}

.chartpane .amount .btn-group .btn-child-op {
    background-color: #1d233b;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    height: 36px;
    outline: none;
    overflow: hidden;
    text-align: center;
    transition: all .15s ease;
    width: 100%
}

.chartpane .amount .btn-group .btn-child-op:hover {
    bacckground-image: linear-gradient(180deg,#f5b42a,#f5b42a);
    color: #000
}

.chartpane .amount .btn-group .btn-child-op.disabled {
    cursor: not-allowed;
    opacity: .3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .amount .btn-group .btn-child-op.disabled:hover {
    background: linear-gradient(180deg,#f5b42a,#f5b42a);
    color: #fff;
    opacity: .3
}

.chartpane .amount-mobile {
    grid-gap: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5,1fr);
    height: 45px!important;
    margin-bottom: 10px;
    margin-top: -5px
}

.chartpane .amount-mobile .input-center {
    background-color: #f5f5f5!important;
    grid-column: 2/span 3
}

.chartpane .amount-mobile .ant-input-number-prefix {
    margin-right: 0!important
}

.chartpane .amount-mobile button.amount-line-1-add,.chartpane .amount-mobile button.amount-line-1-subtract {
    align-self: stretch;
    background-color: #1d233b;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    height: 40px;
    outline: none;
    overflow: hidden;
    text-align: center;
    transition: all .15s ease;
    width: 100%
}

.chartpane .amount-mobile button.amount-line-1-subtract.disabled {
    cursor: not-allowed;
    opacity: .3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .amount-mobile button.amount-line-1-subtract.disabled:hover {
    background-color: #1d233b;
    color: #fff;
    opacity: .3
}

.chartpane .amount-mobile #chart-pane-input-amount-number {
    background-color: #f5f5f5!important;
    border: none;
    color: #000!important;
    font-size: 16px;
    font-weight: 400;
    height: 45px;
    line-height: 38px;
    outline: none;
    padding-inline:0;padding-left: 5px
}

.chartpane .profit {
    background-color: #050819;
    color: #fff;
    margin-top: 15px
}

.chartpane .profit .subtitle {
    font-size: 14px;
    font-weight: 400;
    text-align: center
}

@media screen and (max-width: 992px) {
    .chartpane .profit .subtitle {
        font-size:.5rem!important
    }
}

.chartpane .profit .subtitle span {
    color: #c33838;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    margin-left: 10px;
    transform: translateY(2px)
}

@media screen and (max-width: 992px) {
    .chartpane .profit .subtitle span {
        font-size:13px!important
    }
}

.chartpane .profit .profit-value {
    color: #01b58c;
    font-size: 30px;
    font-weight: 700;
    text-align: center
}

@media screen and (max-width: 992px) {
    .chartpane .profit .profit-value {
        font-size:15px!important
    }
}

.chartpane .profit-mobile {
    align-items: center;
    background-color: #050819;
    color: #fff;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center
}

.chartpane .profit-mobile .subtitle {
    font-size: 14px;
    font-weight: 400;
    text-align: center
}

.chartpane .profit-mobile .subtitle span {
    color: #c33838;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin-left: 10px;
    transform: translateY(1px)
}

.chartpane .profit-mobile .profit-value {
    color: #01b58c;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    transform: translateY(1px)
}

.chartpane .trader .ant-progress-inner {
    height: px!important
}

.chartpane .trader .ant-progress-inner div {
    height: 6px!important
}

.chartpane .trader .subtitle {
    font-weight: 600;
    margin-bottom: 7px;
    text-align: center
}

@media screen and (max-width: 992px) {
    .chartpane .trader .subtitle {
        font-size:.5rem!important;
        margin-bottom: 0
    }
}

.chartpane .trader .span-group {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: -5px
}

.chartpane .trader .span-group .span1 {
    color: #04c793;
    font-weight: 500
}

.chartpane .trader .span-group .span2 {
    color: #fa4b62;
    font-weight: 500
}

@media screen and (max-width: 992px) {
    .chartpane .trader .span-group .span1,.chartpane .trader .span-group .span2 {
        font-size:.5rem!important
    }
}

.chartpane .action-mobile {
    grid-gap: 5px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 6px
}

.chartpane .action-mobile .buy-mobile {
    align-items: center;
    background-color: #04c793;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 17px;
    font-weight: 600;
    gap: 6px;
    height: 47px;
    justify-content: center;
    padding: 2px 0;
    text-align: center;
    transition: all .25s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .action-mobile .buy-mobile i.fa-arrow-trend-down,.chartpane .action-mobile .buy-mobile i.fa-arrow-trend-up {
    margin-left: 8px
}

.chartpane .action-mobile .sell-mobile {
    align-items: center;
    background-color: #fa4b62;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 17px;
    font-weight: 600;
    gap: 6px;
    height: 47px;
    justify-content: center;
    padding: 2px 0;
    text-align: center;
    transition: all .25s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .action-mobile .sell-mobile i.fa-arrow-trend-down,.chartpane .action-mobile .sell-mobile i.fa-arrow-trend-up {
    margin-left: 8px
}

.chartpane .action-mobile .buy-mobile.box.disable,.chartpane .action-mobile .sell-mobile.box.disable {
    background-color: #8b8d96;
    cursor: not-allowed;
    pointer-events: none;
    transition: all .25s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .action-mobile .order-mobile {
    align-items: center;
    background-color: #1d233b;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-size: 14px;
    height: 47px;
    justify-content: center;
    padding: 2px 0
}

.chartpane .action-mobile .order-mobile .ob-counter {
    font-size: 18px;
    font-weight: 700;
    margin-top: -4px
}

@media screen and (max-width: 992px) {
    .chartpane .buy-mt {
        margin-top:1rem!important
    }
}

.chartpane .buy,.chartpane .sell {
    align-items: center;
    background-color: #04c793;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 800;
    height: 60px;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 20px;
    transition: all .25s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media screen and (max-width: 992px) {
    .chartpane .buy,.chartpane .sell {
        font-size:1rem!important;
        font-weight: 600;
        height: 30px!important;
        line-height: 1.5rem!important;
        padding: 5px 0!important
    }
}

.chartpane .buy:hover,.chartpane .sell:hover {
    background-color: #37ce71
}

.chartpane .sell {
    background-color: #fa4b62;
    margin-top: 12px
}

@media screen and (max-width: 992px) {
    .chartpane .sell {
        margin-top:.25rem!important
    }
}

.chartpane .sell:hover {
    background-color: #e73951
}

.chartpane .buy.box.disable,.chartpane .sell.box.disable {
    background-color: hsla(0,0%,100%,.6);
    cursor: not-allowed;
    transition: all .25s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane .buy.admin,.chartpane .order,.chartpane .sell.admin {
    justify-content: center
}

.chartpane .order {
    align-items: center;
    background-color: #1d233b;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    margin-top: 12px;
    padding: 2px 20px!important
}

@media screen and (max-width: 992px) {
    .chartpane .order {
        height:30px!important;
        margin-top: .25rem!important;
        padding: .375rem .5rem!important
    }

    .chartpane .order .ob-text {
        font-size: 10px!important;
        font-weight: 400;
        line-height: 1.25rem!important
    }
}

.chartpane .order .ob-counter {
    font-size: 18px;
    font-weight: 700;
    margin-top: -4px
}

@media screen and (max-width: 992px) {
    .chartpane .order .ob-counter {
        font-size:10px!important;
        font-weight: 700;
        line-height: normal!important
    }
}

.chartpane .order.green,.chartpane .order.red {
    color: #f5f5f5
}

.chartpane-admin .buy,.chartpane-admin .sell {
    align-items: center;
    background-color: #04c793;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 800;
    justify-content: center;
    padding: 10px 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane-admin .buy:hover,.chartpane-admin .sell:hover {
    background-color: #37ce71
}

.chartpane-admin .sell {
    background-color: #fa4b62;
    margin-top: 5px
}

.chartpane-admin .sell:hover {
    background-color: #e73951
}

.chartpane-admin .buy.box.disable,.chartpane-admin .sell.box.disable {
    opacity: .5;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.chartpane-admin .order {
    align-items: center;
    background: transparent!important;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    margin-top: 5px;
    padding: 10px 20px!important
}

.chartpane-admin .order.green {
    color: #04c793
}

.chartpane-admin .order.red {
    color: #fa4b62
}

@media screen and (max-width: 1200px) {
    .chartpane-admin {
        align-items:center;
        display: flex;
        flex-direction: row;
        justify-content: space-between
    }

    .chartpane-admin .order {
        font-size: 15px;
        font-weight: 600;
        margin-top: 0;
        padding: 0!important
    }

    .chartpane-admin .order span:last-child {
        margin-top: -5px
    }

    .chartpane-admin .buy,.chartpane-admin .sell {
        margin-top: 0;
        width: 200px
    }
}

@media screen and (max-width: 900px) {
    .chartpane-admin .buy,.chartpane-admin .sell {
        width:120px
    }
}

@media screen and (max-width: 768px) {
    .chartpane-admin .buy,.chartpane-admin .sell {
        width:auto
    }
}

.chart-history .statistics .title-area {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .chart-history .statistics .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.chart-history .statistics .title-area .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .chart-history .statistics .title-area .select-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.chart-history .statistics .title-area .select-box div {
    text-align: left
}

.chart-history .history {
    margin-top: 30px
}

.chart-history .history .title-area {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .chart-history .history .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.chart-history .history .title-area .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .chart-history .history .title-area .select-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.chart-history .history .title-area .select-box div {
    text-align: left
}

@media screen and (max-width: 992px) {
    .chart-history .history .title-area .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.chart-history .history .table-row {
    background: #050819
}

.chart-history .history .ant-table-thead>tr>th {
    background: #181a20!important
}

.chart-history .breadcrumb {
    background: inherit;
    border-radius: 5px;
    box-shadow: 0 7px 29px 0 hsla(240,5%,41%,.2);
    color: inherit;
    margin-bottom: 30px;
    padding: 30px;
    width: 100%
}

@media screen and (max-width: 576px) {
    .chart-history .breadcrumb {
        margin-bottom:10px;
        padding: 20px
    }
}

.chart-history-in-new-dashboard .title-area {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .chart-history-in-new-dashboard .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.chart-history-in-new-dashboard .title-area .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .chart-history-in-new-dashboard .title-area .select-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.chart-history-in-new-dashboard .title-area .select-box div {
    text-align: left
}

@media screen and (max-width: 992px) {
    .chart-history-in-new-dashboard .title-area .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.chart-history-in-new-dashboard .title-area button {
    background: linear-gradient(180deg,#f5b42a,#f5b42a);
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    padding: 10px 16px;
    transition: all .15s ease
}

.chart-history-in-new-dashboard .title-area button:hover {
    background: linear-gradient(180deg,#ffc107,#ffc107)
}

.chart-history-in-new-dashboard .trade-history-bo-table-bo-1 .t1-row {
    background: #050819
}

.chart-history-in-new-dashboard .trade-history-bo-table-bo-1 .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.chart-history-in-new-dashboard .trade-history-bo-table-bo-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.chart-history-in-new-dashboard .trade-history-bo-table-bo-1 .ant-table-placeholder {
    background: #050819
}

.chart-history-in-new-dashboard .ant-pagination-item {
    border-radius: 50%
}

.chart-history-in-new-dashboard .ant-pagination-item-active {
    background-color: #f0b90b
}

.chart-history-in-new-dashboard .ant-pagination-item-active a {
    color: #fff!important;
    font-weight: 700
}

.chart-history-in-new-dashboard .ant-pagination-next button,.chart-history-in-new-dashboard .ant-pagination-prev button {
    border: none;
    border-radius: 50%;
    outline: none
}

.chart-history-admin .history-new624 .title-area {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 10px
}

.chart-history-admin .history-new624 .ant-table-cell {
    background: #011022!important
}

.tableHistory {
    border-radius: 6px;
    display: block;
    margin-top: 16px;
    outline: 1px solid #1f2f53;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%
}

.tableHistory .userNameFeild {
    color: #f0b90b;
    text-decoration: underline
}

.tableHistory .userNameFeild:hover {
    cursor: pointer;
    text-decoration: underline;
    transition: all .3s ease
}

.tableHistory table,.tableHistory td,.tableHistory th {
    background-color: #181a20;
    border: 1px solid #1f2f53;
    border-collapse: collapse;
    text-align: center
}

.tableHistory table {
    border-radius: 6px;
    outline: 1px solid #1f2f53;
    overflow: hidden;
    table-layout: auto;
    width: 100%
}

.tableHistory th {
    color: hsla(0,0%,100%,.5);
    font-weight: 400;
    padding: 12px;
    width: 25%
}

.tableHistory td {
    padding: 12px
}

.tableHistory td:first-child,.tableHistory th:first-child {
    max-width: 300px;
    min-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto
}

.tableHistory td:not(:first-child),.tableHistory th:not(:first-child) {
    min-width: 150px;
    text-align: center;
    width: 25%
}

@media(max-width: 768px) {
    .tableHistory table {
        table-layout:auto
    }

    .tableHistory td,.tableHistory th {
        min-width: 0;
        min-width: auto;
        width: auto
    }
}

.tools {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%
}

@media screen and (min-width: 600px) {
    .tools {
        flex-direction:row;
        gap: 0;
        width: -moz-fit-content;
        width: fit-content
    }
}

.tools .ant-picker {
    width: 100%
}

.tools .rangePickerCustom {
    align-items: center;
    border-bottom: 1px solid #1f2f53;
    display: flex;
    gap: 4px;
    margin-right: 16px
}

@media(min-width: 1024px) {
    .tools .rangePickerCustom {
        min-width:320px!important
    }
}

.tools .btnSearch {
    align-items: center;
    border-radius: .5rem!important;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: .75rem 1.5rem!important
}

.trade-admin {
    visibility: visible
}

.trade-admin .selection-admin-chart {
    display: block;
    width: 90vw
}

.trade-admin .selection-admin {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.trade-admin .selection-admin .btc-usdt {
    align-items: center;
    background-color: #1d233b;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    padding: 5px 10px;
    width: -moz-fit-content;
    width: fit-content
}

.trade-admin .selection-admin .btc-usdt img {
    height: 18px;
    margin-right: 5px;
    width: 18px
}

.trade-admin .selection-admin .btc-usdt span {
    color: #f5f5f5;
    font-size: 13px
}

.trade-admin .selection-admin .user-online b {
    font-size: 16px
}

.trade-mobile {
    margin: -5px
}

.trade-desktop {
    margin: -20px
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .trade-desktop {
        overflow-x:hidden;
        touch-action: pan-y
    }
}

.bg-gradient-primary {
    background-color: #f0b90b
}

.header-master .left-nav img {
    height: 32px!important;
    max-width: 100%
}

@media(min-width: 1024px) {
    .header-master .left-nav img {
        height:40px!important
    }
}

.header-master .box-header {
    --tw-text-opacity: 1;
    align-items: center;
    background-color: transparent;
    background-color: #141416;
    color: rgb(139,141,150,var(--tw-text-opacity));
    display: flex;
    height: auto;
    left: 0;
    padding: 7px 0;
    position: fixed;
    top: 0;
    transition-duration: .3s;
    transition-property: background-color,padding;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    width: 100%;
    z-index: 500!important
}

@media(min-width: 1024px) {
    .header-master .box-header {
        padding:32px 86px;
        padding: var(--header-padding,32px) 86px;
        transition: padding .3s ease-in-out,background-color .3s ease-in-out
    }
}

.header-master .scroll-down {
    background: linear-gradient(180deg,#1a1d2e,#141416)
}

.header-master .justify-between {
    justify-content: space-between!important
}

.header-master .items-center {
    align-items: center!important
}

.header-master .block {
    display: block!important
}

.header-master .w-full {
    width: 100%!important
}

.header-master .flex {
    display: flex!important
}

@media screen and (max-width: 992px) {
    .header-master .flex {
        margin-left:15px
    }
}

.header-master .btn-join-now {
    background-color: #f0b90b;
    border-radius: 3px!important;
    color: #fff;
    font-size: .75rem!important;
    font-weight: 700!important;
    line-height: 1.25rem!important;
    margin-right: .25rem!important;
    padding: 7px 10px!important
}

@media(min-width: 1024px) {
    .header-master .btn-join-now {
        border-radius:.625rem!important;
        font-size: 1.125rem!important;
        line-height: 1.75rem!important;
        margin-right: 1rem!important;
        padding: 11px 1.25rem!important
    }
}

.header-master .btn-join-now:hover {
    background-color: #f0b90b!important;
    border-color: transparent!important;
    color: #fff!important
}

.header-master .btn-login-now {
    background-color: #2f3342!important;
    border-radius: 3px!important;
    color: #fff!important;
    color: #fff;
    font-size: .75rem!important;
    font-weight: 700!important;
    line-height: 1.25rem!important;
    margin-right: .25rem!important;
    padding: 7px 10px!important
}

@media(min-width: 1024px) {
    .header-master .btn-login-now {
        border-radius:.625rem!important;
        font-size: 1.125rem!important;
        line-height: 1.75rem!important;
        margin-right: 1rem!important;
        padding: 11px 1.25rem!important
    }
}

.header-master .btn-login-now:hover {
    background-color: #2f3342!important;
    border-color: transparent!important;
    color: #f0b90b!important;
    opacity: .6!important
}

.home-container {
    background-color: #141416;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 40px;
    width: 100%
}

.max-w-custom-container {
    max-width: 1140px!important
}

@media(min-width: 1024px) {
    .home-container {
        padding-left:5.375rem;
        padding-right: 5.375rem
    }
}

.home-page {
    background-color: #141416;
    font-family: Sarabun,sans-serif!important;
    overflow-x: hidden;
    position: relative;
    transition: all .75s ease
}

.home-page .main-banner-icon {
    bottom: -70px;
    cursor: pointer;
    left: 0;
    position: relative
}

@media screen and (max-width: 1024px) {
    .home-page .main-banner-icon {
        bottom:-1px;
        display: block;
        height: 40px;
        left: 20px;
        width: 40px
    }
}

.home-page .main-banner-icon img {
    height: auto;
    max-width: 100%
}

.home-page .text-center {
    text-align: center!important
}

.home-page .text-primary {
    color: #f0b90b
}

.home-page .mx-auto {
    margin-left: auto!important;
    margin-right: auto!important
}

.home-page .px-4 {
    padding-left: 1rem!important;
    padding-right: 1rem!important
}

.home-page .mt-6 {
    margin-top: 1.5rem!important
}

.home-page .justify-center {
    justify-content: center!important
}

.home-page .home-intro-session {
    padding: 200px 86px 130px;
    position: relative
}

@media screen and (max-width: 768px) {
    .home-page .home-intro-session {
        padding:80px 0 50px
    }
}

.home-page .home-intro-session .home-intro-content {
    display: flex;
    flex-wrap: wrap!important
}

.home-page .home-intro-session .main-banner-content {
    position: relative!important;
    width: 50%!important;
    z-index: 2
}

@media screen and (max-width: 1024px) {
    .home-page .home-intro-session .main-banner-content {
        padding:15px
    }
}

@media screen and (max-width: 768px) {
    .home-page .home-intro-session .main-banner-content {
        width:100%!important
    }
}

.home-page .home-intro-session .main-banner-content .right-image {
    padding-left: 1rem!important;
    padding-right: 1rem!important
}

.home-page .home-intro-session .main-banner-sub-title {
    color: #777e90;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase
}

@media screen and (max-width: 1024px) {
    .home-page .home-intro-session .main-banner-sub-title {
        font-size:12px
    }
}

.home-page .home-intro-session .main-banner-title {
    color: #fcfcfd;
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    margin-bottom: 40px;
    max-width: 500px;
    position: relative
}

@media screen and (max-width: 1024px) {
    .home-page .home-intro-session .main-banner-title {
        font-size:32px;
        line-height: 40px;
        margin-bottom: 30px
    }
}

.home-page .home-intro-session .main-banner-description {
    color: #777e90;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 50px;
    max-width: 500px
}

@media screen and (max-width: 1024px) {
    .home-page .home-intro-session .main-banner-description {
        font-size:14px;
        line-height: 20px;
        margin-bottom: 30px
    }
}

.home-page .trading-platform {
    color: #fcfcfd;
    padding: 125px 0 225px;
    position: relative
}

@media(max-width: 1024px) {
    .home-page .trading-platform {
        padding:0 15px 50px
    }
}

.home-page .trading-platform-content-text {
    align-items: center!important;
    display: flex;
    flex-wrap: wrap!important
}

@media(min-width: 1024px) {
    .home-page .trading-platform-content-text .left,.home-page .trading-platform-content-text .right {
        width:50%!important
    }
}

.home-page .trading-platform-content-text img {
    height: auto;
    max-width: 100%
}

.home-page .trading-platform-content-text .trading-platform-title {
    color: #fcfcfd;
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    margin-bottom: 30px;
    max-width: 600px
}

@media(max-width: 1024px) {
    .home-page .trading-platform-content-text .trading-platform-title {
        font-size:24px;
        line-height: 30px
    }
}

.home-page .trading-platform-content-text .trading-platform-desc {
    color: #777e90;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 85px;
    max-width: 600px
}

@media(max-width: 1024px) {
    .home-page .trading-platform-content-text .trading-platform-desc {
        font-size:14px;
        line-height: 20px;
        margin-bottom: 30px
    }
}

.home-page .sectionNewContainer .overlay {
    content: "";
    display: block;
    height: 150px;
    pointer-events: none;
    z-index: 1
}

.home-page .sectionNewContainer .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative
}

@media screen and (min-width: 768px) {
    .home-page .sectionNewContainer .container {
        flex-direction:row
    }
}

.home-page .sectionNewContainer .container .left {
    position: relative;
    width: 100%;
    z-index: 2
}

@media screen and (min-width: 768px) {
    .home-page .sectionNewContainer .container .left {
        width:50%
    }
}

.home-page .sectionNewContainer .container .left .top {
    font-size: 60px;
    font-weight: 200;
    line-height: 1.15em;
    text-align: left
}

@media screen and (min-width: 480px) {
    .home-page .sectionNewContainer .container .left .top {
        text-align:center
    }
}

@media screen and (min-width: 768px) {
    .home-page .sectionNewContainer .container .left .top {
        text-align:start
    }
}

@media screen and (max-width: 768px) {
    .home-page .sectionNewContainer .container .left .top {
        font-size:36px
    }
}

.home-page .sectionNewContainer .container .left .center {
    color: #7483aa;
    font-size: 20px;
    font-weight: 200;
    margin: 70px auto 0;
    max-width: 400px;
    text-align: left
}

@media screen and (min-width: 480px) {
    .home-page .sectionNewContainer .container .left .center {
        text-align:center
    }
}

@media screen and (min-width: 768px) {
    .home-page .sectionNewContainer .container .left .center {
        margin:70px 0 0;
        text-align: start
    }
}

@media screen and (max-width: 768px) {
    .home-page .sectionNewContainer .container .left .center {
        font-size:16px;
        margin-top: 35px
    }
}

.home-page .sectionNewContainer .container .left .bottom {
    align-items: center;
    display: flex;
    margin-top: 30px
}

@media screen and (max-width: 768px) {
    .home-page .sectionNewContainer .container .left .bottom img {
        height:36px;
        width: 36px
    }
}

.home-page .sectionNewContainer .container .left .bottom .text {
    align-items: center;
    background: #2c3753;
    border-radius: 19px;
    box-sizing: border-box;
    color: #e8eef7;
    display: flex;
    flex-direction: row;
    font-size: 18px;
    font-weight: 400;
    gap: .5ex;
    height: 38px;
    justify-content: center;
    padding: 0 22px;
    white-space: nowrap
}

@media screen and (max-width: 768px) {
    .home-page .sectionNewContainer .container .left .bottom .text {
        font-size:14px;
        padding: 0 12px
    }
}

.home-page .sectionNewContainer .container .left .btnDemo {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    background-color: #2f96f0;
    border: 1px solid #2f96f0;
    border-radius: 3px!important;
    border-radius: 8px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 25px!important;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    line-height: 46px;
    margin-top: 60px;
    max-width: 100%;
    max-width: 340px;
    min-width: 200px;
    outline: none;
    padding: 0 60px 0 30px;
    position: relative;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    touch-action: manipulation;
    transition: opacity .2s,transform .2s,box-shadow .2s,background-image .2s,background-color .2s,color .2s,border-color .2s!important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: pre-wrap
}

@media screen and (max-width: 768px) {
    .home-page .sectionNewContainer .container .left .btnDemo {
        font-size:16px;
        margin-top: 30px;
        margin-inline:auto;max-width: 400px;
        width: 100%
    }
}

.home-page .sectionNewContainer .container .right {
    align-items: center;
    width: 100%
}

@media screen and (min-width: 768px) {
    .home-page .sectionNewContainer .container .right {
        width:50%
    }
}

.home-page .sectionNewContainer .container .right .device {
    width: 100%
}

.home-page.visible {
    opacity: 1
}

.home-page.hidden {
    opacity: 0
}

.home-header {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    transition: all .5s ease;
    width: 100%
}

.home-header .home-header-navbar {
    background-color: transparent;
    left: 0;
    padding-block:20px;position: fixed;
    right: 0;
    top: 0;
    transition: all .25s ease;
    z-index: 99
}

.home-header .home-header-navbar .menu-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.home-header .home-header-navbar .menu-container .left.logo img {
    cursor: pointer;
    height: auto;
    width: 192px
}

@media screen and (max-width: 768px) {
    .home-header .home-header-navbar .menu-container .left.logo img {
        height:auto;
        width: 128px
    }
}

.home-header .home-header-navbar .menu-container .right.actions {
    display: flex;
    gap: 10px
}

.home-header .home-header-navbar .menu-container .action-btn {
    border-radius: 10px;
    font-size: 15pt;
    font-weight: 400!important;
    height: 48px;
    transition: all .3s ease
}

@media screen and (max-width: 768px) {
    .home-header .home-header-navbar .menu-container .action-btn {
        font-size:12pt;
        font-weight: 400!important
    }
}

.home-header .home-header-navbar .menu-container .action-btn.scroll-down {
    border-radius: 5px;
    height: 40px
}

.home-header .home-header-navbar.scroll-down {
    background-color: #141416;
    padding-block:5px}

@media(max-width: 768px) {
    .home-header .home-header-navbar.scroll-down {
        padding-top:12px
    }
}

.home-header .home-header-content {
    flex: 1 1;
    padding-block:30px;padding-top: 90px
}

.home-header .home-header-content .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%
}

.home-header .home-header-content .container h1.title {
    color: #f5f5f5;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center
}

@media screen and (max-width: 768px) {
    .home-header .home-header-content .container h1.title {
        font-size:2rem
    }
}

.home-header .home-header-content .container h3.subtitle {
    color: #d6d6d6;
    font-size: 1.1rem;
    padding-inline:430px;text-align: center
}

@media screen and (max-width: 1300px) {
    .home-header .home-header-content .container h3.subtitle {
        padding-inline:300px
    }
}

@media screen and (max-width: 992px) {
    .home-header .home-header-content .container h3.subtitle {
        padding-inline:150px
    }
}

@media screen and (max-width: 576px) {
    .home-header .home-header-content .container h3.subtitle {
        padding-inline:50px
    }
}

@media screen and (max-width: 450px) {
    .home-header .home-header-content .container h3.subtitle {
        padding-inline:0
    }
}

.home-header .home-header-content .container button {
    margin-block:50px}

.home-header .home-header-content .container button span {
    font-size: 1.1rem;
    font-weight: 600
}

.home-header .home-header-content .container img {
    height: 370px;
    width: 636px
}

@media screen and (max-width: 768px) {
    .home-header .home-header-content .container img {
        height:300px;
        width: 516px
    }
}

@media screen and (max-width: 576px) {
    .home-header .home-header-content .container img {
        height:auto;
        width: 100%
    }
}

.home-header.scroll-down {
    background-position: 100% 100%
}

.home-intro {
    background-color: #141416;
    position: relative;
    width: 100%
}

.home-intro .container {
    gap: 50px;
    grid-template-columns: repeat(3,1fr);
    padding-block:60px}

@media screen and (max-width: 768px) {
    .home-intro .container {
        gap:25px
    }
}

@media screen and (max-width: 576px) {
    .home-intro .container {
        gap:40px;
        grid-template-columns: 1fr
    }
}

.how-we-work {
    overflow: hidden;
    padding: 180px 86px 130px;
    position: relative
}

@media(max-width: 1024px) {
    .how-we-work {
        padding:50px 15px 0
    }
}

.how-we-work .how-we-work-content .how-we-work-sub-title {
    color: #777e90;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    text-align: center;
    text-transform: uppercase
}

.how-we-work .how-we-work-content .how-we-work-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 100px;
    text-align: center
}

@media(max-width: 1024px) {
    .how-we-work .how-we-work-content .how-we-work-title {
        font-size:24px;
        line-height: 30px;
        margin-bottom: 50px
    }
}

.how-we-work .how-we-work-content .how-we-work-icon {
    position: absolute;
    right: -100px;
    top: 0
}

.how-we-work .how-we-work-content .how-we-work-icon img {
    width: 50%
}

@media(max-width: 1024px) {
    .how-we-work .how-we-work-content .how-we-work-icon {
        display:none
    }
}

.how-we-work .how-we-work-content .how-we-work-list {
    align-items: stretch;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

@media(max-width: 1024px) {
    .how-we-work .how-we-work-content .how-we-work-list {
        display:block;
        margin-bottom: 0
    }
}

.how-we-work .how-we-work-content .how-we-work-list .how-we-work-item {
    border-right: 1px solid #777e90;
    padding: 40px 80px 80px;
    width: 33.33%
}

@media(max-width: 1024px) {
    .how-we-work .how-we-work-content .how-we-work-list .how-we-work-item {
        border:none;
        padding: 0 0 50px;
        width: 100%
    }
}

.how-we-work .how-we-work-content .how-we-work-list .how-we-work-item .how-we-work-item-icon {
    margin-bottom: 35px
}

.how-we-work .how-we-work-content .how-we-work-list .how-we-work-item .how-we-work-item-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px
}

.how-we-work .how-we-work-content .how-we-work-list .how-we-work-item .how-we-work-item-text {
    color: #777e90;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0
}

.how-we-work .how-we-work-content .how-we-work-list .how-we-work-item:first-child {
    padding-left: 0
}

.how-we-work .how-we-work-content .how-we-work-list .how-we-work-item:last-child {
    border-right: none;
    padding-right: 0
}

.our-portfolio {
    padding: 130px 86px;
    position: relative
}

@media(max-width: 1024px) {
    .our-portfolio {
        padding:50px 15px
    }
}

.our-portfolio .our-portfolio-icon {
    position: absolute;
    right: -45px;
    top: -45px
}

@media(max-width: 1024px) {
    .our-portfolio .our-portfolio-icon {
        display:none
    }
}

.our-portfolio .our-portfolio-image {
    margin-bottom: 110px;
    position: relative
}

@media(max-width: 1024px) {
    .our-portfolio .our-portfolio-image {
        margin-bottom:50px
    }
}

.our-portfolio .our-portfolio-image img {
    height: auto;
    max-width: 100%;
    position: relative;
    z-index: 3
}

.our-portfolio .our-portfolio-image:before {
    background: #353945;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 65%;
    width: 100%;
    z-index: 1
}

.our-portfolio .our-portfolio-title {
    color: #fcfcfd;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 30px
}

@media(max-width: 1024px) {
    .our-portfolio .our-portfolio-title {
        font-size:24px;
        line-height: 30px
    }
}

.our-portfolio .our-portfolio-text {
    color: #777e90;
    font-size: 18px;
    line-height: 24px;
    margin: 0 auto 40px;
    max-width: 520px
}

@media(max-width: 1024px) {
    .our-portfolio .our-portfolio-text {
        font-size:14px;
        line-height: 20px;
        margin-bottom: 30px
    }
}

.list-coin {
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    background-color: #9f7c04;
    background-position: 50%;
    height: 105px;
    margin-bottom: 150px;
    min-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: none;
    width: 100vw;
    z-index: 2
}

.list-coin::-webkit-scrollbar {
    display: none
}

@media(max-width: 1024px) {
    .list-coin {
        margin-bottom:0
    }
}

.list-coin .coin-wrap {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center
}

@media screen and (max-width: 767px) {
    .list-coin .coin-wrap {
        width:585px
    }
}

.list-coin .coin-wrap .image-wrap {
    height: 51px;
    margin-left: 25px;
    margin-right: 25px
}

.list-coin .coin-wrap .image-wrap img {
    height: 100%;
    max-width: 100%;
    mix-blend-mode: luminosity
}

footer.home-footer {
    background-color: #02102c;
    width: 100%
}

footer.home-footer .container {
    padding-block:60px}

footer.home-footer .container .top {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 768px) {
    footer.home-footer .container .top {
        flex-direction:column;
        justify-content: flex-start
    }
}

footer.home-footer .container .top .col1 {
    width: 30%
}

@media screen and (max-width: 1200px) {
    footer.home-footer .container .top .col1 {
        width:auto
    }
}

@media screen and (max-width: 768px) {
    footer.home-footer .container .top .col1 {
        align-items:center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 30px
    }
}

footer.home-footer .container .top .col1 img {
    cursor: pointer;
    height: 40px;
    margin-bottom: 12px;
    width: 141px
}

footer.home-footer .container .top .col1 div {
    color: #c3c3c3;
    font-size: 14px
}

footer.home-footer .container .top .col2 {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 40%
}

@media screen and (max-width: 1200px) {
    footer.home-footer .container .top .col2 {
        flex-direction:column;
        width: auto
    }
}

@media screen and (max-width: 768px) {
    footer.home-footer .container .top .col2 {
        margin-bottom:30px
    }
}

footer.home-footer .container .top .col2 a {
    color: #c3c3c3;
    font-size: 14px;
    margin-inline:20px;text-transform: uppercase
}

footer.home-footer .container .top .col2 a:hover {
    text-decoration: underline
}

@media screen and (max-width: 1200px) {
    footer.home-footer .container .top .col2 a {
        margin-block:3px;
        margin-inline:0}
}

footer.home-footer .container .top .col3 {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    visibility: hidden;
    width: 20%
}

@media screen and (max-width: 1200px) {
    footer.home-footer .container .top .col3 {
        width:auto
    }
}

footer.home-footer .container .divider {
    background-color: gray;
    height: 1px;
    margin-block:30px;width: 100%
}

footer.home-footer .container .bottom {
    color: #c3c3c3;
    font-size: 14px;
    text-align: justify
}

@media screen and (max-width: 576px) {
    footer.home-footer .container .bottom {
        font-size:12px
    }
}

.home-totop {
    background-color: #f7c740;
    border-radius: 5px;
    bottom: 10px;
    color: #fff;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    position: fixed;
    right: 10px;
    text-align: center;
    width: 30px;
    z-index: 99
}

.home-totop:hover {
    background-color: #d1a305
}

.footerContainer {
    background-color: #181a20!important;
    border-top: 1px solid hsla(229,5%,57%,.28)
}

.homeFooterContainer {
    background-color: #181a20!important;
    color: #fff;
    margin-left: auto;
    margin-right: auto
}

.homeFooterContainer .row {
    padding: 3rem 0
}

.homeFooterContainer .row.note {
    border-top: 1px solid hsla(229,5%,57%,.28);
    color: hsla(0,0%,100%,.6);
    opacity: .6
}

.homeFooterContainer .row:first-of-type {
    grid-gap: 16px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(1,1fr)
}

@media screen and (min-width: 768px) {
    .homeFooterContainer .row:first-of-type {
        grid-template-columns:repeat(4,1fr)
    }
}

.homeFooterContainer .row:first-of-type .col .brand {
    margin-bottom: 12px
}

.homeFooterContainer .row:first-of-type .col .brand img {
    cursor: pointer;
    height: 50px
}

.homeFooterContainer .row:first-of-type .col .contact .copyright {
    color: hsla(0,0%,100%,.6);
    margin-bottom: 6px;
    opacity: .6
}

.homeFooterContainer .row:first-of-type .col .contact .email {
    color: #fff
}

.homeFooterContainer .row:first-of-type .col .contact .email span {
    color: #f0b90b
}

.homeFooterContainer .row:first-of-type .col .label {
    color: #fff;
    font-weight: 700;
    margin: 8px 0 20px
}

.homeFooterContainer .row:first-of-type .col .link {
    color: hsla(0,0%,100%,.6);
    cursor: pointer;
    display: block;
    margin-bottom: 8px;
    opacity: .6
}

.homeFooterContainer .row:first-of-type .col .link:hover {
    color: #f0b90b
}

.get-started-in-steps {
    padding-bottom: 160px;
    padding-top: 200px;
    position: relative
}

@media(max-width: 1024px) {
    .get-started-in-steps {
        padding-bottom:50px;
        padding-top: 50px
    }
}

.get-started-in-steps .get-started-in-steps-icon {
    left: -40px;
    position: absolute;
    top: 0
}

.get-started-in-steps .get-started-in-steps-icon img {
    height: auto;
    max-width: 100%
}

@media(max-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-icon {
        display:none
    }
}

.get-started-in-steps .get-started-in-steps-title {
    color: #fcfcfd;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 100px
}

@media(max-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-title {
        font-size:24px;
        line-height: 30px;
        margin-bottom: 50px
    }
}

.get-started-in-steps .get-started-in-steps-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

@media(max-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-list {
        display:block
    }
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item {
    padding: 0 80px;
    width: 33.3333%
}

@media(max-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item {
        margin-bottom:50px;
        padding: 0;
        width: 100%
    }
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item img {
    display: block;
    height: auto;
    max-width: 100%
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item:nth-child(2) {
    position: relative
}

@media(min-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item:nth-child(2) .get-started-in-steps-item-icon:after,.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item:nth-child(2) .get-started-in-steps-item-icon:before {
        background:url(/static/media/connect-line.99b03eec2fc3b854dc3e.svg) 0 0 no-repeat;
        content: "";
        display: block;
        height: 12px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 160px
    }
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item:nth-child(2) .get-started-in-steps-item-icon:after {
    left: 104px
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item:nth-child(2) .get-started-in-steps-item-icon:before {
    right: 104px
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item-icon {
    display: inline-block;
    margin-bottom: 80px;
    position: relative
}

@media(max-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item-icon {
        margin-bottom:20px;
        width: 50px
    }
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item-sub-title {
    color: #777e90;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 35px
}

@media(max-width: 1024px) {
    .get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item-sub-title {
        margin-bottom:15px
    }
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item-title {
    color: #fcfcfd;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px
}

.get-started-in-steps .get-started-in-steps-list .get-started-in-steps-item-text {
    color: #e6e8ec;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0
}

.with-line:after,.with-line:before {
    background: url(/static/media/connect-line.99b03eec2fc3b854dc3e.svg) 0 0 no-repeat;
    content: "";
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 160px
}

.with-line:before {
    left: -170px
}

.with-line:after {
    right: -170px
}

.socialFooter .socialIcon {
    height: 40px!important;
    margin-right: 5px;
    margin-top: 10px;
    width: 40px!important
}

.btn-start {
    -ms-flex-pack: center;
    align-items: center;
    background-color: #f0b90b;
    border-radius: 30px!important;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600!important;
    justify-content: center;
    line-height: 20px;
    margin-left: 0!important;
    padding: 20px 35px;
    text-align: center;
    text-transform: uppercase;
    transition: all .35s ease-in-out;
    white-space: nowrap;
    width: 240px!important
}

@media screen and (max-width: 1024px) {
    .btn-start {
        font-size:14px;
        font-weight: 400!important;
        line-height: 1;
        padding: 15px 40px
    }
}

.btn-start:hover {
    background-color: #f0b90b!important;
    border-color: transparent!important;
    color: #fff!important
}

.mb-110px {
    margin-bottom: 110px!important
}

.transfer-child .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

.transfer-child .payment-acc {
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 16px;
    padding: 20px;
    text-align: center
}

.transfer-child .payment-acc .row1 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px
}

.transfer-child .payment-acc .row2 {
    align-items: center;
    display: flex;
    justify-content: center
}

.transfer-child .payment-acc .row2 img {
    display: block;
    height: 20px;
    margin-right: 8px;
    width: 20
}

.transfer-child .field {
    margin-bottom: 16px
}

.transfer-child .transfer-description {
    margin: 50px 0
}

.transfer-child .transfer-description dl div {
    display: flex;
    margin-bottom: 15px
}

.transfer-child .transfer-description dl div dt {
    min-width: 40px;
    width: 40px
}

.transfer-child .transfer-description dl div dt i {
    color: #f0b90b;
    font-size: 22px;
    opacity: .5
}

.transfer-alert-in-modal-klo {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px
}

.transfer-alert-in-modal-klo i {
    color: red;
    display: block;
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center
}

.transfer-alert-in-modal-klo h3 {
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 700;
    text-align: center
}

.transfer-alert-in-modal-klo p {
    color: #f5f5f5;
    font-size: 15px;
    text-align: center
}

.transfer-alert-in-modal-klo button {
    margin-top: 16px
}

.transfer-history {
    animation: fadeInRight;
    animation-duration: .5s
}

.transfer-history .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .transfer-history .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.transfer-history .title-area .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .transfer-history .title-area .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.transfer-history .table-row {
    background: #050819
}

.transfer-history .ant-table-thead>tr>th {
    background: #181a20!important
}

.commission-admin,.img-c,.total-ib,.transfer-commission {
    background: inherit;
    border-radius: 5px;
    box-shadow: 0 7px 29px 0 hsla(240,5%,41%,.2);
    color: inherit;
    padding: 30px;
    width: 100%
}

@media screen and (max-width: 576px) {
    .commission-admin,.img-c,.total-ib,.transfer-commission {
        padding:20px
    }
}

.commission-admin .title-area,.img-c .title-area,.total-ib .title-area,.transfer-commission .title-area {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .commission-admin .title-area,.img-c .title-area,.total-ib .title-area,.transfer-commission .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.commission-admin .title,.img-c .title,.total-ib .title,.transfer-commission .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .commission-admin .select-box,.img-c .select-box,.total-ib .select-box,.transfer-commission .select-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.commission-admin .select-box div,.img-c .select-box div,.total-ib .select-box div,.transfer-commission .select-box div {
    text-align: left
}

@media screen and (max-width: 992px) {
    .commission-admin .pagination-box,.img-c .pagination-box,.total-ib .pagination-box,.transfer-commission .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.img-c img {
    border-radius: 5px;
    max-width: 450px;
    width: 100%
}

.commission-admin {
    border-radius: 0;
    border-radius: initial;
    box-shadow: none;
    padding: 0
}

@media screen and (max-width: 576px) {
    .commission-admin {
        padding:0
    }
}

.commission-admin .commission-admin-aa-table .t1-row {
    background: #050819
}

.commission-admin .commission-admin-aa-table .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.commission-admin .commission-admin-aa-table .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.commission-admin .commission-admin-aa-table .ant-table-placeholder {
    background: #050819
}

.affiliate-page {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 65px);
    justify-content: space-between;
    overflow: hidden;
    padding: 30px;
    position: relative;
    width: 100%;
    z-index: 0
}

@media screen and (max-width: 768px) {
    .affiliate-page {
        height:calc(100vh - 56px);
        padding: 15px
    }
}

.affiliate-page .center {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    z-index: 2
}

@media screen and (max-width: 1300px) {
    .affiliate-page .center {
        align-items:center;
        flex-direction: column;
        justify-content: center
    }
}

.affiliate-page .center .vip-license {
    max-width: 540px
}

@media screen and (max-width: 1300px) {
    .affiliate-page .center .vip-license {
        width:70%
    }
}

@media screen and (max-width: 768px) {
    .affiliate-page .center .vip-license {
        width:100%
    }
}

.affiliate-page .center .vip-license .vip-title {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem
}

@media screen and (max-width: 576px) {
    .affiliate-page .center .vip-license .vip-title {
        font-size:1.125rem
    }
}

.affiliate-page .center .vip-license button {
    border-radius: .25rem;
    font-size: 16px;
    font-weight: 700;
    height: 46px;
    padding: 0 2.5rem
}

@media screen and (max-width: 576px) {
    .affiliate-page .center .vip-license button {
        font-size:16px
    }
}

.affiliate-page .center .referral-zone {
    background-color: #181a20;
    border: 1px solid #f0b90b;
    border-radius: 18px;
    margin-left: 20px;
    padding: 1.25rem 1.25rem 2.25rem;
    width: 540px
}

@media screen and (max-width: 1300px) {
    .affiliate-page .center .referral-zone {
        margin-left:0;
        margin-top: 35px;
        width: 70%
    }
}

@media screen and (max-width: 768px) {
    .affiliate-page .center .referral-zone {
        margin-top:100px;
        width: 100%
    }
}

@media screen and (max-width: 576px) {
    .affiliate-page .center .referral-zone {
        padding:1rem .5rem 2rem
    }
}

.affiliate-page .center .referral-zone .field label {
    color: #8b8d96;
    display: block;
    font-size: 14px;
    margin-bottom: 8px
}

.affiliate-page .center .referral-zone .field .input-wrapper {
    position: relative
}

.affiliate-page .center .referral-zone .field .input-wrapper input {
    background-color: #fff;
    border: 1px solid #1d233b;
    border-radius: 4px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    height: 45px;
    outline: none;
    padding: 0 10px;
    width: 100%
}

@media screen and (max-width: 576px) {
    .affiliate-page .center .referral-zone .field .input-wrapper input {
        font-size:12px;
        font-weight: 400
    }
}

.affiliate-page .center .referral-zone .field .input-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.affiliate-page .center .referral-zone .field+.field {
    margin-top: 15px
}

.affiliate-page .bottom {
    position: relative;
    z-index: 2
}

.affiliate-page .bottom .steps {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-inline:auto;position: relative;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (max-width: 1280px) {
    .affiliate-page .bottom .steps {
        align-items:flex-start;
        display: none;
        flex-direction: column
    }
}

.affiliate-page .bottom .steps .line {
    margin: 0 10px;
    width: 50px
}

.affiliate-page .bottom .steps .line div {
    background-color: #8b8d96;
    height: 1px;
    width: 100%
}

.affiliate-page .bottom .steps .item-step {
    align-items: center;
    display: flex;
    flex-direction: row;
    position: relative;
    width: 320px;
    z-index: 1
}

.affiliate-page .bottom .steps .item-step img {
    height: 55px;
    margin-right: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 52px
}

@media screen and (max-width: 992px) {
    .affiliate-page .bottom .steps .item-step img {
        height:30px;
        width: 30px
    }
}

.affiliate-page .bottom .steps .item-step .content {
    flex: 1 1
}

.affiliate-page .bottom .steps .item-step .content h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px
}

@media screen and (max-width: 812px) {
    .affiliate-page .bottom .steps .item-step .content h4 {
        max-width:none
    }
}

.affiliate-page .bottom .steps .item-step .content p {
    color: hsla(0,0%,100%,.5);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0
}

@media screen and (max-width: 812px) {
    .affiliate-page .bottom .steps .item-step .content p {
        display:none
    }
}

.affiliate-page .bottom .steps .item-step+.item-step {
    margin-left: 100px
}

@media screen and (max-width: 1200px) {
    .affiliate-page .bottom .steps .item-step+.item-step {
        margin-left:20px
    }
}

@media screen and (max-width: 812px) {
    .affiliate-page .bottom .steps .item-step+.item-step {
        margin-left:0;
        margin-top: 15px
    }
}

.affiliate-page:after {
    background: linear-gradient(0deg,rgba(1,16,34,.9),rgba(1,16,34,.3));
    background: url(/static/media/affiliate_bg.bc6828655cd97a101923.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: calc(100vh - 200px);
    inset: 0;
    opacity: .3;
    position: absolute;
    width: 100%;
    z-index: -1
}

@media screen and (max-width: 768px) {
    .affiliate-page:after {
        height:calc(100vh - 220px)
    }
}

.modal-confirm-100do .modal-confirm-100do-content {
    align-items: center;
    display: flex;
    flex-direction: column
}

.modal-confirm-100do .modal-confirm-100do-content h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center
}

.modal-confirm-100do .modal-confirm-100do-content img {
    height: 205px;
    margin-block:20px;-o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 211px
}

.modal-confirm-100do .modal-confirm-100do-content p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    text-align: center
}

.modal-confirm-100do .modal-confirm-100do-content span.confirmNote {
    color: #a9a9a9;
    font-size: 12px;
    margin-top: 10px;
    padding: 0 20px;
    text-align: center
}

.modal-thongbao-khongdutien {
    align-items: center;
    display: flex;
    flex-direction: column
}

.modal-thongbao-khongdutien h2.title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 30px;
    text-align: center
}

.modal-thongbao-khongdutien img {
    margin-bottom: 25px;
    width: 50%
}

.stepCarousel {
    background-color: #181a20;
    display: block;
    margin: 0 -15px;
    padding: 40px 15px
}

@media screen and (min-width: 1280px) {
    .stepCarousel {
        display:none
    }
}

.stepCarousel .item-step {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    z-index: 1
}

.stepCarousel .item-step img {
    height: 60px;
    margin-right: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 60px
}

@media screen and (max-width: 992px) {
    .stepCarousel .item-step img {
        height:52px;
        width: 52px
    }
}

.stepCarousel .item-step .content h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px
}

@media screen and (max-width: 812px) {
    .stepCarousel .item-step .content h4 {
        max-width:none
    }
}

.stepCarousel .item-step .content p {
    color: hsla(0,0%,100%,.5);
    font-size: .75rem;
    line-height: 1.3;
    margin-bottom: 0
}

.streak-challenge-page {
    background-color: #090b0d;
    margin: -30px;
    position: relative
}

@media screen and (max-width: 768px) {
    .streak-challenge-page {
        margin:-10px
    }
}

.streak-challenge-page .c-container {
    margin-inline:auto;max-width: 1400px;
    padding: 0 15px;
    width: 100%
}

.streak-challenge-page .phihanhgia {
    height: 356px;
    left: -62px;
    position: absolute;
    top: 240px;
    width: 374px;
    z-index: 10
}

@media screen and (max-width: 1200px) {
    .streak-challenge-page .phihanhgia {
        height:256px;
        top: 340px;
        width: 274px
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .phihanhgia {
        height:156px;
        left: -32px;
        top: 440px;
        width: 174px
    }
}

@media screen and (max-width: 450px) {
    .streak-challenge-page .phihanhgia {
        display:none
    }
}

.streak-challenge-page .phihanhgia img {
    height: 100%;
    width: 100%
}

.streak-challenge-page .top {
    background: url(/static/media/earth.293709cd13d8b60718c5.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 95px;
    position: relative
}

.streak-challenge-page .top .challenge-title {
    color: #fff;
    font-family: SVN-MissionX,sans-serif;
    font-size: 60px;
    line-height: 1;
    margin-bottom: 95px;
    padding: 0 20px;
    text-align: center
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .challenge-title {
        font-size:55px
    }
}

.streak-challenge-page .top .prize-pool {
    align-items: center;
    background: rgba(41,12,126,.44);
    border: 1px solid #592ae6;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    height: 116px;
    justify-content: center;
    margin-inline:auto;max-width: 90%;
    position: relative;
    width: 520px
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .prize-pool {
        height:82px;
        width: 420px
    }
}

.streak-challenge-page .top .prize-pool span.main-price {
    color: #f7a62f;
    font-family: SVN-MissionX,sans-serif;
    font-size: 48px
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .prize-pool span.main-price {
        font-size:38px
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .top .prize-pool span.main-price {
        font-size:28px
    }
}

.streak-challenge-page .top .prize-pool .prize-pool-top {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    left: 50%;
    margin-bottom: .5rem;
    position: absolute;
    text-align: center;
    top: -32px;
    transform: translateX(-50%)
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .prize-pool .prize-pool-top {
        font-size:18px
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .top .prize-pool .prize-pool-top {
        font-size:16px
    }
}

.streak-challenge-page .top .prize-pool .prize-pool-top span {
    align-items: center;
    background: #290c7e;
    border: 2px solid #592ae6;
    border-radius: 35px;
    color: #f7a62f;
    display: flex;
    flex-direction: row;
    font-family: SVN-MissionX,sans-serif;
    font-weight: 500;
    justify-content: center;
    line-height: 1.2;
    padding: 10px 20px;
    position: relative;
    z-index: 2
}

.streak-challenge-page .top .prize-pool .prize-pool-top:after {
    background: url(/static/media/fire.a7d6b3fe51472ac35682.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    display: block;
    height: 75px;
    left: 0;
    position: absolute;
    top: -35px;
    width: 100%;
    z-index: -1
}

.streak-challenge-page .top .prize-pool .prize-pool-bottom {
    background: url(/static/media/prize4.9600fe9737ba0378f511.png) 0 0 no-repeat;
    background-size: contain;
    bottom: -60px;
    height: 77px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 370px
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .top .prize-pool .prize-pool-bottom {
        width:280px
    }
}

@media screen and (max-width: 450px) {
    .streak-challenge-page .top .prize-pool .prize-pool-bottom {
        width:240px
    }
}

.streak-challenge-page .top .prize-pool .prize-pool-bottom span {
    color: #b100ff;
    display: block;
    font-family: SVN-MissionX,sans-serif;
    font-size: 26px;
    font-weight: 700;
    padding-top: 8px;
    text-align: center
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .prize-pool .prize-pool-bottom span {
        font-size:22px;
        padding-top: 10px
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .top .prize-pool .prize-pool-bottom span {
        font-size:20px;
        padding-top: 6px
    }
}

@media screen and (max-width: 450px) {
    .streak-challenge-page .top .prize-pool .prize-pool-bottom span {
        font-size:16px
    }
}

.streak-challenge-page .top .prize-pool:before {
    background: url(data:image/png;base64,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) 0 0 no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 108px;
    left: -54px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 108px
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .prize-pool:before {
        height:88px;
        left: -44px;
        width: 88px
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .top .prize-pool:before {
        height:74px;
        left: -34px;
        width: 74px
    }
}

.streak-challenge-page .top .prize-pool:after {
    background: url(data:image/png;base64,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) 0 0 no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 148px;
    position: absolute;
    right: -74px;
    top: 50%;
    transform: translateY(-50%);
    width: 148px
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .top .prize-pool:after {
        height:108px;
        right: -54px;
        width: 108px
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .top .prize-pool:after {
        height:88px;
        right: -44px;
        width: 88px
    }
}

.streak-challenge-page .top .btn-trade-and-win {
    margin-top: 100px;
    text-align: center
}

.streak-challenge-page .top .more-info {
    margin-top: 40px;
    padding-bottom: 80px;
    text-align: center
}

.streak-challenge-page .top .more-info span {
    color: #f0b90b;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-align: center
}

.streak-challenge-page .top .more-info span:hover {
    cursor: pointer;
    text-decoration: underline
}

.streak-challenge-page .middle {
    background-image: url(/static/media/bg-middle.aedcba57cf2bf604278c.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 45px;
    position: relative;
    z-index: 2
}

.streak-challenge-page .middle .mid-title h4 {
    color: hsla(0,0%,100%,.3);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center
}

.streak-challenge-page .middle .mid-title h2 {
    color: #fff;
    font-family: SVN-MissionX,sans-serif;
    font-size: 40px;
    height: 48px;
    line-height: 42px;
    margin-bottom: 35px;
    text-align: center
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .middle .mid-title h2 {
        font-size:38px;
        margin-bottom: 75px
    }
}

.streak-challenge-page .middle .mid-winner-box {
    align-items: center;
    background: linear-gradient(180deg,#020024,#7a4900,#342500);
    border: 2px solid #f7a62f;
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    height: 104px;
    justify-content: center;
    margin: 0 auto 90px;
    max-width: 80%;
    position: relative;
    width: 458px
}

.streak-challenge-page .middle .mid-winner-box p.winner-name {
    color: #f7a62f;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: -4px;
    text-transform: uppercase
}

.streak-challenge-page .middle .mid-winner-box span.winner-date {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0
}

.streak-challenge-page .middle .mid-winner-box .box-top {
    background: linear-gradient(45deg,#020024,#2c1d01,#2b1c01);
    border: 1px solid #f7a62f;
    border-radius: 7px;
    color: #f7a62f;
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    left: 50%;
    line-height: 22px;
    padding: 0 15px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: -12px;
    transform: translateX(-50%);
    width: 300px
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .middle .mid-winner-box .box-top {
        width:200px
    }
}

.streak-challenge-page .middle .mid-winner-box .box-bottom {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAS0AAABDCAMAAAD+tKNCAAAC+lBMVEUAAAAAAAAfEgsMAxcAAAQAAAADAAf1sir3sygAAAb/ryD0sikAAAMXCyUMBRUhEgv1sikAAAD0sSkQBhP0sij1sikEAAgDAAYAAAQLBBD0tSr3rygGAQz1sikPBQkAAAD1sioIAg71sSoEAAj0sin2sSkDAAf1siouFw6shigEAAdcSxlIOBkPBwkEAAn2sikpIw+peR8cCDOAWRnnqCeleB31sykfCzofDDkhDD0rFkYeCjghDTsgCzseCzciDT8tF0kvGEwnE0IpFEQqFEUmEUAdCjYuGEpNF40kED/1siojDz03HVssFkg0G1ZWJKg2HFkaCTAkDkEoEkT1sykcCTQXByo+D24xGU8zGlVULbIXDCFLFYf13yxWLbMuC1L16S4uFk0yGlKroSYmEUIwGGb1vSmJVxg5HV0yGFQyGGUnDUfyrCjwqCdRKqs9H2M6HmAvFk8lDkRcIag/IWfoliNlJ7ZTKqtRLbJYH6DzsChNKqo2GGhWHZxUJahaIKT2uyrnkyOlRhcxGFHqmSTtoCXjkiNTG5b2tyrajiJpJr5jJbTFbh0qE0gYCC1fLbRMLbJJKqrgliO/aRxkLbXmoCS9YxthLbVfIq1QG5FEFX0yGGTrnCS4YRv1xirwpSfsoyZaLbNaKqsuFFHOfB9hJK/diCNVIqYqEE0fEy7xvygVByfgjCTafCLWhSHRgSETCR+0WxqwVhl9TxbwuSbvsiXsqiSfQBZmJbnquCfjmyTgkCOrTxguHCenniWEZSXXiiLRbh/VdSFlLxNWK69EJW/LdR8yE1u5kiQ8HXE3FGOJVxeVOhQGAQhcK68mFjsiFDTlsSXHeB9rQhdIHYRFH3yYYByQThpPKJ9HJJDIYx2COhlQHxMmFSAeDjCLeimreCVBKB5NJZdKJZRMG4lRLH9VKj46FTfz0yzh0izWoybUlh5bK5lfOWpmRVtAF1BwTkf05i7txymOZiKsah5xVx5dOx5XJ2p0QzLLpyy4pizQxyuhWh41HRzEEybOAAAAN3RSTlMAFqPKOQR1gD8qEMAe+/i9oBLw8GDgjFs74DAg1bCiDdDAz5WPb0xP/vp9/vyqhnDqu/TXymBQquPJPQAADsxJREFUeNrMmXlsi2EcxyuOVusoijjKMLc44phOaZkpL8VaVwlJmxHHNuoI5loymf2hKwkRR8YqcczGP0hK3Ock5r7+cB9BEEdI8I/fc7x33x6voz59+zxv37dd3/ez7+95n7aaP0LtTq1HPFsz8r9lXehSg25tNf8HIGtaxvOy0KJxyqzm2LtajOSJezG4p2vKiHevJo2YRYjq1Qv2N+jWSPM/gGRdq1o9IxgMlpWVzQCmEmZMncEyddkGBZZNVWRZbLi/LwW2lSGCiBnnbw/d36BnDU3yqd0cyyoLbgkGq0OhpYi8vLylQvJWbFRgRZ4yK2KSJ3wPHrolhKiG45pBdDWrp0k2vKwtwdCdlZGZO1OJuZHZvh0awbPoHVq6YIQvkIE3w3vfD6K8n3/g3d8k6braNm9d/3rVUiKraqEAlxCbBAuPNX4scOMYiBgSiYEChozYfR9kIV3D9zfpkFxdkKz91++EyoKbwNbKNJvX4/HMEVKI8fN4/V4WP9+iHXL8LHS3w2F3OtOB4SwZlOFCYDe3P3NI1kKq61kgubpAVov61+9Ul21BsqoGBmZfELCYMp+ygDJ79pj4IE8cP37sWJ/PN0UZXwQ8FJ/XOtEGuhD37TB2Je/KWLtTi/rXsKxNW6qrslz+2VgGQIWM5xkrxYPh1ulWHz5FAPsZSnEMdTjwCr8hHhyIjBElLjZd/usNmiVl3kWTlUFljVtpcc9ezCNIE+eOMyiHNUgyxJ4r0YRVxWKKMl5r1r7n5/E845lnf4MOvzGRaNm+pUYtzVscSL8TwrLWrLS6x2JJvCYcMVJMcI+WMh9QSCw5FCGJon1COEHXg/N4Vvbc86iByrHLmKrRmJmmerWXwxb7qm5jWZvWrHQFcLKEI5SwICPXpIdkiS0au0MZcQHivAGxvNG/6xxNdE0FXVVVTZprVKBlGrfU6FOY9ip1Nbq6bVE1ljXuisXtIYIAUclxYnjmzPHRMKGTsROcdicADdfBNnojcD7tkZBsRq+mpANua9a8B2TKP255/TqaxOnIMCboQFdjnUpbk1eFgiArdMXmnS8fsKTm+MITecIK7DFxxICOcBguVZzcQOZE1wNk6/zydSps6Y0gi6yZGaajSlvrxkG0grtHuMfyVngxNEmAj8YJ5QkO3xmFdAgDvy5B8kqcIBLLdMCJbrgnDKe4gWHWrIkPkK11WxO31ao903gAX5JMexXxqge21oCt0IGAbGIlmUQgdYUgykGiZP9DOGQPHdLNzgDL6KztU4mtngkGC/ykCK6FuqYMY9QnOH2o1a7LqzvLg8iWW+pGlC0Yofww0qb/AyBI0LC4KdnubGB0yVywtfTF/B4t6iQyRTWBnFS9RB/4apVIGTav2f3nz8fv31VvIbZkAxSAZU3xkvr5B7qGi8kgqsAV+thqyQJb919+/PHmce9mdWsn4MrQUlaaRuQr/nps3vvxm0+fpv849f4dVCJ7NZQGzAMjOnKlQhf6tBfLDSwKogThWkixZW3Pe/mh65vp09+c7NGmXnw1CK6a4uE9oq+m2lbx1WGd7m/D4fLXpTe6fnx5IHu8dNpAg+V34GE7Oqh4YkC94F5OBu0QtPyGoUTRULlcC13QpZV4Pzz+Xv76czh840vDupqYdDaDkBRTVJVM+46t4rF163RR0ebSgoLit0+ePnL7PaBnDoVc/mBUdwq/DfhzuIdxuMk6abOzYQEyMS7EKBvFMqTk4anvn0sLZh0pKiq6G9NWZ2NjcGGOXmw6/KSmqZ1j2zp4/PiS0oLi4oIjb0+dsBayswc2VoVDoQQVhhTeIElGYq4oIA1niPqCPpvD5YK7ENuQ+t0vh0tLZ8HhHj9+PLqtVh3NDJDSSx+7Vk0gDDCkdtZHt1VRsWRWMSbc9USASgKgKSz0IlMJ5WoYImMY6ulD6V4eMMSRmQkLD6jJZBXxWEq+3igFCooLjlZUVCjb0nU0N8Wn3yvua15LbQqDaGrU6vRKtg5VVBRRW6WXTwRQBRZS/N50pUyADXTq6smMiGvUKFp2qJEzuORUOchCx6toS2fSGhhEY6NJn+CUTKc1NCavNaR21LWMZGtP0awJCGxrLJ2442DxqYJcQc2wiMYb+lAhNeLwkA6GJCGjMsERZpTLBguHi+0J0FtKToXBVvEEZGvPHrEtva6z1tyewaQYTa3Ufp1jSkXKqDSzllqjtvawtmaBLfdu/276hXAAX5OEZ0vOOHFGRWH0aFgoFnQXYxNhSZuEbKHDLT66B9uillINoImKMnOVpJ5WOq3RALXMWTMYtFptnydwTVxymAEmlJcjWxi/1x6AKCmXEFkZpkoQ6OEc4R9CIjvCnbwSw+Xlxehoj+7YseNQ135giQPOyKRw9VMtzQT/iBRGQn5+/mGBrX0BUm/ZPIpeiJvYfgSOWD3QWTEW5UjJbYEsCl8uvaBc/iJ6nU6Hs7Vr585cbKsc2XLt2xcAVdnx1BBp44H7ZYxnsJS0NFjgjlcBbofFQntg0CSwNSEfYHLWLllys2//v2pJPspfrKzccyQnJ+cIawtkiaMklwTEUiOHShLZIqHivaCFR564NGQrPwfI31xZWXkv6nzrL9g6x9o6DFw+sRCqUFR4LgQnCEtSKYqtOW6F1yF3Q/XAIq3EG4dzMMmxtf7s2cojubn5xJYtMM9mkaGYEwXS4mMgQnk3KU/8LsglrcQb+bmInGNnz55Njq2c3NwjICvcFSpxXqSf8C0ChTgfUTzCOSbIYA4rKk4pomx9vZGbVFtnzlQe3YlsvX3y7ZFtoViAaByGG58LWCIwCDdqGcgjdYmD9qtdcwttGgrj+HRTEHQgA50gkyGIiPrgixv1ClL34kPEtg9TVARF5hAtFiKWalhXYkMfEhpaWbBgWja6tU10rbZVOwetzIpab+A2daBO8H73QcEvp7f0slVR14n7bfmSnJOTy7/f9+UkOWsUlpEPEcdpoJXu6+ubeLWYvr4r/tO9F25d/XTx4foWmVc15oKiQSZdflShCSySEdlSZBqnV9L3Rlmay0OBDS+/RzrKphb74AEbsd56cflVs6Kl5XBWqoxaslOW/86rc0mqlRHi12hIdx7AyGksYK1SPfr2cdAfpODEB0GtiWTm0kGCIMLCh9cvtb61IFa6W1QYj2NcJSg0Hor8IG0oDVI9NxLXZLJlgzpm+vL1owinHR+aYLVm1dX0BwKDz546dU7fuq2NubGVc9n5rEuhQGY8pG3AZJblZIuzZCuK6KhUx7QG+5v+eGBwaeWSCR47smhmzdDQQYNOp7O517eUHtUGyH2tIOYainUQwModBq0UNi0ahOvzabTEDAaDVjPaX7NiojxLPsLmusbglNTyqbIXKQeFjwIsYt1vohyb4g0UGdCpqNwxHDdo7ad8K8ox5A3GQRhsOrPZthVraER+lJfec++CY6SnsRg3RtOxntd/yElYjbmsxjANjuPapu3wrXriQWo5QS2z/bBapZArIPOnfJ9S/goqpSqDshRF3Wp1GqUFG9Dr9YZyqmXT6cxOp7OpxaIseDOAKHQiSTHsz1Ak8GRe1iBPaQoLdsyk1+M2G95UHrUWXT9m10ty2bRNnWosFQeFYZaff1Tq5nHxZRl3OzdWJGEV7+Er1SmxnPidJ9WgVhmYV/3wkF2nc9psTn0neFdjklznKlQPPuxd2jM2l2TsGYdHI2pVQTIvfqtssCg1Jr0Jd9rw2A33wlkV5WDGvOquQyaQC+6MeIvbksk2MEkGzVVg5IBn3Q4+3/XbvLvwcdiNqX4GzG3RmEwmvdmJD9zwLSzXIPBF82q6dut1CBxyV2M+OX155F3rMPVnb/v7Hb/Nc2v3vWG1UiGR8uAcj8o+LK62YEmxbPqBm82V4FllYpokl8mclKtTnkiUxYHfeSTRbT2393iKvQiYQUly6bhk0sUFZBv6Q66zzWos473g00XB1NiAHcSySWLNqa+qKB+z5y3o2m1PymXotGAKWYoq1sPE3N8/uujebfDtJZ+8Evkm+TXor9fq8txuxnI0KpLolRbVMSSW1iSJVTujoozMBu/a8MRplsBj6lK4v3/r6fZLnxO2IVrJ4LYDdNBPkqTVSkbIVlizShVSgZ8myeABK1TAHAx9gI5ErKiltIdeuif6ubnkEZUau90OYtljINaSsooFctVVd228k5JroCWf9fKXgmuVw/ev9Fh70dcEBB3mjgYFihY5xpsQWNEDJQmpThQ4JiJwnEAneA/DhXmvyCaCYY5jHKjhAcDv6uFGVIclWopxeC2wVdMEYmm19v035lSWWyyQa3F112Ykl85sww0ptEn020/JeTNIXaF7k298EWSAoL0BjiR4kmYZmidbEwGBhgoiwQt82EsSESZhDXIEzYteOhTwer0O1BDtwt/T9+2ZHUfkHhjRdAq4A2KZbJJYzZW1ZRcL+vQg15Y7Nidkr/MSJ2Vocb2Mu1/ZPlfvaUQrAtRimAAXIcJCiKO8jMchcoIXKgKiIPJhUQC1KAeI6YgGwjxNEGHGihqiffit8Br0i+18mpM5nMfTQPf5zA3fgqpJIBb0u5bVdG2ywxNYCTTPhAf8LWMSByISYAhR5DwEH6I5JkpQkQBBMFaHIyBQnkiYCzBBRopTa0dU9ASDvIcSQ6ihEeEPwXvQg9tLYTLFbvrqZ1dMDuaurGl4sl1Tijf9BPHC2JHEiPAEPIRAgVosxbMiFaZYMcoK3UYjwRuNZNjFhEmGogiO4qNhJuolKE4IGYGOFFaOiI8OaErRdKa6flbFZAE6ErGdJRntj8dftKXoQLabbad4T9TFsCzvYVnGRXk7uilXRxvjaWsLUaF2xsN7oyzLRqGWClGw2ZE2GbQQj1/sLHnk2Kr6yRGGKblm1leWYmGNpFZ7iiNJThw5AWQMrB9JT8icQKRrwaTatSchxfjg0gWVpahfPJnEgoegWVVpamurii7PX7B0aOhsmn379l3bl8M1+M8pQmsw5RWheXo3/UND15dV1RYcDEiXSvPZk0qsn2HuzLq6uhXT/yh1wOLJk5H+JIum/RXm/nN+M8UUU0wxxRRT/E/8AO59kUBF37KzAAAAAElFTkSuQmCC) 0 0 no-repeat;
    background-size: contain;
    bottom: -55px;
    color: #b100ff;
    font-size: 20px;
    font-weight: 700;
    height: 66px;
    left: 50%;
    padding-top: 8px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: 298px
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .middle .mid-winner-box .box-bottom {
        font-size:18px;
        padding-top: 5px;
        width: 240px
    }
}

.streak-challenge-page .middle .mid-winner-box:before {
    background: url(data:image/png;base64,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) 0 0 no-repeat;
    background-size: cover;
    content: "";
    height: 98px;
    left: -40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 98px
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .middle .mid-winner-box:before {
        display:none
    }
}

.streak-challenge-page .middle .mid-winner-box:after {
    background: url(data:image/png;base64,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) 0 0 no-repeat;
    background-size: cover;
    content: "";
    height: 98px;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 98px
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .middle .mid-winner-box:after {
        display:none
    }
}

.streak-challenge-page .middle .mid-table .ant-tabs-tab {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding-block:6px}

@media screen and (max-width: 768px) {
    .streak-challenge-page .middle .mid-table .ant-tabs-tab {
        font-size:18px
    }
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1 .t1-row {
    background: #050819
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1 .t1-row td {
    color: #fff;
    font-size: 15px
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .middle .mid-table .streak-challenge-table-1 .t1-row td {
        font-size:14px
    }
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #fff;
    font-size: 15px;
    font-weight: 700
}

@media screen and (max-width: 768px) {
    .streak-challenge-page .middle .mid-table .streak-challenge-table-1 .ant-table-thead>tr>th {
        font-size:14px
    }
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1-pagination {
    margin-bottom: 100px;
    margin-top: 50px;
    text-align: center
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1-pagination li,.streak-challenge-page .middle .mid-table .streak-challenge-table-1-pagination li button {
    border-radius: 50%
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1-pagination .ant-pagination-item-active {
    background-color: #f0b90b
}

.streak-challenge-page .middle .mid-table .streak-challenge-table-1-pagination .ant-pagination-item-active a {
    color: #000;
    font-weight: 700
}

.streak-challenge-page .bottom {
    background-image: url(/static/media/bg-bottom.fa6722877024323afd96.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 95px;
    padding-top: 95px;
    position: relative;
    z-index: 2
}

.streak-challenge-page .bottom .bottom-title h4 {
    color: #f7a62f;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px
}

.streak-challenge-page .bottom .bottom-title h2 {
    font-family: SVN-MissionX,sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .bottom .bottom-title h2 {
        font-size:28px
    }
}

.streak-challenge-page .bottom .bottom-list {
    align-items: center;
    display: flex;
    flex-direction: row
}

@media screen and (max-width: 992px) {
    .streak-challenge-page .bottom .bottom-list {
        grid-gap:15px;
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(3,1fr)
    }
}

@media screen and (max-width: 576px) {
    .streak-challenge-page .bottom .bottom-list {
        grid-template-columns:repeat(2,1fr)
    }
}

@media screen and (max-width: 450px) {
    .streak-challenge-page .bottom .bottom-list {
        grid-template-columns:repeat(1,1fr)
    }
}

.streak-challenge-page .bottom .bottom-list .item {
    align-items: center;
    background-color: #1d233b;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 260px;
    justify-content: center;
    width: 230px
}

@media screen and (max-width: 992px) {
    .streak-challenge-page .bottom .bottom-list .item {
        width:100%
    }
}

.streak-challenge-page .bottom .bottom-list .item img {
    height: 80px;
    margin-bottom: 10px;
    width: 80px
}

.streak-challenge-page .bottom .bottom-list .item p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase
}

.streak-challenge-page .bottom .bottom-list .item span {
    color: #f5f5f5;
    display: block;
    font-size: 14px;
    text-align: center
}

.streak-challenge-page .bottom .bottom-list .item+.item {
    margin-left: 15px
}

@media screen and (max-width: 992px) {
    .streak-challenge-page .bottom .bottom-list .item+.item {
        margin-left:0
    }
}

.streak-challenge-page .bottom .bottom-about {
    color: #f5f5f5;
    margin-top: 50px
}

.streak-challenge-page .bottom .bottom-about .titlee {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px
}

.streak-challenge-page .bottom .bottom-about p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify
}

.streak-challenge-page .bottom:before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANkAAADZCAMAAACaYGVEAAAC/VBMVEUAAABKSkpnSmPKXmjAxtXBWWO4VmBMVIWhSlNNTXKyvcdCTX+zusmjTFevUVrTXWfO1eGbTFhPSGbN1uIoRX1aJzIYOXCcSlNTXJYzPF63Ul1uNT++V2JRW5Cou9FSXJl6ND05Qmu1Ul82SHC1VGFKVYjiXWapT1zz+P6HPETAV2PPVmC0U19TXJdTXJM6PF40QGPKWGLEVmC2wdKIRFCBQ1A9QG9BSXFSXJrw9/3P2ulJVJD4/P6PQUzq8vs2Pmn9/v9UXZk3IzQpQGuvvtFrLztuebN0OUYTPW1MOFsqQHISPXD0+f5rdrHVWmTM1uS5xtpASnrM1eapuMvHz9/j6/bT3u8OOmhJVImZqseYRlL////7+/vp8f++xeb9/f1MVpt0gMNPWZ35///q8/+7xOTu9//l7fzs9P/n7/xKVJjm7/5xfcBMVphzfsFJU5Xe6fpSXKLx+f/g6/zk6/r2/f9HUZDr8/zp8ftTX6VQW5/X4/W/x+h2gMBuer3j7f7i6PhkbqlWYalzfr7z+/9sd7VbZqBYY5pcaqxpdLJnca7b5vjf5fTM2u3u9vy5weHc4vHtbXf3+/zz+/zU4PNeabVfaqRverhhb7Jeba/P3O9ocsDx+PzJ1+pzfbrY3u1UX57P1uVkb7zxb3lreLpZY60yP3XSYGppdrljcrXZZG5ibLhbZrHR3vGHj9PlaXPfZ3FUXpVCTYjF0+dweshPXZnS2ejC0OVmdLdIU4q/zeLM0uFrdsTpbHbZ5ffIzt5NWZE3RXvV3Ou7yuA4S4QnMWF3gsMuN2lFUZX3cXuAic/Ey9p1f858h9t6hMtaZam3x9yyv9g9U43P3f5/ib8gPnbH0+pWZ6fI1v65wNA9SHcEO27Azf1KVIAJIU98QkqXovirtNgcKViSRE23xP6gqs9SW4uNmO+wuuOjr/yEj+WMldituf6HkcSPl7FGWpbmZG16g5emrb6Sm8xjbJb0ZW8GMWOapNWdpLZ4gq6Hj59cZYj9eIKYn8ChreiHGQd7AAAAW3RSTlMABAv+/v7+LP4TDP79O/7pLSgeG/79/hptWVf9ylL90/6ooHJvPfuOW/7o/ei7pX5Bq4iBf1nzyumUPPHv4NjWuYnz49LBr52F/fnn4djNV+XiwaumetO811HEc+ljpQAAIiFJREFUeNrkl0EOgDAIBJ3/f9qDYmJMtVtCAsiBozJdytLt3wFbw+BAawjImfsB3mho1ZzwyF0ADaefghdHP8Anx1jHWnxAP0CwPAIsO16YB7Rcxds/2m5Ox5SE46JfmGvcPkWVW86/l4GiTSVAwak/PSENoBWyCJi4RRE4LC8exhRfHqeeOwxFu2A78wGS5G1k/5PnvF9tPfxOHQ9I7O1zjEHXXha/vBDk1AJzwOIpFOICRPyuP3zmFKx2LafemTOD0LThKIxXEaRZD0Iuu+w48N5TRYaH4anSIbYwIpFOcmu3y5QWMlkO0SaUplhINyjSQA/dYYUOlKUelB56UKgUgqOHHjxYBKnQTnA6WvbSmM0iZU3/jfWBD0QQf37f+38viYHvRQVECqfh38sQknpwaqOhIYaTORa97/Fi+Mv1Pvi9zAAgWjg9/l5mMXB8IP2Qwe9lt9d9vTAsag9RUiMoiDBqJoWTaWoPb1JbrRbrqBXhz0AIMvOS2mq3P/V6fT6fF+q1fQRzOHCX0znlnHaq5cAw7C4uuqUeL5xGn3t9KaVQadWv6ofrLOvzvnox6V5bcUeSKxvhcMTtToYnJ5z4/yw6go72oEk9+szHKq1yrXLAc0vxuCgyDM+xZ3sLyUgknFwLQ4WCQYIIuT3TLgzh+EAKJ+N2tti97Ae61mKWSouLb+bVyufzCZHnzqQkQAWDIYIgtA6AHid+r4evgw8nCwi2c7Xz+dNSqfSD4ePpzfT8u2g0Ku/GGa76MazSqEw6IBHyODHjd78GHk4YDmCFwtb3L5xSEVYXMuU9oaqI8jeNjVf2QwAFTL2A7gnceFIPNpwcU/6XLHswu721XZEWvpbLNE1TtVqtUm00ZWDLJ5hULqTJ1QMIsjkQ/Gj6KoK7/DNSsc3H5mKxs/33ZZqkKJIkKQFKZ8vHGZbU0XoBPbihpEa/crozIIaP+7PZbK4hsrG52dZqGZhoSuiiUfCqXLZP5WiCYVLLoZujpvbQBGZBSGrTVhHMEZiRcrmi7aLJs7HDepkEJprURCMBEEpQZctvMiKvLP87Gf92t8OE4wN11ICrqOplG7s4T3Ds7A5FAwgg6WiChnZUbbQ3S0yC/5nU5eoB9GAIaCY8dIE3rkA2l9PAGr9FdqvQoimdidT9SHbRlFJ6V1zf6/cjiIaQ1GbcNHAEgEoCNtvxRaPzBMasXgMaGmSDRuqjRl2jCdXLRFre5ZWkLlcP4LShODP72hcftxWzkgRkxeOxX51zIHt7BULRAKWS9fiRVMmOLttyVBZZkiD6/OhBS2roDweITflBsKyUkaRrL3bOT0T2oKbJdVO07qgJlcapLCe4apDo86MHM3IyGggn4x/gAVvuGiuTATKQrNM8SXBABvIAmSYX9K4f1QLRmjLYMbVB9K0ikyhxZnyubkf7w8v5hbZVR3HclkHZuoeyvcyHMUQGe3ETBs46qQo+Dua/yQRj3RqTXNN2aZr0Xu1qE5c/pn/SkNUFSpZ2gqAPFVJpRxDaUKQPFpSNIHSQhz60FKSTrYNahuL3nHNvrlks8+62HtYfY9tDP/1+z/ec+yfbd3bP4iLA5mdQQnbvQWN+4DOQsVwCaEa/+HFlq1DMDyRuGE40Ad8/aOGGuIVJbRWw6fU9i3MENj4+PzN/44c9+2HGh6ur4cxfTHNZbzVAVfkRdgRZdM6QywQ802QhGXfvVs7Z1+FERAfAUimw/bAIzUBWiCV+Aw0xoSpymX5c/pPIEnPVTiTAloMW4sNCzlvalhGJe9iJ8/PjqaFUan7+xtwSkT0sx8OZNXAIGjuxehVBoxXjicRIzaRubbFyD3x3buXUN72xtIjhDCeihlApiLbnPrsxfi3xHUQDFInGTjSjX8jysURirmZSt52xOantryJ1J9+gFkMkjqcg2FAoFCK0xf137z0o58uZcGLzA0ar9SPQlu/G4+FobvzRSd3W9qqVcbYbD132ndy/xGk/AzISLBQIBELjIloZoiXCuTWyovixGg0DbSseS2TWtUcmdbot2GzlgaH9NwJqr8LeXkLaz1EoUo+FUAG3OzA0PjMH0R6W86sJXKgsk2i1rTaC1TF8LRyN3mp9JD7S6eAxSw8rbE7qWgWbXl8iK3KPpYgMeoUUr+IG2iKLFi/EY+HcCqhq/UihD7DOnMZQph9xR+vqQRtX07bfCKh7b/9+6bEbAEMRmTvgdjgcQLsBP0K0eAE3qjIbI//iR+RHOBz9KbryyDU17kBmX7aRjLYfunCL6T02DywUwOBFxeFktKU/7jEa3cvpWzH9KE4ksOhA5refc2p1MrYRWctTNtBs3jRgMOkxFMAQiiG3W3G43Q6PxxEYShFauZyPFaeKCMDS5giREaCgLa9HE6W/FqJrrVXJmE6DzN9s5Y07O/tTrVEFjK7GjEEWQokVNQ/KHTLQ4vnCFN1ezJQ2lpGTdFnzwfJKKRctra1lwhtD1YOs7erVYOTlY1YWfevPGfburWs4fPTooUOHD+OroeFow4E6PE9hzrf3L2FAGysVKiTxATJNUT0ulwcRObPn/r1yIR+HbAViS0T7SqXS+nopk8uU1n8d2YiF19ferx5kFB/+librDyv+E+ABPDp57bUjR468OH16enp6wqgX8SdHjh9/7rnjAJOVCgUwLB6UHhwfTo+mgcyVVJTQ+KLESCxevH0bUZJY+Pmnn/u+29xcm1xbLsXiA+ubqX/ER1qaLOlv3rlrGFTlAcOhI+dP91y61IG6ePHTTyeqCrevp4vxP9iKkEwGGazI8aFQfMCJmupCqaoaEEcW46jfb/94u2caQbm+niuVwhPT+djW+sawueLj5CaLJJPHbMZHrYJ7Dx0/fboHWD2XiIvIuLq6uiYmCPLi9HRH8QHAuMdkWWQyFOLDqwSITCXR/K5k0qUFUpjZD+HIeCw28ftt1I/4goBIla3SBnZhRuOTnBgMRvxJtcliMj5ukNU/ex53bgGGIrIPPwQa2PDVBbyL+A24ig/uo8fksgVkMsjgRcSHF/GhOAlNdfn9/mwy63dpoZnFpbsPi7AkKj4thfk9kCtt/Pq+OcjgRIqPiN/vOYOHTTs6qZ9unOphMq6PgQbdpAisY/piBx6kQDGJe3DRIKMLF4ABjcg0RfNAMAMtEom4NAyAxfthUk3qGp6hDURzpc3xfwyydJrJsvhheJrr6nZ2Uje8KWSEpauGXwRGB7AYrKrH5hH30mSIj4BXkpHiQ036/ZFINhtEZVUtlJpf/HMrDCaiGsCjwdLGTNIcZJyJ1GPZpMtz5qzN+9618fFsI2MBDCWi4QvFv/v4Eqjj940eQ9wbg0xmtCSjU09GlciuZtE4bUEaUS7Eyc3lPxH5W4nSxspcKl2Ry0h7bjJV9bxqPh3cqSfUe5+ZMslQzNRBB6kIsClORekxc5CFMMiQHogPDfmhSjImkyADGpssDVVa29JwXGurpqVb0+bewafuRG4yRXk0GXHY/tBIwwsVsg4iQ+E35EJwASx/3+wxOJEHmVyShUCGxcpMRn8yG4kEIReTpQ0OOas2YEBz2gfRY2gypeWg9fh4/FR7uhFY7ESRCyeJJ1xTSMXKSmUOMp7RHB8ORQEZ4oPJgBYEGulh2q4GMC1ODKIiSTSZ09m8zSWnvUld/8yUWFG6i0UznDhVuEtgEvc0xmSQgcxN8cGLFe+MlWQksjSh6RzVgHLqmQiBaZCpTofStBPJWPtHB071SHJU0MiJApaPb8kco5XKGGTGjHZLfCiU+R4kI4qTsY3JquWq3oB1J0ZgRVVxeHEBYx3tsYA4nn+B9eK0x0l2BJeAxWJbt3CXyuyxFK33AT0+FJA5FWoyEY2TkZsMZP/ux4oTI1dpqrucbrf3mLUn1BaeSTzbyBMMZIwGMEMxektl61ZlpYIVpcfwhfhAMjqd5s5ojLPq+BA0nKYTg5z2kaQKrZ1eX+CghdfBLb75darwKVEJGecigdEKgddvwrlb7ET9fs4QwIDG8WEmo0xqRCOLZqA96keSK00ZozsRPxiH19ds4VVUq/dOD7wiayIVRSNJViAuWR9yI9Ri4kQeZOgxig9jZ9Q0F6NleZxJ6G8bHOxE3i/RY2iy/jMv7cLNYZS+P77wOdBoWQQZe7EoVgzzYpS7QU400j7gRUEu5AcnI9Ak9Fk0mdSt6drg0EcYZ6I4UQn093c379vNV1HrTpz+uotlAxmDxStgiQRWvhlxIveYiYb4kEVfS4Js20kNzGq54ERN9Tgdjm5fd8tLdt+y3R5QtqwJQrsoZIUiWxFcvMqiNobEiSBTAiDDiHZLMprjTJ/UJlqbPpar5KLhjFIVzQEr+gaba16Ws/nxztqp9sXnXV283/f0mGAQjMgymRXoBbQA4p7QHISmgUxVVJBV0IjM2BzpNLsLhZzn4FBdHjgR6drf7yPJdmqcbddqjV+i1/h6jC6HwVUhy6ByyyGKRKxUNMjcenwg9DUWzaPxpDZEC8o1ikCRXPrGwcHhISfiBmV3f3e371y91bdsrb+peSL/1ScgAxgUM7KDrQiuXK5vhPYOyEV7sCxWlIxyDWNeeF41/aifWR5eYBK5iEx3IsBaDlp5NdpCcFT78ZcvQdYj4cFc6DFgMdiVXN9lxZSLT0WBH+kaRtBYNKBRPor7+BS5smqSoVQY0XDioG/w3P/yoZGGU9980nFJ4t50IpNdoSqNshMVQeP4UEBGaPqkllZjNGk4KAi5+C9ILvxbRXVCr+5+xL2vt/ddig/7aI+/K1L+droKzHAiyPr6gBbyEpPEB6AIzYMy/JhkP3IAZuUEpr8il6bL5fB6u8mJvtnRszY+NGIJ8EQxr6eHnvaGXjmQAW1FMZ3IopmTGlWJfiyQBOinyPDTX/A/Qs6TXNjLoBc5cXb2rR360MjjLbr31CrHhxEe4CIyMIGM0NaIqbJYofRJLWjQBmy6K1UAkkWhFuTifxuAWggOzsTZ2dnesaY6W2gWVpH686tiRlIsoTtRoORcuCxyOZwVP2qmH5OaDGE5BZYjQ8NUp+7qluAQJ46OnrP2oRE7738cXgUZmVHiHmBiRBSfnVdKw2Z88KTWTDTicJmAYEJp4KcfhleXC3oNkhN7J8dq4sP2LbntmY+bZHqPGXIt4Lxw4ULnlfUA9IJcsjMyGhGofIKGmfS+UplfgVqQqx9FwYEW653t7e2dHG6y8XE6i4AHztO7ATExo0wxkWthYQGAF1Dt7Rtu/naJyWw10sZjAFb6ii3oDvRXyeUbHOwdHcWvc+b3sOuvoh59s1xYzRtk4CIyQPUJWieJ1n7hI3zTbuCxHw1ADzUcCDXREbTsWjAh4aEWuouDvncWkQgnTk6+u8/uh0YsPIg/Wi6XYcdr3GYc95ALxWRwIsjo/BWdo6OZDQc0wnRAKJSCnZmE6mcoMIlcPsgFI45ODg+TFy2g2fx4595yY7nAjUZtRoKZcqF0P175rlen4YYTQH0aOPmUGARZtyQ85PLpcoFqdHRybPj6yW1dtAtoGGd3GnXRohwfBpohVyefVzZ9/5BLZhufbj4DlRgEmcg1i+YanIVc0GtsGGDD79Q/2cc7n/BNzfpn7ohosKOQwYjiRDCZaO3LgAINRBO5vDCfrBcoMwZpIIsHewHGckEvOPE6msz6/1Fk5/2Pw3eAViTROEH6jGSEEwWtHQdhXkZKVAkl86q73wsosiB7kKEGRS6qMQTH2Nj176/ffGnbx+eoXZjUsCPQCkUSDWSCZgwyabV2AVwPyO0COVmomhicJQ9CLuxRplxjEOz7m2ef7JP9dj7pcuIOoRmiGYuVCGWeUHAjUNNXEoP9egyCTI8MTkOSi4Jj+DrATtbZjQ/rb2oeeFMX7RqJJmgil4nGCi4sK4RG2e7mbRByAaoiF9SShNflmoRc0Ot71M139Ntw/+OkpmegumgxEQ0zrbOzXQ8OHCbg392da0xTZxjHPafh0pnCYApycTDkEm4qDpyZIcZtBNTE7PLBbZ8YiV8cjDVLSNplJKvZRJfFkKybjLgQoC22zFaEoIYuEkEu4eJlMOOIMMEwGMtIFl2WLMv+z/ue09IxwLPTIvpEmGsV+Pl/nv/znPdcXszGvnLJNkjF9R3lIEHhg8kFqtNcr/b215/x/bardNOI8AJHo55GkyNHK33Pm4n8c2np0Ps0OcldC4JBLpaD5BiyXN/iF5cL5QWw85euvP60imfrqrnTJWanJx8Z2tHSUpCVLspHlNoHsAwfuT6TLANQYEJ8DSZZrtH29vPtly69+qKKJ0epupARPY2jUbsmtFKGtqjUAHvS05CpunzkAtS3zDIQTK7R84R16cqrLy767uoH/YdEC3mts9OTj41ffVUJLG8+etDw0tXRd7lx8IbsIxegvHKdJrnaL125dg2KqXgWncorNYVtnUDDGQuWj42NQGPhk4mI0srSs58hE33k+kKyDF+5UF4IAvPUWAA69cqAkTutnZ28XzO0xkpvPh6V5JLQ/kD74qOGZIa+ciHghueh1xXEtWuvPL2UeQX+phFBGxnzXI/VagVaGzucaQIaLzUOJaPho7KydFQ2DsxPCx2eyzV6msnVzvS6dv0VPiyqzUflj7sTQ1K2PPdCDwXIOlsutyEfTxwn0STVQOWRq5TIKq9+SJkIsCXlQnkhwHX9jWce5h9ZcZEtCyhqxc2btr722nqrtaenu5ujdbVcrqNSu8DzEUFo7/mgNVb+AcE+5L2Lqssr1+hCuQD27PNPqX9EjaI7XbQpm/dmZ+9m5znXd3ZaQQY0KR/rUGoeNM7kzURIhjd+5lMU9PpvuaDXdQTAHm7e889TUcVNe7Prdhn0enYhYxmddl+I1nKxjdZELjQ1fkJo0ImTSZlIZE1NVz/nPg+9Fsnl0evZV95aIosCcIELPodkG0wIi8ViMiD0JTgnyNEWllrNmQtNTSg1Ga2U/xZy4aPpwoVfv2CTPPQ6DTQu13mSixQjuQD2xlMPnUUI9Z16y2WDxdJsaaYgPLCVE5pvqVWdktAqOZMnE5sABrLGn/kUhQYGMxwdBVU7Ky8SDFgIZOIycvn9phGQXTRYms3NZhagAxtkk9C6rYSGUluMBuNgZBQXzpw5eloyDoyG51nzojwEFwdDJgqLaALcqVPW64HlMDsoGJ3FYGRo3QvRfmBoKDUe3DgaKRNJsjOnzvz+OTMO6NVOASwEUd0D1z2YvbJpQX2nxoRYbmFY9RRER2glQOvpRnAXuQy0GqBdYKqRXN5MRIDs1Jnr3DiQiLLPHz788y+n9IY/IdhTyo6j1B9ysouS1hvMwKKopU8QzmJCscloJBq5SBVH46ZBYHImUgDto3Zfnz98eGxsZhBXYXwMwZQeR6nv1EJE4fjtsmYHB0NwtmaTHqqh1O52d48Q2o3f6rxoxNTI9CLFJLCamnvIRNk4Tp78e2aKk9VtZZ7ob/tY4Wtoc/PTx/etNzmICh88wFYzbCipWG/tvgs0q4T2A6Gh2OTgmQgqBJEdP0lGz4zjp7OD0zNTt8ZmBkz6uk0Kjuv9dCmqGJs/OT4+HrezvEai6kDgE+BqqobbLjK0u1y1ijYZjdjwCeHRi8iqqn5t55l473tHx+DEzBjIWkGWsgRNoNAEURcfGjo5Hhe3cd/tOodEJkdl04mPPz138XbPXUTUyP4NHjSwMakk5wAY6YVfQPuJMvHeR5ZmIpsD2UStQf9piII7m9UO+sw50rKCwwC2EbGzpUamaqWgQ5TG4wytm6ONbOi88ZuEdoqjITyZWMXAhr+/cvinT0wGU7OjdXZi7tbNsWkHkS1REwHq1LHxQUHBoZOJ4CqIKbjddqbWAzYwMDQ0dPWjr4B2mfIRMQK0Li8ah2KfajgZi+Hhe9+YcJOQqbl+YHZiCmSzzXp9QqTCW7dVbcQRvUOj0QSHhaYnbiwoKEhM3Ld+uB5YnAtg/f39Q1eBdozy8c6dOw9kNAPQakDjlYuFBEZ3mxj10Kx2AAbCyeqytQrvoVXzBBddvM1uY5IlJqanjyN2VtTUtrLgXGfP4k64T07gpj9r9x1E1AI0YuNQHjQGpqeL4iWywWkYyM0pMv29ChqZ6kw8aLfbNEFhoYhJuCNin7XE0eHR6yxF/9VvTnzZdrEToi1E+wFoBAcm2TgkrnJGBjCLGWRzIJsbANkmJWsyqnYaEZNtLpfdlpkZFBwWxt0Rzr+vy1QLvRCci0Q7eryqrryLi/YgKipKVo3YuFQevQxHesvBVewhIwO5BdMHma8qgevUwg6b0+mEZhoN0EIn0xPjEkG2saeiuQN6ccV+YWTvNVUZylog2iI0CQ4fUoGVl4OMwIiMmf4UyP6G6R/brMQ+VLQzgLmq3U6IZpPJGNjGl6zFjneIisBABg8pbarBJEKi+aLVcTQ5wNXbS7cLAcxoZGStnGyi3lCXECKsTqeO1bjcbiLzgKVPMrCX9nQaaheSDQ2U1ptNJb2SaIeKDnjQ9LJswwh9eW8FpaLkH0RW3zo7M3YTZA6yxuXk8t+lqNEZdqfT5fKC5adPggxgMSE7WyzvAeoXqcreae2oN1uMR+hI7e6d7khh+/6oH3/kaEYDsTGuI70UhFVcJpGZ6wc42bTZWJe9tDZ+veAqT2MHFktFcOUX5r1NHkJgWPC2lpuHQMbBhlo7akGmP4J0xIy1jc7QHPjRi0ZsZBwIZCLAEMzzQYZ2NgeysVmLsW6rgqVpNec6c4NsCKYXsMToNNgjBpGXtokCTsB0Gpv6Ca1fAgOZoZjSsftlLVtZ8KD9hluRDfpirheFl8w0zMhugWzQpD+3V8Ehpxq0vPzgoGBgvZ2bJ4iCNo1+Pxm3EWB0AmZPl6HyLK+xViJzmC2s0Kw9MfQ+ZI3yoOGKfi4Xa2Pc8RGy6U+BbArHMMc2Le3z/h30dbmFhXl5EdJQHEzDY3pcoTQAbUepvcNrjIOBzFje0mXdI0pfqkhGuzHS0st9g2ciR+NkMH1O1mrQ70qRVQl4pxYFbwMI0mhAllgo8peo1HrN7/T3IxUBBjKsZFGhdcbgbQkNZEDbMPIgqsJ7xyuhwT/o9mtmjYNkIDfnamH64qK0C/hqo7BDw4xkslDrffs56mpDA1AMknGy4oquF0T+vlxriAcPHlgBJsuFYGR6Iqvl1njzbzNMX1jBGf3/RKHoJI3dbtcEh+aK3jdQap1GB0tFkkwia9m88C9uPyCRdXfJZByNkem5NXLTN8EalV7vq3ozwYh4G9qaLSg0V/B5fztcxFHLFQOZyQCybNHnR9AWHQAZoqeCtzEPmpGTddA8zKzReG7TUjSBuBSV/qM7aHdheswMy5VeYh+RukjchNZioqUsBsZWVXen/OuvQ7eiQ4eKYrbtJ/fw2Ids+jRbYdKHNRqMuzb7czOclR/vLcaGY8YCWFay4Cm7vNyCxLiCQmHbzhsmM1tRBRiRbRUX/1QCghqgjFbGnXHB1Hjr1kytwZgQslwW+f2eMyE53FndUO3KzIqV6zsi9+3Jycl0LB7EiM9Ze00LFvl3pSz5FSP3dEloZQCTyTA1gowWQfTG7JXqyp9ocHsGNm/LipVzMy2MIjQ0HU17HUPDWj8/NWPcKy49MqS83FIuOyMnQ58ma5ySDqi3KrqKSOXtdBE5LnA1zNviI/gruqRg1tgwjwBtOwxyH9CgGMBMhoSQ5Q7ut+yv8DojwLxkt+ZQZm17FTQyFZeico4MV3VfHxRLimYv6XIyNDY2IiOCJwu0QnTB+L6RXoOFgen3Csv8ILzUyjgawKTDTpDRWqO+5NxmBSdf1Z2sEOAdDX19DfPhO9hAEp0UTmsHtC6CsAWH6gQdFsTjCM0EMEi2fOWHUKkRFjQjMGYg0yCbmnXoSxJCFFwmpeq0mZgc7m5oILBk6lHRO8LtTrfTScsiNrsd7S1JyMsPpen/7kgvjlSwirFS1W5/uYUGKwQjs8BA0M6mxuYGm/Vt2drVOW0miEn2anBVz4fHCojkg+Byg4zAXEC0xUfnZrEpOe6lQwduoPMmaFc8uN9irTjCyDAz0qBfT+1samqi1YQyWyH5/DUzRuTYUWJ991PjdXS6AlzVDQCbT80M0rigJYCTgljNheXnaWMOdfXu8l2eWbLU+DRM/tEMslmQzU3XG0rqNi9rg/5abRR04TBFAsuJZpT4v4Zqtys1MyvU5nKj+FKTMjQknT0oS4dGF7KlKOVhzjNEvtxVXgwwnoyO2gGQzc0gGUuOpfh9T7D/ykS054Y+CJOajHqjlkbhTM3MSEvKBORfffczUXV4zaXJiVAynaPUKsqYMYKMrJHIkIwlJbsiV/R59ZeikndwU4xFIobPI/kasIRly0iOiAVYH8BSbU43jSbhSaKyJ6gK6GrFTDJeZtMTMxOzSMY2zGWCsm3rlG/EIe6wOykT5w/C1g8i5ZCIxJUWsU6XYQfYX/dT7cTltMM2FR3c81I7wpxxGH2ayCamB836snM+xhqYLdyEHDuKCrIc1EXksNnK7QZXEsopOt7mbCAwF6O1ZcQKyvcQ0O7pKmPOWEUTyPT09CycsWxXyApqqz9tFi2Z4nwOOtg8EYBLE68T8Z3SbE5IVu1yo8LwanyE8m3reKmV6HmZDQwCbABtuiRB/rOBusAFskhuvyP24DwIKOc0Wcmsi8YG0bDlhoyoMLsmWVR+M69cakbWzUA2OzvYMWxEma2strpOHRFvd3O3z0klAjcvMHqb52JfNSoMgkHF//0EVZRaGU52MrLBQSZZ26blk1r1aqOs2P3M1HknT8SgJHCxt5ODQE0vuiFjUrSKh7njWK3EAM3YWbja4ZIylNkyaqu/aQQ1xq3vfioSEQGC+FhRNrUsTFVUYEjEDJ2oatsVlJoe1znRqdMOswFk2aJfd+/8t74iTpcBrG8eXOR9IEiO9mSBLhiTPk3ESE+t2j1VY/ZXGCy4Zqaj1mHC4yp2b1L8dAFFh5yx4WR9DW6UkpyIC34cXZiNHcHA/0W129ah1DaUodIc9Q6THo+7SZA9PzCLw8w9eLidciJ6/1REPk32WUnRoj+2XcEAWYJjcfMwwIrLtq5srGoG/TQNLQ3gF/QCl+94QcuiuWlpeZH+2jSWuppp2MT2qLscIijYfEGxfURk0SxYDbnAlYVRavHXE/y3bR3vanoYPp79mCAoSGrlnVoXBO9jDqEJTtOJAd+2TijagAMaeibdZfKPAHbqiDCNjV37Ab1WZds64dCGXnbqabdW+S19Ssbh6LeDEVlJyZHCKm1bF3Kgi50v3OLvve4X2VVubh4cYtW2rUNXiwJa75tapWqr30wwwDvowkU23LixO0Vp6itGU6yK+lITizZ0bWZZ4vdOHdj961duTmLMdkWpryAflwdcy3vdr95OI37qBqqOqVU2pzWjtj/sQ4GXrMZ2woiA3N6pbtsV9amvJFZuTmttr3slaOv89UMHfi5THKrsKhApqhhN3d0ka2Mu84YfFVwbc5n6CNCspeLr+iv836nVW6Y3/K3do5/LAhPCGpjLAhaPfi4LcPh1LlN/KeoqowlrrFMrDHXnLxT39nWrHasylz3CUGQfitV+9GgIP89laxLtYX/oNWgfy8Rj2KkfAeC6tYu2TIquxU4dKAUfl0xU9hSZte6M/0e7J0M0OR7DTv0/Ys0cw/g/VrDMxxlt6bns8fD8leOJysT/iCfEPpaOJ1a0desek8EqoPEPGvag8Ho72UMAAAAASUVORK5CYII=);
    background-size: cover;
    content: "";
    display: block;
    height: 186px;
    left: -40px;
    position: absolute;
    top: -90px;
    width: 186px
}

@media screen and (max-width: 992px) {
    .streak-challenge-page .bottom:before {
        height:148px;
        top: -50px;
        width: 148px
    }
}

.streak-challenge-page .bottom:after {
    background: url(/static/media/rocket2.0542743955b22c60904c.png);
    background-size: cover;
    content: "";
    display: block;
    height: 278px;
    position: absolute;
    right: 0;
    top: 80px;
    width: 278px
}

@media screen and (max-width: 1200px) {
    .streak-challenge-page .bottom:after {
        display:none
    }
}

.drawer-sidepane-cn {
    height: calc(100vh - 90px)
}

.drawer-sidepane-cn .ant-tabs,.drawer-sidepane-cn .ant-tabs-content {
    height: 100%
}

.drawer-sidepane-cn .close-list,.drawer-sidepane-cn .open-list {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-rows: 1fr;
    height: -moz-fit-content;
    height: fit-content;
    justify-items: start;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto
}

.drawer-sidepane-cn .close-list .item-sp,.drawer-sidepane-cn .open-list .item-sp {
    background-color: #1d233b;
    border-radius: 5px;
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 8px;
    overflow: hidden;
    padding: 6px 12px;
    width: 100%
}

.drawer-sidepane-cn .close-list .item-sp .row1,.drawer-sidepane-cn .open-list .item-sp .row1 {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    margin-bottom: 6px;
    text-transform: uppercase
}

.drawer-sidepane-cn .close-list .item-sp .row1 span.symbol,.drawer-sidepane-cn .open-list .item-sp .row1 span.symbol {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}

.drawer-sidepane-cn .close-list .item-sp .row1 span.type,.drawer-sidepane-cn .open-list .item-sp .row1 span.type {
    background: linear-gradient(180deg,#f5b42a,#f5b42a);
    border-radius: 100px;
    display: inline-block;
    font-size: 10px;
    padding: 2px 5px
}

.drawer-sidepane-cn .close-list .item-sp .row1 span.id-order,.drawer-sidepane-cn .open-list .item-sp .row1 span.id-order {
    margin-left: auto
}

.drawer-sidepane-cn .close-list .item-sp .row1 img,.drawer-sidepane-cn .open-list .item-sp .row1 img {
    height: 18px;
    margin-left: auto;
    width: 18px
}

.drawer-sidepane-cn .close-list .item-sp .row2,.drawer-sidepane-cn .open-list .item-sp .row2 {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    text-transform: uppercase
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left,.drawer-sidepane-cn .open-list .item-sp .row2 .left {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 5px
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left .icon-order-side,.drawer-sidepane-cn .open-list .item-sp .row2 .left .icon-order-side {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    display: inline-block;
    height: 20px;
    margin-right: 5px;
    width: 20px
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left .icon-order-side.up,.drawer-sidepane-cn .open-list .item-sp .row2 .left .icon-order-side.up {
    background-color: #04c793;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAABZLkSWAAABD0lEQVRYCe3V0Q2CMBAGYOoEjOAGjuAo4kaOUDdgBNxAN3ED/M9wiWksXNtr6MNdUkvstfdxhNB1FtYB64B1wDrQdAdcqW6e5x5nnBLPeTnn3ol78tIBHDFSY5RWO0gTV/L8ylpsibouimIgHhV14yqqlpFUDKSaQHpMVZAqwJpINeAP8kHXWqEKxKvsATtr4egcNeCCu2ji1IC1cCrADdwdRaq83aInRTiMWHg+BAlDkDTxWrUZBUU4BgTIusBU3B+k+FvMe8VzLo4LYP8RQ/wt5n2iuRQnKpKb1DruBmAsfO5Nq+2DbIro9sfRXQLXYzwDZBs4AlIESP/9s7WfBTm05jKPdcA6YB2wDuzYgQ8c8KYLqOoA5gAAAABJRU5ErkJggg==)
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left .icon-order-side.down,.drawer-sidepane-cn .open-list .item-sp .row2 .left .icon-order-side.down {
    background-color: #fa4b62;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAABZLkSWAAAA+ElEQVRYCe2U4Q2DIBBGpelAjtANOkIdyRHYoCvQDdzAEdpOYL8zkDT8IAinIe13ySmEQx5PsesYNEADNEADv2NgWZYBOSP75nbl4XBb44lrO5CAEXNxtAMJsimm8/02IAHTI1+ErD15f2ESmxyRQ62s5PxSk5hnkRIuuYDGIBbZdHBQH+COAZRN5kJGcMcBZkLehSgKJ3MPCyyeet0R29p1uXCn3MJUnTFmwvgF+U7VlYypAMrCe0GqAX5BOmlrhSogvi4LsKsWnDxHDdDD3TTh1AD3glMBBNyIB6mbC2/iHBoVd/nFPDbOtxvrWU4DNEADNEADhQY+yo/6ffkCbVkAAAAASUVORK5CYII=)
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left span.side,.drawer-sidepane-cn .open-list .item-sp .row2 .left span.side {
    font-size: 14px;
    font-weight: 700
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left .fa-circle-up,.drawer-sidepane-cn .open-list .item-sp .row2 .left .fa-circle-up {
    color: #04c793
}

.drawer-sidepane-cn .close-list .item-sp .row2 .left .fa-circle-down,.drawer-sidepane-cn .open-list .item-sp .row2 .left .fa-circle-down {
    color: #fa4b62
}

.drawer-sidepane-cn .close-list .item-sp .row2 span.amount,.drawer-sidepane-cn .open-list .item-sp .row2 span.amount {
    font-size: 14px;
    font-weight: 600
}

.drawer-sidepane-cn .close-list .item-sp .row3,.drawer-sidepane-cn .open-list .item-sp .row3 {
    color: gray;
    display: flex;
    font-size: 13px;
    justify-content: space-between
}

.drawer-sidepane-cn .close-list .item-sp .row3 span:first-child,.drawer-sidepane-cn .open-list .item-sp .row3 span:first-child {
    font-size: .75rem!important;
    line-height: 1rem!important
}

.drawer-sidepane-cn .close-list .item-sp .row3 span:last-child,.drawer-sidepane-cn .open-list .item-sp .row3 span:last-child {
    color: #fff;
    font-size: .75rem!important;
    line-height: 1rem!important
}

.drawer-sidepane-cn .close-list .item-sp .row4,.drawer-sidepane-cn .open-list .item-sp .row4 {
    color: gray;
    display: flex;
    font-size: 13px;
    justify-content: space-between
}

.drawer-sidepane-cn .close-list .item-sp .row4 .time,.drawer-sidepane-cn .open-list .item-sp .row4 .time {
    font-size: .75rem!important;
    line-height: 1rem!important
}

@media screen and (max-width: 992px) {
    .drawer-sidepane-cn .close-list .item-sp .row4 .time,.drawer-sidepane-cn .open-list .item-sp .row4 .time {
        letter-spacing:inherit
    }
}

.drawer-sidepane-cn .close-list .item-sp .row4 .result,.drawer-sidepane-cn .close-list .item-sp .row4 .resultBonus,.drawer-sidepane-cn .open-list .item-sp .row4 .result,.drawer-sidepane-cn .open-list .item-sp .row4 .resultBonus {
    font-size: .875rem!important;
    font-weight: 500
}

.drawer-sidepane-cn .close-list .item-sp .row5,.drawer-sidepane-cn .open-list .item-sp .row5 {
    color: #a5eb2b;
    display: flex;
    font-size: 13px;
    justify-content: space-between
}

.drawer-sidepane-cn .close-list .item-sp .row5 .text,.drawer-sidepane-cn .open-list .item-sp .row5 .text {
    letter-spacing: -2px
}

@media screen and (max-width: 992px) {
    .drawer-sidepane-cn .close-list .item-sp .row5 .text,.drawer-sidepane-cn .open-list .item-sp .row5 .text {
        letter-spacing:inherit
    }
}

.drawer-sidepane-cn .close-list .item-sp .row5 .resultBonus,.drawer-sidepane-cn .open-list .item-sp .row5 .resultBonus {
    font-size: 13px;
    font-weight: 600
}

.drawer-sidepane-cn .close-list .item-sp.buy span.side,.drawer-sidepane-cn .close-list .item-sp.sell span.side,.drawer-sidepane-cn .open-list .item-sp.buy span.side,.drawer-sidepane-cn .open-list .item-sp.sell span.side {
    color: #fff
}

.drawer-sidepane-cn .no-data {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 20px
}

.drawer-sidepane-cn .no-data img {
    height: 50px;
    margin-bottom: 10px;
    opacity: .5;
    width: 50px
}

.drawer-sidepane-cn .pagination-zone {
    margin-bottom: 15px;
    text-align: right
}

.drawer-sidepane-0304-tab-cf78121 .ant-tabs-tab {
    padding: 2px
}

.date-header {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
    text-align: left
}

.empty-box-very-new {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    margin-top: 220px;
    padding: 0 10px;
    width: 100%
}

@media screen and (max-width: 992px) {
    .empty-box-very-new {
        margin-top:10px;
        width: 100%
    }
}

.empty-box-very-new img {
    height: 80px;
    width: 80px
}

.empty-box-very-new p {
    font-size: 14px;
    text-align: center
}

@media(min-width: 640px) {
    .empty-box-very-new p {
        font-size:8px!important
    }
}

.listCount-jka {
    align-items: center;
    background-color: red!important;
    border-radius: 50%;
    color: #fff!important;
    display: inline-flex;
    flex-direction: row;
    font-size: 12px;
    height: 16px;
    justify-content: center;
    margin-left: 5px;
    position: absolute;
    top: 0;
    width: 16px
}

.admin-history-order {
    background: inherit;
    color: inherit
}

.admin-history-order .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .admin-history-order .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.admin-history-order .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .admin-history-order .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.admin-history-order .admin-history-order-table-new-css .t1-row {
    background: #050819
}

.admin-history-order .admin-history-order-table-new-css .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.admin-history-order .admin-history-order-table-new-css .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.admin-history-order .admin-history-order-table-new-css .ant-table-placeholder {
    background: #050819
}

.admin-manage-prize-pool {
    background: inherit;
    color: inherit
}

.admin-manage-prize-pool .title-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 992px) {
    .admin-manage-prize-pool .title-area {
        flex-direction:column;
        justify-content: flex-start
    }
}

.admin-manage-prize-pool .title-area .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .admin-manage-prize-pool .title-area .pagination-box {
        margin-bottom:25px;
        text-align: right;
        width: 100%
    }
}

.admin-manage-prize-pool .manage-prizepool-table-new-css .t1-row {
    background: #050819
}

.admin-manage-prize-pool .manage-prizepool-table-new-css .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.admin-manage-prize-pool .manage-prizepool-table-new-css .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.admin-manage-prize-pool .manage-prizepool-table-new-css .ant-table-placeholder {
    background: #050819
}

.pola-loader {
    border-radius: 50%;
    color: #f0b90b;
    height: 78px;
    perspective: 1000px;
    transform: rotate(45deg);
    width: 78px
}

.pola-loader:after,.pola-loader:before {
    animation: spin .75s linear infinite;
    border-radius: 50%;
    content: "";
    display: block;
    height: inherit;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotateX(70deg);
    width: inherit
}

.pola-loader:after {
    animation-delay: .4s;
    color: #f0b90b;
    transform: rotateY(70deg)
}

@keyframes rotate {
    0% {
        transform: translate(-50%,-50%) rotate(0deg)
    }

    to {
        transform: translate(-50%,-50%) rotate(1turn)
    }
}

.new-dashboard-bo-container {
    width: 100%
}

.new-dashboard-bo-container .gbox {
    border: 1px solid #1d233b;
    border-radius: 10px;
    padding: 20px
}

.new-dashboard-bo-container .bo-static .title {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 25px
}

.new-dashboard-bo-container .bo-static .title img {
    height: auto;
    margin-bottom: 5px;
    margin-left: 5px;
    width: 20px
}

.new-dashboard-bo-container .bo-static .bo-static-main {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr)
}

@media screen and (max-width: 1200px) {
    .new-dashboard-bo-container .bo-static .bo-static-main {
        grid-template-columns:repeat(1,1fr)
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .title {
    color: #fff;
    font-size: 1.125rem!important;
    font-weight: 700;
    line-height: 20px!important;
    padding-left: 28px
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top {
    grid-gap: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1,1fr)
}

@media screen and (min-width: 600px) {
    .new-dashboard-bo-container .bo-static .bo-static-main .left .top {
        gap:0;
        grid-template-columns: repeat(2,1fr)
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .left,.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right {
    width: 100%
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .left {
    display: flex;
    justify-content: center
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .left .wrappedChart {
    aspect-ratio: 1/1!important;
    position: relative;
    width: 150px!important
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .left .wrappedChart canvas {
    z-index: 1000000
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .left .wrappedChart .turn {
    color: #fff;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .left .wrappedChart .turn .num {
    font-size: 20px;
    font-weight: 700
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center
}

@media screen and (min-width) {
    .new-dashboard-bo-container .bo-static .bo-static-main .left .top .right {
        align-items: normal
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right .line {
    align-items: center;
    display: flex;
    gap: .5rem
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right .line .circle {
    border: 2px solid red;
    border-radius: 50%;
    height: 20px;
    width: 20px
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right .line .label {
    color: #fff;
    font-size: 1rem!important;
    width: 120px
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right .line .red {
    border-color: #ff2a55
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right .line .gray {
    border-color: #7b738e
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .top .right .line .blue {
    border-color: #2d55fd
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .bottom {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%
}

@media screen and (min-width: 600px) {
    .new-dashboard-bo-container .bo-static .bo-static-main .left .bottom {
        flex-direction:row;
        gap: 0
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .bottom .total,.new-dashboard-bo-container .bo-static .bo-static-main .left .bottom .win {
    align-items: center;
    display: flex;
    flex: 1 1;
    flex-direction: column
}

.new-dashboard-bo-container .bo-static .bo-static-main .left .bottom .total .value,.new-dashboard-bo-container .bo-static .bo-static-main .left .bottom .win .value {
    font-size: 20px;
    font-weight: 700
}

@media screen and (min-width: 600px) {
    .new-dashboard-bo-container .bo-static .bo-static-main .left .bottom .win {
        border-right:1px solid hsla(0,0%,100%,.22)
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .boxR1R2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px
}

@media screen and (min-width: 1000px) {
    .new-dashboard-bo-container .bo-static .bo-static-main .right .boxR1R2 {
        flex-direction:row;
        gap: 30px
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r1 {
    background-color: #f0b90b
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r2 {
    background-color: #04c793
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r1,.new-dashboard-bo-container .bo-static .bo-static-main .right .r2 {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    padding: 30px;
    width: 100%
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r1 .r1-info h3,.new-dashboard-bo-container .bo-static .bo-static-main .right .r1 .r2-info h3,.new-dashboard-bo-container .bo-static .bo-static-main .right .r2 .r1-info h3,.new-dashboard-bo-container .bo-static .bo-static-main .right .r2 .r2-info h3 {
    color: hsla(0,0%,100%,.67);
    font-size: 1.25rem!important;
    font-weight: 400!important;
    margin-bottom: 0
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r1 .r1-info p,.new-dashboard-bo-container .bo-static .bo-static-main .right .r1 .r2-info p,.new-dashboard-bo-container .bo-static .bo-static-main .right .r2 .r1-info p,.new-dashboard-bo-container .bo-static .bo-static-main .right .r2 .r2-info p {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 {
    grid-column: 1/span 2
}

@media screen and (max-width: 576px) {
    .new-dashboard-bo-container .bo-static .bo-static-main .right .r3 {
        grid-column:1/span 1
    }
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .title {
    color: hsla(0,0%,100%,.5);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group .span1 {
    font-size: 18px;
    font-weight: 600
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group .span1 .s11 {
    color: #fff;
    display: inline-block;
    font-size: 17px;
    margin-right: 5px;
    text-transform: uppercase
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group .span1 .s12 {
    color: #04c793
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group .span2 {
    font-size: 18px;
    font-weight: 600
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group .span2 .s22 {
    color: #fff;
    display: inline-block;
    font-size: 17px;
    margin-left: 5px;
    text-transform: uppercase
}

.new-dashboard-bo-container .bo-static .bo-static-main .right .r3 .span-group .span2 .s21 {
    color: #fa4b62
}

.new-dashboard-bo-container .trade-history {
    margin-top: 2.5rem
}

.chart-gauge {
    align-items: flex-end;
    display: flex;
    gap: 45px;
    justify-content: center;
    margin-inline:auto;overflow-x: hidden;
    overflow-y: hidden;
    width: 100%
}

@media screen and (max-width: 2000px) {
    .chart-gauge {
        gap:0
    }
}

@media screen and (max-width: 992px) {
    .chart-gauge {
        align-items:flex-start;
        height: 94px;
        justify-content: center!important;
        max-height: 94px;
        min-height: 94px;
        overflow: hidden!important
    }
}

.chart-gauge .gauge-wrapper-div {
    height: 100%
}

.chart-gauge .gauge-wrapper-div .gauge-title {
    color: #f5f5f5;
    font-size: 12px;
    font-weight: 700;
    text-align: center
}

.chart-gauge .gauge-wrapper-div .gauge-title span {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    transform: translateX(8px)
}

.chart-gauge .gauge-wrapper-div .gauge-title span img {
    width: 15px
}

.chart-gauge .gauge-wrapper-div .gauge-title:hover {
    cursor: pointer;
    text-decoration: underline
}

@media screen and (max-width: 1376px) {
    .chart-gauge .gauge-wrapper-div .gauge-title {
        margin-bottom:0
    }
}

@media screen and (max-width: 992px) {
    .chart-gauge .gauge-wrapper-div .gauge-title {
        font-size:10px;
        font-weight: 700;
        margin-bottom: -15px;
        transform: translateY(3px)
    }

    .chart-gauge .gauge-wrapper-div .gauge-title.smaller {
        transform: translateY(10px)
    }
}

.chart-gauge .gauge-wrapper-div .gauge-main {
    position: relative
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss {
    align-items: center;
    bottom: -25px;
    display: flex;
    flex-direction: column;
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}

@media screen and (max-width: 992px) {
    .chart-gauge .gauge-wrapper-div .gauge-main .statuss {
        bottom:24px;
        min-width: 100%
    }
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusText {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center
}

@media screen and (max-width: 992px) {
    .chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusText {
        font-size:10px;
        font-weight: 700;
        margin-bottom: 0;
        min-width: 100%
    }
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: -2px
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item+.item {
    margin-left: 20px
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item {
    align-items: center;
    display: flex;
    flex-direction: column
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item b,.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item p {
    font-size: 13px;
    line-height: 1
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item p {
    color: gray
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item.sell {
    color: #fa4b62
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item.neutral {
    color: #f5f5f5
}

.chart-gauge .gauge-wrapper-div .gauge-main .statuss .statusList .item.buy {
    color: #04c793
}

.quickDepositInModal {
    padding-block:10px}

.quickDepositInModal .row1.chooseWallet {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 20px
}

.quickDepositInModal .row1.chooseWallet label {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px
}

.quickDepositInModal .row2.qrCode {
    margin-bottom: 20px;
    text-align: center
}

.quickDepositInModal .row3.action {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.quickDepositInModal .row3.action .asInput {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 80%;
    text-align: center
}

.quickDepositInModal label {
    display: block;
    font-size: 15px;
    margin-bottom: 4px
}

.notification-item-rfc {
    background-color: #080d1f;
    cursor: pointer;
    display: flex;
    gap: 20px;
    padding: 12px;
    position: relative
}

.notification-item-rfc:hover {
    background-color: #181a20
}

@media screen and (min-width: 768px) {
    .notification-item-rfc {
        padding:12px 30px
    }
}

.notification-item-rfc .left {
    align-items: center;
    background-color: hsla(0,0%,100%,.1);
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    width: 40px
}

.notification-item-rfc .left img {
    height: 60%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 60%
}

.notification-item-rfc .left i {
    color: #fff;
    font-size: 14px;
    margin-right: 12px;
    transform: translateY(2px)
}

.notification-item-rfc .left i.bell-golden {
    color: #ffc75f
}

.notification-item-rfc .right h4.noti-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    padding-right: 24px
}

.notification-item-rfc .right h4.noti-title.title-golden {
    color: #ffc75f
}

.notification-item-rfc .right div.noti-content {
    color: #969696;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px;
    padding-right: 25px
}

.notification-item-rfc .right div.noti-content.content-golden {
    color: #f5f5f5;
    font-size: 15px
}

.notification-item-rfc .right span.noti-time {
    background-color: #041b38;
    border-radius: 3px;
    color: gray;
    display: inline-block;
    font-size: 13px;
    padding: 1px 5px
}

.notification-item-rfc .fa-solid.fa-circle {
    font-size: 10px;
    position: absolute;
    right: 10px;
    top: 17px
}

.notification-item-rfc .fa-solid.fa-circle.not-seen {
    color: #f0b90b
}

.notification-item-rfc .fa-solid.fa-circle.seen {
    color: #3c3c3c
}

.notification-item-rfc.seen {
    opacity: .75
}

.notification-divider {
    background-color: #181a20!important;
    margin: 0!important;
    opacity: .2
}

.notificationPage {
    margin: 0 auto;
    max-width: 1205px;
    min-height: 100vh;
    padding: 20px 10px
}

.notificationPage .notificationContent .title-row.popover {
    margin-bottom: 18px
}

.notificationPage .notificationContent .title-row.popover .left {
    align-items: center;
    display: flex;
    gap: 16px
}

.notificationPage .notificationContent .title-row.popover .left .title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .ant-modal.modal-result-chartpane {
        top:0
    }
}

.ant-modal.modal-result-chartpane .ant-modal-content {
    background: transparent;
    box-shadow: none
}

.ant-modal.modal-result-chartpane .ant-modal-body {
    background: transparent;
    padding: 0
}

.ant-modal.modal-result-chartpane .result {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: center;
    width: 100%
}

.ant-modal.modal-result-chartpane .result h1 {
    color: #f5f5f5;
    font-size: 30px;
    margin: 55px 0 0
}

.ant-modal.modal-result-chartpane .result p {
    font-size: 50px;
    font-weight: 700;
    margin: 0
}

.ant-modal.modal-result-chartpane .result p i {
    font-size: 45px;
    margin: 0 5px
}

.ant-modal.modal-result-chartpane .result.result-false p {
    color: #fa4b62
}

.ant-modal.modal-result-chartpane .result.result-true p {
    color: #04c793
}

.ant-modal.modal-result-chartpane .result-streak {
    align-items: center;
    background-image: url(/static/media/winBoxIconStreak.ceeadd55bbc3ee419bf8.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    height: 590px;
    justify-content: center;
    width: 100%
}

.ant-modal.modal-result-chartpane .result-streak img {
    height: auto;
    margin-top: 30px;
    width: 30%
}

.ant-modal.modal-result-chartpane .result-streak h1 {
    color: orange;
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 0
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane .result-streak h1 {
        font-size:24px
    }
}

.ant-modal.modal-result-chartpane .result-streak h3 {
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane .result-streak h3 {
        font-size:18px
    }
}

.ant-modal.modal-result-chartpane .result-streak p {
    background-color: #050819;
    border: 2px solid orange;
    border-radius: 12px;
    color: orange;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    margin-block:15px;padding: 1px 16px
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane .result-streak p {
        font-size:20px;
        margin-block:5px}
}

.ant-modal.modal-result-chartpane .result-streak span.span-note {
    display: block;
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 60%;
    text-align: center
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane .result-streak span.span-note {
        font-size:13px;
        margin-bottom: 20px;
        max-width: 80%
    }
}

.ant-modal.modal-result-chartpane .result-streak span.span-note span:first-child {
    color: orange;
    font-weight: 700
}

.ant-modal.modal-result-chartpane .result-streak span.span-note span:last-child {
    color: #f5f5f5
}

.ant-modal.modal-result-chartpane-mobile .ant-modal-content {
    background: transparent;
    box-shadow: none;
    scale: .9
}

.ant-modal.modal-result-chartpane-mobile .ant-modal-body {
    background: transparent;
    padding: 0
}

.ant-modal.modal-result-chartpane-mobile .result {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: center;
    width: 100%
}

@media screen and (max-width: 500px) {
    .ant-modal.modal-result-chartpane-mobile .result {
        height:300px
    }
}

.ant-modal.modal-result-chartpane-mobile .result h1 {
    color: #f5f5f5;
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0 0
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane-mobile .result h1 {
        font-size:27px
    }
}

.ant-modal.modal-result-chartpane-mobile .result p {
    font-size: 40px;
    font-weight: 700;
    margin: 0
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane-mobile .result p {
        font-size:35px
    }
}

.ant-modal.modal-result-chartpane-mobile .result p i {
    font-size: 35px;
    margin: 0 5px
}

@media screen and (max-width: 576px) {
    .ant-modal.modal-result-chartpane-mobile .result p i {
        font-size:30px;
        margin: 0 3px
    }
}

.ant-modal.modal-result-chartpane-mobile .result.result-false p {
    color: #fa4b62
}

.ant-modal.modal-result-chartpane-mobile .result.result-true p {
    color: #04c793
}

.security-profile {
    border: 2px solid #1d233b;
    border-radius: 10px;
    margin-inline:auto;margin-bottom: 30px;
    overflow: hidden;
    padding: 15px 20px;
    width: 60%
}

@media screen and (max-width: 1500px) {
    .security-profile {
        width:75%
    }
}

@media screen and (max-width: 768px) {
    .security-profile {
        width:100%
    }
}

.security-profile .title {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px
}

.security-profile .security-zone-password,.security-profile .security-zone-twofa {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px
}

.newModalChangePassword label {
    display: block;
    margin-bottom: 4px
}

.newModalChangePassword .field+.field {
    margin-top: 20px
}

.otpCodeInput {
    font-size: 18px!important;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center
}

.withdrawWrap-sas .btns-type {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-bottom: 35px;
    padding-top: 20px
}

.withdrawWrap-sas .btns-type button {
    font-weight: 600!important;
    height: 65px;
    width: 100%
}

.withdrawWrap-sas .btns-type button div {
    font-size: 18px
}

.withdrawWrap-sas .btns-type button .feefee {
    font-size: 14px;
    font-weight: 400!important
}

.withdrawWrap-sas .btns-type .ant-btn-primary {
    color: #000!important
}

.main-wallet .status-icon {
    line-height: 20px;
    min-height: 20px!important;
    padding: 15px .625rem!important
}

.main-wallet .status-icon svg {
    display: block;
    width: 14px
}

.main-wallet .check-icon {
    fill: #04c793!important
}

.main-wallet .check-icon svg {
    margin-left: 4px
}

.main-wallet .x-icon {
    fill: #fa4b62!important
}

.main-wallet .x-icon svg {
    width: 20px
}

.main-wallet .gear-icon {
    fill: #f0b90b!important
}

.main-wallet .gear-icon svg {
    margin-left: 4px
}

.main-wallet .tx-hash-container {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.main-wallet .tx-hash {
    color: #f0b90b;
    display: inline-block;
    font-size: 14px;
    max-width: 100%;
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis
}

.main-wallet .tx-hash:hover {
    cursor: pointer;
    text-decoration: underline
}

.main-wallet .tx-text {
    display: inline-block;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis
}

.main-wallet .balance-table {
    margin-bottom: 48px;
    width: 50%
}

@media screen and (max-width: 992px) {
    .main-wallet .balance-table {
        width:100%
    }
}

.main-wallet .balance-table .row {
    align-items: center;
    background: #181a20;
    border: 1px solid #142545;
    display: flex;
    padding: 16px
}

.main-wallet .balance-table .row:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.main-wallet .balance-table .row:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 0
}

.main-wallet .balance-table .row .cell {
    flex: 1 1
}

.main-wallet .balance-table .row .cell .balance {
    display: flex
}

.main-wallet .balance-table .row .cell .balance .img {
    height: 42px;
    width: 52px
}

.main-wallet .balance-table .row .cell .balance .img img {
    margin-right: 8px;
    width: calc(100% - 8px)
}

.main-wallet .balance-table .row .cell .balance .content {
    flex: 1 1
}

.main-wallet .balance-table .row .cell .balance .content .content-row {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.main-wallet .balance-table .row .cell .balance .content .content-row .amount-token,.main-wallet .balance-table .row .cell .balance .content .content-row .token-name {
    color: #fff;
    font-weight: 600
}

.main-wallet .balance-table .row .cell .balance .content .content-row .estimate,.main-wallet .balance-table .row .cell .balance .content .content-row .order-name {
    color: #778e9f
}

.main-wallet .balance-table .row .cell .action {
    align-items: center;
    display: flex;
    gap: 5px
}

.main-wallet .balance-table .row .cell .action img {
    width: 18px
}

.main-wallet .balance-table .row .cell .action span {
    color: #fff;
    cursor: pointer;
    font-size: 12px
}

.main-wallet .history .title {
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 24px
}

.main-wallet .history .select {
    display: none;
    margin-bottom: 8px;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (max-width: 1024px) {
    .main-wallet .history .select {
        display:block
    }
}

.main-wallet .history .select .select-header {
    align-items: center;
    background-color: #2e3241!important;
    border: 1px solid;
    border-color: #142545!important;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding: 6px 12px
}

.main-wallet .history .select .select-header .down {
    position: relative;
    top: -2px
}

.main-wallet .history .history-table {
    padding-bottom: 30px
}

@media screen and (max-width: 1024px) {
    .main-wallet .history .history-table .header {
        display:none
    }
}

.main-wallet .history .history-table .header .row {
    background: #181a20;
    border: 1px solid #142545;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: grid;
    grid-template-columns: repeat(4,120px);
    padding: 0
}

.main-wallet .history .history-table .header .row .header-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    position: relative
}

.main-wallet .history .history-table .header .row .header-item.active:after {
    background-color: #f0b90b;
    bottom: -2px;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%
}

.main-wallet .history .history-table .body .row {
    background: #181a20;
    border: 1px solid #142545;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 0;
    padding: 16px
}

@media screen and (max-width: 1024px) {
    .main-wallet .history .history-table .body .row {
        border:1px solid #142545;
        border-radius: 5px
    }
}

.main-wallet .history .history-table .body .row .ant-table-cell {
    border-color: hsla(0,0%,100%,.125)
}

.main-wallet .history .history-table .body .row .nothing {
    align-items: center;
    display: flex;
    justify-content: center
}

.main-wallet-select-menu {
    background: #181a20!important;
    border-color: #142545!important;
    border: 1px solid;
    border-radius: 5px
}

.main-wallet-select-menu .item {
    align-items: center;
    padding: .625rem 1.5rem!important
}

.modal-custom {
    display: none
}

.modal-custom.show {
    display: block
}

.modal-custom .overlay {
    background-color: rgba(8,13,31,.6);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9995
}

.modal-custom .modal-container {
    left: 50%;
    max-width: 456px;
    position: fixed;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 9996
}

@media screen and (max-width: 992px) {
    .modal-custom .modal-container {
        bottom:0;
        height: 100vh;
        left: 0;
        max-width: none;
        padding: 0;
        right: 0;
        top: 0;
        transform: translate(0)
    }
}

.modal-custom .modal-container .close-button {
    align-items: center;
    background: hsla(0,0%,100%,.302);
    border-radius: 99px;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: -40px;
    top: 0;
    width: 30px;
    z-index: 9997
}

@media screen and (max-width: 992px) {
    .modal-custom .modal-container .close-button {
        background:transparent;
        right: 5px;
        top: 5px
    }
}

.modal-custom .modal-container .modal {
    background: #181a20;
    border-radius: 10px;
    height: 100%;
    width: 100%
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.overlayFadeIn {
    animation: fadeIn .2s
}

.modalConatinerFadeIn {
    animation: fadeIn .4s
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.modalContainerFadeOut,.overlayFadeOut {
    animation: fadeOut .4s;
    opacity: 0
}

.main-wallet-modal .header {
    align-items: center;
    border-bottom: 2px solid #1f2f43;
    display: flex
}

.main-wallet-modal .header .item {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: center;
    padding: 14px 16px;
    position: relative;
    width: 50%
}

.main-wallet-modal .header .item.active:after {
    background: #f0b90b;
    border-radius: 3px 3px 0 0;
    content: "";
    display: block;
    height: 4px;
    left: 50%;
    position: absolute;
    top: calc(100% - 3px);
    transform: translateX(-50%);
    width: 70%
}

.main-wallet-modal .content {
    padding: 16px
}

.input-width-image {
    align-items: center;
    border: 1px solid #142545;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    min-height: 40px;
    padding: 5px;
    width: 100%
}

.input-width-image img {
    display: block;
    height: 20px;
    margin-left: 10px;
    margin-right: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 20px
}

.input-width-image .content {
    padding: 0
}

.wallet-new-deposit .network {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 16px
}

.wallet-new-deposit .note {
    margin-bottom: 20px;
    margin-top: 16px
}

.wallet-new-deposit .note span {
    font-weight: 600
}

.wallet-new-deposit .address .usdt {
    color: #f0b90b
}

.wallet-new-deposit .address .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center
}

.wallet-new-deposit .address .qr {
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 150px;
    padding: 3px;
    width: 50%
}

.wallet-new-deposit .address .input {
    background-color: #fff;
    border: 1px solid #4d4e4e;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 20px;
    padding: 5px 11px;
    width: 100%
}

.wallet-new-deposit .address .input input {
    background: transparent;
    border: none;
    color: #000;
    outline: none;
    text-align: center;
    width: 100%
}

.wallet-new-deposit .minimum {
    color: #fff;
    display: block;
    font-style: italic;
    margin: auto;
    padding: 10px;
    width: -moz-fit-content;
    width: fit-content
}

.wallet-new-deposit .copy {
    display: flex;
    justify-content: center
}

.buttonCustom {
    border: 1px solid #2f3342;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    padding: 9px 0;
    position: relative;
    transition: box-shadow .2s;
    width: 100%
}

.buttonCustom.active {
    background: linear-gradient(180deg,#f5b42a,#f5b42a);
    border-color: transparent
}

.buttonCustom.active.disabled {
    color: #212529;
    cursor: not-allowed;
    opacity: .65
}

.buttonCustom.unActive {
    background: #2f3342;
    border: 1px solid #2f3342;
    color: #7c7c7c
}

.buttonCustom.shineGreen {
    background: #04c793;
    border: none;
    top: 0;
    transition: top .2s
}

.buttonCustom.shineGreen:hover {
    box-shadow: 0 0 19px 1px #04c793;
    position: relative;
    top: -3px
}

.buttonCustom.shineRed {
    background: #fa2843;
    border: none;
    top: 0;
    transition: top .2s
}

.buttonCustom.shineRed:hover {
    box-shadow: 0 0 19px 1px #fa2843;
    position: relative;
    top: -3px
}

.alert-custom {
    background: rgba(240,185,11,.26);
    border: 1px solid #f0b90b;
    border-radius: 5px;
    color: #f0b90b;
    font-size: 12px;
    line-height: 13px;
    padding: 10px 15px
}

.input-width-title {
    align-items: center;
    background: transparent;
    border: 1px solid hsla(0,0%,100%,.231);
    border-radius: 8px;
    display: flex;
    gap: 5px;
    height: 46px;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%
}

.input-width-title .title {
    background: #181a20;
    color: hsla(0,0%,100%,.502);
    font-size: 12px;
    left: 30px;
    padding: 0 5px;
    position: absolute;
    top: -10px;
    white-space: nowrap
}

.input-width-title .input {
    flex: 1 1
}

.input-width-title .input input {
    background: transparent;
    border: none;
    color: #fff;
    max-width: 100%;
    outline: none;
    width: 100%
}

.input-width-title .input input::-moz-placeholder {
    color: hsla(0,0%,100%,.502)
}

.input-width-title .input input:-ms-input-placeholder {
    color: hsla(0,0%,100%,.502)
}

.input-width-title .input input::placeholder {
    color: hsla(0,0%,100%,.502)
}

.input-width-title .button {
    width: -moz-fit-content;
    width: fit-content
}

.wallet-new-withdraw {
    width: 424px
}

@media screen and (max-width: 576px) {
    .wallet-new-withdraw {
        width:100%
    }
}

.wallet-new-withdraw .network {
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: 16px
}

.wallet-new-withdraw .row-action {
    align-items: center;
    color: #7c7c7c;
    display: flex;
    font-size: 12px;
    gap: 10px;
    line-height: 13px;
    margin-bottom: 15px
}

.wallet-new-withdraw .row-action .action-item {
    flex: 1 1;
    position: relative
}

.wallet-new-withdraw .row-action .action-item img {
    display: none;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 20px
}

.wallet-new-withdraw .row-action .action-item img.active {
    display: block
}

.wallet-new-withdraw .row-action .action-item .top {
    font-weight: 700;
    margin-bottom: 2px
}

.wallet-new-withdraw .row-action .action-item .top.active {
    color: #fff
}

.wallet-new-withdraw .row-action .action-item .bot.active {
    color: hsla(0,0%,100%,.502)
}

.wallet-new-withdraw .row-action .action-item .bot.fee {
    color: #c33838!important;
    font-weight: 700;
    text-transform: uppercase
}

.wallet-new-withdraw .input-container {
    margin-top: 20px
}

.wallet-new-withdraw .input-container .paste-text {
    color: #ffc400;
    cursor: pointer;
    line-height: 20px
}

.wallet-new-withdraw .widthraw {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 20px
}

.wallet-new-withdraw .widthraw .note {
    clear: both;
    color: #fa2843;
    display: block;
    font-size: 80%;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 5px
}

.trade-wallet {
    margin-top: -38px
}

.trade-wallet .row {
    margin-bottom: 48px;
    margin-left: -15px;
    margin-right: -15px
}

.trade-wallet .row,.trade-wallet .row .item {
    align-items: center;
    display: flex;
    justify-content: center
}

.trade-wallet .row .item {
    border-radius: 10px;
    flex: 1 1;
    flex-direction: column;
    height: 178px;
    margin-left: 15px;
    margin-right: 15px
}

.trade-wallet .row .item:first-of-type {
    background: url(/static/media/livebanner.41690ad9dfb7c9fa4cce.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px
}

.trade-wallet .row .item:nth-of-type(2) {
    background: url(/static/media/winbanner.bd028c288aced446eb81.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px
}

@media screen and (max-width: 576px) {
    .trade-wallet .row .item:nth-of-type(2) {
        display:none
    }
}

.trade-wallet .row .item .name {
    color: hsla(0,0%,100%,.502);
    font-size: 18px;
    letter-spacing: .14px;
    line-height: 18px;
    margin-bottom: 16px
}

.trade-wallet .row .item .amount {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem
}

.trade-wallet .row .item .action {
    width: 70%
}

.trade-wallet .row .item .action button {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: center
}

.trade-wallet .row .item .action button svg {
    fill: #fff
}

.trade-wallet .history .title {
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 16px
}

.trade-wallet .history .content {
    background: #181a20;
    border: 1px solid #142545;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    padding: 1rem;
    width: 100%
}

.trade-wallet-modal {
    margin-top: 100px!important;
    top: 0!important;
    transform: translate(-50%)!important
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal {
        margin-top:0!important;
        transform: translate(0)!important
    }
}

.trade-wallet-modal .modal {
    border-radius: 0!important;
    overflow: auto!important
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal .modal {
        background:#080d1f!important
    }
}

.trade-wallet-history {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.trade-wallet-history .item {
    background-color: #181a20;
    border: 1px solid #142545;
    border-radius: 10px;
    cursor: pointer;
    padding: 16px
}

.trade-wallet-history .item .top {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.trade-wallet-history .item .top .title {
    font-size: 18px!important
}

.trade-wallet-history .item .top i {
    font-size: 18px
}

.trade-wallet-history .item .bottom {
    display: grid;
    grid-template-columns: repeat(3,1fr)
}

@media screen and (max-width: 992px) {
    .trade-wallet-history .item .bottom div {
        font-size:12px!important
    }
}

.trade-wallet-history .item .bottom div .label {
    color: gray
}

.trade-wallet-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content {
        height:auto;
        min-height: 100dvh
    }
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .trade-wallet-modal-content {
        padding-bottom:60px
    }
}

.trade-wallet-modal-content .title {
    color: #fff;
    display: none;
    font-size: 24px;
    font-weight: 700;
    height: 102px;
    padding: 32px
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .title {
        display:block;
        padding: 16px
    }
}

.trade-wallet-modal-content .success-item-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 70vh;
    text-align: center
}

.trade-wallet-modal-content .success-item-container img {
    height: calc(20vh + 5%);
    margin-top: calc(10vh + 5%)
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .trade-wallet-modal-content .success-item-container img {
        height:calc(40vh + 5%);
        margin-top: 0
    }
}

.trade-wallet-modal-content .success-item-container span {
    margin-top: 20%
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .trade-wallet-modal-content .success-item-container span {
        margin-top:10px
    }
}

.trade-wallet-modal-content .item-container {
    display: flex;
    position: relative
}

.trade-wallet-modal-content .item-container .item {
    padding: 32px;
    width: 500px
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .item-container .item {
        background:#181a20;
        padding: 16px
    }
}

.trade-wallet-modal-content .item-container .item:first-of-type {
    border-right: 1px solid hsla(0,0%,100%,.169)
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .item-container .item:first-of-type {
        border-color:hsla(0,0%,100%,.2)
    }
}

.trade-wallet-modal-content .item-container .item .name {
    color: #fff;
    display: flex;
    font-size: 14px;
    justify-content: center;
    margin-bottom: 8px
}

.trade-wallet-modal-content .item-container .item .name span {
    color: #ffc400;
    margin-left: 5px;
    margin-right: 5px
}

.trade-wallet-modal-content .item-container .item .value {
    color: #fff;
    display: flex;
    font-size: 26px;
    justify-content: center
}

.trade-wallet-modal-content .item-container .switch-button {
    height: 40px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 40px
}

.trade-wallet-modal-content .item-container .switch-button svg {
    cursor: pointer;
    height: 100%;
    width: 100%
}

.trade-wallet-modal-content .input-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 32px
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .input-container {
        display:none;
        padding: 16px
    }
}

.trade-wallet-modal-content .input-container .input {
    background: #fff;
    border-radius: 5px;
    display: flex;
    gap: 5px;
    padding-left: 10px;
    width: 88%
}

.trade-wallet-modal-content .input-container .input input {
    background: transparent;
    border: none;
    color: #000;
    flex: 1 1;
    height: 40px;
    outline: none;
    width: 100%
}

.trade-wallet-modal-content .input-container .input input::-moz-placeholder {
    color: #000
}

.trade-wallet-modal-content .input-container .input input:-ms-input-placeholder {
    color: #000
}

.trade-wallet-modal-content .input-container .input input::placeholder {
    color: #000
}

.trade-wallet-modal-content .input-container .input span {
    align-items: center;
    color: #ffc400;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: center;
    padding: 5px;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.trade-wallet-modal-content .input-small-device {
    display: none;
    padding: 32px
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .input-small-device {
        display:block;
        padding: 16px
    }
}

.trade-wallet-modal-content .input-small-device .title {
    font-size: 12px;
    height: auto;
    padding: 0
}

.trade-wallet-modal-content .input-small-device .content {
    align-items: center;
    border-bottom: 1px solid hsla(0,0%,100%,.2);
    display: flex;
    padding-bottom: 4px;
    padding-top: 4px
}

.trade-wallet-modal-content .input-small-device .content input {
    background: transparent;
    border: 0;
    flex: 1 1;
    outline: 0
}

.trade-wallet-modal-content .input-small-device .content img {
    border-right: 1px solid hsla(0,0%,100%,.2);
    height: 30px;
    padding-right: 5px;
    width: 30px
}

.trade-wallet-modal-content .input-small-device .content .text {
    color: #ffc400;
    padding-left: 5px
}

.trade-wallet-modal-content .note-container {
    display: none;
    padding: 32px
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .note-container {
        display:block;
        padding: 16px
    }
}

.trade-wallet-modal-content .note-container .note {
    background: #181a20;
    border-radius: 5px;
    padding: 16px
}

.trade-wallet-modal-content .action {
    align-items: flex-end;
    display: flex;
    height: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    padding: 0 32px 32px;
    width: 90%
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .action {
        padding:0 16px calc(32px + env(safe-area-inset-bottom));
        width: 100%
    }
}

.trade-wallet-modal-content .action button {
    width: 100%
}

@media screen and (max-width: 992px) {
    .trade-wallet-modal-content .action button {
        margin-top:auto!important
    }
}

.select-custom,.select-custom .header {
    width: 100%
}

.select-custom-menu {
    display: none;
    position: fixed
}

.select-custom-menu.show {
    display: block
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .drawer-keyboard .ant-drawer-mask {
        background:transparent none repeat 0 0/auto auto padding-box border-box scroll;
        background: initial
    }

    .drawer-keyboard .ant-drawer-content-wrapper {
        height: calc(100vh - 40px)!important;
        max-width: 38%!important;
        min-width: 38%!important;
        width: 38%!important
    }
}

.drawer-keyboard .ant-drawer-content {
    background-color: transparent
}

.drawer-keyboard .ant-drawer-content .ant-drawer-body {
    padding: 0
}

.drawer-keyboard .ant-drawer-content .ant-drawer-header {
    background-color: #1d233b!important;
    border: none;
    border-top-left-radius: 20px!important;
    border-top-right-radius: 20px!important;
    height: 46px;
    margin-bottom: -1px
}

.drawer-keyboard .ant-drawer-content .ant-drawer-header .ant-drawer-title {
    font-size: 1.05rem!important;
    font-weight: 300
}

.drawer-keyboard .drawer-keyboard-main {
    background-color: #050819!important;
    display: flex;
    flex-direction: column;
    font-family: Sarabun,sans-serif!important;
    height: 100%;
    max-width: 100%;
    overflow-x: hidden
}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5,1fr);
    height: 42px;
    margin: 21px 10px 7px
}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile .input-center {
    background-color: #000!important;
    grid-column: 2/span 3
}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile span.ant-input-affix-wrapper,.drawer-keyboard .drawer-keyboard-main .row-amount-mobile span.ant-input-group-addon {
    border-radius: 0
}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile button.amount-line-1-add,.drawer-keyboard .drawer-keyboard-main .row-amount-mobile button.amount-line-1-subtract {
    background-color: #1d233b;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 100%;
    outline: none;
    width: 100%
}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile button.amount-line-1-subtract.disabled {
    cursor: not-allowed;
    opacity: .5;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile #chart-pane-input-amount-number {
    background-color: #000!important;
    border: none;
    color: #fff!important;
    font-size: 16px;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
    outline: none;
    padding-inline:0}

.drawer-keyboard .drawer-keyboard-main .row-amount-mobile .ant-input-number-affix-wrapper,.drawer-keyboard .drawer-keyboard-main .row-amount-mobile .ant-input-number-group-addon {
    background-color: #000!important;
    border: none!important
}

.drawer-keyboard .drawer-keyboard-main .row-profit-mobile {
    align-items: center;
    color: gray;
    display: flex;
    gap: 15px;
    justify-content: center
}

.drawer-keyboard .drawer-keyboard-main .row-profit-mobile .subtitle {
    font-size: 14px;
    font-weight: 400;
    text-align: center
}

.drawer-keyboard .drawer-keyboard-main .row-profit-mobile .subtitle span {
    color: #04c793;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin-left: 10px;
    transform: translateY(1px)
}

.drawer-keyboard .drawer-keyboard-main .row-profit-mobile .profit-value {
    color: #04c793;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    transform: translateY(1px)
}

.drawer-keyboard .drawer-keyboard-main .row-add {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 7px;
    margin-inline:1px;width: 100%
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .drawer-keyboard .drawer-keyboard-main .row-add {
        height:50px
    }
}

.drawer-keyboard .drawer-keyboard-main .row-add button {
    background-color: #f0b90b;
    border: none;
    color: #fff;
    font-size: 1.05rem!important;
    font-weight: 400;
    height: 100%;
    min-height: 33px;
    outline: none
}

.drawer-keyboard .drawer-keyboard-main .row-add button+button {
    margin-left: 1px
}

.drawer-keyboard .drawer-keyboard-main .row-grid {
    display: grid;
    flex-grow: 1;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: 1fr 1fr 1fr 2fr;
    margin-inline:1px;position: relative;
    width: 100%;
    z-index: 1
}

.drawer-keyboard .drawer-keyboard-main .row-grid button {
    background-color: #050819;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.05rem!important;
    outline: none
}

.drawer-keyboard .drawer-keyboard-main .row-grid button img {
    width: 30px
}

.drawer-keyboard .drawer-keyboard-main .row-grid button.all {
    grid-column: 4/span 1;
    grid-row: 1/span 2
}

.drawer-keyboard .drawer-keyboard-main .row-grid button.done {
    grid-column: 4/span 1;
    grid-row: 3/span 2
}

.drawer-keyboard .drawer-keyboard-main .row-grid .all,.drawer-keyboard .drawer-keyboard-main .row-grid .n1,.drawer-keyboard .drawer-keyboard-main .row-grid .n2,.drawer-keyboard .drawer-keyboard-main .row-grid .n3 {
    border-top-color: #050819
}

.drawer-keyboard .drawer-keyboard-main .row-grid .dot,.drawer-keyboard .drawer-keyboard-main .row-grid .n1,.drawer-keyboard .drawer-keyboard-main .row-grid .n4,.drawer-keyboard .drawer-keyboard-main .row-grid .n7 {
    border-left-color: #050819
}

.drawer-keyboard .drawer-keyboard-main .row-grid .all,.drawer-keyboard .drawer-keyboard-main .row-grid .done {
    border-right-color: #050819
}

.customToastify-hef {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start
}

.customToastify-hef i.fa-solid {
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 32px
}

.customToastify-hef i.fa-circle-check {
    color: #04c793
}

.customToastify-hef i.fa-circle-xmark {
    color: #fa4b62
}

.customToastify-hef span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 3px
}

.Toastify__toast-theme--dark {
    border: 1px solid #223855!important;
    border-radius: 6px!important;
    margin-left: auto!important;
    width: -moz-fit-content!important;
    width: fit-content!important
}

@media screen and (max-width: 992px)and (orientation:landscape) {
    .Toastify__toast-theme--dark {
        margin-right:30px!important
    }
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .Toastify__toast-theme--dark {
        margin-bottom:10px!important;
        margin-right: 30px!important
    }
}

.Toastify__toast-container.Toastify__toast-container--top-right {
    top: 100px!important
}

@media screen and (max-width: 992px) {
    .Toastify__toast-container.Toastify__toast-container--top-right {
        top:90px!important
    }
}

.n41x-closeButton {
    align-items: center;
    background-color: #727481;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    margin-left: 15px;
    outline: none;
    position: fixed;
    right: 8px;
    top: 105px;
    width: 30px
}

@media screen and (max-width: 992px) {
    .n41x-closeButton {
        height:26px;
        right: 5px;
        top: 0!important;
        width: 26px
    }
}

.n41x-closeButton img {
    width: 22px
}

@media screen and (max-width: 992px) {
    .n41x-closeButton img {
        width:20px
    }
}

.fast-slide-toast {
    animation-duration: .1s!important;
    transition: transform .1s ease-out!important
}

.tableHistoryMobile-c {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px
}

.tableHistoryMobile-c .ch-card {
    border: 1px solid #1d233b;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px
}

.tableHistoryMobile-c .ch-card .r {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.tableHistoryMobile-c .ch-card .r1 span.symbol {
    color: #fff;
    font-size: 14px;
    font-weight: 700
}

.tableHistoryMobile-c .ch-card .r1 span.time {
    color: gray;
    font-size: 14px;
    font-style: italic
}

.tableHistoryMobile-c .ch-card .r2 .left span.typeRC {
    color: gray;
    font-size: 14px
}

.tableHistoryMobile-c .ch-card .r3 .left span,.tableHistoryMobile-c .ch-card .r3 .right span {
    display: block
}

.tableHistoryMobile-c .ch-card .r3 .left span:first-child,.tableHistoryMobile-c .ch-card .r3 .right span:first-child {
    color: gray;
    margin-bottom: 2px
}

.tableHistoryMobile-c .ch-card .r3 .left span:last-child,.tableHistoryMobile-c .ch-card .r3 .right span:last-child {
    color: #f5f5f5;
    font-size: 15px
}

.tableHistoryMobile-c .ch-card .r3 .right span {
    text-align: right
}

.tableHistoryMobile-c .ch-card .r11 .left span,.tableHistoryMobile-c .ch-card .r11 .right span {
    color: gray;
    display: block;
    margin-bottom: 2px
}

.tableHistoryMobile-c .ch-card .r11 .right span {
    color: #f5f5f5;
    font-size: 15px;
    text-align: right
}

.profile-new-card {
    background: #181a20;
    border: 1px solid hsla(0,0%,100%,.102);
    border-radius: 5px;
    margin: auto
}

.profile-new-card .title {
    border-bottom: 1px solid hsla(0,0%,100%,.102);
    font-size: 18px;
    font-weight: 500;
    padding: 16px
}

.profile-new {
    margin-left: -30px;
    margin-right: -30px
}

@media screen and (max-width: 991px) {
    .profile-new {
        margin-left:-10px;
        margin-right: -10px
    }
}

.profile-new .profile-new--main-text {
    color: #fff
}

.profile-new .profile-new--second-text {
    color: hsla(0,0%,100%,.502)
}

.profile-new .profile-new--last-cell {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.profile-new .profile-new--margin-bottom {
    margin-bottom: 48px
}

.profile-new .item {
    margin-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%
}

.profile-new .item .divButton {
    display: flex;
    justify-content: right
}

@media screen and (max-width: 992px) {
    .profile-new .item .divButton {
        justify-content:left
    }
}

.profile-new .item .card-custom {
    max-width: 1108px
}

@media screen and (max-width: 991px) {
    .profile-new .item .card-custom {
        max-width:690px
    }
}

@media screen and (max-width: 767px) {
    .profile-new .item .card-custom {
        max-width:510px
    }
}

.profile-new .item .card-custom .card {
    padding: 16px
}

.profile-new .item .card-custom .card .row-avatar {
    align-items: center;
    display: flex;
    gap: 24px;
    padding-bottom: 16px
}

@media screen and (max-width: 575px) {
    .profile-new .item .card-custom .card .row-avatar {
        flex-wrap:wrap
    }
}

.profile-new .item .card-custom .card .row-avatar .image {
    border-radius: 100px;
    height: 90px;
    overflow: hidden;
    width: 90px
}

.profile-new .item .card-custom .card .row-avatar .image img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

@media screen and (max-width: 991px) {
    .profile-new .item .card-custom .card .fake-col {
        display:none
    }
}

@media screen and (max-width: 767px) {
    .profile-new .item .card-custom .card.verify [class*=bo-row] [class*=bo-col] {
        margin-bottom:8px
    }
}

.profile-new .item .card-custom .card.verify .verify-button {
    display: flex;
    justify-content: flex-end
}

@media screen and (max-width: 767px) {
    .profile-new .item .card-custom .card.verify .verify-button {
        justify-content:flex-start
    }
}

.profile-new .item .card-custom .card.security [class*=bo-row] {
    margin-bottom: 48px
}

@media screen and (max-width: 767px) {
    .profile-new .item .card-custom .card.security [class*=bo-row] [class*=bo-col] {
        margin-bottom:8px
    }
}

.profile-new .item .card-custom .card.security .error {
    color: #fa4b62!important;
    font-size: 12px;
    font-style: italic;
    text-align: left
}

@media screen and (max-width: 1199px) {
    .profile-new .item .card-custom .card.security .error {
        text-align:left
    }
}

@media screen and (max-width: 767px) {
    .profile-new .item .card-custom .card.security .content {
        order:1
    }
}

.twofa-verify-modal-custom {
    max-width: 600px!important
}

.change-pass-profile-modal-custom {
    min-width: 500px!important
}

@media screen and (max-width: 576px) {
    .change-pass-profile-modal-custom {
        min-width:100%!important
    }
}

.input-group {
    margin-bottom: 16px;
    width: 100%
}

.input-group .input-group-label {
    color: hsla(0,0%,100%,.4);
    display: inline-block;
    margin-bottom: 4px
}

.input-group .input-group-input {
    margin-bottom: 8px
}

.input-group .input-group-input input {
    background: transparent;
    background: hsla(0,0%,44%,.231);
    border: 1px solid #4d505d;
    border-radius: 8px;
    color: #fff;
    height: 45px;
    line-height: 45px;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%
}

.input-group .input-group-input input:disabled {
    color: #8b8d96
}

.input-group .input-group-error {
    color: #fa4b62!important;
    font-size: 80%;
    font-style: italic!important
}

.switch-custom {
    background: #b7b7b7;
    border-radius: 99px;
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    height: 24px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 58px
}

.switch-custom.active {
    background: #04c793
}

.switch-custom.active .on {
    opacity: 1
}

.switch-custom.active .off {
    opacity: 0
}

.switch-custom.active .ball {
    margin-left: 34px
}

.switch-custom .on {
    left: 30%;
    opacity: 0
}

.switch-custom .off,.switch-custom .on {
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    transition: opacity .2s
}

.switch-custom .off {
    opacity: 1;
    right: 30%
}

.switch-custom .ball {
    background: #fff;
    border-radius: 99px;
    height: 20px;
    margin-left: 0;
    top: 50%;
    transition: margin-left .4s;
    width: 20px
}

.switch-custom .ball,.switch-custom .ball .loading {
    left: 2px;
    position: absolute;
    transform: translateY(-50%)
}

.switch-custom .ball .loading {
    animation: spin .8s linear infinite;
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;
    border-color: rgba(0,0,0,.502) transparent transparent rgba(0,0,0,.502);
    border-radius: 99px;
    border-style: solid;
    border-width: 2px;
    height: 17px;
    top: 5%;
    width: 17px
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.avatar-modal-content .header {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding: 16px
}

.avatar-modal-content .content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px
}

.avatar-modal-content .content .preview {
    align-items: center;
    background: #080d1f;
    border-radius: 10px;
    color: hsla(0,0%,100%,.502);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 230px;
    justify-content: center;
    margin-bottom: 5px;
    padding: 45px 0;
    width: 100%
}

.avatar-modal-content .content .preview img {
    display: block;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    width: 100%
}

.avatar-modal-content .content .preview i {
    font-size: 110px
}

.avatar-modal-content .content .preview div {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px
}

.avatar-modal-content .content .size span:first-of-type {
    color: #fff
}

.avatar-modal-content .content .size span:nth-of-type(2) {
    color: #04c793;
    font-size: 18px;
    font-weight: bolder
}

.avatar-modal-content .content .note {
    color: #8b8d96
}

.verify-profile-modal-content {
    padding: 16px
}

.verify-profile-modal-content .title {
    color: hsla(0,0%,100%,.502);
    font-size: 20px;
    text-align: center
}

.verify-profile-modal-content .overview {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative
}

.verify-profile-modal-content .overview .item {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    width: 100px;
    z-index: 3
}

.verify-profile-modal-content .overview .item .circle {
    align-items: center;
    background: #181a20;
    border-radius: 100px;
    display: flex;
    height: 62px;
    justify-content: center;
    width: 62px
}

.verify-profile-modal-content .overview .item .circle .number {
    align-items: center;
    background: #4d4e4e;
    border-radius: 100px;
    color: #fff;
    display: flex;
    font-size: 18px;
    height: 42px;
    justify-content: center;
    width: 42px
}

.verify-profile-modal-content .overview .item .circle .number.active {
    background: #f0b90b
}

.verify-profile-modal-content .overview .item .text {
    color: hsla(0,0%,100%,.502);
    text-align: center
}

.verify-profile-modal-content .overview .line {
    border-bottom: 1px dashed #4d4e4e;
    height: 1px;
    left: 37px;
    position: absolute;
    top: 31px;
    width: 85%;
    z-index: 2
}

.twofa-verify-modal-content {
    overflow-y: auto;
    padding: 32px
}

@media screen and (max-width: 992px) {
    .twofa-verify-modal-content {
        margin-bottom:50px
    }
}

.twofa-verify-modal-content .input-container {
    align-items: center;
    background: #101828;
    border-radius: 4px;
    display: flex;
    width: 100%
}

.twofa-verify-modal-content .input-emailCode {
    align-items: center;
    display: flex;
    gap: 5px
}

.twofa-verify-modal-content .input-wrapper {
    flex: 1 1;
    position: relative
}

.twofa-verify-modal-content .custom-input {
    background-color: #fff;
    border: none;
    border-radius: 5px;
    color: #000;
    flex: 1 1;
    font-size: 14px;
    outline: none;
    padding: 10px;
    width: 100%
}

.twofa-verify-modal-content .paste-button {
    background: none;
    border: none;
    color: #3b82f6;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.twofa-verify-modal-content .send-button {
    background: #f0b90b;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem!important;
    height: 42px;
    margin-left: 15px!important;
    padding: .375rem .75rem!important
}

.twofa-verify-modal-content .send-button-sending {
    background: #1d233b!important;
    box-shadow: none!important;
    color: #fff!important;
    cursor: not-allowed!important;
    min-width: 23%
}

.twofa-verify-modal-content .send-button:hover {
    background: #f0b90b
}

.twofa-verify-modal-content .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center
}

.twofa-verify-modal-content .warning {
    color: rgba(250,40,67,.659);
    margin-bottom: 24px;
    text-align: center
}

.twofa-verify-modal-content .address .qr {
    align-items: center;
    background: #fff;
    display: flex;
    height: 150px;
    justify-content: center;
    margin: auto auto 20px;
    padding: 3px;
    width: 150px
}

.twofa-verify-modal-content .address .bo-row {
    align-items: center;
    display: flex;
    margin-bottom: .4rem
}

.twofa-verify-modal-content .address .bo-row .qr-row-title {
    color: hsla(0,0%,100%,.502);
    font-weight: 700;
    margin-bottom: 5px
}

.twofa-verify-modal-content .address .bo-row .input-address {
    align-items: center;
    background: hsla(229,5%,57%,.231);
    border-radius: 4px;
    color: #8b8d96;
    display: flex;
    gap: 10px;
    height: 40px;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px
}

.twofa-verify-modal-content .address .bo-row .input-address i {
    color: #fff;
    cursor: pointer;
    font-size: 18px
}

.twofa-verify-modal-content .address .input-group {
    margin-bottom: 10px
}

.twofa-verify-modal-content .address .input-group label {
    margin-bottom: 8px
}

.twofa-verify-modal-content .address .input-group .input {
    display: flex
}

@media screen and (max-width: 576px) {
    .twofa-verify-modal-content .address .input-group .input {
        align-items:flex-start;
        flex-direction: column
    }
}

.twofa-verify-modal-content .address .input-group .input input {
    background-color: #fafafa;
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    outline: none;
    padding: 0 10px;
    width: 100%
}

.twofa-verify-modal-content .input-group {
    margin-bottom: 0
}

.twofa-verify-modal-content .enable {
    display: flex;
    justify-content: center;
    margin-top: -10px;
    width: 100%
}

.profile-change-pass {
    padding: 32px
}

.profile-change-pass .title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    height: 36px;
    margin-bottom: 30px;
    text-align: center
}

.profile-change-pass .list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.profile-change-pass-group:focus-within label {
    font-size: 14px!important
}

.profile-change-pass-group label {
    color: hsla(0,0%,100%,.851);
    font-size: 16px;
    transition: font-size .2s
}

.profile-change-pass-group .input-container {
    background: #fff;
    border-radius: 4px;
    padding: 7px 10px;
    position: relative
}

.profile-change-pass-group .input-container input {
    background: transparent;
    border: 0;
    color: #333;
    font-size: 16px;
    outline: 0;
    padding-right: 30px;
    width: 100%
}

.profile-change-pass-group .input-container i {
    color: #333;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.profile-change-pass-group .error {
    color: #fa4b62!important;
    font-size: 12px
}

.profile-select-menu {
    background: #1f1f1f;
    border-radius: 5px;
    left: 0;
    max-height: 350px;
    opacity: 0;
    overflow: hidden;
    overflow: auto;
    padding: 2px 0;
    position: fixed;
    top: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity .2s,transform .3s;
    z-index: 999999
}

.profile-select-menu.show {
    opacity: 1;
    transform: scaleY(1)
}

.profile-select-menu .profile-select-menu-item {
    cursor: pointer;
    padding: 4px 8px;
    transition: background .2s
}

.profile-select-menu .profile-select-menu-item:hover {
    background: #313131
}

.profile-select-menu .profile-select-menu-item.active {
    background: #111e28
}

.faq {
    background: url(/static/media/faq.15c91d4130ea8f64eba5.jpg) 50% no-repeat;
    background-size: cover;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    width: 100vw
}

.faq .header {
    align-items: center;
    background-color: #011022;
    display: flex;
    height: 64px;
    justify-content: space-between;
    left: 0;
    padding: 0 24px;
    position: fixed;
    top: 0;
    width: 100%
}

.faq .header .logo img {
    cursor: pointer;
    width: 160px
}

.faq .header .btns {
    display: flex;
    gap: 16px
}

@media(min-width: 1024px) {
    .faq .header {
        padding:32px 86px;
        padding: var(--header-padding,32px) 86px;
        transition: padding .3s ease-in-out,background-color .3s ease-in-out
    }
}

.faq .layout {
    padding-top: 64px
}

.faq .layout .intro {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 240px;
    justify-content: center;
    margin: 0 20px;
    text-align: center
}

.faq .layout .intro .title {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem
}

.faq .layout .content {
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    min-height: 500px;
    padding: 15px
}

@media(min-width: 1024px) {
    .faq .layout .content {
        flex-direction:row;
        padding: 32px 86px;
        padding: var(--header-padding,32px) 86px
    }
}

.faq .layout .content .left {
    flex: 1 1
}

.faq .layout .content .right {
    min-width: 310px
}

.faq .layout .content .right .b1 {
    background-color: transparent!important;
    border: 1px solid #f0b90b!important;
    border-radius: .25rem;
    color: #f0b90b;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 16px;
    padding: .375rem .75rem;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (min-width: 768px) {
    .faq .layout .content .right .b1 {
        margin-bottom:16px;
        margin-right: 0
    }
}

.faq .layout .content .right .tabs {
    display: none;
    flex-direction: column;
    gap: 8px
}

@media screen and (min-width: 768px) {
    .faq .layout .content .right .tabs {
        display:flex
    }
}

.faq .layout .content .right .tabs .tab {
    border: 1px solid transparent;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    padding: 10px 12px
}

.faq .layout .content .right .tabs .tab:hover {
    border-color: #f0b90b;
    color: #f0b90b
}

.faq .layout .content .right .tabs .tab.active {
    background-color: #f0b90b;
    color: #fff!important
}

.templateLeft {
    padding-bottom: 50px
}

.templateLeft .title {
    font-size: 1.5rem;
    font-weight: bolder;
    margin-bottom: 1.5rem
}

.templateLeft .subTitle {
    font-size: 1.25rem
}

.templateLeft .subSubTitle,.templateLeft .subTitle {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem
}

.templateLeft .subSubTitle {
    font-size: 1rem
}

.templateLeft p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 20px;
    margin-bottom: 1rem
}

.verify-profile-step-1 {
    display: flex;
    flex-direction: column
}

.verify-profile-step-1 input:-webkit-autofill,.verify-profile-step-1 input:-webkit-autofill:focus,.verify-profile-step-1 input:-webkit-autofill:hover {
    -webkit-text-fill-color: #000
}

.verify-profile-step-1 .group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px
}

.verify-profile-step-1 .group.last {
    margin-bottom: 0
}

.verify-profile-step-1 .group input {
    background-color: #fafafa;
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    height: 40px;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%
}

.verify-profile-step-1 .group input::-moz-placeholder {
    font-size: 16px
}

.verify-profile-step-1 .group input:-ms-input-placeholder {
    font-size: 16px
}

.verify-profile-step-1 .group input::placeholder {
    font-size: 16px
}

.verify-profile-step-1 .group input:focus {
    border-color: #f0b90b;
    box-shadow: 0 0 0 .2rem rgba(8,149,231,.165);
    outline: 0
}

.verify-profile-step-1 .group .input-dropdown {
    box-shadow: 0
}

.verify-profile-step-1 .group .input-dropdown.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.verify-profile-step-1 .group .dropdown-header {
    align-items: center;
    background-color: #fafafa;
    border-radius: 4px;
    color: #333;
    display: flex;
    height: 40px;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px
}

.verify-profile-step-1 .group .dropdown-header i {
    position: relative;
    top: -3px
}

.verify-profile-step-1 .group .genderDropdownHeader {
    align-items: center;
    background-color: #fafafa;
    border-radius: 4px;
    color: #333;
    display: flex;
    height: 40px;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px
}

.verify-profile-step-1 .group .genderDropdownHeader i {
    position: relative;
    top: -3px
}

.verify-profile-step1-menu {
    background: #fafafa;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: #333;
    margin-top: -1px
}

.verify-profile-step1-menu::-webkit-scrollbar-thumb,.verify-profile-step1-menu::-webkit-scrollbar-track {
    background-color: #fafafa
}

.verify-profile-step1-menu .profile-select-menu-item:hover {
    background: #f0b90b
}

.verify-profile-step1-menu .profile-select-menu-item.active {
    background: #fafafa;
    color: #333
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .verify-profile-step-2 {
        margin-bottom:100px
    }
}

.verify-profile-step-2 .verify-profile-step-2--text {
    color: hsla(0,0%,100%,.502);
    font-size: 14px
}

.verify-profile-step-2 .verify-profile-step-2--mb {
    margin-bottom: 16px
}

.verify-profile-step-2 .verify-profile-step-2-container {
    margin-bottom: 20px;
    overflow-x: hidden;
    overflow-y: auto
}

.verify-profile-step-2 .verify-profile-step-2-container .param-container {
    margin-bottom: 32px
}

.verify-profile-step-2 .verify-profile-step-2-container .param-container .param {
    margin-bottom: 16px
}

.verify-profile-step-2 .verify-profile-step-2-container .verify-profile-step-2-title {
    margin-bottom: 8px
}

.verify-profile-step-2 .verify-profile-step-2-container .image-upload {
    align-items: center;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 150px;
    justify-content: center;
    margin: auto;
    width: 80%
}

.verify-profile-step-2 .verify-profile-step-2-container .image-upload i {
    color: hsla(0,0%,50%,.278);
    font-size: 55px
}

.verify-profile-step-2 .verify-profile-step-2-container .image-upload .upload-text {
    color: hsla(0,0%,50%,.278);
    width: -moz-fit-content;
    width: fit-content
}

.verify-profile-step-2 .verify-profile-step-2-container .image-container {
    align-items: center;
    background: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 150px;
    justify-content: center;
    margin: auto;
    width: 80%
}

.verify-profile-step-2 .verify-profile-step-2-container .image-container img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 80%
}

.verify-profile-step-2 .back {
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    width: -moz-fit-content;
    width: fit-content
}

.verify-profile-step-3 .title {
    color: #04c793;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center
}

.verify-profile-step-3 .verify-profile-step-3-text {
    color: hsla(0,0%,100%,.502);
    margin-bottom: 40px;
    text-align: center
}

.trader-mobile-ohlcm {
    background-color: transparent;
    left: calc(15px - 12.5%);
    position: absolute;
    top: 50%;
    transform: rotate(-90deg);
    width: 25%;
    z-index: 99
}

@media screen and (min-height: 1024px) {
    .trader-mobile-ohlcm {
        left:calc(15px - 17.5%);
        width: 35%
    }
}

@media screen and (min-height: 700px) {
    .trader-mobile-ohlcm {
        left:calc(15px - 33.5%);
        width: 67%
    }
}

@media screen and (min-height: 650px) {
    .trader-mobile-ohlcm {
        left:calc(15px - 14vh);
        width: 28vh
    }
}

.trader-mobile-ohlcm .ant-progress-inner {
    width: 100%
}

.trader-mobile-ohlcm .ant-progress-inner div {
    height: 6px!important
}

.trader-mobile-ohlcm .span-group {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: -8px
}

.trader-mobile-ohlcm .span-group .span1 {
    color: #04c793;
    font-size: 12px;
    transform: rotate(90deg) translateY(-20px) translateX(10px)
}

.trader-mobile-ohlcm .span-group .span2 {
    color: #fa4b62;
    font-size: 12px;
    transform: rotate(90deg) translateY(23px) translateX(10px)
}

.ManageUsersStatistics-main .ant-descriptions-item-label {
    width: 50%
}

.ConfirmWithdrawModallabc .ant-modal-content {
    background-color: transparent!important
}

.ConfirmWithdrawModallabc .ant-modal-body {
    background-color: #091022;
    border-radius: 25px
}

.ConfirmWithdrawModallabc .ant-modal-body .mTitle {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px
}

.ConfirmWithdrawModallabc .ant-modal-body .mTitle h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0
}

.ConfirmWithdrawModallabc .ant-modal-body .mTitle i {
    cursor: pointer;
    font-size: 28px
}

.ConfirmWithdrawModallabc .ant-modal-body .mAmount {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px
}

.ConfirmWithdrawModallabc .ant-modal-body .mAmount p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0
}

.ConfirmWithdrawModallabc .ant-modal-body .mAmount h3 {
    font-size: 26px;
    font-weight: 700
}

.ConfirmWithdrawModallabc .ant-modal-body .summary {
    margin-block:20px;margin-inline:auto;max-width: 75%
}

@media screen and (max-width: 576px) {
    .ConfirmWithdrawModallabc .ant-modal-body .summary {
        max-width:100%
    }
}

.ConfirmWithdrawModallabc .ant-modal-body .summary .row {
    align-items: center;
    color: #9ca4b1;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.ConfirmWithdrawModallabc .ant-modal-body .summary .ant-divider {
    margin: 9px 0
}

.ConfirmWithdrawModallabc .ant-modal-body .input-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 32px
}

@media screen and (max-width: 992px) {
    .ConfirmWithdrawModallabc .ant-modal-body .input-container {
        padding:16px
    }
}

@media screen and (max-width: 576px) {
    .ConfirmWithdrawModallabc .ant-modal-body .input-container {
        padding-inline:0
    }
}

.ConfirmWithdrawModallabc .ant-modal-body .input-container span.paste-text {
    align-items: center;
    color: #ffc400;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: center;
    padding: 5px;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.ConfirmWithdrawModallabc .ant-modal-body button.confirm {
    background-color: #dab12b;
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 700;
    height: 45px;
    margin: 0 auto;
    outline: none;
    width: 230px
}

.admin-newDetailUser-bo {
    display: flex;
    flex-direction: column;
    gap: 50px
}

.admin-newDetailUser-bo h2 {
    margin-bottom: 15px
}

.admin-newDetailUser-bo .cmnd {
    display: flex;
    gap: 10px
}

.admin-newDetailUser-bo .cmnd img {
    border: 1px solid #575757;
    border-radius: 5px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 150px
}

@media screen and (max-width: 992px) {
    .admin-newDetailUser-bo .cmnd img {
        height:50px;
        width: 75px
    }
}

.admin-newDetailUser-bo .bank-info {
    align-items: center;
    display: flex;
    gap: 10px
}

.admin-newDetailUser-bo .bank-info .bank-img {
    border-radius: 5px;
    display: inline-block
}

.admin-newDetailUser-bo .bank-info .bank-img img {
    height: 30px;
    width: 30px
}

.admin-newDetailUser-bo .btn-action {
    align-items: center;
    background-color: #575757;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 5px;
    outline: none;
    padding: 4px 12px;
    transition: all .15s ease
}

.admin-newDetailUser-bo .btn-action:hover {
    background-color: gray
}

.admin-newDetailUser-bo .btn-action.danger {
    background-color: #6b0000
}

.admin-newDetailUser-bo .btn-action.danger:hover {
    background-color: #860000
}

.admin-newDetailUser-bo .action-list {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4,1fr)
}

.admin-newDetailUser-bo .action-list button {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center
}

@media screen and (max-width: 1400px) {
    .admin-newDetailUser-bo .action-list {
        grid-template-columns:repeat(2,1fr)
    }
}

@media screen and (max-width: 1200px) {
    .admin-newDetailUser-bo .action-list {
        grid-template-columns:repeat(4,1fr)
    }
}

@media screen and (max-width: 992px) {
    .admin-newDetailUser-bo .action-list {
        grid-template-columns:repeat(2,1fr)
    }
}

@media screen and (max-width: 768px) {
    .admin-newDetailUser-bo .action-list {
        grid-template-columns:1fr
    }
}

@media screen and (max-width: 576px) {
    .admin-newDetailUser-bo .action-list {
        grid-template-columns:repeat(2,1fr)
    }
}

.admin-newDetailUser-bo .boxx4,.admin-newDetailUser-bo .boxx5 {
    grid-column: 1/span 2
}

.admin-newDetailUser-bo .boxx4 h2,.admin-newDetailUser-bo .boxx5 h2 {
    align-items: center;
    display: flex;
    gap: 10px
}

.admin-newDetailUser-bo .boxx3 {
    grid-column: 1/span 2
}

.admin-newDetailUser-bo .admin-newDetailUser-table .t1-row {
    background: #050819
}

.admin-newDetailUser-bo .admin-newDetailUser-table .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.admin-newDetailUser-bo .admin-newDetailUser-table .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px
}

.admin-newDetailUser-bo .admin-newDetailUser-table .ant-table-placeholder {
    background: #050819
}

.admin-newDetailUser-bo .bank-column {
    align-items: center;
    display: flex;
    flex-direction: row
}

.admin-newDetailUser-bo .bank-column img {
    border-radius: 5px;
    height: 30px;
    margin-right: 5px;
    overflow: hidden;
    width: 30px
}

.admin-newDetailUser-bo .bank-item-w-vnd {
    align-items: center;
    display: flex;
    flex-direction: row
}

.admin-newDetailUser-bo .bank-item-w-vnd img {
    border-radius: 5px;
    height: 30px;
    margin-right: 5px;
    overflow: hidden;
    width: 30px
}

.admin-newDetailUser-bo .user-history-detail-jkab {
    grid-gap: 50px;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 3fr
}

@media screen and (max-width: 1200px) {
    .admin-newDetailUser-bo .user-history-detail-jkab {
        display:flex;
        flex-direction: column;
        gap: 50px
    }
}

.admin-newDetailUser-bo .user-history-detail-jkab .statistics .title-area {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 25px
}

.admin-newDetailUser-bo .user-history-detail-jkab .statistics .title-area h2 {
    margin-bottom: 0
}

.admin-newDetailUser-bo .user-history-detail-jkab .history .title-area {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px
}

@media screen and (max-width: 992px) {
    .admin-newDetailUser-bo .user-history-detail-jkab .history .title-area {
        align-items:flex-start;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start
    }

    .admin-newDetailUser-bo .user-history-detail-jkab .history .title-area .pagination-box {
        align-self: flex-end
    }
}

.admin-newDetailUser-bo .user-history-detail-jkab .history .title-area .left {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-start
}

.admin-newDetailUser-bo .user-history-detail-jkab .history .title-area .left h2 {
    margin-bottom: 0
}

.admin-newDetailUser-bo .IdentityCardCol {
    display: flex;
    gap: 10px
}

.admin-newDetailUser-bo .IdentityCardCol img {
    border: 1px solid gray;
    border-radius: 5px;
    height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    overflow: hidden;
    width: 100px
}

.network-tree-user-624 .tree {
    color: inherit;
    line-height: 2;
    position: relative
}

@media screen and (max-width: 576px) {
    .network-tree-user-624 .tree {
        max-width:calc(100vw - 60px);
        overflow-x: scroll
    }
}

.network-tree-user-624 .tree span.item-name {
    color: #f5f5f5;
    cursor: pointer;
    font-size: 15px
}

.network-tree-user-624 .tree span.item-name:hover {
    color: #f0b90b;
    text-decoration: underline
}

.network-tree-user-624 .tree span.item-mail {
    color: gray;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px
}

.network-tree-user-624 .tree .fa-house-user,.network-tree-user-624 .tree .fa-user,.network-tree-user-624 .tree .fa-users {
    color: #f0b90b;
    font-size: 14px;
    margin-right: 8px
}

.network-tree-user-624 .tree ul {
    list-style: none;
    padding-left: 15px
}

.network-tree-user-624 .tree ul li {
    box-sizing: border-box;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-top: 5px;
    position: relative
}

.network-tree-user-624 .tree ul li:before {
    background-color: #666;
    content: "";
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 15px;
    width: 10px
}

.network-tree-user-624 .tree ul li:after {
    background-color: #666;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px
}

.network-tree-user-624 .tree ul li:last-child:after {
    height: 15px
}

.HistoryBODeposit-section .ant-table-cell {
    background: #181a20!important;
    border-bottom: 1px solid #142545
}

.columnsMobile-item .r1 {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.columnsMobile-item .r1 h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0
}

.columnsMobile-item .r1 i {
    cursor: pointer;
    font-size: 18px
}

.columnsMobile-item .r2 {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 10px
}

.columnsMobile-item .r2 .i p {
    color: gray;
    font-size: 13px;
    margin-bottom: 0
}

.ajakjakk-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ajakjakk-list .ajakjakk-item {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.ajakjakk-list .ajakjakk-item p {
    color: gray;
    margin-bottom: 0;
    width: 35%
}

.ajakjakk-list .ajakjakk-item span {
    display: block;
    text-align: right;
    width: 65%
}

.ajakjakk-list .ajakjakk-item .fa-copy {
    color: gray;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px
}

.form-admin-add-user {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.drawer-admin-add-user .ant-drawer-content {
    background: #011022!important
}

.admin-settings-page .status {
    align-items: center;
    display: flex;
    gap: 5px
}

.admin-settings-page .status span {
    display: inline-block;
    font-weight: 600
}

.admin-settings-page .status .isOn {
    color: #04c793
}

.admin-settings-page .status .isOff {
    color: #fa4b62
}

.admin-settings-page .turnItOff,.admin-settings-page .turnItOn {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-inline:auto;max-width: 500px;
    width: 100%
}

.admin-settings-page .turnItOff .qrWrap,.admin-settings-page .turnItOn .qrWrap {
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    height: 190px;
    justify-content: center;
    width: 190px
}

.admin-settings-page .turnItOff .qrWrap svg,.admin-settings-page .turnItOn .qrWrap svg {
    margin-top: 0!important
}

.search-users-zone .flex {
    display: flex;
    gap: 15px;
    margin-top: 15px
}

.search-users-zone .flex .list-user {
    max-height: 500px;
    min-height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%
}

.search-users-zone .flex .list-user .user-item {
    padding-block:3px}

.search-users-zone .flex .selected-user {
    max-height: 500px;
    min-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%
}

.search-users-zone .flex .selected-user button {
    margin-bottom: 15px
}

.search-users-zone .flex .selected-user .user-item {
    padding-block:3px}

.BollingerBands-button {
    align-items: center;
    background-color: #1d233b;
    border-radius: 5px;
    bottom: 0;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 0;
    transition: all .15s ease;
    width: 30px
}

@media screen and (max-width: 992px) {
    .BollingerBands-button {
        bottom:5px;
        height: 28px;
        right: 5px;
        width: 28px
    }
}

.BollingerBands-button:hover i {
    color: #b8b8b8
}

.BollingerBands-button i {
    color: gray;
    font-size: 15px;
    transition: all .15s ease
}

@media screen and (max-width: 992px) {
    .BollingerBands-button i {
        font-size:14px
    }
}

.BollingerBands-popover .ant-popover-inner {
    background-color: #1b2839;
    border-radius: 4px
}

.BollingerBands-popover .ant-popover-inner .ant-checkbox-inner {
    border-radius: 2px
}

.signup-page {
    background-color: #181a20;
    display: flex;
    height: 100vh;
    width: 100%
}

.signup-page .left-area {
    position: relative;
    width: 55%
}

.signup-page .left-area img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    width: 100%
}

@media screen and (max-width: 768px) {
    .signup-page .left-area {
        display:none
    }
}

.signup-page .left-area:after {
    background: linear-gradient(90deg,rgba(1,16,34,.3),#181a20);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (max-width: 768px) {
    .signup-page .left-area:after {
        display:none
    }
}

.signup-page .right-area {
    animation: fadeIn;
    animation-duration: .75s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%
}

@media screen and (max-width: 768px) {
    .signup-page .right-area {
        width:100%
    }
}

.login-page {
    background-color: #181a20;
    display: flex;
    height: 100vh;
    width: 100%
}

.login-page .left-area {
    position: relative;
    width: 55%
}

.login-page .left-area img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    width: 100%
}

@media screen and (max-width: 768px) {
    .login-page .left-area {
        display:none
    }
}

.login-page .left-area:after {
    background: linear-gradient(90deg,rgba(1,16,34,.3),#181a20);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (max-width: 768px) {
    .login-page .left-area:after {
        display:none
    }
}

.login-page .right-area {
    animation: fadeIn;
    animation-duration: .75s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%
}

@media screen and (max-width: 768px) {
    .login-page .right-area {
        width:100%
    }
}

.login-page .right-area .alert-area {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 70px;
    width: 45%
}

@media screen and (max-width: 768px) {
    .login-page .right-area .alert-area {
        width:100%
    }
}

.login-page .right-area .alert-area .ant-alert {
    width: 420px
}

@media screen and (max-width: 768px) {
    .login-page .right-area .alert-area .ant-alert {
        width:calc(100% - 72px)
    }
}

.verify-page {
    background-color: #050819;
    display: flex;
    height: 100vh;
    width: 100%
}

.verify-page .left-area {
    position: relative;
    width: 55%
}

.verify-page .left-area img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    width: 100%
}

@media screen and (max-width: 768px) {
    .verify-page .left-area {
        display:none
    }
}

.verify-page .left-area:after {
    background: linear-gradient(90deg,rgba(1,16,34,.3),#050819);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (max-width: 768px) {
    .verify-page .left-area:after {
        display:none
    }
}

.verify-page .right-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%
}

@media screen and (max-width: 768px) {
    .verify-page .right-area {
        width:100%
    }
}

.verify-page .right-area .verify {
    align-items: center;
    animation: fadeInRight;
    animation-duration: .5s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 16px
}

.verify-page .right-area .verify .center-area {
    width: 320px
}

.verify-page .right-area .verify .center-area .title {
    color: #f0b90b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px
}

.verify-page .right-area .verify .center-area .resend-email {
    margin-top: 32px;
    text-align: left
}

.verify-page .right-area .verify .center-area .resend-email strong,.verify-page .right-area .verify .center-area a.go-to-spam {
    color: #f0b90b;
    cursor: pointer
}

.verify-token-page {
    background-color: #050819;
    display: flex;
    height: 100vh;
    width: 100%
}

.verify-token-page .left-area {
    position: relative;
    width: 55%
}

.verify-token-page .left-area img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    width: 100%
}

@media screen and (max-width: 768px) {
    .verify-token-page .left-area {
        display:none
    }
}

.verify-token-page .left-area:after {
    background: linear-gradient(90deg,rgba(1,16,34,.3),#050819);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media screen and (max-width: 768px) {
    .verify-token-page .left-area:after {
        display:none
    }
}

.verify-token-page .right-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%
}

@media screen and (max-width: 768px) {
    .verify-token-page .right-area {
        width:100%
    }
}

.verify-token-page .right-area .verify-token {
    align-items: center;
    animation: fadeInRight;
    animation-duration: .5s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 16px
}

.verify-token-page .right-area .verify-token .center-area {
    width: 320px
}

.verify-token-page .right-area .verify-token .center-area .title {
    color: #f0b90b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px
}

.verify-token-page .right-area .verify-token .center-area .fa-circle-check {
    color: #04c793;
    font-size: 50px;
    margin-bottom: 15px
}

.verify-token-page .right-area .verify-token .center-area .fa-circle-xmark {
    color: #fa4b62;
    font-size: 50px;
    margin-bottom: 15px
}

.verify-token-page .right-area .verify-token .center-area .password-field.field label {
    display: block;
    margin-bottom: 4px
}

.page-404 {
    background-color: #050819
}

.admin-template {
    position: relative
}

.admin-template .component {
    left: 250px;
    padding: 0 5px;
    position: absolute;
    top: 60px;
    transition: all .25s ease;
    width: calc(100% - 250px);
    z-index: 0
}

@media screen and (max-width: 576px) {
    .admin-template .component {
        padding:10px
    }
}

.admin-template .component-expand {
    left: 0;
    width: 100%
}

.admin-template .component-fullwidth-mobile {
    left: 0;
    padding: 10px;
    position: absolute;
    top: 60px;
    transition: all .25s ease;
    width: 100%;
    z-index: 0
}

.admin-template .overlay {
    background-color: rgba(0,0,0,.1);
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .25s ease;
    width: 100vw;
    z-index: 0
}

.admin-template.dark {
    background-color: #000!important;
    color: #fff!important
}

.admin-template.light {
    background-color: #fff!important;
    color: #000!important
}

.navbar-admin {
    align-items: center;
    background: #050819;
    display: flex;
    flex-direction: row;
    height: 60px;
    justify-content: space-between;
    left: 0;
    padding-left: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9
}

.navbar-admin .logo {
    align-items: center;
    color: #fff;
    display: flex;
    height: 100%
}

.navbar-admin .logo i {
    cursor: pointer;
    font-size: 20px;
    transition: all .25s ease
}

.navbar-admin .logo i:hover {
    animation: heartBeat;
    animation-duration: 2s
}

.navbar-admin .logo img {
    height: 50px;
    margin-left: 20px;
    width: 160px
}

@media screen and (max-width: 576px) {
    .navbar-admin .logo img {
        height:40px;
        width: 128px
    }
}

.navbar-admin .setting {
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 20px
}

.navbar-admin .setting:hover {
    background-color: #1d233b
}

.navbar-admin .setting i {
    margin-right: 5px
}

.navbar-admin .setting i,.navbar-admin .setting span {
    color: #f5f5f5;
    font-size: 14px
}

.setting-drawer .st-div {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    justify-content: space-between
}

.setting-drawer .st-div+.st-div {
    margin-top: 20px
}

.sidebar-admin {
    background-color: #050819;
    height: calc(100vh - 60px);
    left: 0;
    overflow-y: scroll;
    padding: 0 10px 10px;
    position: fixed;
    top: 60px;
    transition: all .25s ease;
    width: 250px;
    z-index: 8
}

.sidebar-admin .btn {
    background-color: #050819;
    border-radius: 4px;
    color: #f5f5f5;
    cursor: pointer;
    display: block;
    margin-bottom: 2px;
    padding: 10px;
    transition: all .15s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.sidebar-admin .btn:hover {
    background-color: #1d233b
}

.sidebar-admin .btn:hover span {
    font-weight: 600
}

.sidebar-admin .btn i.fa-brands,.sidebar-admin .btn i.fa-solid {
    width: 25px
}

.sidebar-admin .btn-active,.sidebar-admin .btn-active:hover {
    background: #f0b90b;
    color: #000;
    font-weight: 600
}

.sidebar-admin .btn-active:hover span {
    font-weight: 600
}

.sidebar-hide {
    transform: translateX(-250px)
}

.btn-special {
    position: relative
}

.menuArrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: 50% 50%;
    transition: all .25s ease;
    width: -moz-fit-content!important;
    width: fit-content!important
}

.rotate {
    transform: translateY(-50%) rotate(180deg)
}

.btn-child {
    padding: 10px 30px!important
}

.collapse-menu {
    opacity: 1;
    transition: all .25s ease;
    visibility: visible
}

.collapse-menu.hide {
    height: 0;
    opacity: 0;
    visibility: hidden
}

.collapse-menu-2 {
    opacity: 1;
    transition: all .25s ease;
    visibility: visible
}

.collapse-menu-2.hide {
    height: 0;
    opacity: 0;
    visibility: hidden
}

.botrade-navbar {
    align-items: center;
    background-color: #181d33;
    border-bottom: 1px solid #1d233b;
    display: flex;
    flex-direction: row;
    height: 65px;
    justify-content: space-between;
    left: 0;
    max-height: 65px;
    min-height: 65px;
    padding: 5px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9
}

@media screen and (max-width: 992px) {
    .botrade-navbar {
        height:50px;
        max-height: 50px;
        min-height: 50px
    }
}

.botrade-navbar .botrade-logo img {
    cursor: pointer;
    height: 50px
}

.botrade-navbar .botrade-logo i {
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    transition: all .15s ease
}

.botrade-navbar .botrade-logo i:hover {
    color: #f0b90b
}

.botrade-navbar .botrade-action {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

.botrade-navbar .botrade-action .prize-pool {
    align-items: center;
    background: linear-gradient(133deg,#020024,#290c7e,#592ae6);
    border: 1px solid #592ae6;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    position: relative;
    width: -moz-fit-content;
    width: fit-content
}

.botrade-navbar .botrade-action .prize-pool img {
    cursor: pointer;
    height: 44px;
    left: -22px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px
}

.botrade-navbar .botrade-action .prize-pool .pp-content {
    cursor: pointer;
    padding: 0 10px 0 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.botrade-navbar .botrade-action .prize-pool .pp-content p {
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 2px
}

.botrade-navbar .botrade-action .prize-pool .pp-content span {
    color: #f7a62f;
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-top: -2px
}

.botrade-navbar .botrade-action .balance {
    background-color: #2f3342;
    border-radius: 10px;
    color: #f6f7f7;
    -moz-column-gap: 1rem!important;
    column-gap: 1rem!important;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    justify-content: center;
    margin-left: 10px;
    padding: 5px 15px 5px 20px
}

@media screen and (max-width: 992px) {
    .botrade-navbar .botrade-action .balance {
        border-radius:3px;
        margin-left: 10px;
        margin-right: 5px
    }
}

.botrade-navbar .botrade-action .balance :hover {
    color: #e8e8e8
}

.botrade-navbar .botrade-action .balance .left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.botrade-navbar .botrade-action .balance .left span.text {
    font-size: 10px;
    margin-bottom: 2px
}

@media screen and (max-width: 992px) {
    .botrade-navbar .botrade-action .balance .left span.text {
        font-size:.5rem!important
    }
}

.botrade-navbar .botrade-action .balance .left span.num {
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    margin-top: -1px
}

@media screen and (max-width: 992px) {
    .botrade-navbar .botrade-action .balance .left span.num {
        font-size:1rem!important
    }
}

.botrade-navbar .botrade-action .balance .right {
    align-items: center;
    display: flex;
    margin-left: 3px
}

.botrade-navbar .botrade-action .balance .right .circle {
    align-items: center;
    background-color: #8b8d96;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 18px;
    justify-content: center;
    margin-left: 2px;
    transition: all .15s ease;
    width: 18px
}

@media screen and (min-width: 1024px) {
    .botrade-navbar .botrade-action .balance .right .circle {
        height:25px;
        width: 25px
    }
}

.botrade-navbar .botrade-action .balance .right .circle svg {
    display: block
}

@media screen and (max-width: 992px) {
    .botrade-navbar .botrade-action .mg-top-menu {
        margin-top:5px
    }
}

.botrade-navbar .botrade-action .quick-deposit {
    margin-left: 23px;
    padding: 0 15px
}

@media screen and (max-width: 992px) {
    .botrade-navbar .botrade-action .quick-deposit {
        margin-left:0
    }
}

.botrade-navbar .botrade-action .quick-deposit button {
    background-color: #f0b90b;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    outline: none;
    padding: 10px 22px;
    transition: all .15s ease
}

.botrade-navbar .botrade-action .quick-deposit button:hover {
    filter: brightness(1.2)
}

.botrade-navbar .botrade-action .quick-deposit button img {
    margin-bottom: 6px;
    width: 17px
}

.botrade-navbar .botrade-action .setting {
    margin-left: 15px
}

.botrade-navbar .botrade-action .setting .setting-content-inside {
    align-items: center;
    color: #c2c2c2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .15s ease
}

.botrade-navbar .botrade-action .setting .setting-content-inside i,.botrade-navbar .botrade-action .setting .setting-content-inside span {
    font-size: 14px
}

.botrade-navbar .botrade-action .profile-xj {
    margin-left: 15px
}

@media screen and (max-width: 768px) {
    .botrade-navbar .botrade-action .profile-xj {
        margin-left:15px
    }
}

.botrade-navbar .botrade-action .profile-xj .profile-content-inside {
    align-items: center;
    color: #c2c2c2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .15s ease
}

.botrade-navbar .botrade-action .profile-xj .profile-content-inside i,.botrade-navbar .botrade-action .profile-xj .profile-content-inside span {
    font-size: 14px
}

.botrade-navbar .botrade-action .notification-mobile {
    --tw-bg-opacity: 1!important;
    align-items: center;
    background-color: #1d233b!important;
    border-radius: 4px;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px
}

@media screen and (min-width: 992px) {
    .botrade-navbar .botrade-action .notification {
        margin-left:15px
    }
}

@media screen and (max-width: 576px) {
    .botrade-navbar .botrade-action .notification {
        margin-left:2px
    }
}

.botrade-navbar .botrade-action .notification .notification-content-inside {
    align-items: center;
    color: #c2c2c2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all .15s ease
}

.botrade-navbar .botrade-action .notification .notification-content-inside i,.botrade-navbar .botrade-action .notification .notification-content-inside span {
    font-size: 14px
}

.botrade-navbar .botrade-action .notification .notification-content-inside div.noti-count {
    align-items: center;
    background-color: #fa4b62;
    border-radius: 1000px;
    color: #fff!important;
    display: flex;
    flex-direction: row;
    font-size: 9px;
    font-weight: 600;
    justify-content: center;
    left: calc(50% + 4px);
    min-width: 20px;
    padding: 0 4px;
    position: absolute;
    top: -8px;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (max-width: 992px) {
    .botrade-navbar .botrade-action .notification .notification-content-inside div.noti-count {
        right:-1px
    }
}

h2.botrade-balance-choser-title,h2.quick-deposit-title,h2.setting-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px
}

.botrade-balance-choser {
    width: 220px!important
}

.botrade-balance-choser .field {
    align-items: center;
    background-color: #050819;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5px 10px
}

.botrade-balance-choser .field input {
    cursor: pointer;
    margin-right: 20px;
    margin-top: -30px
}

.botrade-balance-choser .field label {
    cursor: pointer;
    width: 100%
}

.botrade-balance-choser .field label .div-as-label {
    align-items: flex-start;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center
}

.botrade-balance-choser .field label .div-as-label span.text {
    color: gray;
    font-size: 12px
}

.botrade-balance-choser .field label .div-as-label span.num {
    color: #fff;
    font-size: 18px;
    font-weight: 600
}

.botrade-balance-choser .field label .div-as-label span.numBonus {
    color: #adff2f;
    font-size: 12px;
    margin-top: -1px
}

.botrade-balance-choser .ant-divider {
    margin: 0!important
}

.botrade-balance-choser input[type=radio]:after {
    background-color: #d1d3d1
}

.botrade-balance-choser input[type=radio]:after,.botrade-balance-choser input[type=radio]:checked:after {
    border: 2px solid #fff;
    border-radius: 18px;
    content: "";
    display: inline-block;
    height: 18px;
    left: -1px;
    position: relative;
    top: -2px;
    visibility: visible;
    width: 18px
}

.botrade-balance-choser input[type=radio]:checked:after {
    background-color: #f0b90b
}

.setting-modal {
    width: 350px!important
}

.setting-modal .bollinger-svg {
    filter: invert(61%) sepia(11%) saturate(350%) hue-rotate(175deg) brightness(88%) contrast(85%);
    width: 18px
}

.setting-modal .eye-field,.setting-modal .language-field,.setting-modal .sound-field {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.setting-modal .eye-field .langlang,.setting-modal .language-field .langlang,.setting-modal .sound-field .langlang {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 15px;
    gap: 10px
}

.setting-modal .eye-field .langlang i,.setting-modal .language-field .langlang i,.setting-modal .sound-field .langlang i {
    margin-right: 5px
}

.setting-modal .eye-field,.setting-modal .sound-field {
    margin-top: 35px
}

.setting-modal .ant-select-selector {
    background-color: rgba(37,37,37,.5)!important;
    border: none!important;
    border-radius: 2px!important
}

.drawer-as-sidebar .ant-drawer-content {
    background-color: #181a20
}

.drawer-as-sidebar .ant-drawer-body {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    padding: 0;
    scrollbar-width: none
}

.drawer-as-sidebar .ant-drawer-body::-webkit-scrollbar {
    display: none
}

.drawer-as-sidebar .botrade-sidebar-in-drawer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    position: relative;
    scrollbar-width: none;
    transition: all .15s ease;
    width: 300px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .title {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding: 20px 10px 0 22px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .title img.logo {
    width: 200px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .title img.x {
    height: 34px;
    margin-left: 8px;
    width: 34px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .quick-deposit {
    padding: 0 10px 0 20px;
    text-align: center
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .menu-title {
    color: #fff;
    font-size: 18px;
    font-weight: bolder;
    margin-bottom: 5px;
    margin-top: 8px;
    padding: 0 10px 0 20px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .menu-list {
    padding: 0 10px 0 20px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn {
    align-items: center;
    background-color: #1d233b;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    gap: 14px;
    height: 46px!important;
    justify-content: flex-start;
    margin-bottom: 14px;
    padding: 6px 20px;
    transition: all .15s ease
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn span {
    font-size: 16px;
    font-weight: 400
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn img.avatar {
    height: 22px;
    width: 22px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn img.out {
    height: 16px;
    width: 16px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn.with-image {
    justify-content: space-between
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn.with-image .left {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn.with-image .left img.rocket {
    height: 24px;
    width: 24px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn.with-image img.new {
    width: 25px
}

.drawer-as-sidebar .botrade-sidebar-in-drawer .xbotrade-btn-active {
    background-color: #f0b90b
}

.notifications-drawer-wrapper .ant-drawer-wrapper-body {
    background-color: #050819
}

.notifications-drawer-wrapper .ant-drawer-wrapper-body .ant-drawer-body {
    padding: 0!important
}

.notifications-drawer-wrapper .title-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 18px
}

.notifications-drawer-wrapper .title-row h2.title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0
}

.notifications-drawer-wrapper .no-data {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 100px
}

.notifications-drawer-wrapper .no-data img {
    margin-bottom: 10px
}

.notifications-drawer-wrapper .no-data span {
    color: #f5f5f5;
    font-size: 15px
}

.balance-popover {
    padding-top: 0!important
}

.balance-popover .ant-popover-inner-content {
    background: #181a20;
    border: 1px solid #1d233b;
    border-radius: 2px;
    padding: 0!important
}

.balance-popover .ant-popover-arrow {
    display: none
}

.setting-popover {
    padding-top: 0!important
}

.setting-popover .ant-popover-inner-content {
    background: #181a20;
    border: 1px solid #1d233b;
    border-radius: 10px;
    padding: 24px
}

.setting-popover .ant-popover-arrow {
    display: none
}

.notification-popover {
    padding-top: 5px!important;
    width: 400px
}

.notification-popover .ant-popover-inner-content {
    background: #181a20;
    border: 1px solid #1d233b;
    border-radius: 10px;
    padding: 0!important
}

.notification-popover .ant-popover-arrow {
    display: none
}

.new-depoisit-popover {
    padding-top: 5px!important
}

.new-depoisit-popover .ant-popover-inner-content {
    background: #181a20;
    border: 1px solid #1d233b;
    border-radius: 10px;
    padding: 0!important
}

.new-depoisit-popover .ant-popover-arrow {
    display: none
}

.notifications-drawer-content-u1da .title-row {
    align-items: center;
    background-color: #1d233b;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    height: 50px;
    justify-content: space-between;
    padding: 10px 16px
}

@media screen and (max-width: 1024px) {
    .notifications-drawer-content-u1da .title-row {
        height:55px
    }
}

.notifications-drawer-content-u1da .title-row .left {
    align-items: center;
    display: flex;
    gap: 12px
}

.notifications-drawer-content-u1da .title-row .left h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0
}

.notifications-drawer-content-u1da .title-row .left img {
    cursor: pointer
}

.notifications-drawer-content-u1da .title-row .right {
    color: gray;
    cursor: pointer;
    font-size: 14px
}

.notifications-drawer-content-u1da .title-row.drawer {
    border-radius: 0!important;
    margin-bottom: 0!important
}

.notifications-drawer-content-u1da .body-row {
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: auto
}

.notifications-drawer-content-u1da .body-row.drawer {
    max-height: calc(98vh - 50px)
}

.refill-demo-balance {
    color: "whitesmoke";
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px
}

.refill-demo-balance:hover {
    color: #f0b90b
}

.pagination-noti-box {
    margin-bottom: 15px!important;
    text-align: right
}

.deposit-content-desktop {
    padding: 10px 15px;
    width: 250px
}

.deposit-content-desktop .formItem .label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: .5rem
}

.deposit-content-desktop .formItem .balance {
    align-items: center;
    background: #fafafa;
    border-radius: .25rem;
    color: #212529;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    gap: 4px;
    height: 45px;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: .375rem .75rem
}

.deposit-content-desktop .formItem .balance .iconUSDT {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAADAFBMVEVHcEwA/wAloHoAACQmoHomoXsA//8Of3YmoXoPnWYloHomoHsmoHs8mX8ylnkloXsinHoA/3MlmogloHomoHoloXokoHwloHojoHgmnH4lnXgjnnoloHokoXoloHsmoHsloHoooIUloXoAf2UloXoln3sloHoin3oloXsln3omonwioHkkoHkkoHoloXokoHskoHoloHkloXsloHkloXoloXoloHsmoHoloXsloHoknXkloHskn3oloHokoXsmpHwloXsloHoloXsmn3gloXsjn3gln3omo30loHkloXsmoXsmoXokoHoln3ompn8loHomonwkn3kkn3kmpX0loXsloHoloXolonslpX8loXskoHomoHslonwlonsmpH0mo30lpH0kn3kmoHoloXknp38monokoXsmoXskn3kknnokn3knp4AloHkmpH0loHkjoXsmoHsoqoImoXsnqoInq4ImqIAmonsmoXv///8noXwjoHkkoHoenXZQs5X3/Pr6/fwtpH+S0L39/v0pon0oonx2w6wmonwgnncnoXsnonwloXonpn8oq4L+/v8npH0qo30hn3j+//8mo30ro34oqYEmo3wnpX4nqIFCrYz5/Psmonsnp4Ain3n5/fw6qoccnXX+/v4WmnIennZgup7D5dsanHQbnHQprYT8/v33+/ofnncRmG/+//5RtJUYm3Inp38rpH4vpYHn9fDU7eUUmXAVmnHv+PYzp4MupYCb1MMproWNzbo+rIr0+vhnvaM8q4h6xa7t9/R9x7Ci18fA49kprIOr28w1qIREro5lvKFiu6Cu3M44qYYqsYem2Mm+49e34NPG5t1xwqnd8ev2+/nM6eC039LY7ufI597l9PB0w6pcuJzy+feGyrWU0b5XtplZt5ptwKee1cTP6+Ipo3284taY08FHr4/g8expvqSKzLex3tAOl23C5Nl3xKz7/f2AyLJUtZdJsJFMspLK6N+g1sbq9vJfuZ6CybPb7+mR0LxOspOPz7wnpX3i8u7m9PD29i49AAAAd3RSTlMAAfoB//4BAv0D+/78BAX6BwIGcf37MPwcEgwa4+eddZEK8wTDH+EYvTr+LGVOqVQ2p66ZloL1/IagFcAo1WP+tNClE8sjebNC7fg8aNL+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);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    height: 20px;
    overflow: hidden;
    width: 20px
}

.deposit-content-desktop .formItem .balance .quantity {
    color: #333;
    font-size: 18px;
    letter-spacing: -2px;
    line-height: 20px
}

.deposit-content-desktop .formItem .inputBalance {
    border-radius: 4px;
    color: #333;
    height: 42px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative
}

.deposit-content-desktop .formItem .inputBalance input {
    border: 0;
    color: #333!important;
    height: 100%;
    line-height: 38px;
    outline: none;
    padding-left: 10px;
    padding-right: 70px;
    width: 100%
}

.deposit-content-desktop .formItem .inputBalance input:disabled {
    background-color: #8b8d96;
    color: #333!important
}

.deposit-content-desktop .formItem .inputBalance .all {
    color: #ffc400;
    cursor: pointer;
    font-size: 12px;
    padding: 12px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0
}

.deposit-content-desktop .totalReceived .label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: .5rem
}

.deposit-content-desktop .totalReceived .price {
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap
}

.deposit-content-desktop .btnDeposit {
    background-color: #04c793;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px!important;
    margin-bottom: .5rem;
    padding-bottom: 0;
    padding-top: 0;
    text-align: center
}

.deposit-content-desktop .newNote {
    color: #8b8d96;
    font-size: 12px;
    font-style: italic;
    letter-spacing: .01em;
    margin-bottom: 1rem;
    text-align: center
}

.deposit-content-mobile {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between
}

.deposit-content-mobile .top .title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.deposit-content-mobile .formItem .label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: .5rem
}

.deposit-content-mobile .formItem .balance {
    align-items: center;
    background: #fafafa;
    border-radius: .25rem;
    color: #212529;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    gap: 4px;
    height: 45px;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: .375rem .75rem
}

.deposit-content-mobile .formItem .balance .iconUSDT {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAADAFBMVEVHcEwA/wAloHoAACQmoHomoXsA//8Of3YmoXoPnWYloHomoHsmoHs8mX8ylnkloXsinHoA/3MlmogloHomoHoloXokoHwloHojoHgmnH4lnXgjnnoloHokoXoloHsmoHsloHoooIUloXoAf2UloXoln3sloHoin3oloXsln3omonwioHkkoHkkoHoloXokoHskoHoloHkloXsloHkloXoloXoloHsmoHoloXsloHoknXkloHskn3oloHokoXsmpHwloXsloHoloXsmn3gloXsjn3gln3omo30loHkloXsmoXsmoXokoHoln3ompn8loHomonwkn3kkn3kmpX0loXsloHoloXolonslpX8loXskoHomoHslonwlonsmpH0mo30lpH0kn3kmoHoloXknp38monokoXsmoXskn3kknnokn3knp4AloHkmpH0loHkjoXsmoHsoqoImoXsnqoInq4ImqIAmonsmoXv///8noXwjoHkkoHoenXZQs5X3/Pr6/fwtpH+S0L39/v0pon0oonx2w6wmonwgnncnoXsnonwloXonpn8oq4L+/v8npH0qo30hn3j+//8mo30ro34oqYEmo3wnpX4nqIFCrYz5/Psmonsnp4Ain3n5/fw6qoccnXX+/v4WmnIennZgup7D5dsanHQbnHQprYT8/v33+/ofnncRmG/+//5RtJUYm3Inp38rpH4vpYHn9fDU7eUUmXAVmnHv+PYzp4MupYCb1MMproWNzbo+rIr0+vhnvaM8q4h6xa7t9/R9x7Ci18fA49kprIOr28w1qIREro5lvKFiu6Cu3M44qYYqsYem2Mm+49e34NPG5t1xwqnd8ev2+/nM6eC039LY7ufI597l9PB0w6pcuJzy+feGyrWU0b5XtplZt5ptwKee1cTP6+Ipo3284taY08FHr4/g8expvqSKzLex3tAOl23C5Nl3xKz7/f2AyLJUtZdJsJFMspLK6N+g1sbq9vJfuZ6CybPb7+mR0LxOspOPz7wnpX3i8u7m9PD29i49AAAAd3RSTlMAAfoB//4BAv0D+/78BAX6BwIGcf37MPwcEgwa4+eddZEK8wTDH+EYvTr+LGVOqVQ2p66ZloL1/IagFcAo1WP+tNClE8sjebNC7fg8aNL+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);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    height: 20px;
    overflow: hidden;
    width: 20px
}

.deposit-content-mobile .formItem .balance .quantity {
    color: #333;
    font-size: 18px;
    letter-spacing: -2px;
    line-height: 20px
}

.deposit-content-mobile .formItem .inputBalance {
    border-radius: 4px;
    color: #333;
    height: 42px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative
}

.deposit-content-mobile .formItem .inputBalance input {
    border: 0;
    color: #333!important;
    height: 100%;
    line-height: 38px;
    outline: none;
    padding-left: 10px;
    padding-right: 70px;
    width: 100%
}

.deposit-content-mobile .formItem .inputBalance input:disabled {
    background-color: #8b8d96;
    color: #333!important
}

.deposit-content-mobile .formItem .inputBalance .all {
    color: #ffc400;
    cursor: pointer;
    font-size: 12px;
    padding: 12px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0
}

.deposit-content-mobile .totalReceived .label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: .5rem
}

.deposit-content-mobile .totalReceived .price {
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap
}

.deposit-content-mobile .btnDeposit {
    background-color: #04c793;
    border-radius: .25rem;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
    line-height: 40px!important;
    margin-bottom: .5rem;
    padding-bottom: 0;
    padding-top: 0;
    text-align: center
}

.deposit-content-mobile .newNote {
    color: #8b8d96;
    font-size: 12px;
    font-style: italic;
    letter-spacing: .01em;
    margin-bottom: 1rem;
    text-align: center
}

.newModalDeposit {
    background-color: #181a20;
    display: none;
    height: 100svh;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 10000
}

.newModalDeposit.show {
    display: block
}

.newModalDeposit .closeBtn {
    cursor: pointer;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px
}

.drawer-close-btn {
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    transition: opacity .2s ease-in-out;
    width: 32px;
    z-index: 1000
}

.drawer-close-btn svg {
    fill: #fff;
    stroke: #fff;
    height: 22px;
    width: 22px
}

.drawer-close-btn:hover {
    opacity: .7
}

.botrade-sidebar {
    background-color: #181d33;
    border-right: 1px solid #1d233b;
    display: flex;
    flex-direction: column;
    height: calc(100svh - 65px);
    justify-content: space-between;
    left: 0;
    margin: 15px 0;
    position: fixed;
    top: 50px;
    transition: all .15s ease;
    width: 105px;
    z-index: 9
}

@media screen and (max-width: 992px) {
    .botrade-sidebar {
        display:none
    }
}

.botrade-sidebar .botrade-btn {
    align-items: center;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 10px;
    position: relative;
    transition: all .15s ease
}

.botrade-sidebar .botrade-btn i {
    font-size: 20px;
    margin-bottom: 8px
}

.botrade-sidebar .botrade-btn span {
    color: #8b8d96;
    font-size: 16px!important;
    line-height: 1.2;
    text-align: center
}

.botrade-sidebar .botrade-btn.logout-btn:after {
    background-color: #8b8d96;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 0;
    transform: translateX(-50%);
    width: 70%
}

.botrade-sidebar .botrade-btn-active i,.botrade-sidebar .botrade-btn-active span {
    color: #f0b90b
}

.stack-on-mobile {
    grid-gap: 1.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2,1fr)
}

@media screen and (max-width: 576px) {
    .stack-on-mobile {
        grid-template-columns:1fr!important
    }
}

.radio-green,.radio-green .ant-radio-wrapper,.radio-green .ant-radio-wrapper span,.radio-green span {
    color: #04c793
}

.radio-green .ant-radio-inner {
    border-color: #04c793
}

.radio-green.ant-radio-checked .ant-radio-inner {
    background-color: #04c793;
    border-color: #04c793
}

.radio-green .ant-radio.ant-radio-checked .ant-radio-inner {
    border-color: #04c793
}

.radio-green .ant-radio.ant-radio-checked:after {
    border: 1px solid #04c793
}

.radio-green .ant-radio-checked .ant-radio-inner:after {
    background-color: #04c793
}

.radio-red,.radio-red .ant-radio-wrapper,.radio-red .ant-radio-wrapper span,.radio-red span {
    color: #ff4d6d
}

.radio-red .ant-radio-inner {
    border-color: #ff4d6d
}

.radio-red.ant-radio-checked .ant-radio-inner {
    background-color: #ff4d6d;
    border-color: #ff4d6d
}

.radio-red .ant-radio.ant-radio-checked .ant-radio-inner {
    border-color: #ff4d6d
}

.radio-red .ant-radio.ant-radio-checked:after {
    border: 1px solid #ff4d6d
}

.radio-red .ant-radio-checked .ant-radio-inner:after {
    background-color: #ff4d6d
}

.vip-warning {
    border: 1px solid #ff4d6d;
    border-radius: 14px;
    color: #ff4d6d;
    cursor: default;
    font-size: 14px;
    margin-bottom: 0;
    max-width: 350px;
    min-width: 155px;
    padding: 10px 8px 10px 16px;
    text-align: center;
    width: 100%
}

.grow-1-vip-detail {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(1,1fr);
    margin-top: 1.5rem
}

@media screen and (max-width: 992px) {
    .grow-1-vip-detail {
        gap:30px
    }
}

.grow-1-vip-detail .gbox-4 {
    grid-column: 1/span 2;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0
}

@media screen and (max-width: 576px) {
    .grow-1-vip-detail .gbox-4 {
        margin:0 10px
    }
}

@media screen and (max-width: 992px) {
    .grow-1-vip-detail .gbox-4 {
        grid-column:1/span 1
    }
}

.grow-1-vip-detail .gbox-4 .g4-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.25rem
}

@media screen and (max-width: 576px) {
    .grow-1-vip-detail .gbox-4 .g4-area {
        flex-direction:column
    }
}

.grow-1-vip-detail .gbox-4 .g4-area .left {
    width: 30%
}

@media screen and (max-width: 576px) {
    .grow-1-vip-detail .gbox-4 .g4-area .left {
        width:100%
    }
}

.grow-1-vip-detail .gbox-4 .g4-area .left h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    padding-block:20px}

.grow-1-vip-detail .gbox-4 .g4-area .left p {
    color: #30d6ce;
    font-size: 14px;
    margin-bottom: 24px
}

.grow-1-vip-detail .gbox-4 .g4-area .left p+p {
    color: #16b6fd
}

.grow-1-vip-detail .gbox-4 .g4-area .left p+p+p {
    color: #f0b90b
}

.grow-1-vip-detail .gbox-4 .g4-area .right {
    width: 67%
}

@media screen and (max-width: 576px) {
    .grow-1-vip-detail .gbox-4 .g4-area .right {
        width:100%
    }
}

.grow-1-vip-detail .gbox-5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

@media screen and (max-width: 576px) {
    .grow-1-vip-detail .gbox-5 {
        margin:0 10px
    }
}

.grow-1-vip-detail .gbox-5 .top {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px
}

.grow-1-vip-detail .gbox-5 .top i.fa-chart-simple {
    color: #f0b90b;
    font-size: 18px;
    margin-right: 8px
}

.grow-1-vip-detail .gbox-5 .top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 8px
}

.grow-1-vip-detail .gbox-5 .top i.fa-circle-question {
    color: gray;
    cursor: pointer;
    font-size: 14px
}

.grow-1-vip-detail .gbox-5 .top i.fa-circle-question:hover {
    color: #f0b90b
}

.grow-1-vip-detail .gbox-5 .mid .vip-table-1 .t1-row {
    background: #050819
}

.grow-1-vip-detail .gbox-5 .mid .vip-table-1 .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.grow-1-vip-detail .gbox-5 .mid .vip-table-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.grow-1-vip-detail .gbox-5 .mid .vip-table-1 .ant-table-placeholder {
    background: #050819
}

.grow-1-vip-detail .gbox-5 .bottom {
    grid-gap: 30px;
    background-color: #f0b90b;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2,1fr);
    margin: 20px -20px -20px;
    padding: 10px 30px
}

.grow-1-vip-detail .gbox-5 .bottom .b1,.grow-1-vip-detail .gbox-5 .bottom .b2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600
}

.profile-container .profile-header {
    align-items: center;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    gap: 8px;
    margin-bottom: 20px
}

.profile-container .profile-header svg {
    height: 22px;
    width: 22px
}

.profile-container .box-grid {
    grid-gap: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr
}

@media(min-width: 768px) {
    .profile-container .box-grid {
        grid-template-columns:repeat(12,1fr)
    }

    .profile-container .col-left {
        grid-column: span 5
    }

    .profile-container .col-right {
        grid-column: span 7
    }
}

.profile-container .box-grid>div:first-child {
    align-items: center;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    gap: 8px
}

.profile-container .col-left {
    align-items: center;
    display: flex;
    flex-direction: column
}

.profile-container .col-left img {
    background-color: #ccc;
    border-radius: 50%;
    height: 100px;
    width: 100px
}

.profile-container .col-left span {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px
}

.profile-container .col-right {
    color: #aaa;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center
}

.profile-container .col-right span {
    color: #aaa;
    font-size: 14px
}

.profile-container .col-right div {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: 500;
    gap: 6px;
    text-decoration: underline
}

.user-detail-container {
    margin: 20px auto!important;
    max-width: 100vw!important;
    padding: 0 20px!important
}

@media screen and (max-width: 576px) {
    .user-detail-container .top-user-detail-container {
        margin:0 10px
    }
}

.user-detail-container .top-user-detail-container button {
    background-color: hsla(0,0%,100%,.18)!important;
    border: 0;
    color: #fff!important;
    font-weight: 300
}

.user-detail-container .top-user-detail-container button .fill-primary {
    fill: #f0b90b
}

.user-detail-container .top-user-detail-container button:hover {
    background-color: hsla(0,0%,100%,.18)!important;
    color: #fff!important
}

.user-detail-container .top-user-detail-container .top-username {
    color: #fff!important;
    margin-left: 15px
}

.user-detail-container .gboxtop {
    border-bottom: 0!important
}

.general-container {
    margin: 30px auto;
    max-width: 1205px;
    width: 100%
}

.general-container .gbox-split {
    grid-gap: 20px;
    border-radius: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr
}

@media screen and (max-width: 768px) {
    .general-container .gbox-split {
        gap:15px;
        grid-template-columns: 1fr
    }
}

.general-container .gbox {
    background-color: #181a20;
    border: 1px solid #1d233b;
    border-radius: 20px;
    padding: 20px
}

.general-container .gbox-1 {
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 576px) {
    .general-container .gbox-1 {
        margin:0 10px
    }
}

.general-container .gbox-1 .top {
    align-items: center;
    border-bottom: 1px solid #1d233b;
    display: flex;
    flex: 1 1;
    gap: 8px;
    padding-bottom: 16px
}

.general-container .gbox-1 .top .first {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.general-container .gbox-1 .top .first img {
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: relative;
    width: 70px;
    z-index: 2
}

.general-container .gbox-1 .top .first span {
    background-color: #000;
    border: 1px solid #ffcf5c;
    border-radius: 14px;
    color: #ffcf5c;
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-left: -30px;
    padding: 10px;
    text-align: center;
    width: 150px
}

@media screen and (max-width: 576px) {
    .general-container .gbox-1 .top .first span {
        width:150px
    }
}

.general-container .gbox-1 .top .first span i {
    cursor: pointer;
    margin-left: 5px;
    transform: translateY(1px)
}

.general-container .gbox-1 .top .first span i:hover {
    color: #f5f5f5
}

.general-container .gbox-1 .top .second {
    background: rgba(130,249,42,.12);
    border: 1px solid #f9d921;
    border-radius: 10px;
    color: #f9d921;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 8px 7px 7px;
    position: relative;
    white-space: nowrap
}

.general-container .gbox-1 .top .second span {
    font-size: 12px;
    margin-left: 5px
}

.general-container .gbox-1 .top .second.disabled,.general-container .gbox-1 .top .second[disabled] {
    background: rgba(130,249,42,.05);
    border: 1px solid rgba(249,217,33,.4);
    color: rgba(249,217,33,.5)!important;
    cursor: not-allowed;
    opacity: .6;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.general-container .gbox-1 .bottom {
    margin-top: 15px
}

.general-container .gbox-1 .bottom h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 1rem
}

@media screen and (max-width: 576px) {
    .general-container .gbox-1 .bottom h3 {
        font-size:18px
    }
}

.general-container .gbox-1 .bottom .bot-info {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3,1fr)
}

@media screen and (max-width: 576px) {
    .general-container .gbox-1 .bottom .bot-info {
        grid-template-columns:none
    }
}

.general-container .gbox-1 .bottom .bot-info .item-1 {
    grid-column: 1/span 2
}

.general-container .gbox-1 .bottom .bot-info .item div {
    color: #5d606c;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: .5rem;
    white-space: nowrap
}

@media screen and (max-width: 576px) {
    .general-container .gbox-1 .bottom .bot-info .item div {
        margin-bottom:10px;
        margin-top: 15px
    }
}

.general-container .gbox-1 .bottom .bot-info .item p {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 0
}

.general-container .gbox-1 .bottom .bot-info .item p span {
    color: #f5f5f5;
    font-size: 18px
}

@media screen and (max-width: 576px) {
    .general-container .gbox-2 {
        margin:0 10px
    }
}

.general-container .gbox-2 .top {
    border-bottom: 1px solid #1d233b;
    color: #5d606c;
    font-size: 12px;
    margin-top: 16px;
    padding-bottom: 15px
}

.general-container .gbox-2 .top span {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-left: 8px
}

.general-container .gbox-2 .bottom {
    grid-gap: 1.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2,1fr);
    margin-top: 15px
}

.general-container .gbox-2 .bottom .item span {
    color: #5d606c;
    display: block;
    font-size: 12px;
    margin-bottom: 5px
}

.general-container .gbox-2 .bottom .item p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0
}

.general-container .gbox-2 .bottom .item p.p11 {
    color: #30d6ce
}

.general-container .gbox-2 .bottom .item p.p22 {
    color: #16b6fd
}

.general-container .gbox-2 .bottom .item p.p33 {
    color: #e22a5a
}

.general-container .gbox-2 .bottom .item p.p44 {
    color: #fff
}

.general-container .grow-1 {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3,1fr)
}

@media screen and (max-width: 992px) {
    .general-container .grow-1 {
        gap:30px;
        grid-template-columns: repeat(1,1fr)
    }
}

@media screen and (max-width: 576px) {
    .general-container .grow-1 .gbox-3 {
        margin:0 10px
    }
}

.general-container .grow-1 .gbox-3 .field label {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px
}

.general-container .grow-1 .gbox-3 .field label i {
    color: #f0b90b;
    font-size: 16px;
    margin-right: 10px
}

.general-container .grow-1 .gbox-3 .field .input-wrapper {
    position: relative
}

.general-container .grow-1 .gbox-3 .field .input-wrapper input {
    background-color: transparent;
    border: 1px solid #1d233b;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    padding: 8px 16px;
    width: 100%
}

.general-container .grow-1 .gbox-3 .field .input-wrapper button {
    border-radius: 0 3px 3px 0;
    height: 100%;
    padding: .375rem .75rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.general-container .grow-1 .gbox-3 .field+.field {
    margin-top: 1.5rem
}

.general-container .grow-1.g-row-1-admin {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2,1fr)
}

@media screen and (max-width: 992px) {
    .general-container .grow-1.g-row-1-admin {
        gap:30px;
        grid-template-columns: repeat(1,1fr)
    }
}

.general-container .grow-2 {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 1.5rem
}

@media screen and (max-width: 992px) {
    .general-container .grow-2 {
        gap:30px;
        grid-template-columns: repeat(1,1fr)
    }
}

.general-container .grow-2 .gbox-4 {
    grid-column: 1/span 2;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0
}

@media screen and (max-width: 576px) {
    .general-container .grow-2 .gbox-4 {
        margin:0 10px
    }
}

@media screen and (max-width: 992px) {
    .general-container .grow-2 .gbox-4 {
        grid-column:1/span 1
    }
}

.general-container .grow-2 .gbox-4 .g4-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.25rem
}

@media screen and (max-width: 576px) {
    .general-container .grow-2 .gbox-4 .g4-area {
        flex-direction:column
    }
}

.general-container .grow-2 .gbox-4 .g4-area .left {
    width: 30%
}

@media screen and (max-width: 576px) {
    .general-container .grow-2 .gbox-4 .g4-area .left {
        width:100%
    }
}

.general-container .grow-2 .gbox-4 .g4-area .left h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    padding-block:20px}

.general-container .grow-2 .gbox-4 .g4-area .left p {
    color: #30d6ce;
    font-size: 14px;
    margin-bottom: 24px
}

.general-container .grow-2 .gbox-4 .g4-area .left p+p {
    color: #16b6fd
}

.general-container .grow-2 .gbox-4 .g4-area .left p+p+p {
    color: #f0b90b
}

.general-container .grow-2 .gbox-4 .g4-area .right {
    width: 67%
}

@media screen and (max-width: 576px) {
    .general-container .grow-2 .gbox-4 .g4-area .right {
        width:100%
    }
}

.general-container .grow-2 .gbox-5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

@media screen and (max-width: 576px) {
    .general-container .grow-2 .gbox-5 {
        margin:0 10px
    }
}

.general-container .grow-2 .gbox-5 .top {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px
}

.general-container .grow-2 .gbox-5 .top i.fa-chart-simple {
    color: #f0b90b;
    font-size: 18px;
    margin-right: 8px
}

.general-container .grow-2 .gbox-5 .top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 8px
}

.general-container .grow-2 .gbox-5 .top i.fa-circle-question {
    color: gray;
    cursor: pointer;
    font-size: 14px
}

.general-container .grow-2 .gbox-5 .top i.fa-circle-question:hover {
    color: #f0b90b
}

.general-container .grow-2 .gbox-5 .mid .vip-table-1 .t1-row {
    background: #050819
}

.general-container .grow-2 .gbox-5 .mid .vip-table-1 .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.general-container .grow-2 .gbox-5 .mid .vip-table-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.general-container .grow-2 .gbox-5 .mid .vip-table-1 .ant-table-placeholder {
    background: #050819
}

.general-container .grow-2 .gbox-5 .bottom {
    grid-gap: 30px;
    background-color: #f0b90b;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2,1fr);
    margin: 20px -20px -20px;
    padding: 10px 30px
}

.general-container .grow-2 .gbox-5 .bottom .b1,.general-container .grow-2 .gbox-5 .bottom .b2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600
}

.general-container .grow-3 {
    grid-gap: 15px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 30px
}

.general-container .grow-3 .gbox-6 .top {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px
}

.general-container .grow-3 .gbox-6 .top i {
    color: #f0b90b;
    font-size: 18px;
    margin-right: 8px
}

.general-container .grow-3 .gbox-6 .top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 8px
}

.general-container .grow-3 .gbox-6 .bottom {
    display: flex
}

.general-container .grow-3 .gbox-6 .bottom .supportLogo {
    text-align: center;
    width: 88px
}

.general-container .grow-3 .gbox-6 .bottom .supportLogo img {
    height: 88px;
    margin-right: 20px;
    width: 88px
}

.general-container .grow-3 .gbox-6 .bottom .supportLogo .supportName {
    font-size: .875rem!important;
    margin-top: 5px
}

.general-container .grow-3 .gbox-6 .bottom .supportInfo {
    margin-left: 5px
}

.general-container .grow-3 .gbox-6 .bottom .supportInfo .name {
    color: hsla(0,0%,100%,.5);
    font-size: 14px;
    margin-bottom: 5px
}

.general-container .grow-3 .gbox-6 .bottom .supportInfo .email {
    align-items: center;
    display: flex;
    font-size: 14px
}

.general-container .grow-3 .gbox-6 .bottom .supportInfo .email i {
    font-size: 14px;
    margin-right: 6px
}

.general-container .grow-3 .gbox-6 .bottom .supportInfo .email a {
    color: #fff;
    text-decoration: underline!important
}

@media screen and (max-width: 992px) {
    .support-gbox {
        grid-template-columns:repeat(1,1fr)!important;
        margin: 0 10px
    }
}

.tabGeneralCustom .ant-tabs-nav {
    background-color: transparent!important;
    border-bottom: 1px solid hsla(0,0%,100%,.1);
    padding-left: 2rem!important
}

.tabGeneralCustom .ant-tabs-nav .ant-tabs-tab-btn {
    padding-bottom: 12px!important;
    padding-top: 6px!important
}

.tabGeneralCustom .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #fff!important;
    font-weight: 400;
    line-height: 1
}

.tabChildVipCustom .ant-tabs-nav {
    background-color: transparent!important;
    border-bottom: 1px solid hsla(0,0%,100%,.1)
}

.tabChildVipCustom .ant-tabs-nav .ant-tabs-tab-btn {
    font-size: .1rem!important;
    font-weight: 300!important;
    padding-bottom: 3px!important;
    padding-top: 3px!important
}

.tabChildVipCustom .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #fff!important;
    font-size: 13px!important;
    font-weight: 300!important;
    line-height: 1
}

.vip-commission-container {
    display: flex;
    flex-direction: column;
    margin: 16px auto;
    max-width: 1500px;
    padding: 0 15px;
    width: 100%
}

.vip-commission-container .gbox {
    background-color: #181a20;
    border: 1px solid #1d233b;
    border-radius: 10px;
    min-height: 450px!important;
    padding: 20px
}

.vip-commission-container .chart-history-container {
    position: relative;
    width: 100%
}

.vip-commission-container .chart-history-container .highcharts-title {
    color: #333;
    font-size: 1.2em;
    left: 50%;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap
}

.vip-commission-container .chart-history-container .highcharts-title .chart-tooltip {
    background-color: #f0b90b;
    border: 1px solid #4d505d;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 14px;
    letter-spacing: .5px;
    min-width: 200px;
    padding: 5px 10px;
    text-align: left
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .vip-commission-container .chart-history-container .highcharts-title .chart-tooltip {
        height:48px;
        line-height: 16px
    }
}

.vip-commission-container .chart-history-container .highcharts-title .chart-tooltip span {
    font-weight: 700
}

.vip-commission-container .tableHistoryChart {
    display: table;
    width: 100%
}

.vip-commission-container .tableHistoryChart td,.vip-commission-container .tableHistoryChart th {
    width: 100%!important
}

.vip-commission-container .tableHistory {
    flex-grow: 1;
    height: 100%;
    margin-top: 0!important
}

.vip-commission-container .tableHistory table {
    flex-grow: 1;
    table-layout: fixed
}

@media screen and (max-width: 992px) {
    .vip-commission-container .tableHistory table {
        table-layout:auto
    }
}

.vip-commission-container .tableHistory th {
    text-wrap: auto;
    text-align: left
}

.vip-commission-container .tableHistory th span {
    color: #fff!important;
    font-size: 1rem!important;
    font-weight: 500!important;
    line-height: 1.5rem!important;
    margin-left: .25rem!important
}

.vip-commission-container .tableHistory .tableHeader {
    --primary: #f0b90b
}

.vip-commission-container .tableHistory .tableHeader svg path {
    stroke: var(--primary)
}

.vip-commission-container .tableHistory .minHeighTable {
    height: 100%;
    min-height: 300px
}

@media screen and (max-width: 992px)and (orientation:portrait) {
    .vip-commission-container .tableHistory .minHeighTable {
        height:100%;
        min-height: 0
    }
}

.vip-commission-container .title-area {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media screen and (max-width: 768px) {
    .vip-commission-container .title-area {
        background-color:#181a20;
        border: 1px solid hsla(0,0%,100%,.1);
        border-radius: 13px;
        padding: 20px
    }
}

@media screen and (max-width: 1200px) {
    .vip-commission-container .title-area {
        align-items:flex-start;
        flex-direction: column;
        justify-content: flex-start
    }
}

.vip-commission-container .title-area .left {
    align-items: center;
    display: flex
}

@media screen and (max-width: 768px) {
    .vip-commission-container .title-area .left {
        display:none
    }
}

.vip-commission-container .title-area .left h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: capitalize
}

.vip-commission-container .title-area .left i {
    color: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px
}

.vip-commission-container .title-area .left i:hover {
    color: #f0b90b
}

.vip-commission-container .title-area .right {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (max-width: 768px) {
    .vip-commission-container .title-area .right {
        align-items:flex-start;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 0!important;
        width: 100%
    }
}

@media screen and (max-width: 1200px) {
    .vip-commission-container .title-area .right {
        justify-content:flex-start;
        margin-top: 25px
    }
}

@media screen and (max-width: 576px) {
    .vip-commission-container .title-area .right {
        display:flex
    }
}

.vip-commission-container .title-area .right .field {
    display: flex;
    flex-direction: column
}

.vip-commission-container .title-area .right .field+.field {
    margin-left: 10px
}

@media screen and (max-width: 576px) {
    .vip-commission-container .title-area .right .field+.field {
        margin-left:0;
        margin-top: 15px
    }
}

.vip-commission-container .title-area .right .ant-select-selector {
    border: 0
}

.vip-commission-container .title-area .right .search-field,.vip-commission-container .title-area .right .time-field,.vip-commission-container .title-area .right .type-field {
    color: #8d97a0;
    width: 100%
}

@media screen and (min-width: 768px) {
    .vip-commission-container .title-area .right .search-field,.vip-commission-container .title-area .right .time-field,.vip-commission-container .title-area .right .type-field {
        width:-moz-fit-content;
        width: fit-content
    }
}

.vip-commission-container .title-area .right .search-field button,.vip-commission-container .title-area .right .time-field button,.vip-commission-container .title-area .right .type-field button {
    width: 100%
}

.vip-commission-container .title-area .right .time-field {
    margin-left: 0!important;
    margin-top: 16px
}

.vip-commission-container .title-area .right .mobile-select {
    display: flex;
    gap: 8px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .vip-commission-container .title-area .right .mobile-select {
        display:none
    }
}

.vip-commission-container .title-area .right .mobile-select .btn {
    background-color: #4d4e4e;
    border-radius: .25rem;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    width: 100%
}

@media screen and (max-width: 845px) {
    .vip-commission-container .title-area .right .mobile-select .btn {
        font-size:12px
    }
}

.vip-commission-container .title-area .right .mobile-select .btn.active {
    background-color: #e22a67
}

.vip-commission-container .title-area .right .desktop-select {
    display: none;
    text-transform: capitalize
}

.vip-commission-container .title-area .right .desktop-select .ant-select-item-option-content {
    text-transform: capitalize
}

@media screen and (min-width: 768px) {
    .vip-commission-container .title-area .right .desktop-select {
        display:block
    }
}

.vip-commission-container .title-area .right .rangePickerCustom1 {
    align-items: center;
    border-bottom: 1px solid #1f2f53;
    display: flex;
    gap: 4px;
    margin-right: 16px
}

.vip-commission-container .title-area .right .rangePickerCustom1 .ant-picker {
    width: 100%
}

.vip-commission-container .note-row {
    align-items: flex-end;
    color: #8d97a0;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 25px
}

.vip-commission-container .note-row span {
    color: #f0b90b
}

.vip-commission-container .main-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between
}

@media screen and (max-width: 1024px) {
    .vip-commission-container .main-row {
        align-items:flex-start;
        flex-direction: column;
        justify-content: flex-start
    }
}

.vip-commission-container .main-row .left {
    display: flex;
    flex-direction: column;
    width: 30%
}

@media screen and (max-width: 1024px) {
    .vip-commission-container .main-row .left {
        margin-bottom:30px;
        width: 100%
    }
}

.vip-commission-container .main-row .left .grow-1 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px
}

.vip-commission-container .main-row .left .grow-1 i {
    color: #f0b90b;
    font-size: 20px;
    margin-right: 10px
}

.vip-commission-container .main-row .left .nodata-chart {
    align-items: center;
    background-color: #011022;
    border-radius: 6px;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: center
}

.vip-commission-container .main-row .left .nodata-chart img {
    margin-bottom: 10px;
    margin-top: 10px
}

.vip-commission-container .main-row .left .nodata-chart span {
    color: gray;
    display: block;
    margin-bottom: 10px
}

.vip-commission-container .main-row .right {
    width: 70%
}

@media screen and (max-width: 1024px) {
    .vip-commission-container .main-row .right {
        width:100%
    }
}

.vip-commission-container .main-row .right .grow-1 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    justify-content: space-between;
    margin-bottom: 15px
}

.vip-commission-container .main-row .right .grow-1 i {
    color: #f0b90b;
    font-size: 20px;
    margin-right: 10px
}

@media screen and (max-width: 768px) {
    .vip-commission-container .main-row .right .grow-1 {
        align-items:flex-start;
        flex-direction: column;
        justify-content: flex-start
    }

    .vip-commission-container .main-row .right .pagination-box {
        margin-top: 20px;
        text-align: right;
        width: 100%
    }
}

.vip-commission-container .main-row .right .vip-commission-table-1 .t1-row {
    background: #050819
}

.vip-commission-container .main-row .right .vip-commission-table-1 .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.vip-commission-container .main-row .right .vip-commission-table-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.vip-commission-container .main-row .right .vip-commission-table-1 .ant-table-placeholder {
    background: #050819
}

.vip-commission-container .main-row.main-row-admin {
    display: block!important;
    margin-top: 35px
}

.vip-commission-container .main-row.main-row-admin .grow-1 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    justify-content: space-between;
    margin-bottom: 15px
}

.vip-commission-container .main-row.main-row-admin .grow-1 i {
    color: #f0b90b;
    font-size: 20px;
    margin-right: 10px
}

@media screen and (max-width: 768px) {
    .vip-commission-container .main-row.main-row-admin .grow-1 {
        align-items:flex-start;
        flex-direction: column;
        justify-content: flex-start
    }

    .vip-commission-container .main-row.main-row-admin .pagination-box {
        margin-top: 20px;
        text-align: right;
        width: 100%
    }
}

.vip-commission-container .main-row.main-row-admin .vip-commission-table-1 .t1-row {
    background: #050819
}

.vip-commission-container .main-row.main-row-admin .vip-commission-table-1 .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.vip-commission-container .main-row.main-row-admin .vip-commission-table-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.vip-commission-container .main-row.main-row-admin .vip-commission-table-1 .ant-table-placeholder {
    background: #050819
}

.table_componenta {
    color: #fff;
    overflow: auto;
    width: 100%
}

.table_componenta ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.table_componenta li {
    padding-left: 16px
}

.table_componenta li:before {
    color: #04c793;
    content: "•";
    padding-right: 8px
}

.table_componenta img {
    width: 100%
}

.table_componenta table {
    border: 1px solid #dededf;
    border-collapse: collapse;
    border-spacing: 1px;
    height: 100%;
    table-layout: fixed;
    text-align: center;
    width: 100%
}

.table_componenta caption {
    caption-side: top;
    color: #fff;
    font-size: 20px;
    text-align: left
}

.table_componenta td,.table_componenta th {
    border: 1px solid #dededf;
    padding: 5px
}

.header-vip-network-container {
    background-color: #1f2f43;
    margin-top: -10px;
    padding: 16px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .header-vip-network-container {
        padding:37px 42px
    }
}

.vip-network-container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 16px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .vip-network-container {
        padding:0 42px 37px
    }
}

.vip-network-container .ant-radio-button.ant-radio-button-checked {
    background-color: #f0b90b;
    color: #000
}

.vip-network-container .title h1 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700
}

.vip-network-container .search-area {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 25px
}

@media screen and (max-width: 768px) {
    .vip-network-container .search-area {
        align-items:flex-start;
        flex-direction: column;
        gap: 15px;
        justify-content: flex-start
    }
}

.vip-network-container .search-area .search-type {
    display: flex;
    flex-direction: column
}

.vip-network-container .search-area .search-type p {
    font-size: 15px;
    margin-bottom: 6px
}

.vip-network-container .search-area .divider {
    align-self: flex-end;
    background-color: #1d233b;
    height: 45px;
    margin-inline:30px;width: 1px
}

@media screen and (max-width: 768px) {
    .vip-network-container .search-area .divider {
        display:none
    }
}

.vip-network-container .search-area .search-main .search-by-level p,.vip-network-container .search-area .search-main .search-by-username p {
    font-size: 15px;
    margin-bottom: 6px
}

.vip-network-container .search-area button {
    align-self: flex-end;
    font-weight: 700
}

@media screen and (max-width: 768px) {
    .vip-network-container .search-area button {
        align-self:flex-start
    }
}

.vip-network-container .search-result {
    margin-top: 25px
}

.vip-network-container .search-result .time-range {
    margin-bottom: 10px;
    text-align: right
}

.vip-network-container .search-result .vip-network-table-2 .t2-row {
    background: #050819
}

.vip-network-container .search-result .vip-network-table-2 .t2-row td {
    color: #f5f5f5;
    font-size: 14px
}

.vip-network-container .search-result .vip-network-table-2 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.vip-network-container .search-result .vip-network-table-2 .ant-table-placeholder {
    background: #050819
}

.vip-network-container .search-result .headerTable {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between
}

@media screen and (min-width: 1024px) {
    .vip-network-container .search-result .headerTable {
        align-items:center;
        flex-direction: row
    }
}

.vip-network-container .search-result .headerTable .chooseTimeTabs {
    -webkit-overflow-scrolling: touch;
    align-items: center;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none
}

.vip-network-container .search-result .headerTable .chooseTimeTabs .label {
    color: #8b8d96;
    display: none;
    font-size: 14px
}

@media screen and (min-width: 1024px) {
    .vip-network-container .search-result .headerTable .chooseTimeTabs .label {
        display:block
    }
}

.vip-network-container .search-result .headerTable .chooseTimeTabs .tabs {
    display: flex;
    gap: 16px
}

.vip-network-container .search-result .headerTable .chooseTimeTabs .tabs .tab {
    align-items: center;
    border: 1px solid #8b8d96;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    padding: 5px 11px;
    white-space: nowrap
}

.vip-network-container .search-result .headerTable .chooseTimeTabs .tabs .tab.active {
    background: linear-gradient(180deg,#f5b42a,#f0b90b)
}

.vip-network-container .list-user-f1 {
    margin-top: 50px
}

.vip-network-container .list-user-f1 h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700
}

.vip-network-container .list-user-f1 .vip-network-table-1 .t1-row {
    background: #050819
}

.vip-network-container .list-user-f1 .vip-network-table-1 .t1-row td {
    color: #f5f5f5;
    font-size: 14px
}

.vip-network-container .list-user-f1 .vip-network-table-1 .ant-table-thead>tr>th {
    background: #181a20!important;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 600
}

.vip-network-container .list-user-f1 .vip-network-table-1 .ant-table-placeholder {
    background: #050819
}

.vip-network-container .list-user-f1 .vip-network-pagination {
    margin-bottom: 100px;
    margin-top: 20px;
    text-align: center
}

.vip-network-container .list-user-f1 .vip-network-pagination li,.vip-network-container .list-user-f1 .vip-network-pagination li button {
    border-radius: 50%
}

.vip-network-container .list-user-f1 .vip-network-pagination .ant-pagination-item-active {
    background-color: #f0b90b
}

.vip-network-container .list-user-f1 .vip-network-pagination .ant-pagination-item-active a {
    color: #000;
    font-weight: 700
}

.vip-network-container .ant-pagination-item {
    border-radius: 50%
}

.vip-network-container .ant-pagination-item-active {
    background-color: #f0b90b
}

.vip-network-container .ant-pagination-item-active a {
    color: #fff!important;
    font-weight: 700
}

.vip-network-container .ant-pagination-next button,.vip-network-container .ant-pagination-prev button {
    border: none;
    border-radius: 50%;
    outline: none
}

.new-search {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px
}

@media screen and (min-width: 1024px) {
    .new-search {
        flex-direction:row
    }
}

.new-search .col1,.new-search .col2 {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.new-search .label {
    margin-bottom: 4px
}

.new-search .btns,.new-search .tools {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%
}

.new-search .btns .custom-combobox,.new-search .tools .custom-combobox {
    background-color: #4d4e4e;
    border-radius: 5px;
    height: 42px;
    text-align: center
}

.new-search .btns .custom-combobox .ant-select-selector,.new-search .tools .custom-combobox .ant-select-selector {
    border-color: transparent
}

.new-search .btns .custom-combobox:hover .ant-select-selector,.new-search .tools .custom-combobox:hover .ant-select-selector {
    border-color: transparent;
    height: 42px
}

.new-search .btns .btn1,.new-search .tools .btn1 {
    align-items: center;
    background: linear-gradient(180deg,#f5b42a,#f0b90b);
    border-radius: .25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 12pt;
    font-weight: 600;
    height: 42px;
    justify-content: center;
    padding: 0 58px;
    white-space: nowrap
}

@media screen and (max-width: 992px) {
    .new-search .btns .btn1,.new-search .tools .btn1 {
        max-width:40%;
        padding: 0 12px;
        width: 100%!important
    }
}

.new-search .btns .btn1.notActive,.new-search .tools .btn1.notActive {
    background: #4d4e4e
}

@media screen and (min-width: 1024px) {
    .new-search .btns {
        border-right:1px solid #41416f;
        padding-right: 16px
    }
}

.order-mobile h2 {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px
}

.order-mobile h2 span {
    cursor: pointer;
    display: inline-block!important;
    flex-basis: 30px!important
}

.order-mobile h2 span img {
    margin-bottom: 2px
}

.order-mobile .top-head {
    grid-gap: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 25px;
    padding: 0 10px
}

.order-mobile .top-head .btnTop {
    background-color: #1d233b;
    border-color: #1d233b
}

.order-mobile .top-head button {
    border-radius: 3px!important;
    font-size: 14px;
    font-weight: 700;
    height: 38px!important
}

.order-mobile .main {
    padding: 0 10px
}

.order-mobile .main .close-list,.order-mobile .main .open-list {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    grid-template-rows: 1fr;
    height: -moz-fit-content;
    height: fit-content;
    justify-items: start;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto
}

.order-mobile .main .close-list .item-sp,.order-mobile .main .open-list .item-sp {
    background-color: #1d233b;
    border-radius: 5px;
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 8px;
    overflow: hidden;
    padding: 6px 12px;
    width: 100%
}

.order-mobile .main .close-list .item-sp .row1,.order-mobile .main .open-list .item-sp .row1 {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    margin-bottom: 6px;
    text-transform: uppercase
}

.order-mobile .main .close-list .item-sp .row1 span.symbol,.order-mobile .main .open-list .item-sp .row1 span.symbol {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}

.order-mobile .main .close-list .item-sp .row1 span.type,.order-mobile .main .open-list .item-sp .row1 span.type {
    background: linear-gradient(180deg,#f5b42a,#f5b42a);
    border-radius: 100px;
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 5px
}

.order-mobile .main .close-list .item-sp .row1 span.id-order,.order-mobile .main .open-list .item-sp .row1 span.id-order {
    margin-left: auto
}

.order-mobile .main .close-list .item-sp .row1 img,.order-mobile .main .open-list .item-sp .row1 img {
    height: 18px;
    margin-left: auto;
    width: 18px
}

.order-mobile .main .close-list .item-sp .row2,.order-mobile .main .open-list .item-sp .row2 {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    text-transform: uppercase
}

.order-mobile .main .close-list .item-sp .row2 .left,.order-mobile .main .open-list .item-sp .row2 .left {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 5px
}

.order-mobile .main .close-list .item-sp .row2 .left .icon-order-side,.order-mobile .main .open-list .item-sp .row2 .left .icon-order-side {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    display: inline-block;
    height: 20px;
    margin-right: 5px;
    width: 20px
}

.order-mobile .main .close-list .item-sp .row2 .left .icon-order-side.up,.order-mobile .main .open-list .item-sp .row2 .left .icon-order-side.up {
    background-color: #04c793;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAABZLkSWAAABD0lEQVRYCe3V0Q2CMBAGYOoEjOAGjuAo4kaOUDdgBNxAN3ED/M9wiWksXNtr6MNdUkvstfdxhNB1FtYB64B1wDrQdAdcqW6e5x5nnBLPeTnn3ol78tIBHDFSY5RWO0gTV/L8ylpsibouimIgHhV14yqqlpFUDKSaQHpMVZAqwJpINeAP8kHXWqEKxKvsATtr4egcNeCCu2ji1IC1cCrADdwdRaq83aInRTiMWHg+BAlDkDTxWrUZBUU4BgTIusBU3B+k+FvMe8VzLo4LYP8RQ/wt5n2iuRQnKpKb1DruBmAsfO5Nq+2DbIro9sfRXQLXYzwDZBs4AlIESP/9s7WfBTm05jKPdcA6YB2wDuzYgQ8c8KYLqOoA5gAAAABJRU5ErkJggg==)
}

.order-mobile .main .close-list .item-sp .row2 .left .icon-order-side.down,.order-mobile .main .open-list .item-sp .row2 .left .icon-order-side.down {
    background-color: #fa4b62;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAABZLkSWAAAA+ElEQVRYCe2U4Q2DIBBGpelAjtANOkIdyRHYoCvQDdzAEdpOYL8zkDT8IAinIe13ySmEQx5PsesYNEADNEADv2NgWZYBOSP75nbl4XBb44lrO5CAEXNxtAMJsimm8/02IAHTI1+ErD15f2ESmxyRQ62s5PxSk5hnkRIuuYDGIBbZdHBQH+COAZRN5kJGcMcBZkLehSgKJ3MPCyyeet0R29p1uXCn3MJUnTFmwvgF+U7VlYypAMrCe0GqAX5BOmlrhSogvi4LsKsWnDxHDdDD3TTh1AD3glMBBNyIB6mbC2/iHBoVd/nFPDbOtxvrWU4DNEADNEADhQY+yo/6ffkCbVkAAAAASUVORK5CYII=)
}

.order-mobile .main .close-list .item-sp .row2 .left span.side,.order-mobile .main .open-list .item-sp .row2 .left span.side {
    font-size: 14px;
    font-weight: 700
}

.order-mobile .main .close-list .item-sp .row2 .left .fa-circle-down,.order-mobile .main .close-list .item-sp .row2 .left .fa-circle-up,.order-mobile .main .open-list .item-sp .row2 .left .fa-circle-down,.order-mobile .main .open-list .item-sp .row2 .left .fa-circle-up {
    color: #fff
}

.order-mobile .main .close-list .item-sp .row2 span.amount,.order-mobile .main .open-list .item-sp .row2 span.amount {
    font-size: 14px;
    font-weight: 600
}

.order-mobile .main .close-list .item-sp .row3,.order-mobile .main .open-list .item-sp .row3 {
    color: gray;
    display: flex;
    font-size: 13px;
    justify-content: space-between
}

.order-mobile .main .close-list .item-sp .row3 span:last-child,.order-mobile .main .open-list .item-sp .row3 span:last-child {
    color: #fff;
    font-weight: 600
}

.order-mobile .main .close-list .item-sp .row4,.order-mobile .main .open-list .item-sp .row4 {
    color: gray;
    display: flex;
    font-size: 13px;
    justify-content: space-between
}

.order-mobile .main .close-list .item-sp .row4 .time,.order-mobile .main .open-list .item-sp .row4 .time {
    letter-spacing: -2px
}

@media screen and (max-width: 992px) {
    .order-mobile .main .close-list .item-sp .row4 .time,.order-mobile .main .open-list .item-sp .row4 .time {
        letter-spacing:inherit
    }
}

.order-mobile .main .close-list .item-sp .row4 .result,.order-mobile .main .open-list .item-sp .row4 .result {
    font-size: 14px;
    font-weight: 600
}

.order-mobile .main .close-list .item-sp.buy span.side,.order-mobile .main .close-list .item-sp.sell span.side,.order-mobile .main .open-list .item-sp.buy span.side,.order-mobile .main .open-list .item-sp.sell span.side {
    color: #fff
}

.order-mobile .main .no-data {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 60px
}

.order-mobile .main .no-data img {
    height: 60px;
    margin-bottom: 10px;
    opacity: .6;
    width: 60px
}

.order-mobile .main .pagination-zone {
    margin-block:20px;text-align: right
}

.setting-mobile .setting-field {
    background-color: #181d33;
    margin: 0 -10px;
    min-height: 59px
}

.setting-mobile h2 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 18px;
    margin-left: 8px
}

.setting-mobile .language-field {
    margin-bottom: 1rem
}

.setting-mobile .eye-field,.setting-mobile .language-field,.setting-mobile .sound-field {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px
}

.setting-mobile .eye-field .langlang,.setting-mobile .language-field .langlang,.setting-mobile .sound-field .langlang {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 15px;
    gap: 10px
}

.setting-mobile .bollinger-svg {
    filter: invert(61%) sepia(11%) saturate(350%) hue-rotate(175deg) brightness(88%) contrast(85%);
    width: 18px
}

.setting-mobile .eye-field,.setting-mobile .sound-field {
    margin-bottom: .5rem!important
}

.setting-mobile .ant-select-selector {
    background-color: rgba(37,37,37,.5)!important;
    border: none!important;
    border-radius: 2px!important
}

.setting-wrap {
    display: flex;
    flex-direction: column;
    height: calc(100svh - 100px);
    justify-content: space-between;
    width: 100%
}

.setting-wrap .logout-section {
    align-items: center;
    background-color: #181d33;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 20px
}

.setting-wrap .logout-section span {
    font-size: 17px;
    font-weight: 700
}

.manage-users-network-vip .navigation-zone {
    align-items: flex-start;
    background: #050819;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    padding-bottom: 25px;
    position: sticky;
    right: 0;
    top: 60px;
    z-index: 99999
}

.manage-users-network-vip .navigation-zone .user-info {
    align-items: flex-end;
    color: #fff;
    display: flex;
    flex-direction: column
}

.manage-users-network-vip .navigation-zone .user-info .user-email,.manage-users-network-vip .navigation-zone .user-info .user-username {
    font-size: 16px
}

.manage-users-network-vip .navigation-zone .user-info .user-username {
    font-weight: 700
}

.admin-sendtouser-email {
    padding-top: 20px
}

.admin-sendtouser-email .ezone-1 {
    display: flex
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-email .ezone-1 {
        display:block
    }

    .admin-sendtouser-email .ezone-1 .email-receiver {
        display: flex;
        flex-direction: column
    }
}

.admin-sendtouser-email .ezone-1 .email-receiver p {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
    min-width: 100px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-email .ezone-1 .email-receiver p {
        margin-bottom:5px
    }
}

.admin-sendtouser-email .ezone-1 .email-address {
    margin-left: 20px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-email .ezone-1 .email-address {
        margin-left:0;
        margin-top: 20px
    }
}

.admin-sendtouser-email .ezone-2 {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 20px
}

.admin-sendtouser-email .ezone-2 .ezone2-content,.admin-sendtouser-email .ezone-2 .ezone2-title {
    display: flex
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-email .ezone-2 .ezone2-content,.admin-sendtouser-email .ezone-2 .ezone2-title {
        display:block
    }
}

.admin-sendtouser-email .ezone-2 .ezone2-content p,.admin-sendtouser-email .ezone-2 .ezone2-title p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
    min-width: 100px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-email .ezone-2 .ezone2-content p,.admin-sendtouser-email .ezone-2 .ezone2-title p {
        margin-bottom:5px
    }
}

.admin-sendtouser-email .ezone-3 {
    margin-left: 110px;
    margin-top: 20px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-email .ezone-3 {
        margin-left:0
    }
}

.admin-sendtouser-noti {
    padding-top: 20px
}

.admin-sendtouser-noti .ezone-1 {
    display: flex
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-noti .ezone-1 {
        display:block
    }
}

.admin-sendtouser-noti .ezone-1 .noti-receiver p {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
    min-width: 150px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-noti .ezone-1 .noti-receiver p {
        margin-bottom:5px
    }

    .admin-sendtouser-noti .ezone-1 .noti-receiver {
        display: flex;
        flex-direction: column
    }
}

.admin-sendtouser-noti .ezone-1 .email-address {
    margin-left: 20px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-noti .ezone-1 .email-address {
        margin-left:0;
        margin-top: 20px
    }
}

.admin-sendtouser-noti .ezone-1.some {
    flex-direction: column
}

.admin-sendtouser-noti .ezone-1.some .email-address-some {
    margin-block:15px;width: 100%
}

.admin-sendtouser-noti .ezone-2 {
    grid-gap: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 20px
}

.admin-sendtouser-noti .ezone-2 .ezone2-content,.admin-sendtouser-noti .ezone-2 .ezone2-title {
    display: flex
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-noti .ezone-2 .ezone2-content,.admin-sendtouser-noti .ezone-2 .ezone2-title {
        display:block
    }
}

.admin-sendtouser-noti .ezone-2 .ezone2-content p,.admin-sendtouser-noti .ezone-2 .ezone2-title p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 10px;
    min-width: 150px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-noti .ezone-2 .ezone2-content p,.admin-sendtouser-noti .ezone-2 .ezone2-title p {
        margin-bottom:5px
    }
}

.admin-sendtouser-noti .ezone-3 {
    margin-left: 160px;
    margin-top: 20px
}

@media screen and (max-width: 992px) {
    .admin-sendtouser-noti .ezone-3 {
        margin-left:0
    }
}

.botrade-user-template {
    background-color: #050819;
    position: relative
}

.botrade-user-template .botrade-component {
    background-color: #050819;
    left: 105px;
    padding: 30px;
    position: absolute;
    top: 65px;
    width: calc(100% - 105px);
    z-index: 0
}

@media screen and (max-width: 992px) {
    .botrade-user-template .botrade-component {
        left:0;
        padding: 10px;
        width: 100%
    }
}

.custom-tabs .ant-tabs-nav:first-of-type {
    background-color: #1f2f43;
    padding: 0 15px
}

.custom-tabs .ant-tabs-nav:first-of-type .ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #f0b90b
}

.custom-tabs .ant-tabs-nav:first-of-type .ant-tabs-tab {
    margin-left: 0
}

.custom-tabs .ant-tabs-nav:first-of-type .ant-tabs-tab .ant-tabs-tab-btn {
    font-size: 1rem!important;
    font-weight: 500
}

.custom-tabs .tab-with-badge {
    display: inline-block;
    position: relative
}

@media(max-width: 768px) {
    .custom-tabs .tab-with-badge {
        min-width:180px
    }
}

.custom-tabs .badge-new {
    background-size: contain;
    height: 21px;
    position: absolute;
    top: -10px;
    width: 25px
}

.support-popup-container .text-dark {
    color: #333!important
}

.support-popup-container .popup-root {
    background: #fff;
    border-radius: 16px;
    bottom: 90px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    font-family: inherit;
    overflow: hidden;
    position: fixed;
    right: 24px;
    width: 320px;
    z-index: 1001
}

.support-popup-container .popup-header {
    align-items: center;
    background-color: #f0b90b;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: space-between;
    padding: 12px 16px
}

.support-popup-container .popup-header .popup-close {
    cursor: pointer;
    line-height: 1;
    transition: opacity .2s
}

.support-popup-container .popup-header .popup-close:hover {
    opacity: .9
}

.support-popup-container .popup-body {
    padding: 16px
}

.support-popup-container .contact-line {
    margin-top: 4px
}

.support-popup-container .tg-btn {
    align-items: center;
    background: linear-gradient(135deg,#31a7df,#229ed9);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(34,158,217,.25);
    color: #fff!important;
    display: inline-flex;
    font-weight: 600;
    gap: 8px;
    height: 40px;
    justify-content: center;
    transition: transform .06s ease,box-shadow .2s ease,filter .2s ease
}

.support-popup-container .tg-btn:active,.support-popup-container .tg-btn:focus,.support-popup-container .tg-btn:hover {
    background: linear-gradient(135deg,#4bb2e3,#3aaae0);
    box-shadow: 0 8px 18px rgba(34,158,217,.32);
    color: #fff!important;
    filter: brightness(1.05)
}

.support-popup-container .tg-btn .tg-icon {
    align-items: center;
    color: #fff!important;
    display: inline-flex;
    justify-content: center
}

.support-popup-container .tg-btn .tg-icon svg {
    display: block
}

.support-popup-container .btn-with-status {
    position: relative
}

.support-popup-container .btn-with-status .online-dot {
    animation: pulse-green 1.6s infinite;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 10px
}

.support-popup-container .btn-with-status.offline .online-dot {
    animation: none;
    background: #9ca3af
}

.support-popup-container .ant-btn-primary {
    background-color: #f0b90b;
    border-color: #f0b90b
}

.support-popup-container .ant-btn-primary:focus,.support-popup-container .ant-btn-primary:hover {
    filter: brightness(.95)
}

@media(max-width: 360px) {
    .support-popup-container .popup-root {
        bottom:12px;
        left: 12px;
        right: 12px;
        width: auto
    }
}

@keyframes pulse-green {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .65;
        transform: scale(1.35)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0,0%,100%,.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    padding: 4px;
    position: fixed;
    -webkit-transform: translateZ(9999);
    -webkit-transform: translateZ(var(--toastify-z-index));
    width: 320px;
    width: var(--toastify-toast-width);
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    left: 1em;
    top: 1em
}

.Toastify__toast-container--top-center {
    left: 50%;
    top: 1em;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    right: 1em;
    top: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        left:0;
        margin: 0;
        padding: 0;
        width: 100vw
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        left: auto;
        right: 0
    }
}

.Toastify__toast {
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);
    box-sizing: border-box;
    cursor: default;
    direction: ltr;
    display: flex;
    font-family: sans-serif;
    font-family: var(--toastify-font-family);
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: 800px;
    max-height: var(--toastify-toast-max-height);
    min-height: 64px;
    min-height: var(--toastify-toast-min-height);
    overflow: hidden;
    padding: 8px;
    position: relative;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    margin: auto 0;
    padding: 6px
}

.Toastify__toast-body>div:last-child {
    flex: 1 1;
    word-break: break-word
}

.Toastify__toast-icon {
    display: flex;
    flex-shrink: 0;
    margin-inline-end:10px;width: 20px
}

.Toastify--animate {
    animation-duration: .7s;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    animation-duration: .3s;
    animation-fill-mode: both
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        border-radius:0;
        margin-bottom: 0
    }
}

.Toastify__toast-theme--dark {
    background: #121212;
    background: var(--toastify-color-dark);
    color: #fff;
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light {
    background: #fff;
    background: var(--toastify-color-light);
    color: #757575;
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: #3498db;
    background: var(--toastify-color-info);
    color: #fff;
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: #07bc0c;
    background: var(--toastify-color-success);
    color: #fff;
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: #f1c40f;
    background: var(--toastify-color-warning);
    color: #fff;
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: #e74c3c;
    background: var(--toastify-color-error);
    color: #fff;
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: #bb86fc;
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: #3498db;
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: #07bc0c;
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: #f1c40f;
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: #e74c3c;
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: hsla(0,0%,100%,.7);
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    transition: .3s ease
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    bottom: 0;
    height: 5px;
    left: 0;
    opacity: .7;
    position: absolute;
    transform-origin: left;
    width: 100%;
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    left: auto;
    right: 0;
    transform-origin: right
}

.Toastify__spinner {
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid #e0e0e0;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    border-right-color: #616161;
    border-right-color: var(--toastify-spinner-color);
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

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

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

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

    to {
        transform: none
    }
}

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

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

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

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

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

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

    to {
        transform: none
    }
}

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

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

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

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

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

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

    to {
        transform: translateZ(0)
    }
}

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

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

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

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

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

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

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

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

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

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

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(110%,0,0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

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

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0,500px,0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0,-500px,0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

[class*=ant-] input::-ms-clear,[class*=ant-] input::-ms-reveal,[class*=ant-]::-ms-clear,[class^=ant-] input::-ms-clear,[class^=ant-] input::-ms-reveal,[class^=ant-]::-ms-clear {
    display: none
}

body,html {
    height: 100%;
    width: 100%
}

input::-ms-clear,input::-ms-reveal {
    display: none
}

*,:after,:before {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: sans-serif;
    line-height: 1.15
}

@-ms-viewport {
    width: device-width
}

body {
    font-feature-settings: "tnum","tnum";
    background-color: #000;
    color: hsla(0,0%,100%,.85);
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Nunito Sans,Sarabun,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    margin: 0
}

[tabindex="-1"]:focus {
    outline: none!important
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,h2,h3,h4,h5,h6 {
    color: hsla(0,0%,100%,.85);
    font-weight: 500;
    margin-bottom: .5em;
    margin-top: 0
}

p {
    margin-bottom: 1em;
    margin-top: 0
}

abbr[data-original-title],abbr[title] {
    border-bottom: 0;
    cursor: help;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1em
}

input[type=number],input[type=password],input[type=text],textarea {
    -webkit-appearance: none
}

dl,ol,ul {
    margin-bottom: 1em;
    margin-top: 0
}

ol ol,ol ul,ul ol,ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 500
}

dd {
    margin-bottom: .5em;
    margin-left: 0
}

blockquote {
    margin: 0 0 1em
}

dfn {
    font-style: italic
}

b,strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    -webkit-text-decoration-skip: objects;
    background-color: transparent;
    color: #f0b90b;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: color .3s
}

a:hover {
    color: #bf9003
}

a:active {
    color: #fc0
}

a:active,a:focus,a:hover {
    outline: 0;
    text-decoration: none
}

a[disabled] {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

code,kbd,pre,samp {
    font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
    font-size: 1em
}

pre {
    margin-bottom: 1em;
    margin-top: 0;
    overflow: auto
}

figure {
    margin: 0 0 1em
}

img {
    border-style: none;
    vertical-align: middle
}

[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea {
    touch-action: manipulation
}

table {
    border-collapse: collapse
}

caption {
    caption-side: bottom;
    color: hsla(0,0%,100%,.45);
    padding-bottom: .3em;
    padding-top: .75em;
    text-align: left
}

button,input,optgroup,select,textarea {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

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

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

input[type=checkbox],input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=date],input[type=datetime-local],input[type=month],input[type=time] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    color: inherit;
    display: block;
    font-size: 1.5em;
    line-height: inherit;
    margin-bottom: .5em;
    max-width: 100%;
    padding: 0;
    white-space: normal;
    width: 100%
}

progress {
    vertical-align: baseline
}

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

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

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

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

output {
    display: inline-block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none!important
}

mark {
    background-color: #2b2611;
    padding: .2em
}

::-moz-selection {
    background: #f0b90b;
    color: #fff
}

::selection {
    background: #f0b90b;
    color: #fff
}

.clearfix:after,.clearfix:before {
    content: "";
    display: table
}

.clearfix:after {
    clear: both
}

.anticon {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
    display: inline-block;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-rendering: optimizelegibility;
    text-transform: none;
    vertical-align: -.125em
}

.anticon>* {
    line-height: 1
}

.anticon svg {
    display: inline-block
}

.anticon:before {
    display: none
}

.anticon .anticon-icon {
    display: block
}

.anticon>.anticon {
    line-height: 0;
    vertical-align: 0
}

.anticon[tabindex] {
    cursor: pointer
}

.anticon-spin,.anticon-spin:before {
    animation: loadingCircle 1s linear infinite;
    display: inline-block
}

.ant-fade-appear,.ant-fade-enter,.ant-fade-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-fade-appear.ant-fade-appear-active,.ant-fade-enter.ant-fade-enter-active {
    animation-name: antFadeIn;
    animation-play-state: running
}

.ant-fade-leave.ant-fade-leave-active {
    animation-name: antFadeOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-fade-appear,.ant-fade-enter {
    animation-timing-function: linear;
    opacity: 0
}

.ant-fade-leave {
    animation-timing-function: linear
}

@keyframes antFadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes antFadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.ant-move-up-appear,.ant-move-up-enter,.ant-move-up-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-move-up-appear.ant-move-up-appear-active,.ant-move-up-enter.ant-move-up-enter-active {
    animation-name: antMoveUpIn;
    animation-play-state: running
}

.ant-move-up-leave.ant-move-up-leave-active {
    animation-name: antMoveUpOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-move-up-appear,.ant-move-up-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0
}

.ant-move-up-leave {
    animation-timing-function: cubic-bezier(.6,.04,.98,.34)
}

.ant-move-down-appear,.ant-move-down-enter,.ant-move-down-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-move-down-appear.ant-move-down-appear-active,.ant-move-down-enter.ant-move-down-enter-active {
    animation-name: antMoveDownIn;
    animation-play-state: running
}

.ant-move-down-leave.ant-move-down-leave-active {
    animation-name: antMoveDownOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-move-down-appear,.ant-move-down-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0
}

.ant-move-down-leave {
    animation-timing-function: cubic-bezier(.6,.04,.98,.34)
}

.ant-move-left-appear,.ant-move-left-enter,.ant-move-left-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-move-left-appear.ant-move-left-appear-active,.ant-move-left-enter.ant-move-left-enter-active {
    animation-name: antMoveLeftIn;
    animation-play-state: running
}

.ant-move-left-leave.ant-move-left-leave-active {
    animation-name: antMoveLeftOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-move-left-appear,.ant-move-left-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0
}

.ant-move-left-leave {
    animation-timing-function: cubic-bezier(.6,.04,.98,.34)
}

.ant-move-right-appear,.ant-move-right-enter,.ant-move-right-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-move-right-appear.ant-move-right-appear-active,.ant-move-right-enter.ant-move-right-enter-active {
    animation-name: antMoveRightIn;
    animation-play-state: running
}

.ant-move-right-leave.ant-move-right-leave-active {
    animation-name: antMoveRightOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-move-right-appear,.ant-move-right-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0
}

.ant-move-right-leave {
    animation-timing-function: cubic-bezier(.6,.04,.98,.34)
}

@keyframes antMoveDownIn {
    0% {
        opacity: 0;
        transform: translateY(100%);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: translateY(0);
        transform-origin: 0 0
    }
}

@keyframes antMoveDownOut {
    0% {
        opacity: 1;
        transform: translateY(0);
        transform-origin: 0 0
    }

    to {
        opacity: 0;
        transform: translateY(100%);
        transform-origin: 0 0
    }
}

@keyframes antMoveLeftIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: translateX(0);
        transform-origin: 0 0
    }
}

@keyframes antMoveLeftOut {
    0% {
        opacity: 1;
        transform: translateX(0);
        transform-origin: 0 0
    }

    to {
        opacity: 0;
        transform: translateX(-100%);
        transform-origin: 0 0
    }
}

@keyframes antMoveRightIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: translateX(0);
        transform-origin: 0 0
    }
}

@keyframes antMoveRightOut {
    0% {
        opacity: 1;
        transform: translateX(0);
        transform-origin: 0 0
    }

    to {
        opacity: 0;
        transform: translateX(100%);
        transform-origin: 0 0
    }
}

@keyframes antMoveUpIn {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: translateY(0);
        transform-origin: 0 0
    }
}

@keyframes antMoveUpOut {
    0% {
        opacity: 1;
        transform: translateY(0);
        transform-origin: 0 0
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform-origin: 0 0
    }
}

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

[ant-click-animating-without-extra-node=true],[ant-click-animating=true] {
    position: relative
}

html {
    --antd-wave-shadow-color: #f0b90b;
    --scroll-bar: 0
}

.ant-click-animating-node,[ant-click-animating-without-extra-node=true]:after {
    animation: fadeEffect 2s cubic-bezier(.08,.82,.17,1),waveEffect .4s cubic-bezier(.08,.82,.17,1);
    animation-fill-mode: forwards;
    border-radius: inherit;
    bottom: 0;
    box-shadow: 0 0 0 0 #f0b90b;
    box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
    content: "";
    display: block;
    left: 0;
    opacity: .2;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

@keyframes waveEffect {
    to {
        box-shadow: 0 0 0 #f0b90b;
        box-shadow: 0 0 0 6px #f0b90b;
        box-shadow: 0 0 0 6px var(--antd-wave-shadow-color)
    }
}

@keyframes fadeEffect {
    to {
        opacity: 0
    }
}

.ant-slide-up-appear,.ant-slide-up-enter,.ant-slide-up-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-slide-up-appear.ant-slide-up-appear-active,.ant-slide-up-enter.ant-slide-up-enter-active {
    animation-name: antSlideUpIn;
    animation-play-state: running
}

.ant-slide-up-leave.ant-slide-up-leave-active {
    animation-name: antSlideUpOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-slide-up-appear,.ant-slide-up-enter {
    animation-timing-function: cubic-bezier(.23,1,.32,1);
    opacity: 0
}

.ant-slide-up-leave {
    animation-timing-function: cubic-bezier(.755,.05,.855,.06)
}

.ant-slide-down-appear,.ant-slide-down-enter,.ant-slide-down-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-slide-down-appear.ant-slide-down-appear-active,.ant-slide-down-enter.ant-slide-down-enter-active {
    animation-name: antSlideDownIn;
    animation-play-state: running
}

.ant-slide-down-leave.ant-slide-down-leave-active {
    animation-name: antSlideDownOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-slide-down-appear,.ant-slide-down-enter {
    animation-timing-function: cubic-bezier(.23,1,.32,1);
    opacity: 0
}

.ant-slide-down-leave {
    animation-timing-function: cubic-bezier(.755,.05,.855,.06)
}

.ant-slide-left-appear,.ant-slide-left-enter,.ant-slide-left-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-slide-left-appear.ant-slide-left-appear-active,.ant-slide-left-enter.ant-slide-left-enter-active {
    animation-name: antSlideLeftIn;
    animation-play-state: running
}

.ant-slide-left-leave.ant-slide-left-leave-active {
    animation-name: antSlideLeftOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-slide-left-appear,.ant-slide-left-enter {
    animation-timing-function: cubic-bezier(.23,1,.32,1);
    opacity: 0
}

.ant-slide-left-leave {
    animation-timing-function: cubic-bezier(.755,.05,.855,.06)
}

.ant-slide-right-appear,.ant-slide-right-enter,.ant-slide-right-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-slide-right-appear.ant-slide-right-appear-active,.ant-slide-right-enter.ant-slide-right-enter-active {
    animation-name: antSlideRightIn;
    animation-play-state: running
}

.ant-slide-right-leave.ant-slide-right-leave-active {
    animation-name: antSlideRightOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-slide-right-appear,.ant-slide-right-enter {
    animation-timing-function: cubic-bezier(.23,1,.32,1);
    opacity: 0
}

.ant-slide-right-leave {
    animation-timing-function: cubic-bezier(.755,.05,.855,.06)
}

@keyframes antSlideUpIn {
    0% {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 0 0
    }
}

@keyframes antSlideUpOut {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 0 0
    }

    to {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 0 0
    }
}

@keyframes antSlideDownIn {
    0% {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 100% 100%
    }

    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 100% 100%
    }
}

@keyframes antSlideDownOut {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 100% 100%
    }

    to {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 100% 100%
    }
}

@keyframes antSlideLeftIn {
    0% {
        opacity: 0;
        transform: scaleX(.8);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: 0 0
    }
}

@keyframes antSlideLeftOut {
    0% {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: 0 0
    }

    to {
        opacity: 0;
        transform: scaleX(.8);
        transform-origin: 0 0
    }
}

@keyframes antSlideRightIn {
    0% {
        opacity: 0;
        transform: scaleX(.8);
        transform-origin: 100% 0
    }

    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: 100% 0
    }
}

@keyframes antSlideRightOut {
    0% {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: 100% 0
    }

    to {
        opacity: 0;
        transform: scaleX(.8);
        transform-origin: 100% 0
    }
}

.ant-zoom-appear,.ant-zoom-enter,.ant-zoom-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-appear.ant-zoom-appear-active,.ant-zoom-enter.ant-zoom-enter-active {
    animation-name: antZoomIn;
    animation-play-state: running
}

.ant-zoom-leave.ant-zoom-leave-active {
    animation-name: antZoomOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-appear,.ant-zoom-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-appear-prepare,.ant-zoom-enter-prepare {
    transform: none
}

.ant-zoom-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-zoom-big-appear,.ant-zoom-big-enter,.ant-zoom-big-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-big-appear.ant-zoom-big-appear-active,.ant-zoom-big-enter.ant-zoom-big-enter-active {
    animation-name: antZoomBigIn;
    animation-play-state: running
}

.ant-zoom-big-leave.ant-zoom-big-leave-active {
    animation-name: antZoomBigOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-big-appear,.ant-zoom-big-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-big-appear-prepare,.ant-zoom-big-enter-prepare {
    transform: none
}

.ant-zoom-big-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-zoom-big-fast-appear,.ant-zoom-big-fast-enter,.ant-zoom-big-fast-leave {
    animation-duration: .1s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active,.ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active {
    animation-name: antZoomBigIn;
    animation-play-state: running
}

.ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
    animation-name: antZoomBigOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-big-fast-appear,.ant-zoom-big-fast-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-big-fast-appear-prepare,.ant-zoom-big-fast-enter-prepare {
    transform: none
}

.ant-zoom-big-fast-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-zoom-up-appear,.ant-zoom-up-enter,.ant-zoom-up-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-up-appear.ant-zoom-up-appear-active,.ant-zoom-up-enter.ant-zoom-up-enter-active {
    animation-name: antZoomUpIn;
    animation-play-state: running
}

.ant-zoom-up-leave.ant-zoom-up-leave-active {
    animation-name: antZoomUpOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-up-appear,.ant-zoom-up-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-up-appear-prepare,.ant-zoom-up-enter-prepare {
    transform: none
}

.ant-zoom-up-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-zoom-down-appear,.ant-zoom-down-enter,.ant-zoom-down-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-down-appear.ant-zoom-down-appear-active,.ant-zoom-down-enter.ant-zoom-down-enter-active {
    animation-name: antZoomDownIn;
    animation-play-state: running
}

.ant-zoom-down-leave.ant-zoom-down-leave-active {
    animation-name: antZoomDownOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-down-appear,.ant-zoom-down-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-down-appear-prepare,.ant-zoom-down-enter-prepare {
    transform: none
}

.ant-zoom-down-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-zoom-left-appear,.ant-zoom-left-enter,.ant-zoom-left-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-left-appear.ant-zoom-left-appear-active,.ant-zoom-left-enter.ant-zoom-left-enter-active {
    animation-name: antZoomLeftIn;
    animation-play-state: running
}

.ant-zoom-left-leave.ant-zoom-left-leave-active {
    animation-name: antZoomLeftOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-left-appear,.ant-zoom-left-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-left-appear-prepare,.ant-zoom-left-enter-prepare {
    transform: none
}

.ant-zoom-left-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-zoom-right-appear,.ant-zoom-right-enter,.ant-zoom-right-leave {
    animation-duration: .2s;
    animation-fill-mode: both;
    animation-play-state: paused
}

.ant-zoom-right-appear.ant-zoom-right-appear-active,.ant-zoom-right-enter.ant-zoom-right-enter-active {
    animation-name: antZoomRightIn;
    animation-play-state: running
}

.ant-zoom-right-leave.ant-zoom-right-leave-active {
    animation-name: antZoomRightOut;
    animation-play-state: running;
    pointer-events: none
}

.ant-zoom-right-appear,.ant-zoom-right-enter {
    animation-timing-function: cubic-bezier(.08,.82,.17,1);
    opacity: 0;
    transform: scale(0)
}

.ant-zoom-right-appear-prepare,.ant-zoom-right-enter-prepare {
    transform: none
}

.ant-zoom-right-leave {
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

@keyframes antZoomIn {
    0% {
        opacity: 0;
        transform: scale(.2)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes antZoomOut {
    0% {
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(.2)
    }
}

@keyframes antZoomBigIn {
    0% {
        opacity: 0;
        transform: scale(.8)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes antZoomBigOut {
    0% {
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(.8)
    }
}

@keyframes antZoomUpIn {
    0% {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 50% 0
    }

    to {
        transform: scale(1);
        transform-origin: 50% 0
    }
}

@keyframes antZoomUpOut {
    0% {
        transform: scale(1);
        transform-origin: 50% 0
    }

    to {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 50% 0
    }
}

@keyframes antZoomLeftIn {
    0% {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 0 50%
    }

    to {
        transform: scale(1);
        transform-origin: 0 50%
    }
}

@keyframes antZoomLeftOut {
    0% {
        transform: scale(1);
        transform-origin: 0 50%
    }

    to {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 0 50%
    }
}

@keyframes antZoomRightIn {
    0% {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 100% 50%
    }

    to {
        transform: scale(1);
        transform-origin: 100% 50%
    }
}

@keyframes antZoomRightOut {
    0% {
        transform: scale(1);
        transform-origin: 100% 50%
    }

    to {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 100% 50%
    }
}

@keyframes antZoomDownIn {
    0% {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 50% 100%
    }

    to {
        transform: scale(1);
        transform-origin: 50% 100%
    }
}

@keyframes antZoomDownOut {
    0% {
        transform: scale(1);
        transform-origin: 50% 100%
    }

    to {
        opacity: 0;
        transform: scale(.8);
        transform-origin: 50% 100%
    }
}

.ant-motion-collapse-legacy {
    overflow: hidden
}

.ant-motion-collapse,.ant-motion-collapse-legacy-active {
    transition: height .2s cubic-bezier(.645,.045,.355,1),opacity .2s cubic-bezier(.645,.045,.355,1)!important
}

.ant-motion-collapse {
    overflow: hidden
}

.ant-affix {
    position: fixed;
    z-index: 10
}

.ant-alert {
    font-feature-settings: "tnum","tnum";
    word-wrap: break-word;
    align-items: center;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 8px 15px;
    position: relative
}

.ant-alert-content {
    flex: 1 1;
    min-width: 0
}

.ant-alert-icon {
    margin-right: 8px
}

.ant-alert-description {
    display: none;
    font-size: 14px;
    line-height: 22px
}

.ant-alert-success {
    background-color: #162312;
    border: 1px solid #274916
}

.ant-alert-success .ant-alert-icon {
    color: #49aa19
}

.ant-alert-info {
    background-color: #111e28;
    border: 1px solid #103b53
}

.ant-alert-info .ant-alert-icon {
    color: #f0b90b
}

.ant-alert-warning {
    background-color: #2b2111;
    border: 1px solid #594214
}

.ant-alert-warning .ant-alert-icon {
    color: #d89614
}

.ant-alert-error {
    background-color: #2a1215;
    border: 1px solid #58181c
}

.ant-alert-error .ant-alert-icon {
    color: #a61d24
}

.ant-alert-error .ant-alert-description>pre {
    margin: 0;
    padding: 0
}

.ant-alert-action {
    margin-left: 8px
}

.ant-alert-close-icon {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 12px;
    line-height: 12px;
    margin-left: 8px;
    outline: none;
    overflow: hidden;
    padding: 0
}

.ant-alert-close-icon .anticon-close {
    color: hsla(0,0%,100%,.45);
    transition: color .3s
}

.ant-alert-close-icon .anticon-close:hover {
    color: hsla(0,0%,100%,.75)
}

.ant-alert-close-text {
    color: hsla(0,0%,100%,.45);
    transition: color .3s
}

.ant-alert-close-text:hover {
    color: hsla(0,0%,100%,.75)
}

.ant-alert-with-description {
    align-items: flex-start;
    padding: 15px 15px 15px 24px
}

.ant-alert-with-description.ant-alert-no-icon {
    padding: 15px
}

.ant-alert-with-description .ant-alert-icon {
    font-size: 24px;
    margin-right: 15px
}

.ant-alert-with-description .ant-alert-message {
    color: hsla(0,0%,100%,.85);
    display: block;
    font-size: 16px;
    margin-bottom: 4px
}

.ant-alert-message {
    color: hsla(0,0%,100%,.85)
}

.ant-alert-with-description .ant-alert-description {
    display: block
}

.ant-alert.ant-alert-motion-leave {
    opacity: 1;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(.78,.14,.15,.86),opacity .3s cubic-bezier(.78,.14,.15,.86),padding-top .3s cubic-bezier(.78,.14,.15,.86),padding-bottom .3s cubic-bezier(.78,.14,.15,.86),margin-bottom .3s cubic-bezier(.78,.14,.15,.86)
}

.ant-alert.ant-alert-motion-leave-active {
    margin-bottom: 0!important;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    padding-top: 0
}

.ant-alert-banner {
    border: 0;
    border-radius: 0;
    margin-bottom: 0
}

.ant-alert.ant-alert-rtl {
    direction: rtl
}

.ant-alert-rtl .ant-alert-icon {
    margin-left: 8px;
    margin-right: auto
}

.ant-alert-rtl .ant-alert-action,.ant-alert-rtl .ant-alert-close-icon {
    margin-left: auto;
    margin-right: 8px
}

.ant-alert-rtl.ant-alert-with-description {
    padding-left: 15px;
    padding-right: 24px
}

.ant-alert-rtl.ant-alert-with-description .ant-alert-icon {
    margin-left: 15px;
    margin-right: auto
}

.ant-anchor {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0 0 0 2px;
    position: relative
}

.ant-anchor-wrapper {
    background-color: transparent;
    margin-left: -4px;
    overflow: auto;
    padding-left: 4px
}

.ant-anchor-ink {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0
}

.ant-anchor-ink:before {
    background-color: #303030;
    content: " ";
    display: block;
    height: 100%;
    margin: 0 auto;
    position: relative;
    width: 2px
}

.ant-anchor-ink-ball {
    background-color: #141414;
    border: 2px solid #f0b90b;
    border-radius: 8px;
    display: none;
    height: 8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: top .3s ease-in-out;
    width: 8px
}

.ant-anchor-ink-ball.visible {
    display: inline-block
}

.ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball {
    display: none
}

.ant-anchor-link {
    padding: 4px 0 4px 16px
}

.ant-anchor-link-title {
    color: hsla(0,0%,100%,.85);
    display: block;
    margin-bottom: 3px;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    transition: all .3s;
    white-space: nowrap
}

.ant-anchor-link-title:only-child {
    margin-bottom: 0
}

.ant-anchor-link-active>.ant-anchor-link-title {
    color: #f0b90b
}

.ant-anchor-link .ant-anchor-link {
    padding-bottom: 2px;
    padding-top: 2px
}

.ant-anchor-rtl {
    direction: rtl
}

.ant-anchor-rtl.ant-anchor-wrapper {
    margin-left: 0;
    margin-right: -4px;
    padding-left: 0;
    padding-right: 4px
}

.ant-anchor-rtl .ant-anchor-ink {
    left: auto;
    right: 0
}

.ant-anchor-rtl .ant-anchor-ink-ball {
    left: 0;
    right: 50%;
    transform: translateX(50%)
}

.ant-anchor-rtl .ant-anchor-link {
    padding: 4px 16px 4px 0
}

.ant-select-auto-complete {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-select-auto-complete .ant-select-clear {
    right: 13px
}

.ant-avatar {
    font-feature-settings: "tnum","tnum";
    background: hsla(0,0%,100%,.3);
    border-radius: 50%;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    height: 32px;
    line-height: 1.5715;
    line-height: 32px;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    width: 32px
}

.ant-avatar-image {
    background: transparent
}

.ant-avatar .ant-image-img {
    display: block
}

.ant-avatar-string {
    left: 50%;
    position: absolute;
    transform-origin: 0 center
}

.ant-avatar.ant-avatar-icon {
    font-size: 18px
}

.ant-avatar.ant-avatar-icon>.anticon {
    margin: 0
}

.ant-avatar-lg {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px
}

.ant-avatar-lg-string {
    left: 50%;
    position: absolute;
    transform-origin: 0 center
}

.ant-avatar-lg.ant-avatar-icon {
    font-size: 24px
}

.ant-avatar-lg.ant-avatar-icon>.anticon {
    margin: 0
}

.ant-avatar-sm {
    border-radius: 50%;
    height: 24px;
    line-height: 24px;
    width: 24px
}

.ant-avatar-sm-string {
    left: 50%;
    position: absolute;
    transform-origin: 0 center
}

.ant-avatar-sm.ant-avatar-icon {
    font-size: 14px
}

.ant-avatar-sm.ant-avatar-icon>.anticon {
    margin: 0
}

.ant-avatar-square {
    border-radius: 6px
}

.ant-avatar>img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.ant-avatar-group {
    display: inline-flex
}

.ant-avatar-group .ant-avatar {
    border: 1px solid #fff
}

.ant-avatar-group .ant-avatar:not(:first-child) {
    margin-left: -8px
}

.ant-avatar-group-popover .ant-avatar+.ant-avatar {
    margin-left: 3px
}

.ant-avatar-group-rtl .ant-avatar:not(:first-child) {
    margin-left: 0;
    margin-right: -8px
}

.ant-avatar-group-popover.ant-popover-rtl .ant-avatar+.ant-avatar {
    margin-left: 0;
    margin-right: 3px
}

.ant-back-top {
    font-feature-settings: "tnum","tnum";
    bottom: 50px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    height: 40px;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 100px;
    width: 40px;
    z-index: 10
}

.ant-back-top:empty {
    display: none
}

.ant-back-top-rtl {
    direction: rtl;
    left: 100px;
    right: auto
}

.ant-back-top-content {
    background-color: hsla(0,0%,100%,.45);
    border-radius: 20px;
    color: #fff;
    height: 40px;
    overflow: hidden;
    text-align: center;
    transition: all .3s;
    width: 40px
}

.ant-back-top-content:hover {
    background-color: hsla(0,0%,100%,.85);
    transition: all .3s
}

.ant-back-top-icon {
    font-size: 24px;
    line-height: 40px
}

@media screen and (max-width: 768px) {
    .ant-back-top {
        right:60px
    }

    .ant-back-top-rtl {
        left: 60px;
        right: auto
    }
}

@media screen and (max-width: 480px) {
    .ant-back-top {
        right:20px
    }

    .ant-back-top-rtl {
        left: 20px;
        right: auto
    }
}

.ant-badge {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.ant-badge-count {
    background: #a61d24;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #141414;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    height: 20px;
    line-height: 20px;
    min-width: 20px;
    padding: 0 6px;
    text-align: center;
    white-space: nowrap;
    z-index: auto
}

.ant-badge-count a,.ant-badge-count a:hover {
    color: #fff
}

.ant-badge-count-sm {
    border-radius: 7px;
    font-size: 12px;
    height: 14px;
    line-height: 14px;
    min-width: 14px;
    padding: 0
}

.ant-badge-multiple-words {
    padding: 0 8px
}

.ant-badge-dot {
    background: #a61d24;
    border-radius: 100%;
    box-shadow: 0 0 0 1px #141414;
    height: 6px;
    min-width: 6px;
    width: 6px;
    z-index: auto
}

.ant-badge-dot.ant-scroll-number {
    transition: background 1.5s
}

.ant-badge .ant-scroll-number-custom-component,.ant-badge-count,.ant-badge-dot {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%,-50%);
    transform-origin: 100% 0
}

.ant-badge .ant-scroll-number-custom-component.anticon-spin,.ant-badge-count.anticon-spin,.ant-badge-dot.anticon-spin {
    animation: antBadgeLoadingCircle 1s linear infinite
}

.ant-badge-status {
    line-height: inherit;
    vertical-align: baseline
}

.ant-badge-status-dot {
    border-radius: 50%;
    display: inline-block;
    height: 6px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 6px
}

.ant-badge-status-success {
    background-color: #49aa19
}

.ant-badge-status-processing {
    background-color: #177ddc;
    position: relative
}

.ant-badge-status-processing:after {
    animation: antStatusProcessing 1.2s ease-in-out infinite;
    border: 1px solid #177ddc;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.ant-badge-status-default {
    background-color: #d9d9d9
}

.ant-badge-status-error {
    background-color: #a61d24
}

.ant-badge-status-warning {
    background-color: #d89614
}

.ant-badge-status-magenta,.ant-badge-status-pink {
    background: #cb2b83
}

.ant-badge-status-red {
    background: #d32029
}

.ant-badge-status-volcano {
    background: #d84a1b
}

.ant-badge-status-orange {
    background: #d87a16
}

.ant-badge-status-yellow {
    background: #d8bd14
}

.ant-badge-status-gold {
    background: #d89614
}

.ant-badge-status-cyan {
    background: #13a8a8
}

.ant-badge-status-lime {
    background: #8bbb11
}

.ant-badge-status-green {
    background: #49aa19
}

.ant-badge-status-blue {
    background: #177ddc
}

.ant-badge-status-geekblue {
    background: #2b4acb
}

.ant-badge-status-purple {
    background: #642ab5
}

.ant-badge-status-text {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    margin-left: 8px
}

.ant-badge-zoom-appear,.ant-badge-zoom-enter {
    animation: antZoomBadgeIn .3s cubic-bezier(.12,.4,.29,1.46);
    animation-fill-mode: both
}

.ant-badge-zoom-leave {
    animation: antZoomBadgeOut .3s cubic-bezier(.71,-.46,.88,.6);
    animation-fill-mode: both
}

.ant-badge-not-a-wrapper .ant-badge-zoom-appear,.ant-badge-not-a-wrapper .ant-badge-zoom-enter {
    animation: antNoWrapperZoomBadgeIn .3s cubic-bezier(.12,.4,.29,1.46)
}

.ant-badge-not-a-wrapper .ant-badge-zoom-leave {
    animation: antNoWrapperZoomBadgeOut .3s cubic-bezier(.71,-.46,.88,.6)
}

.ant-badge-not-a-wrapper:not(.ant-badge-status) {
    vertical-align: middle
}

.ant-badge-not-a-wrapper .ant-badge-count,.ant-badge-not-a-wrapper .ant-scroll-number-custom-component {
    transform: none
}

.ant-badge-not-a-wrapper .ant-scroll-number,.ant-badge-not-a-wrapper .ant-scroll-number-custom-component {
    display: block;
    position: relative;
    top: auto;
    transform-origin: 50% 50%
}

@keyframes antStatusProcessing {
    0% {
        opacity: .5;
        transform: scale(.8)
    }

    to {
        opacity: 0;
        transform: scale(2.4)
    }
}

.ant-scroll-number {
    direction: ltr;
    overflow: hidden
}

.ant-scroll-number-only {
    display: inline-block;
    position: relative;
    transition: all .3s cubic-bezier(.645,.045,.355,1)
}

.ant-scroll-number-only,.ant-scroll-number-only>p.ant-scroll-number-only-unit {
    -webkit-backface-visibility: hidden;
    height: 20px;
    -webkit-transform-style: preserve-3d
}

.ant-scroll-number-only>p.ant-scroll-number-only-unit {
    margin: 0
}

.ant-scroll-number-symbol {
    vertical-align: top
}

@keyframes antZoomBadgeIn {
    0% {
        opacity: 0;
        transform: scale(0) translate(50%,-50%)
    }

    to {
        transform: scale(1) translate(50%,-50%)
    }
}

@keyframes antZoomBadgeOut {
    0% {
        transform: scale(1) translate(50%,-50%)
    }

    to {
        opacity: 0;
        transform: scale(0) translate(50%,-50%)
    }
}

@keyframes antNoWrapperZoomBadgeIn {
    0% {
        opacity: 0;
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@keyframes antNoWrapperZoomBadgeOut {
    0% {
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(0)
    }
}

@keyframes antBadgeLoadingCircle {
    0% {
        transform-origin: 50%
    }

    to {
        transform: translate(50%,-50%) rotate(1turn);
        transform-origin: 50%
    }
}

.ant-ribbon-wrapper {
    position: relative
}

.ant-ribbon {
    font-feature-settings: "tnum","tnum";
    background-color: #f0b90b;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    color: #fff;
    font-size: 14px;
    font-variant: tabular-nums;
    height: 22px;
    line-height: 1.5715;
    line-height: 22px;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    position: absolute;
    top: 8px;
    white-space: nowrap
}

.ant-ribbon-text {
    color: #fff
}

.ant-ribbon-corner {
    border: 4px solid;
    color: currentcolor;
    height: 8px;
    position: absolute;
    top: 100%;
    transform: scaleY(.75);
    transform-origin: top;
    width: 8px
}

.ant-ribbon-corner:after {
    border: inherit;
    color: rgba(0,0,0,.25);
    content: "";
    height: inherit;
    left: -4px;
    position: absolute;
    top: -4px;
    width: inherit
}

.ant-ribbon-color-magenta,.ant-ribbon-color-pink {
    background: #cb2b83;
    color: #cb2b83
}

.ant-ribbon-color-red {
    background: #d32029;
    color: #d32029
}

.ant-ribbon-color-volcano {
    background: #d84a1b;
    color: #d84a1b
}

.ant-ribbon-color-orange {
    background: #d87a16;
    color: #d87a16
}

.ant-ribbon-color-yellow {
    background: #d8bd14;
    color: #d8bd14
}

.ant-ribbon-color-gold {
    background: #d89614;
    color: #d89614
}

.ant-ribbon-color-cyan {
    background: #13a8a8;
    color: #13a8a8
}

.ant-ribbon-color-lime {
    background: #8bbb11;
    color: #8bbb11
}

.ant-ribbon-color-green {
    background: #49aa19;
    color: #49aa19
}

.ant-ribbon-color-blue {
    background: #177ddc;
    color: #177ddc
}

.ant-ribbon-color-geekblue {
    background: #2b4acb;
    color: #2b4acb
}

.ant-ribbon-color-purple {
    background: #642ab5;
    color: #642ab5
}

.ant-ribbon.ant-ribbon-placement-end {
    border-bottom-right-radius: 0;
    right: -8px
}

.ant-ribbon.ant-ribbon-placement-end .ant-ribbon-corner {
    border-color: currentcolor transparent transparent currentcolor;
    right: 0
}

.ant-ribbon.ant-ribbon-placement-start {
    border-bottom-left-radius: 0;
    left: -8px
}

.ant-ribbon.ant-ribbon-placement-start .ant-ribbon-corner {
    border-color: currentcolor currentcolor transparent transparent;
    left: 0
}

.ant-badge-rtl {
    direction: rtl
}

.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-count,.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-dot,.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component {
    direction: ltr;
    left: 0;
    right: auto;
    transform: translate(-50%,-50%);
    transform-origin: 0 0
}

.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component {
    left: 0;
    right: auto;
    transform: translate(-50%,-50%);
    transform-origin: 0 0
}

.ant-badge-rtl .ant-badge-status-text {
    margin-left: 0;
    margin-right: 8px
}

.ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-appear,.ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-enter {
    animation-name: antZoomBadgeInRtl
}

.ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-leave {
    animation-name: antZoomBadgeOutRtl
}

.ant-ribbon-rtl {
    direction: rtl
}

.ant-ribbon-rtl.ant-ribbon-placement-end {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 6px;
    left: -8px;
    right: auto
}

.ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner {
    left: 0;
    right: auto
}

.ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner,.ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner:after {
    border-color: currentcolor currentcolor transparent transparent
}

.ant-ribbon-rtl.ant-ribbon-placement-start {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 0;
    left: auto;
    right: -8px
}

.ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner {
    left: auto;
    right: 0
}

.ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner,.ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner:after {
    border-color: currentcolor transparent transparent currentcolor
}

@keyframes antZoomBadgeInRtl {
    0% {
        opacity: 0;
        transform: scale(0) translate(-50%,-50%)
    }

    to {
        transform: scale(1) translate(-50%,-50%)
    }
}

@keyframes antZoomBadgeOutRtl {
    0% {
        transform: scale(1) translate(-50%,-50%)
    }

    to {
        opacity: 0;
        transform: scale(0) translate(-50%,-50%)
    }
}

.ant-breadcrumb {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-breadcrumb .anticon {
    font-size: 14px
}

.ant-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-breadcrumb a {
    color: hsla(0,0%,100%,.45);
    transition: color .3s
}

.ant-breadcrumb a:hover,.ant-breadcrumb li:last-child,.ant-breadcrumb li:last-child a {
    color: hsla(0,0%,100%,.85)
}

li:last-child>.ant-breadcrumb-separator {
    display: none
}

.ant-breadcrumb-separator {
    color: hsla(0,0%,100%,.45);
    margin: 0 8px
}

.ant-breadcrumb-link>.anticon+a,.ant-breadcrumb-link>.anticon+span,.ant-breadcrumb-overlay-link>.anticon {
    margin-left: 4px
}

.ant-breadcrumb-rtl {
    direction: rtl
}

.ant-breadcrumb-rtl:before {
    content: "";
    display: table
}

.ant-breadcrumb-rtl:after {
    clear: both;
    content: "";
    display: table
}

.ant-breadcrumb-rtl>span {
    float: right
}

.ant-breadcrumb-rtl .ant-breadcrumb-link>.anticon+a,.ant-breadcrumb-rtl .ant-breadcrumb-link>.anticon+span,.ant-breadcrumb-rtl .ant-breadcrumb-overlay-link>.anticon {
    margin-left: 0;
    margin-right: 4px
}

.ant-btn {
    background-image: none;
    background: transparent;
    border: 1px solid #434343;
    border-radius: 6px;
    box-shadow: 0 2px 0 rgba(0,0,0,.015);
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    height: 32px;
    line-height: 1.5715;
    padding: 4px 15px;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.ant-btn>.anticon {
    line-height: 1
}

.ant-btn,.ant-btn:active,.ant-btn:focus {
    outline: 0
}

.ant-btn:not([disabled]):hover {
    text-decoration: none
}

.ant-btn:not([disabled]):active {
    box-shadow: none;
    outline: 0
}

.ant-btn[disabled] {
    cursor: not-allowed
}

.ant-btn[disabled]>* {
    pointer-events: none
}

.ant-btn-lg {
    border-radius: 3px;
    font-size: 16px;
    height: 40px;
    padding: 6.4px 15px
}

.ant-btn-sm {
    border-radius: 6px;
    font-size: 14px;
    height: 24px;
    padding: 0 7px
}

.ant-btn>a:only-child {
    color: currentcolor
}

.ant-btn>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn:focus,.ant-btn:hover {
    background: transparent;
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn:focus>a:only-child,.ant-btn:hover>a:only-child {
    color: currentcolor
}

.ant-btn:focus>a:only-child:after,.ant-btn:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn:active {
    background: transparent;
    border-color: #fc0;
    color: #fc0
}

.ant-btn:active>a:only-child {
    color: currentcolor
}

.ant-btn:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn[disabled],.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn[disabled]:active>a:only-child:after,.ant-btn[disabled]:focus>a:only-child:after,.ant-btn[disabled]:hover>a:only-child:after,.ant-btn[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn:active,.ant-btn:focus,.ant-btn:hover {
    background: transparent;
    text-decoration: none
}

.ant-btn>span {
    display: inline-block
}

.ant-btn-primary {
    background: #f0b90b;
    border-color: #f0b90b;
    box-shadow: 0 2px 0 rgba(0,0,0,.045);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12)
}

.ant-btn-primary>a:only-child {
    color: currentcolor
}

.ant-btn-primary>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-primary:focus,.ant-btn-primary:hover {
    background: #d99904;
    border-color: #d99904;
    color: #fff
}

.ant-btn-primary:focus>a:only-child,.ant-btn-primary:hover>a:only-child {
    color: currentcolor
}

.ant-btn-primary:focus>a:only-child:after,.ant-btn-primary:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-primary:active {
    background: #ffc107;
    border-color: #ffc107;
    color: #fff
}

.ant-btn-primary:active>a:only-child {
    color: currentcolor
}

.ant-btn-primary:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-primary[disabled],.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-primary[disabled]:active>a:only-child:after,.ant-btn-primary[disabled]:focus>a:only-child:after,.ant-btn-primary[disabled]:hover>a:only-child:after,.ant-btn-primary[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
    border-left-color: #bf9003;
    border-right-color: #bf9003
}

.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
    border-color: #434343
}

.ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
    border-right-color: #bf9003
}

.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
    border-right-color: #434343
}

.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
    border-left-color: #bf9003
}

.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled] {
    border-left-color: #434343
}

.ant-btn-ghost {
    background: transparent;
    border-color: #434343;
    color: hsla(0,0%,100%,.85)
}

.ant-btn-ghost>a:only-child {
    color: currentcolor
}

.ant-btn-ghost>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-ghost:focus,.ant-btn-ghost:hover {
    background: transparent;
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn-ghost:focus>a:only-child,.ant-btn-ghost:hover>a:only-child {
    color: currentcolor
}

.ant-btn-ghost:focus>a:only-child:after,.ant-btn-ghost:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-ghost:active {
    background: transparent;
    border-color: #fc0;
    color: #fc0
}

.ant-btn-ghost:active>a:only-child {
    color: currentcolor
}

.ant-btn-ghost:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-ghost[disabled]:active>a:only-child:after,.ant-btn-ghost[disabled]:focus>a:only-child:after,.ant-btn-ghost[disabled]:hover>a:only-child:after,.ant-btn-ghost[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dashed {
    background: transparent;
    border-color: #434343;
    border-style: dashed;
    color: hsla(0,0%,100%,.85)
}

.ant-btn-dashed>a:only-child {
    color: currentcolor
}

.ant-btn-dashed>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dashed:focus,.ant-btn-dashed:hover {
    background: transparent;
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn-dashed:focus>a:only-child,.ant-btn-dashed:hover>a:only-child {
    color: currentcolor
}

.ant-btn-dashed:focus>a:only-child:after,.ant-btn-dashed:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dashed:active {
    background: transparent;
    border-color: #fc0;
    color: #fc0
}

.ant-btn-dashed:active>a:only-child {
    color: currentcolor
}

.ant-btn-dashed:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dashed[disabled],.ant-btn-dashed[disabled]:active,.ant-btn-dashed[disabled]:focus,.ant-btn-dashed[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-dashed[disabled]:active>a:only-child,.ant-btn-dashed[disabled]:focus>a:only-child,.ant-btn-dashed[disabled]:hover>a:only-child,.ant-btn-dashed[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-dashed[disabled]:active>a:only-child:after,.ant-btn-dashed[disabled]:focus>a:only-child:after,.ant-btn-dashed[disabled]:hover>a:only-child:after,.ant-btn-dashed[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-danger {
    background: #a61d24;
    border-color: #a61d24;
    box-shadow: 0 2px 0 rgba(0,0,0,.045);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12)
}

.ant-btn-danger>a:only-child {
    color: currentcolor
}

.ant-btn-danger>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-danger:focus,.ant-btn-danger:hover {
    background: #800f19;
    border-color: #800f19;
    color: #fff
}

.ant-btn-danger:focus>a:only-child,.ant-btn-danger:hover>a:only-child {
    color: currentcolor
}

.ant-btn-danger:focus>a:only-child:after,.ant-btn-danger:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-danger:active {
    background: #b33b3d;
    border-color: #b33b3d;
    color: #fff
}

.ant-btn-danger:active>a:only-child {
    color: currentcolor
}

.ant-btn-danger:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-danger[disabled],.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-danger[disabled]:active>a:only-child:after,.ant-btn-danger[disabled]:focus>a:only-child:after,.ant-btn-danger[disabled]:hover>a:only-child:after,.ant-btn-danger[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-link {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #f0b90b
}

.ant-btn-link>a:only-child {
    color: currentcolor
}

.ant-btn-link>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-link:focus,.ant-btn-link:hover {
    background: transparent;
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn-link:focus>a:only-child,.ant-btn-link:hover>a:only-child {
    color: currentcolor
}

.ant-btn-link:focus>a:only-child:after,.ant-btn-link:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-link:active {
    background: transparent;
    border-color: #fc0;
    color: #fc0
}

.ant-btn-link:active>a:only-child {
    color: currentcolor
}

.ant-btn-link:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-link[disabled],.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343
}

.ant-btn-link:hover {
    background: transparent
}

.ant-btn-link:active,.ant-btn-link:focus,.ant-btn-link:hover {
    border-color: transparent
}

.ant-btn-link[disabled],.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-link[disabled]:active>a:only-child:after,.ant-btn-link[disabled]:focus>a:only-child:after,.ant-btn-link[disabled]:hover>a:only-child:after,.ant-btn-link[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-text {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: hsla(0,0%,100%,.85)
}

.ant-btn-text>a:only-child {
    color: currentcolor
}

.ant-btn-text>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-text:focus,.ant-btn-text:hover {
    background: transparent;
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn-text:focus>a:only-child,.ant-btn-text:hover>a:only-child {
    color: currentcolor
}

.ant-btn-text:focus>a:only-child:after,.ant-btn-text:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-text:active {
    background: transparent;
    border-color: #fc0;
    color: #fc0
}

.ant-btn-text:active>a:only-child {
    color: currentcolor
}

.ant-btn-text:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-text[disabled],.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343
}

.ant-btn-text:focus,.ant-btn-text:hover {
    background: hsla(0,0%,100%,.03);
    border-color: transparent;
    color: hsla(0,0%,100%,.85)
}

.ant-btn-text:active {
    background: hsla(0,0%,100%,.04);
    border-color: transparent;
    color: hsla(0,0%,100%,.85)
}

.ant-btn-text[disabled],.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-text[disabled]:active>a:only-child:after,.ant-btn-text[disabled]:focus>a:only-child:after,.ant-btn-text[disabled]:hover>a:only-child:after,.ant-btn-text[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous {
    background: transparent;
    border-color: #a61d24;
    color: #a61d24
}

.ant-btn-dangerous>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous:focus,.ant-btn-dangerous:hover {
    background: transparent;
    border-color: #800f19;
    color: #800f19
}

.ant-btn-dangerous:focus>a:only-child,.ant-btn-dangerous:hover>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous:focus>a:only-child:after,.ant-btn-dangerous:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous:active {
    background: transparent;
    border-color: #b33b3d;
    color: #b33b3d
}

.ant-btn-dangerous:active>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous[disabled],.ant-btn-dangerous[disabled]:active,.ant-btn-dangerous[disabled]:focus,.ant-btn-dangerous[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-dangerous[disabled]:active>a:only-child,.ant-btn-dangerous[disabled]:focus>a:only-child,.ant-btn-dangerous[disabled]:hover>a:only-child,.ant-btn-dangerous[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous[disabled]:active>a:only-child:after,.ant-btn-dangerous[disabled]:focus>a:only-child:after,.ant-btn-dangerous[disabled]:hover>a:only-child:after,.ant-btn-dangerous[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-primary {
    background: #a61d24;
    border-color: #a61d24;
    box-shadow: 0 2px 0 rgba(0,0,0,.045);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12)
}

.ant-btn-dangerous.ant-btn-primary>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-primary>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-primary:focus,.ant-btn-dangerous.ant-btn-primary:hover {
    background: #800f19;
    border-color: #800f19;
    color: #fff
}

.ant-btn-dangerous.ant-btn-primary:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary:hover>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-primary:focus>a:only-child:after,.ant-btn-dangerous.ant-btn-primary:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-primary:active {
    background: #b33b3d;
    border-color: #b33b3d;
    color: #fff
}

.ant-btn-dangerous.ant-btn-primary:active>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-primary:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child:after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child:after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child:after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-link {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #a61d24
}

.ant-btn-dangerous.ant-btn-link>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-link>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-dangerous.ant-btn-link:hover {
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn-dangerous.ant-btn-link:active {
    border-color: #fc0;
    color: #fc0
}

.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343
}

.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-dangerous.ant-btn-link:hover {
    background: transparent;
    border-color: transparent;
    color: #800f19
}

.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-dangerous.ant-btn-link:hover>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-link:focus>a:only-child:after,.ant-btn-dangerous.ant-btn-link:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-link:active {
    background: transparent;
    border-color: transparent;
    color: #b33b3d
}

.ant-btn-dangerous.ant-btn-link:active>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-link:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child:after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child:after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child:after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-text {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #a61d24
}

.ant-btn-dangerous.ant-btn-text>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-text>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-text:focus,.ant-btn-dangerous.ant-btn-text:hover {
    background: transparent;
    border-color: #bf9003;
    color: #bf9003
}

.ant-btn-dangerous.ant-btn-text:active {
    background: transparent;
    border-color: #fc0;
    color: #fc0
}

.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343
}

.ant-btn-dangerous.ant-btn-text:focus,.ant-btn-dangerous.ant-btn-text:hover {
    background: hsla(0,0%,100%,.03);
    border-color: transparent;
    color: #800f19
}

.ant-btn-dangerous.ant-btn-text:focus>a:only-child,.ant-btn-dangerous.ant-btn-text:hover>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-text:focus>a:only-child:after,.ant-btn-dangerous.ant-btn-text:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-text:active {
    background: hsla(0,0%,100%,.04);
    border-color: transparent;
    color: #b33b3d
}

.ant-btn-dangerous.ant-btn-text:active>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-text:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child:after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child:after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child:after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-icon-only {
    border-radius: 6px;
    font-size: 16px;
    height: 32px;
    padding: 2.4px 0;
    vertical-align: -3px;
    width: 32px
}

.ant-btn-icon-only>* {
    font-size: 16px
}

.ant-btn-icon-only.ant-btn-lg {
    border-radius: 3px;
    font-size: 18px;
    height: 40px;
    padding: 4.9px 0;
    width: 40px
}

.ant-btn-icon-only.ant-btn-lg>* {
    font-size: 18px
}

.ant-btn-icon-only.ant-btn-sm {
    border-radius: 6px;
    font-size: 14px;
    height: 24px;
    padding: 0;
    width: 24px
}

.ant-btn-icon-only.ant-btn-sm>* {
    font-size: 14px
}

.ant-btn-icon-only>.anticon {
    display: flex;
    justify-content: center
}

.ant-btn-icon-only .anticon-loading {
    padding: 0!important
}

a.ant-btn-icon-only {
    vertical-align: -1px
}

a.ant-btn-icon-only>.anticon {
    display: inline
}

.ant-btn-round {
    border-radius: 32px;
    font-size: 14px;
    height: 32px;
    padding: 4px 16px
}

.ant-btn-round.ant-btn-lg {
    border-radius: 40px;
    font-size: 16px;
    height: 40px;
    padding: 6.4px 20px
}

.ant-btn-round.ant-btn-sm {
    border-radius: 24px;
    font-size: 14px;
    height: 24px;
    padding: 0 12px
}

.ant-btn-round.ant-btn-icon-only {
    width: auto
}

.ant-btn-circle {
    border-radius: 50%;
    min-width: 32px;
    padding-left: 0;
    padding-right: 0;
    text-align: center
}

.ant-btn-circle.ant-btn-lg {
    border-radius: 50%;
    min-width: 40px
}

.ant-btn-circle.ant-btn-sm {
    border-radius: 50%;
    min-width: 24px
}

.ant-btn:before {
    background: #141414;
    border-radius: inherit;
    bottom: -1px;
    content: "";
    display: none;
    left: -1px;
    opacity: .35;
    pointer-events: none;
    position: absolute;
    right: -1px;
    top: -1px;
    transition: opacity .2s;
    z-index: 1
}

.ant-btn .anticon {
    transition: margin-left .3s cubic-bezier(.645,.045,.355,1)
}

.ant-btn .anticon.anticon-minus>svg,.ant-btn .anticon.anticon-plus>svg {
    shape-rendering: optimizespeed
}

.ant-btn.ant-btn-loading {
    cursor: default;
    position: relative
}

.ant-btn.ant-btn-loading:before {
    display: block
}

.ant-btn>.ant-btn-loading-icon {
    transition: width .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1)
}

.ant-btn>.ant-btn-loading-icon .anticon {
    animation: none;
    padding-right: 8px
}

.ant-btn>.ant-btn-loading-icon .anticon svg {
    animation: loadingCircle 1s linear infinite
}

.ant-btn-group {
    display: inline-flex
}

.ant-btn-group,.ant-btn-group>.ant-btn,.ant-btn-group>span>.ant-btn {
    position: relative
}

.ant-btn-group>.ant-btn:active,.ant-btn-group>.ant-btn:focus,.ant-btn-group>.ant-btn:hover,.ant-btn-group>span>.ant-btn:active,.ant-btn-group>span>.ant-btn:focus,.ant-btn-group>span>.ant-btn:hover {
    z-index: 2
}

.ant-btn-group>.ant-btn[disabled],.ant-btn-group>span>.ant-btn[disabled] {
    z-index: 0
}

.ant-btn-group .ant-btn-icon-only {
    font-size: 14px
}

.ant-btn+.ant-btn-group,.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group .ant-btn+span,.ant-btn-group span+.ant-btn,.ant-btn-group+.ant-btn,.ant-btn-group+.ant-btn-group,.ant-btn-group>span+span {
    margin-left: -1px
}

.ant-btn-group .ant-btn-primary+.ant-btn:not(.ant-btn-primary):not([disabled]) {
    border-left-color: transparent
}

.ant-btn-group .ant-btn {
    border-radius: 0
}

.ant-btn-group>.ant-btn:first-child,.ant-btn-group>span:first-child>.ant-btn {
    margin-left: 0
}

.ant-btn-group>.ant-btn:only-child,.ant-btn-group>span:only-child>.ant-btn {
    border-radius: 6px
}

.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group>span:first-child:not(:last-child)>.ant-btn {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group>span:last-child:not(:first-child)>.ant-btn {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.ant-btn-group-sm>.ant-btn:only-child,.ant-btn-group-sm>span:only-child>.ant-btn {
    border-radius: 6px
}

.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.ant-btn-group>.ant-btn-group {
    float: left
}

.ant-btn-group>.ant-btn-group:not(:first-child):not(:last-child)>.ant-btn {
    border-radius: 0
}

.ant-btn-group>.ant-btn-group:first-child:not(:last-child)>.ant-btn:last-child {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding-right: 8px
}

.ant-btn-group>.ant-btn-group:last-child:not(:first-child)>.ant-btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding-left: 8px
}

.ant-btn-group-rtl.ant-btn+.ant-btn-group,.ant-btn-group-rtl.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group-rtl.ant-btn-group .ant-btn+span,.ant-btn-group-rtl.ant-btn-group span+.ant-btn,.ant-btn-group-rtl.ant-btn-group+.ant-btn,.ant-btn-group-rtl.ant-btn-group+.ant-btn-group,.ant-btn-group-rtl.ant-btn-group>span+span,.ant-btn-rtl.ant-btn+.ant-btn-group,.ant-btn-rtl.ant-btn-group .ant-btn+.ant-btn,.ant-btn-rtl.ant-btn-group .ant-btn+span,.ant-btn-rtl.ant-btn-group span+.ant-btn,.ant-btn-rtl.ant-btn-group+.ant-btn,.ant-btn-rtl.ant-btn-group+.ant-btn-group,.ant-btn-rtl.ant-btn-group>span+span {
    margin-left: auto;
    margin-right: -1px
}

.ant-btn-group.ant-btn-group-rtl {
    direction: rtl
}

.ant-btn-group-rtl.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group-rtl.ant-btn-group>span:first-child:not(:last-child)>.ant-btn {
    border-radius: 0 6px 6px 0
}

.ant-btn-group-rtl.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group-rtl.ant-btn-group>span:last-child:not(:first-child)>.ant-btn {
    border-radius: 6px 0 0 6px
}

.ant-btn-group-rtl.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-rtl.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn {
    border-radius: 0 6px 6px 0
}

.ant-btn-group-rtl.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-rtl.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn {
    border-radius: 6px 0 0 6px
}

.ant-btn:active>span,.ant-btn:focus>span {
    position: relative
}

.ant-btn>.anticon+span,.ant-btn>span+.anticon {
    margin-left: 8px
}

.ant-btn.ant-btn-background-ghost {
    border-color: hsla(0,0%,100%,.25);
    color: hsla(0,0%,100%,.85)
}

.ant-btn.ant-btn-background-ghost,.ant-btn.ant-btn-background-ghost:active,.ant-btn.ant-btn-background-ghost:focus,.ant-btn.ant-btn-background-ghost:hover {
    background: transparent
}

.ant-btn.ant-btn-background-ghost:focus,.ant-btn.ant-btn-background-ghost:hover {
    border-color: #ffc107;
    color: #ffc107
}

.ant-btn.ant-btn-background-ghost:active {
    border-color: #d99904;
    color: #d99904
}

.ant-btn.ant-btn-background-ghost[disabled] {
    background: transparent;
    border-color: #434343;
    color: hsla(0,0%,100%,.3)
}

.ant-btn-background-ghost.ant-btn-primary {
    border-color: #f0b90b;
    color: #f0b90b;
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-primary>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-primary>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-primary:focus,.ant-btn-background-ghost.ant-btn-primary:hover {
    border-color: #d99904;
    color: #d99904
}

.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-primary:active {
    border-color: #ffc107;
    color: #ffc107
}

.ant-btn-background-ghost.ant-btn-primary:active>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-primary:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-primary[disabled],.ant-btn-background-ghost.ant-btn-primary[disabled]:active,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-danger {
    border-color: #a61d24;
    color: #a61d24;
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-danger>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-danger>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-danger:focus,.ant-btn-background-ghost.ant-btn-danger:hover {
    border-color: #800f19;
    color: #800f19
}

.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-danger:active {
    border-color: #b33b3d;
    color: #b33b3d
}

.ant-btn-background-ghost.ant-btn-danger:active>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-danger:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous {
    border-color: #a61d24;
    color: #a61d24;
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-dangerous>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous:focus,.ant-btn-background-ghost.ant-btn-dangerous:hover {
    border-color: #800f19;
    color: #800f19
}

.ant-btn-background-ghost.ant-btn-dangerous:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous:hover>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous:active {
    border-color: #b33b3d;
    color: #b33b3d
}

.ant-btn-background-ghost.ant-btn-dangerous:active>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous[disabled],.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
    border-color: transparent;
    color: #a61d24;
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover {
    border-color: transparent;
    color: #800f19
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
    border-color: transparent;
    color: #b33b3d
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child {
    color: currentcolor
}

.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-btn-two-chinese-chars:first-letter {
    letter-spacing: .34em
}

.ant-btn-two-chinese-chars>:not(.anticon) {
    letter-spacing: .34em;
    margin-right: -.34em
}

.ant-btn.ant-btn-block {
    width: 100%
}

.ant-btn:empty {
    content: "\a0";
    display: inline-block;
    visibility: hidden;
    width: 0
}

a.ant-btn {
    line-height: 30px;
    padding-top: .01px!important
}

a.ant-btn-disabled {
    cursor: not-allowed
}

a.ant-btn-disabled>* {
    pointer-events: none
}

a.ant-btn-disabled,a.ant-btn-disabled:active,a.ant-btn-disabled:focus,a.ant-btn-disabled:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    text-shadow: none
}

a.ant-btn-disabled:active>a:only-child,a.ant-btn-disabled:focus>a:only-child,a.ant-btn-disabled:hover>a:only-child,a.ant-btn-disabled>a:only-child {
    color: currentcolor
}

a.ant-btn-disabled:active>a:only-child:after,a.ant-btn-disabled:focus>a:only-child:after,a.ant-btn-disabled:hover>a:only-child:after,a.ant-btn-disabled>a:only-child:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

a.ant-btn-lg {
    line-height: 38px
}

a.ant-btn-sm {
    line-height: 22px
}

.ant-btn-rtl {
    direction: rtl
}

.ant-btn-group-rtl.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
    border-left-color: #434343;
    border-right-color: #bf9003
}

.ant-btn-group-rtl.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled] {
    border-left-color: #bf9003;
    border-right-color: #434343
}

.ant-btn-rtl.ant-btn>.ant-btn-loading-icon .anticon {
    padding-left: 8px;
    padding-right: 0
}

.ant-btn-rtl.ant-btn>.anticon+span,.ant-btn-rtl.ant-btn>span+.anticon {
    margin-left: 0;
    margin-right: 8px
}

.ant-picker-calendar {
    font-feature-settings: "tnum","tnum";
    background: #141414;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-picker-calendar-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px 0
}

.ant-picker-calendar-header .ant-picker-calendar-year-select {
    min-width: 80px
}

.ant-picker-calendar-header .ant-picker-calendar-month-select {
    margin-left: 8px;
    min-width: 70px
}

.ant-picker-calendar-header .ant-picker-calendar-mode-switch {
    margin-left: 8px
}

.ant-picker-calendar .ant-picker-panel {
    background: #141414;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #303030
}

.ant-picker-calendar .ant-picker-panel .ant-picker-date-panel,.ant-picker-calendar .ant-picker-panel .ant-picker-month-panel {
    width: auto
}

.ant-picker-calendar .ant-picker-panel .ant-picker-body {
    padding: 8px 0
}

.ant-picker-calendar .ant-picker-panel .ant-picker-content {
    width: 100%
}

.ant-picker-calendar-mini {
    border-radius: 6px
}

.ant-picker-calendar-mini .ant-picker-calendar-header {
    padding-left: 8px;
    padding-right: 8px
}

.ant-picker-calendar-mini .ant-picker-panel {
    border-radius: 0 0 6px 6px
}

.ant-picker-calendar-mini .ant-picker-content {
    height: 256px
}

.ant-picker-calendar-mini .ant-picker-content th {
    height: auto;
    line-height: 18px;
    padding: 0
}

.ant-picker-calendar-mini .ant-picker-cell:before {
    pointer-events: none
}

.ant-picker-calendar-full .ant-picker-panel {
    background: #141414;
    border: 0;
    display: block;
    text-align: right;
    width: 100%
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-body td,.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th {
    padding: 0
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th {
    height: auto;
    line-height: 18px;
    padding: 0 12px 5px 0
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell:before {
    display: none
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell:hover .ant-picker-calendar-date {
    background: hsla(0,0%,100%,.08)
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell .ant-picker-calendar-date-today:before {
    display: none
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date,.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date-today,.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date,.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date-today {
    background: #111e28
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date .ant-picker-calendar-date-value,.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date-today .ant-picker-calendar-date-value,.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date .ant-picker-calendar-date-value,.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date-today .ant-picker-calendar-date-value {
    color: #f0b90b
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date {
    border: 0;
    border-radius: 0;
    border-top: 2px solid #303030;
    display: block;
    height: auto;
    margin: 0 4px;
    padding: 4px 8px 0;
    transition: background .3s;
    width: auto
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-value {
    line-height: 24px;
    transition: color .3s
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content {
    color: hsla(0,0%,100%,.85);
    height: 86px;
    line-height: 1.5715;
    overflow-y: auto;
    position: static;
    text-align: left;
    width: auto
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today {
    border-color: #f0b90b
}

.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today .ant-picker-calendar-date-value {
    color: hsla(0,0%,100%,.85)
}

@media only screen and (max-width: 480px) {
    .ant-picker-calendar-header {
        display:block
    }

    .ant-picker-calendar-header .ant-picker-calendar-year-select {
        width: 50%
    }

    .ant-picker-calendar-header .ant-picker-calendar-month-select {
        width: calc(50% - 8px)
    }

    .ant-picker-calendar-header .ant-picker-calendar-mode-switch {
        margin-left: 0;
        margin-top: 8px;
        width: 100%
    }

    .ant-picker-calendar-header .ant-picker-calendar-mode-switch>label {
        text-align: center;
        width: 50%
    }
}

.ant-picker-calendar-rtl {
    direction: rtl
}

.ant-picker-calendar-rtl .ant-picker-calendar-header .ant-picker-calendar-mode-switch,.ant-picker-calendar-rtl .ant-picker-calendar-header .ant-picker-calendar-month-select {
    margin-left: 0;
    margin-right: 8px
}

.ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel {
    text-align: left
}

.ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th {
    padding: 0 0 5px 12px
}

.ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content {
    text-align: right
}

.ant-card {
    font-feature-settings: "tnum","tnum";
    background: #141414;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.ant-card-rtl {
    direction: rtl
}

.ant-card-hoverable {
    cursor: pointer;
    transition: box-shadow .3s,border-color .3s
}

.ant-card-hoverable:hover {
    border-color: transparent;
    box-shadow: 0 1px 2px -2px rgba(0,0,0,.64),0 3px 6px 0 rgba(0,0,0,.48),0 5px 12px 4px rgba(0,0,0,.36)
}

.ant-card-bordered {
    border: 1px solid #303030
}

.ant-card-head {
    background: transparent;
    border-bottom: 1px solid #303030;
    border-radius: 6px 6px 0 0;
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: -1px;
    min-height: 48px;
    padding: 0 24px
}

.ant-card-head:after,.ant-card-head:before {
    content: "";
    display: table
}

.ant-card-head:after {
    clear: both
}

.ant-card-head-wrapper {
    align-items: center;
    display: flex
}

.ant-card-head-title {
    display: inline-block;
    flex: 1 1;
    overflow: hidden;
    padding: 16px 0;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-card-head-title>.ant-typography,.ant-card-head-title>.ant-typography-edit-content {
    left: 0;
    margin-bottom: 0;
    margin-top: 0
}

.ant-card-head .ant-tabs-top {
    clear: both;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: -17px
}

.ant-card-head .ant-tabs-top-bar {
    border-bottom: 1px solid #303030
}

.ant-card-extra {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-weight: 400;
    margin-left: auto;
    padding: 16px 0
}

.ant-card-rtl .ant-card-extra {
    margin-left: 0;
    margin-right: auto
}

.ant-card-body {
    padding: 24px
}

.ant-card-body:after,.ant-card-body:before {
    content: "";
    display: table
}

.ant-card-body:after {
    clear: both
}

.ant-card-contain-grid .ant-card-body {
    display: flex;
    flex-wrap: wrap
}

.ant-card-contain-grid:not(.ant-card-loading) .ant-card-body {
    margin: -1px 0 0 -1px;
    padding: 0
}

.ant-card-grid {
    border: 0;
    border-radius: 0;
    box-shadow: 1px 0 0 0 #303030,0 1px 0 0 #303030,1px 1px 0 0 #303030,inset 1px 0 0 0 #303030,inset 0 1px 0 0 #303030;
    padding: 24px;
    transition: all .3s;
    width: 33.33%
}

.ant-card-grid-hoverable:hover {
    box-shadow: 0 1px 2px -2px rgba(0,0,0,.64),0 3px 6px 0 rgba(0,0,0,.48),0 5px 12px 4px rgba(0,0,0,.36);
    position: relative;
    z-index: 1
}

.ant-card-contain-tabs>.ant-card-head .ant-card-head-title {
    min-height: 32px;
    padding-bottom: 0
}

.ant-card-contain-tabs>.ant-card-head .ant-card-extra {
    padding-bottom: 0
}

.ant-card-bordered .ant-card-cover {
    margin-left: -1px;
    margin-right: -1px;
    margin-top: -1px
}

.ant-card-cover>* {
    display: block;
    width: 100%
}

.ant-card-cover img {
    border-radius: 6px 6px 0 0
}

.ant-card-actions {
    background: #141414;
    border-top: 1px solid #303030;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-card-actions:after,.ant-card-actions:before {
    content: "";
    display: table
}

.ant-card-actions:after {
    clear: both
}

.ant-card-actions>li {
    color: hsla(0,0%,100%,.45);
    margin: 12px 0;
    text-align: center
}

.ant-card-actions>li>span {
    cursor: pointer;
    display: block;
    font-size: 14px;
    line-height: 1.5715;
    min-width: 32px;
    position: relative
}

.ant-card-actions>li>span:hover {
    color: #f0b90b;
    transition: color .3s
}

.ant-card-actions>li>span a:not(.ant-btn),.ant-card-actions>li>span>.anticon {
    color: hsla(0,0%,100%,.45);
    display: inline-block;
    line-height: 22px;
    transition: color .3s;
    width: 100%
}

.ant-card-actions>li>span a:not(.ant-btn):hover,.ant-card-actions>li>span>.anticon:hover {
    color: #f0b90b
}

.ant-card-actions>li>span>.anticon {
    font-size: 16px;
    line-height: 22px
}

.ant-card-actions>li:not(:last-child) {
    border-right: 1px solid #303030
}

.ant-card-rtl .ant-card-actions>li:not(:last-child) {
    border-left: 1px solid #303030;
    border-right: none
}

.ant-card-type-inner .ant-card-head {
    background: hsla(0,0%,100%,.04);
    padding: 0 24px
}

.ant-card-type-inner .ant-card-head-title {
    font-size: 14px;
    padding: 12px 0
}

.ant-card-type-inner .ant-card-body {
    padding: 16px 24px
}

.ant-card-type-inner .ant-card-extra {
    padding: 13.5px 0
}

.ant-card-meta {
    display: flex;
    margin: -4px 0
}

.ant-card-meta:after,.ant-card-meta:before {
    content: "";
    display: table
}

.ant-card-meta:after {
    clear: both
}

.ant-card-meta-avatar {
    padding-right: 16px
}

.ant-card-rtl .ant-card-meta-avatar {
    padding-left: 16px;
    padding-right: 0
}

.ant-card-meta-detail {
    overflow: hidden
}

.ant-card-meta-detail>div:not(:last-child) {
    margin-bottom: 8px
}

.ant-card-meta-title {
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-card-meta-description {
    color: hsla(0,0%,100%,.45)
}

.ant-card-loading {
    overflow: hidden
}

.ant-card-loading .ant-card-body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-card-small>.ant-card-head {
    font-size: 14px;
    min-height: 36px;
    padding: 0 12px
}

.ant-card-small>.ant-card-head>.ant-card-head-wrapper>.ant-card-head-title {
    padding: 8px 0
}

.ant-card-small>.ant-card-head>.ant-card-head-wrapper>.ant-card-extra {
    font-size: 14px;
    padding: 8px 0
}

.ant-card-small>.ant-card-body {
    padding: 12px
}

.ant-carousel {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-carousel .slick-slider {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    display: block;
    position: relative;
    touch-action: pan-y
}

.ant-carousel .slick-list {
    display: block;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative
}

.ant-carousel .slick-list:focus {
    outline: none
}

.ant-carousel .slick-list.dragging {
    cursor: pointer
}

.ant-carousel .slick-list .slick-slide {
    pointer-events: none
}

.ant-carousel .slick-list .slick-slide input.ant-checkbox-input,.ant-carousel .slick-list .slick-slide input.ant-radio-input {
    visibility: hidden
}

.ant-carousel .slick-list .slick-slide.slick-active {
    pointer-events: auto
}

.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input,.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input {
    visibility: visible
}

.ant-carousel .slick-list .slick-slide>div>div {
    vertical-align: bottom
}

.ant-carousel .slick-slider .slick-list,.ant-carousel .slick-slider .slick-track {
    touch-action: pan-y;
    transform: translateZ(0)
}

.ant-carousel .slick-track {
    display: block;
    left: 0;
    position: relative;
    top: 0
}

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

.ant-carousel .slick-track:after {
    clear: both
}

.slick-loading .ant-carousel .slick-track {
    visibility: hidden
}

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

.ant-carousel .slick-slide img {
    display: block
}

.ant-carousel .slick-slide.slick-loading img {
    display: none
}

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

.ant-carousel .slick-initialized .slick-slide {
    display: block
}

.ant-carousel .slick-loading .slick-slide {
    visibility: hidden
}

.ant-carousel .slick-vertical .slick-slide {
    display: block;
    height: auto
}

.ant-carousel .slick-arrow.slick-hidden {
    display: none
}

.ant-carousel .slick-next,.ant-carousel .slick-prev {
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    margin-top: -10px;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 20px
}

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

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

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

.ant-carousel .slick-prev {
    left: -25px
}

.ant-carousel .slick-prev:before {
    content: "←"
}

.ant-carousel .slick-next {
    right: -25px
}

.ant-carousel .slick-next:before {
    content: "→"
}

.ant-carousel .slick-dots {
    bottom: 0;
    display: flex!important;
    justify-content: center;
    left: 0;
    list-style: none;
    margin-left: 15%;
    margin-right: 15%;
    padding-left: 0;
    position: absolute;
    right: 0;
    z-index: 15
}

.ant-carousel .slick-dots-bottom {
    bottom: 12px
}

.ant-carousel .slick-dots-top {
    bottom: auto;
    top: 12px
}

.ant-carousel .slick-dots li {
    box-sizing: content-box;
    display: inline-block;
    flex: 0 1 auto;
    height: 3px;
    margin: 0 3px;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: -999px;
    transition: all .5s;
    vertical-align: top;
    width: 16px
}

.ant-carousel .slick-dots li button {
    background: #141414;
    border: 0;
    border-radius: 1px;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 3px;
    opacity: .3;
    outline: none;
    padding: 0;
    transition: all .5s;
    width: 100%
}

.ant-carousel .slick-dots li button:focus,.ant-carousel .slick-dots li button:hover {
    opacity: .75
}

.ant-carousel .slick-dots li.slick-active {
    width: 24px
}

.ant-carousel .slick-dots li.slick-active button {
    background: #141414;
    opacity: 1
}

.ant-carousel .slick-dots li.slick-active:focus,.ant-carousel .slick-dots li.slick-active:hover {
    opacity: 1
}

.ant-carousel-vertical .slick-dots {
    bottom: auto;
    flex-direction: column;
    height: auto;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px
}

.ant-carousel-vertical .slick-dots-left {
    left: 12px;
    right: auto
}

.ant-carousel-vertical .slick-dots-right {
    left: auto;
    right: 12px
}

.ant-carousel-vertical .slick-dots li {
    height: 16px;
    margin: 4px 2px;
    vertical-align: baseline;
    width: 3px
}

.ant-carousel-vertical .slick-dots li button {
    height: 16px;
    width: 3px
}

.ant-carousel-vertical .slick-dots li.slick-active,.ant-carousel-vertical .slick-dots li.slick-active button {
    height: 24px;
    width: 3px
}

.ant-carousel-rtl {
    direction: rtl
}

.ant-carousel-rtl .ant-carousel .slick-track {
    left: auto;
    right: 0
}

.ant-carousel-rtl .ant-carousel .slick-prev {
    left: auto;
    right: -25px
}

.ant-carousel-rtl .ant-carousel .slick-prev:before {
    content: "→"
}

.ant-carousel-rtl .ant-carousel .slick-next {
    left: -25px;
    right: auto
}

.ant-carousel-rtl .ant-carousel .slick-next:before {
    content: "←"
}

.ant-carousel-rtl.ant-carousel .slick-dots {
    flex-direction: row-reverse
}

.ant-carousel-rtl.ant-carousel-vertical .slick-dots {
    flex-direction: column
}

@keyframes antCheckboxEffect {
    0% {
        opacity: .5;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(1.6)
    }
}

.ant-cascader-checkbox {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: 1;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    top: .2em;
    white-space: nowrap
}

.ant-cascader-checkbox-input:focus+.ant-cascader-checkbox-inner,.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner,.ant-cascader-checkbox:hover .ant-cascader-checkbox-inner {
    border-color: #f0b90b
}

.ant-cascader-checkbox-checked:after {
    animation: antCheckboxEffect .36s ease-in-out;
    animation-fill-mode: backwards;
    border: 1px solid #f0b90b;
    border-radius: 6px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%
}

.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox:after,.ant-cascader-checkbox:hover:after {
    visibility: visible
}

.ant-cascader-checkbox-inner {
    background-color: transparent;
    border: 1px solid #434343;
    border-collapse: separate;
    border-radius: 6px;
    direction: ltr;
    display: block;
    height: 16px;
    left: 0;
    position: relative;
    top: 0;
    transition: all .3s;
    width: 16px
}

.ant-cascader-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    height: 9.14285714px;
    left: 21.5%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) scale(0) translate(-50%,-50%);
    transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
    width: 5.71428571px
}

.ant-cascader-checkbox-input {
    bottom: 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    opacity: 1;
    position: absolute;
    transform: rotate(45deg) scale(1) translate(-50%,-50%);
    transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s
}

.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner {
    background-color: #f0b90b;
    border-color: #f0b90b
}

.ant-cascader-checkbox-disabled {
    cursor: not-allowed
}

.ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner:after {
    animation-name: none;
    border-color: hsla(0,0%,100%,.3)
}

.ant-cascader-checkbox-disabled .ant-cascader-checkbox-input {
    cursor: not-allowed;
    pointer-events: none
}

.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343!important
}

.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner:after {
    animation-name: none;
    border-collapse: separate;
    border-color: hsla(0,0%,100%,.08)
}

.ant-cascader-checkbox-disabled+span {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-cascader-checkbox-disabled:hover:after,.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-disabled:after {
    visibility: hidden
}

.ant-cascader-checkbox-wrapper {
    font-feature-settings: "tnum","tnum";
    align-items: baseline;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: inherit;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-cascader-checkbox-wrapper:after {
    content: "\a0";
    display: inline-block;
    overflow: hidden;
    width: 0
}

.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-disabled {
    cursor: not-allowed
}

.ant-cascader-checkbox-wrapper+.ant-cascader-checkbox-wrapper {
    margin-left: 8px
}

.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-in-form-item input[type=checkbox] {
    height: 14px;
    width: 14px
}

.ant-cascader-checkbox+span {
    padding-left: 8px;
    padding-right: 8px
}

.ant-cascader-checkbox-group {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-cascader-checkbox-group-item {
    margin-right: 8px
}

.ant-cascader-checkbox-group-item:last-child {
    margin-right: 0
}

.ant-cascader-checkbox-group-item+.ant-cascader-checkbox-group-item {
    margin-left: 0
}

.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner {
    background-color: transparent;
    border-color: #434343
}

.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner:after {
    background-color: #f0b90b;
    border: 0;
    content: " ";
    height: 8px;
    left: 50%;
    opacity: 1;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 8px
}

.ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner:after {
    background-color: hsla(0,0%,100%,.3);
    border-color: hsla(0,0%,100%,.3)
}

.ant-cascader-checkbox-rtl {
    direction: rtl
}

.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item {
    margin-left: 8px;
    margin-right: 0
}

.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item:last-child {
    margin-left: 0!important
}

.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item+.ant-cascader-checkbox-group-item {
    margin-left: 8px
}

.ant-cascader {
    width: 184px
}

.ant-cascader-checkbox {
    margin-right: 8px;
    top: 0
}

.ant-cascader-menus {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap
}

.ant-cascader-menus.ant-cascader-menu-empty .ant-cascader-menu {
    height: auto;
    width: 100%
}

.ant-cascader-menu {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border-right: 1px solid #303030;
    flex-grow: 1;
    height: 180px;
    list-style: none;
    margin: -4px 0;
    min-width: 111px;
    overflow: auto;
    padding: 4px 0;
    vertical-align: top
}

.ant-cascader-menu-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    line-height: 22px;
    overflow: hidden;
    padding: 5px 12px;
    text-overflow: ellipsis;
    transition: all .3s;
    white-space: nowrap
}

.ant-cascader-menu-item:hover {
    background: hsla(0,0%,100%,.08)
}

.ant-cascader-menu-item-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-cascader-menu-item-disabled:hover {
    background: transparent
}

.ant-cascader-menu-empty .ant-cascader-menu-item {
    color: hsla(0,0%,100%,.3);
    cursor: default;
    pointer-events: none
}

.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
    background-color: #111e28;
    font-weight: 600
}

.ant-cascader-menu-item-content {
    flex: auto
}

.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,.ant-cascader-menu-item-loading-icon {
    color: hsla(0,0%,100%,.45);
    font-size: 10px;
    margin-left: 4px
}

.ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon {
    color: hsla(0,0%,100%,.3)
}

.ant-cascader-menu-item-keyword {
    color: #a61d24
}

.ant-cascader-rtl .ant-cascader-menu-item-expand-icon,.ant-cascader-rtl .ant-cascader-menu-item-loading-icon {
    margin-left: 0;
    margin-right: 4px
}

.ant-cascader-rtl .ant-cascader-checkbox {
    margin-left: 8px;
    margin-right: 0;
    top: 0
}

.ant-checkbox {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: 1;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    top: .2em;
    white-space: nowrap
}

.ant-checkbox-input:focus+.ant-checkbox-inner,.ant-checkbox-wrapper:hover .ant-checkbox-inner,.ant-checkbox:hover .ant-checkbox-inner {
    border-color: #f0b90b
}

.ant-checkbox-checked:after {
    animation: antCheckboxEffect .36s ease-in-out;
    animation-fill-mode: backwards;
    border: 1px solid #f0b90b;
    border-radius: 6px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%
}

.ant-checkbox-wrapper:hover .ant-checkbox:after,.ant-checkbox:hover:after {
    visibility: visible
}

.ant-checkbox-inner {
    background-color: transparent;
    border: 1px solid #434343;
    border-collapse: separate;
    border-radius: 6px;
    direction: ltr;
    display: block;
    height: 16px;
    left: 0;
    position: relative;
    top: 0;
    transition: all .3s;
    width: 16px
}

.ant-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    height: 9.14285714px;
    left: 21.5%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) scale(0) translate(-50%,-50%);
    transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
    width: 5.71428571px
}

.ant-checkbox-input {
    bottom: 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

.ant-checkbox-checked .ant-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    opacity: 1;
    position: absolute;
    transform: rotate(45deg) scale(1) translate(-50%,-50%);
    transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s
}

.ant-checkbox-checked .ant-checkbox-inner {
    background-color: #f0b90b;
    border-color: #f0b90b
}

.ant-checkbox-disabled {
    cursor: not-allowed
}

.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
    animation-name: none;
    border-color: hsla(0,0%,100%,.3)
}

.ant-checkbox-disabled .ant-checkbox-input {
    cursor: not-allowed;
    pointer-events: none
}

.ant-checkbox-disabled .ant-checkbox-inner {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343!important
}

.ant-checkbox-disabled .ant-checkbox-inner:after {
    animation-name: none;
    border-collapse: separate;
    border-color: hsla(0,0%,100%,.08)
}

.ant-checkbox-disabled+span {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-checkbox-disabled:hover:after,.ant-checkbox-wrapper:hover .ant-checkbox-disabled:after {
    visibility: hidden
}

.ant-checkbox-wrapper {
    font-feature-settings: "tnum","tnum";
    align-items: baseline;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: inherit;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-checkbox-wrapper:after {
    content: "\a0";
    display: inline-block;
    overflow: hidden;
    width: 0
}

.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
    cursor: not-allowed
}

.ant-checkbox-wrapper+.ant-checkbox-wrapper {
    margin-left: 8px
}

.ant-checkbox-wrapper.ant-checkbox-wrapper-in-form-item input[type=checkbox] {
    height: 14px;
    width: 14px
}

.ant-checkbox+span {
    padding-left: 8px;
    padding-right: 8px
}

.ant-checkbox-group {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-checkbox-group-item {
    margin-right: 8px
}

.ant-checkbox-group-item:last-child {
    margin-right: 0
}

.ant-checkbox-group-item+.ant-checkbox-group-item {
    margin-left: 0
}

.ant-checkbox-indeterminate .ant-checkbox-inner {
    background-color: transparent;
    border-color: #434343
}

.ant-checkbox-indeterminate .ant-checkbox-inner:after {
    background-color: #f0b90b;
    border: 0;
    content: " ";
    height: 8px;
    left: 50%;
    opacity: 1;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 8px
}

.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after {
    background-color: hsla(0,0%,100%,.3);
    border-color: hsla(0,0%,100%,.3)
}

.ant-checkbox-rtl {
    direction: rtl
}

.ant-checkbox-group-rtl .ant-checkbox-group-item {
    margin-left: 8px;
    margin-right: 0
}

.ant-checkbox-group-rtl .ant-checkbox-group-item:last-child {
    margin-left: 0!important
}

.ant-checkbox-group-rtl .ant-checkbox-group-item+.ant-checkbox-group-item {
    margin-left: 8px
}

.ant-collapse {
    font-feature-settings: "tnum","tnum";
    background-color: hsla(0,0%,100%,.04);
    border: 1px solid #434343;
    border-bottom: 0;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-collapse>.ant-collapse-item {
    border-bottom: 1px solid #434343
}

.ant-collapse>.ant-collapse-item:last-child,.ant-collapse>.ant-collapse-item:last-child>.ant-collapse-header {
    border-radius: 0 0 6px 6px
}

.ant-collapse>.ant-collapse-item>.ant-collapse-header {
    align-items: flex-start;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    line-height: 1.5715;
    padding: 12px 16px;
    position: relative;
    transition: all .3s,visibility 0s
}

.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow {
    display: inline-block;
    font-size: 12px;
    margin-right: 12px;
    vertical-align: -1px
}

.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow svg {
    transition: transform .24s
}

.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-header-text {
    flex: auto
}

.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-extra {
    margin-left: auto
}

.ant-collapse>.ant-collapse-item>.ant-collapse-header:focus {
    outline: none
}

.ant-collapse>.ant-collapse-item .ant-collapse-header-collapsible-only {
    cursor: default
}

.ant-collapse>.ant-collapse-item .ant-collapse-header-collapsible-only .ant-collapse-header-text {
    cursor: pointer;
    flex: none
}

.ant-collapse>.ant-collapse-item.ant-collapse-no-arrow>.ant-collapse-header {
    padding-left: 12px
}

.ant-collapse-icon-position-end>.ant-collapse-item>.ant-collapse-header {
    padding: 12px 40px 12px 16px;
    position: relative
}

.ant-collapse-icon-position-end>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow {
    left: auto;
    margin: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%)
}

.ant-collapse-content {
    background-color: #141414;
    border-top: 1px solid #434343;
    color: hsla(0,0%,100%,.85)
}

.ant-collapse-content>.ant-collapse-content-box {
    padding: 16px
}

.ant-collapse-content-hidden {
    display: none
}

.ant-collapse-item:last-child>.ant-collapse-content {
    border-radius: 0 0 6px 6px
}

.ant-collapse-borderless {
    background-color: hsla(0,0%,100%,.04);
    border: 0
}

.ant-collapse-borderless>.ant-collapse-item {
    border-bottom: 1px solid #434343
}

.ant-collapse-borderless>.ant-collapse-item:last-child,.ant-collapse-borderless>.ant-collapse-item:last-child .ant-collapse-header {
    border-radius: 0
}

.ant-collapse-borderless>.ant-collapse-item:last-child {
    border-bottom: 0
}

.ant-collapse-borderless>.ant-collapse-item>.ant-collapse-content {
    background-color: transparent;
    border-top: 0
}

.ant-collapse-borderless>.ant-collapse-item>.ant-collapse-content>.ant-collapse-content-box {
    padding-top: 4px
}

.ant-collapse-ghost {
    background-color: transparent;
    border: 0
}

.ant-collapse-ghost>.ant-collapse-item {
    border-bottom: 0
}

.ant-collapse-ghost>.ant-collapse-item>.ant-collapse-content {
    background-color: transparent;
    border-top: 0
}

.ant-collapse-ghost>.ant-collapse-item>.ant-collapse-content>.ant-collapse-content-box {
    padding-bottom: 12px;
    padding-top: 12px
}

.ant-collapse .ant-collapse-item-disabled>.ant-collapse-header,.ant-collapse .ant-collapse-item-disabled>.ant-collapse-header>.arrow {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-collapse-rtl {
    direction: rtl
}

.ant-collapse-rtl.ant-collapse.ant-collapse-icon-position-end>.ant-collapse-item>.ant-collapse-header {
    padding: 12px 16px 12px 40px;
    position: relative
}

.ant-collapse-rtl.ant-collapse.ant-collapse-icon-position-end>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow {
    left: 16px;
    margin: 0;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateY(-50%)
}

.ant-collapse-rtl .ant-collapse>.ant-collapse-item>.ant-collapse-header {
    padding: 12px 40px 12px 16px
}

.ant-collapse-rtl.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow {
    margin-left: 12px;
    margin-right: 0
}

.ant-collapse-rtl.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow svg {
    transform: rotate(180deg)
}

.ant-collapse-rtl.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-extra {
    margin-left: 0;
    margin-right: auto
}

.ant-collapse-rtl.ant-collapse>.ant-collapse-item.ant-collapse-no-arrow>.ant-collapse-header {
    padding-left: 0;
    padding-right: 12px
}

.ant-comment {
    background-color: transparent;
    position: relative
}

.ant-comment-inner {
    display: flex;
    padding: 16px 0
}

.ant-comment-avatar {
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 12px;
    position: relative
}

.ant-comment-avatar img {
    border-radius: 50%;
    height: 32px;
    width: 32px
}

.ant-comment-content {
    word-wrap: break-word;
    flex: 1 1 auto;
    font-size: 14px;
    min-width: 1px;
    position: relative
}

.ant-comment-content-author {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: flex-start;
    margin-bottom: 4px
}

.ant-comment-content-author>a,.ant-comment-content-author>span {
    font-size: 12px;
    line-height: 18px;
    padding-right: 8px
}

.ant-comment-content-author-name {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    transition: color .3s
}

.ant-comment-content-author-name>*,.ant-comment-content-author-name>:hover {
    color: hsla(0,0%,100%,.45)
}

.ant-comment-content-author-time {
    color: hsla(0,0%,100%,.3);
    cursor: auto;
    white-space: nowrap
}

.ant-comment-content-detail p {
    margin-bottom: inherit;
    white-space: pre-wrap
}

.ant-comment-actions {
    margin-bottom: inherit;
    margin-top: 12px;
    padding-left: 0
}

.ant-comment-actions>li {
    color: hsla(0,0%,100%,.45);
    display: inline-block
}

.ant-comment-actions>li>span {
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    font-size: 12px;
    margin-right: 10px;
    transition: color .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-comment-actions>li>span:hover {
    color: hsla(0,0%,100%,.65)
}

.ant-comment-nested {
    margin-left: 44px
}

.ant-comment-rtl {
    direction: rtl
}

.ant-comment-rtl .ant-comment-avatar {
    margin-left: 12px;
    margin-right: 0
}

.ant-comment-rtl .ant-comment-content-author>a,.ant-comment-rtl .ant-comment-content-author>span {
    padding-left: 8px;
    padding-right: 0
}

.ant-comment-rtl .ant-comment-actions {
    padding-right: 0
}

.ant-comment-rtl .ant-comment-actions>li>span {
    margin-left: 10px;
    margin-right: 0
}

.ant-comment-rtl .ant-comment-nested {
    margin-left: 0;
    margin-right: 44px
}

.ant-picker-status-error.ant-picker,.ant-picker-status-error.ant-picker:not([disabled]):hover {
    background-color: transparent;
    border-color: #a61d24
}

.ant-picker-status-error.ant-picker-focused,.ant-picker-status-error.ant-picker:focus {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-picker-status-error.ant-picker .ant-picker-active-bar {
    background: #b33b3d
}

.ant-picker-status-warning.ant-picker,.ant-picker-status-warning.ant-picker:not([disabled]):hover {
    background-color: transparent;
    border-color: #d89614
}

.ant-picker-status-warning.ant-picker-focused,.ant-picker-status-warning.ant-picker:focus {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-picker-status-warning.ant-picker .ant-picker-active-bar {
    background: #e6b239
}

.ant-picker {
    font-feature-settings: "tnum","tnum";
    align-items: center;
    background: transparent;
    border: 1px solid #434343;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 4px 11px;
    position: relative;
    transition: border .3s,box-shadow .3s
}

.ant-picker-focused,.ant-picker:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-picker-focused,.ant-input-rtl .ant-picker:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-picker-focused {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-picker-focused {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-picker.ant-picker-disabled {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    cursor: not-allowed
}

.ant-picker.ant-picker-disabled .ant-picker-suffix {
    color: hsla(0,0%,100%,.3)
}

.ant-picker.ant-picker-borderless {
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important
}

.ant-picker-input {
    align-items: center;
    display: inline-flex;
    position: relative;
    width: 100%
}

.ant-picker-input>input {
    background-color: transparent;
    background-image: none;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    flex: auto;
    font-size: 14px;
    height: auto;
    line-height: 1.5715;
    min-width: 0;
    min-width: 1px;
    padding: 0;
    position: relative;
    transition: all .3s;
    width: 100%
}

.ant-picker-input>input::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-picker-input>input:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-picker-input>input::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-picker-input>input:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-picker-input>input:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-picker-input>input:placeholder-shown {
    text-overflow: ellipsis
}

.ant-picker-input>input:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-picker-input>input:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-picker-input>input-focused,.ant-picker-input>input:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-picker-input>input-focused,.ant-input-rtl .ant-picker-input>input:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-picker-input>input-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-picker-input>input-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-picker-input>input[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-picker-input>input[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-picker-input>input-borderless,.ant-picker-input>input-borderless-disabled,.ant-picker-input>input-borderless-focused,.ant-picker-input>input-borderless:focus,.ant-picker-input>input-borderless:hover,.ant-picker-input>input-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-picker-input>input {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-picker-input>input-lg {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-picker-input>input-sm {
    padding: 0 7px
}

.ant-picker-input>input-rtl {
    direction: rtl
}

.ant-picker-input>input:focus {
    box-shadow: none
}

.ant-picker-input>input[disabled] {
    background: transparent
}

.ant-picker-input:hover .ant-picker-clear {
    opacity: 1
}

.ant-picker-input-placeholder>input {
    color: hsla(0,0%,100%,.3)
}

.ant-picker-large {
    padding: 6.5px 11px
}

.ant-picker-large .ant-picker-input>input {
    font-size: 16px
}

.ant-picker-small {
    padding: 0 7px
}

.ant-picker-suffix {
    align-self: center;
    color: hsla(0,0%,100%,.3);
    display: flex;
    flex: none;
    line-height: 1;
    margin-left: 4px;
    pointer-events: none
}

.ant-picker-suffix>* {
    vertical-align: top
}

.ant-picker-suffix>:not(:last-child) {
    margin-right: 8px
}

.ant-picker-clear {
    background: #141414;
    color: hsla(0,0%,100%,.3);
    cursor: pointer;
    line-height: 1;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s,color .3s
}

.ant-picker-clear>* {
    vertical-align: top
}

.ant-picker-clear:hover {
    color: hsla(0,0%,100%,.45)
}

.ant-picker-separator {
    color: hsla(0,0%,100%,.3);
    cursor: default;
    display: inline-block;
    font-size: 16px;
    height: 16px;
    position: relative;
    vertical-align: top;
    width: 1em
}

.ant-picker-focused .ant-picker-separator {
    color: hsla(0,0%,100%,.45)
}

.ant-picker-disabled .ant-picker-range-separator .ant-picker-separator {
    cursor: not-allowed
}

.ant-picker-range {
    display: inline-flex;
    position: relative
}

.ant-picker-range .ant-picker-clear {
    right: 11px
}

.ant-picker-range:hover .ant-picker-clear {
    opacity: 1
}

.ant-picker-range .ant-picker-active-bar {
    background: #f0b90b;
    bottom: -1px;
    height: 2px;
    margin-left: 11px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-out
}

.ant-picker-range.ant-picker-focused .ant-picker-active-bar {
    opacity: 1
}

.ant-picker-range-separator {
    align-items: center;
    line-height: 1;
    padding: 0 8px
}

.ant-picker-range.ant-picker-small .ant-picker-clear {
    right: 7px
}

.ant-picker-range.ant-picker-small .ant-picker-active-bar {
    margin-left: 7px
}

.ant-picker-dropdown {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    left: -9999px;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -9999px;
    z-index: 1050
}

.ant-picker-dropdown-hidden {
    display: none
}

.ant-picker-dropdown-placement-bottomLeft .ant-picker-range-arrow {
    display: block;
    top: 2.58561808px;
    transform: rotate(-135deg) translateY(1px)
}

.ant-picker-dropdown-placement-topLeft .ant-picker-range-arrow {
    bottom: 2.58561808px;
    display: block;
    transform: rotate(45deg)
}

.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topLeft,.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topRight,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topLeft,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topRight {
    animation-name: antSlideDownIn
}

.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomLeft,.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomRight,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomLeft,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomRight {
    animation-name: antSlideUpIn
}

.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topLeft,.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topRight {
    animation-name: antSlideDownOut
}

.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomLeft,.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomRight {
    animation-name: antSlideUpOut
}

.ant-picker-dropdown-range {
    padding: 7.54247233px 0
}

.ant-picker-dropdown-range-hidden {
    display: none
}

.ant-picker-dropdown .ant-picker-panel>.ant-picker-time-panel {
    padding-top: 4px
}

.ant-picker-ranges {
    line-height: 34px;
    list-style: none;
    margin-bottom: 0;
    overflow: hidden;
    padding: 4px 12px;
    text-align: left
}

.ant-picker-ranges>li {
    display: inline-block
}

.ant-picker-ranges .ant-picker-preset>.ant-tag-blue {
    background: #111e28;
    border-color: #103b53;
    color: #f0b90b;
    cursor: pointer
}

.ant-picker-ranges .ant-picker-ok {
    float: right;
    margin-left: 8px
}

.ant-picker-range-wrapper {
    display: flex
}

.ant-picker-range-arrow {
    border-radius: 0 0 2px;
    box-shadow: 2px 2px 6px -2px rgba(0,0,0,.1);
    display: none;
    height: 11.3137085px;
    margin-left: 16.5px;
    pointer-events: none;
    position: absolute;
    transition: left .3s ease-out;
    width: 11.3137085px;
    z-index: 1
}

.ant-picker-range-arrow:before {
    background: #1f1f1f;
    background-position: -10px -10px;
    background-repeat: no-repeat;
    clip-path: inset(33% 33%);
    clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    content: "";
    height: 33.9411255px;
    left: -11.3137085px;
    position: absolute;
    top: -11.3137085px;
    width: 33.9411255px
}

.ant-picker-panel-container {
    background: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    overflow: hidden;
    transition: margin .3s;
    vertical-align: top
}

.ant-picker-panel-container .ant-picker-panels {
    direction: ltr;
    display: inline-flex;
    flex-wrap: nowrap
}

.ant-picker-panel-container .ant-picker-panel {
    background: transparent;
    border-radius: 0;
    border-width: 0 0 1px;
    vertical-align: top
}

.ant-picker-panel-container .ant-picker-panel .ant-picker-content,.ant-picker-panel-container .ant-picker-panel table {
    text-align: center
}

.ant-picker-panel-container .ant-picker-panel-focused {
    border-color: #303030
}

.ant-picker-panel {
    background: #1f1f1f;
    border: 1px solid #303030;
    border-radius: 6px;
    display: inline-flex;
    flex-direction: column;
    outline: none;
    text-align: center
}

.ant-picker-panel-focused {
    border-color: #f0b90b
}

.ant-picker-date-panel,.ant-picker-decade-panel,.ant-picker-month-panel,.ant-picker-quarter-panel,.ant-picker-time-panel,.ant-picker-week-panel,.ant-picker-year-panel {
    display: flex;
    flex-direction: column;
    width: 280px
}

.ant-picker-header {
    border-bottom: 1px solid #303030;
    color: hsla(0,0%,100%,.85);
    display: flex;
    padding: 0 8px
}

.ant-picker-header>* {
    flex: none
}

.ant-picker-header button {
    background: transparent;
    border: 0;
    color: hsla(0,0%,100%,.3);
    cursor: pointer;
    line-height: 40px;
    padding: 0;
    transition: color .3s
}

.ant-picker-header>button {
    font-size: 14px;
    min-width: 1.6em
}

.ant-picker-header>button:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-picker-header-view {
    flex: auto;
    font-weight: 500;
    line-height: 40px
}

.ant-picker-header-view button {
    color: inherit;
    font-weight: inherit
}

.ant-picker-header-view button:not(:first-child) {
    margin-left: 8px
}

.ant-picker-header-view button:hover {
    color: #f0b90b
}

.ant-picker-next-icon,.ant-picker-prev-icon,.ant-picker-super-next-icon,.ant-picker-super-prev-icon {
    display: inline-block;
    height: 7px;
    position: relative;
    width: 7px
}

.ant-picker-next-icon:before,.ant-picker-prev-icon:before,.ant-picker-super-next-icon:before,.ant-picker-super-prev-icon:before {
    border: 0 solid;
    border-width: 1.5px 0 0 1.5px;
    content: "";
    display: inline-block;
    height: 7px;
    left: 0;
    position: absolute;
    top: 0;
    width: 7px
}

.ant-picker-super-next-icon:after,.ant-picker-super-prev-icon:after {
    border: 0 solid;
    border-width: 1.5px 0 0 1.5px;
    content: "";
    display: inline-block;
    height: 7px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 7px
}

.ant-picker-prev-icon,.ant-picker-super-prev-icon {
    transform: rotate(-45deg)
}

.ant-picker-next-icon,.ant-picker-super-next-icon {
    transform: rotate(135deg)
}

.ant-picker-content {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%
}

.ant-picker-content td,.ant-picker-content th {
    font-weight: 400;
    min-width: 24px;
    position: relative
}

.ant-picker-content th {
    color: hsla(0,0%,100%,.85);
    height: 30px;
    line-height: 30px
}

.ant-picker-cell {
    color: hsla(0,0%,100%,.3);
    cursor: pointer;
    padding: 3px 0
}

.ant-picker-cell-in-view {
    color: hsla(0,0%,100%,.85)
}

.ant-picker-cell:before {
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: 1
}

.ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,.ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {
    background: hsla(0,0%,100%,.08)
}

.ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner:before {
    border: 1px solid #f0b90b;
    border-radius: 6px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.ant-picker-cell-in-view.ant-picker-cell-in-range {
    position: relative
}

.ant-picker-cell-in-view.ant-picker-cell-in-range:before {
    background: #111e28
}

.ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,.ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,.ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner {
    background: #f0b90b;
    color: #fff
}

.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):before,.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):before {
    background: #111e28
}

.ant-picker-cell-in-view.ant-picker-cell-range-start:before {
    left: 50%
}

.ant-picker-cell-in-view.ant-picker-cell-range-end:before {
    right: 50%
}

.ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-end-single:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-start-near-hover:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start-single:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-end-near-hover:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-in-range):after {
    border-bottom: 1px dashed #055784;
    border-top: 1px dashed #055784;
    content: "";
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: 0
}

.ant-picker-cell-range-hover-end:after,.ant-picker-cell-range-hover-start:after,.ant-picker-cell-range-hover:after {
    left: 2px;
    right: 0
}

.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover:before,.ant-picker-cell-in-view.ant-picker-cell-range-end.ant-picker-cell-range-hover:before,.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single).ant-picker-cell-range-hover-end:before,.ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-hover:before,.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single).ant-picker-cell-range-hover-start:before,.ant-picker-panel>:not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end:before,.ant-picker-panel>:not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start:before {
    background: #02263a
}

.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner {
    border-radius: 6px 0 0 6px
}

.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner {
    border-radius: 0 6px 6px 0
}

.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after,.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after {
    background: #02263a;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    transition: all .3s;
    z-index: -1
}

.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after {
    left: 0;
    right: -6px
}

.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after {
    left: -6px;
    right: 0
}

.ant-picker-cell-range-hover.ant-picker-cell-range-start:after {
    right: 50%
}

.ant-picker-cell-range-hover.ant-picker-cell-range-end:after {
    left: 50%
}

.ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:after,.ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:first-child:after {
    border-bottom-left-radius: 6px;
    border-left: 1px dashed #055784;
    border-top-left-radius: 6px;
    left: 6px
}

.ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:last-child:after {
    border-bottom-right-radius: 6px;
    border-right: 1px dashed #055784;
    border-top-right-radius: 6px;
    right: 6px
}

.ant-picker-cell-disabled {
    color: hsla(0,0%,100%,.3);
    pointer-events: none
}

.ant-picker-cell-disabled .ant-picker-cell-inner {
    background: transparent
}

.ant-picker-cell-disabled:before {
    background: #303030
}

.ant-picker-cell-disabled.ant-picker-cell-today .ant-picker-cell-inner:before {
    border-color: hsla(0,0%,100%,.3)
}

.ant-picker-decade-panel .ant-picker-content,.ant-picker-month-panel .ant-picker-content,.ant-picker-quarter-panel .ant-picker-content,.ant-picker-year-panel .ant-picker-content {
    height: 264px
}

.ant-picker-decade-panel .ant-picker-cell-inner,.ant-picker-month-panel .ant-picker-cell-inner,.ant-picker-quarter-panel .ant-picker-cell-inner,.ant-picker-year-panel .ant-picker-cell-inner {
    padding: 0 8px
}

.ant-picker-quarter-panel .ant-picker-content {
    height: 56px
}

.ant-picker-footer {
    border-bottom: 1px solid transparent;
    line-height: 38px;
    min-width: 100%;
    text-align: center;
    width: -moz-min-content;
    width: min-content
}

.ant-picker-panel .ant-picker-footer {
    border-top: 1px solid #303030
}

.ant-picker-footer-extra {
    line-height: 38px;
    padding: 0 12px;
    text-align: left
}

.ant-picker-footer-extra:not(:last-child) {
    border-bottom: 1px solid #303030
}

.ant-picker-now {
    text-align: left
}

.ant-picker-today-btn {
    color: #f0b90b
}

.ant-picker-today-btn:hover {
    color: #bf9003
}

.ant-picker-today-btn:active {
    color: #fc0
}

.ant-picker-today-btn.ant-picker-today-btn-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-picker-decade-panel .ant-picker-cell-inner {
    padding: 0 4px
}

.ant-picker-decade-panel .ant-picker-cell:before {
    display: none
}

.ant-picker-month-panel .ant-picker-body,.ant-picker-quarter-panel .ant-picker-body,.ant-picker-year-panel .ant-picker-body {
    padding: 0 8px
}

.ant-picker-month-panel .ant-picker-cell-inner,.ant-picker-quarter-panel .ant-picker-cell-inner,.ant-picker-year-panel .ant-picker-cell-inner {
    width: 60px
}

.ant-picker-month-panel .ant-picker-cell-range-hover-start:after,.ant-picker-quarter-panel .ant-picker-cell-range-hover-start:after,.ant-picker-year-panel .ant-picker-cell-range-hover-start:after {
    border-left: 1px dashed #055784;
    border-radius: 6px 0 0 6px;
    left: 14px
}

.ant-picker-month-panel .ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-start:after,.ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-start:after,.ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-start:after,.ant-picker-quarter-panel .ant-picker-cell-range-hover-end:after,.ant-picker-year-panel .ant-picker-cell-range-hover-end:after {
    border-radius: 0 6px 6px 0;
    border-right: 1px dashed #055784;
    right: 14px
}

.ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-end:after {
    border-left: 1px dashed #055784;
    border-radius: 6px 0 0 6px;
    left: 14px
}

.ant-picker-week-panel .ant-picker-body {
    padding: 8px 12px
}

.ant-picker-week-panel .ant-picker-cell .ant-picker-cell-inner,.ant-picker-week-panel .ant-picker-cell-selected .ant-picker-cell-inner,.ant-picker-week-panel .ant-picker-cell:hover .ant-picker-cell-inner {
    background: transparent!important
}

.ant-picker-week-panel-row td {
    transition: background .3s
}

.ant-picker-week-panel-row:hover td {
    background: hsla(0,0%,100%,.08)
}

.ant-picker-week-panel-row-selected td,.ant-picker-week-panel-row-selected:hover td {
    background: #f0b90b
}

.ant-picker-week-panel-row-selected td.ant-picker-cell-week,.ant-picker-week-panel-row-selected:hover td.ant-picker-cell-week {
    color: hsla(0,0%,100%,.5)
}

.ant-picker-week-panel-row-selected td.ant-picker-cell-today .ant-picker-cell-inner:before,.ant-picker-week-panel-row-selected:hover td.ant-picker-cell-today .ant-picker-cell-inner:before {
    border-color: #fff
}

.ant-picker-week-panel-row-selected td .ant-picker-cell-inner,.ant-picker-week-panel-row-selected:hover td .ant-picker-cell-inner {
    color: #fff
}

.ant-picker-date-panel .ant-picker-body {
    padding: 8px 12px
}

.ant-picker-date-panel .ant-picker-content {
    width: 252px
}

.ant-picker-date-panel .ant-picker-content th {
    width: 36px
}

.ant-picker-datetime-panel {
    display: flex
}

.ant-picker-datetime-panel .ant-picker-time-panel {
    border-left: 1px solid #303030
}

.ant-picker-datetime-panel .ant-picker-date-panel,.ant-picker-datetime-panel .ant-picker-time-panel {
    transition: opacity .3s
}

.ant-picker-datetime-panel-active .ant-picker-date-panel,.ant-picker-datetime-panel-active .ant-picker-time-panel {
    opacity: .3
}

.ant-picker-datetime-panel-active .ant-picker-date-panel-active,.ant-picker-datetime-panel-active .ant-picker-time-panel-active {
    opacity: 1
}

.ant-picker-time-panel {
    min-width: auto;
    width: auto
}

.ant-picker-time-panel .ant-picker-content {
    display: flex;
    flex: auto;
    height: 224px
}

.ant-picker-time-panel-column {
    flex: 1 0 auto;
    list-style: none;
    margin: 0;
    overflow-y: hidden;
    padding: 0;
    text-align: left;
    transition: background .3s;
    width: 56px
}

.ant-picker-time-panel-column:after {
    content: "";
    display: block;
    height: 196px
}

.ant-picker-datetime-panel .ant-picker-time-panel-column:after {
    height: 198px
}

.ant-picker-time-panel-column:not(:first-child) {
    border-left: 1px solid #303030
}

.ant-picker-time-panel-column-active {
    background: rgba(17,30,40,.2)
}

.ant-picker-time-panel-column:hover {
    overflow-y: auto
}

.ant-picker-time-panel-column>li {
    margin: 0;
    padding: 0
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner {
    border-radius: 0;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: block;
    height: 28px;
    line-height: 28px;
    margin: 0;
    padding: 0 0 0 14px;
    transition: background .3s;
    width: 100%
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover {
    background: hsla(0,0%,100%,.08)
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner {
    background: #111e28
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell-disabled .ant-picker-time-panel-cell-inner {
    background: transparent;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

:root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,:root .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell,_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell {
    padding: 21px 0
}

.ant-picker-rtl {
    direction: rtl
}

.ant-picker-rtl .ant-picker-suffix {
    margin-left: 0;
    margin-right: 4px
}

.ant-picker-rtl .ant-picker-clear {
    left: 0;
    right: auto
}

.ant-picker-rtl .ant-picker-separator {
    transform: rotate(180deg)
}

.ant-picker-panel-rtl .ant-picker-header-view button:not(:first-child) {
    margin-left: 0;
    margin-right: 8px
}

.ant-picker-rtl.ant-picker-range .ant-picker-clear {
    left: 11px;
    right: auto
}

.ant-picker-rtl.ant-picker-range .ant-picker-active-bar {
    margin-left: 0;
    margin-right: 11px
}

.ant-picker-rtl.ant-picker-range.ant-picker-small .ant-picker-active-bar {
    margin-right: 7px
}

.ant-picker-dropdown-rtl .ant-picker-ranges {
    text-align: right
}

.ant-picker-dropdown-rtl .ant-picker-ranges .ant-picker-ok {
    float: left;
    margin-left: 0;
    margin-right: 8px
}

.ant-picker-panel-rtl {
    direction: rtl
}

.ant-picker-panel-rtl .ant-picker-prev-icon,.ant-picker-panel-rtl .ant-picker-super-prev-icon {
    transform: rotate(135deg)
}

.ant-picker-panel-rtl .ant-picker-next-icon,.ant-picker-panel-rtl .ant-picker-super-next-icon {
    transform: rotate(-45deg)
}

.ant-picker-cell .ant-picker-cell-inner {
    border-radius: 6px;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    min-width: 24px;
    position: relative;
    transition: background .3s,border .3s;
    z-index: 2
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start:before {
    left: 0;
    right: 50%
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end:before {
    left: 50%;
    right: 0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-end:before {
    left: 50%;
    right: 50%
}

.ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after {
    left: -6px;
    right: 0
}

.ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after {
    left: 0;
    right: -6px
}

.ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-start:after {
    left: 50%;
    right: 0
}

.ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-end:after {
    left: 0;
    right: 50%
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner {
    border-radius: 0 6px 6px 0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner {
    border-radius: 6px 0 0 6px
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):first-child:after {
    border-left: none;
    border-radius: 0 6px 6px 0;
    border-right: 1px dashed #055784;
    left: 0;
    right: 6px
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range:after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):last-child:after {
    border-left: 1px dashed #055784;
    border-radius: 6px 0 0 6px;
    border-right: none;
    left: 6px;
    right: 0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-start.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-end.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover):after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-end:first-child:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-start:last-child:after {
    border-left: 1px dashed #055784;
    border-radius: 6px;
    border-right: 1px dashed #055784;
    left: 6px;
    right: 6px
}

.ant-picker-dropdown-rtl .ant-picker-footer-extra {
    direction: rtl;
    text-align: right
}

.ant-picker-panel-rtl .ant-picker-time-panel {
    direction: ltr
}

.ant-descriptions-header {
    align-items: center;
    display: flex;
    margin-bottom: 20px
}

.ant-descriptions-title {
    color: hsla(0,0%,100%,.85);
    flex: auto;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5715;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-descriptions-extra {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    margin-left: auto
}

.ant-descriptions-view {
    border-radius: 6px;
    width: 100%
}

.ant-descriptions-view table {
    table-layout: fixed;
    width: 100%
}

.ant-descriptions-row>td,.ant-descriptions-row>th {
    padding-bottom: 16px
}

.ant-descriptions-row:last-child {
    border-bottom: none
}

.ant-descriptions-item-label {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5715;
    text-align: start
}

.ant-descriptions-item-label:after {
    content: ":";
    margin: 0 8px 0 2px;
    position: relative;
    top: -.5px
}

.ant-descriptions-item-label.ant-descriptions-item-no-colon:after {
    content: " "
}

.ant-descriptions-item-no-label:after {
    content: "";
    margin: 0
}

.ant-descriptions-item-content {
    color: hsla(0,0%,100%,.85);
    display: table-cell;
    flex: 1 1;
    font-size: 14px;
    line-height: 1.5715;
    overflow-wrap: break-word;
    word-break: break-word
}

.ant-descriptions-item {
    padding-bottom: 0;
    vertical-align: top
}

.ant-descriptions-item-container {
    display: flex
}

.ant-descriptions-item-container .ant-descriptions-item-content,.ant-descriptions-item-container .ant-descriptions-item-label {
    align-items: baseline;
    display: inline-flex
}

.ant-descriptions-middle .ant-descriptions-row>td,.ant-descriptions-middle .ant-descriptions-row>th {
    padding-bottom: 12px
}

.ant-descriptions-small .ant-descriptions-row>td,.ant-descriptions-small .ant-descriptions-row>th {
    padding-bottom: 8px
}

.ant-descriptions-bordered .ant-descriptions-view {
    border: 1px solid #303030
}

.ant-descriptions-bordered .ant-descriptions-view>table {
    border-collapse: collapse;
    table-layout: auto
}

.ant-descriptions-bordered .ant-descriptions-item-content,.ant-descriptions-bordered .ant-descriptions-item-label {
    border-right: 1px solid #303030;
    padding: 16px 24px
}

.ant-descriptions-bordered .ant-descriptions-item-content:last-child,.ant-descriptions-bordered .ant-descriptions-item-label:last-child {
    border-right: none
}

.ant-descriptions-bordered .ant-descriptions-item-label {
    background-color: hsla(0,0%,100%,.04)
}

.ant-descriptions-bordered .ant-descriptions-item-label:after {
    display: none
}

.ant-descriptions-bordered .ant-descriptions-row {
    border-bottom: 1px solid #303030
}

.ant-descriptions-bordered .ant-descriptions-row:last-child {
    border-bottom: none
}

.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content,.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label {
    padding: 12px 24px
}

.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content,.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label {
    padding: 8px 16px
}

.ant-descriptions-rtl {
    direction: rtl
}

.ant-descriptions-rtl .ant-descriptions-item-label:after {
    margin: 0 2px 0 8px
}

.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content,.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label {
    border-left: 1px solid #303030;
    border-right: none
}

.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content:last-child,.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label:last-child {
    border-left: none
}

.ant-divider {
    font-feature-settings: "tnum","tnum";
    border-top: 1px solid hsla(0,0%,100%,.12);
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-divider-vertical {
    border-left: 1px solid hsla(0,0%,100%,.12);
    border-top: 0;
    display: inline-block;
    height: .9em;
    margin: 0 8px;
    position: relative;
    top: -.06em;
    vertical-align: middle
}

.ant-divider-horizontal {
    clear: both;
    display: flex;
    margin: 24px 0;
    min-width: 100%;
    width: 100%
}

.ant-divider-horizontal.ant-divider-with-text {
    border-top: 0;
    border-top-color: hsla(0,0%,100%,.12);
    color: hsla(0,0%,100%,.85);
    display: flex;
    font-size: 16px;
    font-weight: 500;
    margin: 16px 0;
    text-align: center;
    white-space: nowrap
}

.ant-divider-horizontal.ant-divider-with-text:after,.ant-divider-horizontal.ant-divider-with-text:before {
    border-bottom: 0;
    border-top: 1px solid transparent;
    border-top-color: inherit;
    content: "";
    position: relative;
    top: 50%;
    transform: translateY(50%);
    width: 50%
}

.ant-divider-horizontal.ant-divider-with-text-left:before {
    top: 50%;
    width: 5%
}

.ant-divider-horizontal.ant-divider-with-text-left:after,.ant-divider-horizontal.ant-divider-with-text-right:before {
    top: 50%;
    width: 95%
}

.ant-divider-horizontal.ant-divider-with-text-right:after {
    top: 50%;
    width: 5%
}

.ant-divider-inner-text {
    display: inline-block;
    padding: 0 1em
}

.ant-divider-dashed {
    background: none;
    border: dashed hsla(0,0%,100%,.12);
    border-width: 1px 0 0
}

.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:after,.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed:before {
    border-style: dashed none none
}

.ant-divider-vertical.ant-divider-dashed {
    border-width: 0 0 0 1px
}

.ant-divider-plain.ant-divider-with-text {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-weight: 400
}

.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left:before {
    width: 0
}

.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left:after {
    width: 100%
}

.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
    padding-left: 0
}

.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right:before {
    width: 100%
}

.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right:after {
    width: 0
}

.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
    padding-right: 0
}

.ant-divider-rtl {
    direction: rtl
}

.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left:before {
    width: 95%
}

.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left:after,.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right:before {
    width: 5%
}

.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right:after {
    width: 95%
}

.ant-drawer {
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.ant-drawer-inline {
    position: absolute
}

.ant-drawer-mask {
    background: rgba(0,0,0,.45);
    bottom: 0;
    left: 0;
    pointer-events: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000
}

.ant-drawer-content-wrapper {
    position: absolute;
    transition: all .3s;
    z-index: 1000
}

.ant-drawer-content-wrapper-hidden {
    display: none
}

.ant-drawer-left .ant-drawer-content-wrapper {
    bottom: 0;
    box-shadow: 6px 0 16px -8px rgba(0,0,0,.32),9px 0 28px 0 rgba(0,0,0,.2),12px 0 48px 16px rgba(0,0,0,.12);
    left: 0;
    top: 0
}

.ant-drawer-right .ant-drawer-content-wrapper {
    bottom: 0;
    box-shadow: -6px 0 16px -8px rgba(0,0,0,.08),-9px 0 28px 0 rgba(0,0,0,.05),-12px 0 48px 16px rgba(0,0,0,.03);
    right: 0;
    top: 0
}

.ant-drawer-top .ant-drawer-content-wrapper {
    box-shadow: 0 6px 16px -8px rgba(0,0,0,.32),0 9px 28px 0 rgba(0,0,0,.2),0 12px 48px 16px rgba(0,0,0,.12);
    left: 0;
    right: 0;
    top: 0
}

.ant-drawer-bottom .ant-drawer-content-wrapper {
    bottom: 0;
    box-shadow: 0 -6px 16px -8px rgba(0,0,0,.32),0 -9px 28px 0 rgba(0,0,0,.2),0 -12px 48px 16px rgba(0,0,0,.12);
    left: 0;
    right: 0
}

.ant-drawer-content {
    background: #1f1f1f;
    height: 100%;
    overflow: auto;
    pointer-events: auto;
    width: 100%
}

.ant-drawer-wrapper-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.ant-drawer-header {
    align-items: center;
    border-bottom: 1px solid #303030;
    display: flex;
    flex: 0 1;
    font-size: 16px;
    line-height: 22px;
    padding: 16px 24px
}

.ant-drawer-header-title {
    align-items: center;
    display: flex;
    flex: 1 1;
    min-height: 0;
    min-width: 0
}

.ant-drawer-extra {
    flex: 0 1
}

.ant-drawer-close {
    background: transparent;
    border: 0;
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin-right: 12px;
    outline: 0;
    text-align: center;
    text-decoration: none;
    text-rendering: auto;
    text-transform: none;
    transition: color .3s
}

.ant-drawer-close:focus,.ant-drawer-close:hover {
    color: hsla(0,0%,100%,.75);
    text-decoration: none
}

.ant-drawer-title {
    color: hsla(0,0%,100%,.85);
    flex: 1 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0
}

.ant-drawer-body {
    flex: 1 1;
    min-height: 0;
    min-width: 0;
    overflow: auto;
    padding: 24px
}

.ant-drawer-footer {
    border-top: 1px solid #303030;
    flex-shrink: 0;
    padding: 10px 16px
}

.panel-motion-appear-start,.panel-motion-enter-start,.panel-motion-leave-start {
    transition: none
}

.ant-drawer-mask-motion-appear-active,.ant-drawer-mask-motion-enter-active,.ant-drawer-mask-motion-leave-active,.panel-motion-appear-active,.panel-motion-enter-active,.panel-motion-leave-active {
    transition: all .3s
}

.ant-drawer-mask-motion-appear,.ant-drawer-mask-motion-enter {
    opacity: 0
}

.ant-drawer-mask-motion-appear-active,.ant-drawer-mask-motion-enter-active,.ant-drawer-mask-motion-leave {
    opacity: 1
}

.ant-drawer-mask-motion-leave-active {
    opacity: 0
}

.ant-drawer-panel-motion-left-appear-start,.ant-drawer-panel-motion-left-enter-start,.ant-drawer-panel-motion-left-leave-start {
    transition: none
}

.ant-drawer-panel-motion-left-appear-active,.ant-drawer-panel-motion-left-enter-active,.ant-drawer-panel-motion-left-leave-active {
    transition: all .3s
}

.ant-drawer-panel-motion-left-appear,.ant-drawer-panel-motion-left-enter {
    transform: translateX(-100%)
}

.ant-drawer-panel-motion-left-appear-active,.ant-drawer-panel-motion-left-enter-active,.ant-drawer-panel-motion-left-leave {
    transform: translateX(0)
}

.ant-drawer-panel-motion-left-leave-active {
    transform: translateX(-100%)
}

.ant-drawer-panel-motion-right-appear-start,.ant-drawer-panel-motion-right-enter-start,.ant-drawer-panel-motion-right-leave-start {
    transition: none
}

.ant-drawer-panel-motion-right-appear-active,.ant-drawer-panel-motion-right-enter-active,.ant-drawer-panel-motion-right-leave-active {
    transition: all .3s
}

.ant-drawer-panel-motion-right-appear,.ant-drawer-panel-motion-right-enter {
    transform: translateX(100%)
}

.ant-drawer-panel-motion-right-appear-active,.ant-drawer-panel-motion-right-enter-active,.ant-drawer-panel-motion-right-leave {
    transform: translateX(0)
}

.ant-drawer-panel-motion-right-leave-active {
    transform: translateX(100%)
}

.ant-drawer-panel-motion-top-appear-start,.ant-drawer-panel-motion-top-enter-start,.ant-drawer-panel-motion-top-leave-start {
    transition: none
}

.ant-drawer-panel-motion-top-appear-active,.ant-drawer-panel-motion-top-enter-active,.ant-drawer-panel-motion-top-leave-active {
    transition: all .3s
}

.ant-drawer-panel-motion-top-appear,.ant-drawer-panel-motion-top-enter {
    transform: translateY(-100%)
}

.ant-drawer-panel-motion-top-appear-active,.ant-drawer-panel-motion-top-enter-active,.ant-drawer-panel-motion-top-leave {
    transform: translateY(0)
}

.ant-drawer-panel-motion-top-leave-active {
    transform: translateY(-100%)
}

.ant-drawer-panel-motion-bottom-appear-start,.ant-drawer-panel-motion-bottom-enter-start,.ant-drawer-panel-motion-bottom-leave-start {
    transition: none
}

.ant-drawer-panel-motion-bottom-appear-active,.ant-drawer-panel-motion-bottom-enter-active,.ant-drawer-panel-motion-bottom-leave-active {
    transition: all .3s
}

.ant-drawer-panel-motion-bottom-appear,.ant-drawer-panel-motion-bottom-enter {
    transform: translateY(100%)
}

.ant-drawer-panel-motion-bottom-appear-active,.ant-drawer-panel-motion-bottom-enter-active,.ant-drawer-panel-motion-bottom-leave {
    transform: translateY(0)
}

.ant-drawer-panel-motion-bottom-leave-active {
    transform: translateY(100%)
}

.ant-drawer-rtl {
    direction: rtl
}

.ant-drawer-rtl .ant-drawer-close {
    margin-left: 12px;
    margin-right: 0
}

.ant-drawer .ant-anchor-wrapper,.ant-drawer .ant-card,.ant-drawer .ant-collapse-content,.ant-drawer .ant-picker-clear,.ant-drawer .ant-slider-handle,.ant-drawer .ant-timeline-item-head {
    background-color: #1f1f1f
}

.ant-drawer .ant-transfer-list-header {
    background: #1f1f1f;
    border-bottom: 1px solid #3a3a3a
}

.ant-drawer .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-drawer tr.ant-table-expanded-row:hover>td,.ant-drawer tr.ant-table-expanded-row>td {
    background: #272727
}

.ant-drawer .ant-table.ant-table-small thead>tr>th {
    background-color: #1f1f1f;
    border-bottom: 1px solid #3a3a3a
}

.ant-drawer .ant-table {
    background-color: #1f1f1f
}

.ant-drawer .ant-table .ant-table-row-expand-icon {
    border: 1px solid #3a3a3a
}

.ant-drawer .ant-table tfoot>tr>td,.ant-drawer .ant-table tfoot>tr>th {
    border-bottom: 1px solid #3a3a3a
}

.ant-drawer .ant-table thead>tr>th {
    background-color: #272727;
    border-bottom: 1px solid #3a3a3a
}

.ant-drawer .ant-table tbody>tr>td {
    border-bottom: 1px solid #3a3a3a
}

.ant-drawer .ant-table tbody>tr>td.ant-table-cell-fix-left,.ant-drawer .ant-table tbody>tr>td.ant-table-cell-fix-right {
    background-color: #1f1f1f
}

.ant-drawer .ant-table tbody>tr.ant-table-row:hover>td {
    background: #303030
}

.ant-drawer .ant-table.ant-table-bordered .ant-table-title {
    border: 1px solid #3a3a3a
}

.ant-drawer .ant-table.ant-table-bordered .ant-table-cell-fix-right-first:after,.ant-drawer .ant-table.ant-table-bordered tbody>tr>td,.ant-drawer .ant-table.ant-table-bordered tfoot>tr>td,.ant-drawer .ant-table.ant-table-bordered tfoot>tr>th,.ant-drawer .ant-table.ant-table-bordered thead>tr>th {
    border-right: 1px solid #3a3a3a
}

.ant-drawer .ant-table.ant-table-bordered table thead>tr:not(:last-child)>th {
    border-bottom: 1px solid #303030
}

.ant-drawer .ant-table.ant-table-bordered .ant-table-container {
    border: 1px solid #3a3a3a
}

.ant-drawer .ant-table.ant-table-bordered .ant-table-expanded-row-fixed:after {
    border-right: 1px solid #3a3a3a
}

.ant-drawer .ant-table.ant-table-bordered .ant-table-footer {
    border: 1px solid #3a3a3a
}

.ant-drawer .ant-table .ant-table-filter-trigger-container-open {
    background-color: #525252
}

.ant-drawer .ant-picker-calendar-full,.ant-drawer .ant-picker-calendar-full .ant-picker-panel {
    background-color: #1f1f1f
}

.ant-drawer .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date {
    border-top: 2px solid #3a3a3a
}

.ant-drawer .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active {
    background-color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f
}

.ant-drawer .ant-badge-count {
    box-shadow: 0 0 0 1px #1f1f1f
}

.ant-drawer .ant-tree-show-line .ant-tree-switcher {
    background: #1f1f1f
}

.ant-dropdown-menu-item.ant-dropdown-menu-item-danger {
    color: #a61d24
}

.ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover {
    background-color: #a61d24;
    color: #fff
}

.ant-dropdown {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: block;
    font-size: 14px;
    font-variant: tabular-nums;
    left: -9999px;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -9999px;
    z-index: 1050
}

.ant-dropdown:before {
    bottom: -4px;
    content: " ";
    left: -7px;
    opacity: .0001;
    position: absolute;
    right: 0;
    top: -4px;
    z-index: -9999
}

.ant-dropdown-wrap {
    position: relative
}

.ant-dropdown-wrap .ant-btn>.anticon-down {
    font-size: 10px
}

.ant-dropdown-wrap .anticon-down:before {
    transition: transform .2s
}

.ant-dropdown-wrap-open .anticon-down:before {
    transform: rotate(180deg)
}

.ant-dropdown-hidden,.ant-dropdown-menu-hidden,.ant-dropdown-menu-submenu-hidden {
    display: none
}

.ant-dropdown-show-arrow.ant-dropdown-placement-top,.ant-dropdown-show-arrow.ant-dropdown-placement-topLeft,.ant-dropdown-show-arrow.ant-dropdown-placement-topRight {
    padding-bottom: 15.3137085px
}

.ant-dropdown-show-arrow.ant-dropdown-placement-bottom,.ant-dropdown-show-arrow.ant-dropdown-placement-bottomLeft,.ant-dropdown-show-arrow.ant-dropdown-placement-bottomRight {
    padding-top: 15.3137085px
}

.ant-dropdown-arrow {
    border-radius: 0 0 2px;
    display: block;
    height: 11.3137085px;
    pointer-events: none;
    position: absolute;
    width: 11.3137085px;
    z-index: 1
}

.ant-dropdown-arrow:before {
    background: #1f1f1f;
    background-position: -10px -10px;
    background-repeat: no-repeat;
    clip-path: inset(33% 33%);
    clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    content: "";
    height: 33.9411255px;
    left: -11.3137085px;
    position: absolute;
    top: -11.3137085px;
    width: 33.9411255px
}

.ant-dropdown-placement-top>.ant-dropdown-arrow,.ant-dropdown-placement-topLeft>.ant-dropdown-arrow,.ant-dropdown-placement-topRight>.ant-dropdown-arrow {
    bottom: 10px;
    box-shadow: 3px 3px 7px -3px rgba(0,0,0,.1);
    transform: rotate(45deg)
}

.ant-dropdown-placement-top>.ant-dropdown-arrow {
    left: 50%;
    transform: translateX(-50%) rotate(45deg)
}

.ant-dropdown-placement-topLeft>.ant-dropdown-arrow {
    left: 16px
}

.ant-dropdown-placement-topRight>.ant-dropdown-arrow {
    right: 16px
}

.ant-dropdown-placement-bottom>.ant-dropdown-arrow,.ant-dropdown-placement-bottomLeft>.ant-dropdown-arrow,.ant-dropdown-placement-bottomRight>.ant-dropdown-arrow {
    box-shadow: 2px 2px 5px -2px rgba(0,0,0,.1);
    top: 9.41421356px;
    transform: rotate(-135deg) translateY(-.5px)
}

.ant-dropdown-placement-bottom>.ant-dropdown-arrow {
    left: 50%;
    transform: translateX(-50%) rotate(-135deg) translateY(-.5px)
}

.ant-dropdown-placement-bottomLeft>.ant-dropdown-arrow {
    left: 16px
}

.ant-dropdown-placement-bottomRight>.ant-dropdown-arrow {
    right: 16px
}

.ant-dropdown-menu {
    background-clip: padding-box;
    background-color: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    list-style-type: none;
    margin: 0;
    outline: none;
    padding: 4px 0;
    position: relative;
    text-align: left
}

.ant-dropdown-menu-item-group-title {
    color: hsla(0,0%,100%,.45);
    padding: 5px 12px;
    transition: all .3s
}

.ant-dropdown-menu-submenu-popup {
    background: transparent;
    box-shadow: none;
    position: absolute;
    transform-origin: 0 0;
    z-index: 1050
}

.ant-dropdown-menu-submenu-popup li,.ant-dropdown-menu-submenu-popup ul {
    list-style: none
}

.ant-dropdown-menu-submenu-popup ul {
    margin-left: .3em;
    margin-right: .3em
}

.ant-dropdown-menu-item {
    align-items: center;
    display: flex;
    position: relative
}

.ant-dropdown-menu-item-icon {
    font-size: 12px;
    margin-right: 8px;
    min-width: 12px
}

.ant-dropdown-menu-title-content {
    flex: auto
}

.ant-dropdown-menu-title-content>a {
    color: inherit;
    transition: all .3s
}

.ant-dropdown-menu-title-content>a:hover {
    color: inherit
}

.ant-dropdown-menu-title-content>a:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-dropdown-menu-item,.ant-dropdown-menu-submenu-title {
    clear: both;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    padding: 5px 12px;
    transition: all .3s
}

.ant-dropdown-menu-item-selected,.ant-dropdown-menu-submenu-title-selected {
    background-color: #111e28;
    color: #f0b90b
}

.ant-dropdown-menu-item.ant-dropdown-menu-item-active,.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-active,.ant-dropdown-menu-item:hover,.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-active,.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-active,.ant-dropdown-menu-submenu-title:hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-dropdown-menu-item-disabled,.ant-dropdown-menu-submenu-title-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-dropdown-menu-item-disabled:hover,.ant-dropdown-menu-submenu-title-disabled:hover {
    background-color: transparent;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-dropdown-menu-item-disabled a,.ant-dropdown-menu-submenu-title-disabled a {
    pointer-events: none
}

.ant-dropdown-menu-item-divider,.ant-dropdown-menu-submenu-title-divider {
    background-color: #303030;
    height: 1px;
    line-height: 0;
    margin: 4px 0;
    overflow: hidden
}

.ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon,.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon {
    position: absolute;
    right: 8px
}

.ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon,.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon {
    color: hsla(0,0%,100%,.45);
    font-size: 10px;
    font-style: normal;
    margin-right: 0!important
}

.ant-dropdown-menu-item-group-list {
    list-style: none;
    margin: 0 8px;
    padding: 0
}

.ant-dropdown-menu-submenu-title {
    padding-right: 24px
}

.ant-dropdown-menu-submenu-vertical {
    position: relative
}

.ant-dropdown-menu-submenu-vertical>.ant-dropdown-menu {
    left: 100%;
    margin-left: 4px;
    min-width: 100%;
    position: absolute;
    top: 0;
    transform-origin: 0 0
}

.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
    background-color: transparent;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title {
    color: #f0b90b
}

.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottom,.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomRight,.ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottom,.ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomRight {
    animation-name: antSlideUpIn
}

.ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-top,.ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topLeft,.ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topRight,.ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-top,.ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topLeft,.ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topRight {
    animation-name: antSlideDownIn
}

.ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottom,.ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomRight {
    animation-name: antSlideUpOut
}

.ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-top,.ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topLeft,.ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topRight {
    animation-name: antSlideDownOut
}

.ant-dropdown-button>.anticon.anticon-down,.ant-dropdown-link>.anticon.anticon-down,.ant-dropdown-trigger>.anticon.anticon-down {
    font-size: 10px;
    vertical-align: baseline
}

.ant-dropdown-button {
    white-space: nowrap
}

.ant-dropdown-button.ant-btn-group>.ant-btn-loading,.ant-dropdown-button.ant-btn-group>.ant-btn-loading+.ant-btn {
    cursor: default;
    pointer-events: none
}

.ant-dropdown-button.ant-btn-group>.ant-btn-loading+.ant-btn:before {
    display: block
}

.ant-dropdown-button.ant-btn-group>.ant-btn:last-child:not(:first-child):not(.ant-btn-icon-only) {
    padding-left: 8px;
    padding-right: 8px
}

.ant-dropdown-menu-dark,.ant-dropdown-menu-dark .ant-dropdown-menu {
    background: #1f1f1f
}

.ant-dropdown-menu-dark .ant-dropdown-menu-item,.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-item>.anticon+span>a,.ant-dropdown-menu-dark .ant-dropdown-menu-item>.anticon+span>a .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after {
    color: hsla(0,0%,100%,.65)
}

.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item>.anticon+span>a:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover {
    background: transparent;
    color: #fff
}

.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected>a {
    background: #f0b90b;
    color: #fff
}

.ant-dropdown-rtl {
    direction: rtl
}

.ant-dropdown-rtl.ant-dropdown:before {
    left: 0;
    right: -7px
}

.ant-dropdown-menu-submenu-rtl .ant-dropdown-menu-item-group-title,.ant-dropdown-menu.ant-dropdown-menu-rtl,.ant-dropdown-rtl .ant-dropdown-menu-item-group-title {
    direction: rtl;
    text-align: right
}

.ant-dropdown-menu-submenu-popup.ant-dropdown-menu-submenu-rtl {
    transform-origin: 100% 0
}

.ant-dropdown-rtl .ant-dropdown-menu-item,.ant-dropdown-rtl .ant-dropdown-menu-submenu-popup li,.ant-dropdown-rtl .ant-dropdown-menu-submenu-popup ul,.ant-dropdown-rtl .ant-dropdown-menu-submenu-title {
    text-align: right
}

.ant-dropdown-rtl .ant-dropdown-menu-item>.anticon:first-child,.ant-dropdown-rtl .ant-dropdown-menu-item>span>.anticon:first-child,.ant-dropdown-rtl .ant-dropdown-menu-submenu-title>.anticon:first-child,.ant-dropdown-rtl .ant-dropdown-menu-submenu-title>span>.anticon:first-child {
    margin-left: 8px;
    margin-right: 0
}

.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon,.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon {
    left: 8px;
    right: auto
}

.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon,.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon {
    margin-left: 0!important;
    transform: scaleX(-1)
}

.ant-dropdown-rtl .ant-dropdown-menu-submenu-title {
    padding-left: 24px;
    padding-right: 12px
}

.ant-dropdown-rtl .ant-dropdown-menu-submenu-vertical>.ant-dropdown-menu {
    left: 0;
    margin-left: 0;
    margin-right: 4px;
    right: 100%
}

.ant-empty {
    font-size: 14px;
    line-height: 1.5715;
    margin: 0 8px;
    text-align: center
}

.ant-empty-image {
    height: 100px;
    margin-bottom: 8px
}

.ant-empty-image img {
    height: 100%
}

.ant-empty-image svg {
    height: 100%;
    margin: auto
}

.ant-empty-footer {
    margin-top: 16px
}

.ant-empty-normal {
    color: hsla(0,0%,100%,.3);
    margin: 32px 0
}

.ant-empty-normal .ant-empty-image {
    height: 40px
}

.ant-empty-small {
    color: hsla(0,0%,100%,.3);
    margin: 8px 0
}

.ant-empty-small .ant-empty-image {
    height: 35px
}

.ant-empty-img-default-ellipse {
    fill: #fff;
    fill-opacity: .08
}

.ant-empty-img-default-path-1 {
    fill: #262626
}

.ant-empty-img-default-path-2 {
    fill: url(#linearGradient-1)
}

.ant-empty-img-default-path-3 {
    fill: #595959
}

.ant-empty-img-default-path-4 {
    fill: #434343
}

.ant-empty-img-default-path-5 {
    fill: #595959
}

.ant-empty-img-default-g {
    fill: #434343
}

.ant-empty-img-simple-ellipse {
    fill: #fff;
    fill-opacity: .08
}

.ant-empty-img-simple-g {
    stroke: #434343
}

.ant-empty-img-simple-path {
    fill: #262626;
    stroke: #434343
}

.ant-empty-rtl {
    direction: rtl
}

.ant-form-item .ant-input-number+.ant-form-text {
    margin-left: 8px
}

.ant-form-inline {
    display: flex;
    flex-wrap: wrap
}

.ant-form-inline .ant-form-item {
    flex: none;
    flex-wrap: nowrap;
    margin-bottom: 0;
    margin-right: 16px
}

.ant-form-inline .ant-form-item-with-help {
    margin-bottom: 24px
}

.ant-form-inline .ant-form-item>.ant-form-item-control,.ant-form-inline .ant-form-item>.ant-form-item-label {
    display: inline-block;
    vertical-align: top
}

.ant-form-inline .ant-form-item>.ant-form-item-label {
    flex: none
}

.ant-form-inline .ant-form-item .ant-form-item-has-feedback,.ant-form-inline .ant-form-item .ant-form-text {
    display: inline-block
}

.ant-form-horizontal .ant-form-item-label {
    flex-grow: 0
}

.ant-form-horizontal .ant-form-item-control {
    flex: 1 1;
    min-width: 0
}

.ant-form-horizontal .ant-form-item-label[class$="-24"]+.ant-form-item-control,.ant-form-horizontal .ant-form-item-label[class*="-24 "]+.ant-form-item-control {
    min-width: 0;
    min-width: auto
}

.ant-form-vertical .ant-form-item-row {
    flex-direction: column
}

.ant-form-vertical .ant-form-item-label>label {
    height: auto
}

.ant-form-vertical .ant-form-item .ant-form-item-control {
    width: 100%
}

.ant-col-24.ant-form-item-label,.ant-col-xl-24.ant-form-item-label,.ant-form-vertical .ant-form-item-label {
    line-height: 1.5715;
    padding: 0 0 8px;
    text-align: left;
    white-space: normal
}

.ant-col-24.ant-form-item-label>label,.ant-col-xl-24.ant-form-item-label>label,.ant-form-vertical .ant-form-item-label>label {
    margin: 0
}

.ant-col-24.ant-form-item-label>label:after,.ant-col-xl-24.ant-form-item-label>label:after,.ant-form-vertical .ant-form-item-label>label:after {
    display: none
}

.ant-form-rtl.ant-col-24.ant-form-item-label,.ant-form-rtl.ant-col-xl-24.ant-form-item-label,.ant-form-rtl.ant-form-vertical .ant-form-item-label {
    text-align: right
}

@media (max-width: 575px) {
    .ant-form-item .ant-form-item-label {
        line-height:1.5715;
        padding: 0 0 8px;
        text-align: left;
        white-space: normal
    }

    .ant-form-item .ant-form-item-label>label {
        margin: 0
    }

    .ant-form-item .ant-form-item-label>label:after {
        display: none
    }

    .ant-form-rtl.ant-form-item .ant-form-item-label {
        text-align: right
    }

    .ant-form .ant-form-item {
        flex-wrap: wrap
    }

    .ant-form .ant-form-item .ant-form-item-control,.ant-form .ant-form-item .ant-form-item-label {
        flex: 0 0 100%;
        max-width: 100%
    }

    .ant-col-xs-24.ant-form-item-label {
        line-height: 1.5715;
        padding: 0 0 8px;
        text-align: left;
        white-space: normal
    }

    .ant-col-xs-24.ant-form-item-label>label {
        margin: 0
    }

    .ant-col-xs-24.ant-form-item-label>label:after {
        display: none
    }

    .ant-form-rtl.ant-col-xs-24.ant-form-item-label {
        text-align: right
    }
}

@media (max-width: 767px) {
    .ant-col-sm-24.ant-form-item-label {
        line-height:1.5715;
        padding: 0 0 8px;
        text-align: left;
        white-space: normal
    }

    .ant-col-sm-24.ant-form-item-label>label {
        margin: 0
    }

    .ant-col-sm-24.ant-form-item-label>label:after {
        display: none
    }

    .ant-form-rtl.ant-col-sm-24.ant-form-item-label {
        text-align: right
    }
}

@media (max-width: 991px) {
    .ant-col-md-24.ant-form-item-label {
        line-height:1.5715;
        padding: 0 0 8px;
        text-align: left;
        white-space: normal
    }

    .ant-col-md-24.ant-form-item-label>label {
        margin: 0
    }

    .ant-col-md-24.ant-form-item-label>label:after {
        display: none
    }

    .ant-form-rtl.ant-col-md-24.ant-form-item-label {
        text-align: right
    }
}

@media (max-width: 1199px) {
    .ant-col-lg-24.ant-form-item-label {
        line-height:1.5715;
        padding: 0 0 8px;
        text-align: left;
        white-space: normal
    }

    .ant-col-lg-24.ant-form-item-label>label {
        margin: 0
    }

    .ant-col-lg-24.ant-form-item-label>label:after {
        display: none
    }

    .ant-form-rtl.ant-col-lg-24.ant-form-item-label {
        text-align: right
    }
}

@media (max-width: 1599px) {
    .ant-col-xl-24.ant-form-item-label {
        line-height:1.5715;
        padding: 0 0 8px;
        text-align: left;
        white-space: normal
    }

    .ant-col-xl-24.ant-form-item-label>label {
        margin: 0
    }

    .ant-col-xl-24.ant-form-item-label>label:after {
        display: none
    }

    .ant-form-rtl.ant-col-xl-24.ant-form-item-label {
        text-align: right
    }
}

.ant-form-item-explain-error {
    color: #a61d24
}

.ant-form-item-explain-warning {
    color: #d89614
}

.ant-form-item-has-feedback .ant-switch {
    margin: 2px 0 4px
}

.ant-form-item-has-warning .ant-form-item-split {
    color: #d89614
}

.ant-form-item-has-error .ant-form-item-split {
    color: #a61d24
}

.ant-form {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-form legend {
    border: 0;
    border-bottom: 1px solid #434343;
    color: hsla(0,0%,100%,.45);
    display: block;
    font-size: 16px;
    line-height: inherit;
    margin-bottom: 20px;
    padding: 0;
    width: 100%
}

.ant-form label {
    font-size: 14px
}

.ant-form input[type=search] {
    box-sizing: border-box
}

.ant-form input[type=checkbox],.ant-form input[type=radio] {
    line-height: normal
}

.ant-form input[type=file] {
    display: block
}

.ant-form input[type=range] {
    display: block;
    width: 100%
}

.ant-form select[multiple],.ant-form select[size] {
    height: auto
}

.ant-form input[type=checkbox]:focus,.ant-form input[type=file]:focus,.ant-form input[type=radio]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.ant-form output {
    color: hsla(0,0%,100%,.85);
    display: block;
    font-size: 14px;
    line-height: 1.5715;
    padding-top: 15px
}

.ant-form .ant-form-text {
    display: inline-block;
    padding-right: 8px
}

.ant-form-small .ant-form-item-label>label {
    height: 24px
}

.ant-form-small .ant-form-item-control-input {
    min-height: 24px
}

.ant-form-large .ant-form-item-label>label {
    height: 40px
}

.ant-form-large .ant-form-item-control-input {
    min-height: 40px
}

.ant-form-item {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    vertical-align: top
}

.ant-form-item-with-help {
    transition: none
}

.ant-form-item-hidden,.ant-form-item-hidden.ant-row {
    display: none
}

.ant-form-item-label {
    display: inline-block;
    flex-grow: 0;
    overflow: hidden;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap
}

.ant-form-item-label-left {
    text-align: left
}

.ant-form-item-label-wrap {
    line-height: 1.3215em;
    overflow: visible;
    overflow: initial;
    white-space: inherit
}

.ant-form-item-label>label {
    align-items: center;
    color: hsla(0,0%,100%,.85);
    display: inline-flex;
    font-size: 14px;
    height: 32px;
    max-width: 100%;
    position: relative
}

.ant-form-item-label>label>.anticon {
    font-size: 14px;
    vertical-align: top
}

.ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional):before {
    color: #a61d24;
    content: "*";
    display: inline-block;
    font-family: SimSun,sans-serif;
    font-size: 14px;
    line-height: 1;
    margin-right: 4px
}

.ant-form-hide-required-mark .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional):before {
    display: none
}

.ant-form-item-label>label .ant-form-item-optional {
    color: hsla(0,0%,100%,.45);
    display: inline-block;
    margin-left: 4px
}

.ant-form-hide-required-mark .ant-form-item-label>label .ant-form-item-optional {
    display: none
}

.ant-form-item-label>label .ant-form-item-tooltip {
    color: hsla(0,0%,100%,.45);
    cursor: help;
    margin-inline-start:4px;-ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb
}

.ant-form-item-label>label:after {
    content: ":";
    margin: 0 8px 0 2px;
    position: relative;
    top: -.5px
}

.ant-form-item-label>label.ant-form-item-no-colon:after {
    content: " "
}

.ant-form-item-control {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.ant-form-item-control:first-child:not([class^=ant-col-]):not([class*=" ant-col-"]) {
    width: 100%
}

.ant-form-item-control-input {
    align-items: center;
    display: flex;
    min-height: 32px;
    position: relative
}

.ant-form-item-control-input-content {
    flex: auto;
    max-width: 100%
}

.ant-form-item-explain,.ant-form-item-extra {
    clear: both;
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    line-height: 1.5715;
    transition: color .3s cubic-bezier(.215,.61,.355,1)
}

.ant-form-item-explain-connected {
    width: 100%
}

.ant-form-item-extra {
    min-height: 24px
}

.ant-form-item-with-help .ant-form-item-explain {
    height: auto;
    opacity: 1
}

.ant-form-item-feedback-icon {
    animation: zoomIn .3s cubic-bezier(.12,.4,.29,1.46);
    font-size: 14px;
    pointer-events: none;
    text-align: center;
    visibility: visible
}

.ant-form-item-feedback-icon-success {
    color: #49aa19
}

.ant-form-item-feedback-icon-error {
    color: #a61d24
}

.ant-form-item-feedback-icon-warning {
    color: #d89614
}

.ant-form-item-feedback-icon-validating {
    color: #f0b90b
}

.ant-show-help {
    transition: opacity .3s cubic-bezier(.645,.045,.355,1)
}

.ant-show-help-appear,.ant-show-help-enter {
    opacity: 0
}

.ant-show-help-appear-active,.ant-show-help-enter-active,.ant-show-help-leave {
    opacity: 1
}

.ant-show-help-leave-active {
    opacity: 0
}

.ant-show-help-item {
    overflow: hidden;
    transition: height .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1),transform .3s cubic-bezier(.645,.045,.355,1)!important
}

.ant-show-help-item-appear,.ant-show-help-item-enter {
    opacity: 0;
    transform: translateY(-5px)
}

.ant-show-help-item-appear-active,.ant-show-help-item-enter-active {
    opacity: 1;
    transform: translateY(0)
}

.ant-show-help-item-leave {
    transition: height .2s cubic-bezier(.645,.045,.355,1),opacity .2s cubic-bezier(.645,.045,.355,1),transform .2s cubic-bezier(.645,.045,.355,1)!important
}

.ant-show-help-item-leave-active {
    transform: translateY(-5px)
}

@keyframes diffZoomIn1 {
    0% {
        opacity: 0;
        transform: scale(0)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes diffZoomIn2 {
    0% {
        opacity: 0;
        transform: scale(0)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes diffZoomIn3 {
    0% {
        opacity: 0;
        transform: scale(0)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.ant-form-rtl {
    direction: rtl
}

.ant-form-rtl .ant-form-item-label {
    text-align: left
}

.ant-form-rtl .ant-form-item-label>label.ant-form-item-required:before {
    margin-left: 4px;
    margin-right: 0
}

.ant-form-rtl .ant-form-item-label>label:after {
    margin: 0 2px 0 8px
}

.ant-form-rtl .ant-form-item-label>label .ant-form-item-optional {
    margin-left: 0;
    margin-right: 4px
}

.ant-col-rtl .ant-form-item-control:first-child {
    width: 100%
}

.ant-form-rtl .ant-form-item-has-feedback .ant-input {
    padding-left: 24px;
    padding-right: 11px
}

.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input-suffix {
    padding-left: 18px;
    padding-right: 11px
}

.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input,.ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number {
    padding: 0
}

.ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix {
    left: 28px;
    right: auto
}

.ant-form-rtl .ant-form-item-has-feedback .ant-input-number {
    padding-left: 18px
}

.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon)>.ant-select .ant-select-arrow,.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon)>.ant-select .ant-select-clear,.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon)>.ant-select .ant-select-arrow,.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon)>.ant-select .ant-select-clear,.ant-form-rtl .ant-form-item-has-feedback>.ant-select .ant-select-arrow,.ant-form-rtl .ant-form-item-has-feedback>.ant-select .ant-select-clear {
    left: 32px;
    right: auto
}

.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon)>.ant-select .ant-select-selection-selected-value,.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon)>.ant-select .ant-select-selection-selected-value,.ant-form-rtl .ant-form-item-has-feedback>.ant-select .ant-select-selection-selected-value {
    padding-left: 42px;
    padding-right: 0
}

.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-arrow {
    margin-left: 19px;
    margin-right: 0
}

.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-clear {
    left: 32px;
    right: auto
}

.ant-form-rtl .ant-form-item-has-feedback .ant-picker,.ant-form-rtl .ant-form-item-has-feedback .ant-picker-large {
    padding-left: 29.2px;
    padding-right: 11px
}

.ant-form-rtl .ant-form-item-has-feedback .ant-picker-small {
    padding-left: 25.2px;
    padding-right: 7px
}

.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon,.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon,.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-warning .ant-form-item-children-icon,.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-is-validating .ant-form-item-children-icon {
    left: 0;
    right: auto
}

.ant-form-rtl.ant-form-inline .ant-form-item {
    margin-left: 16px;
    margin-right: 0
}

.ant-row {
    flex-flow: row wrap;
    min-width: 0
}

.ant-row,.ant-row:after,.ant-row:before {
    display: flex
}

.ant-row-no-wrap {
    flex-wrap: nowrap
}

.ant-row-start {
    justify-content: flex-start
}

.ant-row-center {
    justify-content: center
}

.ant-row-end {
    justify-content: flex-end
}

.ant-row-space-between {
    justify-content: space-between
}

.ant-row-space-around {
    justify-content: space-around
}

.ant-row-space-evenly {
    justify-content: space-evenly
}

.ant-row-top {
    align-items: flex-start
}

.ant-row-middle {
    align-items: center
}

.ant-row-bottom {
    align-items: flex-end
}

.ant-col {
    max-width: 100%;
    min-height: 1px;
    position: relative
}

.ant-col-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%
}

.ant-col-push-24 {
    left: 100%
}

.ant-col-pull-24 {
    right: 100%
}

.ant-col-offset-24 {
    margin-left: 100%
}

.ant-col-order-24 {
    order: 24
}

.ant-col-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%
}

.ant-col-push-23 {
    left: 95.83333333%
}

.ant-col-pull-23 {
    right: 95.83333333%
}

.ant-col-offset-23 {
    margin-left: 95.83333333%
}

.ant-col-order-23 {
    order: 23
}

.ant-col-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%
}

.ant-col-push-22 {
    left: 91.66666667%
}

.ant-col-pull-22 {
    right: 91.66666667%
}

.ant-col-offset-22 {
    margin-left: 91.66666667%
}

.ant-col-order-22 {
    order: 22
}

.ant-col-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%
}

.ant-col-push-21 {
    left: 87.5%
}

.ant-col-pull-21 {
    right: 87.5%
}

.ant-col-offset-21 {
    margin-left: 87.5%
}

.ant-col-order-21 {
    order: 21
}

.ant-col-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%
}

.ant-col-push-20 {
    left: 83.33333333%
}

.ant-col-pull-20 {
    right: 83.33333333%
}

.ant-col-offset-20 {
    margin-left: 83.33333333%
}

.ant-col-order-20 {
    order: 20
}

.ant-col-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%
}

.ant-col-push-19 {
    left: 79.16666667%
}

.ant-col-pull-19 {
    right: 79.16666667%
}

.ant-col-offset-19 {
    margin-left: 79.16666667%
}

.ant-col-order-19 {
    order: 19
}

.ant-col-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%
}

.ant-col-push-18 {
    left: 75%
}

.ant-col-pull-18 {
    right: 75%
}

.ant-col-offset-18 {
    margin-left: 75%
}

.ant-col-order-18 {
    order: 18
}

.ant-col-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%
}

.ant-col-push-17 {
    left: 70.83333333%
}

.ant-col-pull-17 {
    right: 70.83333333%
}

.ant-col-offset-17 {
    margin-left: 70.83333333%
}

.ant-col-order-17 {
    order: 17
}

.ant-col-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%
}

.ant-col-push-16 {
    left: 66.66666667%
}

.ant-col-pull-16 {
    right: 66.66666667%
}

.ant-col-offset-16 {
    margin-left: 66.66666667%
}

.ant-col-order-16 {
    order: 16
}

.ant-col-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%
}

.ant-col-push-15 {
    left: 62.5%
}

.ant-col-pull-15 {
    right: 62.5%
}

.ant-col-offset-15 {
    margin-left: 62.5%
}

.ant-col-order-15 {
    order: 15
}

.ant-col-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%
}

.ant-col-push-14 {
    left: 58.33333333%
}

.ant-col-pull-14 {
    right: 58.33333333%
}

.ant-col-offset-14 {
    margin-left: 58.33333333%
}

.ant-col-order-14 {
    order: 14
}

.ant-col-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%
}

.ant-col-push-13 {
    left: 54.16666667%
}

.ant-col-pull-13 {
    right: 54.16666667%
}

.ant-col-offset-13 {
    margin-left: 54.16666667%
}

.ant-col-order-13 {
    order: 13
}

.ant-col-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%
}

.ant-col-push-12 {
    left: 50%
}

.ant-col-pull-12 {
    right: 50%
}

.ant-col-offset-12 {
    margin-left: 50%
}

.ant-col-order-12 {
    order: 12
}

.ant-col-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%
}

.ant-col-push-11 {
    left: 45.83333333%
}

.ant-col-pull-11 {
    right: 45.83333333%
}

.ant-col-offset-11 {
    margin-left: 45.83333333%
}

.ant-col-order-11 {
    order: 11
}

.ant-col-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%
}

.ant-col-push-10 {
    left: 41.66666667%
}

.ant-col-pull-10 {
    right: 41.66666667%
}

.ant-col-offset-10 {
    margin-left: 41.66666667%
}

.ant-col-order-10 {
    order: 10
}

.ant-col-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%
}

.ant-col-push-9 {
    left: 37.5%
}

.ant-col-pull-9 {
    right: 37.5%
}

.ant-col-offset-9 {
    margin-left: 37.5%
}

.ant-col-order-9 {
    order: 9
}

.ant-col-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%
}

.ant-col-push-8 {
    left: 33.33333333%
}

.ant-col-pull-8 {
    right: 33.33333333%
}

.ant-col-offset-8 {
    margin-left: 33.33333333%
}

.ant-col-order-8 {
    order: 8
}

.ant-col-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%
}

.ant-col-push-7 {
    left: 29.16666667%
}

.ant-col-pull-7 {
    right: 29.16666667%
}

.ant-col-offset-7 {
    margin-left: 29.16666667%
}

.ant-col-order-7 {
    order: 7
}

.ant-col-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%
}

.ant-col-push-6 {
    left: 25%
}

.ant-col-pull-6 {
    right: 25%
}

.ant-col-offset-6 {
    margin-left: 25%
}

.ant-col-order-6 {
    order: 6
}

.ant-col-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%
}

.ant-col-push-5 {
    left: 20.83333333%
}

.ant-col-pull-5 {
    right: 20.83333333%
}

.ant-col-offset-5 {
    margin-left: 20.83333333%
}

.ant-col-order-5 {
    order: 5
}

.ant-col-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%
}

.ant-col-push-4 {
    left: 16.66666667%
}

.ant-col-pull-4 {
    right: 16.66666667%
}

.ant-col-offset-4 {
    margin-left: 16.66666667%
}

.ant-col-order-4 {
    order: 4
}

.ant-col-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%
}

.ant-col-push-3 {
    left: 12.5%
}

.ant-col-pull-3 {
    right: 12.5%
}

.ant-col-offset-3 {
    margin-left: 12.5%
}

.ant-col-order-3 {
    order: 3
}

.ant-col-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%
}

.ant-col-push-2 {
    left: 8.33333333%
}

.ant-col-pull-2 {
    right: 8.33333333%
}

.ant-col-offset-2 {
    margin-left: 8.33333333%
}

.ant-col-order-2 {
    order: 2
}

.ant-col-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%
}

.ant-col-push-1 {
    left: 4.16666667%
}

.ant-col-pull-1 {
    right: 4.16666667%
}

.ant-col-offset-1 {
    margin-left: 4.16666667%
}

.ant-col-order-1 {
    order: 1
}

.ant-col-0 {
    display: none
}

.ant-col-offset-0 {
    margin-left: 0
}

.ant-col-order-0 {
    order: 0
}

.ant-col-offset-0.ant-col-rtl {
    margin-right: 0
}

.ant-col-push-1.ant-col-rtl {
    left: auto;
    right: 4.16666667%
}

.ant-col-pull-1.ant-col-rtl {
    left: 4.16666667%;
    right: auto
}

.ant-col-offset-1.ant-col-rtl {
    margin-left: 0;
    margin-right: 4.16666667%
}

.ant-col-push-2.ant-col-rtl {
    left: auto;
    right: 8.33333333%
}

.ant-col-pull-2.ant-col-rtl {
    left: 8.33333333%;
    right: auto
}

.ant-col-offset-2.ant-col-rtl {
    margin-left: 0;
    margin-right: 8.33333333%
}

.ant-col-push-3.ant-col-rtl {
    left: auto;
    right: 12.5%
}

.ant-col-pull-3.ant-col-rtl {
    left: 12.5%;
    right: auto
}

.ant-col-offset-3.ant-col-rtl {
    margin-left: 0;
    margin-right: 12.5%
}

.ant-col-push-4.ant-col-rtl {
    left: auto;
    right: 16.66666667%
}

.ant-col-pull-4.ant-col-rtl {
    left: 16.66666667%;
    right: auto
}

.ant-col-offset-4.ant-col-rtl {
    margin-left: 0;
    margin-right: 16.66666667%
}

.ant-col-push-5.ant-col-rtl {
    left: auto;
    right: 20.83333333%
}

.ant-col-pull-5.ant-col-rtl {
    left: 20.83333333%;
    right: auto
}

.ant-col-offset-5.ant-col-rtl {
    margin-left: 0;
    margin-right: 20.83333333%
}

.ant-col-push-6.ant-col-rtl {
    left: auto;
    right: 25%
}

.ant-col-pull-6.ant-col-rtl {
    left: 25%;
    right: auto
}

.ant-col-offset-6.ant-col-rtl {
    margin-left: 0;
    margin-right: 25%
}

.ant-col-push-7.ant-col-rtl {
    left: auto;
    right: 29.16666667%
}

.ant-col-pull-7.ant-col-rtl {
    left: 29.16666667%;
    right: auto
}

.ant-col-offset-7.ant-col-rtl {
    margin-left: 0;
    margin-right: 29.16666667%
}

.ant-col-push-8.ant-col-rtl {
    left: auto;
    right: 33.33333333%
}

.ant-col-pull-8.ant-col-rtl {
    left: 33.33333333%;
    right: auto
}

.ant-col-offset-8.ant-col-rtl {
    margin-left: 0;
    margin-right: 33.33333333%
}

.ant-col-push-9.ant-col-rtl {
    left: auto;
    right: 37.5%
}

.ant-col-pull-9.ant-col-rtl {
    left: 37.5%;
    right: auto
}

.ant-col-offset-9.ant-col-rtl {
    margin-left: 0;
    margin-right: 37.5%
}

.ant-col-push-10.ant-col-rtl {
    left: auto;
    right: 41.66666667%
}

.ant-col-pull-10.ant-col-rtl {
    left: 41.66666667%;
    right: auto
}

.ant-col-offset-10.ant-col-rtl {
    margin-left: 0;
    margin-right: 41.66666667%
}

.ant-col-push-11.ant-col-rtl {
    left: auto;
    right: 45.83333333%
}

.ant-col-pull-11.ant-col-rtl {
    left: 45.83333333%;
    right: auto
}

.ant-col-offset-11.ant-col-rtl {
    margin-left: 0;
    margin-right: 45.83333333%
}

.ant-col-push-12.ant-col-rtl {
    left: auto;
    right: 50%
}

.ant-col-pull-12.ant-col-rtl {
    left: 50%;
    right: auto
}

.ant-col-offset-12.ant-col-rtl {
    margin-left: 0;
    margin-right: 50%
}

.ant-col-push-13.ant-col-rtl {
    left: auto;
    right: 54.16666667%
}

.ant-col-pull-13.ant-col-rtl {
    left: 54.16666667%;
    right: auto
}

.ant-col-offset-13.ant-col-rtl {
    margin-left: 0;
    margin-right: 54.16666667%
}

.ant-col-push-14.ant-col-rtl {
    left: auto;
    right: 58.33333333%
}

.ant-col-pull-14.ant-col-rtl {
    left: 58.33333333%;
    right: auto
}

.ant-col-offset-14.ant-col-rtl {
    margin-left: 0;
    margin-right: 58.33333333%
}

.ant-col-push-15.ant-col-rtl {
    left: auto;
    right: 62.5%
}

.ant-col-pull-15.ant-col-rtl {
    left: 62.5%;
    right: auto
}

.ant-col-offset-15.ant-col-rtl {
    margin-left: 0;
    margin-right: 62.5%
}

.ant-col-push-16.ant-col-rtl {
    left: auto;
    right: 66.66666667%
}

.ant-col-pull-16.ant-col-rtl {
    left: 66.66666667%;
    right: auto
}

.ant-col-offset-16.ant-col-rtl {
    margin-left: 0;
    margin-right: 66.66666667%
}

.ant-col-push-17.ant-col-rtl {
    left: auto;
    right: 70.83333333%
}

.ant-col-pull-17.ant-col-rtl {
    left: 70.83333333%;
    right: auto
}

.ant-col-offset-17.ant-col-rtl {
    margin-left: 0;
    margin-right: 70.83333333%
}

.ant-col-push-18.ant-col-rtl {
    left: auto;
    right: 75%
}

.ant-col-pull-18.ant-col-rtl {
    left: 75%;
    right: auto
}

.ant-col-offset-18.ant-col-rtl {
    margin-left: 0;
    margin-right: 75%
}

.ant-col-push-19.ant-col-rtl {
    left: auto;
    right: 79.16666667%
}

.ant-col-pull-19.ant-col-rtl {
    left: 79.16666667%;
    right: auto
}

.ant-col-offset-19.ant-col-rtl {
    margin-left: 0;
    margin-right: 79.16666667%
}

.ant-col-push-20.ant-col-rtl {
    left: auto;
    right: 83.33333333%
}

.ant-col-pull-20.ant-col-rtl {
    left: 83.33333333%;
    right: auto
}

.ant-col-offset-20.ant-col-rtl {
    margin-left: 0;
    margin-right: 83.33333333%
}

.ant-col-push-21.ant-col-rtl {
    left: auto;
    right: 87.5%
}

.ant-col-pull-21.ant-col-rtl {
    left: 87.5%;
    right: auto
}

.ant-col-offset-21.ant-col-rtl {
    margin-left: 0;
    margin-right: 87.5%
}

.ant-col-push-22.ant-col-rtl {
    left: auto;
    right: 91.66666667%
}

.ant-col-pull-22.ant-col-rtl {
    left: 91.66666667%;
    right: auto
}

.ant-col-offset-22.ant-col-rtl {
    margin-left: 0;
    margin-right: 91.66666667%
}

.ant-col-push-23.ant-col-rtl {
    left: auto;
    right: 95.83333333%
}

.ant-col-pull-23.ant-col-rtl {
    left: 95.83333333%;
    right: auto
}

.ant-col-offset-23.ant-col-rtl {
    margin-left: 0;
    margin-right: 95.83333333%
}

.ant-col-push-24.ant-col-rtl {
    left: auto;
    right: 100%
}

.ant-col-pull-24.ant-col-rtl {
    left: 100%;
    right: auto
}

.ant-col-offset-24.ant-col-rtl {
    margin-left: 0;
    margin-right: 100%
}

.ant-col-xs-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%
}

.ant-col-xs-push-24 {
    left: 100%
}

.ant-col-xs-pull-24 {
    right: 100%
}

.ant-col-xs-offset-24 {
    margin-left: 100%
}

.ant-col-xs-order-24 {
    order: 24
}

.ant-col-xs-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%
}

.ant-col-xs-push-23 {
    left: 95.83333333%
}

.ant-col-xs-pull-23 {
    right: 95.83333333%
}

.ant-col-xs-offset-23 {
    margin-left: 95.83333333%
}

.ant-col-xs-order-23 {
    order: 23
}

.ant-col-xs-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%
}

.ant-col-xs-push-22 {
    left: 91.66666667%
}

.ant-col-xs-pull-22 {
    right: 91.66666667%
}

.ant-col-xs-offset-22 {
    margin-left: 91.66666667%
}

.ant-col-xs-order-22 {
    order: 22
}

.ant-col-xs-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%
}

.ant-col-xs-push-21 {
    left: 87.5%
}

.ant-col-xs-pull-21 {
    right: 87.5%
}

.ant-col-xs-offset-21 {
    margin-left: 87.5%
}

.ant-col-xs-order-21 {
    order: 21
}

.ant-col-xs-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%
}

.ant-col-xs-push-20 {
    left: 83.33333333%
}

.ant-col-xs-pull-20 {
    right: 83.33333333%
}

.ant-col-xs-offset-20 {
    margin-left: 83.33333333%
}

.ant-col-xs-order-20 {
    order: 20
}

.ant-col-xs-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%
}

.ant-col-xs-push-19 {
    left: 79.16666667%
}

.ant-col-xs-pull-19 {
    right: 79.16666667%
}

.ant-col-xs-offset-19 {
    margin-left: 79.16666667%
}

.ant-col-xs-order-19 {
    order: 19
}

.ant-col-xs-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%
}

.ant-col-xs-push-18 {
    left: 75%
}

.ant-col-xs-pull-18 {
    right: 75%
}

.ant-col-xs-offset-18 {
    margin-left: 75%
}

.ant-col-xs-order-18 {
    order: 18
}

.ant-col-xs-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%
}

.ant-col-xs-push-17 {
    left: 70.83333333%
}

.ant-col-xs-pull-17 {
    right: 70.83333333%
}

.ant-col-xs-offset-17 {
    margin-left: 70.83333333%
}

.ant-col-xs-order-17 {
    order: 17
}

.ant-col-xs-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%
}

.ant-col-xs-push-16 {
    left: 66.66666667%
}

.ant-col-xs-pull-16 {
    right: 66.66666667%
}

.ant-col-xs-offset-16 {
    margin-left: 66.66666667%
}

.ant-col-xs-order-16 {
    order: 16
}

.ant-col-xs-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%
}

.ant-col-xs-push-15 {
    left: 62.5%
}

.ant-col-xs-pull-15 {
    right: 62.5%
}

.ant-col-xs-offset-15 {
    margin-left: 62.5%
}

.ant-col-xs-order-15 {
    order: 15
}

.ant-col-xs-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%
}

.ant-col-xs-push-14 {
    left: 58.33333333%
}

.ant-col-xs-pull-14 {
    right: 58.33333333%
}

.ant-col-xs-offset-14 {
    margin-left: 58.33333333%
}

.ant-col-xs-order-14 {
    order: 14
}

.ant-col-xs-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%
}

.ant-col-xs-push-13 {
    left: 54.16666667%
}

.ant-col-xs-pull-13 {
    right: 54.16666667%
}

.ant-col-xs-offset-13 {
    margin-left: 54.16666667%
}

.ant-col-xs-order-13 {
    order: 13
}

.ant-col-xs-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%
}

.ant-col-xs-push-12 {
    left: 50%
}

.ant-col-xs-pull-12 {
    right: 50%
}

.ant-col-xs-offset-12 {
    margin-left: 50%
}

.ant-col-xs-order-12 {
    order: 12
}

.ant-col-xs-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%
}

.ant-col-xs-push-11 {
    left: 45.83333333%
}

.ant-col-xs-pull-11 {
    right: 45.83333333%
}

.ant-col-xs-offset-11 {
    margin-left: 45.83333333%
}

.ant-col-xs-order-11 {
    order: 11
}

.ant-col-xs-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%
}

.ant-col-xs-push-10 {
    left: 41.66666667%
}

.ant-col-xs-pull-10 {
    right: 41.66666667%
}

.ant-col-xs-offset-10 {
    margin-left: 41.66666667%
}

.ant-col-xs-order-10 {
    order: 10
}

.ant-col-xs-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%
}

.ant-col-xs-push-9 {
    left: 37.5%
}

.ant-col-xs-pull-9 {
    right: 37.5%
}

.ant-col-xs-offset-9 {
    margin-left: 37.5%
}

.ant-col-xs-order-9 {
    order: 9
}

.ant-col-xs-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%
}

.ant-col-xs-push-8 {
    left: 33.33333333%
}

.ant-col-xs-pull-8 {
    right: 33.33333333%
}

.ant-col-xs-offset-8 {
    margin-left: 33.33333333%
}

.ant-col-xs-order-8 {
    order: 8
}

.ant-col-xs-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%
}

.ant-col-xs-push-7 {
    left: 29.16666667%
}

.ant-col-xs-pull-7 {
    right: 29.16666667%
}

.ant-col-xs-offset-7 {
    margin-left: 29.16666667%
}

.ant-col-xs-order-7 {
    order: 7
}

.ant-col-xs-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%
}

.ant-col-xs-push-6 {
    left: 25%
}

.ant-col-xs-pull-6 {
    right: 25%
}

.ant-col-xs-offset-6 {
    margin-left: 25%
}

.ant-col-xs-order-6 {
    order: 6
}

.ant-col-xs-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%
}

.ant-col-xs-push-5 {
    left: 20.83333333%
}

.ant-col-xs-pull-5 {
    right: 20.83333333%
}

.ant-col-xs-offset-5 {
    margin-left: 20.83333333%
}

.ant-col-xs-order-5 {
    order: 5
}

.ant-col-xs-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%
}

.ant-col-xs-push-4 {
    left: 16.66666667%
}

.ant-col-xs-pull-4 {
    right: 16.66666667%
}

.ant-col-xs-offset-4 {
    margin-left: 16.66666667%
}

.ant-col-xs-order-4 {
    order: 4
}

.ant-col-xs-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%
}

.ant-col-xs-push-3 {
    left: 12.5%
}

.ant-col-xs-pull-3 {
    right: 12.5%
}

.ant-col-xs-offset-3 {
    margin-left: 12.5%
}

.ant-col-xs-order-3 {
    order: 3
}

.ant-col-xs-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%
}

.ant-col-xs-push-2 {
    left: 8.33333333%
}

.ant-col-xs-pull-2 {
    right: 8.33333333%
}

.ant-col-xs-offset-2 {
    margin-left: 8.33333333%
}

.ant-col-xs-order-2 {
    order: 2
}

.ant-col-xs-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%
}

.ant-col-xs-push-1 {
    left: 4.16666667%
}

.ant-col-xs-pull-1 {
    right: 4.16666667%
}

.ant-col-xs-offset-1 {
    margin-left: 4.16666667%
}

.ant-col-xs-order-1 {
    order: 1
}

.ant-col-xs-0 {
    display: none
}

.ant-col-push-0 {
    left: auto
}

.ant-col-pull-0 {
    right: auto
}

.ant-col-xs-push-0 {
    left: auto
}

.ant-col-xs-pull-0 {
    right: auto
}

.ant-col-xs-offset-0 {
    margin-left: 0
}

.ant-col-xs-order-0 {
    order: 0
}

.ant-col-push-0.ant-col-rtl {
    right: auto
}

.ant-col-pull-0.ant-col-rtl {
    left: auto
}

.ant-col-xs-push-0.ant-col-rtl {
    right: auto
}

.ant-col-xs-pull-0.ant-col-rtl {
    left: auto
}

.ant-col-xs-offset-0.ant-col-rtl {
    margin-right: 0
}

.ant-col-xs-push-1.ant-col-rtl {
    left: auto;
    right: 4.16666667%
}

.ant-col-xs-pull-1.ant-col-rtl {
    left: 4.16666667%;
    right: auto
}

.ant-col-xs-offset-1.ant-col-rtl {
    margin-left: 0;
    margin-right: 4.16666667%
}

.ant-col-xs-push-2.ant-col-rtl {
    left: auto;
    right: 8.33333333%
}

.ant-col-xs-pull-2.ant-col-rtl {
    left: 8.33333333%;
    right: auto
}

.ant-col-xs-offset-2.ant-col-rtl {
    margin-left: 0;
    margin-right: 8.33333333%
}

.ant-col-xs-push-3.ant-col-rtl {
    left: auto;
    right: 12.5%
}

.ant-col-xs-pull-3.ant-col-rtl {
    left: 12.5%;
    right: auto
}

.ant-col-xs-offset-3.ant-col-rtl {
    margin-left: 0;
    margin-right: 12.5%
}

.ant-col-xs-push-4.ant-col-rtl {
    left: auto;
    right: 16.66666667%
}

.ant-col-xs-pull-4.ant-col-rtl {
    left: 16.66666667%;
    right: auto
}

.ant-col-xs-offset-4.ant-col-rtl {
    margin-left: 0;
    margin-right: 16.66666667%
}

.ant-col-xs-push-5.ant-col-rtl {
    left: auto;
    right: 20.83333333%
}

.ant-col-xs-pull-5.ant-col-rtl {
    left: 20.83333333%;
    right: auto
}

.ant-col-xs-offset-5.ant-col-rtl {
    margin-left: 0;
    margin-right: 20.83333333%
}

.ant-col-xs-push-6.ant-col-rtl {
    left: auto;
    right: 25%
}

.ant-col-xs-pull-6.ant-col-rtl {
    left: 25%;
    right: auto
}

.ant-col-xs-offset-6.ant-col-rtl {
    margin-left: 0;
    margin-right: 25%
}

.ant-col-xs-push-7.ant-col-rtl {
    left: auto;
    right: 29.16666667%
}

.ant-col-xs-pull-7.ant-col-rtl {
    left: 29.16666667%;
    right: auto
}

.ant-col-xs-offset-7.ant-col-rtl {
    margin-left: 0;
    margin-right: 29.16666667%
}

.ant-col-xs-push-8.ant-col-rtl {
    left: auto;
    right: 33.33333333%
}

.ant-col-xs-pull-8.ant-col-rtl {
    left: 33.33333333%;
    right: auto
}

.ant-col-xs-offset-8.ant-col-rtl {
    margin-left: 0;
    margin-right: 33.33333333%
}

.ant-col-xs-push-9.ant-col-rtl {
    left: auto;
    right: 37.5%
}

.ant-col-xs-pull-9.ant-col-rtl {
    left: 37.5%;
    right: auto
}

.ant-col-xs-offset-9.ant-col-rtl {
    margin-left: 0;
    margin-right: 37.5%
}

.ant-col-xs-push-10.ant-col-rtl {
    left: auto;
    right: 41.66666667%
}

.ant-col-xs-pull-10.ant-col-rtl {
    left: 41.66666667%;
    right: auto
}

.ant-col-xs-offset-10.ant-col-rtl {
    margin-left: 0;
    margin-right: 41.66666667%
}

.ant-col-xs-push-11.ant-col-rtl {
    left: auto;
    right: 45.83333333%
}

.ant-col-xs-pull-11.ant-col-rtl {
    left: 45.83333333%;
    right: auto
}

.ant-col-xs-offset-11.ant-col-rtl {
    margin-left: 0;
    margin-right: 45.83333333%
}

.ant-col-xs-push-12.ant-col-rtl {
    left: auto;
    right: 50%
}

.ant-col-xs-pull-12.ant-col-rtl {
    left: 50%;
    right: auto
}

.ant-col-xs-offset-12.ant-col-rtl {
    margin-left: 0;
    margin-right: 50%
}

.ant-col-xs-push-13.ant-col-rtl {
    left: auto;
    right: 54.16666667%
}

.ant-col-xs-pull-13.ant-col-rtl {
    left: 54.16666667%;
    right: auto
}

.ant-col-xs-offset-13.ant-col-rtl {
    margin-left: 0;
    margin-right: 54.16666667%
}

.ant-col-xs-push-14.ant-col-rtl {
    left: auto;
    right: 58.33333333%
}

.ant-col-xs-pull-14.ant-col-rtl {
    left: 58.33333333%;
    right: auto
}

.ant-col-xs-offset-14.ant-col-rtl {
    margin-left: 0;
    margin-right: 58.33333333%
}

.ant-col-xs-push-15.ant-col-rtl {
    left: auto;
    right: 62.5%
}

.ant-col-xs-pull-15.ant-col-rtl {
    left: 62.5%;
    right: auto
}

.ant-col-xs-offset-15.ant-col-rtl {
    margin-left: 0;
    margin-right: 62.5%
}

.ant-col-xs-push-16.ant-col-rtl {
    left: auto;
    right: 66.66666667%
}

.ant-col-xs-pull-16.ant-col-rtl {
    left: 66.66666667%;
    right: auto
}

.ant-col-xs-offset-16.ant-col-rtl {
    margin-left: 0;
    margin-right: 66.66666667%
}

.ant-col-xs-push-17.ant-col-rtl {
    left: auto;
    right: 70.83333333%
}

.ant-col-xs-pull-17.ant-col-rtl {
    left: 70.83333333%;
    right: auto
}

.ant-col-xs-offset-17.ant-col-rtl {
    margin-left: 0;
    margin-right: 70.83333333%
}

.ant-col-xs-push-18.ant-col-rtl {
    left: auto;
    right: 75%
}

.ant-col-xs-pull-18.ant-col-rtl {
    left: 75%;
    right: auto
}

.ant-col-xs-offset-18.ant-col-rtl {
    margin-left: 0;
    margin-right: 75%
}

.ant-col-xs-push-19.ant-col-rtl {
    left: auto;
    right: 79.16666667%
}

.ant-col-xs-pull-19.ant-col-rtl {
    left: 79.16666667%;
    right: auto
}

.ant-col-xs-offset-19.ant-col-rtl {
    margin-left: 0;
    margin-right: 79.16666667%
}

.ant-col-xs-push-20.ant-col-rtl {
    left: auto;
    right: 83.33333333%
}

.ant-col-xs-pull-20.ant-col-rtl {
    left: 83.33333333%;
    right: auto
}

.ant-col-xs-offset-20.ant-col-rtl {
    margin-left: 0;
    margin-right: 83.33333333%
}

.ant-col-xs-push-21.ant-col-rtl {
    left: auto;
    right: 87.5%
}

.ant-col-xs-pull-21.ant-col-rtl {
    left: 87.5%;
    right: auto
}

.ant-col-xs-offset-21.ant-col-rtl {
    margin-left: 0;
    margin-right: 87.5%
}

.ant-col-xs-push-22.ant-col-rtl {
    left: auto;
    right: 91.66666667%
}

.ant-col-xs-pull-22.ant-col-rtl {
    left: 91.66666667%;
    right: auto
}

.ant-col-xs-offset-22.ant-col-rtl {
    margin-left: 0;
    margin-right: 91.66666667%
}

.ant-col-xs-push-23.ant-col-rtl {
    left: auto;
    right: 95.83333333%
}

.ant-col-xs-pull-23.ant-col-rtl {
    left: 95.83333333%;
    right: auto
}

.ant-col-xs-offset-23.ant-col-rtl {
    margin-left: 0;
    margin-right: 95.83333333%
}

.ant-col-xs-push-24.ant-col-rtl {
    left: auto;
    right: 100%
}

.ant-col-xs-pull-24.ant-col-rtl {
    left: 100%;
    right: auto
}

.ant-col-xs-offset-24.ant-col-rtl {
    margin-left: 0;
    margin-right: 100%
}

@media (min-width: 576px) {
    .ant-col-sm-24 {
        display:block;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ant-col-sm-push-24 {
        left: 100%
    }

    .ant-col-sm-pull-24 {
        right: 100%
    }

    .ant-col-sm-offset-24 {
        margin-left: 100%
    }

    .ant-col-sm-order-24 {
        order: 24
    }

    .ant-col-sm-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%
    }

    .ant-col-sm-push-23 {
        left: 95.83333333%
    }

    .ant-col-sm-pull-23 {
        right: 95.83333333%
    }

    .ant-col-sm-offset-23 {
        margin-left: 95.83333333%
    }

    .ant-col-sm-order-23 {
        order: 23
    }

    .ant-col-sm-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%
    }

    .ant-col-sm-push-22 {
        left: 91.66666667%
    }

    .ant-col-sm-pull-22 {
        right: 91.66666667%
    }

    .ant-col-sm-offset-22 {
        margin-left: 91.66666667%
    }

    .ant-col-sm-order-22 {
        order: 22
    }

    .ant-col-sm-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%
    }

    .ant-col-sm-push-21 {
        left: 87.5%
    }

    .ant-col-sm-pull-21 {
        right: 87.5%
    }

    .ant-col-sm-offset-21 {
        margin-left: 87.5%
    }

    .ant-col-sm-order-21 {
        order: 21
    }

    .ant-col-sm-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }

    .ant-col-sm-push-20 {
        left: 83.33333333%
    }

    .ant-col-sm-pull-20 {
        right: 83.33333333%
    }

    .ant-col-sm-offset-20 {
        margin-left: 83.33333333%
    }

    .ant-col-sm-order-20 {
        order: 20
    }

    .ant-col-sm-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%
    }

    .ant-col-sm-push-19 {
        left: 79.16666667%
    }

    .ant-col-sm-pull-19 {
        right: 79.16666667%
    }

    .ant-col-sm-offset-19 {
        margin-left: 79.16666667%
    }

    .ant-col-sm-order-19 {
        order: 19
    }

    .ant-col-sm-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ant-col-sm-push-18 {
        left: 75%
    }

    .ant-col-sm-pull-18 {
        right: 75%
    }

    .ant-col-sm-offset-18 {
        margin-left: 75%
    }

    .ant-col-sm-order-18 {
        order: 18
    }

    .ant-col-sm-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%
    }

    .ant-col-sm-push-17 {
        left: 70.83333333%
    }

    .ant-col-sm-pull-17 {
        right: 70.83333333%
    }

    .ant-col-sm-offset-17 {
        margin-left: 70.83333333%
    }

    .ant-col-sm-order-17 {
        order: 17
    }

    .ant-col-sm-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ant-col-sm-push-16 {
        left: 66.66666667%
    }

    .ant-col-sm-pull-16 {
        right: 66.66666667%
    }

    .ant-col-sm-offset-16 {
        margin-left: 66.66666667%
    }

    .ant-col-sm-order-16 {
        order: 16
    }

    .ant-col-sm-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%
    }

    .ant-col-sm-push-15 {
        left: 62.5%
    }

    .ant-col-sm-pull-15 {
        right: 62.5%
    }

    .ant-col-sm-offset-15 {
        margin-left: 62.5%
    }

    .ant-col-sm-order-15 {
        order: 15
    }

    .ant-col-sm-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .ant-col-sm-push-14 {
        left: 58.33333333%
    }

    .ant-col-sm-pull-14 {
        right: 58.33333333%
    }

    .ant-col-sm-offset-14 {
        margin-left: 58.33333333%
    }

    .ant-col-sm-order-14 {
        order: 14
    }

    .ant-col-sm-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%
    }

    .ant-col-sm-push-13 {
        left: 54.16666667%
    }

    .ant-col-sm-pull-13 {
        right: 54.16666667%
    }

    .ant-col-sm-offset-13 {
        margin-left: 54.16666667%
    }

    .ant-col-sm-order-13 {
        order: 13
    }

    .ant-col-sm-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ant-col-sm-push-12 {
        left: 50%
    }

    .ant-col-sm-pull-12 {
        right: 50%
    }

    .ant-col-sm-offset-12 {
        margin-left: 50%
    }

    .ant-col-sm-order-12 {
        order: 12
    }

    .ant-col-sm-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%
    }

    .ant-col-sm-push-11 {
        left: 45.83333333%
    }

    .ant-col-sm-pull-11 {
        right: 45.83333333%
    }

    .ant-col-sm-offset-11 {
        margin-left: 45.83333333%
    }

    .ant-col-sm-order-11 {
        order: 11
    }

    .ant-col-sm-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ant-col-sm-push-10 {
        left: 41.66666667%
    }

    .ant-col-sm-pull-10 {
        right: 41.66666667%
    }

    .ant-col-sm-offset-10 {
        margin-left: 41.66666667%
    }

    .ant-col-sm-order-10 {
        order: 10
    }

    .ant-col-sm-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%
    }

    .ant-col-sm-push-9 {
        left: 37.5%
    }

    .ant-col-sm-pull-9 {
        right: 37.5%
    }

    .ant-col-sm-offset-9 {
        margin-left: 37.5%
    }

    .ant-col-sm-order-9 {
        order: 9
    }

    .ant-col-sm-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ant-col-sm-push-8 {
        left: 33.33333333%
    }

    .ant-col-sm-pull-8 {
        right: 33.33333333%
    }

    .ant-col-sm-offset-8 {
        margin-left: 33.33333333%
    }

    .ant-col-sm-order-8 {
        order: 8
    }

    .ant-col-sm-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%
    }

    .ant-col-sm-push-7 {
        left: 29.16666667%
    }

    .ant-col-sm-pull-7 {
        right: 29.16666667%
    }

    .ant-col-sm-offset-7 {
        margin-left: 29.16666667%
    }

    .ant-col-sm-order-7 {
        order: 7
    }

    .ant-col-sm-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ant-col-sm-push-6 {
        left: 25%
    }

    .ant-col-sm-pull-6 {
        right: 25%
    }

    .ant-col-sm-offset-6 {
        margin-left: 25%
    }

    .ant-col-sm-order-6 {
        order: 6
    }

    .ant-col-sm-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%
    }

    .ant-col-sm-push-5 {
        left: 20.83333333%
    }

    .ant-col-sm-pull-5 {
        right: 20.83333333%
    }

    .ant-col-sm-offset-5 {
        margin-left: 20.83333333%
    }

    .ant-col-sm-order-5 {
        order: 5
    }

    .ant-col-sm-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .ant-col-sm-push-4 {
        left: 16.66666667%
    }

    .ant-col-sm-pull-4 {
        right: 16.66666667%
    }

    .ant-col-sm-offset-4 {
        margin-left: 16.66666667%
    }

    .ant-col-sm-order-4 {
        order: 4
    }

    .ant-col-sm-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .ant-col-sm-push-3 {
        left: 12.5%
    }

    .ant-col-sm-pull-3 {
        right: 12.5%
    }

    .ant-col-sm-offset-3 {
        margin-left: 12.5%
    }

    .ant-col-sm-order-3 {
        order: 3
    }

    .ant-col-sm-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .ant-col-sm-push-2 {
        left: 8.33333333%
    }

    .ant-col-sm-pull-2 {
        right: 8.33333333%
    }

    .ant-col-sm-offset-2 {
        margin-left: 8.33333333%
    }

    .ant-col-sm-order-2 {
        order: 2
    }

    .ant-col-sm-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%
    }

    .ant-col-sm-push-1 {
        left: 4.16666667%
    }

    .ant-col-sm-pull-1 {
        right: 4.16666667%
    }

    .ant-col-sm-offset-1 {
        margin-left: 4.16666667%
    }

    .ant-col-sm-order-1 {
        order: 1
    }

    .ant-col-sm-0 {
        display: none
    }

    .ant-col-push-0 {
        left: auto
    }

    .ant-col-pull-0 {
        right: auto
    }

    .ant-col-sm-push-0 {
        left: auto
    }

    .ant-col-sm-pull-0 {
        right: auto
    }

    .ant-col-sm-offset-0 {
        margin-left: 0
    }

    .ant-col-sm-order-0 {
        order: 0
    }

    .ant-col-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-sm-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-sm-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-sm-offset-0.ant-col-rtl {
        margin-right: 0
    }

    .ant-col-sm-push-1.ant-col-rtl {
        left: auto;
        right: 4.16666667%
    }

    .ant-col-sm-pull-1.ant-col-rtl {
        left: 4.16666667%;
        right: auto
    }

    .ant-col-sm-offset-1.ant-col-rtl {
        margin-left: 0;
        margin-right: 4.16666667%
    }

    .ant-col-sm-push-2.ant-col-rtl {
        left: auto;
        right: 8.33333333%
    }

    .ant-col-sm-pull-2.ant-col-rtl {
        left: 8.33333333%;
        right: auto
    }

    .ant-col-sm-offset-2.ant-col-rtl {
        margin-left: 0;
        margin-right: 8.33333333%
    }

    .ant-col-sm-push-3.ant-col-rtl {
        left: auto;
        right: 12.5%
    }

    .ant-col-sm-pull-3.ant-col-rtl {
        left: 12.5%;
        right: auto
    }

    .ant-col-sm-offset-3.ant-col-rtl {
        margin-left: 0;
        margin-right: 12.5%
    }

    .ant-col-sm-push-4.ant-col-rtl {
        left: auto;
        right: 16.66666667%
    }

    .ant-col-sm-pull-4.ant-col-rtl {
        left: 16.66666667%;
        right: auto
    }

    .ant-col-sm-offset-4.ant-col-rtl {
        margin-left: 0;
        margin-right: 16.66666667%
    }

    .ant-col-sm-push-5.ant-col-rtl {
        left: auto;
        right: 20.83333333%
    }

    .ant-col-sm-pull-5.ant-col-rtl {
        left: 20.83333333%;
        right: auto
    }

    .ant-col-sm-offset-5.ant-col-rtl {
        margin-left: 0;
        margin-right: 20.83333333%
    }

    .ant-col-sm-push-6.ant-col-rtl {
        left: auto;
        right: 25%
    }

    .ant-col-sm-pull-6.ant-col-rtl {
        left: 25%;
        right: auto
    }

    .ant-col-sm-offset-6.ant-col-rtl {
        margin-left: 0;
        margin-right: 25%
    }

    .ant-col-sm-push-7.ant-col-rtl {
        left: auto;
        right: 29.16666667%
    }

    .ant-col-sm-pull-7.ant-col-rtl {
        left: 29.16666667%;
        right: auto
    }

    .ant-col-sm-offset-7.ant-col-rtl {
        margin-left: 0;
        margin-right: 29.16666667%
    }

    .ant-col-sm-push-8.ant-col-rtl {
        left: auto;
        right: 33.33333333%
    }

    .ant-col-sm-pull-8.ant-col-rtl {
        left: 33.33333333%;
        right: auto
    }

    .ant-col-sm-offset-8.ant-col-rtl {
        margin-left: 0;
        margin-right: 33.33333333%
    }

    .ant-col-sm-push-9.ant-col-rtl {
        left: auto;
        right: 37.5%
    }

    .ant-col-sm-pull-9.ant-col-rtl {
        left: 37.5%;
        right: auto
    }

    .ant-col-sm-offset-9.ant-col-rtl {
        margin-left: 0;
        margin-right: 37.5%
    }

    .ant-col-sm-push-10.ant-col-rtl {
        left: auto;
        right: 41.66666667%
    }

    .ant-col-sm-pull-10.ant-col-rtl {
        left: 41.66666667%;
        right: auto
    }

    .ant-col-sm-offset-10.ant-col-rtl {
        margin-left: 0;
        margin-right: 41.66666667%
    }

    .ant-col-sm-push-11.ant-col-rtl {
        left: auto;
        right: 45.83333333%
    }

    .ant-col-sm-pull-11.ant-col-rtl {
        left: 45.83333333%;
        right: auto
    }

    .ant-col-sm-offset-11.ant-col-rtl {
        margin-left: 0;
        margin-right: 45.83333333%
    }

    .ant-col-sm-push-12.ant-col-rtl {
        left: auto;
        right: 50%
    }

    .ant-col-sm-pull-12.ant-col-rtl {
        left: 50%;
        right: auto
    }

    .ant-col-sm-offset-12.ant-col-rtl {
        margin-left: 0;
        margin-right: 50%
    }

    .ant-col-sm-push-13.ant-col-rtl {
        left: auto;
        right: 54.16666667%
    }

    .ant-col-sm-pull-13.ant-col-rtl {
        left: 54.16666667%;
        right: auto
    }

    .ant-col-sm-offset-13.ant-col-rtl {
        margin-left: 0;
        margin-right: 54.16666667%
    }

    .ant-col-sm-push-14.ant-col-rtl {
        left: auto;
        right: 58.33333333%
    }

    .ant-col-sm-pull-14.ant-col-rtl {
        left: 58.33333333%;
        right: auto
    }

    .ant-col-sm-offset-14.ant-col-rtl {
        margin-left: 0;
        margin-right: 58.33333333%
    }

    .ant-col-sm-push-15.ant-col-rtl {
        left: auto;
        right: 62.5%
    }

    .ant-col-sm-pull-15.ant-col-rtl {
        left: 62.5%;
        right: auto
    }

    .ant-col-sm-offset-15.ant-col-rtl {
        margin-left: 0;
        margin-right: 62.5%
    }

    .ant-col-sm-push-16.ant-col-rtl {
        left: auto;
        right: 66.66666667%
    }

    .ant-col-sm-pull-16.ant-col-rtl {
        left: 66.66666667%;
        right: auto
    }

    .ant-col-sm-offset-16.ant-col-rtl {
        margin-left: 0;
        margin-right: 66.66666667%
    }

    .ant-col-sm-push-17.ant-col-rtl {
        left: auto;
        right: 70.83333333%
    }

    .ant-col-sm-pull-17.ant-col-rtl {
        left: 70.83333333%;
        right: auto
    }

    .ant-col-sm-offset-17.ant-col-rtl {
        margin-left: 0;
        margin-right: 70.83333333%
    }

    .ant-col-sm-push-18.ant-col-rtl {
        left: auto;
        right: 75%
    }

    .ant-col-sm-pull-18.ant-col-rtl {
        left: 75%;
        right: auto
    }

    .ant-col-sm-offset-18.ant-col-rtl {
        margin-left: 0;
        margin-right: 75%
    }

    .ant-col-sm-push-19.ant-col-rtl {
        left: auto;
        right: 79.16666667%
    }

    .ant-col-sm-pull-19.ant-col-rtl {
        left: 79.16666667%;
        right: auto
    }

    .ant-col-sm-offset-19.ant-col-rtl {
        margin-left: 0;
        margin-right: 79.16666667%
    }

    .ant-col-sm-push-20.ant-col-rtl {
        left: auto;
        right: 83.33333333%
    }

    .ant-col-sm-pull-20.ant-col-rtl {
        left: 83.33333333%;
        right: auto
    }

    .ant-col-sm-offset-20.ant-col-rtl {
        margin-left: 0;
        margin-right: 83.33333333%
    }

    .ant-col-sm-push-21.ant-col-rtl {
        left: auto;
        right: 87.5%
    }

    .ant-col-sm-pull-21.ant-col-rtl {
        left: 87.5%;
        right: auto
    }

    .ant-col-sm-offset-21.ant-col-rtl {
        margin-left: 0;
        margin-right: 87.5%
    }

    .ant-col-sm-push-22.ant-col-rtl {
        left: auto;
        right: 91.66666667%
    }

    .ant-col-sm-pull-22.ant-col-rtl {
        left: 91.66666667%;
        right: auto
    }

    .ant-col-sm-offset-22.ant-col-rtl {
        margin-left: 0;
        margin-right: 91.66666667%
    }

    .ant-col-sm-push-23.ant-col-rtl {
        left: auto;
        right: 95.83333333%
    }

    .ant-col-sm-pull-23.ant-col-rtl {
        left: 95.83333333%;
        right: auto
    }

    .ant-col-sm-offset-23.ant-col-rtl {
        margin-left: 0;
        margin-right: 95.83333333%
    }

    .ant-col-sm-push-24.ant-col-rtl {
        left: auto;
        right: 100%
    }

    .ant-col-sm-pull-24.ant-col-rtl {
        left: 100%;
        right: auto
    }

    .ant-col-sm-offset-24.ant-col-rtl {
        margin-left: 0;
        margin-right: 100%
    }
}

@media (min-width: 768px) {
    .ant-col-md-24 {
        display:block;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ant-col-md-push-24 {
        left: 100%
    }

    .ant-col-md-pull-24 {
        right: 100%
    }

    .ant-col-md-offset-24 {
        margin-left: 100%
    }

    .ant-col-md-order-24 {
        order: 24
    }

    .ant-col-md-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%
    }

    .ant-col-md-push-23 {
        left: 95.83333333%
    }

    .ant-col-md-pull-23 {
        right: 95.83333333%
    }

    .ant-col-md-offset-23 {
        margin-left: 95.83333333%
    }

    .ant-col-md-order-23 {
        order: 23
    }

    .ant-col-md-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%
    }

    .ant-col-md-push-22 {
        left: 91.66666667%
    }

    .ant-col-md-pull-22 {
        right: 91.66666667%
    }

    .ant-col-md-offset-22 {
        margin-left: 91.66666667%
    }

    .ant-col-md-order-22 {
        order: 22
    }

    .ant-col-md-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%
    }

    .ant-col-md-push-21 {
        left: 87.5%
    }

    .ant-col-md-pull-21 {
        right: 87.5%
    }

    .ant-col-md-offset-21 {
        margin-left: 87.5%
    }

    .ant-col-md-order-21 {
        order: 21
    }

    .ant-col-md-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }

    .ant-col-md-push-20 {
        left: 83.33333333%
    }

    .ant-col-md-pull-20 {
        right: 83.33333333%
    }

    .ant-col-md-offset-20 {
        margin-left: 83.33333333%
    }

    .ant-col-md-order-20 {
        order: 20
    }

    .ant-col-md-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%
    }

    .ant-col-md-push-19 {
        left: 79.16666667%
    }

    .ant-col-md-pull-19 {
        right: 79.16666667%
    }

    .ant-col-md-offset-19 {
        margin-left: 79.16666667%
    }

    .ant-col-md-order-19 {
        order: 19
    }

    .ant-col-md-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ant-col-md-push-18 {
        left: 75%
    }

    .ant-col-md-pull-18 {
        right: 75%
    }

    .ant-col-md-offset-18 {
        margin-left: 75%
    }

    .ant-col-md-order-18 {
        order: 18
    }

    .ant-col-md-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%
    }

    .ant-col-md-push-17 {
        left: 70.83333333%
    }

    .ant-col-md-pull-17 {
        right: 70.83333333%
    }

    .ant-col-md-offset-17 {
        margin-left: 70.83333333%
    }

    .ant-col-md-order-17 {
        order: 17
    }

    .ant-col-md-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ant-col-md-push-16 {
        left: 66.66666667%
    }

    .ant-col-md-pull-16 {
        right: 66.66666667%
    }

    .ant-col-md-offset-16 {
        margin-left: 66.66666667%
    }

    .ant-col-md-order-16 {
        order: 16
    }

    .ant-col-md-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%
    }

    .ant-col-md-push-15 {
        left: 62.5%
    }

    .ant-col-md-pull-15 {
        right: 62.5%
    }

    .ant-col-md-offset-15 {
        margin-left: 62.5%
    }

    .ant-col-md-order-15 {
        order: 15
    }

    .ant-col-md-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .ant-col-md-push-14 {
        left: 58.33333333%
    }

    .ant-col-md-pull-14 {
        right: 58.33333333%
    }

    .ant-col-md-offset-14 {
        margin-left: 58.33333333%
    }

    .ant-col-md-order-14 {
        order: 14
    }

    .ant-col-md-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%
    }

    .ant-col-md-push-13 {
        left: 54.16666667%
    }

    .ant-col-md-pull-13 {
        right: 54.16666667%
    }

    .ant-col-md-offset-13 {
        margin-left: 54.16666667%
    }

    .ant-col-md-order-13 {
        order: 13
    }

    .ant-col-md-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ant-col-md-push-12 {
        left: 50%
    }

    .ant-col-md-pull-12 {
        right: 50%
    }

    .ant-col-md-offset-12 {
        margin-left: 50%
    }

    .ant-col-md-order-12 {
        order: 12
    }

    .ant-col-md-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%
    }

    .ant-col-md-push-11 {
        left: 45.83333333%
    }

    .ant-col-md-pull-11 {
        right: 45.83333333%
    }

    .ant-col-md-offset-11 {
        margin-left: 45.83333333%
    }

    .ant-col-md-order-11 {
        order: 11
    }

    .ant-col-md-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ant-col-md-push-10 {
        left: 41.66666667%
    }

    .ant-col-md-pull-10 {
        right: 41.66666667%
    }

    .ant-col-md-offset-10 {
        margin-left: 41.66666667%
    }

    .ant-col-md-order-10 {
        order: 10
    }

    .ant-col-md-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%
    }

    .ant-col-md-push-9 {
        left: 37.5%
    }

    .ant-col-md-pull-9 {
        right: 37.5%
    }

    .ant-col-md-offset-9 {
        margin-left: 37.5%
    }

    .ant-col-md-order-9 {
        order: 9
    }

    .ant-col-md-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ant-col-md-push-8 {
        left: 33.33333333%
    }

    .ant-col-md-pull-8 {
        right: 33.33333333%
    }

    .ant-col-md-offset-8 {
        margin-left: 33.33333333%
    }

    .ant-col-md-order-8 {
        order: 8
    }

    .ant-col-md-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%
    }

    .ant-col-md-push-7 {
        left: 29.16666667%
    }

    .ant-col-md-pull-7 {
        right: 29.16666667%
    }

    .ant-col-md-offset-7 {
        margin-left: 29.16666667%
    }

    .ant-col-md-order-7 {
        order: 7
    }

    .ant-col-md-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ant-col-md-push-6 {
        left: 25%
    }

    .ant-col-md-pull-6 {
        right: 25%
    }

    .ant-col-md-offset-6 {
        margin-left: 25%
    }

    .ant-col-md-order-6 {
        order: 6
    }

    .ant-col-md-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%
    }

    .ant-col-md-push-5 {
        left: 20.83333333%
    }

    .ant-col-md-pull-5 {
        right: 20.83333333%
    }

    .ant-col-md-offset-5 {
        margin-left: 20.83333333%
    }

    .ant-col-md-order-5 {
        order: 5
    }

    .ant-col-md-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .ant-col-md-push-4 {
        left: 16.66666667%
    }

    .ant-col-md-pull-4 {
        right: 16.66666667%
    }

    .ant-col-md-offset-4 {
        margin-left: 16.66666667%
    }

    .ant-col-md-order-4 {
        order: 4
    }

    .ant-col-md-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .ant-col-md-push-3 {
        left: 12.5%
    }

    .ant-col-md-pull-3 {
        right: 12.5%
    }

    .ant-col-md-offset-3 {
        margin-left: 12.5%
    }

    .ant-col-md-order-3 {
        order: 3
    }

    .ant-col-md-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .ant-col-md-push-2 {
        left: 8.33333333%
    }

    .ant-col-md-pull-2 {
        right: 8.33333333%
    }

    .ant-col-md-offset-2 {
        margin-left: 8.33333333%
    }

    .ant-col-md-order-2 {
        order: 2
    }

    .ant-col-md-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%
    }

    .ant-col-md-push-1 {
        left: 4.16666667%
    }

    .ant-col-md-pull-1 {
        right: 4.16666667%
    }

    .ant-col-md-offset-1 {
        margin-left: 4.16666667%
    }

    .ant-col-md-order-1 {
        order: 1
    }

    .ant-col-md-0 {
        display: none
    }

    .ant-col-push-0 {
        left: auto
    }

    .ant-col-pull-0 {
        right: auto
    }

    .ant-col-md-push-0 {
        left: auto
    }

    .ant-col-md-pull-0 {
        right: auto
    }

    .ant-col-md-offset-0 {
        margin-left: 0
    }

    .ant-col-md-order-0 {
        order: 0
    }

    .ant-col-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-md-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-md-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-md-offset-0.ant-col-rtl {
        margin-right: 0
    }

    .ant-col-md-push-1.ant-col-rtl {
        left: auto;
        right: 4.16666667%
    }

    .ant-col-md-pull-1.ant-col-rtl {
        left: 4.16666667%;
        right: auto
    }

    .ant-col-md-offset-1.ant-col-rtl {
        margin-left: 0;
        margin-right: 4.16666667%
    }

    .ant-col-md-push-2.ant-col-rtl {
        left: auto;
        right: 8.33333333%
    }

    .ant-col-md-pull-2.ant-col-rtl {
        left: 8.33333333%;
        right: auto
    }

    .ant-col-md-offset-2.ant-col-rtl {
        margin-left: 0;
        margin-right: 8.33333333%
    }

    .ant-col-md-push-3.ant-col-rtl {
        left: auto;
        right: 12.5%
    }

    .ant-col-md-pull-3.ant-col-rtl {
        left: 12.5%;
        right: auto
    }

    .ant-col-md-offset-3.ant-col-rtl {
        margin-left: 0;
        margin-right: 12.5%
    }

    .ant-col-md-push-4.ant-col-rtl {
        left: auto;
        right: 16.66666667%
    }

    .ant-col-md-pull-4.ant-col-rtl {
        left: 16.66666667%;
        right: auto
    }

    .ant-col-md-offset-4.ant-col-rtl {
        margin-left: 0;
        margin-right: 16.66666667%
    }

    .ant-col-md-push-5.ant-col-rtl {
        left: auto;
        right: 20.83333333%
    }

    .ant-col-md-pull-5.ant-col-rtl {
        left: 20.83333333%;
        right: auto
    }

    .ant-col-md-offset-5.ant-col-rtl {
        margin-left: 0;
        margin-right: 20.83333333%
    }

    .ant-col-md-push-6.ant-col-rtl {
        left: auto;
        right: 25%
    }

    .ant-col-md-pull-6.ant-col-rtl {
        left: 25%;
        right: auto
    }

    .ant-col-md-offset-6.ant-col-rtl {
        margin-left: 0;
        margin-right: 25%
    }

    .ant-col-md-push-7.ant-col-rtl {
        left: auto;
        right: 29.16666667%
    }

    .ant-col-md-pull-7.ant-col-rtl {
        left: 29.16666667%;
        right: auto
    }

    .ant-col-md-offset-7.ant-col-rtl {
        margin-left: 0;
        margin-right: 29.16666667%
    }

    .ant-col-md-push-8.ant-col-rtl {
        left: auto;
        right: 33.33333333%
    }

    .ant-col-md-pull-8.ant-col-rtl {
        left: 33.33333333%;
        right: auto
    }

    .ant-col-md-offset-8.ant-col-rtl {
        margin-left: 0;
        margin-right: 33.33333333%
    }

    .ant-col-md-push-9.ant-col-rtl {
        left: auto;
        right: 37.5%
    }

    .ant-col-md-pull-9.ant-col-rtl {
        left: 37.5%;
        right: auto
    }

    .ant-col-md-offset-9.ant-col-rtl {
        margin-left: 0;
        margin-right: 37.5%
    }

    .ant-col-md-push-10.ant-col-rtl {
        left: auto;
        right: 41.66666667%
    }

    .ant-col-md-pull-10.ant-col-rtl {
        left: 41.66666667%;
        right: auto
    }

    .ant-col-md-offset-10.ant-col-rtl {
        margin-left: 0;
        margin-right: 41.66666667%
    }

    .ant-col-md-push-11.ant-col-rtl {
        left: auto;
        right: 45.83333333%
    }

    .ant-col-md-pull-11.ant-col-rtl {
        left: 45.83333333%;
        right: auto
    }

    .ant-col-md-offset-11.ant-col-rtl {
        margin-left: 0;
        margin-right: 45.83333333%
    }

    .ant-col-md-push-12.ant-col-rtl {
        left: auto;
        right: 50%
    }

    .ant-col-md-pull-12.ant-col-rtl {
        left: 50%;
        right: auto
    }

    .ant-col-md-offset-12.ant-col-rtl {
        margin-left: 0;
        margin-right: 50%
    }

    .ant-col-md-push-13.ant-col-rtl {
        left: auto;
        right: 54.16666667%
    }

    .ant-col-md-pull-13.ant-col-rtl {
        left: 54.16666667%;
        right: auto
    }

    .ant-col-md-offset-13.ant-col-rtl {
        margin-left: 0;
        margin-right: 54.16666667%
    }

    .ant-col-md-push-14.ant-col-rtl {
        left: auto;
        right: 58.33333333%
    }

    .ant-col-md-pull-14.ant-col-rtl {
        left: 58.33333333%;
        right: auto
    }

    .ant-col-md-offset-14.ant-col-rtl {
        margin-left: 0;
        margin-right: 58.33333333%
    }

    .ant-col-md-push-15.ant-col-rtl {
        left: auto;
        right: 62.5%
    }

    .ant-col-md-pull-15.ant-col-rtl {
        left: 62.5%;
        right: auto
    }

    .ant-col-md-offset-15.ant-col-rtl {
        margin-left: 0;
        margin-right: 62.5%
    }

    .ant-col-md-push-16.ant-col-rtl {
        left: auto;
        right: 66.66666667%
    }

    .ant-col-md-pull-16.ant-col-rtl {
        left: 66.66666667%;
        right: auto
    }

    .ant-col-md-offset-16.ant-col-rtl {
        margin-left: 0;
        margin-right: 66.66666667%
    }

    .ant-col-md-push-17.ant-col-rtl {
        left: auto;
        right: 70.83333333%
    }

    .ant-col-md-pull-17.ant-col-rtl {
        left: 70.83333333%;
        right: auto
    }

    .ant-col-md-offset-17.ant-col-rtl {
        margin-left: 0;
        margin-right: 70.83333333%
    }

    .ant-col-md-push-18.ant-col-rtl {
        left: auto;
        right: 75%
    }

    .ant-col-md-pull-18.ant-col-rtl {
        left: 75%;
        right: auto
    }

    .ant-col-md-offset-18.ant-col-rtl {
        margin-left: 0;
        margin-right: 75%
    }

    .ant-col-md-push-19.ant-col-rtl {
        left: auto;
        right: 79.16666667%
    }

    .ant-col-md-pull-19.ant-col-rtl {
        left: 79.16666667%;
        right: auto
    }

    .ant-col-md-offset-19.ant-col-rtl {
        margin-left: 0;
        margin-right: 79.16666667%
    }

    .ant-col-md-push-20.ant-col-rtl {
        left: auto;
        right: 83.33333333%
    }

    .ant-col-md-pull-20.ant-col-rtl {
        left: 83.33333333%;
        right: auto
    }

    .ant-col-md-offset-20.ant-col-rtl {
        margin-left: 0;
        margin-right: 83.33333333%
    }

    .ant-col-md-push-21.ant-col-rtl {
        left: auto;
        right: 87.5%
    }

    .ant-col-md-pull-21.ant-col-rtl {
        left: 87.5%;
        right: auto
    }

    .ant-col-md-offset-21.ant-col-rtl {
        margin-left: 0;
        margin-right: 87.5%
    }

    .ant-col-md-push-22.ant-col-rtl {
        left: auto;
        right: 91.66666667%
    }

    .ant-col-md-pull-22.ant-col-rtl {
        left: 91.66666667%;
        right: auto
    }

    .ant-col-md-offset-22.ant-col-rtl {
        margin-left: 0;
        margin-right: 91.66666667%
    }

    .ant-col-md-push-23.ant-col-rtl {
        left: auto;
        right: 95.83333333%
    }

    .ant-col-md-pull-23.ant-col-rtl {
        left: 95.83333333%;
        right: auto
    }

    .ant-col-md-offset-23.ant-col-rtl {
        margin-left: 0;
        margin-right: 95.83333333%
    }

    .ant-col-md-push-24.ant-col-rtl {
        left: auto;
        right: 100%
    }

    .ant-col-md-pull-24.ant-col-rtl {
        left: 100%;
        right: auto
    }

    .ant-col-md-offset-24.ant-col-rtl {
        margin-left: 0;
        margin-right: 100%
    }
}

@media (min-width: 992px) {
    .ant-col-lg-24 {
        display:block;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ant-col-lg-push-24 {
        left: 100%
    }

    .ant-col-lg-pull-24 {
        right: 100%
    }

    .ant-col-lg-offset-24 {
        margin-left: 100%
    }

    .ant-col-lg-order-24 {
        order: 24
    }

    .ant-col-lg-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%
    }

    .ant-col-lg-push-23 {
        left: 95.83333333%
    }

    .ant-col-lg-pull-23 {
        right: 95.83333333%
    }

    .ant-col-lg-offset-23 {
        margin-left: 95.83333333%
    }

    .ant-col-lg-order-23 {
        order: 23
    }

    .ant-col-lg-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%
    }

    .ant-col-lg-push-22 {
        left: 91.66666667%
    }

    .ant-col-lg-pull-22 {
        right: 91.66666667%
    }

    .ant-col-lg-offset-22 {
        margin-left: 91.66666667%
    }

    .ant-col-lg-order-22 {
        order: 22
    }

    .ant-col-lg-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%
    }

    .ant-col-lg-push-21 {
        left: 87.5%
    }

    .ant-col-lg-pull-21 {
        right: 87.5%
    }

    .ant-col-lg-offset-21 {
        margin-left: 87.5%
    }

    .ant-col-lg-order-21 {
        order: 21
    }

    .ant-col-lg-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }

    .ant-col-lg-push-20 {
        left: 83.33333333%
    }

    .ant-col-lg-pull-20 {
        right: 83.33333333%
    }

    .ant-col-lg-offset-20 {
        margin-left: 83.33333333%
    }

    .ant-col-lg-order-20 {
        order: 20
    }

    .ant-col-lg-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%
    }

    .ant-col-lg-push-19 {
        left: 79.16666667%
    }

    .ant-col-lg-pull-19 {
        right: 79.16666667%
    }

    .ant-col-lg-offset-19 {
        margin-left: 79.16666667%
    }

    .ant-col-lg-order-19 {
        order: 19
    }

    .ant-col-lg-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ant-col-lg-push-18 {
        left: 75%
    }

    .ant-col-lg-pull-18 {
        right: 75%
    }

    .ant-col-lg-offset-18 {
        margin-left: 75%
    }

    .ant-col-lg-order-18 {
        order: 18
    }

    .ant-col-lg-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%
    }

    .ant-col-lg-push-17 {
        left: 70.83333333%
    }

    .ant-col-lg-pull-17 {
        right: 70.83333333%
    }

    .ant-col-lg-offset-17 {
        margin-left: 70.83333333%
    }

    .ant-col-lg-order-17 {
        order: 17
    }

    .ant-col-lg-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ant-col-lg-push-16 {
        left: 66.66666667%
    }

    .ant-col-lg-pull-16 {
        right: 66.66666667%
    }

    .ant-col-lg-offset-16 {
        margin-left: 66.66666667%
    }

    .ant-col-lg-order-16 {
        order: 16
    }

    .ant-col-lg-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%
    }

    .ant-col-lg-push-15 {
        left: 62.5%
    }

    .ant-col-lg-pull-15 {
        right: 62.5%
    }

    .ant-col-lg-offset-15 {
        margin-left: 62.5%
    }

    .ant-col-lg-order-15 {
        order: 15
    }

    .ant-col-lg-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .ant-col-lg-push-14 {
        left: 58.33333333%
    }

    .ant-col-lg-pull-14 {
        right: 58.33333333%
    }

    .ant-col-lg-offset-14 {
        margin-left: 58.33333333%
    }

    .ant-col-lg-order-14 {
        order: 14
    }

    .ant-col-lg-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%
    }

    .ant-col-lg-push-13 {
        left: 54.16666667%
    }

    .ant-col-lg-pull-13 {
        right: 54.16666667%
    }

    .ant-col-lg-offset-13 {
        margin-left: 54.16666667%
    }

    .ant-col-lg-order-13 {
        order: 13
    }

    .ant-col-lg-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ant-col-lg-push-12 {
        left: 50%
    }

    .ant-col-lg-pull-12 {
        right: 50%
    }

    .ant-col-lg-offset-12 {
        margin-left: 50%
    }

    .ant-col-lg-order-12 {
        order: 12
    }

    .ant-col-lg-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%
    }

    .ant-col-lg-push-11 {
        left: 45.83333333%
    }

    .ant-col-lg-pull-11 {
        right: 45.83333333%
    }

    .ant-col-lg-offset-11 {
        margin-left: 45.83333333%
    }

    .ant-col-lg-order-11 {
        order: 11
    }

    .ant-col-lg-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ant-col-lg-push-10 {
        left: 41.66666667%
    }

    .ant-col-lg-pull-10 {
        right: 41.66666667%
    }

    .ant-col-lg-offset-10 {
        margin-left: 41.66666667%
    }

    .ant-col-lg-order-10 {
        order: 10
    }

    .ant-col-lg-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%
    }

    .ant-col-lg-push-9 {
        left: 37.5%
    }

    .ant-col-lg-pull-9 {
        right: 37.5%
    }

    .ant-col-lg-offset-9 {
        margin-left: 37.5%
    }

    .ant-col-lg-order-9 {
        order: 9
    }

    .ant-col-lg-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ant-col-lg-push-8 {
        left: 33.33333333%
    }

    .ant-col-lg-pull-8 {
        right: 33.33333333%
    }

    .ant-col-lg-offset-8 {
        margin-left: 33.33333333%
    }

    .ant-col-lg-order-8 {
        order: 8
    }

    .ant-col-lg-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%
    }

    .ant-col-lg-push-7 {
        left: 29.16666667%
    }

    .ant-col-lg-pull-7 {
        right: 29.16666667%
    }

    .ant-col-lg-offset-7 {
        margin-left: 29.16666667%
    }

    .ant-col-lg-order-7 {
        order: 7
    }

    .ant-col-lg-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ant-col-lg-push-6 {
        left: 25%
    }

    .ant-col-lg-pull-6 {
        right: 25%
    }

    .ant-col-lg-offset-6 {
        margin-left: 25%
    }

    .ant-col-lg-order-6 {
        order: 6
    }

    .ant-col-lg-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%
    }

    .ant-col-lg-push-5 {
        left: 20.83333333%
    }

    .ant-col-lg-pull-5 {
        right: 20.83333333%
    }

    .ant-col-lg-offset-5 {
        margin-left: 20.83333333%
    }

    .ant-col-lg-order-5 {
        order: 5
    }

    .ant-col-lg-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .ant-col-lg-push-4 {
        left: 16.66666667%
    }

    .ant-col-lg-pull-4 {
        right: 16.66666667%
    }

    .ant-col-lg-offset-4 {
        margin-left: 16.66666667%
    }

    .ant-col-lg-order-4 {
        order: 4
    }

    .ant-col-lg-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .ant-col-lg-push-3 {
        left: 12.5%
    }

    .ant-col-lg-pull-3 {
        right: 12.5%
    }

    .ant-col-lg-offset-3 {
        margin-left: 12.5%
    }

    .ant-col-lg-order-3 {
        order: 3
    }

    .ant-col-lg-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .ant-col-lg-push-2 {
        left: 8.33333333%
    }

    .ant-col-lg-pull-2 {
        right: 8.33333333%
    }

    .ant-col-lg-offset-2 {
        margin-left: 8.33333333%
    }

    .ant-col-lg-order-2 {
        order: 2
    }

    .ant-col-lg-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%
    }

    .ant-col-lg-push-1 {
        left: 4.16666667%
    }

    .ant-col-lg-pull-1 {
        right: 4.16666667%
    }

    .ant-col-lg-offset-1 {
        margin-left: 4.16666667%
    }

    .ant-col-lg-order-1 {
        order: 1
    }

    .ant-col-lg-0 {
        display: none
    }

    .ant-col-push-0 {
        left: auto
    }

    .ant-col-pull-0 {
        right: auto
    }

    .ant-col-lg-push-0 {
        left: auto
    }

    .ant-col-lg-pull-0 {
        right: auto
    }

    .ant-col-lg-offset-0 {
        margin-left: 0
    }

    .ant-col-lg-order-0 {
        order: 0
    }

    .ant-col-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-lg-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-lg-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-lg-offset-0.ant-col-rtl {
        margin-right: 0
    }

    .ant-col-lg-push-1.ant-col-rtl {
        left: auto;
        right: 4.16666667%
    }

    .ant-col-lg-pull-1.ant-col-rtl {
        left: 4.16666667%;
        right: auto
    }

    .ant-col-lg-offset-1.ant-col-rtl {
        margin-left: 0;
        margin-right: 4.16666667%
    }

    .ant-col-lg-push-2.ant-col-rtl {
        left: auto;
        right: 8.33333333%
    }

    .ant-col-lg-pull-2.ant-col-rtl {
        left: 8.33333333%;
        right: auto
    }

    .ant-col-lg-offset-2.ant-col-rtl {
        margin-left: 0;
        margin-right: 8.33333333%
    }

    .ant-col-lg-push-3.ant-col-rtl {
        left: auto;
        right: 12.5%
    }

    .ant-col-lg-pull-3.ant-col-rtl {
        left: 12.5%;
        right: auto
    }

    .ant-col-lg-offset-3.ant-col-rtl {
        margin-left: 0;
        margin-right: 12.5%
    }

    .ant-col-lg-push-4.ant-col-rtl {
        left: auto;
        right: 16.66666667%
    }

    .ant-col-lg-pull-4.ant-col-rtl {
        left: 16.66666667%;
        right: auto
    }

    .ant-col-lg-offset-4.ant-col-rtl {
        margin-left: 0;
        margin-right: 16.66666667%
    }

    .ant-col-lg-push-5.ant-col-rtl {
        left: auto;
        right: 20.83333333%
    }

    .ant-col-lg-pull-5.ant-col-rtl {
        left: 20.83333333%;
        right: auto
    }

    .ant-col-lg-offset-5.ant-col-rtl {
        margin-left: 0;
        margin-right: 20.83333333%
    }

    .ant-col-lg-push-6.ant-col-rtl {
        left: auto;
        right: 25%
    }

    .ant-col-lg-pull-6.ant-col-rtl {
        left: 25%;
        right: auto
    }

    .ant-col-lg-offset-6.ant-col-rtl {
        margin-left: 0;
        margin-right: 25%
    }

    .ant-col-lg-push-7.ant-col-rtl {
        left: auto;
        right: 29.16666667%
    }

    .ant-col-lg-pull-7.ant-col-rtl {
        left: 29.16666667%;
        right: auto
    }

    .ant-col-lg-offset-7.ant-col-rtl {
        margin-left: 0;
        margin-right: 29.16666667%
    }

    .ant-col-lg-push-8.ant-col-rtl {
        left: auto;
        right: 33.33333333%
    }

    .ant-col-lg-pull-8.ant-col-rtl {
        left: 33.33333333%;
        right: auto
    }

    .ant-col-lg-offset-8.ant-col-rtl {
        margin-left: 0;
        margin-right: 33.33333333%
    }

    .ant-col-lg-push-9.ant-col-rtl {
        left: auto;
        right: 37.5%
    }

    .ant-col-lg-pull-9.ant-col-rtl {
        left: 37.5%;
        right: auto
    }

    .ant-col-lg-offset-9.ant-col-rtl {
        margin-left: 0;
        margin-right: 37.5%
    }

    .ant-col-lg-push-10.ant-col-rtl {
        left: auto;
        right: 41.66666667%
    }

    .ant-col-lg-pull-10.ant-col-rtl {
        left: 41.66666667%;
        right: auto
    }

    .ant-col-lg-offset-10.ant-col-rtl {
        margin-left: 0;
        margin-right: 41.66666667%
    }

    .ant-col-lg-push-11.ant-col-rtl {
        left: auto;
        right: 45.83333333%
    }

    .ant-col-lg-pull-11.ant-col-rtl {
        left: 45.83333333%;
        right: auto
    }

    .ant-col-lg-offset-11.ant-col-rtl {
        margin-left: 0;
        margin-right: 45.83333333%
    }

    .ant-col-lg-push-12.ant-col-rtl {
        left: auto;
        right: 50%
    }

    .ant-col-lg-pull-12.ant-col-rtl {
        left: 50%;
        right: auto
    }

    .ant-col-lg-offset-12.ant-col-rtl {
        margin-left: 0;
        margin-right: 50%
    }

    .ant-col-lg-push-13.ant-col-rtl {
        left: auto;
        right: 54.16666667%
    }

    .ant-col-lg-pull-13.ant-col-rtl {
        left: 54.16666667%;
        right: auto
    }

    .ant-col-lg-offset-13.ant-col-rtl {
        margin-left: 0;
        margin-right: 54.16666667%
    }

    .ant-col-lg-push-14.ant-col-rtl {
        left: auto;
        right: 58.33333333%
    }

    .ant-col-lg-pull-14.ant-col-rtl {
        left: 58.33333333%;
        right: auto
    }

    .ant-col-lg-offset-14.ant-col-rtl {
        margin-left: 0;
        margin-right: 58.33333333%
    }

    .ant-col-lg-push-15.ant-col-rtl {
        left: auto;
        right: 62.5%
    }

    .ant-col-lg-pull-15.ant-col-rtl {
        left: 62.5%;
        right: auto
    }

    .ant-col-lg-offset-15.ant-col-rtl {
        margin-left: 0;
        margin-right: 62.5%
    }

    .ant-col-lg-push-16.ant-col-rtl {
        left: auto;
        right: 66.66666667%
    }

    .ant-col-lg-pull-16.ant-col-rtl {
        left: 66.66666667%;
        right: auto
    }

    .ant-col-lg-offset-16.ant-col-rtl {
        margin-left: 0;
        margin-right: 66.66666667%
    }

    .ant-col-lg-push-17.ant-col-rtl {
        left: auto;
        right: 70.83333333%
    }

    .ant-col-lg-pull-17.ant-col-rtl {
        left: 70.83333333%;
        right: auto
    }

    .ant-col-lg-offset-17.ant-col-rtl {
        margin-left: 0;
        margin-right: 70.83333333%
    }

    .ant-col-lg-push-18.ant-col-rtl {
        left: auto;
        right: 75%
    }

    .ant-col-lg-pull-18.ant-col-rtl {
        left: 75%;
        right: auto
    }

    .ant-col-lg-offset-18.ant-col-rtl {
        margin-left: 0;
        margin-right: 75%
    }

    .ant-col-lg-push-19.ant-col-rtl {
        left: auto;
        right: 79.16666667%
    }

    .ant-col-lg-pull-19.ant-col-rtl {
        left: 79.16666667%;
        right: auto
    }

    .ant-col-lg-offset-19.ant-col-rtl {
        margin-left: 0;
        margin-right: 79.16666667%
    }

    .ant-col-lg-push-20.ant-col-rtl {
        left: auto;
        right: 83.33333333%
    }

    .ant-col-lg-pull-20.ant-col-rtl {
        left: 83.33333333%;
        right: auto
    }

    .ant-col-lg-offset-20.ant-col-rtl {
        margin-left: 0;
        margin-right: 83.33333333%
    }

    .ant-col-lg-push-21.ant-col-rtl {
        left: auto;
        right: 87.5%
    }

    .ant-col-lg-pull-21.ant-col-rtl {
        left: 87.5%;
        right: auto
    }

    .ant-col-lg-offset-21.ant-col-rtl {
        margin-left: 0;
        margin-right: 87.5%
    }

    .ant-col-lg-push-22.ant-col-rtl {
        left: auto;
        right: 91.66666667%
    }

    .ant-col-lg-pull-22.ant-col-rtl {
        left: 91.66666667%;
        right: auto
    }

    .ant-col-lg-offset-22.ant-col-rtl {
        margin-left: 0;
        margin-right: 91.66666667%
    }

    .ant-col-lg-push-23.ant-col-rtl {
        left: auto;
        right: 95.83333333%
    }

    .ant-col-lg-pull-23.ant-col-rtl {
        left: 95.83333333%;
        right: auto
    }

    .ant-col-lg-offset-23.ant-col-rtl {
        margin-left: 0;
        margin-right: 95.83333333%
    }

    .ant-col-lg-push-24.ant-col-rtl {
        left: auto;
        right: 100%
    }

    .ant-col-lg-pull-24.ant-col-rtl {
        left: 100%;
        right: auto
    }

    .ant-col-lg-offset-24.ant-col-rtl {
        margin-left: 0;
        margin-right: 100%
    }
}

@media (min-width: 1200px) {
    .ant-col-xl-24 {
        display:block;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ant-col-xl-push-24 {
        left: 100%
    }

    .ant-col-xl-pull-24 {
        right: 100%
    }

    .ant-col-xl-offset-24 {
        margin-left: 100%
    }

    .ant-col-xl-order-24 {
        order: 24
    }

    .ant-col-xl-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%
    }

    .ant-col-xl-push-23 {
        left: 95.83333333%
    }

    .ant-col-xl-pull-23 {
        right: 95.83333333%
    }

    .ant-col-xl-offset-23 {
        margin-left: 95.83333333%
    }

    .ant-col-xl-order-23 {
        order: 23
    }

    .ant-col-xl-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%
    }

    .ant-col-xl-push-22 {
        left: 91.66666667%
    }

    .ant-col-xl-pull-22 {
        right: 91.66666667%
    }

    .ant-col-xl-offset-22 {
        margin-left: 91.66666667%
    }

    .ant-col-xl-order-22 {
        order: 22
    }

    .ant-col-xl-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%
    }

    .ant-col-xl-push-21 {
        left: 87.5%
    }

    .ant-col-xl-pull-21 {
        right: 87.5%
    }

    .ant-col-xl-offset-21 {
        margin-left: 87.5%
    }

    .ant-col-xl-order-21 {
        order: 21
    }

    .ant-col-xl-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }

    .ant-col-xl-push-20 {
        left: 83.33333333%
    }

    .ant-col-xl-pull-20 {
        right: 83.33333333%
    }

    .ant-col-xl-offset-20 {
        margin-left: 83.33333333%
    }

    .ant-col-xl-order-20 {
        order: 20
    }

    .ant-col-xl-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%
    }

    .ant-col-xl-push-19 {
        left: 79.16666667%
    }

    .ant-col-xl-pull-19 {
        right: 79.16666667%
    }

    .ant-col-xl-offset-19 {
        margin-left: 79.16666667%
    }

    .ant-col-xl-order-19 {
        order: 19
    }

    .ant-col-xl-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ant-col-xl-push-18 {
        left: 75%
    }

    .ant-col-xl-pull-18 {
        right: 75%
    }

    .ant-col-xl-offset-18 {
        margin-left: 75%
    }

    .ant-col-xl-order-18 {
        order: 18
    }

    .ant-col-xl-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%
    }

    .ant-col-xl-push-17 {
        left: 70.83333333%
    }

    .ant-col-xl-pull-17 {
        right: 70.83333333%
    }

    .ant-col-xl-offset-17 {
        margin-left: 70.83333333%
    }

    .ant-col-xl-order-17 {
        order: 17
    }

    .ant-col-xl-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ant-col-xl-push-16 {
        left: 66.66666667%
    }

    .ant-col-xl-pull-16 {
        right: 66.66666667%
    }

    .ant-col-xl-offset-16 {
        margin-left: 66.66666667%
    }

    .ant-col-xl-order-16 {
        order: 16
    }

    .ant-col-xl-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%
    }

    .ant-col-xl-push-15 {
        left: 62.5%
    }

    .ant-col-xl-pull-15 {
        right: 62.5%
    }

    .ant-col-xl-offset-15 {
        margin-left: 62.5%
    }

    .ant-col-xl-order-15 {
        order: 15
    }

    .ant-col-xl-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .ant-col-xl-push-14 {
        left: 58.33333333%
    }

    .ant-col-xl-pull-14 {
        right: 58.33333333%
    }

    .ant-col-xl-offset-14 {
        margin-left: 58.33333333%
    }

    .ant-col-xl-order-14 {
        order: 14
    }

    .ant-col-xl-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%
    }

    .ant-col-xl-push-13 {
        left: 54.16666667%
    }

    .ant-col-xl-pull-13 {
        right: 54.16666667%
    }

    .ant-col-xl-offset-13 {
        margin-left: 54.16666667%
    }

    .ant-col-xl-order-13 {
        order: 13
    }

    .ant-col-xl-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ant-col-xl-push-12 {
        left: 50%
    }

    .ant-col-xl-pull-12 {
        right: 50%
    }

    .ant-col-xl-offset-12 {
        margin-left: 50%
    }

    .ant-col-xl-order-12 {
        order: 12
    }

    .ant-col-xl-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%
    }

    .ant-col-xl-push-11 {
        left: 45.83333333%
    }

    .ant-col-xl-pull-11 {
        right: 45.83333333%
    }

    .ant-col-xl-offset-11 {
        margin-left: 45.83333333%
    }

    .ant-col-xl-order-11 {
        order: 11
    }

    .ant-col-xl-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ant-col-xl-push-10 {
        left: 41.66666667%
    }

    .ant-col-xl-pull-10 {
        right: 41.66666667%
    }

    .ant-col-xl-offset-10 {
        margin-left: 41.66666667%
    }

    .ant-col-xl-order-10 {
        order: 10
    }

    .ant-col-xl-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%
    }

    .ant-col-xl-push-9 {
        left: 37.5%
    }

    .ant-col-xl-pull-9 {
        right: 37.5%
    }

    .ant-col-xl-offset-9 {
        margin-left: 37.5%
    }

    .ant-col-xl-order-9 {
        order: 9
    }

    .ant-col-xl-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ant-col-xl-push-8 {
        left: 33.33333333%
    }

    .ant-col-xl-pull-8 {
        right: 33.33333333%
    }

    .ant-col-xl-offset-8 {
        margin-left: 33.33333333%
    }

    .ant-col-xl-order-8 {
        order: 8
    }

    .ant-col-xl-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%
    }

    .ant-col-xl-push-7 {
        left: 29.16666667%
    }

    .ant-col-xl-pull-7 {
        right: 29.16666667%
    }

    .ant-col-xl-offset-7 {
        margin-left: 29.16666667%
    }

    .ant-col-xl-order-7 {
        order: 7
    }

    .ant-col-xl-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ant-col-xl-push-6 {
        left: 25%
    }

    .ant-col-xl-pull-6 {
        right: 25%
    }

    .ant-col-xl-offset-6 {
        margin-left: 25%
    }

    .ant-col-xl-order-6 {
        order: 6
    }

    .ant-col-xl-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%
    }

    .ant-col-xl-push-5 {
        left: 20.83333333%
    }

    .ant-col-xl-pull-5 {
        right: 20.83333333%
    }

    .ant-col-xl-offset-5 {
        margin-left: 20.83333333%
    }

    .ant-col-xl-order-5 {
        order: 5
    }

    .ant-col-xl-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .ant-col-xl-push-4 {
        left: 16.66666667%
    }

    .ant-col-xl-pull-4 {
        right: 16.66666667%
    }

    .ant-col-xl-offset-4 {
        margin-left: 16.66666667%
    }

    .ant-col-xl-order-4 {
        order: 4
    }

    .ant-col-xl-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .ant-col-xl-push-3 {
        left: 12.5%
    }

    .ant-col-xl-pull-3 {
        right: 12.5%
    }

    .ant-col-xl-offset-3 {
        margin-left: 12.5%
    }

    .ant-col-xl-order-3 {
        order: 3
    }

    .ant-col-xl-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .ant-col-xl-push-2 {
        left: 8.33333333%
    }

    .ant-col-xl-pull-2 {
        right: 8.33333333%
    }

    .ant-col-xl-offset-2 {
        margin-left: 8.33333333%
    }

    .ant-col-xl-order-2 {
        order: 2
    }

    .ant-col-xl-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%
    }

    .ant-col-xl-push-1 {
        left: 4.16666667%
    }

    .ant-col-xl-pull-1 {
        right: 4.16666667%
    }

    .ant-col-xl-offset-1 {
        margin-left: 4.16666667%
    }

    .ant-col-xl-order-1 {
        order: 1
    }

    .ant-col-xl-0 {
        display: none
    }

    .ant-col-push-0 {
        left: auto
    }

    .ant-col-pull-0 {
        right: auto
    }

    .ant-col-xl-push-0 {
        left: auto
    }

    .ant-col-xl-pull-0 {
        right: auto
    }

    .ant-col-xl-offset-0 {
        margin-left: 0
    }

    .ant-col-xl-order-0 {
        order: 0
    }

    .ant-col-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-xl-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-xl-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-xl-offset-0.ant-col-rtl {
        margin-right: 0
    }

    .ant-col-xl-push-1.ant-col-rtl {
        left: auto;
        right: 4.16666667%
    }

    .ant-col-xl-pull-1.ant-col-rtl {
        left: 4.16666667%;
        right: auto
    }

    .ant-col-xl-offset-1.ant-col-rtl {
        margin-left: 0;
        margin-right: 4.16666667%
    }

    .ant-col-xl-push-2.ant-col-rtl {
        left: auto;
        right: 8.33333333%
    }

    .ant-col-xl-pull-2.ant-col-rtl {
        left: 8.33333333%;
        right: auto
    }

    .ant-col-xl-offset-2.ant-col-rtl {
        margin-left: 0;
        margin-right: 8.33333333%
    }

    .ant-col-xl-push-3.ant-col-rtl {
        left: auto;
        right: 12.5%
    }

    .ant-col-xl-pull-3.ant-col-rtl {
        left: 12.5%;
        right: auto
    }

    .ant-col-xl-offset-3.ant-col-rtl {
        margin-left: 0;
        margin-right: 12.5%
    }

    .ant-col-xl-push-4.ant-col-rtl {
        left: auto;
        right: 16.66666667%
    }

    .ant-col-xl-pull-4.ant-col-rtl {
        left: 16.66666667%;
        right: auto
    }

    .ant-col-xl-offset-4.ant-col-rtl {
        margin-left: 0;
        margin-right: 16.66666667%
    }

    .ant-col-xl-push-5.ant-col-rtl {
        left: auto;
        right: 20.83333333%
    }

    .ant-col-xl-pull-5.ant-col-rtl {
        left: 20.83333333%;
        right: auto
    }

    .ant-col-xl-offset-5.ant-col-rtl {
        margin-left: 0;
        margin-right: 20.83333333%
    }

    .ant-col-xl-push-6.ant-col-rtl {
        left: auto;
        right: 25%
    }

    .ant-col-xl-pull-6.ant-col-rtl {
        left: 25%;
        right: auto
    }

    .ant-col-xl-offset-6.ant-col-rtl {
        margin-left: 0;
        margin-right: 25%
    }

    .ant-col-xl-push-7.ant-col-rtl {
        left: auto;
        right: 29.16666667%
    }

    .ant-col-xl-pull-7.ant-col-rtl {
        left: 29.16666667%;
        right: auto
    }

    .ant-col-xl-offset-7.ant-col-rtl {
        margin-left: 0;
        margin-right: 29.16666667%
    }

    .ant-col-xl-push-8.ant-col-rtl {
        left: auto;
        right: 33.33333333%
    }

    .ant-col-xl-pull-8.ant-col-rtl {
        left: 33.33333333%;
        right: auto
    }

    .ant-col-xl-offset-8.ant-col-rtl {
        margin-left: 0;
        margin-right: 33.33333333%
    }

    .ant-col-xl-push-9.ant-col-rtl {
        left: auto;
        right: 37.5%
    }

    .ant-col-xl-pull-9.ant-col-rtl {
        left: 37.5%;
        right: auto
    }

    .ant-col-xl-offset-9.ant-col-rtl {
        margin-left: 0;
        margin-right: 37.5%
    }

    .ant-col-xl-push-10.ant-col-rtl {
        left: auto;
        right: 41.66666667%
    }

    .ant-col-xl-pull-10.ant-col-rtl {
        left: 41.66666667%;
        right: auto
    }

    .ant-col-xl-offset-10.ant-col-rtl {
        margin-left: 0;
        margin-right: 41.66666667%
    }

    .ant-col-xl-push-11.ant-col-rtl {
        left: auto;
        right: 45.83333333%
    }

    .ant-col-xl-pull-11.ant-col-rtl {
        left: 45.83333333%;
        right: auto
    }

    .ant-col-xl-offset-11.ant-col-rtl {
        margin-left: 0;
        margin-right: 45.83333333%
    }

    .ant-col-xl-push-12.ant-col-rtl {
        left: auto;
        right: 50%
    }

    .ant-col-xl-pull-12.ant-col-rtl {
        left: 50%;
        right: auto
    }

    .ant-col-xl-offset-12.ant-col-rtl {
        margin-left: 0;
        margin-right: 50%
    }

    .ant-col-xl-push-13.ant-col-rtl {
        left: auto;
        right: 54.16666667%
    }

    .ant-col-xl-pull-13.ant-col-rtl {
        left: 54.16666667%;
        right: auto
    }

    .ant-col-xl-offset-13.ant-col-rtl {
        margin-left: 0;
        margin-right: 54.16666667%
    }

    .ant-col-xl-push-14.ant-col-rtl {
        left: auto;
        right: 58.33333333%
    }

    .ant-col-xl-pull-14.ant-col-rtl {
        left: 58.33333333%;
        right: auto
    }

    .ant-col-xl-offset-14.ant-col-rtl {
        margin-left: 0;
        margin-right: 58.33333333%
    }

    .ant-col-xl-push-15.ant-col-rtl {
        left: auto;
        right: 62.5%
    }

    .ant-col-xl-pull-15.ant-col-rtl {
        left: 62.5%;
        right: auto
    }

    .ant-col-xl-offset-15.ant-col-rtl {
        margin-left: 0;
        margin-right: 62.5%
    }

    .ant-col-xl-push-16.ant-col-rtl {
        left: auto;
        right: 66.66666667%
    }

    .ant-col-xl-pull-16.ant-col-rtl {
        left: 66.66666667%;
        right: auto
    }

    .ant-col-xl-offset-16.ant-col-rtl {
        margin-left: 0;
        margin-right: 66.66666667%
    }

    .ant-col-xl-push-17.ant-col-rtl {
        left: auto;
        right: 70.83333333%
    }

    .ant-col-xl-pull-17.ant-col-rtl {
        left: 70.83333333%;
        right: auto
    }

    .ant-col-xl-offset-17.ant-col-rtl {
        margin-left: 0;
        margin-right: 70.83333333%
    }

    .ant-col-xl-push-18.ant-col-rtl {
        left: auto;
        right: 75%
    }

    .ant-col-xl-pull-18.ant-col-rtl {
        left: 75%;
        right: auto
    }

    .ant-col-xl-offset-18.ant-col-rtl {
        margin-left: 0;
        margin-right: 75%
    }

    .ant-col-xl-push-19.ant-col-rtl {
        left: auto;
        right: 79.16666667%
    }

    .ant-col-xl-pull-19.ant-col-rtl {
        left: 79.16666667%;
        right: auto
    }

    .ant-col-xl-offset-19.ant-col-rtl {
        margin-left: 0;
        margin-right: 79.16666667%
    }

    .ant-col-xl-push-20.ant-col-rtl {
        left: auto;
        right: 83.33333333%
    }

    .ant-col-xl-pull-20.ant-col-rtl {
        left: 83.33333333%;
        right: auto
    }

    .ant-col-xl-offset-20.ant-col-rtl {
        margin-left: 0;
        margin-right: 83.33333333%
    }

    .ant-col-xl-push-21.ant-col-rtl {
        left: auto;
        right: 87.5%
    }

    .ant-col-xl-pull-21.ant-col-rtl {
        left: 87.5%;
        right: auto
    }

    .ant-col-xl-offset-21.ant-col-rtl {
        margin-left: 0;
        margin-right: 87.5%
    }

    .ant-col-xl-push-22.ant-col-rtl {
        left: auto;
        right: 91.66666667%
    }

    .ant-col-xl-pull-22.ant-col-rtl {
        left: 91.66666667%;
        right: auto
    }

    .ant-col-xl-offset-22.ant-col-rtl {
        margin-left: 0;
        margin-right: 91.66666667%
    }

    .ant-col-xl-push-23.ant-col-rtl {
        left: auto;
        right: 95.83333333%
    }

    .ant-col-xl-pull-23.ant-col-rtl {
        left: 95.83333333%;
        right: auto
    }

    .ant-col-xl-offset-23.ant-col-rtl {
        margin-left: 0;
        margin-right: 95.83333333%
    }

    .ant-col-xl-push-24.ant-col-rtl {
        left: auto;
        right: 100%
    }

    .ant-col-xl-pull-24.ant-col-rtl {
        left: 100%;
        right: auto
    }

    .ant-col-xl-offset-24.ant-col-rtl {
        margin-left: 0;
        margin-right: 100%
    }
}

@media (min-width: 1600px) {
    .ant-col-xxl-24 {
        display:block;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ant-col-xxl-push-24 {
        left: 100%
    }

    .ant-col-xxl-pull-24 {
        right: 100%
    }

    .ant-col-xxl-offset-24 {
        margin-left: 100%
    }

    .ant-col-xxl-order-24 {
        order: 24
    }

    .ant-col-xxl-23 {
        display: block;
        flex: 0 0 95.83333333%;
        max-width: 95.83333333%
    }

    .ant-col-xxl-push-23 {
        left: 95.83333333%
    }

    .ant-col-xxl-pull-23 {
        right: 95.83333333%
    }

    .ant-col-xxl-offset-23 {
        margin-left: 95.83333333%
    }

    .ant-col-xxl-order-23 {
        order: 23
    }

    .ant-col-xxl-22 {
        display: block;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%
    }

    .ant-col-xxl-push-22 {
        left: 91.66666667%
    }

    .ant-col-xxl-pull-22 {
        right: 91.66666667%
    }

    .ant-col-xxl-offset-22 {
        margin-left: 91.66666667%
    }

    .ant-col-xxl-order-22 {
        order: 22
    }

    .ant-col-xxl-21 {
        display: block;
        flex: 0 0 87.5%;
        max-width: 87.5%
    }

    .ant-col-xxl-push-21 {
        left: 87.5%
    }

    .ant-col-xxl-pull-21 {
        right: 87.5%
    }

    .ant-col-xxl-offset-21 {
        margin-left: 87.5%
    }

    .ant-col-xxl-order-21 {
        order: 21
    }

    .ant-col-xxl-20 {
        display: block;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }

    .ant-col-xxl-push-20 {
        left: 83.33333333%
    }

    .ant-col-xxl-pull-20 {
        right: 83.33333333%
    }

    .ant-col-xxl-offset-20 {
        margin-left: 83.33333333%
    }

    .ant-col-xxl-order-20 {
        order: 20
    }

    .ant-col-xxl-19 {
        display: block;
        flex: 0 0 79.16666667%;
        max-width: 79.16666667%
    }

    .ant-col-xxl-push-19 {
        left: 79.16666667%
    }

    .ant-col-xxl-pull-19 {
        right: 79.16666667%
    }

    .ant-col-xxl-offset-19 {
        margin-left: 79.16666667%
    }

    .ant-col-xxl-order-19 {
        order: 19
    }

    .ant-col-xxl-18 {
        display: block;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ant-col-xxl-push-18 {
        left: 75%
    }

    .ant-col-xxl-pull-18 {
        right: 75%
    }

    .ant-col-xxl-offset-18 {
        margin-left: 75%
    }

    .ant-col-xxl-order-18 {
        order: 18
    }

    .ant-col-xxl-17 {
        display: block;
        flex: 0 0 70.83333333%;
        max-width: 70.83333333%
    }

    .ant-col-xxl-push-17 {
        left: 70.83333333%
    }

    .ant-col-xxl-pull-17 {
        right: 70.83333333%
    }

    .ant-col-xxl-offset-17 {
        margin-left: 70.83333333%
    }

    .ant-col-xxl-order-17 {
        order: 17
    }

    .ant-col-xxl-16 {
        display: block;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ant-col-xxl-push-16 {
        left: 66.66666667%
    }

    .ant-col-xxl-pull-16 {
        right: 66.66666667%
    }

    .ant-col-xxl-offset-16 {
        margin-left: 66.66666667%
    }

    .ant-col-xxl-order-16 {
        order: 16
    }

    .ant-col-xxl-15 {
        display: block;
        flex: 0 0 62.5%;
        max-width: 62.5%
    }

    .ant-col-xxl-push-15 {
        left: 62.5%
    }

    .ant-col-xxl-pull-15 {
        right: 62.5%
    }

    .ant-col-xxl-offset-15 {
        margin-left: 62.5%
    }

    .ant-col-xxl-order-15 {
        order: 15
    }

    .ant-col-xxl-14 {
        display: block;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .ant-col-xxl-push-14 {
        left: 58.33333333%
    }

    .ant-col-xxl-pull-14 {
        right: 58.33333333%
    }

    .ant-col-xxl-offset-14 {
        margin-left: 58.33333333%
    }

    .ant-col-xxl-order-14 {
        order: 14
    }

    .ant-col-xxl-13 {
        display: block;
        flex: 0 0 54.16666667%;
        max-width: 54.16666667%
    }

    .ant-col-xxl-push-13 {
        left: 54.16666667%
    }

    .ant-col-xxl-pull-13 {
        right: 54.16666667%
    }

    .ant-col-xxl-offset-13 {
        margin-left: 54.16666667%
    }

    .ant-col-xxl-order-13 {
        order: 13
    }

    .ant-col-xxl-12 {
        display: block;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ant-col-xxl-push-12 {
        left: 50%
    }

    .ant-col-xxl-pull-12 {
        right: 50%
    }

    .ant-col-xxl-offset-12 {
        margin-left: 50%
    }

    .ant-col-xxl-order-12 {
        order: 12
    }

    .ant-col-xxl-11 {
        display: block;
        flex: 0 0 45.83333333%;
        max-width: 45.83333333%
    }

    .ant-col-xxl-push-11 {
        left: 45.83333333%
    }

    .ant-col-xxl-pull-11 {
        right: 45.83333333%
    }

    .ant-col-xxl-offset-11 {
        margin-left: 45.83333333%
    }

    .ant-col-xxl-order-11 {
        order: 11
    }

    .ant-col-xxl-10 {
        display: block;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ant-col-xxl-push-10 {
        left: 41.66666667%
    }

    .ant-col-xxl-pull-10 {
        right: 41.66666667%
    }

    .ant-col-xxl-offset-10 {
        margin-left: 41.66666667%
    }

    .ant-col-xxl-order-10 {
        order: 10
    }

    .ant-col-xxl-9 {
        display: block;
        flex: 0 0 37.5%;
        max-width: 37.5%
    }

    .ant-col-xxl-push-9 {
        left: 37.5%
    }

    .ant-col-xxl-pull-9 {
        right: 37.5%
    }

    .ant-col-xxl-offset-9 {
        margin-left: 37.5%
    }

    .ant-col-xxl-order-9 {
        order: 9
    }

    .ant-col-xxl-8 {
        display: block;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ant-col-xxl-push-8 {
        left: 33.33333333%
    }

    .ant-col-xxl-pull-8 {
        right: 33.33333333%
    }

    .ant-col-xxl-offset-8 {
        margin-left: 33.33333333%
    }

    .ant-col-xxl-order-8 {
        order: 8
    }

    .ant-col-xxl-7 {
        display: block;
        flex: 0 0 29.16666667%;
        max-width: 29.16666667%
    }

    .ant-col-xxl-push-7 {
        left: 29.16666667%
    }

    .ant-col-xxl-pull-7 {
        right: 29.16666667%
    }

    .ant-col-xxl-offset-7 {
        margin-left: 29.16666667%
    }

    .ant-col-xxl-order-7 {
        order: 7
    }

    .ant-col-xxl-6 {
        display: block;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ant-col-xxl-push-6 {
        left: 25%
    }

    .ant-col-xxl-pull-6 {
        right: 25%
    }

    .ant-col-xxl-offset-6 {
        margin-left: 25%
    }

    .ant-col-xxl-order-6 {
        order: 6
    }

    .ant-col-xxl-5 {
        display: block;
        flex: 0 0 20.83333333%;
        max-width: 20.83333333%
    }

    .ant-col-xxl-push-5 {
        left: 20.83333333%
    }

    .ant-col-xxl-pull-5 {
        right: 20.83333333%
    }

    .ant-col-xxl-offset-5 {
        margin-left: 20.83333333%
    }

    .ant-col-xxl-order-5 {
        order: 5
    }

    .ant-col-xxl-4 {
        display: block;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .ant-col-xxl-push-4 {
        left: 16.66666667%
    }

    .ant-col-xxl-pull-4 {
        right: 16.66666667%
    }

    .ant-col-xxl-offset-4 {
        margin-left: 16.66666667%
    }

    .ant-col-xxl-order-4 {
        order: 4
    }

    .ant-col-xxl-3 {
        display: block;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .ant-col-xxl-push-3 {
        left: 12.5%
    }

    .ant-col-xxl-pull-3 {
        right: 12.5%
    }

    .ant-col-xxl-offset-3 {
        margin-left: 12.5%
    }

    .ant-col-xxl-order-3 {
        order: 3
    }

    .ant-col-xxl-2 {
        display: block;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .ant-col-xxl-push-2 {
        left: 8.33333333%
    }

    .ant-col-xxl-pull-2 {
        right: 8.33333333%
    }

    .ant-col-xxl-offset-2 {
        margin-left: 8.33333333%
    }

    .ant-col-xxl-order-2 {
        order: 2
    }

    .ant-col-xxl-1 {
        display: block;
        flex: 0 0 4.16666667%;
        max-width: 4.16666667%
    }

    .ant-col-xxl-push-1 {
        left: 4.16666667%
    }

    .ant-col-xxl-pull-1 {
        right: 4.16666667%
    }

    .ant-col-xxl-offset-1 {
        margin-left: 4.16666667%
    }

    .ant-col-xxl-order-1 {
        order: 1
    }

    .ant-col-xxl-0 {
        display: none
    }

    .ant-col-push-0 {
        left: auto
    }

    .ant-col-pull-0 {
        right: auto
    }

    .ant-col-xxl-push-0 {
        left: auto
    }

    .ant-col-xxl-pull-0 {
        right: auto
    }

    .ant-col-xxl-offset-0 {
        margin-left: 0
    }

    .ant-col-xxl-order-0 {
        order: 0
    }

    .ant-col-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-xxl-push-0.ant-col-rtl {
        right: auto
    }

    .ant-col-xxl-pull-0.ant-col-rtl {
        left: auto
    }

    .ant-col-xxl-offset-0.ant-col-rtl {
        margin-right: 0
    }

    .ant-col-xxl-push-1.ant-col-rtl {
        left: auto;
        right: 4.16666667%
    }

    .ant-col-xxl-pull-1.ant-col-rtl {
        left: 4.16666667%;
        right: auto
    }

    .ant-col-xxl-offset-1.ant-col-rtl {
        margin-left: 0;
        margin-right: 4.16666667%
    }

    .ant-col-xxl-push-2.ant-col-rtl {
        left: auto;
        right: 8.33333333%
    }

    .ant-col-xxl-pull-2.ant-col-rtl {
        left: 8.33333333%;
        right: auto
    }

    .ant-col-xxl-offset-2.ant-col-rtl {
        margin-left: 0;
        margin-right: 8.33333333%
    }

    .ant-col-xxl-push-3.ant-col-rtl {
        left: auto;
        right: 12.5%
    }

    .ant-col-xxl-pull-3.ant-col-rtl {
        left: 12.5%;
        right: auto
    }

    .ant-col-xxl-offset-3.ant-col-rtl {
        margin-left: 0;
        margin-right: 12.5%
    }

    .ant-col-xxl-push-4.ant-col-rtl {
        left: auto;
        right: 16.66666667%
    }

    .ant-col-xxl-pull-4.ant-col-rtl {
        left: 16.66666667%;
        right: auto
    }

    .ant-col-xxl-offset-4.ant-col-rtl {
        margin-left: 0;
        margin-right: 16.66666667%
    }

    .ant-col-xxl-push-5.ant-col-rtl {
        left: auto;
        right: 20.83333333%
    }

    .ant-col-xxl-pull-5.ant-col-rtl {
        left: 20.83333333%;
        right: auto
    }

    .ant-col-xxl-offset-5.ant-col-rtl {
        margin-left: 0;
        margin-right: 20.83333333%
    }

    .ant-col-xxl-push-6.ant-col-rtl {
        left: auto;
        right: 25%
    }

    .ant-col-xxl-pull-6.ant-col-rtl {
        left: 25%;
        right: auto
    }

    .ant-col-xxl-offset-6.ant-col-rtl {
        margin-left: 0;
        margin-right: 25%
    }

    .ant-col-xxl-push-7.ant-col-rtl {
        left: auto;
        right: 29.16666667%
    }

    .ant-col-xxl-pull-7.ant-col-rtl {
        left: 29.16666667%;
        right: auto
    }

    .ant-col-xxl-offset-7.ant-col-rtl {
        margin-left: 0;
        margin-right: 29.16666667%
    }

    .ant-col-xxl-push-8.ant-col-rtl {
        left: auto;
        right: 33.33333333%
    }

    .ant-col-xxl-pull-8.ant-col-rtl {
        left: 33.33333333%;
        right: auto
    }

    .ant-col-xxl-offset-8.ant-col-rtl {
        margin-left: 0;
        margin-right: 33.33333333%
    }

    .ant-col-xxl-push-9.ant-col-rtl {
        left: auto;
        right: 37.5%
    }

    .ant-col-xxl-pull-9.ant-col-rtl {
        left: 37.5%;
        right: auto
    }

    .ant-col-xxl-offset-9.ant-col-rtl {
        margin-left: 0;
        margin-right: 37.5%
    }

    .ant-col-xxl-push-10.ant-col-rtl {
        left: auto;
        right: 41.66666667%
    }

    .ant-col-xxl-pull-10.ant-col-rtl {
        left: 41.66666667%;
        right: auto
    }

    .ant-col-xxl-offset-10.ant-col-rtl {
        margin-left: 0;
        margin-right: 41.66666667%
    }

    .ant-col-xxl-push-11.ant-col-rtl {
        left: auto;
        right: 45.83333333%
    }

    .ant-col-xxl-pull-11.ant-col-rtl {
        left: 45.83333333%;
        right: auto
    }

    .ant-col-xxl-offset-11.ant-col-rtl {
        margin-left: 0;
        margin-right: 45.83333333%
    }

    .ant-col-xxl-push-12.ant-col-rtl {
        left: auto;
        right: 50%
    }

    .ant-col-xxl-pull-12.ant-col-rtl {
        left: 50%;
        right: auto
    }

    .ant-col-xxl-offset-12.ant-col-rtl {
        margin-left: 0;
        margin-right: 50%
    }

    .ant-col-xxl-push-13.ant-col-rtl {
        left: auto;
        right: 54.16666667%
    }

    .ant-col-xxl-pull-13.ant-col-rtl {
        left: 54.16666667%;
        right: auto
    }

    .ant-col-xxl-offset-13.ant-col-rtl {
        margin-left: 0;
        margin-right: 54.16666667%
    }

    .ant-col-xxl-push-14.ant-col-rtl {
        left: auto;
        right: 58.33333333%
    }

    .ant-col-xxl-pull-14.ant-col-rtl {
        left: 58.33333333%;
        right: auto
    }

    .ant-col-xxl-offset-14.ant-col-rtl {
        margin-left: 0;
        margin-right: 58.33333333%
    }

    .ant-col-xxl-push-15.ant-col-rtl {
        left: auto;
        right: 62.5%
    }

    .ant-col-xxl-pull-15.ant-col-rtl {
        left: 62.5%;
        right: auto
    }

    .ant-col-xxl-offset-15.ant-col-rtl {
        margin-left: 0;
        margin-right: 62.5%
    }

    .ant-col-xxl-push-16.ant-col-rtl {
        left: auto;
        right: 66.66666667%
    }

    .ant-col-xxl-pull-16.ant-col-rtl {
        left: 66.66666667%;
        right: auto
    }

    .ant-col-xxl-offset-16.ant-col-rtl {
        margin-left: 0;
        margin-right: 66.66666667%
    }

    .ant-col-xxl-push-17.ant-col-rtl {
        left: auto;
        right: 70.83333333%
    }

    .ant-col-xxl-pull-17.ant-col-rtl {
        left: 70.83333333%;
        right: auto
    }

    .ant-col-xxl-offset-17.ant-col-rtl {
        margin-left: 0;
        margin-right: 70.83333333%
    }

    .ant-col-xxl-push-18.ant-col-rtl {
        left: auto;
        right: 75%
    }

    .ant-col-xxl-pull-18.ant-col-rtl {
        left: 75%;
        right: auto
    }

    .ant-col-xxl-offset-18.ant-col-rtl {
        margin-left: 0;
        margin-right: 75%
    }

    .ant-col-xxl-push-19.ant-col-rtl {
        left: auto;
        right: 79.16666667%
    }

    .ant-col-xxl-pull-19.ant-col-rtl {
        left: 79.16666667%;
        right: auto
    }

    .ant-col-xxl-offset-19.ant-col-rtl {
        margin-left: 0;
        margin-right: 79.16666667%
    }

    .ant-col-xxl-push-20.ant-col-rtl {
        left: auto;
        right: 83.33333333%
    }

    .ant-col-xxl-pull-20.ant-col-rtl {
        left: 83.33333333%;
        right: auto
    }

    .ant-col-xxl-offset-20.ant-col-rtl {
        margin-left: 0;
        margin-right: 83.33333333%
    }

    .ant-col-xxl-push-21.ant-col-rtl {
        left: auto;
        right: 87.5%
    }

    .ant-col-xxl-pull-21.ant-col-rtl {
        left: 87.5%;
        right: auto
    }

    .ant-col-xxl-offset-21.ant-col-rtl {
        margin-left: 0;
        margin-right: 87.5%
    }

    .ant-col-xxl-push-22.ant-col-rtl {
        left: auto;
        right: 91.66666667%
    }

    .ant-col-xxl-pull-22.ant-col-rtl {
        left: 91.66666667%;
        right: auto
    }

    .ant-col-xxl-offset-22.ant-col-rtl {
        margin-left: 0;
        margin-right: 91.66666667%
    }

    .ant-col-xxl-push-23.ant-col-rtl {
        left: auto;
        right: 95.83333333%
    }

    .ant-col-xxl-pull-23.ant-col-rtl {
        left: 95.83333333%;
        right: auto
    }

    .ant-col-xxl-offset-23.ant-col-rtl {
        margin-left: 0;
        margin-right: 95.83333333%
    }

    .ant-col-xxl-push-24.ant-col-rtl {
        left: auto;
        right: 100%
    }

    .ant-col-xxl-pull-24.ant-col-rtl {
        left: 100%;
        right: auto
    }

    .ant-col-xxl-offset-24.ant-col-rtl {
        margin-left: 0;
        margin-right: 100%
    }
}

.ant-row-rtl {
    direction: rtl
}

.ant-image {
    display: inline-block;
    position: relative
}

.ant-image-img {
    height: auto;
    vertical-align: middle;
    width: 100%
}

.ant-image-img-placeholder {
    background-color: #f5f5f5;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0LjUgMi41aC0xM0EuNS41IDAgMCAwIDEgM3YxMGEuNS41IDAgMCAwIC41LjVoMTNhLjUuNSAwIDAgMCAuNS0uNVYzYS41LjUgMCAwIDAtLjUtLjV6TTUuMjgxIDQuNzVhMSAxIDAgMCAxIDAgMiAxIDEgMCAwIDEgMC0yem04LjAzIDYuODNhLjEyNy4xMjcgMCAwIDEtLjA4MS4wM0gyLjc2OWEuMTI1LjEyNSAwIDAgMS0uMDk2LS4yMDdsMi42NjEtMy4xNTZhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTYuMDE2TDcuMDggMTAuMDlsMi40Ny0yLjkzYS4xMjYuMTI2IDAgMCAxIC4xNzctLjAxNmwuMDE1LjAxNiAzLjU4OCA0LjI0NGEuMTI3LjEyNyAwIDAgMS0uMDIuMTc1eiIgZmlsbD0iIzhDOEM4QyIvPjwvc3ZnPg==);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 30%
}

.ant-image-mask {
    align-items: center;
    background: rgba(0,0,0,.5);
    bottom: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s
}

.ant-image-mask-info {
    overflow: hidden;
    padding: 0 4px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-image-mask-info .anticon {
    margin-inline-end:4px}

.ant-image-mask:hover {
    opacity: 1
}

.ant-image-placeholder {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-image-preview {
    height: 100%;
    pointer-events: none;
    text-align: center
}

.ant-image-preview.ant-zoom-appear,.ant-image-preview.ant-zoom-enter {
    animation-duration: .3s;
    opacity: 0;
    transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-image-preview-mask {
    background-color: rgba(0,0,0,.45);
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.ant-image-preview-mask-hidden {
    display: none
}

.ant-image-preview-wrap {
    bottom: 0;
    left: 0;
    outline: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0
}

.ant-image-preview-body {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0
}

.ant-image-preview-img {
    cursor: grab;
    max-height: 100%;
    max-width: 100%;
    pointer-events: auto;
    transform: scaleX(1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle
}

.ant-image-preview-img,.ant-image-preview-img-wrapper {
    transition: transform .3s cubic-bezier(.215,.61,.355,1) 0s
}

.ant-image-preview-img-wrapper {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-image-preview-img-wrapper:before {
    content: "";
    display: inline-block;
    height: 50%;
    margin-right: -1px;
    width: 1px
}

.ant-image-preview-moving .ant-image-preview-img {
    cursor: grabbing
}

.ant-image-preview-moving .ant-image-preview-img-wrapper {
    transition-duration: 0s
}

.ant-image-preview-wrap {
    z-index: 1080
}

.ant-image-preview-operations {
    font-feature-settings: "tnum","tnum";
    align-items: center;
    background: rgba(0,0,0,.1);
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: flex;
    flex-direction: row-reverse;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    pointer-events: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

.ant-image-preview-operations-operation {
    cursor: pointer;
    margin-left: 12px;
    padding: 12px
}

.ant-image-preview-operations-operation-disabled {
    color: hsla(0,0%,100%,.25);
    pointer-events: none
}

.ant-image-preview-operations-operation:last-of-type {
    margin-left: 0
}

.ant-image-preview-operations-progress {
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}

.ant-image-preview-operations-icon {
    font-size: 18px
}

.ant-image-preview-switch-left,.ant-image-preview-switch-right {
    align-items: center;
    background: rgba(0,0,0,.1);
    border-radius: 50%;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-top: -22px;
    pointer-events: auto;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 44px;
    z-index: 1
}

.ant-image-preview-switch-left-disabled,.ant-image-preview-switch-right-disabled {
    color: hsla(0,0%,100%,.25);
    cursor: not-allowed
}

.ant-image-preview-switch-left-disabled>.anticon,.ant-image-preview-switch-right-disabled>.anticon {
    cursor: not-allowed
}

.ant-image-preview-switch-left>.anticon,.ant-image-preview-switch-right>.anticon {
    font-size: 18px
}

.ant-image-preview-switch-left {
    left: 10px
}

.ant-image-preview-switch-right {
    right: 10px
}

.ant-input-affix-wrapper {
    background-color: transparent;
    background-image: none;
    border: 1px solid #434343;
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    display: inline-flex;
    font-size: 14px;
    line-height: 1.5715;
    min-width: 0;
    padding: 4px 11px;
    position: relative;
    transition: all .3s;
    width: 100%
}

.ant-input-affix-wrapper::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-input-affix-wrapper:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-input-affix-wrapper::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-input-affix-wrapper:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-input-affix-wrapper:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-input-affix-wrapper:placeholder-shown {
    text-overflow: ellipsis
}

.ant-input-affix-wrapper:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-input-affix-wrapper:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-affix-wrapper-focused,.ant-input-affix-wrapper:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-input-affix-wrapper-focused,.ant-input-rtl .ant-input-affix-wrapper:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-affix-wrapper-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-affix-wrapper-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-affix-wrapper[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-affix-wrapper[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-affix-wrapper-borderless,.ant-input-affix-wrapper-borderless-disabled,.ant-input-affix-wrapper-borderless-focused,.ant-input-affix-wrapper-borderless:focus,.ant-input-affix-wrapper-borderless:hover,.ant-input-affix-wrapper-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-input-affix-wrapper {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-input-affix-wrapper-lg {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-input-affix-wrapper-sm {
    padding: 0 7px
}

.ant-input-affix-wrapper-rtl {
    direction: rtl
}

.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
    border-color: #bf9003;
    border-right-width: 1px;
    z-index: 1
}

.ant-input-rtl .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-search-with-button .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
    z-index: 0
}

.ant-input-affix-wrapper-focused,.ant-input-affix-wrapper:focus {
    z-index: 1
}

.ant-input-affix-wrapper-disabled .ant-input[disabled] {
    background: transparent
}

.ant-input-affix-wrapper>input.ant-input {
    border: none;
    outline: none;
    padding: 0
}

.ant-input-affix-wrapper>input.ant-input:focus {
    box-shadow: none!important
}

.ant-input-affix-wrapper:before {
    content: "\a0";
    visibility: hidden;
    width: 0
}

.ant-input-prefix,.ant-input-suffix {
    align-items: center;
    display: flex;
    flex: none
}

.ant-input-prefix>:not(:last-child),.ant-input-suffix>:not(:last-child) {
    margin-right: 8px
}

.ant-input-show-count-suffix {
    color: hsla(0,0%,100%,.45)
}

.ant-input-show-count-has-suffix {
    margin-right: 2px
}

.ant-input-prefix {
    margin-right: 4px
}

.ant-input-suffix {
    margin-left: 4px
}

.ant-input-clear-icon,.anticon.ant-input-clear-icon {
    color: hsla(0,0%,100%,.3);
    cursor: pointer;
    font-size: 12px;
    margin: 0;
    transition: color .3s;
    vertical-align: -1px
}

.ant-input-clear-icon:hover,.anticon.ant-input-clear-icon:hover {
    color: hsla(0,0%,100%,.45)
}

.ant-input-clear-icon:active,.anticon.ant-input-clear-icon:active {
    color: hsla(0,0%,100%,.85)
}

.ant-input-clear-icon-hidden,.anticon.ant-input-clear-icon-hidden {
    visibility: hidden
}

.ant-input-clear-icon-has-suffix,.anticon.ant-input-clear-icon-has-suffix {
    margin: 0 4px
}

.ant-input-affix-wrapper-textarea-with-clear-btn {
    border: 0!important;
    padding: 0!important
}

.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 1
}

.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input,.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover {
    background: transparent;
    border-color: #a61d24
}

.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-input-status-error .ant-input-prefix {
    color: #a61d24
}

.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input,.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover {
    background: transparent;
    border-color: #d89614
}

.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-input-status-warning .ant-input-prefix {
    color: #d89614
}

.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
    background: transparent;
    border-color: #a61d24
}

.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused,.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-input-affix-wrapper-status-error .ant-input-prefix {
    color: #a61d24
}

.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
    background: transparent;
    border-color: #d89614
}

.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused,.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-input-affix-wrapper-status-warning .ant-input-prefix {
    color: #d89614
}

.ant-input-textarea-status-error.ant-input-textarea-has-feedback .ant-input,.ant-input-textarea-status-success.ant-input-textarea-has-feedback .ant-input,.ant-input-textarea-status-validating.ant-input-textarea-has-feedback .ant-input,.ant-input-textarea-status-warning.ant-input-textarea-has-feedback .ant-input {
    padding-right: 24px
}

.ant-input-group-wrapper-status-error .ant-input-group-addon {
    border-color: #a61d24;
    color: #a61d24
}

.ant-input-group-wrapper-status-warning .ant-input-group-addon {
    border-color: #d89614;
    color: #d89614
}

.ant-input {
    font-feature-settings: "tnum","tnum";
    background-color: transparent;
    background-image: none;
    border: 1px solid #434343;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    min-width: 0;
    padding: 4px 11px;
    position: relative;
    transition: all .3s;
    width: 100%
}

.ant-input::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-input:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-input::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-input:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-input:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-input:placeholder-shown {
    text-overflow: ellipsis
}

.ant-input:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-input:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-focused,.ant-input:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-input-focused,.ant-input-rtl .ant-input:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-borderless,.ant-input-borderless-disabled,.ant-input-borderless-focused,.ant-input-borderless:focus,.ant-input-borderless:hover,.ant-input-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-input {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-input-lg {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-input-sm {
    padding: 0 7px
}

.ant-input-rtl {
    direction: rtl
}

.ant-input-group {
    font-feature-settings: "tnum","tnum";
    border-collapse: separate;
    border-spacing: 0;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: table;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%
}

.ant-input-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.ant-input-group>[class*=col-] {
    padding-right: 8px
}

.ant-input-group>[class*=col-]:last-child {
    padding-right: 0
}

.ant-input-group-addon,.ant-input-group-wrap,.ant-input-group>.ant-input {
    display: table-cell
}

.ant-input-group-addon:not(:first-child):not(:last-child),.ant-input-group-wrap:not(:first-child):not(:last-child),.ant-input-group>.ant-input:not(:first-child):not(:last-child) {
    border-radius: 0
}

.ant-input-group-addon,.ant-input-group-wrap {
    vertical-align: middle;
    white-space: nowrap;
    width: 1px
}

.ant-input-group-wrap>* {
    display: block!important
}

.ant-input-group .ant-input {
    float: left;
    margin-bottom: 0;
    text-align: inherit;
    width: 100%
}

.ant-input-group .ant-input:focus,.ant-input-group .ant-input:hover {
    border-right-width: 1px;
    z-index: 1
}

.ant-input-search-with-button .ant-input-group .ant-input:hover {
    z-index: 0
}

.ant-input-group-addon {
    background-color: hsla(0,0%,100%,.04);
    border: 1px solid #434343;
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-weight: 400;
    padding: 0 11px;
    position: relative;
    text-align: center;
    transition: all .3s
}

.ant-input-group-addon .ant-select {
    margin: -5px -11px
}

.ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
    background-color: inherit;
    border: 1px solid transparent;
    box-shadow: none
}

.ant-input-group-addon .ant-select-focused .ant-select-selector,.ant-input-group-addon .ant-select-open .ant-select-selector {
    color: #f0b90b
}

.ant-input-group-addon .ant-cascader-picker {
    background-color: transparent;
    margin: -9px -12px
}

.ant-input-group-addon .ant-cascader-picker .ant-cascader-input {
    border: 0;
    box-shadow: none;
    text-align: left
}

.ant-input-group-addon:first-child,.ant-input-group-addon:first-child .ant-select .ant-select-selector,.ant-input-group>.ant-input:first-child,.ant-input-group>.ant-input:first-child .ant-select .ant-select-selector {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ant-input-group>.ant-input-affix-wrapper:not(:first-child) .ant-input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.ant-input-group>.ant-input-affix-wrapper:not(:last-child) .ant-input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ant-input-group-addon:first-child {
    border-right: 0
}

.ant-input-group-addon:last-child {
    border-left: 0
}

.ant-input-group-addon:last-child,.ant-input-group-addon:last-child .ant-select .ant-select-selector,.ant-input-group>.ant-input:last-child,.ant-input-group>.ant-input:last-child .ant-select .ant-select-selector {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.ant-input-group-lg .ant-input,.ant-input-group-lg>.ant-input-group-addon {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-input-group-sm .ant-input,.ant-input-group-sm>.ant-input-group-addon {
    padding: 0 7px
}

.ant-input-group-lg .ant-select-single .ant-select-selector {
    height: 40px
}

.ant-input-group-sm .ant-select-single .ant-select-selector {
    height: 24px
}

.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:last-child) {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.ant-input-group .ant-input-affix-wrapper:not(:first-child),.ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.ant-input-group.ant-input-group-compact {
    display: block
}

.ant-input-group.ant-input-group-compact:before {
    content: "";
    display: table
}

.ant-input-group.ant-input-group-compact:after {
    clear: both;
    content: "";
    display: table
}

.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child),.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child),.ant-input-group.ant-input-group-compact>.ant-input:not(:first-child):not(:last-child) {
    border-right-width: 1px
}

.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus,.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover,.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus,.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover,.ant-input-group.ant-input-group-compact>.ant-input:not(:first-child):not(:last-child):focus,.ant-input-group.ant-input-group-compact>.ant-input:not(:first-child):not(:last-child):hover {
    z-index: 1
}

.ant-input-group.ant-input-group-compact>* {
    border-radius: 0;
    display: inline-block;
    float: none;
    vertical-align: top
}

.ant-input-group.ant-input-group-compact>.ant-input-affix-wrapper,.ant-input-group.ant-input-group-compact>.ant-picker-range {
    display: inline-flex
}

.ant-input-group.ant-input-group-compact>:not(:last-child) {
    border-right-width: 1px;
    margin-right: -1px
}

.ant-input-group.ant-input-group-compact .ant-input {
    float: none
}

.ant-input-group.ant-input-group-compact>.ant-cascader-picker .ant-input,.ant-input-group.ant-input-group-compact>.ant-input-group-wrapper .ant-input,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-selector {
    border-radius: 0;
    border-right-width: 1px
}

.ant-input-group.ant-input-group-compact>.ant-cascader-picker .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-cascader-picker .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-input-group-wrapper .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-input-group-wrapper .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-select-focused,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-arrow,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-selector:focus,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-selector:hover {
    z-index: 1
}

.ant-input-group.ant-input-group-compact>.ant-cascader-picker:first-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete:first-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-select:first-child>.ant-select-selector,.ant-input-group.ant-input-group-compact>:first-child {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.ant-input-group.ant-input-group-compact>.ant-cascader-picker-focused:last-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-cascader-picker:last-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-select:last-child>.ant-select-selector,.ant-input-group.ant-input-group-compact>:last-child {
    border-bottom-right-radius: 6px;
    border-right-width: 1px;
    border-top-right-radius: 6px
}

.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input {
    vertical-align: top
}

.ant-input-group.ant-input-group-compact .ant-input-group-wrapper+.ant-input-group-wrapper {
    margin-left: -1px
}

.ant-input-group.ant-input-group-compact .ant-input-group-wrapper+.ant-input-group-wrapper .ant-input-affix-wrapper,.ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search>.ant-input-group>.ant-input-group-addon>.ant-input-search-button {
    border-radius: 0
}

.ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search>.ant-input-group>.ant-input {
    border-radius: 6px 0 0 6px
}

.ant-input-group-rtl .ant-input-group-addon:first-child,.ant-input-group>.ant-input-rtl:first-child {
    border-radius: 0 6px 6px 0
}

.ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:first-child),.ant-input-group-rtl.ant-input-group-addon:last-child,.ant-input-group-rtl.ant-input-group>.ant-input:last-child {
    border-radius: 6px 0 0 6px
}

.ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
    border-radius: 0 6px 6px 0
}

.ant-input-group-rtl.ant-input-group.ant-input-group-compact>:not(:last-child) {
    border-left-width: 1px;
    margin-left: -1px;
    margin-right: 0
}

.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-cascader-picker:first-child .ant-input,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-select-auto-complete:first-child .ant-input,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-select:first-child>.ant-select-selector,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>:first-child {
    border-radius: 0 6px 6px 0
}

.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-cascader-picker-focused:last-child .ant-input,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-cascader-picker:last-child .ant-input,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-select-auto-complete:last-child .ant-input,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>.ant-select:last-child>.ant-select-selector,.ant-input-group-rtl.ant-input-group.ant-input-group-compact>:last-child {
    border-left-width: 1px;
    border-radius: 6px 0 0 6px
}

.ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl+.ant-input-group-wrapper-rtl {
    margin-left: 0;
    margin-right: -1px
}

.ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search>.ant-input-group>.ant-input,.ant-input-group>.ant-input-rtl:first-child {
    border-radius: 0 6px 6px 0
}

.ant-input-group>.ant-input-rtl:last-child {
    border-radius: 6px 0 0 6px
}

.ant-input-group-rtl .ant-input-group-addon:first-child {
    border-left: 0;
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #434343
}

.ant-input-group-rtl .ant-input-group-addon:last-child {
    border-left: 1px solid #434343;
    border-radius: 6px 0 0 6px;
    border-right: 0
}

.ant-input-group-wrapper {
    display: inline-block;
    text-align: start;
    vertical-align: top;
    width: 100%
}

.ant-input-password-icon.anticon {
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    transition: all .3s
}

.ant-input-password-icon.anticon:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-input[type=color] {
    height: 32px
}

.ant-input[type=color].ant-input-lg {
    height: 40px
}

.ant-input[type=color].ant-input-sm {
    height: 24px;
    padding-bottom: 3px;
    padding-top: 3px
}

.ant-input-textarea-show-count>.ant-input {
    height: 100%
}

.ant-input-textarea-show-count:after {
    color: hsla(0,0%,100%,.45);
    content: attr(data-count);
    float: right;
    pointer-events: none;
    white-space: nowrap
}

.ant-input-textarea-show-count.ant-input-textarea-in-form-item:after {
    margin-bottom: -22px
}

.ant-input-textarea-suffix {
    align-items: center;
    bottom: 0;
    display: inline-flex;
    margin: auto;
    position: absolute;
    right: 11px;
    top: 0;
    z-index: 1
}

.ant-input-search .ant-input:focus,.ant-input-search .ant-input:hover {
    border-color: #bf9003
}

.ant-input-search .ant-input:focus+.ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),.ant-input-search .ant-input:hover+.ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
    border-left-color: #bf9003
}

.ant-input-search .ant-input-affix-wrapper {
    border-radius: 0
}

.ant-input-search .ant-input-lg {
    line-height: 1.5713
}

.ant-input-search>.ant-input-group>.ant-input-group-addon:last-child {
    border: 0;
    left: -1px;
    padding: 0
}

.ant-input-search>.ant-input-group>.ant-input-group-addon:last-child .ant-input-search-button {
    border-radius: 0 6px 6px 0;
    padding-bottom: 0;
    padding-top: 0
}

.ant-input-search>.ant-input-group>.ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary) {
    color: hsla(0,0%,100%,.45)
}

.ant-input-search>.ant-input-group>.ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary).ant-btn-loading:before {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0
}

.ant-input-search-button {
    height: 32px
}

.ant-input-search-button:focus,.ant-input-search-button:hover {
    z-index: 1
}

.ant-input-search-large .ant-input-search-button {
    height: 40px
}

.ant-input-search-small .ant-input-search-button {
    height: 24px
}

.ant-input-group-rtl,.ant-input-group-wrapper-rtl {
    direction: rtl
}

.ant-input-affix-wrapper.ant-input-affix-wrapper-rtl>input.ant-input {
    border: none;
    outline: none
}

.ant-input-affix-wrapper-rtl .ant-input-prefix {
    margin: 0 0 0 4px
}

.ant-input-affix-wrapper-rtl .ant-input-suffix {
    margin: 0 4px 0 0
}

.ant-input-textarea-rtl {
    direction: rtl
}

.ant-input-textarea-rtl.ant-input-textarea-show-count:after {
    text-align: left
}

.ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix {
    margin-left: 4px;
    margin-right: 0
}

.ant-input-affix-wrapper-rtl .ant-input-clear-icon {
    left: 8px;
    right: auto
}

.ant-input-search-rtl {
    direction: rtl
}

.ant-input-search-rtl .ant-input:focus+.ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),.ant-input-search-rtl .ant-input:hover+.ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
    border-left-color: #434343;
    border-right-color: #bf9003
}

.ant-input-search-rtl>.ant-input-group>.ant-input-affix-wrapper-focused,.ant-input-search-rtl>.ant-input-group>.ant-input-affix-wrapper:hover {
    border-right-color: #bf9003
}

.ant-input-search-rtl>.ant-input-group>.ant-input-group-addon {
    left: auto;
    right: -1px
}

.ant-input-search-rtl>.ant-input-group>.ant-input-group-addon .ant-input-search-button {
    border-radius: 6px 0 0 6px
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
    .ant-input {
        height: 32px
    }

    .ant-input-lg {
        height: 40px
    }

    .ant-input-sm {
        height: 24px
    }

    .ant-input-affix-wrapper>input.ant-input {
        height: auto
    }
}

.ant-input-number-affix-wrapper {
    background-color: transparent;
    background-image: none;
    border: 1px solid #434343;
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    display: inline-flex;
    font-size: 14px;
    line-height: 1.5715;
    min-width: 0;
    padding: 0;
    padding-inline-start:11px;position: relative;
    transition: all .3s;
    width: 100%;
    width: 90px
}

.ant-input-number-affix-wrapper::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-input-number-affix-wrapper:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-input-number-affix-wrapper::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-input-number-affix-wrapper:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-input-number-affix-wrapper:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-input-number-affix-wrapper:placeholder-shown {
    text-overflow: ellipsis
}

.ant-input-number-affix-wrapper:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-input-number-affix-wrapper:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-number-affix-wrapper-focused,.ant-input-number-affix-wrapper:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-input-number-affix-wrapper-focused,.ant-input-rtl .ant-input-number-affix-wrapper:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-number-affix-wrapper-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-number-affix-wrapper-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-number-affix-wrapper[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-number-affix-wrapper[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-number-affix-wrapper-borderless,.ant-input-number-affix-wrapper-borderless-disabled,.ant-input-number-affix-wrapper-borderless-focused,.ant-input-number-affix-wrapper-borderless:focus,.ant-input-number-affix-wrapper-borderless:hover,.ant-input-number-affix-wrapper-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-input-number-affix-wrapper {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-input-number-affix-wrapper-lg {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-input-number-affix-wrapper-sm {
    padding: 0 7px
}

.ant-input-number-affix-wrapper-rtl {
    direction: rtl
}

.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
    border-color: #bf9003;
    border-right-width: 1px;
    z-index: 1
}

.ant-input-rtl .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-number-affix-wrapper-focused,.ant-input-number-affix-wrapper:focus {
    z-index: 1
}

.ant-input-number-affix-wrapper-disabled .ant-input-number[disabled] {
    background: transparent
}

.ant-input-number-affix-wrapper>div.ant-input-number {
    border: none;
    outline: none;
    width: 100%
}

.ant-input-number-affix-wrapper>div.ant-input-number.ant-input-number-focused {
    box-shadow: none!important
}

.ant-input-number-affix-wrapper input.ant-input-number-input {
    padding: 0
}

.ant-input-number-affix-wrapper:before {
    content: "\a0";
    visibility: hidden;
    width: 0
}

.ant-input-number-affix-wrapper .ant-input-number-handler-wrap {
    z-index: 2
}

.ant-input-number-prefix,.ant-input-number-suffix {
    align-items: center;
    display: flex;
    flex: none;
    pointer-events: none
}

.ant-input-number-prefix {
    margin-inline-end:4px}

.ant-input-number-suffix {
    height: 100%;
    margin-left: 4px;
    margin-right: 11px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.ant-input-number-group-wrapper .ant-input-number-affix-wrapper {
    width: 100%
}

.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number,.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:hover {
    background: transparent;
    border-color: #a61d24
}

.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused,.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-input-number-status-error .ant-input-number-prefix {
    color: #a61d24
}

.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number,.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:hover {
    background: transparent;
    border-color: #d89614
}

.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused,.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-input-number-status-warning .ant-input-number-prefix {
    color: #d89614
}

.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {
    background: transparent;
    border-color: #a61d24
}

.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused,.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-input-number-affix-wrapper-status-error .ant-input-number-prefix {
    color: #a61d24
}

.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {
    background: transparent;
    border-color: #d89614
}

.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused,.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-input-number-affix-wrapper-status-warning .ant-input-number-prefix {
    color: #d89614
}

.ant-input-number-group-wrapper-status-error .ant-input-number-group-addon {
    border-color: #a61d24;
    color: #a61d24
}

.ant-input-number-group-wrapper-status-warning .ant-input-number-group-addon {
    border-color: #d89614;
    color: #d89614
}

.ant-input-number {
    font-feature-settings: "tnum","tnum";
    background-color: transparent;
    background-image: none;
    border: 1px solid #434343;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    min-width: 0;
    padding: 0;
    position: relative;
    transition: all .3s;
    width: 100%;
    width: 90px
}

.ant-input-number::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-input-number:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-input-number::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-input-number:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-input-number:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-input-number:placeholder-shown {
    text-overflow: ellipsis
}

.ant-input-rtl .ant-input-number:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-number-focused,.ant-input-number:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-input-number-focused,.ant-input-rtl .ant-input-number:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-number[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-number[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-number-borderless,.ant-input-number-borderless-disabled,.ant-input-number-borderless-focused,.ant-input-number-borderless:focus,.ant-input-number-borderless:hover,.ant-input-number-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-input-number {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-input-number-lg {
    padding: 6.5px 11px
}

.ant-input-number-sm {
    padding: 0 7px
}

.ant-input-number-group {
    font-feature-settings: "tnum","tnum";
    border-collapse: separate;
    border-spacing: 0;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: table;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%
}

.ant-input-number-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.ant-input-number-group>[class*=col-] {
    padding-right: 8px
}

.ant-input-number-group>[class*=col-]:last-child {
    padding-right: 0
}

.ant-input-number-group-addon,.ant-input-number-group-wrap,.ant-input-number-group>.ant-input-number {
    display: table-cell
}

.ant-input-number-group-addon:not(:first-child):not(:last-child),.ant-input-number-group-wrap:not(:first-child):not(:last-child),.ant-input-number-group>.ant-input-number:not(:first-child):not(:last-child) {
    border-radius: 0
}

.ant-input-number-group-addon,.ant-input-number-group-wrap {
    vertical-align: middle;
    white-space: nowrap;
    width: 1px
}

.ant-input-number-group-wrap>* {
    display: block!important
}

.ant-input-number-group .ant-input-number {
    float: left;
    margin-bottom: 0;
    text-align: inherit;
    width: 100%
}

.ant-input-number-group .ant-input-number:focus,.ant-input-number-group .ant-input-number:hover {
    border-right-width: 1px;
    z-index: 1
}

.ant-input-search-with-button .ant-input-number-group .ant-input-number:hover {
    z-index: 0
}

.ant-input-number-group-addon {
    background-color: hsla(0,0%,100%,.04);
    border: 1px solid #434343;
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-weight: 400;
    padding: 0 11px;
    position: relative;
    text-align: center;
    transition: all .3s
}

.ant-input-number-group-addon .ant-select {
    margin: -5px -11px
}

.ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
    background-color: inherit;
    border: 1px solid transparent;
    box-shadow: none
}

.ant-input-number-group-addon .ant-select-focused .ant-select-selector,.ant-input-number-group-addon .ant-select-open .ant-select-selector {
    color: #f0b90b
}

.ant-input-number-group-addon .ant-cascader-picker {
    background-color: transparent;
    margin: -9px -12px
}

.ant-input-number-group-addon .ant-cascader-picker .ant-cascader-input {
    border: 0;
    box-shadow: none;
    text-align: left
}

.ant-input-number-group-addon:first-child,.ant-input-number-group-addon:first-child .ant-select .ant-select-selector,.ant-input-number-group>.ant-input-number:first-child,.ant-input-number-group>.ant-input-number:first-child .ant-select .ant-select-selector {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ant-input-number-group>.ant-input-number-affix-wrapper:not(:first-child) .ant-input-number {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.ant-input-number-group>.ant-input-number-affix-wrapper:not(:last-child) .ant-input-number {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ant-input-number-group-addon:first-child {
    border-right: 0
}

.ant-input-number-group-addon:last-child {
    border-left: 0
}

.ant-input-number-group-addon:last-child,.ant-input-number-group-addon:last-child .ant-select .ant-select-selector,.ant-input-number-group>.ant-input-number:last-child,.ant-input-number-group>.ant-input-number:last-child .ant-select .ant-select-selector {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.ant-input-number-group-lg .ant-input-number,.ant-input-number-group-lg>.ant-input-number-group-addon {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-input-number-group-sm .ant-input-number,.ant-input-number-group-sm>.ant-input-number-group-addon {
    padding: 0 7px
}

.ant-input-number-group-lg .ant-select-single .ant-select-selector {
    height: 40px
}

.ant-input-number-group-sm .ant-select-single .ant-select-selector {
    height: 24px
}

.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child),.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.ant-input-number-group.ant-input-number-group-compact {
    display: block
}

.ant-input-number-group.ant-input-number-group-compact:before {
    content: "";
    display: table
}

.ant-input-number-group.ant-input-number-group-compact:after {
    clear: both;
    content: "";
    display: table
}

.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child),.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child),.ant-input-number-group.ant-input-number-group-compact>.ant-input-number:not(:first-child):not(:last-child) {
    border-right-width: 1px
}

.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):focus,.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):hover,.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus,.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover,.ant-input-number-group.ant-input-number-group-compact>.ant-input-number:not(:first-child):not(:last-child):focus,.ant-input-number-group.ant-input-number-group-compact>.ant-input-number:not(:first-child):not(:last-child):hover {
    z-index: 1
}

.ant-input-number-group.ant-input-number-group-compact>* {
    border-radius: 0;
    display: inline-block;
    float: none;
    vertical-align: top
}

.ant-input-number-group.ant-input-number-group-compact>.ant-input-number-affix-wrapper,.ant-input-number-group.ant-input-number-group-compact>.ant-picker-range {
    display: inline-flex
}

.ant-input-number-group.ant-input-number-group-compact>:not(:last-child) {
    border-right-width: 1px;
    margin-right: -1px
}

.ant-input-number-group.ant-input-number-group-compact .ant-input-number {
    float: none
}

.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-input-group-wrapper .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-select>.ant-select-selector {
    border-radius: 0;
    border-right-width: 1px
}

.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker .ant-input:focus,.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker .ant-input:hover,.ant-input-number-group.ant-input-number-group-compact>.ant-input-group-wrapper .ant-input:focus,.ant-input-number-group.ant-input-number-group-compact>.ant-input-group-wrapper .ant-input:hover,.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete .ant-input:focus,.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete .ant-input:hover,.ant-input-number-group.ant-input-number-group-compact>.ant-select-focused,.ant-input-number-group.ant-input-number-group-compact>.ant-select>.ant-select-arrow,.ant-input-number-group.ant-input-number-group-compact>.ant-select>.ant-select-selector:focus,.ant-input-number-group.ant-input-number-group-compact>.ant-select>.ant-select-selector:hover {
    z-index: 1
}

.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker:first-child .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete:first-child .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-select:first-child>.ant-select-selector,.ant-input-number-group.ant-input-number-group-compact>:first-child {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker-focused:last-child .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker:last-child .ant-input,.ant-input-number-group.ant-input-number-group-compact>.ant-select:last-child>.ant-select-selector,.ant-input-number-group.ant-input-number-group-compact>:last-child {
    border-bottom-right-radius: 6px;
    border-right-width: 1px;
    border-top-right-radius: 6px
}

.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete .ant-input {
    vertical-align: top
}

.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper+.ant-input-group-wrapper {
    margin-left: -1px
}

.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper+.ant-input-group-wrapper .ant-input-affix-wrapper,.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search>.ant-input-group>.ant-input-group-addon>.ant-input-search-button {
    border-radius: 0
}

.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search>.ant-input-group>.ant-input {
    border-radius: 6px 0 0 6px
}

.ant-input-number-group-rtl .ant-input-number-group-addon:first-child,.ant-input-number-group>.ant-input-number-rtl:first-child {
    border-radius: 0 6px 6px 0
}

.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child),.ant-input-number-group-rtl.ant-input-number-group-addon:last-child,.ant-input-number-group-rtl.ant-input-number-group>.ant-input-number:last-child {
    border-radius: 6px 0 0 6px
}

.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
    border-radius: 0 6px 6px 0
}

.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>:not(:last-child) {
    border-left-width: 1px;
    margin-left: -1px;
    margin-right: 0
}

.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker:first-child .ant-input,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete:first-child .ant-input,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-select:first-child>.ant-select-selector,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>:first-child {
    border-radius: 0 6px 6px 0
}

.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker-focused:last-child .ant-input,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-cascader-picker:last-child .ant-input,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-select-auto-complete:last-child .ant-input,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>.ant-select:last-child>.ant-select-selector,.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact>:last-child {
    border-left-width: 1px;
    border-radius: 6px 0 0 6px
}

.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl+.ant-input-group-wrapper-rtl {
    margin-left: 0;
    margin-right: -1px
}

.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search>.ant-input-group>.ant-input,.ant-input-number-group>.ant-input-number-rtl:first-child {
    border-radius: 0 6px 6px 0
}

.ant-input-number-group>.ant-input-number-rtl:last-child {
    border-radius: 6px 0 0 6px
}

.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
    border-left: 0;
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #434343
}

.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {
    border-left: 1px solid #434343;
    border-radius: 6px 0 0 6px;
    border-right: 0
}

.ant-input-number-group-wrapper {
    display: inline-block;
    text-align: start;
    vertical-align: top
}

.ant-input-number-handler {
    border-left: 1px solid #434343;
    color: hsla(0,0%,100%,.45);
    display: block;
    font-weight: 700;
    height: 50%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: all .1s linear;
    width: 100%
}

.ant-input-number-handler:active {
    background: hsla(0,0%,100%,.08)
}

.ant-input-number-handler:hover .ant-input-number-handler-down-inner,.ant-input-number-handler:hover .ant-input-number-handler-up-inner {
    color: #bf9003
}

.ant-input-number-handler-down-inner,.ant-input-number-handler-up-inner {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
    color: hsla(0,0%,100%,.45);
    display: inline-block;
    font-style: normal;
    height: 12px;
    line-height: 0;
    line-height: 12px;
    position: absolute;
    right: 4px;
    text-align: center;
    text-rendering: optimizelegibility;
    text-transform: none;
    transition: all .1s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: -.125em;
    width: 12px
}

.ant-input-number-handler-down-inner>*,.ant-input-number-handler-up-inner>* {
    line-height: 1
}

.ant-input-number-handler-down-inner svg,.ant-input-number-handler-up-inner svg {
    display: inline-block
}

.ant-input-number-handler-down-inner:before,.ant-input-number-handler-up-inner:before {
    display: none
}

.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon,.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon {
    display: block
}

.ant-input-number:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-number:hover+.ant-form-item-children-icon {
    opacity: 0;
    transition: opacity .24s linear .24s
}

.ant-input-number-focused {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-input-number-focused {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-input-number-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-input-number-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-input-number-disabled .ant-input-number-input {
    cursor: not-allowed
}

.ant-input-number-disabled .ant-input-number-handler-wrap,.ant-input-number-readonly .ant-input-number-handler-wrap {
    display: none
}

.ant-input-number-input {
    -webkit-appearance: textfield!important;
    -moz-appearance: textfield!important;
    appearance: textfield!important;
    background-color: transparent;
    border: 0;
    border-radius: 6px;
    height: 30px;
    outline: 0;
    padding: 0 11px;
    text-align: left;
    transition: all .3s linear;
    width: 100%
}

.ant-input-number-input::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-input-number-input:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-input-number-input::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-input-number-input:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-input-number-input:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-input-number-input:placeholder-shown {
    text-overflow: ellipsis
}

.ant-input-number-input[type=number]::-webkit-inner-spin-button,.ant-input-number-input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.ant-input-number-lg {
    font-size: 16px;
    padding: 0
}

.ant-input-number-lg input {
    height: 38px
}

.ant-input-number-sm {
    padding: 0
}

.ant-input-number-sm input {
    height: 22px;
    padding: 0 7px
}

.ant-input-number-handler-wrap {
    background: #141414;
    border-radius: 0 6px 6px 0;
    height: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .24s linear .1s;
    width: 22px
}

.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner,.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner {
    align-items: center;
    display: flex;
    font-size: 7px;
    justify-content: center;
    margin-right: 0;
    min-width: auto
}

.ant-input-number-borderless .ant-input-number-handler-wrap {
    border-left-width: 0
}

.ant-input-number-handler-wrap:hover .ant-input-number-handler {
    height: 40%
}

.ant-input-number-focused .ant-input-number-handler-wrap,.ant-input-number:hover .ant-input-number-handler-wrap {
    opacity: 1
}

.ant-input-number-handler-up {
    border-top-right-radius: 6px;
    cursor: pointer
}

.ant-input-number-handler-up-inner {
    margin-top: -5px;
    text-align: center;
    top: 50%
}

.ant-input-number-handler-up:hover {
    height: 60%!important
}

.ant-input-number-handler-down {
    border-bottom-right-radius: 6px;
    border-top: 1px solid #434343;
    cursor: pointer;
    top: 0
}

.ant-input-number-handler-down-inner {
    text-align: center;
    top: 50%;
    transform: translateY(-50%)
}

.ant-input-number-handler-down:hover {
    height: 60%!important
}

.ant-input-number-borderless .ant-input-number-handler-down {
    border-top-width: 0
}

.ant-input-number-handler-down-disabled,.ant-input-number-handler-up-disabled {
    cursor: not-allowed
}

.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner,.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner {
    color: hsla(0,0%,100%,.3)
}

.ant-input-number-borderless {
    box-shadow: none
}

.ant-input-number-out-of-range input {
    color: #a61d24
}

.ant-input-number-rtl {
    direction: rtl
}

.ant-input-number-rtl .ant-input-number-handler {
    border-left: 0;
    border-right: 1px solid #434343
}

.ant-input-number-rtl .ant-input-number-handler-wrap {
    left: 0;
    right: auto
}

.ant-input-number-rtl.ant-input-number-borderless .ant-input-number-handler-wrap {
    border-right-width: 0
}

.ant-input-number-rtl .ant-input-number-handler-up {
    border-top-right-radius: 0
}

.ant-input-number-rtl .ant-input-number-handler-down {
    border-bottom-right-radius: 0
}

.ant-input-number-rtl .ant-input-number-input {
    direction: ltr;
    text-align: right
}

.ant-layout {
    background: #000;
    display: flex;
    flex: auto;
    flex-direction: column;
    min-height: 0
}

.ant-layout,.ant-layout * {
    box-sizing: border-box
}

.ant-layout.ant-layout-has-sider {
    flex-direction: row
}

.ant-layout.ant-layout-has-sider>.ant-layout,.ant-layout.ant-layout-has-sider>.ant-layout-content {
    width: 0
}

.ant-layout-footer,.ant-layout-header {
    flex: 0 0 auto
}

.ant-layout-header {
    background: #1f1f1f;
    color: hsla(0,0%,100%,.85);
    height: 64px;
    line-height: 64px;
    padding: 0 50px
}

.ant-layout-footer {
    background: #000;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    padding: 24px 50px
}

.ant-layout-content {
    flex: auto;
    min-height: 0
}

.ant-layout-sider {
    background: #1f1f1f;
    min-width: 0;
    position: relative;
    transition: all .2s
}

.ant-layout-sider-children {
    height: 100%;
    margin-top: -.1px;
    padding-top: .1px
}

.ant-layout-sider-children .ant-menu.ant-menu-inline-collapsed {
    width: auto
}

.ant-layout-sider-has-trigger {
    padding-bottom: 48px
}

.ant-layout-sider-right {
    order: 1
}

.ant-layout-sider-trigger {
    background: #262626;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    height: 48px;
    line-height: 48px;
    position: fixed;
    text-align: center;
    transition: all .2s;
    z-index: 1
}

.ant-layout-sider-zero-width>* {
    overflow: hidden
}

.ant-layout-sider-zero-width-trigger {
    background: #1f1f1f;
    border-radius: 0 6px 6px 0;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    height: 42px;
    line-height: 42px;
    position: absolute;
    right: -36px;
    text-align: center;
    top: 64px;
    transition: background .3s ease;
    width: 36px;
    z-index: 1
}

.ant-layout-sider-zero-width-trigger:after {
    background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s
}

.ant-layout-sider-zero-width-trigger:hover:after {
    background: hsla(0,0%,100%,.1)
}

.ant-layout-sider-zero-width-trigger-right {
    border-radius: 6px 0 0 6px;
    left: -36px
}

.ant-layout-sider-light {
    background: #fff
}

.ant-layout-sider-light .ant-layout-sider-trigger,.ant-layout-sider-light .ant-layout-sider-zero-width-trigger {
    background: #fff;
    color: hsla(0,0%,100%,.85)
}

.ant-layout-rtl {
    direction: rtl
}

.ant-list .ant-card {
    background: transparent
}

.ant-list {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.ant-list * {
    outline: none
}

.ant-list-pagination {
    margin-top: 24px;
    text-align: right
}

.ant-list-pagination .ant-pagination-options {
    text-align: left
}

.ant-list-more {
    margin-top: 12px;
    text-align: center
}

.ant-list-more button {
    padding-left: 32px;
    padding-right: 32px
}

.ant-list-spin {
    min-height: 40px;
    text-align: center
}

.ant-list-empty-text {
    color: hsla(0,0%,100%,.3);
    font-size: 14px;
    padding: 16px;
    text-align: center
}

.ant-list-items {
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-list-item {
    align-items: center;
    color: hsla(0,0%,100%,.85);
    display: flex;
    justify-content: space-between;
    padding: 12px 0
}

.ant-list-item-meta {
    align-items: flex-start;
    display: flex;
    flex: 1 1;
    max-width: 100%
}

.ant-list-item-meta-avatar {
    margin-right: 16px
}

.ant-list-item-meta-content {
    color: hsla(0,0%,100%,.85);
    flex: 1 0;
    width: 0
}

.ant-list-item-meta-title {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    line-height: 1.5715;
    margin-bottom: 4px
}

.ant-list-item-meta-title>a {
    color: hsla(0,0%,100%,.85);
    transition: all .3s
}

.ant-list-item-meta-title>a:hover {
    color: #f0b90b
}

.ant-list-item-meta-description {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    line-height: 1.5715
}

.ant-list-item-action {
    flex: 0 0 auto;
    font-size: 0;
    list-style: none;
    margin-left: 48px;
    padding: 0
}

.ant-list-item-action>li {
    color: hsla(0,0%,100%,.45);
    display: inline-block;
    font-size: 14px;
    line-height: 1.5715;
    padding: 0 8px;
    position: relative;
    text-align: center
}

.ant-list-item-action>li:first-child {
    padding-left: 0
}

.ant-list-item-action-split {
    background-color: #303030;
    height: 14px;
    margin-top: -7px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px
}

.ant-list-footer,.ant-list-header {
    background: transparent
}

.ant-list-footer,.ant-list-header {
    padding-bottom: 12px;
    padding-top: 12px
}

.ant-list-empty {
    color: hsla(0,0%,100%,.45);
    font-size: 12px;
    padding: 16px 0;
    text-align: center
}

.ant-list-split .ant-list-item {
    border-bottom: 1px solid #303030
}

.ant-list-split .ant-list-item:last-child {
    border-bottom: none
}

.ant-list-split .ant-list-header {
    border-bottom: 1px solid #303030
}

.ant-list-split.ant-list-empty .ant-list-footer {
    border-top: 1px solid #303030
}

.ant-list-loading .ant-list-spin-nested-loading {
    min-height: 32px
}

.ant-list-split.ant-list-something-after-last-item .ant-spin-container>.ant-list-items>.ant-list-item:last-child {
    border-bottom: 1px solid #303030
}

.ant-list-lg .ant-list-item {
    padding: 16px 24px
}

.ant-list-sm .ant-list-item {
    padding: 8px 16px
}

.ant-list-vertical .ant-list-item {
    align-items: normal
}

.ant-list-vertical .ant-list-item-main {
    display: block;
    flex: 1 1
}

.ant-list-vertical .ant-list-item-extra {
    margin-left: 40px
}

.ant-list-vertical .ant-list-item-meta {
    margin-bottom: 16px
}

.ant-list-vertical .ant-list-item-meta-title {
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px
}

.ant-list-vertical .ant-list-item-action {
    margin-left: auto;
    margin-top: 16px
}

.ant-list-vertical .ant-list-item-action>li {
    padding: 0 16px
}

.ant-list-vertical .ant-list-item-action>li:first-child {
    padding-left: 0
}

.ant-list-grid .ant-col>.ant-list-item {
    border-bottom: none;
    display: block;
    margin-bottom: 16px;
    max-width: 100%;
    padding-bottom: 0;
    padding-top: 0
}

.ant-list-item-no-flex {
    display: block
}

.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
    float: right
}

.ant-list-bordered {
    border: 1px solid #434343;
    border-radius: 6px
}

.ant-list-bordered .ant-list-footer,.ant-list-bordered .ant-list-header,.ant-list-bordered .ant-list-item {
    padding-left: 24px;
    padding-right: 24px
}

.ant-list-bordered .ant-list-pagination {
    margin: 16px 24px
}

.ant-list-bordered.ant-list-sm .ant-list-footer,.ant-list-bordered.ant-list-sm .ant-list-header,.ant-list-bordered.ant-list-sm .ant-list-item {
    padding: 8px 16px
}

.ant-list-bordered.ant-list-lg .ant-list-footer,.ant-list-bordered.ant-list-lg .ant-list-header,.ant-list-bordered.ant-list-lg .ant-list-item {
    padding: 16px 24px
}

@media screen and (max-width: 768px) {
    .ant-list-item-action,.ant-list-vertical .ant-list-item-extra {
        margin-left:24px
    }
}

@media screen and (max-width: 576px) {
    .ant-list-item {
        flex-wrap:wrap
    }

    .ant-list-item-action {
        margin-left: 12px
    }

    .ant-list-vertical .ant-list-item {
        flex-wrap: wrap-reverse
    }

    .ant-list-vertical .ant-list-item-main {
        min-width: 220px
    }

    .ant-list-vertical .ant-list-item-extra {
        margin: auto auto 16px
    }
}

.ant-list-rtl {
    direction: rtl;
    text-align: right
}

.ant-list-rtl .ReactVirtualized__List .ant-list-item {
    direction: rtl
}

.ant-list-rtl .ant-list-pagination {
    text-align: left
}

.ant-list-rtl .ant-list-item-meta-avatar {
    margin-left: 16px;
    margin-right: 0
}

.ant-list-rtl .ant-list-item-action {
    margin-left: 0;
    margin-right: 48px
}

.ant-list.ant-list-rtl .ant-list-item-action>li:first-child {
    padding-left: 16px;
    padding-right: 0
}

.ant-list-rtl .ant-list-item-action-split {
    left: 0;
    right: auto
}

.ant-list-rtl.ant-list-vertical .ant-list-item-extra {
    margin-left: 0;
    margin-right: 40px
}

.ant-list-rtl.ant-list-vertical .ant-list-item-action {
    margin-right: auto
}

.ant-list-rtl .ant-list-vertical .ant-list-item-action>li:first-child {
    padding-left: 16px;
    padding-right: 0
}

.ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
    float: left
}

@media screen and (max-width: 768px) {
    .ant-list-rtl .ant-list-item-action,.ant-list-rtl .ant-list-vertical .ant-list-item-extra {
        margin-left:0;
        margin-right: 24px
    }
}

@media screen and (max-width: 576px) {
    .ant-list-rtl .ant-list-item-action {
        margin-left:0;
        margin-right: 22px
    }

    .ant-list-rtl.ant-list-vertical .ant-list-item-extra {
        margin: auto auto 16px
    }
}

.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions,.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:hover {
    background: transparent;
    border-color: #a61d24
}

.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused,.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-mentions-status-error .ant-input-prefix {
    color: #a61d24
}

.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions,.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:hover {
    background: transparent;
    border-color: #d89614
}

.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused,.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-mentions-status-warning .ant-input-prefix {
    color: #d89614
}

.ant-mentions {
    font-feature-settings: "tnum","tnum";
    background-color: transparent;
    background-image: none;
    border: 1px solid #434343;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    height: auto;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: all .3s;
    vertical-align: bottom;
    white-space: pre-wrap;
    width: 100%
}

.ant-mentions::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-mentions:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-mentions::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-mentions:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-mentions:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-mentions:placeholder-shown {
    text-overflow: ellipsis
}

.ant-mentions:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-mentions:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-mentions-focused,.ant-mentions:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-mentions-focused,.ant-input-rtl .ant-mentions:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-mentions-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-mentions-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-mentions[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-mentions[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-mentions-borderless,.ant-mentions-borderless-disabled,.ant-mentions-borderless-focused,.ant-mentions-borderless:focus,.ant-mentions-borderless:hover,.ant-mentions-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-mentions {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-mentions-lg {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-mentions-sm {
    padding: 0 7px
}

.ant-mentions-disabled>textarea {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-mentions-disabled>textarea:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-mentions-focused {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-mentions-focused {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-mentions-measure,.ant-mentions>textarea {
    font-feature-settings: inherit;
    word-wrap: break-word;
    direction: inherit;
    font-family: inherit;
    font-size: inherit;
    font-size-adjust: inherit;
    font-stretch: inherit;
    font-style: inherit;
    font-variant: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin: 0;
    min-height: 30px;
    overflow: inherit;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 4px 11px;
    -moz-tab-size: inherit;
    -o-tab-size: inherit;
    tab-size: inherit;
    text-align: inherit;
    vertical-align: top;
    white-space: inherit;
    word-break: inherit
}

.ant-mentions>textarea {
    background-color: transparent;
    border: none;
    outline: none;
    resize: none;
    width: 100%
}

.ant-mentions>textarea::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-mentions>textarea:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-mentions>textarea::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-mentions>textarea:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-mentions>textarea:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-mentions>textarea:placeholder-shown {
    text-overflow: ellipsis
}

.ant-mentions-measure {
    bottom: 0;
    color: transparent;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.ant-mentions-measure>span {
    display: inline-block;
    min-height: 1em
}

.ant-mentions-dropdown {
    font-feature-settings: "tnum","tnum",;
    background-color: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    font-variant: normal;
    left: -9999px;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    position: absolute;
    top: -9999px;
    z-index: 1050
}

.ant-mentions-dropdown-hidden {
    display: none
}

.ant-mentions-dropdown-menu {
    list-style: none;
    margin-bottom: 0;
    max-height: 250px;
    outline: none;
    overflow: auto;
    padding-left: 0
}

.ant-mentions-dropdown-menu-item {
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: block;
    font-weight: 400;
    line-height: 1.5715;
    min-width: 100px;
    overflow: hidden;
    padding: 5px 12px;
    position: relative;
    text-overflow: ellipsis;
    transition: background .3s ease;
    white-space: nowrap
}

.ant-mentions-dropdown-menu-item:hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-mentions-dropdown-menu-item:first-child {
    border-radius: 6px 6px 0 0
}

.ant-mentions-dropdown-menu-item:last-child {
    border-radius: 0 0 6px 6px
}

.ant-mentions-dropdown-menu-item-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-mentions-dropdown-menu-item-disabled:hover {
    background-color: #1f1f1f;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-mentions-dropdown-menu-item-selected {
    background-color: hsla(0,0%,100%,.04);
    color: hsla(0,0%,100%,.85);
    font-weight: 600
}

.ant-mentions-dropdown-menu-item-active {
    background-color: hsla(0,0%,100%,.08)
}

.ant-mentions-suffix {
    align-items: center;
    bottom: 0;
    display: inline-flex;
    margin: auto;
    position: absolute;
    right: 11px;
    top: 0;
    z-index: 1
}

.ant-mentions-rtl {
    direction: rtl
}

.ant-menu-item-danger.ant-menu-item,.ant-menu-item-danger.ant-menu-item-active,.ant-menu-item-danger.ant-menu-item:hover {
    color: #a61d24
}

.ant-menu-item-danger.ant-menu-item:active {
    background: #2a1215
}

.ant-menu-item-danger.ant-menu-item-selected,.ant-menu-item-danger.ant-menu-item-selected>a,.ant-menu-item-danger.ant-menu-item-selected>a:hover {
    color: #a61d24
}

.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {
    background-color: #2a1215
}

.ant-menu-inline .ant-menu-item-danger.ant-menu-item:after {
    border-right-color: #a61d24
}

.ant-menu-dark .ant-menu-item-danger.ant-menu-item,.ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover,.ant-menu-dark .ant-menu-item-danger.ant-menu-item>a {
    color: #a61d24
}

.ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {
    background-color: #a61d24;
    color: #fff
}

.ant-menu {
    font-feature-settings: "tnum","tnum";
    background: #141414;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: 0;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    text-align: left;
    transition: background .3s,width .3s cubic-bezier(.2,0,0,1) 0s
}

.ant-menu:after,.ant-menu:before {
    content: "";
    display: table
}

.ant-menu:after {
    clear: both
}

.ant-menu.ant-menu-root:focus-visible {
    box-shadow: 0 0 0 2px #0f2c40
}

.ant-menu ol,.ant-menu ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-menu-overflow {
    display: flex
}

.ant-menu-overflow-item {
    flex: none
}

.ant-menu-hidden,.ant-menu-submenu-hidden {
    display: none
}

.ant-menu-item-group-title {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    height: 1.5715;
    line-height: 1.5715;
    padding: 8px 16px;
    transition: all .3s
}

.ant-menu-horizontal .ant-menu-submenu {
    transition: border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1)
}

.ant-menu-submenu,.ant-menu-submenu-inline {
    transition: border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1),padding .15s cubic-bezier(.645,.045,.355,1)
}

.ant-menu-submenu-selected {
    color: #f0b90b
}

.ant-menu-item:active,.ant-menu-submenu-title:active {
    background: #111e28
}

.ant-menu-submenu .ant-menu-sub {
    cursor: auto;
    transition: background .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)
}

.ant-menu-title-content {
    transition: color .3s
}

.ant-menu-item a {
    color: hsla(0,0%,100%,.85)
}

.ant-menu-item a:hover {
    color: #f0b90b
}

.ant-menu-item a:before {
    background-color: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-menu-item>.ant-badge a {
    color: hsla(0,0%,100%,.85)
}

.ant-menu-item>.ant-badge a:hover {
    color: #f0b90b
}

.ant-menu-item-divider {
    border: solid #303030;
    border-width: 1px 0 0;
    line-height: 0;
    overflow: hidden
}

.ant-menu-item-divider-dashed {
    border-style: dashed
}

.ant-menu-horizontal .ant-menu-item,.ant-menu-horizontal .ant-menu-submenu {
    margin-top: -1px
}

.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu .ant-menu-submenu-title:hover {
    background-color: transparent
}

.ant-menu-item-selected,.ant-menu-item-selected a,.ant-menu-item-selected a:hover {
    color: #f0b90b
}

.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
    background-color: #111e28
}

.ant-menu-inline,.ant-menu-vertical,.ant-menu-vertical-left {
    border-right: 1px solid #303030
}

.ant-menu-vertical-right {
    border-left: 1px solid #303030
}

.ant-menu-vertical-left.ant-menu-sub,.ant-menu-vertical-right.ant-menu-sub,.ant-menu-vertical.ant-menu-sub {
    border-right: 0;
    max-height: calc(100vh - 100px);
    min-width: 160px;
    overflow: hidden;
    padding: 0
}

.ant-menu-vertical-left.ant-menu-sub:not([class*=-active]),.ant-menu-vertical-right.ant-menu-sub:not([class*=-active]),.ant-menu-vertical.ant-menu-sub:not([class*=-active]) {
    overflow-x: hidden;
    overflow-y: auto
}

.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,.ant-menu-vertical-right.ant-menu-sub .ant-menu-item,.ant-menu-vertical.ant-menu-sub .ant-menu-item {
    border-right: 0;
    left: 0;
    margin-left: 0
}

.ant-menu-vertical-left.ant-menu-sub .ant-menu-item:after,.ant-menu-vertical-right.ant-menu-sub .ant-menu-item:after,.ant-menu-vertical.ant-menu-sub .ant-menu-item:after {
    border-right: 0
}

.ant-menu-vertical-left.ant-menu-sub>.ant-menu-item,.ant-menu-vertical-left.ant-menu-sub>.ant-menu-submenu,.ant-menu-vertical-right.ant-menu-sub>.ant-menu-item,.ant-menu-vertical-right.ant-menu-sub>.ant-menu-submenu,.ant-menu-vertical.ant-menu-sub>.ant-menu-item,.ant-menu-vertical.ant-menu-sub>.ant-menu-submenu {
    transform-origin: 0 0
}

.ant-menu-horizontal.ant-menu-sub {
    min-width: 114px
}

.ant-menu-horizontal .ant-menu-item,.ant-menu-horizontal .ant-menu-submenu-title {
    transition: border-color .3s,background .3s
}

.ant-menu-item,.ant-menu-submenu-title {
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 0 20px;
    position: relative;
    transition: border-color .3s,background .3s,padding .3s cubic-bezier(.645,.045,.355,1);
    white-space: nowrap
}

.ant-menu-item .ant-menu-item-icon,.ant-menu-item .anticon,.ant-menu-submenu-title .ant-menu-item-icon,.ant-menu-submenu-title .anticon {
    font-size: 14px;
    min-width: 14px;
    transition: font-size .15s cubic-bezier(.215,.61,.355,1),margin .3s cubic-bezier(.645,.045,.355,1),color .3s
}

.ant-menu-item .ant-menu-item-icon+span,.ant-menu-item .anticon+span,.ant-menu-submenu-title .ant-menu-item-icon+span,.ant-menu-submenu-title .anticon+span {
    margin-left: 10px;
    opacity: 1;
    transition: opacity .3s cubic-bezier(.645,.045,.355,1),margin .3s,color .3s
}

.ant-menu-item .ant-menu-item-icon.svg,.ant-menu-submenu-title .ant-menu-item-icon.svg {
    vertical-align: -.125em
}

.ant-menu-item.ant-menu-item-only-child>.ant-menu-item-icon,.ant-menu-item.ant-menu-item-only-child>.anticon,.ant-menu-submenu-title.ant-menu-item-only-child>.ant-menu-item-icon,.ant-menu-submenu-title.ant-menu-item-only-child>.anticon {
    margin-right: 0
}

.ant-menu-item:focus-visible,.ant-menu-submenu-title:focus-visible {
    box-shadow: 0 0 0 2px #0f2c40
}

.ant-menu>.ant-menu-item-divider {
    margin: 1px 0;
    padding: 0
}

.ant-menu-submenu-popup {
    background: transparent;
    border-radius: 6px;
    box-shadow: none;
    position: absolute;
    transform-origin: 0 0;
    z-index: 1050
}

.ant-menu-submenu-popup:before {
    bottom: 0;
    content: " ";
    height: 100%;
    left: 0;
    opacity: .0001;
    position: absolute;
    right: 0;
    top: -7px;
    width: 100%;
    z-index: -1
}

.ant-menu-submenu-placement-rightTop:before {
    left: -7px;
    top: 0
}

.ant-menu-submenu>.ant-menu {
    background-color: #141414;
    border-radius: 6px
}

.ant-menu-submenu>.ant-menu-submenu-title:after {
    transition: transform .3s cubic-bezier(.645,.045,.355,1)
}

.ant-menu-submenu-popup>.ant-menu {
    background-color: #1f1f1f
}

.ant-menu-submenu-arrow,.ant-menu-submenu-expand-icon {
    color: hsla(0,0%,100%,.85);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s cubic-bezier(.645,.045,.355,1);
    width: 10px
}

.ant-menu-submenu-arrow:after,.ant-menu-submenu-arrow:before {
    background-color: currentcolor;
    border-radius: 2px;
    content: "";
    height: 1.5px;
    position: absolute;
    transition: background .3s cubic-bezier(.645,.045,.355,1),transform .3s cubic-bezier(.645,.045,.355,1),top .3s cubic-bezier(.645,.045,.355,1),color .3s cubic-bezier(.645,.045,.355,1);
    width: 6px
}

.ant-menu-submenu-arrow:before {
    transform: rotate(45deg) translateY(-2.5px)
}

.ant-menu-submenu-arrow:after {
    transform: rotate(-45deg) translateY(2.5px)
}

.ant-menu-submenu:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-submenu:hover>.ant-menu-submenu-title>.ant-menu-submenu-expand-icon {
    color: #f0b90b
}

.ant-menu-inline-collapsed .ant-menu-submenu-arrow:before,.ant-menu-submenu-inline .ant-menu-submenu-arrow:before {
    transform: rotate(-45deg) translateX(2.5px)
}

.ant-menu-inline-collapsed .ant-menu-submenu-arrow:after,.ant-menu-submenu-inline .ant-menu-submenu-arrow:after {
    transform: rotate(45deg) translateX(-2.5px)
}

.ant-menu-submenu-horizontal .ant-menu-submenu-arrow {
    display: none
}

.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title>.ant-menu-submenu-arrow {
    transform: translateY(-2px)
}

.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after {
    transform: rotate(-45deg) translateX(-2.5px)
}

.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before {
    transform: rotate(45deg) translateX(2.5px)
}

.ant-menu-vertical .ant-menu-submenu-selected,.ant-menu-vertical-left .ant-menu-submenu-selected,.ant-menu-vertical-right .ant-menu-submenu-selected {
    color: #f0b90b
}

.ant-menu-horizontal {
    border: 0;
    border-bottom: 1px solid #303030;
    box-shadow: none;
    line-height: 46px
}

.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu {
    margin-bottom: 0;
    margin-top: -1px;
    padding: 0 20px
}

.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-active,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-open,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-selected,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item:hover,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-active,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-open,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-selected,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu:hover {
    color: #f0b90b
}

.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-active:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-open:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-selected:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item:hover:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-active:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-open:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu-selected:after,.ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-submenu:hover:after {
    border-bottom: 2px solid #f0b90b
}

.ant-menu-horizontal>.ant-menu-item,.ant-menu-horizontal>.ant-menu-submenu {
    display: inline-block;
    position: relative;
    top: 1px;
    vertical-align: bottom
}

.ant-menu-horizontal>.ant-menu-item:after,.ant-menu-horizontal>.ant-menu-submenu:after {
    border-bottom: 2px solid transparent;
    bottom: 0;
    content: "";
    left: 20px;
    position: absolute;
    right: 20px;
    transition: border-color .3s cubic-bezier(.645,.045,.355,1)
}

.ant-menu-horizontal>.ant-menu-submenu>.ant-menu-submenu-title {
    padding: 0
}

.ant-menu-horizontal>.ant-menu-item a {
    color: hsla(0,0%,100%,.85)
}

.ant-menu-horizontal>.ant-menu-item a:hover {
    color: #f0b90b
}

.ant-menu-horizontal>.ant-menu-item a:before {
    bottom: -2px
}

.ant-menu-horizontal>.ant-menu-item-selected a {
    color: #f0b90b
}

.ant-menu-horizontal:after {
    clear: both;
    content: "\20";
    display: block;
    height: 0
}

.ant-menu-inline .ant-menu-item,.ant-menu-vertical .ant-menu-item,.ant-menu-vertical-left .ant-menu-item,.ant-menu-vertical-right .ant-menu-item {
    position: relative
}

.ant-menu-inline .ant-menu-item:after,.ant-menu-vertical .ant-menu-item:after,.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-vertical-right .ant-menu-item:after {
    border-right: 3px solid #f0b90b;
    bottom: 0;
    content: "";
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(.0001);
    transition: transform .15s cubic-bezier(.215,.61,.355,1),opacity .15s cubic-bezier(.215,.61,.355,1)
}

.ant-menu-inline .ant-menu-item,.ant-menu-inline .ant-menu-submenu-title,.ant-menu-vertical .ant-menu-item,.ant-menu-vertical .ant-menu-submenu-title,.ant-menu-vertical-left .ant-menu-item,.ant-menu-vertical-left .ant-menu-submenu-title,.ant-menu-vertical-right .ant-menu-item,.ant-menu-vertical-right .ant-menu-submenu-title {
    height: 40px;
    line-height: 40px;
    margin-bottom: 4px;
    margin-top: 4px;
    overflow: hidden;
    padding: 0 16px;
    text-overflow: ellipsis
}

.ant-menu-inline .ant-menu-submenu,.ant-menu-vertical .ant-menu-submenu,.ant-menu-vertical-left .ant-menu-submenu,.ant-menu-vertical-right .ant-menu-submenu {
    padding-bottom: .02px
}

.ant-menu-inline .ant-menu-item:not(:last-child),.ant-menu-vertical .ant-menu-item:not(:last-child),.ant-menu-vertical-left .ant-menu-item:not(:last-child),.ant-menu-vertical-right .ant-menu-item:not(:last-child) {
    margin-bottom: 8px
}

.ant-menu-inline>.ant-menu-item,.ant-menu-inline>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical-left>.ant-menu-item,.ant-menu-vertical-left>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical-right>.ant-menu-item,.ant-menu-vertical-right>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical>.ant-menu-item,.ant-menu-vertical>.ant-menu-submenu>.ant-menu-submenu-title {
    height: 40px;
    line-height: 40px
}

.ant-menu-vertical .ant-menu-item-group-list .ant-menu-submenu-title,.ant-menu-vertical .ant-menu-submenu-title {
    padding-right: 34px
}

.ant-menu-inline {
    width: 100%
}

.ant-menu-inline .ant-menu-item-selected:after,.ant-menu-inline .ant-menu-selected:after {
    opacity: 1;
    transform: scaleY(1);
    transition: transform .15s cubic-bezier(.645,.045,.355,1),opacity .15s cubic-bezier(.645,.045,.355,1)
}

.ant-menu-inline .ant-menu-item,.ant-menu-inline .ant-menu-submenu-title {
    width: calc(100% + 1px)
}

.ant-menu-inline .ant-menu-item-group-list .ant-menu-submenu-title,.ant-menu-inline .ant-menu-submenu-title {
    padding-right: 34px
}

.ant-menu-inline.ant-menu-root .ant-menu-item,.ant-menu-inline.ant-menu-root .ant-menu-submenu-title {
    align-items: center;
    display: flex;
    transition: border-color .3s,background .3s,padding .1s cubic-bezier(.215,.61,.355,1)
}

.ant-menu-inline.ant-menu-root .ant-menu-item>.ant-menu-title-content,.ant-menu-inline.ant-menu-root .ant-menu-submenu-title>.ant-menu-title-content {
    flex: auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis
}

.ant-menu-inline.ant-menu-root .ant-menu-item>*,.ant-menu-inline.ant-menu-root .ant-menu-submenu-title>* {
    flex: none
}

.ant-menu.ant-menu-inline-collapsed {
    width: 80px
}

.ant-menu.ant-menu-inline-collapsed>.ant-menu-item,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title {
    left: 0;
    padding: 0 calc(50% - 8px);
    text-overflow: clip
}

.ant-menu.ant-menu-inline-collapsed>.ant-menu-item .ant-menu-submenu-arrow,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .ant-menu-submenu-arrow,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-submenu-arrow {
    opacity: 0
}

.ant-menu.ant-menu-inline-collapsed>.ant-menu-item .ant-menu-item-icon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item .anticon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .ant-menu-item-icon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .anticon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-item-icon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .anticon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-item-icon,.ant-menu.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .anticon {
    font-size: 16px;
    line-height: 40px;
    margin: 0
}

.ant-menu.ant-menu-inline-collapsed>.ant-menu-item .ant-menu-item-icon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item .anticon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .ant-menu-item-icon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .anticon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-item-icon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .anticon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-item-icon+span,.ant-menu.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .anticon+span {
    display: inline-block;
    opacity: 0
}

.ant-menu.ant-menu-inline-collapsed .ant-menu-item-icon,.ant-menu.ant-menu-inline-collapsed .anticon {
    display: inline-block
}

.ant-menu.ant-menu-inline-collapsed-tooltip {
    pointer-events: none
}

.ant-menu.ant-menu-inline-collapsed-tooltip .ant-menu-item-icon,.ant-menu.ant-menu-inline-collapsed-tooltip .anticon {
    display: none
}

.ant-menu.ant-menu-inline-collapsed-tooltip a {
    color: hsla(0,0%,100%,.85)
}

.ant-menu.ant-menu-inline-collapsed .ant-menu-item-group-title {
    overflow: hidden;
    padding-left: 4px;
    padding-right: 4px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-menu-item-group-list {
    margin: 0;
    padding: 0
}

.ant-menu-item-group-list .ant-menu-item,.ant-menu-item-group-list .ant-menu-submenu-title {
    padding: 0 16px 0 28px
}

.ant-menu-root.ant-menu-inline,.ant-menu-root.ant-menu-vertical,.ant-menu-root.ant-menu-vertical-left,.ant-menu-root.ant-menu-vertical-right {
    box-shadow: none
}

.ant-menu-root.ant-menu-inline-collapsed .ant-menu-item>.ant-menu-inline-collapsed-noicon,.ant-menu-root.ant-menu-inline-collapsed .ant-menu-submenu .ant-menu-submenu-title>.ant-menu-inline-collapsed-noicon {
    font-size: 16px;
    text-align: center
}

.ant-menu-sub.ant-menu-inline {
    background: hsla(0,0%,100%,.04);
    border-radius: 0;
    box-shadow: none;
    padding: 0
}

.ant-menu-sub.ant-menu-inline>.ant-menu-item,.ant-menu-sub.ant-menu-inline>.ant-menu-submenu>.ant-menu-submenu-title {
    height: 40px;
    line-height: 40px;
    list-style-position: inside;
    list-style-type: disc
}

.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
    padding-left: 32px
}

.ant-menu-item-disabled,.ant-menu-submenu-disabled {
    background: none;
    color: hsla(0,0%,100%,.3)!important;
    cursor: not-allowed
}

.ant-menu-item-disabled:after,.ant-menu-submenu-disabled:after {
    border-color: transparent!important
}

.ant-menu-item-disabled a,.ant-menu-submenu-disabled a {
    color: hsla(0,0%,100%,.3)!important;
    pointer-events: none
}

.ant-menu-item-disabled>.ant-menu-submenu-title,.ant-menu-submenu-disabled>.ant-menu-submenu-title {
    color: hsla(0,0%,100%,.3)!important;
    cursor: not-allowed
}

.ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before {
    background: hsla(0,0%,100%,.3)!important
}

.ant-layout-header .ant-menu {
    line-height: inherit
}

.ant-menu-inline-collapsed-tooltip a,.ant-menu-inline-collapsed-tooltip a:hover {
    color: #fff
}

.ant-menu-light .ant-menu-item-active,.ant-menu-light .ant-menu-item:hover,.ant-menu-light .ant-menu-submenu-active,.ant-menu-light .ant-menu-submenu-title:hover,.ant-menu-light .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open {
    color: #f0b90b
}

.ant-menu.ant-menu-root:focus-visible {
    box-shadow: 0 0 0 2px #fc0
}

.ant-menu-dark .ant-menu-item:focus-visible,.ant-menu-dark .ant-menu-submenu-title:focus-visible {
    box-shadow: 0 0 0 2px #fc0
}

.ant-menu-dark .ant-menu-sub,.ant-menu.ant-menu-dark,.ant-menu.ant-menu-dark .ant-menu-sub {
    background: #1f1f1f;
    color: hsla(0,0%,100%,.65)
}

.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow {
    opacity: .45;
    transition: all .3s
}

.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:before {
    background: #fff
}

.ant-menu-dark.ant-menu-submenu-popup {
    background: transparent
}

.ant-menu-dark .ant-menu-inline.ant-menu-sub {
    background: #141414
}

.ant-menu-dark.ant-menu-horizontal {
    border-bottom: 0
}

.ant-menu-dark.ant-menu-horizontal>.ant-menu-item,.ant-menu-dark.ant-menu-horizontal>.ant-menu-submenu {
    border-color: #1f1f1f;
    border-bottom: 0;
    margin-top: 0;
    padding: 0 20px;
    top: 0
}

.ant-menu-dark.ant-menu-horizontal>.ant-menu-item:hover {
    background-color: #f0b90b
}

.ant-menu-dark.ant-menu-horizontal>.ant-menu-item>a:before {
    bottom: 0
}

.ant-menu-dark .ant-menu-item,.ant-menu-dark .ant-menu-item-group-title,.ant-menu-dark .ant-menu-item>a,.ant-menu-dark .ant-menu-item>span>a {
    color: hsla(0,0%,100%,.65)
}

.ant-menu-dark.ant-menu-inline,.ant-menu-dark.ant-menu-vertical,.ant-menu-dark.ant-menu-vertical-left,.ant-menu-dark.ant-menu-vertical-right {
    border-right: 0
}

.ant-menu-dark.ant-menu-inline .ant-menu-item,.ant-menu-dark.ant-menu-vertical .ant-menu-item,.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,.ant-menu-dark.ant-menu-vertical-right .ant-menu-item {
    border-right: 0;
    left: 0;
    margin-left: 0
}

.ant-menu-dark.ant-menu-inline .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical-right .ant-menu-item:after {
    border-right: 0
}

.ant-menu-dark.ant-menu-inline .ant-menu-item,.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title {
    width: 100%
}

.ant-menu-dark .ant-menu-item-active,.ant-menu-dark .ant-menu-item:hover,.ant-menu-dark .ant-menu-submenu-active,.ant-menu-dark .ant-menu-submenu-open,.ant-menu-dark .ant-menu-submenu-selected,.ant-menu-dark .ant-menu-submenu-title:hover {
    background-color: transparent;
    color: #fff
}

.ant-menu-dark .ant-menu-item-active>a,.ant-menu-dark .ant-menu-item-active>span>a,.ant-menu-dark .ant-menu-item:hover>a,.ant-menu-dark .ant-menu-item:hover>span>a,.ant-menu-dark .ant-menu-submenu-active>a,.ant-menu-dark .ant-menu-submenu-active>span>a,.ant-menu-dark .ant-menu-submenu-open>a,.ant-menu-dark .ant-menu-submenu-open>span>a,.ant-menu-dark .ant-menu-submenu-selected>a,.ant-menu-dark .ant-menu-submenu-selected>span>a,.ant-menu-dark .ant-menu-submenu-title:hover>a,.ant-menu-dark .ant-menu-submenu-title:hover>span>a {
    color: #fff
}

.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow {
    opacity: 1
}

.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before {
    background: #fff
}

.ant-menu-dark .ant-menu-item:hover {
    background-color: transparent
}

.ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected {
    background-color: #f0b90b
}

.ant-menu-dark .ant-menu-item-selected {
    border-right: 0;
    color: #fff
}

.ant-menu-dark .ant-menu-item-selected:after {
    border-right: 0
}

.ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon,.ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon+span,.ant-menu-dark .ant-menu-item-selected .anticon,.ant-menu-dark .ant-menu-item-selected .anticon+span,.ant-menu-dark .ant-menu-item-selected>a,.ant-menu-dark .ant-menu-item-selected>a:hover,.ant-menu-dark .ant-menu-item-selected>span>a,.ant-menu-dark .ant-menu-item-selected>span>a:hover {
    color: #fff
}

.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected,.ant-menu.ant-menu-dark .ant-menu-item-selected {
    background-color: #f0b90b
}

.ant-menu-dark .ant-menu-item-disabled,.ant-menu-dark .ant-menu-item-disabled>a,.ant-menu-dark .ant-menu-item-disabled>span>a,.ant-menu-dark .ant-menu-submenu-disabled,.ant-menu-dark .ant-menu-submenu-disabled>a,.ant-menu-dark .ant-menu-submenu-disabled>span>a {
    color: hsla(0,0%,100%,.3)!important;
    opacity: .8
}

.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title {
    color: hsla(0,0%,100%,.3)!important
}

.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before {
    background: hsla(0,0%,100%,.3)!important
}

.ant-menu.ant-menu-rtl {
    direction: rtl;
    text-align: right
}

.ant-menu-rtl .ant-menu-item-group-title {
    text-align: right
}

.ant-menu-rtl.ant-menu-inline,.ant-menu-rtl.ant-menu-vertical {
    border-left: 1px solid #303030;
    border-right: none
}

.ant-menu-rtl.ant-menu-dark.ant-menu-inline,.ant-menu-rtl.ant-menu-dark.ant-menu-vertical {
    border-left: none
}

.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub>.ant-menu-item,.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub>.ant-menu-submenu,.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub>.ant-menu-item,.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub>.ant-menu-submenu,.ant-menu-rtl.ant-menu-vertical.ant-menu-sub>.ant-menu-item,.ant-menu-rtl.ant-menu-vertical.ant-menu-sub>.ant-menu-submenu {
    transform-origin: top right
}

.ant-menu-rtl .ant-menu-item .ant-menu-item-icon,.ant-menu-rtl .ant-menu-item .anticon,.ant-menu-rtl .ant-menu-submenu-title .ant-menu-item-icon,.ant-menu-rtl .ant-menu-submenu-title .anticon {
    margin-left: 10px;
    margin-right: auto
}

.ant-menu-rtl .ant-menu-item.ant-menu-item-only-child>.ant-menu-item-icon,.ant-menu-rtl .ant-menu-item.ant-menu-item-only-child>.anticon,.ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child>.ant-menu-item-icon,.ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child>.anticon {
    margin-left: 0
}

.ant-menu-submenu-rtl.ant-menu-submenu-popup {
    transform-origin: 100% 0
}

.ant-menu-rtl .ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-rtl .ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-rtl .ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-rtl .ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow {
    left: 16px;
    right: auto
}

.ant-menu-rtl .ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-rtl .ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-rtl .ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:before {
    transform: rotate(-45deg) translateY(-2px)
}

.ant-menu-rtl .ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-rtl .ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-rtl .ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:after {
    transform: rotate(45deg) translateY(2px)
}

.ant-menu-rtl.ant-menu-inline .ant-menu-item:after,.ant-menu-rtl.ant-menu-vertical .ant-menu-item:after,.ant-menu-rtl.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-rtl.ant-menu-vertical-right .ant-menu-item:after {
    left: 0;
    right: auto
}

.ant-menu-rtl.ant-menu-inline .ant-menu-item,.ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title,.ant-menu-rtl.ant-menu-vertical .ant-menu-item,.ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title,.ant-menu-rtl.ant-menu-vertical-left .ant-menu-item,.ant-menu-rtl.ant-menu-vertical-left .ant-menu-submenu-title,.ant-menu-rtl.ant-menu-vertical-right .ant-menu-item,.ant-menu-rtl.ant-menu-vertical-right .ant-menu-submenu-title {
    text-align: right
}

.ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title {
    padding-left: 34px;
    padding-right: 0
}

.ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title {
    padding-left: 34px;
    padding-right: 16px
}

.ant-menu-rtl.ant-menu-inline-collapsed.ant-menu-vertical .ant-menu-submenu-title {
    padding: 0 calc(50% - 8px)
}

.ant-menu-rtl .ant-menu-item-group-list .ant-menu-item,.ant-menu-rtl .ant-menu-item-group-list .ant-menu-submenu-title {
    padding: 0 28px 0 16px
}

.ant-menu-sub.ant-menu-inline {
    border: 0
}

.ant-menu-rtl.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
    padding-left: 0;
    padding-right: 32px
}

.ant-message {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    left: 0;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    top: 8px;
    width: 100%;
    z-index: 1010
}

.ant-message-notice {
    padding: 8px;
    text-align: center
}

.ant-message-notice-content {
    background: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    display: inline-block;
    padding: 10px 16px;
    pointer-events: all
}

.ant-message-success .anticon {
    color: #49aa19
}

.ant-message-error .anticon {
    color: #a61d24
}

.ant-message-warning .anticon {
    color: #d89614
}

.ant-message-info .anticon,.ant-message-loading .anticon {
    color: #f0b90b
}

.ant-message .anticon {
    font-size: 16px;
    margin-right: 8px;
    position: relative;
    top: 1px
}

.ant-message-notice.ant-move-up-leave.ant-move-up-leave-active {
    animation-duration: .3s;
    animation-name: MessageMoveOut
}

@keyframes MessageMoveOut {
    0% {
        max-height: 150px;
        opacity: 1;
        padding: 8px
    }

    to {
        max-height: 0;
        opacity: 0;
        padding: 0
    }
}

.ant-message-rtl,.ant-message-rtl span {
    direction: rtl
}

.ant-message-rtl .anticon {
    margin-left: 8px;
    margin-right: 0
}

.ant-modal {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0 auto;
    max-width: calc(100vw - 32px);
    padding: 0 0 24px;
    pointer-events: none;
    position: relative;
    top: 100px;
    width: auto
}

.ant-modal.ant-zoom-appear,.ant-modal.ant-zoom-enter {
    animation-duration: .3s;
    opacity: 0;
    transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-modal-mask {
    background-color: rgba(0,0,0,.45);
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.ant-modal-mask-hidden {
    display: none
}

.ant-modal-wrap {
    bottom: 0;
    left: 0;
    outline: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.ant-modal-title {
    word-wrap: break-word;
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0
}

.ant-modal-content {
    background-clip: padding-box;
    background-color: #1f1f1f;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    pointer-events: auto;
    position: relative
}

.ant-modal-close {
    background: transparent;
    border: 0;
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    outline: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
    transition: color .3s;
    z-index: 10
}

.ant-modal-close-x {
    display: block;
    font-size: 16px;
    font-style: normal;
    height: 54px;
    line-height: 54px;
    text-align: center;
    text-rendering: auto;
    text-transform: none;
    width: 54px
}

.ant-modal-close:focus,.ant-modal-close:hover {
    color: hsla(0,0%,100%,.75);
    text-decoration: none
}

.ant-modal-header {
    background: #1f1f1f;
    border-bottom: 1px solid #303030;
    border-radius: 6px 6px 0 0;
    color: hsla(0,0%,100%,.85);
    padding: 16px 24px
}

.ant-modal-body {
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.5715;
    padding: 24px
}

.ant-modal-footer {
    background: transparent;
    border-radius: 0 0 6px 6px;
    border-top: 1px solid #303030;
    padding: 10px 16px;
    text-align: right
}

.ant-modal-footer .ant-btn+.ant-btn:not(.ant-dropdown-trigger) {
    margin-bottom: 0;
    margin-left: 8px
}

.ant-modal-open {
    overflow: hidden
}

.ant-modal-centered {
    text-align: center
}

.ant-modal-centered:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.ant-modal-centered .ant-modal {
    display: inline-block;
    padding-bottom: 0;
    text-align: left;
    top: 0;
    vertical-align: middle
}

@media (max-width: 767px) {
    .ant-modal {
        margin:8px auto;
        max-width: calc(100vw - 16px)
    }

    .ant-modal-centered .ant-modal {
        flex: 1 1
    }
}

.ant-modal-confirm .ant-modal-header {
    display: none
}

.ant-modal-confirm .ant-modal-body {
    padding: 32px 32px 24px
}

.ant-modal-confirm-body-wrapper:before {
    content: "";
    display: table
}

.ant-modal-confirm-body-wrapper:after {
    clear: both;
    content: "";
    display: table
}

.ant-modal-confirm-body .ant-modal-confirm-title {
    color: hsla(0,0%,100%,.85);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden
}

.ant-modal-confirm-body .ant-modal-confirm-content {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    margin-top: 8px
}

.ant-modal-confirm-body>.anticon {
    float: left;
    font-size: 22px;
    margin-right: 16px
}

.ant-modal-confirm-body>.anticon+.ant-modal-confirm-title+.ant-modal-confirm-content {
    margin-left: 38px
}

.ant-modal-confirm .ant-modal-confirm-btns {
    margin-top: 24px;
    text-align: right
}

.ant-modal-confirm .ant-modal-confirm-btns .ant-btn+.ant-btn {
    margin-bottom: 0;
    margin-left: 8px
}

.ant-modal-confirm-error .ant-modal-confirm-body>.anticon {
    color: #a61d24
}

.ant-modal-confirm-confirm .ant-modal-confirm-body>.anticon,.ant-modal-confirm-warning .ant-modal-confirm-body>.anticon {
    color: #d89614
}

.ant-modal-confirm-info .ant-modal-confirm-body>.anticon {
    color: #f0b90b
}

.ant-modal-confirm-success .ant-modal-confirm-body>.anticon {
    color: #49aa19
}

.ant-modal-wrap-rtl {
    direction: rtl
}

.ant-modal-wrap-rtl .ant-modal-close {
    left: 0;
    right: auto
}

.ant-modal-wrap-rtl .ant-modal-footer {
    text-align: left
}

.ant-modal-wrap-rtl .ant-modal-footer .ant-btn+.ant-btn {
    margin-left: 0;
    margin-right: 8px
}

.ant-modal-wrap-rtl .ant-modal-confirm-body {
    direction: rtl
}

.ant-modal-wrap-rtl .ant-modal-confirm-body>.anticon {
    float: right;
    margin-left: 16px;
    margin-right: 0
}

.ant-modal-wrap-rtl .ant-modal-confirm-body>.anticon+.ant-modal-confirm-title+.ant-modal-confirm-content {
    margin-left: 0;
    margin-right: 38px
}

.ant-modal-wrap-rtl .ant-modal-confirm-btns {
    text-align: left
}

.ant-modal-wrap-rtl .ant-modal-confirm-btns .ant-btn+.ant-btn {
    margin-left: 0;
    margin-right: 8px
}

.ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
    text-align: right
}

.ant-modal .ant-anchor-wrapper,.ant-modal .ant-card,.ant-modal .ant-collapse-content,.ant-modal .ant-picker-clear,.ant-modal .ant-slider-handle,.ant-modal .ant-timeline-item-head {
    background-color: #1f1f1f
}

.ant-modal .ant-transfer-list-header {
    background: #1f1f1f;
    border-bottom: 1px solid #3a3a3a
}

.ant-modal .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-modal tr.ant-table-expanded-row:hover>td,.ant-modal tr.ant-table-expanded-row>td {
    background: #272727
}

.ant-modal .ant-table.ant-table-small thead>tr>th {
    background-color: #1f1f1f;
    border-bottom: 1px solid #3a3a3a
}

.ant-modal .ant-table {
    background-color: #1f1f1f
}

.ant-modal .ant-table .ant-table-row-expand-icon {
    border: 1px solid #3a3a3a
}

.ant-modal .ant-table tfoot>tr>td,.ant-modal .ant-table tfoot>tr>th {
    border-bottom: 1px solid #3a3a3a
}

.ant-modal .ant-table thead>tr>th {
    background-color: #272727;
    border-bottom: 1px solid #3a3a3a
}

.ant-modal .ant-table tbody>tr>td {
    border-bottom: 1px solid #3a3a3a
}

.ant-modal .ant-table tbody>tr>td.ant-table-cell-fix-left,.ant-modal .ant-table tbody>tr>td.ant-table-cell-fix-right {
    background-color: #1f1f1f
}

.ant-modal .ant-table tbody>tr.ant-table-row:hover>td {
    background: #303030
}

.ant-modal .ant-table.ant-table-bordered .ant-table-title {
    border: 1px solid #3a3a3a
}

.ant-modal .ant-table.ant-table-bordered .ant-table-cell-fix-right-first:after,.ant-modal .ant-table.ant-table-bordered tbody>tr>td,.ant-modal .ant-table.ant-table-bordered tfoot>tr>td,.ant-modal .ant-table.ant-table-bordered tfoot>tr>th,.ant-modal .ant-table.ant-table-bordered thead>tr>th {
    border-right: 1px solid #3a3a3a
}

.ant-modal .ant-table.ant-table-bordered table thead>tr:not(:last-child)>th {
    border-bottom: 1px solid #303030
}

.ant-modal .ant-table.ant-table-bordered .ant-table-container {
    border: 1px solid #3a3a3a
}

.ant-modal .ant-table.ant-table-bordered .ant-table-expanded-row-fixed:after {
    border-right: 1px solid #3a3a3a
}

.ant-modal .ant-table.ant-table-bordered .ant-table-footer {
    border: 1px solid #3a3a3a
}

.ant-modal .ant-table .ant-table-filter-trigger-container-open {
    background-color: #525252
}

.ant-modal .ant-picker-calendar-full,.ant-modal .ant-picker-calendar-full .ant-picker-panel {
    background-color: #1f1f1f
}

.ant-modal .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date {
    border-top: 2px solid #3a3a3a
}

.ant-modal .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active {
    background-color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f
}

.ant-modal .ant-badge-count {
    box-shadow: 0 0 0 1px #1f1f1f
}

.ant-modal .ant-tree-show-line .ant-tree-switcher {
    background: #1f1f1f
}

.ant-notification .ant-anchor-wrapper,.ant-notification .ant-card,.ant-notification .ant-collapse-content,.ant-notification .ant-picker-clear,.ant-notification .ant-slider-handle,.ant-notification .ant-timeline-item-head {
    background-color: #1f1f1f
}

.ant-notification .ant-transfer-list-header {
    background: #1f1f1f;
    border-bottom: 1px solid #3a3a3a
}

.ant-notification .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-notification tr.ant-table-expanded-row:hover>td,.ant-notification tr.ant-table-expanded-row>td {
    background: #272727
}

.ant-notification .ant-table.ant-table-small thead>tr>th {
    background-color: #1f1f1f;
    border-bottom: 1px solid #3a3a3a
}

.ant-notification .ant-table {
    background-color: #1f1f1f
}

.ant-notification .ant-table .ant-table-row-expand-icon {
    border: 1px solid #3a3a3a
}

.ant-notification .ant-table tfoot>tr>td,.ant-notification .ant-table tfoot>tr>th {
    border-bottom: 1px solid #3a3a3a
}

.ant-notification .ant-table thead>tr>th {
    background-color: #272727;
    border-bottom: 1px solid #3a3a3a
}

.ant-notification .ant-table tbody>tr>td {
    border-bottom: 1px solid #3a3a3a
}

.ant-notification .ant-table tbody>tr>td.ant-table-cell-fix-left,.ant-notification .ant-table tbody>tr>td.ant-table-cell-fix-right {
    background-color: #1f1f1f
}

.ant-notification .ant-table tbody>tr.ant-table-row:hover>td {
    background: #303030
}

.ant-notification .ant-table.ant-table-bordered .ant-table-title {
    border: 1px solid #3a3a3a
}

.ant-notification .ant-table.ant-table-bordered .ant-table-cell-fix-right-first:after,.ant-notification .ant-table.ant-table-bordered tbody>tr>td,.ant-notification .ant-table.ant-table-bordered tfoot>tr>td,.ant-notification .ant-table.ant-table-bordered tfoot>tr>th,.ant-notification .ant-table.ant-table-bordered thead>tr>th {
    border-right: 1px solid #3a3a3a
}

.ant-notification .ant-table.ant-table-bordered table thead>tr:not(:last-child)>th {
    border-bottom: 1px solid #303030
}

.ant-notification .ant-table.ant-table-bordered .ant-table-container {
    border: 1px solid #3a3a3a
}

.ant-notification .ant-table.ant-table-bordered .ant-table-expanded-row-fixed:after {
    border-right: 1px solid #3a3a3a
}

.ant-notification .ant-table.ant-table-bordered .ant-table-footer {
    border: 1px solid #3a3a3a
}

.ant-notification .ant-table .ant-table-filter-trigger-container-open {
    background-color: #525252
}

.ant-notification .ant-picker-calendar-full,.ant-notification .ant-picker-calendar-full .ant-picker-panel {
    background-color: #1f1f1f
}

.ant-notification .ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date {
    border-top: 2px solid #3a3a3a
}

.ant-notification .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active {
    background-color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f
}

.ant-notification .ant-badge-count {
    box-shadow: 0 0 0 1px #1f1f1f
}

.ant-notification .ant-tree-show-line .ant-tree-switcher {
    background: #1f1f1f
}

.ant-notification {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0 24px 0 0;
    padding: 0;
    position: fixed;
    z-index: 1010
}

.ant-notification-close-icon {
    cursor: pointer;
    font-size: 14px
}

.ant-notification-hook-holder {
    position: relative
}

.ant-notification-notice {
    word-wrap: break-word;
    background: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    line-height: 1.5715;
    margin-bottom: 16px;
    margin-left: auto;
    max-width: calc(100vw - 48px);
    overflow: hidden;
    padding: 16px 24px;
    position: relative;
    width: 384px
}

.ant-notification-bottom .ant-notification-notice,.ant-notification-top .ant-notification-notice {
    margin-left: auto;
    margin-right: auto
}

.ant-notification-bottomLeft .ant-notification-notice,.ant-notification-topLeft .ant-notification-notice {
    margin-left: 0;
    margin-right: auto
}

.ant-notification-notice-message {
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px
}

.ant-notification-notice-message-single-line-auto-margin {
    background-color: transparent;
    display: block;
    max-width: 4px;
    pointer-events: none;
    width: calc(264px - 100%)
}

.ant-notification-notice-message-single-line-auto-margin:before {
    content: "";
    display: block
}

.ant-notification-notice-description {
    font-size: 14px
}

.ant-notification-notice-closable .ant-notification-notice-message {
    padding-right: 24px
}

.ant-notification-notice-with-icon .ant-notification-notice-message {
    font-size: 16px;
    margin-bottom: 4px;
    margin-left: 48px
}

.ant-notification-notice-with-icon .ant-notification-notice-description {
    font-size: 14px;
    margin-left: 48px
}

.ant-notification-notice-icon {
    font-size: 24px;
    line-height: 24px;
    margin-left: 4px;
    position: absolute
}

.anticon.ant-notification-notice-icon-success {
    color: #49aa19
}

.anticon.ant-notification-notice-icon-info {
    color: #f0b90b
}

.anticon.ant-notification-notice-icon-warning {
    color: #d89614
}

.anticon.ant-notification-notice-icon-error {
    color: #a61d24
}

.ant-notification-notice-close {
    color: hsla(0,0%,100%,.45);
    outline: none;
    position: absolute;
    right: 22px;
    top: 16px
}

.ant-notification-notice-close:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-notification-notice-btn {
    float: right;
    margin-top: 16px
}

.ant-notification .notification-fade-effect {
    animation-duration: .24s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.645,.045,.355,1)
}

.ant-notification-fade-appear,.ant-notification-fade-enter {
    animation-play-state: paused;
    opacity: 0
}

.ant-notification-fade-appear,.ant-notification-fade-enter,.ant-notification-fade-leave {
    animation-duration: .24s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.645,.045,.355,1)
}

.ant-notification-fade-leave {
    animation-duration: .2s;
    animation-play-state: paused
}

.ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-fade-enter.ant-notification-fade-enter-active {
    animation-name: NotificationFadeIn;
    animation-play-state: running
}

.ant-notification-fade-leave.ant-notification-fade-leave-active {
    animation-name: NotificationFadeOut;
    animation-play-state: running
}

@keyframes NotificationFadeIn {
    0% {
        left: 384px;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}

@keyframes NotificationFadeOut {
    0% {
        margin-bottom: 16px;
        max-height: 150px;
        opacity: 1
    }

    to {
        margin-bottom: 0;
        max-height: 0;
        opacity: 0;
        padding-bottom: 0;
        padding-top: 0
    }
}

.ant-notification-rtl {
    direction: rtl
}

.ant-notification-rtl .ant-notification-notice-closable .ant-notification-notice-message {
    padding-left: 24px;
    padding-right: 0
}

.ant-notification-rtl .ant-notification-notice-with-icon .ant-notification-notice-description,.ant-notification-rtl .ant-notification-notice-with-icon .ant-notification-notice-message {
    margin-left: 0;
    margin-right: 48px
}

.ant-notification-rtl .ant-notification-notice-icon {
    margin-left: 0;
    margin-right: 4px
}

.ant-notification-rtl .ant-notification-notice-close {
    left: 22px;
    right: auto
}

.ant-notification-rtl .ant-notification-notice-btn {
    float: left
}

.ant-notification-bottom,.ant-notification-top {
    margin-left: 0;
    margin-right: 0
}

.ant-notification-top .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-top .ant-notification-fade-enter.ant-notification-fade-enter-active {
    animation-name: NotificationTopFadeIn
}

.ant-notification-bottom .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-bottom .ant-notification-fade-enter.ant-notification-fade-enter-active {
    animation-name: NotificationBottomFadeIn
}

.ant-notification-bottomLeft,.ant-notification-topLeft {
    margin-left: 24px;
    margin-right: 0
}

.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active {
    animation-name: NotificationLeftFadeIn
}

@keyframes NotificationTopFadeIn {
    0% {
        margin-top: -100%;
        opacity: 0
    }

    to {
        margin-top: 0;
        opacity: 1
    }
}

@keyframes NotificationBottomFadeIn {
    0% {
        margin-bottom: -100%;
        opacity: 0
    }

    to {
        margin-bottom: 0;
        opacity: 1
    }
}

@keyframes NotificationLeftFadeIn {
    0% {
        opacity: 0;
        right: 384px
    }

    to {
        opacity: 1;
        right: 0
    }
}

.ant-page-header {
    font-feature-settings: "tnum","tnum";
    background-color: #141414;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 16px 24px;
    position: relative
}

.ant-page-header-ghost {
    background-color: transparent
}

.ant-page-header.has-breadcrumb {
    padding-top: 12px
}

.ant-page-header.has-footer {
    padding-bottom: 0
}

.ant-page-header-back {
    font-size: 16px;
    line-height: 1;
    margin-right: 16px
}

.ant-page-header-back-button {
    color: #f0b90b;
    color: inherit;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: color .3s
}

.ant-page-header-back-button:focus,.ant-page-header-back-button:hover {
    color: #bf9003
}

.ant-page-header-back-button:active {
    color: #fc0
}

.ant-page-header .ant-divider-vertical {
    height: 14px;
    margin: 0 12px;
    vertical-align: middle
}

.ant-breadcrumb+.ant-page-header-heading {
    margin-top: 8px
}

.ant-page-header-heading {
    display: flex;
    justify-content: space-between
}

.ant-page-header-heading-left {
    align-items: center;
    display: flex;
    margin: 4px 0;
    overflow: hidden
}

.ant-page-header-heading-title {
    color: hsla(0,0%,100%,.85);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 0;
    margin-right: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-page-header-heading .ant-avatar {
    margin-right: 12px
}

.ant-page-header-heading-sub-title {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    line-height: 1.5715;
    margin-right: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-page-header-heading-extra {
    margin: 4px 0;
    white-space: nowrap
}

.ant-page-header-heading-extra>* {
    white-space: inherit
}

.ant-page-header-content {
    padding-top: 12px
}

.ant-page-header-footer {
    margin-top: 16px
}

.ant-page-header-footer .ant-tabs>.ant-tabs-nav {
    margin: 0
}

.ant-page-header-footer .ant-tabs>.ant-tabs-nav:before {
    border: none
}

.ant-page-header-footer .ant-tabs .ant-tabs-tab {
    font-size: 16px;
    padding-bottom: 8px;
    padding-top: 8px
}

.ant-page-header-compact .ant-page-header-heading {
    flex-wrap: wrap
}

.ant-page-header-rtl {
    direction: rtl
}

.ant-page-header-rtl .ant-page-header-back {
    float: right;
    margin-left: 16px;
    margin-right: 0
}

.ant-page-header-rtl .ant-page-header-heading .ant-avatar,.ant-page-header-rtl .ant-page-header-heading-title {
    margin-left: 12px;
    margin-right: 0
}

.ant-page-header-rtl .ant-page-header-heading-sub-title {
    float: right;
    margin-left: 12px;
    margin-right: 0
}

.ant-page-header-rtl .ant-page-header-heading-tags {
    float: right
}

.ant-page-header-rtl .ant-page-header-heading-extra {
    float: left
}

.ant-page-header-rtl .ant-page-header-heading-extra>* {
    margin-left: 0;
    margin-right: 12px
}

.ant-page-header-rtl .ant-page-header-heading-extra>:first-child {
    margin-right: 0
}

.ant-page-header-rtl .ant-page-header-footer .ant-tabs-bar .ant-tabs-nav {
    float: right
}

.ant-pagination {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715
}

.ant-pagination,.ant-pagination ol,.ant-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-pagination:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.ant-pagination-item,.ant-pagination-total-text {
    display: inline-block;
    height: 32px;
    line-height: 30px;
    margin-right: 8px;
    vertical-align: middle
}

.ant-pagination-item {
    background-color: transparent;
    border: 1px solid #434343;
    border-radius: 6px;
    cursor: pointer;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    list-style: none;
    min-width: 32px;
    outline: 0;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-pagination-item a {
    color: hsla(0,0%,100%,.85);
    display: block;
    padding: 0 6px;
    transition: none
}

.ant-pagination-item a:hover {
    text-decoration: none
}

.ant-pagination-item:hover {
    border-color: #f0b90b;
    transition: all .3s
}

.ant-pagination-item:hover a {
    color: #f0b90b
}

.ant-pagination-item:focus-visible {
    border-color: #f0b90b;
    transition: all .3s
}

.ant-pagination-item:focus-visible a {
    color: #f0b90b
}

.ant-pagination-item-active {
    background: transparent;
    border-color: #f0b90b;
    font-weight: 500
}

.ant-pagination-item-active a {
    color: #f0b90b
}

.ant-pagination-item-active:hover {
    border-color: #bf9003
}

.ant-pagination-item-active:focus-visible {
    border-color: #bf9003
}

.ant-pagination-item-active:hover a {
    color: #bf9003
}

.ant-pagination-item-active:focus-visible a {
    color: #bf9003
}

.ant-pagination-jump-next,.ant-pagination-jump-prev {
    outline: 0
}

.ant-pagination-jump-next .ant-pagination-item-container,.ant-pagination-jump-prev .ant-pagination-item-container {
    position: relative
}

.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon {
    color: #f0b90b;
    font-size: 12px;
    letter-spacing: -1px;
    opacity: 0;
    transition: all .2s
}

.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg {
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    top: 0
}

.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis {
    bottom: 0;
    color: hsla(0,0%,100%,.3);
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    left: 0;
    letter-spacing: 2px;
    margin: auto;
    opacity: 1;
    position: absolute;
    right: 0;
    text-align: center;
    text-indent: .13em;
    top: 0;
    transition: all .2s
}

.ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon {
    opacity: 1
}

.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis {
    opacity: 0
}

.ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon {
    opacity: 1
}

.ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis {
    opacity: 0
}

.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev {
    margin-right: 8px
}

.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next,.ant-pagination-prev {
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    height: 32px;
    line-height: 32px;
    list-style: none;
    min-width: 32px;
    text-align: center;
    transition: all .3s;
    vertical-align: middle
}

.ant-pagination-next,.ant-pagination-prev {
    font-family: Arial,Helvetica,sans-serif;
    outline: 0
}

.ant-pagination-next button,.ant-pagination-prev button {
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-pagination-next:hover button,.ant-pagination-prev:hover button {
    border-color: #bf9003
}

.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link {
    background-color: transparent;
    border: 1px solid #434343;
    border-radius: 6px;
    display: block;
    font-size: 12px;
    height: 100%;
    outline: none;
    padding: 0;
    text-align: center;
    transition: all .3s;
    width: 100%
}

.ant-pagination-next:focus-visible .ant-pagination-item-link,.ant-pagination-prev:focus-visible .ant-pagination-item-link {
    border-color: #f0b90b;
    color: #f0b90b
}

.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link {
    border-color: #f0b90b;
    color: #f0b90b
}

.ant-pagination-disabled,.ant-pagination-disabled:hover {
    cursor: not-allowed
}

.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination-disabled:hover .ant-pagination-item-link {
    border-color: #434343;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-pagination-disabled:focus-visible {
    cursor: not-allowed
}

.ant-pagination-disabled:focus-visible .ant-pagination-item-link {
    border-color: #434343;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-pagination-slash {
    margin: 0 10px 0 5px
}

.ant-pagination-options {
    display: inline-block;
    margin-left: 16px;
    vertical-align: middle
}

@media (-ms-high-contrast:none) {
    .ant-pagination-options,.ant-pagination-options ::-ms-backdrop {
        vertical-align: top
    }
}

.ant-pagination-options-size-changer.ant-select {
    display: inline-block;
    width: auto
}

.ant-pagination-options-quick-jumper {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    margin-left: 8px;
    vertical-align: top
}

.ant-pagination-options-quick-jumper input {
    background-color: transparent;
    background-image: none;
    border: 1px solid #434343;
    border-radius: 6px;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 1.5715;
    margin: 0 8px;
    min-width: 0;
    padding: 4px 11px;
    position: relative;
    transition: all .3s;
    width: 100%;
    width: 50px
}

.ant-pagination-options-quick-jumper input::-moz-placeholder {
    color: hsla(0,0%,100%,.3);
    -moz-user-select: none;
    user-select: none
}

.ant-pagination-options-quick-jumper input:-ms-input-placeholder {
    color: hsla(0,0%,100%,.3);
    -ms-user-select: none;
    user-select: none
}

.ant-pagination-options-quick-jumper input::placeholder {
    color: hsla(0,0%,100%,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-pagination-options-quick-jumper input:-moz-placeholder {
    text-overflow: ellipsis
}

.ant-pagination-options-quick-jumper input:-ms-input-placeholder {
    text-overflow: ellipsis
}

.ant-pagination-options-quick-jumper input:placeholder-shown {
    text-overflow: ellipsis
}

.ant-pagination-options-quick-jumper input:hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-pagination-options-quick-jumper input:hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-pagination-options-quick-jumper input-focused,.ant-pagination-options-quick-jumper input:focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-pagination-options-quick-jumper input-focused,.ant-input-rtl .ant-pagination-options-quick-jumper input:focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-pagination-options-quick-jumper input-disabled {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-pagination-options-quick-jumper input-disabled:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-pagination-options-quick-jumper input[disabled] {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    opacity: 1
}

.ant-pagination-options-quick-jumper input[disabled]:hover {
    border-color: #434343;
    border-right-width: 1px
}

.ant-pagination-options-quick-jumper input-borderless,.ant-pagination-options-quick-jumper input-borderless-disabled,.ant-pagination-options-quick-jumper input-borderless-focused,.ant-pagination-options-quick-jumper input-borderless:focus,.ant-pagination-options-quick-jumper input-borderless:hover,.ant-pagination-options-quick-jumper input-borderless[disabled] {
    background-color: transparent;
    border: none;
    box-shadow: none
}

textarea.ant-pagination-options-quick-jumper input {
    height: auto;
    line-height: 1.5715;
    max-width: 100%;
    min-height: 32px;
    transition: all .3s,height 0s;
    vertical-align: bottom
}

.ant-pagination-options-quick-jumper input-lg {
    font-size: 16px;
    padding: 6.5px 11px
}

.ant-pagination-options-quick-jumper input-sm {
    padding: 0 7px
}

.ant-pagination-options-quick-jumper input-rtl {
    direction: rtl
}

.ant-pagination-simple .ant-pagination-next,.ant-pagination-simple .ant-pagination-prev {
    height: 24px;
    line-height: 24px;
    vertical-align: top
}

.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link {
    background-color: transparent;
    border: 0;
    height: 24px
}

.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link:after {
    height: 24px;
    line-height: 24px
}

.ant-pagination-simple .ant-pagination-simple-pager {
    display: inline-block;
    height: 24px;
    margin-right: 8px
}

.ant-pagination-simple .ant-pagination-simple-pager input {
    background-color: transparent;
    border: 1px solid #434343;
    border-radius: 6px;
    box-sizing: border-box;
    height: 100%;
    margin-right: 8px;
    outline: none;
    padding: 0 6px;
    text-align: center;
    transition: border-color .3s
}

.ant-pagination-simple .ant-pagination-simple-pager input:hover {
    border-color: #f0b90b
}

.ant-pagination-simple .ant-pagination-simple-pager input:focus {
    border-color: #ffc107
}

.ant-pagination-simple .ant-pagination-simple-pager input[disabled] {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-pagination.ant-pagination-mini .ant-pagination-simple-pager,.ant-pagination.ant-pagination-mini .ant-pagination-total-text {
    height: 24px;
    line-height: 24px
}

.ant-pagination.ant-pagination-mini .ant-pagination-item {
    height: 24px;
    line-height: 22px;
    margin: 0;
    min-width: 24px
}

.ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active) {
    background: transparent;
    border-color: transparent
}

.ant-pagination.ant-pagination-mini .ant-pagination-next,.ant-pagination.ant-pagination-mini .ant-pagination-prev {
    height: 24px;
    line-height: 24px;
    margin: 0;
    min-width: 24px
}

.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link,.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link {
    background: transparent;
    border-color: transparent
}

.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link:after {
    height: 24px;
    line-height: 24px
}

.ant-pagination.ant-pagination-mini .ant-pagination-jump-next,.ant-pagination.ant-pagination-mini .ant-pagination-jump-prev {
    height: 24px;
    line-height: 24px;
    margin-right: 0
}

.ant-pagination.ant-pagination-mini .ant-pagination-options {
    margin-left: 2px
}

.ant-pagination.ant-pagination-mini .ant-pagination-options-size-changer {
    top: 0
}

.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper {
    height: 24px;
    line-height: 24px
}

.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper input {
    height: 24px;
    padding: 0 7px;
    width: 44px
}

.ant-pagination.ant-pagination-disabled {
    cursor: not-allowed
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    cursor: not-allowed
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item a {
    background: transparent;
    border: none;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-active {
    background: hsla(0,0%,100%,.25)
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {
    color: #000
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-link {
    background: hsla(0,0%,100%,.08);
    border-color: #434343;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link {
    background: transparent
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon {
    opacity: 0
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis {
    opacity: 1
}

.ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager {
    color: hsla(0,0%,100%,.3)
}

@media only screen and (max-width: 992px) {
    .ant-pagination-item-after-jump-prev,.ant-pagination-item-before-jump-next {
        display:none
    }
}

@media only screen and (max-width: 576px) {
    .ant-pagination-options {
        display:none
    }
}

.ant-pagination-rtl .ant-pagination-item,.ant-pagination-rtl .ant-pagination-jump-next,.ant-pagination-rtl .ant-pagination-jump-prev,.ant-pagination-rtl .ant-pagination-prev,.ant-pagination-rtl .ant-pagination-total-text {
    margin-left: 8px;
    margin-right: 0
}

.ant-pagination-rtl .ant-pagination-slash {
    margin: 0 5px 0 10px
}

.ant-pagination-rtl .ant-pagination-options {
    margin-left: 0;
    margin-right: 16px
}

.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select {
    margin-left: 8px;
    margin-right: 0
}

.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper {
    margin-left: 0
}

.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager,.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input {
    margin-left: 8px;
    margin-right: 0
}

.ant-pagination-rtl.ant-pagination.mini .ant-pagination-options {
    margin-left: 0;
    margin-right: 2px
}

.ant-popconfirm {
    z-index: 1060
}

.ant-popover {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: auto;
    font-size: 14px;
    font-variant: tabular-nums;
    font-weight: 400;
    left: 0;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 0;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    white-space: normal;
    z-index: 1030
}

.ant-popover-content {
    position: relative
}

.ant-popover:after {
    background: hsla(0,0%,100%,.01);
    content: "";
    position: absolute
}

.ant-popover-hidden {
    display: none
}

.ant-popover-placement-top,.ant-popover-placement-topLeft,.ant-popover-placement-topRight {
    padding-bottom: 15.3137085px
}

.ant-popover-placement-right,.ant-popover-placement-rightBottom,.ant-popover-placement-rightTop {
    padding-left: 15.3137085px
}

.ant-popover-placement-bottom,.ant-popover-placement-bottomLeft,.ant-popover-placement-bottomRight {
    padding-top: 15.3137085px
}

.ant-popover-placement-left,.ant-popover-placement-leftBottom,.ant-popover-placement-leftTop {
    padding-right: 15.3137085px
}

.ant-popover-inner {
    background-clip: padding-box;
    background-color: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    box-shadow: 0 0 8px rgba(0,0,0,.45)\9
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
    .ant-popover-inner {
        box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2)
    }
}

.ant-popover-title {
    border-bottom: 1px solid #303030;
    color: hsla(0,0%,100%,.85);
    font-weight: 500;
    margin: 0;
    min-height: 32px;
    min-width: 177px;
    padding: 5px 16px 4px
}

.ant-popover-inner-content {
    color: hsla(0,0%,100%,.85);
    padding: 12px 16px
}

.ant-popover-message {
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    padding: 4px 0 12px;
    position: relative
}

.ant-popover-message>.anticon {
    color: #d89614;
    font-size: 14px;
    position: absolute;
    top: 8.0005px
}

.ant-popover-message-title {
    padding-left: 22px
}

.ant-popover-buttons {
    margin-bottom: 4px;
    text-align: right
}

.ant-popover-buttons button {
    margin-left: 8px
}

.ant-popover-arrow {
    background: transparent;
    display: block;
    height: 22px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    width: 22px
}

.ant-popover-arrow-content {
    --antd-arrow-background-color: #1f1f1f;
    border-radius: 0 0 2px;
    bottom: 0;
    content: "";
    display: block;
    height: 11.3137085px;
    left: 0;
    margin: auto;
    pointer-events: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 11.3137085px
}

.ant-popover-arrow-content:before {
    background: var(--antd-arrow-background-color);
    background-position: -10px -10px;
    background-repeat: no-repeat;
    clip-path: inset(33% 33%);
    clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    content: "";
    height: 33.9411255px;
    left: -11.3137085px;
    position: absolute;
    top: -11.3137085px;
    width: 33.9411255px
}

.ant-popover-placement-top .ant-popover-arrow,.ant-popover-placement-topLeft .ant-popover-arrow,.ant-popover-placement-topRight .ant-popover-arrow {
    bottom: 0;
    transform: translateY(100%)
}

.ant-popover-placement-top .ant-popover-arrow-content,.ant-popover-placement-topLeft .ant-popover-arrow-content,.ant-popover-placement-topRight .ant-popover-arrow-content {
    box-shadow: 3px 3px 7px rgba(0,0,0,.07);
    transform: translateY(-11px) rotate(45deg)
}

.ant-popover-placement-top .ant-popover-arrow {
    left: 50%;
    transform: translateY(100%) translateX(-50%)
}

.ant-popover-placement-topLeft .ant-popover-arrow {
    left: 16px
}

.ant-popover-placement-topRight .ant-popover-arrow {
    right: 16px
}

.ant-popover-placement-right .ant-popover-arrow,.ant-popover-placement-rightBottom .ant-popover-arrow,.ant-popover-placement-rightTop .ant-popover-arrow {
    left: 0;
    transform: translateX(-100%)
}

.ant-popover-placement-right .ant-popover-arrow-content,.ant-popover-placement-rightBottom .ant-popover-arrow-content,.ant-popover-placement-rightTop .ant-popover-arrow-content {
    box-shadow: 3px 3px 7px rgba(0,0,0,.07);
    transform: translateX(11px) rotate(135deg)
}

.ant-popover-placement-right .ant-popover-arrow {
    top: 50%;
    transform: translateX(-100%) translateY(-50%)
}

.ant-popover-placement-rightTop .ant-popover-arrow {
    top: 12px
}

.ant-popover-placement-rightBottom .ant-popover-arrow {
    bottom: 12px
}

.ant-popover-placement-bottom .ant-popover-arrow,.ant-popover-placement-bottomLeft .ant-popover-arrow,.ant-popover-placement-bottomRight .ant-popover-arrow {
    top: 0;
    transform: translateY(-100%)
}

.ant-popover-placement-bottom .ant-popover-arrow-content,.ant-popover-placement-bottomLeft .ant-popover-arrow-content,.ant-popover-placement-bottomRight .ant-popover-arrow-content {
    box-shadow: 2px 2px 5px rgba(0,0,0,.06);
    transform: translateY(11px) rotate(-135deg)
}

.ant-popover-placement-bottom .ant-popover-arrow {
    left: 50%;
    transform: translateY(-100%) translateX(-50%)
}

.ant-popover-placement-bottomLeft .ant-popover-arrow {
    left: 16px
}

.ant-popover-placement-bottomRight .ant-popover-arrow {
    right: 16px
}

.ant-popover-placement-left .ant-popover-arrow,.ant-popover-placement-leftBottom .ant-popover-arrow,.ant-popover-placement-leftTop .ant-popover-arrow {
    right: 0;
    transform: translateX(100%)
}

.ant-popover-placement-left .ant-popover-arrow-content,.ant-popover-placement-leftBottom .ant-popover-arrow-content,.ant-popover-placement-leftTop .ant-popover-arrow-content {
    box-shadow: 3px 3px 7px rgba(0,0,0,.07);
    transform: translateX(-11px) rotate(-45deg)
}

.ant-popover-placement-left .ant-popover-arrow {
    top: 50%;
    transform: translateX(100%) translateY(-50%)
}

.ant-popover-placement-leftTop .ant-popover-arrow {
    top: 12px
}

.ant-popover-placement-leftBottom .ant-popover-arrow {
    bottom: 12px
}

.ant-popover-magenta .ant-popover-arrow-content,.ant-popover-magenta .ant-popover-inner,.ant-popover-pink .ant-popover-arrow-content,.ant-popover-pink .ant-popover-inner {
    background-color: #cb2b83
}

.ant-popover-red .ant-popover-arrow-content,.ant-popover-red .ant-popover-inner {
    background-color: #d32029
}

.ant-popover-volcano .ant-popover-arrow-content,.ant-popover-volcano .ant-popover-inner {
    background-color: #d84a1b
}

.ant-popover-orange .ant-popover-arrow-content,.ant-popover-orange .ant-popover-inner {
    background-color: #d87a16
}

.ant-popover-yellow .ant-popover-arrow-content,.ant-popover-yellow .ant-popover-inner {
    background-color: #d8bd14
}

.ant-popover-gold .ant-popover-arrow-content,.ant-popover-gold .ant-popover-inner {
    background-color: #d89614
}

.ant-popover-cyan .ant-popover-arrow-content,.ant-popover-cyan .ant-popover-inner {
    background-color: #13a8a8
}

.ant-popover-lime .ant-popover-arrow-content,.ant-popover-lime .ant-popover-inner {
    background-color: #8bbb11
}

.ant-popover-green .ant-popover-arrow-content,.ant-popover-green .ant-popover-inner {
    background-color: #49aa19
}

.ant-popover-blue .ant-popover-arrow-content,.ant-popover-blue .ant-popover-inner {
    background-color: #177ddc
}

.ant-popover-geekblue .ant-popover-arrow-content,.ant-popover-geekblue .ant-popover-inner {
    background-color: #2b4acb
}

.ant-popover-purple .ant-popover-arrow-content,.ant-popover-purple .ant-popover-inner {
    background-color: #642ab5
}

.ant-popover-rtl {
    direction: rtl;
    text-align: right
}

.ant-popover-rtl .ant-popover-message-title {
    padding-left: 16px;
    padding-right: 22px
}

.ant-popover-rtl .ant-popover-buttons {
    text-align: left
}

.ant-popover-rtl .ant-popover-buttons button {
    margin-left: 0;
    margin-right: 8px
}

.ant-progress {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-progress-line {
    font-size: 14px;
    position: relative;
    width: 100%
}

.ant-progress-steps {
    display: inline-block
}

.ant-progress-steps-outer {
    align-items: center;
    display: flex;
    flex-direction: row
}

.ant-progress-steps-item {
    background: hsla(0,0%,100%,.08);
    flex-shrink: 0;
    margin-right: 2px;
    min-width: 2px;
    transition: all .3s
}

.ant-progress-steps-item-active {
    background: #177ddc
}

.ant-progress-small.ant-progress-line,.ant-progress-small.ant-progress-line .ant-progress-text .anticon {
    font-size: 12px
}

.ant-progress-outer {
    display: inline-block;
    margin-right: 0;
    padding-right: 0;
    width: 100%
}

.ant-progress-show-info .ant-progress-outer {
    margin-right: calc(-2em - 8px);
    padding-right: calc(2em + 8px)
}

.ant-progress-inner {
    background-color: hsla(0,0%,100%,.08);
    border-radius: 100px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 100%
}

.ant-progress-circle-trail {
    stroke: hsla(0,0%,100%,.08)
}

.ant-progress-circle-path {
    animation: ant-progress-appear .3s
}

.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #177ddc
}

.ant-progress-bg,.ant-progress-success-bg {
    background-color: #177ddc;
    position: relative;
    transition: all .4s cubic-bezier(.08,.82,.17,1) 0s
}

.ant-progress-success-bg {
    background-color: #49aa19;
    left: 0;
    position: absolute;
    top: 0
}

.ant-progress-text {
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    margin-left: 8px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 2em;
    word-break: normal
}

.ant-progress-text .anticon {
    font-size: 14px
}

.ant-progress-status-active .ant-progress-bg:before {
    animation: ant-progress-active 2.4s cubic-bezier(.23,1,.32,1) infinite;
    background: #141414;
    border-radius: 10px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0
}

.ant-progress-status-exception .ant-progress-bg {
    background-color: #a61d24
}

.ant-progress-status-exception .ant-progress-text {
    color: #a61d24
}

.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #a61d24
}

.ant-progress-status-success .ant-progress-bg {
    background-color: #49aa19
}

.ant-progress-status-success .ant-progress-text {
    color: #49aa19
}

.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #49aa19
}

.ant-progress-circle .ant-progress-inner {
    background-color: transparent;
    line-height: 1;
    position: relative
}

.ant-progress-circle .ant-progress-text {
    color: hsla(0,0%,100%,.85);
    font-size: 1em;
    left: 50%;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
    white-space: normal;
    width: 100%
}

.ant-progress-circle .ant-progress-text .anticon {
    font-size: 1.16666667em
}

.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
    color: #a61d24
}

.ant-progress-circle.ant-progress-status-success .ant-progress-text {
    color: #49aa19
}

@keyframes ant-progress-active {
    0% {
        opacity: .1;
        transform: translateX(-100%) scaleX(0)
    }

    20% {
        opacity: .5;
        transform: translateX(-100%) scaleX(0)
    }

    to {
        opacity: 0;
        transform: translateX(0) scaleX(1)
    }
}

.ant-progress-rtl {
    direction: rtl
}

.ant-progress-rtl.ant-progress-show-info .ant-progress-outer {
    margin-left: calc(-2em - 8px);
    margin-right: 0;
    padding-left: calc(2em + 8px);
    padding-right: 0
}

.ant-progress-rtl .ant-progress-success-bg {
    left: auto;
    right: 0
}

.ant-progress-rtl.ant-progress-line .ant-progress-text,.ant-progress-rtl.ant-progress-steps .ant-progress-text {
    margin-left: 0;
    margin-right: 8px;
    text-align: right
}

.ant-radio-group {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-size: 0;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-radio-group .ant-badge-count {
    z-index: 1
}

.ant-radio-group>.ant-badge:not(:first-child)>.ant-radio-button-wrapper {
    border-left: none
}

.ant-radio-wrapper {
    font-feature-settings: "tnum","tnum";
    align-items: baseline;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0 8px 0 0;
    padding: 0;
    position: relative
}

.ant-radio-wrapper-disabled {
    cursor: not-allowed
}

.ant-radio-wrapper:after {
    content: "\a0";
    display: inline-block;
    overflow: hidden;
    width: 0
}

.ant-radio-wrapper.ant-radio-wrapper-in-form-item input[type=radio] {
    height: 14px;
    width: 14px
}

.ant-radio {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    top: .2em
}

.ant-radio-input:focus+.ant-radio-inner,.ant-radio-wrapper:hover .ant-radio,.ant-radio:hover .ant-radio-inner {
    border-color: #f0b90b
}

.ant-radio-input:focus+.ant-radio-inner {
    box-shadow: 0 0 0 3px rgba(8,151,231,.12)
}

.ant-radio-checked:after {
    animation: antRadioEffect .36s ease-in-out;
    animation-fill-mode: both;
    border: 1px solid #f0b90b;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%
}

.ant-radio-wrapper:hover .ant-radio:after,.ant-radio:hover:after {
    visibility: visible
}

.ant-radio-inner {
    background-color: transparent;
    border: 1px solid #434343;
    border-radius: 50%;
    display: block;
    height: 16px;
    left: 0;
    position: relative;
    top: 0;
    transition: all .3s;
    width: 16px
}

.ant-radio-inner:after {
    background-color: #f0b90b;
    border-left: 0;
    border-radius: 16px;
    border-top: 0;
    content: " ";
    display: block;
    height: 16px;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: scale(0);
    transition: all .3s cubic-bezier(.78,.14,.15,.86);
    width: 16px
}

.ant-radio-input {
    bottom: 0;
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.ant-radio.ant-radio-disabled .ant-radio-inner {
    border-color: #434343
}

.ant-radio-checked .ant-radio-inner {
    border-color: #f0b90b
}

.ant-radio-checked .ant-radio-inner:after {
    opacity: 1;
    transform: scale(.5);
    transition: all .3s cubic-bezier(.78,.14,.15,.86)
}

.ant-radio-disabled {
    cursor: not-allowed
}

.ant-radio-disabled .ant-radio-inner {
    background-color: hsla(0,0%,100%,.08);
    cursor: not-allowed
}

.ant-radio-disabled .ant-radio-inner:after {
    background-color: hsla(0,0%,100%,.2)
}

.ant-radio-disabled .ant-radio-input {
    cursor: not-allowed
}

.ant-radio-disabled+span {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

span.ant-radio+* {
    padding-left: 8px;
    padding-right: 8px
}

.ant-radio-button-wrapper {
    background: transparent;
    border-color: #434343;
    border-style: solid;
    border-width: 1.02px 1px 1px 0;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    margin: 0;
    padding: 0 15px;
    position: relative;
    transition: color .3s,background .3s,border-color .3s,box-shadow .3s
}

.ant-radio-button-wrapper a {
    color: hsla(0,0%,100%,.85)
}

.ant-radio-button-wrapper>.ant-radio-button {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.ant-radio-group-large .ant-radio-button-wrapper {
    font-size: 16px;
    height: 40px;
    line-height: 38px
}

.ant-radio-group-small .ant-radio-button-wrapper {
    height: 24px;
    line-height: 22px;
    padding: 0 7px
}

.ant-radio-button-wrapper:not(:first-child):before {
    background-color: #434343;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 100%;
    left: -1px;
    padding: 1px 0;
    position: absolute;
    top: -1px;
    transition: background-color .3s;
    width: 1px
}

.ant-radio-button-wrapper:first-child {
    border-left: 1px solid #434343;
    border-radius: 6px 0 0 6px
}

.ant-radio-button-wrapper:last-child {
    border-radius: 0 6px 6px 0
}

.ant-radio-button-wrapper:first-child:last-child {
    border-radius: 6px
}

.ant-radio-button-wrapper:hover {
    color: #f0b90b;
    position: relative
}

.ant-radio-button-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(8,151,231,.12)
}

.ant-radio-button-wrapper .ant-radio-inner,.ant-radio-button-wrapper input[type=checkbox],.ant-radio-button-wrapper input[type=radio] {
    height: 0;
    opacity: 0;
    pointer-events: none;
    width: 0
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
    background: transparent;
    border-color: #f0b90b;
    color: #f0b90b;
    z-index: 1
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):before {
    background-color: #f0b90b
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
    border-color: #f0b90b
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
    border-color: #bf9003;
    color: #bf9003
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover:before {
    background-color: #bf9003
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
    border-color: #fc0;
    color: #fc0
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active:before {
    background-color: #fc0
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
    box-shadow: 0 0 0 3px rgba(8,151,231,.12)
}

.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
    background: #f0b90b;
    border-color: #f0b90b;
    color: #fff
}

.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
    background: #bf9003;
    border-color: #bf9003;
    color: #fff
}

.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
    background: #fc0;
    border-color: #fc0;
    color: #fff
}

.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
    box-shadow: 0 0 0 3px rgba(8,151,231,.12)
}

.ant-radio-button-wrapper-disabled {
    cursor: not-allowed
}

.ant-radio-button-wrapper-disabled,.ant-radio-button-wrapper-disabled:first-child,.ant-radio-button-wrapper-disabled:hover {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343;
    color: hsla(0,0%,100%,.3)
}

.ant-radio-button-wrapper-disabled:first-child {
    border-left-color: #434343
}

.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
    background-color: hsla(0,0%,100%,.2);
    border-color: #434343;
    box-shadow: none;
    color: hsla(0,0%,100%,.3)
}

@keyframes antRadioEffect {
    0% {
        opacity: .5;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(1.6)
    }
}

.ant-radio-group.ant-radio-group-rtl {
    direction: rtl
}

.ant-radio-wrapper.ant-radio-wrapper-rtl {
    direction: rtl;
    margin-left: 8px;
    margin-right: 0
}

.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl {
    border-left-width: 1px;
    border-right-width: 0
}

.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child):before {
    left: 0;
    right: -1px
}

.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #434343
}

.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
    border-right-color: #bf9003
}

.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child {
    border-radius: 6px 0 0 6px
}

.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child {
    border-right-color: #434343
}

.ant-rate {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    color: #d8bd14;
    display: inline-block;
    font-size: 14px;
    font-size: 20px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: inherit;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0
}

.ant-rate-disabled .ant-rate-star {
    cursor: default
}

.ant-rate-disabled .ant-rate-star>div:hover {
    transform: scale(1)
}

.ant-rate-star {
    color: inherit;
    cursor: pointer;
    display: inline-block;
    position: relative
}

.ant-rate-star:not(:last-child) {
    margin-right: 8px
}

.ant-rate-star>div {
    transition: all .3s,outline 0s
}

.ant-rate-star>div:hover {
    transform: scale(1.1)
}

.ant-rate-star>div:focus {
    outline: 0
}

.ant-rate-star>div:focus-visible {
    outline: 1px dashed #d8bd14;
    transform: scale(1.1)
}

.ant-rate-star-first,.ant-rate-star-second {
    color: hsla(0,0%,100%,.12);
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-rate-star-first .anticon,.ant-rate-star-second .anticon {
    vertical-align: middle
}

.ant-rate-star-first {
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 50%
}

.ant-rate-star-half .ant-rate-star-first,.ant-rate-star-half .ant-rate-star-second {
    opacity: 1
}

.ant-rate-star-full .ant-rate-star-second,.ant-rate-star-half .ant-rate-star-first {
    color: inherit
}

.ant-rate-text {
    display: inline-block;
    font-size: 14px;
    margin: 0 8px
}

.ant-rate-rtl {
    direction: rtl
}

.ant-rate-rtl .ant-rate-star:not(:last-child) {
    margin-left: 8px;
    margin-right: 0
}

.ant-rate-rtl .ant-rate-star-first {
    left: auto;
    right: 0
}

.ant-result {
    padding: 48px 32px
}

.ant-result-success .ant-result-icon>.anticon {
    color: #49aa19
}

.ant-result-error .ant-result-icon>.anticon {
    color: #a61d24
}

.ant-result-info .ant-result-icon>.anticon {
    color: #f0b90b
}

.ant-result-warning .ant-result-icon>.anticon {
    color: #d89614
}

.ant-result-image {
    height: 295px;
    margin: auto;
    width: 250px
}

.ant-result-icon {
    margin-bottom: 24px;
    text-align: center
}

.ant-result-icon>.anticon {
    font-size: 72px
}

.ant-result-title {
    color: hsla(0,0%,100%,.85);
    font-size: 24px;
    line-height: 1.8;
    text-align: center
}

.ant-result-subtitle {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    line-height: 1.6;
    text-align: center
}

.ant-result-extra {
    margin: 24px 0 0;
    text-align: center
}

.ant-result-extra>* {
    margin-right: 8px
}

.ant-result-extra>:last-child {
    margin-right: 0
}

.ant-result-content {
    background-color: hsla(0,0%,100%,.04);
    margin-top: 24px;
    padding: 24px 40px
}

.ant-result-rtl {
    direction: rtl
}

.ant-result-rtl .ant-result-extra>* {
    margin-left: 8px;
    margin-right: 0
}

.ant-result-rtl .ant-result-extra>:last-child {
    margin-left: 0
}

.segmented-disabled-item,.segmented-disabled-item:focus,.segmented-disabled-item:hover {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.segmented-item-selected {
    background-color: #333;
    border-radius: 6px;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,.05),0 1px 4px -1px rgba(0,0,0,.07),0 0 1px 0 rgba(0,0,0,.08)
}

.segmented-text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all
}

.ant-segmented {
    font-feature-settings: "tnum","tnum";
    background-color: rgba(0,0,0,.25);
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    color: hsla(0,0%,100%,.65);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 2px;
    transition: all .3s cubic-bezier(.645,.045,.355,1)
}

.ant-segmented-group {
    align-items: stretch;
    display: flex;
    justify-items: flex-start;
    position: relative;
    width: 100%
}

.ant-segmented.ant-segmented-block {
    display: flex
}

.ant-segmented.ant-segmented-block .ant-segmented-item {
    flex: 1 1;
    min-width: 0
}

.ant-segmented:not(.ant-segmented-disabled):focus,.ant-segmented:not(.ant-segmented-disabled):hover {
    background-color: rgba(0,0,0,.45)
}

.ant-segmented-item {
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: color .3s cubic-bezier(.645,.045,.355,1)
}

.ant-segmented-item-selected {
    background-color: #333;
    border-radius: 6px;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,.05),0 1px 4px -1px rgba(0,0,0,.07),0 0 1px 0 rgba(0,0,0,.08);
    color: hsla(0,0%,100%,.85)
}

.ant-segmented-item:focus,.ant-segmented-item:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-segmented-item-label {
    line-height: 28px;
    min-height: 28px;
    overflow: hidden;
    padding: 0 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all
}

.ant-segmented-item-icon+* {
    margin-left: 6px
}

.ant-segmented-item-input {
    height: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 0
}

.ant-segmented.ant-segmented-lg .ant-segmented-item-label {
    font-size: 16px;
    line-height: 36px;
    min-height: 36px;
    padding: 0 11px
}

.ant-segmented.ant-segmented-sm .ant-segmented-item-label {
    line-height: 20px;
    min-height: 20px;
    padding: 0 7px
}

.ant-segmented-item-disabled,.ant-segmented-item-disabled:focus,.ant-segmented-item-disabled:hover {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-segmented-thumb {
    background-color: #333;
    border-radius: 6px;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,.05),0 1px 4px -1px rgba(0,0,0,.07),0 0 1px 0 rgba(0,0,0,.08);
    height: 100%;
    left: 0;
    padding: 4px 0;
    position: absolute;
    top: 0;
    width: 0
}

.ant-segmented-thumb-motion-appear-active {
    transition: transform .3s cubic-bezier(.645,.045,.355,1),width .3s cubic-bezier(.645,.045,.355,1);
    will-change: transform,width
}

.ant-segmented.ant-segmented-rtl {
    direction: rtl
}

.ant-segmented.ant-segmented-rtl .ant-segmented-item-icon {
    margin-left: 6px;
    margin-right: 0
}

.ant-select-single .ant-select-selector {
    display: flex
}

.ant-select-single .ant-select-selector .ant-select-selection-search {
    bottom: 0;
    left: 11px;
    position: absolute;
    right: 11px;
    top: 0
}

.ant-select-single .ant-select-selector .ant-select-selection-search-input {
    width: 100%
}

.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
    line-height: 30px;
    padding: 0;
    transition: all .3s
}

.ant-select-single .ant-select-selector .ant-select-selection-item {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
    pointer-events: none;
    transition: none
}

.ant-select-single .ant-select-selector .ant-select-selection-item:after,.ant-select-single .ant-select-selector .ant-select-selection-placeholder:after,.ant-select-single .ant-select-selector:after {
    content: "\a0";
    display: inline-block;
    visibility: hidden;
    width: 0
}

.ant-select-single.ant-select-show-arrow .ant-select-selection-search {
    right: 25px
}

.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder {
    padding-right: 18px
}

.ant-select-single.ant-select-open .ant-select-selection-item {
    color: hsla(0,0%,100%,.3)
}

.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
    height: 32px;
    padding: 0 11px;
    width: 100%
}

.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
    height: 30px
}

.ant-select-single:not(.ant-select-customize-input) .ant-select-selector:after {
    line-height: 30px
}

.ant-select-single.ant-select-customize-input .ant-select-selector:after {
    display: none
}

.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search {
    position: static;
    width: 100%
}

.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder {
    left: 0;
    padding: 0 11px;
    position: absolute;
    right: 0
}

.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder:after {
    display: none
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector {
    height: 40px
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector:after {
    line-height: 38px
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
    height: 38px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector {
    height: 24px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector:after {
    line-height: 22px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
    height: 22px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search {
    left: 7px;
    right: 7px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector {
    padding: 0 7px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search {
    right: 28px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder {
    padding-right: 21px
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector {
    padding: 0 11px
}

.ant-select-selection-overflow {
    display: flex;
    flex: auto;
    flex-wrap: wrap;
    max-width: 100%;
    position: relative
}

.ant-select-selection-overflow-item {
    align-self: center;
    flex: none;
    max-width: 100%
}

.ant-select-multiple .ant-select-selector {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding: 1px 4px
}

.ant-select-show-search.ant-select-multiple .ant-select-selector {
    cursor: text
}

.ant-select-disabled.ant-select-multiple .ant-select-selector {
    background: #141414;
    cursor: not-allowed
}

.ant-select-multiple .ant-select-selector:after {
    content: "\a0";
    display: inline-block;
    line-height: 24px;
    margin: 2px 0;
    width: 0
}

.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-multiple.ant-select-show-arrow .ant-select-selector {
    padding-right: 24px
}

.ant-select-multiple .ant-select-selection-item {
    background: hsla(0,0%,100%,.08);
    border: 1px solid #303030;
    border-radius: 6px;
    box-sizing: border-box;
    cursor: default;
    display: flex;
    flex: none;
    height: 24px;
    line-height: 22px;
    margin-bottom: 2px;
    margin-top: 2px;
    margin-inline-end:4px;max-width: 100%;
    padding-inline-end:4px;padding-inline-start:8px;position: relative;
    transition: font-size .3s,line-height .3s,height .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-select-disabled.ant-select-multiple .ant-select-selection-item {
    border-color: #1f1f1f;
    color: #595959;
    cursor: not-allowed
}

.ant-select-multiple .ant-select-selection-item-content {
    display: inline-block;
    margin-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre
}

.ant-select-multiple .ant-select-selection-item-remove {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    display: inline-block;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 0;
    line-height: inherit;
    text-align: center;
    text-rendering: optimizelegibility;
    text-transform: none;
    vertical-align: -.125em
}

.ant-select-multiple .ant-select-selection-item-remove>* {
    line-height: 1
}

.ant-select-multiple .ant-select-selection-item-remove svg {
    display: inline-block
}

.ant-select-multiple .ant-select-selection-item-remove:before {
    display: none
}

.ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon {
    display: block
}

.ant-select-multiple .ant-select-selection-item-remove>.anticon {
    vertical-align: middle
}

.ant-select-multiple .ant-select-selection-item-remove:hover {
    color: hsla(0,0%,100%,.75)
}

.ant-select-multiple .ant-select-selection-overflow-item+.ant-select-selection-overflow-item .ant-select-selection-search {
    margin-inline-start:0}

.ant-select-multiple .ant-select-selection-search {
    margin-inline-start:7px;max-width: 100%;
    position: relative
}

.ant-select-multiple .ant-select-selection-search-input,.ant-select-multiple .ant-select-selection-search-mirror {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    height: 24px;
    line-height: 24px;
    transition: all .3s
}

.ant-select-multiple .ant-select-selection-search-input {
    min-width: 4.1px;
    width: 100%
}

.ant-select-multiple .ant-select-selection-search-mirror {
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    white-space: pre;
    z-index: 999
}

.ant-select-multiple .ant-select-selection-placeholder {
    left: 11px;
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s
}

.ant-select-multiple.ant-select-lg .ant-select-selector:after {
    line-height: 32px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-item {
    line-height: 30px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-search {
    height: 32px;
    line-height: 32px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-search-input,.ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror {
    height: 32px;
    line-height: 30px
}

.ant-select-multiple.ant-select-sm .ant-select-selector:after {
    line-height: 16px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-item {
    height: 16px;
    line-height: 14px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-search {
    height: 16px;
    line-height: 16px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-search-input,.ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror {
    height: 16px;
    line-height: 14px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
    left: 7px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-search {
    margin-inline-start:3px}

.ant-select-multiple.ant-select-lg .ant-select-selection-item {
    height: 32px;
    line-height: 32px
}

.ant-select-disabled .ant-select-selection-item-remove {
    display: none
}

.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input) .ant-select-selector {
    background-color: transparent;
    border-color: #a61d24!important
}

.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector,.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector {
    border-color: #a61d24;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(166,29,36,.2);
    outline: 0
}

.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input) .ant-select-selector {
    background-color: transparent;
    border-color: #d89614!important
}

.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector,.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector {
    border-color: #d89614;
    border-right-width: 1px;
    box-shadow: 0 0 0 2px rgba(216,150,20,.2);
    outline: 0
}

.ant-select-status-error.ant-select-has-feedback .ant-select-clear,.ant-select-status-success.ant-select-has-feedback .ant-select-clear,.ant-select-status-validating.ant-select-has-feedback .ant-select-clear,.ant-select-status-warning.ant-select-has-feedback .ant-select-clear {
    right: 32px
}

.ant-select-status-error.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-success.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-validating.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-warning.ant-select-has-feedback .ant-select-selection-selected-value {
    padding-right: 42px
}

.ant-select {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector {
    background-color: transparent;
    border: 1px solid #434343;
    border-radius: 6px;
    position: relative;
    transition: all .3s cubic-bezier(.645,.045,.355,1)
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
    cursor: pointer
}

.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector {
    cursor: text
}

.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
    cursor: auto
}

.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
    background: hsla(0,0%,100%,.08);
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
    background: #141414
}

.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
    cursor: not-allowed
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    margin: 0;
    outline: none;
    padding: 0
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none
}

.ant-select:not(.ant-select-disabled):hover .ant-select-selector {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-select:not(.ant-select-disabled):hover .ant-select-selector {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-select-selection-item {
    flex: 1 1;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media (-ms-high-contrast:none) {
    .ant-select-selection-item,.ant-select-selection-item ::-ms-backdrop {
        flex: auto
    }
}

.ant-select-selection-placeholder {
    color: hsla(0,0%,100%,.3);
    flex: 1 1;
    overflow: hidden;
    pointer-events: none;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media (-ms-high-contrast:none) {
    .ant-select-selection-placeholder,.ant-select-selection-placeholder ::-ms-backdrop {
        flex: auto
    }
}

.ant-select-arrow {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    align-items: center;
    color: inherit;
    color: hsla(0,0%,100%,.3);
    display: inline-block;
    display: flex;
    font-size: 12px;
    font-style: normal;
    height: 12px;
    line-height: 0;
    line-height: 1;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 11px;
    text-align: center;
    text-rendering: optimizelegibility;
    text-transform: none;
    top: 50%;
    vertical-align: -.125em
}

.ant-select-arrow>* {
    line-height: 1
}

.ant-select-arrow svg {
    display: inline-block
}

.ant-select-arrow:before {
    display: none
}

.ant-select-arrow .ant-select-arrow-icon {
    display: block
}

.ant-select-arrow .anticon {
    transition: transform .3s;
    vertical-align: top
}

.ant-select-arrow .anticon>svg {
    vertical-align: top
}

.ant-select-arrow .anticon:not(.ant-select-suffix) {
    pointer-events: auto
}

.ant-select-disabled .ant-select-arrow {
    cursor: not-allowed
}

.ant-select-arrow>:not(:last-child) {
    margin-inline-end:8px}

.ant-select-clear {
    background: #141414;
    color: hsla(0,0%,100%,.3);
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    height: 12px;
    line-height: 1;
    margin-top: -6px;
    opacity: 0;
    position: absolute;
    right: 11px;
    text-align: center;
    text-rendering: auto;
    text-transform: none;
    top: 50%;
    transition: color .3s ease,opacity .15s ease;
    width: 12px;
    z-index: 1
}

.ant-select-clear:before {
    display: block
}

.ant-select-clear:hover {
    color: hsla(0,0%,100%,.45)
}

.ant-select:hover .ant-select-clear {
    opacity: 1
}

.ant-select-dropdown {
    font-feature-settings: "tnum","tnum",;
    background-color: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    font-variant: normal;
    left: -9999px;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    outline: none;
    overflow: hidden;
    padding: 4px 0;
    position: absolute;
    top: -9999px;
    z-index: 1050
}

.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft {
    animation-name: antSlideUpIn
}

.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft {
    animation-name: antSlideDownIn
}

.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
    animation-name: antSlideUpOut
}

.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft {
    animation-name: antSlideDownOut
}

.ant-select-dropdown-hidden {
    display: none
}

.ant-select-dropdown-empty {
    color: hsla(0,0%,100%,.3)
}

.ant-select-item-empty {
    color: hsla(0,0%,100%,.85);
    color: hsla(0,0%,100%,.3)
}

.ant-select-item,.ant-select-item-empty {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    min-height: 32px;
    padding: 5px 12px;
    position: relative
}

.ant-select-item {
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    transition: background .3s ease
}

.ant-select-item-group {
    color: hsla(0,0%,100%,.45);
    cursor: default;
    font-size: 12px
}

.ant-select-item-option {
    display: flex
}

.ant-select-item-option-content {
    flex: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-select-item-option-state {
    flex: none
}

.ant-select-item-option-active:not(.ant-select-item-option-disabled) {
    background-color: hsla(0,0%,100%,.08)
}

.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
    background-color: #111e28;
    color: hsla(0,0%,100%,.85);
    font-weight: 600
}

.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state {
    color: #f0b90b
}

.ant-select-item-option-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-select-item-option-disabled.ant-select-item-option-selected {
    background-color: #141414
}

.ant-select-item-option-grouped {
    padding-left: 24px
}

.ant-select-lg {
    font-size: 16px
}

.ant-select-borderless .ant-select-selector {
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important
}

.ant-select.ant-select-in-form-item {
    width: 100%
}

.ant-select-rtl {
    direction: rtl
}

.ant-select-rtl .ant-select-arrow,.ant-select-rtl .ant-select-clear {
    left: 11px;
    right: auto
}

.ant-select-dropdown-rtl {
    direction: rtl
}

.ant-select-dropdown-rtl .ant-select-item-option-grouped {
    padding-left: 12px;
    padding-right: 24px
}

.ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector {
    padding-left: 24px;
    padding-right: 4px
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-item {
    text-align: right
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-item-content {
    margin-left: 4px;
    margin-right: 0;
    text-align: right
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror {
    left: auto;
    right: 0
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder {
    left: auto;
    right: 11px
}

.ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
    right: 7px
}

.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
    left: 9px;
    right: 0;
    text-align: right
}

.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search {
    left: 25px;
    right: 11px
}

.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder {
    padding-left: 18px;
    padding-right: 0
}

.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search {
    right: 6px
}

.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder {
    padding-left: 21px;
    padding-right: 0
}

.ant-skeleton {
    display: table;
    width: 100%
}

.ant-skeleton-header {
    display: table-cell;
    padding-right: 16px;
    vertical-align: top
}

.ant-skeleton-header .ant-skeleton-avatar {
    background: hsla(0,0%,75%,.2);
    display: inline-block;
    height: 32px;
    line-height: 32px;
    vertical-align: top;
    width: 32px
}

.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {
    border-radius: 50%
}

.ant-skeleton-header .ant-skeleton-avatar-lg {
    height: 40px;
    line-height: 40px;
    width: 40px
}

.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
    border-radius: 50%
}

.ant-skeleton-header .ant-skeleton-avatar-sm {
    height: 24px;
    line-height: 24px;
    width: 24px
}

.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
    border-radius: 50%
}

.ant-skeleton-content {
    display: table-cell;
    vertical-align: top;
    width: 100%
}

.ant-skeleton-content .ant-skeleton-title {
    background: hsla(0,0%,75%,.2);
    border-radius: 6px;
    height: 16px;
    width: 100%
}

.ant-skeleton-content .ant-skeleton-title+.ant-skeleton-paragraph {
    margin-top: 24px
}

.ant-skeleton-content .ant-skeleton-paragraph {
    padding: 0
}

.ant-skeleton-content .ant-skeleton-paragraph>li {
    background: hsla(0,0%,75%,.2);
    border-radius: 6px;
    height: 16px;
    list-style: none;
    width: 100%
}

.ant-skeleton-content .ant-skeleton-paragraph>li:last-child:not(:first-child):not(:nth-child(2)) {
    width: 61%
}

.ant-skeleton-content .ant-skeleton-paragraph>li+li {
    margin-top: 16px
}

.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title {
    margin-top: 12px
}

.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title+.ant-skeleton-paragraph {
    margin-top: 28px
}

.ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph>li,.ant-skeleton-round .ant-skeleton-content .ant-skeleton-title {
    border-radius: 100px
}

.ant-skeleton-active .ant-skeleton-avatar,.ant-skeleton-active .ant-skeleton-button,.ant-skeleton-active .ant-skeleton-image,.ant-skeleton-active .ant-skeleton-input,.ant-skeleton-active .ant-skeleton-paragraph>li,.ant-skeleton-active .ant-skeleton-title {
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 0
}

.ant-skeleton-active .ant-skeleton-avatar:after,.ant-skeleton-active .ant-skeleton-button:after,.ant-skeleton-active .ant-skeleton-image:after,.ant-skeleton-active .ant-skeleton-input:after,.ant-skeleton-active .ant-skeleton-paragraph>li:after,.ant-skeleton-active .ant-skeleton-title:after {
    animation: ant-skeleton-loading 1.4s ease infinite;
    background: linear-gradient(90deg,hsla(0,0%,75%,.2) 25%,hsla(0,0%,100%,.16) 37%,hsla(0,0%,75%,.2) 63%);
    bottom: 0;
    content: "";
    left: -150%;
    position: absolute;
    right: -150%;
    top: 0
}

.ant-skeleton.ant-skeleton-block,.ant-skeleton.ant-skeleton-block .ant-skeleton-button,.ant-skeleton.ant-skeleton-block .ant-skeleton-input {
    width: 100%
}

.ant-skeleton-element {
    display: inline-block;
    width: auto
}

.ant-skeleton-element .ant-skeleton-button {
    background: hsla(0,0%,75%,.2);
    border-radius: 6px;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    min-width: 64px;
    vertical-align: top;
    width: 64px
}

.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-square {
    min-width: 32px;
    width: 32px
}

.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
    border-radius: 50%;
    min-width: 32px;
    width: 32px
}

.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {
    border-radius: 32px
}

.ant-skeleton-element .ant-skeleton-button-lg {
    height: 40px;
    line-height: 40px;
    min-width: 80px;
    width: 80px
}

.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-square {
    min-width: 40px;
    width: 40px
}

.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
    border-radius: 50%;
    min-width: 40px;
    width: 40px
}

.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round {
    border-radius: 40px
}

.ant-skeleton-element .ant-skeleton-button-sm {
    height: 24px;
    line-height: 24px;
    min-width: 48px;
    width: 48px
}

.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-square {
    min-width: 24px;
    width: 24px
}

.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
    border-radius: 50%;
    min-width: 24px;
    width: 24px
}

.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round {
    border-radius: 24px
}

.ant-skeleton-element .ant-skeleton-avatar {
    background: hsla(0,0%,75%,.2);
    display: inline-block;
    height: 32px;
    line-height: 32px;
    vertical-align: top;
    width: 32px
}

.ant-skeleton-element .ant-skeleton-avatar.ant-skeleton-avatar-circle {
    border-radius: 50%
}

.ant-skeleton-element .ant-skeleton-avatar-lg {
    height: 40px;
    line-height: 40px;
    width: 40px
}

.ant-skeleton-element .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
    border-radius: 50%
}

.ant-skeleton-element .ant-skeleton-avatar-sm {
    height: 24px;
    line-height: 24px;
    width: 24px
}

.ant-skeleton-element .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
    border-radius: 50%
}

.ant-skeleton-element .ant-skeleton-input {
    background: hsla(0,0%,75%,.2);
    display: inline-block;
    height: 32px;
    line-height: 32px;
    min-width: 160px;
    vertical-align: top;
    width: 160px
}

.ant-skeleton-element .ant-skeleton-input-lg {
    height: 40px;
    line-height: 40px;
    min-width: 200px;
    width: 200px
}

.ant-skeleton-element .ant-skeleton-input-sm {
    height: 24px;
    line-height: 24px;
    min-width: 120px;
    width: 120px
}

.ant-skeleton-element .ant-skeleton-image {
    align-items: center;
    background: hsla(0,0%,75%,.2);
    display: flex;
    height: 96px;
    justify-content: center;
    line-height: 96px;
    vertical-align: top;
    width: 96px
}

.ant-skeleton-element .ant-skeleton-image.ant-skeleton-image-circle {
    border-radius: 50%
}

.ant-skeleton-element .ant-skeleton-image-path {
    fill: #bfbfbf
}

.ant-skeleton-element .ant-skeleton-image-svg {
    height: 48px;
    line-height: 48px;
    max-height: 192px;
    max-width: 192px;
    width: 48px
}

.ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle {
    border-radius: 50%
}

@keyframes ant-skeleton-loading {
    0% {
        transform: translateX(-37.5%)
    }

    to {
        transform: translateX(37.5%)
    }
}

.ant-skeleton-rtl {
    direction: rtl
}

.ant-skeleton-rtl .ant-skeleton-header {
    padding-left: 16px;
    padding-right: 0
}

.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar,.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph>li,.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title {
    animation-name: ant-skeleton-loading-rtl
}

@keyframes ant-skeleton-loading-rtl {
    0% {
        background-position: 0 50%
    }

    to {
        background-position: 100% 50%
    }
}

.ant-slider {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    height: 12px;
    line-height: 1.5715;
    list-style: none;
    margin: 10px 6px;
    padding: 4px 0;
    position: relative;
    touch-action: none
}

.ant-slider-vertical {
    height: 100%;
    margin: 6px 10px;
    padding: 0 4px;
    width: 12px
}

.ant-slider-vertical .ant-slider-rail {
    height: 100%;
    width: 4px
}

.ant-slider-vertical .ant-slider-track {
    width: 4px
}

.ant-slider-vertical .ant-slider-handle {
    margin-left: -5px;
    margin-top: -6px
}

.ant-slider-vertical .ant-slider-mark {
    height: 100%;
    left: 12px;
    top: 0;
    width: 18px
}

.ant-slider-vertical .ant-slider-mark-text {
    left: 4px;
    white-space: nowrap
}

.ant-slider-vertical .ant-slider-step {
    height: 100%;
    width: 4px
}

.ant-slider-vertical .ant-slider-dot {
    margin-left: -2px;
    top: auto
}

.ant-slider-tooltip .ant-tooltip-inner {
    min-width: 0;
    min-width: auto
}

.ant-slider-rtl.ant-slider-vertical .ant-slider-handle {
    margin-left: 0;
    margin-right: -5px
}

.ant-slider-rtl.ant-slider-vertical .ant-slider-mark {
    left: auto;
    right: 12px
}

.ant-slider-rtl.ant-slider-vertical .ant-slider-mark-text {
    left: auto;
    right: 4px
}

.ant-slider-rtl.ant-slider-vertical .ant-slider-dot {
    left: auto;
    right: 2px
}

.ant-slider-with-marks {
    margin-bottom: 28px
}

.ant-slider-rail {
    background-color: #262626;
    width: 100%
}

.ant-slider-rail,.ant-slider-track {
    border-radius: 6px;
    height: 4px;
    position: absolute;
    transition: background-color .3s
}

.ant-slider-track {
    background-color: #103b53
}

.ant-slider-handle {
    background-color: #141414;
    border: 2px solid #103b53;
    border-radius: 50%;
    box-shadow: 0;
    cursor: pointer;
    height: 14px;
    margin-top: -5px;
    position: absolute;
    transition: border-color .3s,box-shadow .6s,transform .3s cubic-bezier(.18,.89,.32,1.28);
    width: 14px
}

.ant-slider-handle-dragging {
    z-index: 1
}

.ant-slider-handle:focus {
    border-color: #39acec;
    box-shadow: 0 0 0 5px rgba(8,151,231,.12);
    outline: none
}

.ant-slider-handle.ant-tooltip-open {
    border-color: #f0b90b
}

.ant-slider-handle:after {
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px
}

.ant-slider:hover .ant-slider-rail {
    background-color: #434343
}

.ant-slider:hover .ant-slider-track {
    background-color: #0f4f73
}

.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
    border-color: #0f4f73
}

.ant-slider-mark {
    font-size: 14px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 100%
}

.ant-slider-mark-text {
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    display: inline-block;
    position: absolute;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    word-break: keep-all
}

.ant-slider-mark-text-active {
    color: hsla(0,0%,100%,.85)
}

.ant-slider-step {
    background: transparent;
    height: 4px;
    pointer-events: none;
    position: absolute;
    width: 100%
}

.ant-slider-dot {
    background-color: #141414;
    border: 2px solid #303030;
    border-radius: 50%;
    cursor: pointer;
    height: 8px;
    position: absolute;
    top: -2px;
    width: 8px
}

.ant-slider-dot-active {
    border-color: #0f4f73
}

.ant-slider-disabled {
    cursor: not-allowed
}

.ant-slider-disabled .ant-slider-rail {
    background-color: #262626!important
}

.ant-slider-disabled .ant-slider-track {
    background-color: hsla(0,0%,100%,.3)!important
}

.ant-slider-disabled .ant-slider-dot,.ant-slider-disabled .ant-slider-handle {
    background-color: #141414;
    border-color: hsla(0,0%,100%,.3)!important;
    box-shadow: none;
    cursor: not-allowed
}

.ant-slider-disabled .ant-slider-dot,.ant-slider-disabled .ant-slider-mark-text {
    cursor: not-allowed!important
}

.ant-slider-rtl {
    direction: rtl
}

.ant-slider-rtl .ant-slider-mark {
    left: auto;
    right: 0
}

.ant-space {
    display: inline-flex
}

.ant-space-vertical {
    flex-direction: column
}

.ant-space-align-center {
    align-items: center
}

.ant-space-align-start {
    align-items: flex-start
}

.ant-space-align-end {
    align-items: flex-end
}

.ant-space-align-baseline {
    align-items: baseline
}

.ant-space-item:empty {
    display: none
}

.ant-space-rtl {
    direction: rtl
}

.ant-spin {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    color: #f0b90b;
    display: none;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    transition: transform .3s cubic-bezier(.78,.14,.15,.86);
    vertical-align: middle
}

.ant-spin-spinning {
    display: inline-block;
    opacity: 1;
    position: static
}

.ant-spin-nested-loading {
    position: relative
}

.ant-spin-nested-loading>div>.ant-spin {
    display: block;
    height: 100%;
    left: 0;
    max-height: 400px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 4
}

.ant-spin-nested-loading>div>.ant-spin .ant-spin-dot {
    left: 50%;
    margin: -10px;
    position: absolute;
    top: 50%
}

.ant-spin-nested-loading>div>.ant-spin .ant-spin-text {
    padding-top: 5px;
    position: absolute;
    text-shadow: 0 1px 2px #141414;
    top: 50%;
    width: 100%
}

.ant-spin-nested-loading>div>.ant-spin.ant-spin-show-text .ant-spin-dot {
    margin-top: -20px
}

.ant-spin-nested-loading>div>.ant-spin-sm .ant-spin-dot {
    margin: -7px
}

.ant-spin-nested-loading>div>.ant-spin-sm .ant-spin-text {
    padding-top: 2px
}

.ant-spin-nested-loading>div>.ant-spin-sm.ant-spin-show-text .ant-spin-dot {
    margin-top: -17px
}

.ant-spin-nested-loading>div>.ant-spin-lg .ant-spin-dot {
    margin: -16px
}

.ant-spin-nested-loading>div>.ant-spin-lg .ant-spin-text {
    padding-top: 11px
}

.ant-spin-nested-loading>div>.ant-spin-lg.ant-spin-show-text .ant-spin-dot {
    margin-top: -26px
}

.ant-spin-container {
    position: relative;
    transition: opacity .3s
}

.ant-spin-container:after {
    background: #141414;
    bottom: 0;
    content: "";
    display: none\9;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s;
    width: 100%;
    z-index: 10
}

.ant-spin-blur {
    clear: both;
    opacity: .5;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-spin-blur:after {
    opacity: .4;
    pointer-events: auto
}

.ant-spin-tip {
    color: hsla(0,0%,100%,.45)
}

.ant-spin-dot {
    display: inline-block;
    font-size: 20px;
    height: 1em;
    position: relative;
    width: 1em
}

.ant-spin-dot-item {
    animation: antSpinMove 1s linear infinite alternate;
    background-color: #f0b90b;
    border-radius: 100%;
    display: block;
    height: 9px;
    opacity: .3;
    position: absolute;
    transform: scale(.75);
    transform-origin: 50% 50%;
    width: 9px
}

.ant-spin-dot-item:first-child {
    left: 0;
    top: 0
}

.ant-spin-dot-item:nth-child(2) {
    animation-delay: .4s;
    right: 0;
    top: 0
}

.ant-spin-dot-item:nth-child(3) {
    animation-delay: .8s;
    bottom: 0;
    right: 0
}

.ant-spin-dot-item:nth-child(4) {
    animation-delay: 1.2s;
    bottom: 0;
    left: 0
}

.ant-spin-dot-spin {
    animation: antRotate 1.2s linear infinite;
    transform: rotate(0deg)
}

.ant-spin-sm .ant-spin-dot {
    font-size: 14px
}

.ant-spin-sm .ant-spin-dot i {
    height: 6px;
    width: 6px
}

.ant-spin-lg .ant-spin-dot {
    font-size: 32px
}

.ant-spin-lg .ant-spin-dot i {
    height: 14px;
    width: 14px
}

.ant-spin.ant-spin-show-text .ant-spin-text {
    display: block
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .ant-spin-blur {
        background: #141414;
        opacity: .5
    }
}

@keyframes antSpinMove {
    to {
        opacity: 1
    }
}

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

.ant-spin-rtl {
    direction: rtl
}

.ant-spin-rtl .ant-spin-dot-spin {
    animation-name: antRotateRtl;
    transform: rotate(-45deg)
}

@keyframes antRotateRtl {
    to {
        transform: rotate(-405deg)
    }
}

.ant-statistic {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-statistic-title {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    margin-bottom: 4px
}

.ant-statistic-skeleton {
    padding-top: 16px
}

.ant-statistic-content {
    color: hsla(0,0%,100%,.85);
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 24px
}

.ant-statistic-content-value {
    direction: ltr;
    display: inline-block
}

.ant-statistic-content-prefix,.ant-statistic-content-suffix {
    display: inline-block
}

.ant-statistic-content-prefix {
    margin-right: 4px
}

.ant-statistic-content-suffix {
    margin-left: 4px
}

.ant-statistic-rtl {
    direction: rtl
}

.ant-statistic-rtl .ant-statistic-content-prefix {
    margin-left: 4px;
    margin-right: 0
}

.ant-statistic-rtl .ant-statistic-content-suffix {
    margin-left: 0;
    margin-right: 4px
}

.ant-steps {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: flex;
    font-size: 14px;
    font-size: 0;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    text-align: initial;
    width: 100%
}

.ant-steps-item {
    display: inline-block;
    flex: 1 1;
    overflow: hidden;
    position: relative;
    vertical-align: top
}

.ant-steps-item-container {
    outline: none
}

.ant-steps-item:last-child {
    flex: none
}

.ant-steps-item:last-child>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after,.ant-steps-item:last-child>.ant-steps-item-container>.ant-steps-item-tail {
    display: none
}

.ant-steps-item-content,.ant-steps-item-icon {
    display: inline-block;
    vertical-align: top
}

.ant-steps-item-icon {
    border: 1px solid hsla(0,0%,100%,.3);
    border-radius: 32px;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    margin: 0 8px 0 0;
    text-align: center;
    transition: background-color .3s,border-color .3s;
    width: 32px
}

.ant-steps-item-icon .ant-steps-icon {
    color: #f0b90b;
    line-height: 1;
    position: relative;
    top: -.5px
}

.ant-steps-item-tail {
    left: 0;
    padding: 0 10px;
    position: absolute;
    top: 12px;
    width: 100%
}

.ant-steps-item-tail:after {
    background: #303030;
    border-radius: 1px;
    content: "";
    display: inline-block;
    height: 1px;
    transition: background .3s;
    width: 100%
}

.ant-steps-item-title {
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 16px;
    line-height: 32px;
    padding-right: 16px;
    position: relative
}

.ant-steps-item-title:after {
    background: #303030;
    content: "";
    display: block;
    height: 1px;
    left: 100%;
    position: absolute;
    top: 16px;
    width: 9999px
}

.ant-steps-item-subtitle {
    display: inline;
    font-weight: 400;
    margin-left: 8px
}

.ant-steps-item-description,.ant-steps-item-subtitle {
    color: hsla(0,0%,100%,.45);
    font-size: 14px
}

.ant-steps-item-wait .ant-steps-item-icon {
    background-color: transparent;
    border-color: hsla(0,0%,100%,.3)
}

.ant-steps-item-wait .ant-steps-item-icon>.ant-steps-icon {
    color: hsla(0,0%,100%,.3)
}

.ant-steps-item-wait .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot {
    background: hsla(0,0%,100%,.3)
}

.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title {
    color: hsla(0,0%,100%,.45)
}

.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after {
    background-color: #303030
}

.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description {
    color: hsla(0,0%,100%,.45)
}

.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-tail:after {
    background-color: #303030
}

.ant-steps-item-process .ant-steps-item-icon {
    background-color: transparent;
    border-color: #f0b90b
}

.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon {
    color: #f0b90b
}

.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot {
    background: #f0b90b
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title {
    color: hsla(0,0%,100%,.85)
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after {
    background-color: #303030
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description {
    color: hsla(0,0%,100%,.85)
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-tail:after {
    background-color: #303030
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-icon {
    background: #f0b90b
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-icon .ant-steps-icon {
    color: #fff
}

.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-title {
    font-weight: 500
}

.ant-steps-item-finish .ant-steps-item-icon {
    background-color: transparent;
    border-color: #f0b90b
}

.ant-steps-item-finish .ant-steps-item-icon>.ant-steps-icon {
    color: #f0b90b
}

.ant-steps-item-finish .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot {
    background: #f0b90b
}

.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title {
    color: hsla(0,0%,100%,.85)
}

.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after {
    background-color: #f0b90b
}

.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description {
    color: hsla(0,0%,100%,.45)
}

.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-tail:after {
    background-color: #f0b90b
}

.ant-steps-item-error .ant-steps-item-icon {
    background-color: transparent;
    border-color: #a61d24
}

.ant-steps-item-error .ant-steps-item-icon>.ant-steps-icon {
    color: #a61d24
}

.ant-steps-item-error .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot {
    background: #a61d24
}

.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title {
    color: #a61d24
}

.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after {
    background-color: #303030
}

.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description {
    color: #a61d24
}

.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-tail:after {
    background-color: #303030
}

.ant-steps-item.ant-steps-next-error .ant-steps-item-title:after {
    background: #a61d24
}

.ant-steps-item-disabled {
    cursor: not-allowed
}

.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] {
    cursor: pointer
}

.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-description,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-icon .ant-steps-icon,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-subtitle,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-title {
    transition: color .3s
}

.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]:hover .ant-steps-item-description,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]:hover .ant-steps-item-subtitle,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]:hover .ant-steps-item-title {
    color: #f0b90b
}

.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process)>.ant-steps-item-container[role=button]:hover .ant-steps-item-icon {
    border-color: #f0b90b
}

.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process)>.ant-steps-item-container[role=button]:hover .ant-steps-item-icon .ant-steps-icon {
    color: #f0b90b
}

.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
    padding-left: 16px;
    white-space: nowrap
}

.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
    padding-left: 0
}

.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
    padding-right: 0
}

.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail {
    display: none
}

.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description {
    max-width: 140px;
    white-space: normal
}

.ant-steps-item-custom>.ant-steps-item-container>.ant-steps-item-icon {
    background: none;
    border: 0;
    height: auto
}

.ant-steps-item-custom>.ant-steps-item-container>.ant-steps-item-icon>.ant-steps-icon {
    font-size: 24px;
    height: 32px;
    left: .5px;
    line-height: 32px;
    top: 0;
    width: 32px
}

.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon {
    color: #f0b90b
}

.ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon {
    background: none;
    width: auto
}

.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
    padding-left: 12px
}

.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
    padding-left: 0
}

.ant-steps-small .ant-steps-item-icon {
    border-radius: 24px;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    margin: 0 8px 0 0;
    text-align: center;
    width: 24px
}

.ant-steps-small .ant-steps-item-title {
    font-size: 14px;
    line-height: 24px;
    padding-right: 12px
}

.ant-steps-small .ant-steps-item-title:after {
    top: 12px
}

.ant-steps-small .ant-steps-item-description {
    color: hsla(0,0%,100%,.45);
    font-size: 14px
}

.ant-steps-small .ant-steps-item-tail {
    top: 8px
}

.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon {
    background: none;
    border: 0;
    border-radius: 0;
    height: inherit;
    line-height: inherit;
    width: inherit
}

.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon>.ant-steps-icon {
    font-size: 24px;
    line-height: 24px;
    transform: none
}

.ant-steps-vertical {
    display: flex;
    flex-direction: column
}

.ant-steps-vertical>.ant-steps-item {
    display: block;
    flex: 1 0 auto;
    overflow: visible;
    padding-left: 0
}

.ant-steps-vertical>.ant-steps-item .ant-steps-item-icon {
    float: left;
    margin-right: 16px
}

.ant-steps-vertical>.ant-steps-item .ant-steps-item-content {
    display: block;
    min-height: 48px;
    overflow: hidden
}

.ant-steps-vertical>.ant-steps-item .ant-steps-item-title {
    line-height: 32px
}

.ant-steps-vertical>.ant-steps-item .ant-steps-item-description {
    padding-bottom: 12px
}

.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail {
    height: 100%;
    left: 16px;
    padding: 38px 0 6px;
    position: absolute;
    top: 0;
    width: 1px
}

.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail:after {
    height: 100%;
    width: 1px
}

.ant-steps-vertical>.ant-steps-item:not(:last-child)>.ant-steps-item-container>.ant-steps-item-tail {
    display: block
}

.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after {
    display: none
}

.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
    left: 12px;
    padding: 30px 0 6px;
    position: absolute;
    top: 0
}

.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
    line-height: 24px
}

.ant-steps-label-vertical .ant-steps-item {
    overflow: visible
}

.ant-steps-label-vertical .ant-steps-item-tail {
    margin-left: 58px;
    padding: 3.5px 24px
}

.ant-steps-label-vertical .ant-steps-item-content {
    display: block;
    margin-top: 8px;
    text-align: center;
    width: 116px
}

.ant-steps-label-vertical .ant-steps-item-icon {
    display: inline-block;
    margin-left: 42px
}

.ant-steps-label-vertical .ant-steps-item-title {
    padding-left: 0;
    padding-right: 0
}

.ant-steps-label-vertical .ant-steps-item-title:after {
    display: none
}

.ant-steps-label-vertical .ant-steps-item-subtitle {
    display: block;
    line-height: 1.5715;
    margin-bottom: 4px;
    margin-left: 0
}

.ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon {
    margin-left: 46px
}

.ant-steps-dot .ant-steps-item-title,.ant-steps-dot.ant-steps-small .ant-steps-item-title {
    line-height: 1.5715
}

.ant-steps-dot .ant-steps-item-tail,.ant-steps-dot.ant-steps-small .ant-steps-item-tail {
    margin: 0 0 0 70px;
    padding: 0;
    top: 2px;
    width: 100%
}

.ant-steps-dot .ant-steps-item-tail:after,.ant-steps-dot.ant-steps-small .ant-steps-item-tail:after {
    height: 3px;
    margin-left: 12px;
    width: calc(100% - 20px)
}

.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot {
    left: 2px
}

.ant-steps-dot .ant-steps-item-icon,.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
    background: transparent;
    border: 0;
    height: 8px;
    line-height: 8px;
    margin-left: 67px;
    padding-right: 0;
    width: 8px
}

.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
    border-radius: 100px;
    float: left;
    height: 100%;
    position: relative;
    transition: all .3s;
    width: 100%
}

.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot:after,.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot:after {
    background: rgba(0,0,0,.001);
    content: "";
    height: 32px;
    left: -26px;
    position: absolute;
    top: -12px;
    width: 60px
}

.ant-steps-dot .ant-steps-item-content,.ant-steps-dot.ant-steps-small .ant-steps-item-content {
    width: 140px
}

.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon,.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon {
    background: none;
    height: 10px;
    line-height: 10px;
    position: relative;
    top: -1px;
    width: 10px
}

.ant-steps-dot .ant-steps-item-process .ant-steps-icon:first-child .ant-steps-icon-dot,.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-icon:first-child .ant-steps-icon-dot {
    left: 0
}

.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
    background: none;
    margin-left: 0;
    margin-top: 13px
}

.ant-steps-vertical.ant-steps-dot .ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail {
    left: -9px;
    margin: 0;
    padding: 22px 0 4px;
    top: 6.5px
}

.ant-steps-vertical.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
    margin-top: 10px
}

.ant-steps-vertical.ant-steps-dot.ant-steps-small .ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail {
    top: 3.5px
}

.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot {
    left: 0
}

.ant-steps-vertical.ant-steps-dot .ant-steps-item-content {
    width: inherit
}

.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon-dot {
    left: -1px;
    top: -1px
}

.ant-steps-navigation {
    padding-top: 12px
}

.ant-steps-navigation.ant-steps-small .ant-steps-item-container {
    margin-left: -12px
}

.ant-steps-navigation .ant-steps-item {
    overflow: visible;
    text-align: center
}

.ant-steps-navigation .ant-steps-item-container {
    display: inline-block;
    height: 100%;
    margin-left: -16px;
    padding-bottom: 12px;
    text-align: left;
    transition: opacity .3s
}

.ant-steps-navigation .ant-steps-item-container .ant-steps-item-content {
    max-width: auto
}

.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title {
    max-width: 100%;
    overflow: hidden;
    padding-right: 0;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title:after {
    display: none
}

.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role=button] {
    cursor: pointer
}

.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role=button]:hover {
    opacity: .85
}

.ant-steps-navigation .ant-steps-item:last-child {
    flex: 1 1
}

.ant-steps-navigation .ant-steps-item:last-child:after {
    display: none
}

.ant-steps-navigation .ant-steps-item:after {
    border: 1px solid hsla(0,0%,100%,.2);
    border-bottom: none;
    border-left: none;
    content: "";
    display: inline-block;
    height: 12px;
    left: 100%;
    margin-left: -2px;
    margin-top: -14px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 12px
}

.ant-steps-navigation .ant-steps-item:before {
    background-color: #f0b90b;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 2px;
    left: 50%;
    position: absolute;
    transition: width .3s,left .3s;
    transition-timing-function: ease-out;
    width: 0
}

.ant-steps-navigation .ant-steps-item.ant-steps-item-active:before {
    left: 0;
    width: 100%
}

.ant-steps-navigation.ant-steps-vertical>.ant-steps-item {
    margin-right: 0!important
}

.ant-steps-navigation.ant-steps-vertical>.ant-steps-item:before {
    display: none
}

.ant-steps-navigation.ant-steps-vertical>.ant-steps-item.ant-steps-item-active:before {
    display: block;
    height: calc(100% - 24px);
    left: auto;
    right: 0;
    top: 0;
    width: 3px
}

.ant-steps-navigation.ant-steps-vertical>.ant-steps-item:after {
    display: block;
    height: 8px;
    left: 50%;
    margin-bottom: 8px;
    position: relative;
    text-align: center;
    top: -2px;
    transform: rotate(135deg);
    width: 8px
}

.ant-steps-navigation.ant-steps-horizontal>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail,.ant-steps-navigation.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail {
    visibility: hidden
}

.ant-steps-rtl {
    direction: rtl
}

.ant-steps.ant-steps-rtl .ant-steps-item-icon {
    margin-left: 8px;
    margin-right: 0
}

.ant-steps-rtl .ant-steps-item-tail {
    left: auto;
    right: 0
}

.ant-steps-rtl .ant-steps-item-title {
    padding-left: 16px;
    padding-right: 0
}

.ant-steps-rtl .ant-steps-item-title .ant-steps-item-subtitle {
    float: left;
    margin-left: 0;
    margin-right: 8px
}

.ant-steps-rtl .ant-steps-item-title:after {
    left: auto;
    right: 100%
}

.ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
    padding-left: 0;
    padding-right: 16px
}

.ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
    padding-right: 0
}

.ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
    padding-left: 0
}

.ant-steps-rtl .ant-steps-item-custom .ant-steps-item-icon>.ant-steps-icon {
    left: auto;
    right: .5px
}

.ant-steps-rtl.ant-steps-navigation.ant-steps-small .ant-steps-item-container {
    margin-left: 0;
    margin-right: -12px
}

.ant-steps-rtl.ant-steps-navigation .ant-steps-item-container {
    margin-left: 0;
    margin-right: -16px;
    text-align: right
}

.ant-steps-rtl.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title {
    padding-left: 0
}

.ant-steps-rtl.ant-steps-navigation .ant-steps-item:after {
    left: auto;
    margin-left: 0;
    margin-right: -2px;
    right: 100%;
    transform: rotate(225deg)
}

.ant-steps-rtl.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
    padding-left: 0;
    padding-right: 12px
}

.ant-steps-rtl.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
    padding-right: 0
}

.ant-steps-rtl.ant-steps-small .ant-steps-item-title {
    padding-left: 12px;
    padding-right: 0
}

.ant-steps-rtl.ant-steps-vertical>.ant-steps-item .ant-steps-item-icon {
    float: right;
    margin-left: 16px;
    margin-right: 0
}

.ant-steps-rtl.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail {
    left: auto;
    right: 16px
}

.ant-steps-rtl.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
    left: auto;
    right: 12px
}

.ant-steps-rtl.ant-steps-label-vertical .ant-steps-item-title {
    padding-left: 0
}

.ant-steps-rtl.ant-steps-dot .ant-steps-item-tail,.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-tail {
    margin: 0 70px 0 0
}

.ant-steps-rtl.ant-steps-dot .ant-steps-item-tail:after,.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-tail:after {
    margin-left: 0;
    margin-right: 12px
}

.ant-steps-rtl.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot {
    left: auto;
    right: 2px
}

.ant-steps-rtl.ant-steps-dot .ant-steps-item-icon,.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
    margin-left: 0;
    margin-right: 67px
}

.ant-steps-rtl.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
    float: right
}

.ant-steps-rtl.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot:after,.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot:after {
    left: auto;
    right: -26px
}

.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
    margin-left: 16px;
    margin-right: 0
}

.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail {
    left: auto;
    right: -9px
}

.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot {
    left: auto;
    right: 0
}

.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot {
    left: auto;
    right: -2px
}

.ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child {
    padding-left: 0;
    padding-right: 4px
}

.ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child.ant-steps-item-active {
    padding-right: 4px
}

.ant-steps-with-progress .ant-steps-item {
    padding-top: 4px
}

.ant-steps-with-progress .ant-steps-item .ant-steps-item-tail {
    top: 4px!important
}

.ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child {
    padding-bottom: 4px;
    padding-left: 4px
}

.ant-steps-with-progress .ant-steps-item-icon {
    position: relative
}

.ant-steps-with-progress .ant-steps-item-icon .ant-progress {
    bottom: -5px;
    left: -5px;
    position: absolute;
    right: -5px;
    top: -5px
}

.ant-switch {
    font-feature-settings: "tnum","tnum";
    background-image: linear-gradient(90deg,hsla(0,0%,100%,.3),hsla(0,0%,100%,.3)),linear-gradient(90deg,#141414,#141414);
    border: 0;
    border-radius: 100px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    height: 22px;
    line-height: 1.5715;
    line-height: 22px;
    list-style: none;
    margin: 0;
    min-width: 44px;
    padding: 0;
    position: relative;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle
}

.ant-switch:focus {
    box-shadow: 0 0 0 2px hsla(0,0%,100%,.1);
    outline: 0
}

.ant-switch-checked:focus {
    box-shadow: 0 0 0 2px #111e28
}

.ant-switch:focus:hover {
    box-shadow: none
}

.ant-switch-checked {
    background: #f0b90b
}

.ant-switch-disabled,.ant-switch-loading {
    cursor: not-allowed;
    opacity: .4
}

.ant-switch-disabled *,.ant-switch-loading * {
    box-shadow: none;
    cursor: not-allowed
}

.ant-switch-inner {
    color: #fff;
    display: block;
    font-size: 12px;
    margin: 0 7px 0 25px;
    transition: margin .2s
}

.ant-switch-checked .ant-switch-inner {
    margin: 0 25px 0 7px
}

.ant-switch-handle {
    height: 18px;
    left: 2px;
    top: 2px;
    width: 18px
}

.ant-switch-handle,.ant-switch-handle:before {
    position: absolute;
    transition: all .2s ease-in-out
}

.ant-switch-handle:before {
    background-color: #fff;
    border-radius: 9px;
    bottom: 0;
    box-shadow: 0 2px 4px 0 rgba(0,35,11,.2);
    content: "";
    left: 0;
    right: 0;
    top: 0
}

.ant-switch-checked .ant-switch-handle {
    left: calc(100% - 20px)
}

.ant-switch:not(.ant-switch-disabled):active .ant-switch-handle:before {
    left: 0;
    right: -30%
}

.ant-switch:not(.ant-switch-disabled):active.ant-switch-checked .ant-switch-handle:before {
    left: -30%;
    right: 0
}

.ant-switch-loading-icon.anticon {
    color: rgba(0,0,0,.65);
    position: relative;
    top: 2px;
    vertical-align: top
}

.ant-switch-checked .ant-switch-loading-icon {
    color: #f0b90b
}

.ant-switch-small {
    height: 16px;
    line-height: 16px;
    min-width: 28px
}

.ant-switch-small .ant-switch-inner {
    font-size: 12px;
    margin: 0 5px 0 18px
}

.ant-switch-small .ant-switch-handle {
    height: 12px;
    width: 12px
}

.ant-switch-small .ant-switch-loading-icon {
    font-size: 9px;
    top: 1.5px
}

.ant-switch-small.ant-switch-checked .ant-switch-inner {
    margin: 0 18px 0 5px
}

.ant-switch-small.ant-switch-checked .ant-switch-handle {
    left: calc(100% - 14px)
}

.ant-switch-rtl {
    direction: rtl
}

.ant-switch-rtl .ant-switch-inner {
    margin: 0 25px 0 7px
}

.ant-switch-rtl .ant-switch-handle {
    left: auto;
    right: 2px
}

.ant-switch-rtl:not(.ant-switch-rtl-disabled):active .ant-switch-handle:before {
    left: -30%;
    right: 0
}

.ant-switch-rtl:not(.ant-switch-rtl-disabled):active.ant-switch-checked .ant-switch-handle:before {
    left: 0;
    right: -30%
}

.ant-switch-rtl.ant-switch-checked .ant-switch-inner {
    margin: 0 7px 0 25px
}

.ant-switch-rtl.ant-switch-checked .ant-switch-handle {
    right: calc(100% - 20px)
}

.ant-switch-rtl.ant-switch-small.ant-switch-checked .ant-switch-handle {
    right: calc(100% - 14px)
}

.ant-table.ant-table-middle {
    font-size: 14px
}

.ant-table.ant-table-middle .ant-table-footer,.ant-table.ant-table-middle .ant-table-tbody>tr>td,.ant-table.ant-table-middle .ant-table-thead>tr>th,.ant-table.ant-table-middle .ant-table-title,.ant-table.ant-table-middle tfoot>tr>td,.ant-table.ant-table-middle tfoot>tr>th {
    padding: 12px 8px
}

.ant-table.ant-table-middle .ant-table-filter-trigger {
    margin-right: -4px
}

.ant-table.ant-table-middle .ant-table-expanded-row-fixed {
    margin: -12px -8px
}

.ant-table.ant-table-middle .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
    margin: -12px -8px -12px 40px
}

.ant-table.ant-table-middle .ant-table-selection-column {
    padding-inline-start:2px}

.ant-table.ant-table-small {
    font-size: 14px
}

.ant-table.ant-table-small .ant-table-footer,.ant-table.ant-table-small .ant-table-tbody>tr>td,.ant-table.ant-table-small .ant-table-thead>tr>th,.ant-table.ant-table-small .ant-table-title,.ant-table.ant-table-small tfoot>tr>td,.ant-table.ant-table-small tfoot>tr>th {
    padding: 8px
}

.ant-table.ant-table-small .ant-table-filter-trigger {
    margin-right: -4px
}

.ant-table.ant-table-small .ant-table-expanded-row-fixed {
    margin: -8px
}

.ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
    margin: -8px -8px -8px 40px
}

.ant-table.ant-table-small .ant-table-selection-column {
    padding-inline-start:2px}

.ant-table.ant-table-bordered>.ant-table-title {
    border: 1px solid #303030;
    border-bottom: 0
}

.ant-table.ant-table-bordered>.ant-table-container {
    border-left: 1px solid #303030
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th {
    border-right: 1px solid #303030
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr:not(:last-child)>th {
    border-bottom: 1px solid #303030
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th:before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th:before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th:before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th:before {
    background-color: transparent!important
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>.ant-table-cell-fix-right-first:after {
    border-right: 1px solid #303030
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed {
    margin: -16px -17px
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed:after {
    border-right: 1px solid #303030;
    bottom: 0;
    content: "";
    position: absolute;
    right: 1px;
    top: 0
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table {
    border-top: 1px solid #303030
}

.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-expanded-row>td,.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-placeholder>td {
    border-right: 0
}

.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed {
    margin: -12px -9px
}

.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed {
    margin: -8px -9px
}

.ant-table.ant-table-bordered>.ant-table-footer {
    border: 1px solid #303030;
    border-top: 0
}

.ant-table-cell .ant-table-container:first-child {
    border-top: 0
}

.ant-table-cell-scrollbar:not([rowspan]) {
    box-shadow: 0 1px 0 1px #1d1d1d
}

.ant-table-wrapper {
    clear: both;
    max-width: 100%
}

.ant-table-wrapper:before {
    content: "";
    display: table
}

.ant-table-wrapper:after {
    clear: both;
    content: "";
    display: table
}

.ant-table {
    font-feature-settings: "tnum","tnum";
    background: #141414;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.ant-table table {
    border-collapse: separate;
    border-radius: 6px 6px 0 0;
    border-spacing: 0;
    text-align: left;
    width: 100%
}

.ant-table tfoot>tr>td,.ant-table tfoot>tr>th,.ant-table-tbody>tr>td,.ant-table-thead>tr>th {
    overflow-wrap: break-word;
    padding: 16px;
    position: relative
}

.ant-table-cell-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all
}

.ant-table-cell-ellipsis.ant-table-cell-fix-left-last,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first {
    overflow: visible
}

.ant-table-cell-ellipsis.ant-table-cell-fix-left-last .ant-table-cell-content,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first .ant-table-cell-content {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis
}

.ant-table-cell-ellipsis .ant-table-column-title {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all
}

.ant-table-title {
    padding: 16px
}

.ant-table-footer {
    background: hsla(0,0%,100%,.04);
    color: hsla(0,0%,100%,.85);
    padding: 16px
}

.ant-table-thead>tr>th {
    background: #1d1d1d;
    border-bottom: 1px solid #303030;
    color: hsla(0,0%,100%,.85);
    font-weight: 500;
    position: relative;
    text-align: left;
    transition: background .3s ease
}

.ant-table-thead>tr>th[colspan]:not([colspan="1"]) {
    text-align: center
}

.ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan]):before {
    background-color: hsla(0,0%,100%,.08);
    content: "";
    height: 1.6em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .3s;
    width: 1px
}

.ant-table-thead>tr:not(:last-child)>th[colspan] {
    border-bottom: 0
}

.ant-table-tbody>tr>td {
    border-bottom: 1px solid #303030;
    transition: background .3s
}

.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table {
    margin: -16px -16px -16px 32px
}

.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td {
    border-bottom: 0
}

.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child {
    border-radius: 0
}

.ant-table-tbody>tr.ant-table-row:hover>td,.ant-table-tbody>tr>td.ant-table-cell-row-hover {
    background: #262626
}

.ant-table-tbody>tr.ant-table-row-selected>td {
    background: #111e28;
    border-color: rgba(0,0,0,.03)
}

.ant-table-tbody>tr.ant-table-row-selected:hover>td {
    background: #0e1921
}

.ant-table-summary {
    background: #141414;
    position: relative;
    z-index: 2
}

div.ant-table-summary {
    box-shadow: 0 -1px 0 #303030
}

.ant-table-summary>tr>td,.ant-table-summary>tr>th {
    border-bottom: 1px solid #303030
}

.ant-table-pagination.ant-pagination {
    margin: 16px 0
}

.ant-table-pagination {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px
}

.ant-table-pagination>* {
    flex: none
}

.ant-table-pagination-left {
    justify-content: flex-start
}

.ant-table-pagination-center {
    justify-content: center
}

.ant-table-pagination-right {
    justify-content: flex-end
}

.ant-table-thead th.ant-table-column-has-sorters {
    cursor: pointer;
    outline: none;
    transition: all .3s
}

.ant-table-thead th.ant-table-column-has-sorters:hover {
    background: #303030
}

.ant-table-thead th.ant-table-column-has-sorters:hover:before {
    background-color: transparent!important
}

.ant-table-thead th.ant-table-column-has-sorters:focus-visible {
    color: #f0b90b
}

.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover {
    background: #222
}

.ant-table-thead th.ant-table-column-sort {
    background: #262626
}

.ant-table-thead th.ant-table-column-sort:before {
    background-color: transparent!important
}

td.ant-table-column-sort {
    background: hsla(0,0%,100%,.01)
}

.ant-table-column-title {
    flex: 1 1;
    position: relative;
    z-index: 1
}

.ant-table-column-sorters {
    align-items: center;
    display: flex;
    flex: auto;
    justify-content: space-between
}

.ant-table-column-sorters:after {
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.ant-table-column-sorter {
    color: #bfbfbf;
    font-size: 0;
    margin-left: 4px;
    transition: color .3s
}

.ant-table-column-sorter-inner {
    align-items: center;
    display: inline-flex;
    flex-direction: column
}

.ant-table-column-sorter-down,.ant-table-column-sorter-up {
    font-size: 11px
}

.ant-table-column-sorter-down.active,.ant-table-column-sorter-up.active {
    color: #f0b90b
}

.ant-table-column-sorter-up+.ant-table-column-sorter-down {
    margin-top: -.3em
}

.ant-table-column-sorters:hover .ant-table-column-sorter {
    color: #a6a6a6
}

.ant-table-filter-column {
    display: flex;
    justify-content: space-between
}

.ant-table-filter-trigger {
    align-items: center;
    border-radius: 6px;
    color: #bfbfbf;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    margin: -4px -8px -4px 4px;
    padding: 0 4px;
    position: relative;
    transition: all .3s
}

.ant-table-filter-trigger:hover {
    background: #434343;
    color: hsla(0,0%,100%,.45)
}

.ant-table-filter-trigger.active {
    color: #f0b90b
}

.ant-table-filter-dropdown {
    font-feature-settings: "tnum","tnum";
    background-color: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    min-width: 120px;
    padding: 0
}

.ant-table-filter-dropdown .ant-dropdown-menu {
    border: 0;
    box-shadow: none;
    max-height: 264px;
    overflow-x: hidden
}

.ant-table-filter-dropdown .ant-dropdown-menu:empty:after {
    color: hsla(0,0%,100%,.3);
    content: "Not Found";
    display: block;
    font-size: 12px;
    padding: 8px 0;
    text-align: center
}

.ant-table-filter-dropdown-tree {
    padding: 8px 8px 0
}

.ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper,.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover {
    background-color: #0f2c40
}

.ant-table-filter-dropdown-search {
    border-bottom: 1px solid #303030;
    padding: 8px
}

.ant-table-filter-dropdown-search-input input {
    min-width: 140px
}

.ant-table-filter-dropdown-search-input .anticon {
    color: hsla(0,0%,100%,.3)
}

.ant-table-filter-dropdown-checkall {
    margin-bottom: 4px;
    margin-left: 4px;
    width: 100%
}

.ant-table-filter-dropdown-submenu>ul {
    max-height: calc(100vh - 130px);
    overflow-x: hidden;
    overflow-y: auto
}

.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span {
    padding-left: 8px
}

.ant-table-filter-dropdown-btns {
    background-color: #1f1f1f;
    border-top: 1px solid #303030;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 7px 8px
}

.ant-table-selection-col {
    width: 32px
}

.ant-table-bordered .ant-table-selection-col {
    width: 50px
}

table tr td.ant-table-selection-column,table tr th.ant-table-selection-column {
    padding-left: 8px;
    padding-right: 8px;
    text-align: center
}

table tr td.ant-table-selection-column .ant-radio-wrapper,table tr th.ant-table-selection-column .ant-radio-wrapper {
    margin-right: 0
}

table tr th.ant-table-selection-column.ant-table-cell-fix-left {
    z-index: 3
}

table tr th.ant-table-selection-column:after {
    background-color: transparent!important
}

.ant-table-selection {
    display: inline-flex;
    flex-direction: column;
    position: relative
}

.ant-table-selection-extra {
    cursor: pointer;
    margin-inline-start:100%;padding-inline-start:4px;position: absolute;
    top: 0;
    transition: all .3s;
    z-index: 1
}

.ant-table-selection-extra .anticon {
    color: #bfbfbf;
    font-size: 10px
}

.ant-table-selection-extra .anticon:hover {
    color: #a6a6a6
}

.ant-table-expand-icon-col {
    width: 48px
}

.ant-table-row-expand-icon-cell {
    text-align: center
}

.ant-table-row-expand-icon-cell .ant-table-row-expand-icon {
    display: inline-flex;
    float: none;
    vertical-align: sub
}

.ant-table-row-indent {
    float: left;
    height: 1px
}

.ant-table-row-expand-icon {
    background: transparent;
    border: 1px solid #303030;
    border-radius: 6px;
    box-sizing: border-box;
    color: #f0b90b;
    color: inherit;
    cursor: pointer;
    float: left;
    height: 17px;
    line-height: 17px;
    outline: none;
    padding: 0;
    position: relative;
    text-decoration: none;
    transform: scale(.94117647);
    transition: color .3s;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 17px
}

.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover {
    color: #bf9003
}

.ant-table-row-expand-icon:active {
    color: #fc0
}

.ant-table-row-expand-icon:active,.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover {
    border-color: currentcolor
}

.ant-table-row-expand-icon:after,.ant-table-row-expand-icon:before {
    background: currentcolor;
    content: "";
    position: absolute;
    transition: transform .3s ease-out
}

.ant-table-row-expand-icon:before {
    height: 1px;
    left: 3px;
    right: 3px;
    top: 7px
}

.ant-table-row-expand-icon:after {
    bottom: 3px;
    left: 7px;
    top: 3px;
    transform: rotate(90deg);
    width: 1px
}

.ant-table-row-expand-icon-collapsed:before {
    transform: rotate(-180deg)
}

.ant-table-row-expand-icon-collapsed:after {
    transform: rotate(0deg)
}

.ant-table-row-expand-icon-spaced {
    background: transparent;
    border: 0;
    visibility: hidden
}

.ant-table-row-expand-icon-spaced:after,.ant-table-row-expand-icon-spaced:before {
    content: none;
    display: none
}

.ant-table-row-indent+.ant-table-row-expand-icon {
    margin-right: 8px;
    margin-top: 2.5005px
}

tr.ant-table-expanded-row:hover>td,tr.ant-table-expanded-row>td {
    background: #1d1d1d
}

tr.ant-table-expanded-row .ant-descriptions-view {
    display: flex
}

tr.ant-table-expanded-row .ant-descriptions-view table {
    flex: auto;
    width: auto
}

.ant-table .ant-table-expanded-row-fixed {
    margin: -16px;
    padding: 16px;
    position: relative
}

.ant-table-tbody>tr.ant-table-placeholder {
    text-align: center
}

.ant-table-empty .ant-table-tbody>tr.ant-table-placeholder {
    color: hsla(0,0%,100%,.3)
}

.ant-table-tbody>tr.ant-table-placeholder:hover>td {
    background: #141414
}

.ant-table-cell-fix-left,.ant-table-cell-fix-right {
    background: #141414;
    position: sticky!important;
    z-index: 2
}

.ant-table-cell-fix-left-first:after,.ant-table-cell-fix-left-last:after {
    bottom: -1px;
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: box-shadow .3s;
    width: 30px
}

.ant-table-cell-fix-left-all:after {
    display: none
}

.ant-table-cell-fix-right-first:after,.ant-table-cell-fix-right-last:after {
    bottom: -1px;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    transition: box-shadow .3s;
    width: 30px
}

.ant-table .ant-table-container:after,.ant-table .ant-table-container:before {
    bottom: 0;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: box-shadow .3s;
    width: 30px;
    z-index: 2
}

.ant-table .ant-table-container:before {
    left: 0
}

.ant-table .ant-table-container:after {
    right: 0
}

.ant-table-ping-left:not(.ant-table-has-fix-left)>.ant-table-container {
    position: relative
}

.ant-table-ping-left .ant-table-cell-fix-left-first:after,.ant-table-ping-left .ant-table-cell-fix-left-last:after,.ant-table-ping-left:not(.ant-table-has-fix-left)>.ant-table-container:before {
    box-shadow: inset 10px 0 8px -8px rgba(0,0,0,.45)
}

.ant-table-ping-left .ant-table-cell-fix-left-last:before {
    background-color: transparent!important
}

.ant-table-ping-right:not(.ant-table-has-fix-right)>.ant-table-container {
    position: relative
}

.ant-table-ping-right .ant-table-cell-fix-right-first:after,.ant-table-ping-right .ant-table-cell-fix-right-last:after,.ant-table-ping-right:not(.ant-table-has-fix-right)>.ant-table-container:after {
    box-shadow: inset -10px 0 8px -8px rgba(0,0,0,.45)
}

.ant-table-sticky-holder {
    background: #141414;
    position: sticky;
    z-index: 3
}

.ant-table-sticky-scroll {
    align-items: center;
    background: #fcfcfc;
    border-top: 1px solid #303030;
    bottom: 0;
    display: flex;
    opacity: .6;
    position: sticky;
    z-index: 3
}

.ant-table-sticky-scroll:hover {
    transform-origin: center bottom
}

.ant-table-sticky-scroll-bar {
    background-color: rgba(0,0,0,.35);
    border-radius: 4px;
    height: 8px
}

.ant-table-sticky-scroll-bar-active,.ant-table-sticky-scroll-bar:hover {
    background-color: rgba(0,0,0,.8)
}

@media (-ms-high-contrast:none) {
    .ant-table-ping-left .ant-table-cell-fix-left-last:after,.ant-table-ping-right .ant-table-cell-fix-right-first:after {
        box-shadow: none!important
    }
}

.ant-table-title {
    border-radius: 6px 6px 0 0
}

.ant-table-title+.ant-table-container {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.ant-table-title+.ant-table-container table,.ant-table-title+.ant-table-container table>thead>tr:first-child th:first-child,.ant-table-title+.ant-table-container table>thead>tr:first-child th:last-child {
    border-radius: 0
}

.ant-table-container {
    border-top-right-radius: 6px
}

.ant-table-container,.ant-table-container table>thead>tr:first-child th:first-child {
    border-top-left-radius: 6px
}

.ant-table-container table>thead>tr:first-child th:last-child {
    border-top-right-radius: 6px
}

.ant-table-footer {
    border-radius: 0 0 6px 6px
}

.ant-table-rtl,.ant-table-wrapper-rtl {
    direction: rtl
}

.ant-table-wrapper-rtl .ant-table table {
    text-align: right
}

.ant-table-wrapper-rtl .ant-table-thead>tr>th[colspan]:not([colspan="1"]) {
    text-align: center
}

.ant-table-wrapper-rtl .ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan]):before {
    left: 0;
    right: auto
}

.ant-table-wrapper-rtl .ant-table-thead>tr>th {
    text-align: right
}

.ant-table-tbody>tr .ant-table-wrapper:only-child .ant-table.ant-table-rtl {
    margin: -16px 33px -16px -16px
}

.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-left {
    justify-content: flex-end
}

.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-right {
    justify-content: flex-start
}

.ant-table-wrapper-rtl .ant-table-column-sorter {
    margin-left: 0;
    margin-right: 4px
}

.ant-table-wrapper-rtl .ant-table-filter-column-title {
    padding: 16px 16px 16px 2.3em
}

.ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title {
    padding: 0 0 0 2.3em
}

.ant-table-wrapper-rtl .ant-table-filter-trigger {
    margin: -4px 4px -4px -8px
}

.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span {
    padding-left: 0;
    padding-right: 8px
}

.ant-table-wrapper-rtl .ant-table-selection {
    text-align: center
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon,.ant-table-wrapper-rtl .ant-table-row-indent {
    float: right
}

.ant-table-wrapper-rtl .ant-table-row-indent+.ant-table-row-expand-icon {
    margin-left: 8px;
    margin-right: 0
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon:after {
    transform: rotate(-90deg)
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed:before {
    transform: rotate(180deg)
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed:after {
    transform: rotate(0deg)
}

.ant-tabs-small>.ant-tabs-nav .ant-tabs-tab {
    font-size: 14px;
    padding: 8px 0
}

.ant-tabs-large>.ant-tabs-nav .ant-tabs-tab {
    font-size: 16px;
    padding: 16px 0
}

.ant-tabs-card.ant-tabs-small>.ant-tabs-nav .ant-tabs-tab {
    padding: 6px 16px
}

.ant-tabs-card.ant-tabs-large>.ant-tabs-nav .ant-tabs-tab {
    padding: 7px 16px 6px
}

.ant-tabs-rtl {
    direction: rtl
}

.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab {
    margin: 0 0 0 32px
}

.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab:last-of-type {
    margin-left: 0
}

.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .anticon {
    margin-left: 12px;
    margin-right: 0
}

.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-remove {
    margin-left: -4px;
    margin-right: 8px
}

.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-remove .anticon {
    margin: 0
}

.ant-tabs-rtl.ant-tabs-left>.ant-tabs-nav {
    order: 1
}

.ant-tabs-rtl.ant-tabs-left>.ant-tabs-content-holder,.ant-tabs-rtl.ant-tabs-right>.ant-tabs-nav {
    order: 0
}

.ant-tabs-rtl.ant-tabs-right>.ant-tabs-content-holder {
    order: 1
}

.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-add,.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-add,.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-rtl.ant-tabs-card.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-add,.ant-tabs-rtl.ant-tabs-card.ant-tabs-top>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-rtl.ant-tabs-card.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-add,.ant-tabs-rtl.ant-tabs-card.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab {
    margin-left: 0;
    margin-right: 2px
}

.ant-tabs-dropdown-rtl {
    direction: rtl
}

.ant-tabs-dropdown-rtl .ant-tabs-dropdown-menu-item {
    text-align: right
}

.ant-tabs-bottom,.ant-tabs-top {
    flex-direction: column
}

.ant-tabs-bottom>.ant-tabs-nav,.ant-tabs-bottom>div>.ant-tabs-nav,.ant-tabs-top>.ant-tabs-nav,.ant-tabs-top>div>.ant-tabs-nav {
    margin: 0 0 16px
}

.ant-tabs-bottom>.ant-tabs-nav:before,.ant-tabs-bottom>div>.ant-tabs-nav:before,.ant-tabs-top>.ant-tabs-nav:before,.ant-tabs-top>div>.ant-tabs-nav:before {
    border-bottom: 1px solid #303030;
    content: "";
    left: 0;
    position: absolute;
    right: 0
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-top>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-ink-bar {
    height: 2px
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-ink-bar-animated,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-ink-bar-animated,.ant-tabs-top>.ant-tabs-nav .ant-tabs-ink-bar-animated,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-ink-bar-animated {
    transition: width .3s,left .3s,right .3s
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    bottom: 0;
    top: 0;
    width: 30px
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    box-shadow: inset 10px 0 8px -8px rgba(0,0,0,.08);
    left: 0
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap:after {
    box-shadow: inset -10px 0 8px -8px rgba(0,0,0,.08);
    right: 0
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left:before,.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right:after,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left:before,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right:after,.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left:before,.ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right:after,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left:before,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right:after {
    opacity: 1
}

.ant-tabs-top>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-top>.ant-tabs-nav:before,.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-top>div>.ant-tabs-nav:before {
    bottom: 0
}

.ant-tabs-bottom>.ant-tabs-nav,.ant-tabs-bottom>div>.ant-tabs-nav {
    margin-bottom: 0;
    margin-top: 16px;
    order: 1
}

.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-bottom>.ant-tabs-nav:before,.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-bottom>div>.ant-tabs-nav:before {
    top: 0
}

.ant-tabs-bottom>.ant-tabs-content-holder,.ant-tabs-bottom>div>.ant-tabs-content-holder {
    order: 0
}

.ant-tabs-left>.ant-tabs-nav,.ant-tabs-left>div>.ant-tabs-nav,.ant-tabs-right>.ant-tabs-nav,.ant-tabs-right>div>.ant-tabs-nav {
    flex-direction: column;
    min-width: 50px
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-right>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-tab {
    padding: 8px 24px;
    text-align: center
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-right>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab {
    margin: 16px 0 0
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap {
    flex-direction: column
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    height: 30px;
    left: 0;
    right: 0
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    box-shadow: inset 0 10px 8px -8px rgba(0,0,0,.08);
    top: 0
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap:after {
    bottom: 0;
    box-shadow: inset 0 -10px 8px -8px rgba(0,0,0,.08)
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom:after,.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top:before,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom:after,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top:before,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom:after,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top:before,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom:after,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top:before {
    opacity: 1
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-right>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-ink-bar {
    width: 2px
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-ink-bar-animated,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-ink-bar-animated,.ant-tabs-right>.ant-tabs-nav .ant-tabs-ink-bar-animated,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-ink-bar-animated {
    transition: height .3s,top .3s
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-list,.ant-tabs-left>.ant-tabs-nav .ant-tabs-nav-operations,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-list,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-nav-operations,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-list,.ant-tabs-right>.ant-tabs-nav .ant-tabs-nav-operations,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-list,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-nav-operations {
    flex: 1 0 auto;
    flex-direction: column
}

.ant-tabs-left>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-ink-bar {
    right: 0
}

.ant-tabs-left>.ant-tabs-content-holder,.ant-tabs-left>div>.ant-tabs-content-holder {
    border-left: 1px solid #303030;
    margin-left: -1px
}

.ant-tabs-left>.ant-tabs-content-holder>.ant-tabs-content>.ant-tabs-tabpane,.ant-tabs-left>div>.ant-tabs-content-holder>.ant-tabs-content>.ant-tabs-tabpane {
    padding-left: 24px
}

.ant-tabs-right>.ant-tabs-nav,.ant-tabs-right>div>.ant-tabs-nav {
    order: 1
}

.ant-tabs-right>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-ink-bar {
    left: 0
}

.ant-tabs-right>.ant-tabs-content-holder,.ant-tabs-right>div>.ant-tabs-content-holder {
    border-right: 1px solid #303030;
    margin-right: -1px;
    order: 0
}

.ant-tabs-right>.ant-tabs-content-holder>.ant-tabs-content>.ant-tabs-tabpane,.ant-tabs-right>div>.ant-tabs-content-holder>.ant-tabs-content>.ant-tabs-tabpane {
    padding-right: 24px
}

.ant-tabs-dropdown {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: block;
    font-size: 14px;
    font-variant: tabular-nums;
    left: -9999px;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -9999px;
    z-index: 1050
}

.ant-tabs-dropdown-hidden {
    display: none
}

.ant-tabs-dropdown-menu {
    background-clip: padding-box;
    background-color: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    list-style-type: none;
    margin: 0;
    max-height: 200px;
    outline: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 4px 0;
    text-align: left
}

.ant-tabs-dropdown-menu-item {
    align-items: center;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    min-width: 120px;
    overflow: hidden;
    padding: 5px 12px;
    text-overflow: ellipsis;
    transition: all .3s;
    white-space: nowrap
}

.ant-tabs-dropdown-menu-item>span {
    flex: 1 1;
    white-space: nowrap
}

.ant-tabs-dropdown-menu-item-remove {
    background: transparent;
    border: 0;
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    flex: none;
    font-size: 12px;
    margin-left: 12px
}

.ant-tabs-dropdown-menu-item-remove:hover {
    color: #bf9003
}

.ant-tabs-dropdown-menu-item:hover {
    background: hsla(0,0%,100%,.08)
}

.ant-tabs-dropdown-menu-item-disabled,.ant-tabs-dropdown-menu-item-disabled:hover {
    background: transparent;
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-tabs-card>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-card>div>.ant-tabs-nav .ant-tabs-tab {
    background: hsla(0,0%,100%,.04);
    border: 1px solid #303030;
    margin: 0;
    padding: 8px 16px;
    transition: all .3s cubic-bezier(.645,.045,.355,1)
}

.ant-tabs-card>.ant-tabs-nav .ant-tabs-tab-active,.ant-tabs-card>div>.ant-tabs-nav .ant-tabs-tab-active {
    background: #141414;
    color: #f0b90b
}

.ant-tabs-card>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs-card>div>.ant-tabs-nav .ant-tabs-ink-bar {
    visibility: hidden
}

.ant-tabs-card.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-card.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-card.ant-tabs-top>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-card.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab {
    margin-left: 2px
}

.ant-tabs-card.ant-tabs-top>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-card.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-tab {
    border-radius: 6px 6px 0 0
}

.ant-tabs-card.ant-tabs-top>.ant-tabs-nav .ant-tabs-tab-active,.ant-tabs-card.ant-tabs-top>div>.ant-tabs-nav .ant-tabs-tab-active {
    border-bottom-color: #141414
}

.ant-tabs-card.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-card.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-tab {
    border-radius: 0 0 6px 6px
}

.ant-tabs-card.ant-tabs-bottom>.ant-tabs-nav .ant-tabs-tab-active,.ant-tabs-card.ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-tab-active {
    border-top-color: #141414
}

.ant-tabs-card.ant-tabs-left>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-card.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-card.ant-tabs-right>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab,.ant-tabs-card.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab {
    margin-top: 2px
}

.ant-tabs-card.ant-tabs-left>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-card.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-tab {
    border-radius: 6px 0 0 6px
}

.ant-tabs-card.ant-tabs-left>.ant-tabs-nav .ant-tabs-tab-active,.ant-tabs-card.ant-tabs-left>div>.ant-tabs-nav .ant-tabs-tab-active {
    border-right-color: #141414
}

.ant-tabs-card.ant-tabs-right>.ant-tabs-nav .ant-tabs-tab,.ant-tabs-card.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-tab {
    border-radius: 0 6px 6px 0
}

.ant-tabs-card.ant-tabs-right>.ant-tabs-nav .ant-tabs-tab-active,.ant-tabs-card.ant-tabs-right>div>.ant-tabs-nav .ant-tabs-tab-active {
    border-left-color: #141414
}

.ant-tabs {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-tabs>.ant-tabs-nav,.ant-tabs>div>.ant-tabs-nav {
    align-items: center;
    display: flex;
    flex: none;
    position: relative
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-wrap,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-wrap {
    align-self: stretch;
    display: inline-block;
    display: flex;
    flex: auto;
    overflow: hidden;
    position: relative;
    transform: translate(0);
    white-space: nowrap
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs>.ant-tabs-nav .ant-tabs-nav-wrap:before,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    content: "";
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .3s;
    z-index: 1
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-list,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-list {
    display: flex;
    position: relative;
    transition: transform .3s
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-operations,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-operations {
    align-self: stretch;
    display: flex
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-operations-hidden,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-operations-hidden {
    pointer-events: none;
    position: absolute;
    visibility: hidden
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-more,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-more {
    background: transparent;
    border: 0;
    padding: 8px 16px;
    position: relative
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-more:after,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-more:after {
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    transform: translateY(100%)
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-add,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-add {
    background: hsla(0,0%,100%,.04);
    border: 1px solid #303030;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    margin-left: 2px;
    min-width: 40px;
    outline: none;
    padding: 0 8px;
    transition: all .3s cubic-bezier(.645,.045,.355,1)
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-add:hover,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-add:hover {
    color: #bf9003
}

.ant-tabs>.ant-tabs-nav .ant-tabs-nav-add:active,.ant-tabs>.ant-tabs-nav .ant-tabs-nav-add:focus,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-add:active,.ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-add:focus {
    color: #fc0
}

.ant-tabs-extra-content {
    flex: none
}

.ant-tabs-centered>.ant-tabs-nav .ant-tabs-nav-wrap:not([class*=ant-tabs-nav-wrap-ping]),.ant-tabs-centered>div>.ant-tabs-nav .ant-tabs-nav-wrap:not([class*=ant-tabs-nav-wrap-ping]) {
    justify-content: center
}

.ant-tabs-ink-bar {
    background: #f0b90b;
    pointer-events: none;
    position: absolute
}

.ant-tabs-tab {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    outline: none;
    padding: 12px 0;
    position: relative
}

.ant-tabs-tab-btn:active,.ant-tabs-tab-btn:focus,.ant-tabs-tab-remove:active,.ant-tabs-tab-remove:focus {
    color: #fc0
}

.ant-tabs-tab-btn,.ant-tabs-tab-remove {
    outline: none;
    transition: all .3s
}

.ant-tabs-tab-remove {
    background: transparent;
    border: none;
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    flex: none;
    font-size: 12px;
    margin-left: 8px;
    margin-right: -4px
}

.ant-tabs-tab-remove:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-tabs-tab:hover {
    color: #bf9003
}

.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #f0b90b;
    text-shadow: 0 0 .25px currentcolor
}

.ant-tabs-tab.ant-tabs-tab-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:active,.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:focus,.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:active,.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:focus {
    color: hsla(0,0%,100%,.3)
}

.ant-tabs-tab .ant-tabs-tab-remove .anticon {
    margin: 0
}

.ant-tabs-tab .anticon {
    margin-right: 12px
}

.ant-tabs-tab+.ant-tabs-tab {
    margin: 0 0 0 32px
}

.ant-tabs-content {
    display: flex;
    width: 100%
}

.ant-tabs-content-holder {
    flex: auto;
    min-height: 0;
    min-width: 0
}

.ant-tabs-content-animated {
    transition: margin .3s
}

.ant-tabs-tabpane {
    flex: none;
    outline: none;
    width: 100%
}

.ant-tag {
    font-feature-settings: "tnum","tnum";
    background: hsla(0,0%,100%,.04);
    border: 1px solid #434343;
    border-radius: 6px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 14px;
    font-size: 12px;
    font-variant: tabular-nums;
    height: auto;
    line-height: 1.5715;
    line-height: 20px;
    list-style: none;
    margin: 0 8px 0 0;
    opacity: 1;
    padding: 0 7px;
    transition: all .3s;
    white-space: nowrap
}

.ant-tag,.ant-tag a,.ant-tag a:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-tag>a:first-child:last-child {
    display: inline-block;
    margin: 0 -8px;
    padding: 0 8px
}

.ant-tag-close-icon {
    color: hsla(0,0%,100%,.45);
    cursor: pointer;
    font-size: 10px;
    margin-left: 3px;
    transition: all .3s
}

.ant-tag-close-icon:hover {
    color: hsla(0,0%,100%,.85)
}

.ant-tag-has-color {
    border-color: transparent
}

.ant-tag-has-color,.ant-tag-has-color .anticon-close,.ant-tag-has-color .anticon-close:hover,.ant-tag-has-color a,.ant-tag-has-color a:hover {
    color: #fff
}

.ant-tag-checkable {
    background-color: transparent;
    border-color: transparent;
    cursor: pointer
}

.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
    color: #f0b90b
}

.ant-tag-checkable-checked,.ant-tag-checkable:active {
    color: #fff
}

.ant-tag-checkable-checked {
    background-color: #f0b90b
}

.ant-tag-checkable:active {
    background-color: #fc0
}

.ant-tag-hidden {
    display: none
}

.ant-tag-pink {
    background: #291321;
    border-color: #551c3b;
    color: #e0529c
}

.ant-tag-pink-inverse {
    background: #cb2b83;
    border-color: #cb2b83;
    color: #fff
}

.ant-tag-magenta {
    background: #291321;
    border-color: #551c3b;
    color: #e0529c
}

.ant-tag-magenta-inverse {
    background: #cb2b83;
    border-color: #cb2b83;
    color: #fff
}

.ant-tag-red {
    background: #2a1215;
    border-color: #58181c;
    color: #e84749
}

.ant-tag-red-inverse {
    background: #d32029;
    border-color: #d32029;
    color: #fff
}

.ant-tag-volcano {
    background: #2b1611;
    border-color: #592716;
    color: #e87040
}

.ant-tag-volcano-inverse {
    background: #d84a1b;
    border-color: #d84a1b;
    color: #fff
}

.ant-tag-orange {
    background: #2b1d11;
    border-color: #593815;
    color: #e89a3c
}

.ant-tag-orange-inverse {
    background: #d87a16;
    border-color: #d87a16;
    color: #fff
}

.ant-tag-yellow {
    background: #2b2611;
    border-color: #595014;
    color: #e8d639
}

.ant-tag-yellow-inverse {
    background: #d8bd14;
    border-color: #d8bd14;
    color: #fff
}

.ant-tag-gold {
    background: #2b2111;
    border-color: #594214;
    color: #e8b339
}

.ant-tag-gold-inverse {
    background: #d89614;
    border-color: #d89614;
    color: #fff
}

.ant-tag-cyan {
    background: #112123;
    border-color: #144848;
    color: #33bcb7
}

.ant-tag-cyan-inverse {
    background: #13a8a8;
    border-color: #13a8a8;
    color: #fff
}

.ant-tag-lime {
    background: #1f2611;
    border-color: #3e4f13;
    color: #a9d134
}

.ant-tag-lime-inverse {
    background: #8bbb11;
    border-color: #8bbb11;
    color: #fff
}

.ant-tag-green {
    background: #162312;
    border-color: #274916;
    color: #6abe39
}

.ant-tag-green-inverse {
    background: #49aa19;
    border-color: #49aa19;
    color: #fff
}

.ant-tag-blue {
    background: #111d2c;
    border-color: #15395b;
    color: #3c9ae8
}

.ant-tag-blue-inverse {
    background: #177ddc;
    border-color: #177ddc;
    color: #fff
}

.ant-tag-geekblue {
    background: #131629;
    border-color: #1c2755;
    color: #5273e0
}

.ant-tag-geekblue-inverse {
    background: #2b4acb;
    border-color: #2b4acb;
    color: #fff
}

.ant-tag-purple {
    background: #1a1325;
    border-color: #301c4d;
    color: #854eca
}

.ant-tag-purple-inverse {
    background: #642ab5;
    border-color: #642ab5;
    color: #fff
}

.ant-tag-success {
    background: #162312;
    border-color: #274916;
    color: #49aa19
}

.ant-tag-processing {
    background: #111e28;
    border-color: #103b53;
    color: #f0b90b
}

.ant-tag-error {
    background: #2a1215;
    border-color: #58181c;
    color: #a61d24
}

.ant-tag-warning {
    background: #2b1d11;
    border-color: #593815;
    color: #d89614
}

.ant-tag>.anticon+span,.ant-tag>span+.anticon {
    margin-left: 7px
}

.ant-tag.ant-tag-rtl {
    direction: rtl;
    margin-left: 8px;
    margin-right: 0;
    text-align: right
}

.ant-tag-rtl .ant-tag-close-icon {
    margin-left: 0;
    margin-right: 3px
}

.ant-tag-rtl.ant-tag>.anticon+span,.ant-tag-rtl.ant-tag>span+.anticon {
    margin-left: 0;
    margin-right: 7px
}

.ant-timeline {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-timeline-item {
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.ant-timeline-item-tail {
    border-left: 2px solid #303030;
    height: calc(100% - 10px);
    left: 4px;
    position: absolute;
    top: 10px
}

.ant-timeline-item-pending .ant-timeline-item-head {
    background-color: transparent;
    font-size: 12px
}

.ant-timeline-item-pending .ant-timeline-item-tail {
    display: none
}

.ant-timeline-item-head {
    background-color: #141414;
    border: 2px solid transparent;
    border-radius: 100px;
    height: 10px;
    position: absolute;
    width: 10px
}

.ant-timeline-item-head-blue {
    border-color: #f0b90b;
    color: #f0b90b
}

.ant-timeline-item-head-red {
    border-color: #a61d24;
    color: #a61d24
}

.ant-timeline-item-head-green {
    border-color: #49aa19;
    color: #49aa19
}

.ant-timeline-item-head-gray {
    border-color: hsla(0,0%,100%,.3);
    color: hsla(0,0%,100%,.3)
}

.ant-timeline-item-head-custom {
    border: 0;
    border-radius: 0;
    height: auto;
    left: 5px;
    line-height: 1;
    margin-top: 0;
    padding: 3px 1px;
    position: absolute;
    text-align: center;
    top: 5.5px;
    transform: translate(-50%,-50%);
    width: auto
}

.ant-timeline-item-content {
    margin: 0 0 0 26px;
    position: relative;
    top: -7.001px;
    word-break: break-word
}

.ant-timeline-item-last>.ant-timeline-item-tail {
    display: none
}

.ant-timeline-item-last>.ant-timeline-item-content {
    min-height: 48px
}

.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,.ant-timeline.ant-timeline-label .ant-timeline-item-head,.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-label .ant-timeline-item-tail,.ant-timeline.ant-timeline-right .ant-timeline-item-head,.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-right .ant-timeline-item-tail {
    left: 50%
}

.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,.ant-timeline.ant-timeline-label .ant-timeline-item-head,.ant-timeline.ant-timeline-right .ant-timeline-item-head {
    margin-left: -4px
}

.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom {
    margin-left: 1px
}

.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content,.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content {
    left: calc(50% - 4px);
    text-align: left;
    width: calc(50% - 14px)
}

.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content,.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
    margin: 0;
    text-align: right;
    width: calc(50% - 12px)
}

.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail {
    left: calc(100% - 6px)
}

.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
    width: calc(100% - 18px)
}

.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
    border-left: 2px dotted #303030;
    display: block;
    height: calc(100% - 14px)
}

.ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail {
    display: none
}

.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
    border-left: 2px dotted #303030;
    display: block;
    height: calc(100% - 15px);
    top: 15px
}

.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content {
    min-height: 48px
}

.ant-timeline.ant-timeline-label .ant-timeline-item-label {
    position: absolute;
    text-align: right;
    top: -7.001px;
    width: calc(50% - 12px)
}

.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label {
    left: calc(50% + 14px);
    text-align: left;
    width: calc(50% - 14px)
}

.ant-timeline-rtl {
    direction: rtl
}

.ant-timeline-rtl .ant-timeline-item-tail {
    border-left: none;
    border-right: 2px solid #303030;
    left: auto;
    right: 4px
}

.ant-timeline-rtl .ant-timeline-item-head-custom {
    left: auto;
    right: 5px;
    transform: translate(50%,-50%)
}

.ant-timeline-rtl .ant-timeline-item-content {
    margin: 0 18px 0 0
}

.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-tail,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-tail {
    left: auto;
    right: 50%
}

.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head {
    margin-left: 0;
    margin-right: -4px
}

.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom {
    margin-left: 0;
    margin-right: 1px
}

.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content {
    left: auto;
    right: calc(50% - 4px);
    text-align: right
}

.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
    text-align: left
}

.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom,.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail {
    left: auto;
    right: 0
}

.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
    margin-right: 18px;
    text-align: right;
    width: 100%
}

.ant-timeline-rtl.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail,.ant-timeline-rtl.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
    border-left: none;
    border-right: 2px dotted #303030
}

.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-label {
    text-align: left
}

.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label {
    right: calc(50% + 14px);
    text-align: right
}

.ant-tooltip {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    max-width: 250px;
    padding: 0;
    position: absolute;
    visibility: visible;
    width: -moz-max-content;
    width: max-content;
    width: intrinsic;
    z-index: 1070
}

.ant-tooltip-content {
    position: relative
}

.ant-tooltip-hidden {
    display: none
}

.ant-tooltip-placement-top,.ant-tooltip-placement-topLeft,.ant-tooltip-placement-topRight {
    padding-bottom: 14.3137085px
}

.ant-tooltip-placement-right,.ant-tooltip-placement-rightBottom,.ant-tooltip-placement-rightTop {
    padding-left: 14.3137085px
}

.ant-tooltip-placement-bottom,.ant-tooltip-placement-bottomLeft,.ant-tooltip-placement-bottomRight {
    padding-top: 14.3137085px
}

.ant-tooltip-placement-left,.ant-tooltip-placement-leftBottom,.ant-tooltip-placement-leftTop {
    padding-right: 14.3137085px
}

.ant-tooltip-inner {
    word-wrap: break-word;
    background-color: #434343;
    border-radius: 6px;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.48),0 6px 16px 0 rgba(0,0,0,.32),0 9px 28px 8px rgba(0,0,0,.2);
    color: #fff;
    min-height: 32px;
    min-width: 30px;
    padding: 6px 8px;
    text-align: left;
    text-decoration: none
}

.ant-tooltip-arrow {
    background: transparent;
    display: block;
    height: 22px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    width: 22px;
    z-index: 2
}

.ant-tooltip-arrow-content {
    --antd-arrow-background-color: linear-gradient(to right bottom,rgba(67,67,67,.9),#434343);
    border-radius: 0 0 2px;
    bottom: 0;
    content: "";
    display: block;
    height: 11.3137085px;
    left: 0;
    margin: auto;
    pointer-events: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 11.3137085px
}

.ant-tooltip-arrow-content:before {
    background: var(--antd-arrow-background-color);
    background-position: -10px -10px;
    background-repeat: no-repeat;
    clip-path: inset(33% 33%);
    clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    content: "";
    height: 33.9411255px;
    left: -11.3137085px;
    position: absolute;
    top: -11.3137085px;
    width: 33.9411255px
}

.ant-tooltip-placement-top .ant-tooltip-arrow,.ant-tooltip-placement-topLeft .ant-tooltip-arrow,.ant-tooltip-placement-topRight .ant-tooltip-arrow {
    bottom: 0;
    transform: translateY(100%)
}

.ant-tooltip-placement-top .ant-tooltip-arrow-content,.ant-tooltip-placement-topLeft .ant-tooltip-arrow-content,.ant-tooltip-placement-topRight .ant-tooltip-arrow-content {
    box-shadow: 3px 3px 7px rgba(0,0,0,.07);
    transform: translateY(-11px) rotate(45deg)
}

.ant-tooltip-placement-top .ant-tooltip-arrow {
    left: 50%;
    transform: translateY(100%) translateX(-50%)
}

.ant-tooltip-placement-topLeft .ant-tooltip-arrow {
    left: 13px
}

.ant-tooltip-placement-topRight .ant-tooltip-arrow {
    right: 13px
}

.ant-tooltip-placement-right .ant-tooltip-arrow,.ant-tooltip-placement-rightBottom .ant-tooltip-arrow,.ant-tooltip-placement-rightTop .ant-tooltip-arrow {
    left: 0;
    transform: translateX(-100%)
}

.ant-tooltip-placement-right .ant-tooltip-arrow-content,.ant-tooltip-placement-rightBottom .ant-tooltip-arrow-content,.ant-tooltip-placement-rightTop .ant-tooltip-arrow-content {
    box-shadow: -3px 3px 7px rgba(0,0,0,.07);
    transform: translateX(11px) rotate(135deg)
}

.ant-tooltip-placement-right .ant-tooltip-arrow {
    top: 50%;
    transform: translateX(-100%) translateY(-50%)
}

.ant-tooltip-placement-rightTop .ant-tooltip-arrow {
    top: 5px
}

.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
    bottom: 5px
}

.ant-tooltip-placement-left .ant-tooltip-arrow,.ant-tooltip-placement-leftBottom .ant-tooltip-arrow,.ant-tooltip-placement-leftTop .ant-tooltip-arrow {
    right: 0;
    transform: translateX(100%)
}

.ant-tooltip-placement-left .ant-tooltip-arrow-content,.ant-tooltip-placement-leftBottom .ant-tooltip-arrow-content,.ant-tooltip-placement-leftTop .ant-tooltip-arrow-content {
    box-shadow: 3px -3px 7px rgba(0,0,0,.07);
    transform: translateX(-11px) rotate(315deg)
}

.ant-tooltip-placement-left .ant-tooltip-arrow {
    top: 50%;
    transform: translateX(100%) translateY(-50%)
}

.ant-tooltip-placement-leftTop .ant-tooltip-arrow {
    top: 5px
}

.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
    bottom: 5px
}

.ant-tooltip-placement-bottom .ant-tooltip-arrow,.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
    top: 0;
    transform: translateY(-100%)
}

.ant-tooltip-placement-bottom .ant-tooltip-arrow-content,.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow-content,.ant-tooltip-placement-bottomRight .ant-tooltip-arrow-content {
    box-shadow: -3px -3px 7px rgba(0,0,0,.07);
    transform: translateY(11px) rotate(225deg)
}

.ant-tooltip-placement-bottom .ant-tooltip-arrow {
    left: 50%;
    transform: translateY(-100%) translateX(-50%)
}

.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
    left: 13px
}

.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
    right: 13px
}

.ant-tooltip-pink .ant-tooltip-inner {
    background-color: #cb2b83
}

.ant-tooltip-pink .ant-tooltip-arrow-content:before {
    background: #cb2b83
}

.ant-tooltip-magenta .ant-tooltip-inner {
    background-color: #cb2b83
}

.ant-tooltip-magenta .ant-tooltip-arrow-content:before {
    background: #cb2b83
}

.ant-tooltip-red .ant-tooltip-inner {
    background-color: #d32029
}

.ant-tooltip-red .ant-tooltip-arrow-content:before {
    background: #d32029
}

.ant-tooltip-volcano .ant-tooltip-inner {
    background-color: #d84a1b
}

.ant-tooltip-volcano .ant-tooltip-arrow-content:before {
    background: #d84a1b
}

.ant-tooltip-orange .ant-tooltip-inner {
    background-color: #d87a16
}

.ant-tooltip-orange .ant-tooltip-arrow-content:before {
    background: #d87a16
}

.ant-tooltip-yellow .ant-tooltip-inner {
    background-color: #d8bd14
}

.ant-tooltip-yellow .ant-tooltip-arrow-content:before {
    background: #d8bd14
}

.ant-tooltip-gold .ant-tooltip-inner {
    background-color: #d89614
}

.ant-tooltip-gold .ant-tooltip-arrow-content:before {
    background: #d89614
}

.ant-tooltip-cyan .ant-tooltip-inner {
    background-color: #13a8a8
}

.ant-tooltip-cyan .ant-tooltip-arrow-content:before {
    background: #13a8a8
}

.ant-tooltip-lime .ant-tooltip-inner {
    background-color: #8bbb11
}

.ant-tooltip-lime .ant-tooltip-arrow-content:before {
    background: #8bbb11
}

.ant-tooltip-green .ant-tooltip-inner {
    background-color: #49aa19
}

.ant-tooltip-green .ant-tooltip-arrow-content:before {
    background: #49aa19
}

.ant-tooltip-blue .ant-tooltip-inner {
    background-color: #177ddc
}

.ant-tooltip-blue .ant-tooltip-arrow-content:before {
    background: #177ddc
}

.ant-tooltip-geekblue .ant-tooltip-inner {
    background-color: #2b4acb
}

.ant-tooltip-geekblue .ant-tooltip-arrow-content:before {
    background: #2b4acb
}

.ant-tooltip-purple .ant-tooltip-inner {
    background-color: #642ab5
}

.ant-tooltip-purple .ant-tooltip-arrow-content:before {
    background: #642ab5
}

.ant-tooltip-rtl {
    direction: rtl
}

.ant-tooltip-rtl .ant-tooltip-inner {
    text-align: right
}

.ant-transfer-customize-list .ant-transfer-list {
    flex: 1 1 50%;
    height: auto;
    min-height: 200px;
    width: auto
}

.ant-transfer-customize-list .ant-table-wrapper .ant-table-small {
    border: 0;
    border-radius: 0
}

.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-selection-column {
    min-width: 40px;
    width: 40px
}

.ant-transfer-customize-list .ant-table-wrapper .ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th {
    background: #1d1d1d
}

.ant-transfer-customize-list .ant-table-wrapper .ant-table-small>.ant-table-content .ant-table-row:last-child td {
    border-bottom: 1px solid #303030
}

.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-body {
    margin: 0
}

.ant-transfer-customize-list .ant-table-wrapper .ant-table-pagination.ant-pagination {
    margin: 16px 0 4px
}

.ant-transfer-customize-list .ant-input[disabled] {
    background-color: transparent
}

.ant-transfer-status-error .ant-transfer-list {
    border-color: #a61d24
}

.ant-transfer-status-error .ant-transfer-list-search:not([disabled]) {
    border-color: #434343
}

.ant-transfer-status-error .ant-transfer-list-search:not([disabled]):hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-transfer-status-error .ant-transfer-list-search:not([disabled]):hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-transfer-status-error .ant-transfer-list-search:not([disabled]):focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-transfer-status-error .ant-transfer-list-search:not([disabled]):focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-transfer-status-warning .ant-transfer-list {
    border-color: #d89614
}

.ant-transfer-status-warning .ant-transfer-list-search:not([disabled]) {
    border-color: #434343
}

.ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):hover {
    border-color: #bf9003;
    border-right-width: 1px
}

.ant-input-rtl .ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):hover {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):focus {
    border-color: #f0b90b;
    border-right-width: 1px;
    outline: 0
}

.ant-input-rtl .ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):focus {
    border-left-width: 1px!important;
    border-right-width: 0
}

.ant-transfer {
    font-feature-settings: "tnum","tnum";
    align-items: stretch;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.ant-transfer-disabled .ant-transfer-list {
    background: hsla(0,0%,100%,.08)
}

.ant-transfer-list {
    border: 1px solid #434343;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 180px
}

.ant-transfer-list-with-pagination {
    height: auto;
    width: 250px
}

.ant-transfer-list-search .anticon-search {
    color: hsla(0,0%,100%,.3)
}

.ant-transfer-list-header {
    align-items: center;
    background: #141414;
    border-bottom: 1px solid #303030;
    border-radius: 6px 6px 0 0;
    color: hsla(0,0%,100%,.85);
    display: flex;
    flex: none;
    height: 40px;
    padding: 8px 12px 9px
}

.ant-transfer-list-header>:not(:last-child) {
    margin-right: 4px
}

.ant-transfer-list-header>* {
    flex: none
}

.ant-transfer-list-header-title {
    flex: auto;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-transfer-list-header-dropdown {
    cursor: pointer;
    font-size: 10px;
    transform: translateY(10%)
}

.ant-transfer-list-header-dropdown[disabled] {
    cursor: not-allowed
}

.ant-transfer-list-body {
    display: flex;
    flex: auto;
    flex-direction: column;
    font-size: 14px;
    overflow: hidden
}

.ant-transfer-list-body-search-wrapper {
    flex: none;
    padding: 12px;
    position: relative
}

.ant-transfer-list-content {
    flex: auto;
    list-style: none;
    margin: 0;
    overflow: auto;
    padding: 0
}

.ant-transfer-list-content-item {
    align-items: center;
    display: flex;
    line-height: 20px;
    min-height: 32px;
    padding: 6px 12px;
    transition: all .3s
}

.ant-transfer-list-content-item>:not(:last-child) {
    margin-right: 8px
}

.ant-transfer-list-content-item>* {
    flex: none
}

.ant-transfer-list-content-item-text {
    flex: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ant-transfer-list-content-item-remove {
    color: #f0b90b;
    color: #434343;
    cursor: pointer;
    outline: none;
    position: relative;
    text-decoration: none;
    transition: color .3s
}

.ant-transfer-list-content-item-remove:focus,.ant-transfer-list-content-item-remove:hover {
    color: #bf9003
}

.ant-transfer-list-content-item-remove:active {
    color: #fc0
}

.ant-transfer-list-content-item-remove:after {
    bottom: -6px;
    content: "";
    left: -50%;
    position: absolute;
    right: -50%;
    top: -6px
}

.ant-transfer-list-content-item-remove:hover {
    color: #bf9003
}

.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
    background-color: #262626;
    cursor: pointer
}

.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled).ant-transfer-list-content-item-checked:hover {
    background-color: #0e1921
}

.ant-transfer-list-content-show-remove .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
    background: transparent;
    cursor: default
}

.ant-transfer-list-content-item-checked {
    background-color: #111e28
}

.ant-transfer-list-content-item-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-transfer-list-pagination {
    border-top: 1px solid #303030;
    padding: 8px 0;
    text-align: right
}

.ant-transfer-list-body-not-found {
    color: hsla(0,0%,100%,.3);
    flex: none;
    margin: auto 0;
    text-align: center;
    width: 100%
}

.ant-transfer-list-footer {
    border-top: 1px solid #303030
}

.ant-transfer-operation {
    align-self: center;
    display: flex;
    flex: none;
    flex-direction: column;
    margin: 0 8px;
    vertical-align: middle
}

.ant-transfer-operation .ant-btn {
    display: block
}

.ant-transfer-operation .ant-btn:first-child {
    margin-bottom: 4px
}

.ant-transfer-operation .ant-btn .anticon {
    font-size: 12px
}

.ant-transfer .ant-empty-image {
    max-height: -2px
}

.ant-transfer-rtl {
    direction: rtl
}

.ant-transfer-rtl .ant-transfer-list-search {
    padding-left: 24px;
    padding-right: 8px
}

.ant-transfer-rtl .ant-transfer-list-search-action {
    left: 12px;
    right: auto
}

.ant-transfer-rtl .ant-transfer-list-header>:not(:last-child) {
    margin-left: 4px;
    margin-right: 0
}

.ant-transfer-rtl .ant-transfer-list-header {
    left: auto;
    right: 0
}

.ant-transfer-rtl .ant-transfer-list-header-title {
    text-align: left
}

.ant-transfer-rtl .ant-transfer-list-content-item>:not(:last-child) {
    margin-left: 8px;
    margin-right: 0
}

.ant-transfer-rtl .ant-transfer-list-pagination {
    text-align: left
}

.ant-transfer-rtl .ant-transfer-list-footer {
    left: auto;
    right: 0
}

@keyframes ant-tree-node-fx-do-not-use {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.ant-tree.ant-tree-directory .ant-tree-treenode {
    position: relative
}

.ant-tree.ant-tree-directory .ant-tree-treenode:before {
    bottom: 4px;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color .3s
}

.ant-tree.ant-tree-directory .ant-tree-treenode:hover:before {
    background: hsla(0,0%,100%,.08)
}

.ant-tree.ant-tree-directory .ant-tree-treenode>* {
    z-index: 1
}

.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-switcher {
    transition: color .3s
}

.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper {
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
    background: transparent
}

.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper.ant-tree-node-selected {
    background: transparent;
    color: #fff
}

.ant-tree.ant-tree-directory .ant-tree-treenode-selected:before,.ant-tree.ant-tree-directory .ant-tree-treenode-selected:hover:before {
    background: #f0b90b
}

.ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-switcher {
    color: #fff
}

.ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-node-content-wrapper {
    background: transparent;
    color: #fff
}

.ant-tree-checkbox {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: 1;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    top: .2em;
    white-space: nowrap
}

.ant-tree-checkbox-input:focus+.ant-tree-checkbox-inner,.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,.ant-tree-checkbox:hover .ant-tree-checkbox-inner {
    border-color: #f0b90b
}

.ant-tree-checkbox-checked:after {
    animation: antCheckboxEffect .36s ease-in-out;
    animation-fill-mode: backwards;
    border: 1px solid #f0b90b;
    border-radius: 6px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%
}

.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox:after,.ant-tree-checkbox:hover:after {
    visibility: visible
}

.ant-tree-checkbox-inner {
    background-color: transparent;
    border: 1px solid #434343;
    border-collapse: separate;
    border-radius: 6px;
    direction: ltr;
    display: block;
    height: 16px;
    left: 0;
    position: relative;
    top: 0;
    transition: all .3s;
    width: 16px
}

.ant-tree-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    height: 9.14285714px;
    left: 21.5%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) scale(0) translate(-50%,-50%);
    transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
    width: 5.71428571px
}

.ant-tree-checkbox-input {
    bottom: 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    opacity: 1;
    position: absolute;
    transform: rotate(45deg) scale(1) translate(-50%,-50%);
    transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s
}

.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
    background-color: #f0b90b;
    border-color: #f0b90b
}

.ant-tree-checkbox-disabled {
    cursor: not-allowed
}

.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after {
    animation-name: none;
    border-color: hsla(0,0%,100%,.3)
}

.ant-tree-checkbox-disabled .ant-tree-checkbox-input {
    cursor: not-allowed;
    pointer-events: none
}

.ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343!important
}

.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after {
    animation-name: none;
    border-collapse: separate;
    border-color: hsla(0,0%,100%,.08)
}

.ant-tree-checkbox-disabled+span {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-tree-checkbox-disabled:hover:after,.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled:after {
    visibility: hidden
}

.ant-tree-checkbox-wrapper {
    font-feature-settings: "tnum","tnum";
    align-items: baseline;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: inherit;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-tree-checkbox-wrapper:after {
    content: "\a0";
    display: inline-block;
    overflow: hidden;
    width: 0
}

.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled {
    cursor: not-allowed
}

.ant-tree-checkbox-wrapper+.ant-tree-checkbox-wrapper {
    margin-left: 8px
}

.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-in-form-item input[type=checkbox] {
    height: 14px;
    width: 14px
}

.ant-tree-checkbox+span {
    padding-left: 8px;
    padding-right: 8px
}

.ant-tree-checkbox-group {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-tree-checkbox-group-item {
    margin-right: 8px
}

.ant-tree-checkbox-group-item:last-child {
    margin-right: 0
}

.ant-tree-checkbox-group-item+.ant-tree-checkbox-group-item {
    margin-left: 0
}

.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner {
    background-color: transparent;
    border-color: #434343
}

.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner:after {
    background-color: #f0b90b;
    border: 0;
    content: " ";
    height: 8px;
    left: 50%;
    opacity: 1;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 8px
}

.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after {
    background-color: hsla(0,0%,100%,.3);
    border-color: hsla(0,0%,100%,.3)
}

.ant-tree-checkbox-rtl {
    direction: rtl
}

.ant-tree-checkbox-group-rtl .ant-tree-checkbox-group-item {
    margin-left: 8px;
    margin-right: 0
}

.ant-tree-checkbox-group-rtl .ant-tree-checkbox-group-item:last-child {
    margin-left: 0!important
}

.ant-tree-checkbox-group-rtl .ant-tree-checkbox-group-item+.ant-tree-checkbox-group-item {
    margin-left: 8px
}

.ant-tree {
    font-feature-settings: "tnum","tnum";
    background: transparent;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: background-color .3s
}

.ant-tree-focused:not(:hover):not(.ant-tree-active-focused) {
    background: #111e28
}

.ant-tree-list-holder-inner {
    align-items: flex-start
}

.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner {
    align-items: stretch
}

.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-node-content-wrapper {
    flex: auto
}

.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging {
    position: relative
}

.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging:after {
    animation: ant-tree-node-fx-do-not-use .3s;
    animation-fill-mode: forwards;
    animation-play-state: running;
    border: 1px solid #f0b90b;
    bottom: 4px;
    content: "";
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.ant-tree .ant-tree-treenode {
    align-items: flex-start;
    display: flex;
    outline: none;
    padding: 0 0 4px
}

.ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper:hover {
    background: transparent
}

.ant-tree .ant-tree-treenode-active .ant-tree-node-content-wrapper {
    background: hsla(0,0%,100%,.08)
}

.ant-tree .ant-tree-treenode:not(.ant-tree .ant-tree-treenode-disabled).filter-node .ant-tree-title {
    color: inherit;
    font-weight: 500
}

.ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
    line-height: 24px;
    opacity: .2;
    text-align: center;
    transition: opacity .3s;
    visibility: visible;
    width: 24px
}

.ant-tree-treenode:hover .ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
    opacity: .45
}

.ant-tree-indent {
    align-self: stretch;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.ant-tree-indent-unit {
    display: inline-block;
    width: 24px
}

.ant-tree-draggable-icon {
    visibility: hidden
}

.ant-tree-switcher {
    align-self: stretch;
    cursor: pointer;
    flex: none;
    line-height: 24px;
    margin: 0;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 24px
}

.ant-tree-switcher .ant-select-tree-switcher-icon,.ant-tree-switcher .ant-tree-switcher-icon {
    display: inline-block;
    font-size: 10px;
    vertical-align: baseline
}

.ant-tree-switcher .ant-select-tree-switcher-icon svg,.ant-tree-switcher .ant-tree-switcher-icon svg {
    transition: transform .3s
}

.ant-tree-switcher-noop {
    cursor: default
}

.ant-tree-switcher_close .ant-tree-switcher-icon svg {
    transform: rotate(-90deg)
}

.ant-tree-switcher-loading-icon {
    color: #f0b90b
}

.ant-tree-switcher-leaf-line {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1
}

.ant-tree-switcher-leaf-line:before {
    border-right: 1px solid #d9d9d9;
    bottom: -4px;
    content: " ";
    margin-left: -1px;
    position: absolute;
    right: 12px;
    top: 0
}

.ant-tree-switcher-leaf-line:after {
    border-bottom: 1px solid #d9d9d9;
    content: " ";
    height: 14px;
    position: absolute;
    width: 10px
}

.ant-tree-checkbox {
    margin: 4px 8px 0 0;
    top: auto
}

.ant-tree .ant-tree-node-content-wrapper {
    background: transparent;
    border-radius: 6px;
    color: inherit;
    cursor: pointer;
    line-height: 24px;
    margin: 0;
    min-height: 24px;
    padding: 0 4px;
    position: relative;
    transition: all .3s,border 0s,line-height 0s,box-shadow 0s;
    z-index: auto
}

.ant-tree .ant-tree-node-content-wrapper:hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
    background-color: #0f2c40
}

.ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: center;
    vertical-align: top;
    width: 24px
}

.ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle:empty {
    display: none
}

.ant-tree-unselectable .ant-tree-node-content-wrapper:hover {
    background-color: transparent
}

.ant-tree-node-content-wrapper {
    line-height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-tree-node-content-wrapper .ant-tree-drop-indicator {
    background-color: #f0b90b;
    border-radius: 1px;
    height: 2px;
    pointer-events: none;
    position: absolute;
    z-index: 1
}

.ant-tree-node-content-wrapper .ant-tree-drop-indicator:after {
    background-color: transparent;
    border: 2px solid #f0b90b;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: -6px;
    position: absolute;
    top: -3px;
    width: 8px
}

.ant-tree .ant-tree-treenode.drop-container>[draggable] {
    box-shadow: 0 0 0 2px #f0b90b
}

.ant-tree-show-line .ant-tree-indent-unit {
    height: 100%;
    position: relative
}

.ant-tree-show-line .ant-tree-indent-unit:before {
    border-right: 1px solid #434343;
    bottom: -4px;
    content: "";
    position: absolute;
    right: 12px;
    top: 0
}

.ant-tree-show-line .ant-tree-indent-unit-end:before {
    display: none
}

.ant-tree-show-line .ant-tree-switcher {
    background: #141414
}

.ant-tree-show-line .ant-tree-switcher-line-icon {
    vertical-align: -.15em
}

.ant-tree .ant-tree-treenode-leaf-last .ant-tree-switcher-leaf-line:before {
    bottom: auto!important;
    height: 14px!important;
    top: auto!important
}

.ant-tree-rtl {
    direction: rtl
}

.ant-tree-rtl .ant-tree-node-content-wrapper[draggable=true] .ant-tree-drop-indicator:after {
    left: auto;
    right: -6px
}

.ant-tree .ant-tree-treenode-rtl {
    direction: rtl
}

.ant-tree-rtl .ant-tree-switcher_close .ant-tree-switcher-icon svg {
    transform: rotate(90deg)
}

.ant-tree-rtl.ant-tree-show-line .ant-tree-indent-unit:before {
    border-left: 1px solid #434343;
    border-right: none;
    left: -13px;
    right: auto
}

.ant-tree-rtl .ant-tree-checkbox,.ant-tree-select-dropdown-rtl .ant-select-tree-checkbox {
    margin: 4px 0 0 8px
}

.ant-select-tree-checkbox {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: 1;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    top: .2em;
    white-space: nowrap
}

.ant-select-tree-checkbox-input:focus+.ant-select-tree-checkbox-inner,.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner {
    border-color: #f0b90b
}

.ant-select-tree-checkbox-checked:after {
    animation: antCheckboxEffect .36s ease-in-out;
    animation-fill-mode: backwards;
    border: 1px solid #f0b90b;
    border-radius: 6px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%
}

.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox:after,.ant-select-tree-checkbox:hover:after {
    visibility: visible
}

.ant-select-tree-checkbox-inner {
    background-color: transparent;
    border: 1px solid #434343;
    border-collapse: separate;
    border-radius: 6px;
    direction: ltr;
    display: block;
    height: 16px;
    left: 0;
    position: relative;
    top: 0;
    transition: all .3s;
    width: 16px
}

.ant-select-tree-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    height: 9.14285714px;
    left: 21.5%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) scale(0) translate(-50%,-50%);
    transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
    width: 5.71428571px
}

.ant-select-tree-checkbox-input {
    bottom: 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after {
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    content: " ";
    display: table;
    opacity: 1;
    position: absolute;
    transform: rotate(45deg) scale(1) translate(-50%,-50%);
    transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s
}

.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner {
    background-color: #f0b90b;
    border-color: #f0b90b
}

.ant-select-tree-checkbox-disabled {
    cursor: not-allowed
}

.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after {
    animation-name: none;
    border-color: hsla(0,0%,100%,.3)
}

.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input {
    cursor: not-allowed;
    pointer-events: none
}

.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
    background-color: hsla(0,0%,100%,.08);
    border-color: #434343!important
}

.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after {
    animation-name: none;
    border-collapse: separate;
    border-color: hsla(0,0%,100%,.08)
}

.ant-select-tree-checkbox-disabled+span {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-select-tree-checkbox-disabled:hover:after,.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled:after {
    visibility: hidden
}

.ant-select-tree-checkbox-wrapper {
    font-feature-settings: "tnum","tnum";
    align-items: baseline;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    line-height: inherit;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-select-tree-checkbox-wrapper:after {
    content: "\a0";
    display: inline-block;
    overflow: hidden;
    width: 0
}

.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled {
    cursor: not-allowed
}

.ant-select-tree-checkbox-wrapper+.ant-select-tree-checkbox-wrapper {
    margin-left: 8px
}

.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-in-form-item input[type=checkbox] {
    height: 14px;
    width: 14px
}

.ant-select-tree-checkbox+span {
    padding-left: 8px;
    padding-right: 8px
}

.ant-select-tree-checkbox-group {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-select-tree-checkbox-group-item {
    margin-right: 8px
}

.ant-select-tree-checkbox-group-item:last-child {
    margin-right: 0
}

.ant-select-tree-checkbox-group-item+.ant-select-tree-checkbox-group-item {
    margin-left: 0
}

.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner {
    background-color: transparent;
    border-color: #434343
}

.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner:after {
    background-color: #f0b90b;
    border: 0;
    content: " ";
    height: 8px;
    left: 50%;
    opacity: 1;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 8px
}

.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after {
    background-color: hsla(0,0%,100%,.3);
    border-color: hsla(0,0%,100%,.3)
}

.ant-select-tree-checkbox-rtl {
    direction: rtl
}

.ant-select-tree-checkbox-group-rtl .ant-select-tree-checkbox-group-item {
    margin-left: 8px;
    margin-right: 0
}

.ant-select-tree-checkbox-group-rtl .ant-select-tree-checkbox-group-item:last-child {
    margin-left: 0!important
}

.ant-select-tree-checkbox-group-rtl .ant-select-tree-checkbox-group-item+.ant-select-tree-checkbox-group-item {
    margin-left: 8px
}

.ant-tree-select-dropdown {
    padding: 8px 4px
}

.ant-tree-select-dropdown-rtl {
    direction: rtl
}

.ant-tree-select-dropdown .ant-select-tree {
    border-radius: 0
}

.ant-tree-select-dropdown .ant-select-tree-list-holder-inner {
    align-items: stretch
}

.ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode .ant-select-tree-node-content-wrapper {
    flex: auto
}

.ant-select-tree {
    font-feature-settings: "tnum","tnum";
    background: transparent;
    border-radius: 6px;
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: background-color .3s
}

.ant-select-tree-focused:not(:hover):not(.ant-select-tree-active-focused) {
    background: #111e28
}

.ant-select-tree-list-holder-inner {
    align-items: flex-start
}

.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner {
    align-items: stretch
}

.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-node-content-wrapper {
    flex: auto
}

.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging {
    position: relative
}

.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging:after {
    animation: ant-tree-node-fx-do-not-use .3s;
    animation-fill-mode: forwards;
    animation-play-state: running;
    border: 1px solid #f0b90b;
    bottom: 4px;
    content: "";
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.ant-select-tree .ant-select-tree-treenode {
    align-items: flex-start;
    display: flex;
    outline: none;
    padding: 0 0 4px
}

.ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper:hover {
    background: transparent
}

.ant-select-tree .ant-select-tree-treenode-active .ant-select-tree-node-content-wrapper {
    background: hsla(0,0%,100%,.08)
}

.ant-select-tree .ant-select-tree-treenode:not(.ant-select-tree .ant-select-tree-treenode-disabled).filter-node .ant-select-tree-title {
    color: inherit;
    font-weight: 500
}

.ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
    line-height: 24px;
    opacity: .2;
    text-align: center;
    transition: opacity .3s;
    visibility: visible;
    width: 24px
}

.ant-select-tree-treenode:hover .ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
    opacity: .45
}

.ant-select-tree-indent {
    align-self: stretch;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.ant-select-tree-indent-unit {
    display: inline-block;
    width: 24px
}

.ant-select-tree-draggable-icon {
    visibility: hidden
}

.ant-select-tree-switcher {
    align-self: stretch;
    cursor: pointer;
    flex: none;
    line-height: 24px;
    margin: 0;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 24px
}

.ant-select-tree-switcher .ant-select-tree-switcher-icon,.ant-select-tree-switcher .ant-tree-switcher-icon {
    display: inline-block;
    font-size: 10px;
    vertical-align: baseline
}

.ant-select-tree-switcher .ant-select-tree-switcher-icon svg,.ant-select-tree-switcher .ant-tree-switcher-icon svg {
    transition: transform .3s
}

.ant-select-tree-switcher-noop {
    cursor: default
}

.ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg {
    transform: rotate(-90deg)
}

.ant-select-tree-switcher-loading-icon {
    color: #f0b90b
}

.ant-select-tree-switcher-leaf-line {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1
}

.ant-select-tree-switcher-leaf-line:before {
    border-right: 1px solid #d9d9d9;
    bottom: -4px;
    content: " ";
    margin-left: -1px;
    position: absolute;
    right: 12px;
    top: 0
}

.ant-select-tree-switcher-leaf-line:after {
    border-bottom: 1px solid #d9d9d9;
    content: " ";
    height: 14px;
    position: absolute;
    width: 10px
}

.ant-select-tree-checkbox {
    margin: 4px 8px 0 0;
    top: auto
}

.ant-select-tree .ant-select-tree-node-content-wrapper {
    background: transparent;
    border-radius: 6px;
    color: inherit;
    cursor: pointer;
    line-height: 24px;
    margin: 0;
    min-height: 24px;
    padding: 0 4px;
    position: relative;
    transition: all .3s,border 0s,line-height 0s,box-shadow 0s;
    z-index: auto
}

.ant-select-tree .ant-select-tree-node-content-wrapper:hover {
    background-color: hsla(0,0%,100%,.08)
}

.ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
    background-color: #0f2c40
}

.ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: center;
    vertical-align: top;
    width: 24px
}

.ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle:empty {
    display: none
}

.ant-select-tree-unselectable .ant-select-tree-node-content-wrapper:hover {
    background-color: transparent
}

.ant-select-tree-node-content-wrapper {
    line-height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator {
    background-color: #f0b90b;
    border-radius: 1px;
    height: 2px;
    pointer-events: none;
    position: absolute;
    z-index: 1
}

.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator:after {
    background-color: transparent;
    border: 2px solid #f0b90b;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: -6px;
    position: absolute;
    top: -3px;
    width: 8px
}

.ant-select-tree .ant-select-tree-treenode.drop-container>[draggable] {
    box-shadow: 0 0 0 2px #f0b90b
}

.ant-select-tree-show-line .ant-select-tree-indent-unit {
    height: 100%;
    position: relative
}

.ant-select-tree-show-line .ant-select-tree-indent-unit:before {
    border-right: 1px solid #434343;
    bottom: -4px;
    content: "";
    position: absolute;
    right: 12px;
    top: 0
}

.ant-select-tree-show-line .ant-select-tree-indent-unit-end:before {
    display: none
}

.ant-select-tree-show-line .ant-select-tree-switcher {
    background: #141414
}

.ant-select-tree-show-line .ant-select-tree-switcher-line-icon {
    vertical-align: -.15em
}

.ant-select-tree .ant-select-tree-treenode-leaf-last .ant-select-tree-switcher-leaf-line:before {
    bottom: auto!important;
    height: 14px!important;
    top: auto!important
}

.ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg {
    transform: rotate(90deg)
}

.ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher-loading-icon {
    transform: scaleY(-1)
}

.ant-typography {
    color: hsla(0,0%,100%,.85);
    overflow-wrap: break-word
}

.ant-typography.ant-typography-secondary {
    color: hsla(0,0%,100%,.45)
}

.ant-typography.ant-typography-success {
    color: #49aa19
}

.ant-typography.ant-typography-warning {
    color: #d89614
}

.ant-typography.ant-typography-danger {
    color: #a61d24
}

a.ant-typography.ant-typography-danger:active,a.ant-typography.ant-typography-danger:focus {
    color: #800f19
}

a.ant-typography.ant-typography-danger:hover {
    color: #b33b3d
}

.ant-typography.ant-typography-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ant-typography p,div.ant-typography {
    margin-bottom: 1em
}

.ant-typography h1,div.ant-typography-h1,div.ant-typography-h1>textarea,h1.ant-typography {
    color: hsla(0,0%,100%,.85);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.23;
    margin-bottom: .5em
}

.ant-typography h2,div.ant-typography-h2,div.ant-typography-h2>textarea,h2.ant-typography {
    color: hsla(0,0%,100%,.85);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .5em
}

.ant-typography h3,div.ant-typography-h3,div.ant-typography-h3>textarea,h3.ant-typography {
    color: hsla(0,0%,100%,.85);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .5em
}

.ant-typography h4,div.ant-typography-h4,div.ant-typography-h4>textarea,h4.ant-typography {
    color: hsla(0,0%,100%,.85);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: .5em
}

.ant-typography h5,div.ant-typography-h5,div.ant-typography-h5>textarea,h5.ant-typography {
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: .5em
}

.ant-typography div+h1,.ant-typography div+h2,.ant-typography div+h3,.ant-typography div+h4,.ant-typography div+h5,.ant-typography h1+h1,.ant-typography h1+h2,.ant-typography h1+h3,.ant-typography h1+h4,.ant-typography h1+h5,.ant-typography h2+h1,.ant-typography h2+h2,.ant-typography h2+h3,.ant-typography h2+h4,.ant-typography h2+h5,.ant-typography h3+h1,.ant-typography h3+h2,.ant-typography h3+h3,.ant-typography h3+h4,.ant-typography h3+h5,.ant-typography h4+h1,.ant-typography h4+h2,.ant-typography h4+h3,.ant-typography h4+h4,.ant-typography h4+h5,.ant-typography h5+h1,.ant-typography h5+h2,.ant-typography h5+h3,.ant-typography h5+h4,.ant-typography h5+h5,.ant-typography li+h1,.ant-typography li+h2,.ant-typography li+h3,.ant-typography li+h4,.ant-typography li+h5,.ant-typography p+h1,.ant-typography p+h2,.ant-typography p+h3,.ant-typography p+h4,.ant-typography p+h5,.ant-typography ul+h1,.ant-typography ul+h2,.ant-typography ul+h3,.ant-typography ul+h4,.ant-typography ul+h5,.ant-typography+h1.ant-typography,.ant-typography+h2.ant-typography,.ant-typography+h3.ant-typography,.ant-typography+h4.ant-typography,.ant-typography+h5.ant-typography {
    margin-top: 1.2em
}

a.ant-typography-ellipsis,span.ant-typography-ellipsis {
    display: inline-block;
    max-width: 100%
}

.ant-typography a,a.ant-typography {
    color: #f0b90b;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: color .3s
}

.ant-typography a:focus,.ant-typography a:hover,a.ant-typography:focus,a.ant-typography:hover {
    color: #bf9003
}

.ant-typography a:active,a.ant-typography:active {
    color: #fc0
}

.ant-typography a:active,.ant-typography a:hover,a.ant-typography:active,a.ant-typography:hover {
    text-decoration: none
}

.ant-typography a.ant-typography-disabled,.ant-typography a[disabled],a.ant-typography.ant-typography-disabled,a.ant-typography[disabled] {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-typography a.ant-typography-disabled:active,.ant-typography a.ant-typography-disabled:hover,.ant-typography a[disabled]:active,.ant-typography a[disabled]:hover,a.ant-typography.ant-typography-disabled:active,a.ant-typography.ant-typography-disabled:hover,a.ant-typography[disabled]:active,a.ant-typography[disabled]:hover {
    color: hsla(0,0%,100%,.3)
}

.ant-typography a.ant-typography-disabled:active,.ant-typography a[disabled]:active,a.ant-typography.ant-typography-disabled:active,a.ant-typography[disabled]:active {
    pointer-events: none
}

.ant-typography code {
    background: hsla(0,0%,59%,.1);
    border: 1px solid hsla(0,0%,39%,.2);
    border-radius: 3px;
    font-size: 85%;
    margin: 0 .2em;
    padding: .2em .4em .1em
}

.ant-typography kbd {
    background: hsla(0,0%,59%,.06);
    border: solid hsla(0,0%,39%,.2);
    border-radius: 3px;
    border-width: 1px 1px 2px;
    font-size: 90%;
    margin: 0 .2em;
    padding: .15em .4em .1em
}

.ant-typography mark {
    background-color: #594214;
    padding: 0
}

.ant-typography ins,.ant-typography u {
    -webkit-text-decoration-skip: ink;
    text-decoration: underline;
    text-decoration-skip-ink: auto
}

.ant-typography del,.ant-typography s {
    text-decoration: line-through
}

.ant-typography strong {
    font-weight: 600
}

.ant-typography-copy,.ant-typography-edit,.ant-typography-expand {
    color: #f0b90b;
    cursor: pointer;
    margin-left: 4px;
    outline: none;
    text-decoration: none;
    transition: color .3s
}

.ant-typography-copy:focus,.ant-typography-copy:hover,.ant-typography-edit:focus,.ant-typography-edit:hover,.ant-typography-expand:focus,.ant-typography-expand:hover {
    color: #bf9003
}

.ant-typography-copy:active,.ant-typography-edit:active,.ant-typography-expand:active {
    color: #fc0
}

.ant-typography-copy-success,.ant-typography-copy-success:focus,.ant-typography-copy-success:hover {
    color: #49aa19
}

.ant-typography-edit-content {
    position: relative
}

div.ant-typography-edit-content {
    left: -12px;
    margin-bottom: calc(1em - 5px);
    margin-top: -5px
}

.ant-typography-edit-content-confirm {
    bottom: 8px;
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    pointer-events: none;
    position: absolute;
    right: 10px
}

.ant-typography-edit-content textarea {
    height: 1em;
    margin: 0!important;
    -moz-transition: none
}

.ant-typography ol,.ant-typography ul {
    margin: 0 0 1em;
    padding: 0
}

.ant-typography ol li,.ant-typography ul li {
    margin: 0 0 0 20px;
    padding: 0 0 0 4px
}

.ant-typography ul {
    list-style-type: circle
}

.ant-typography ul ul {
    list-style-type: disc
}

.ant-typography ol {
    list-style-type: decimal
}

.ant-typography blockquote,.ant-typography pre {
    margin: 1em 0
}

.ant-typography pre {
    word-wrap: break-word;
    background: hsla(0,0%,59%,.1);
    border: 1px solid hsla(0,0%,39%,.2);
    border-radius: 3px;
    padding: .4em .6em;
    white-space: pre-wrap
}

.ant-typography pre code {
    background: transparent;
    border: 0;
    display: inline;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0
}

.ant-typography blockquote {
    border-left: 4px solid hsla(0,0%,39%,.2);
    opacity: .85;
    padding: 0 0 0 .6em
}

.ant-typography-single-line {
    white-space: nowrap
}

.ant-typography-ellipsis-single-line {
    overflow: hidden;
    text-overflow: ellipsis
}

a.ant-typography-ellipsis-single-line,span.ant-typography-ellipsis-single-line {
    vertical-align: bottom
}

.ant-typography-ellipsis-multiple-line {
    -webkit-line-clamp: 3;
    /*! autoprefixer: ignore next */
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden
}

.ant-typography-rtl {
    direction: rtl
}

.ant-typography-rtl .ant-typography-copy,.ant-typography-rtl .ant-typography-edit,.ant-typography-rtl .ant-typography-expand {
    margin-left: 0;
    margin-right: 4px
}

.ant-typography-rtl .ant-typography-expand {
    float: left
}

div.ant-typography-edit-content.ant-typography-rtl {
    left: auto;
    right: -12px
}

.ant-typography-rtl .ant-typography-edit-content-confirm {
    left: 10px;
    right: auto
}

.ant-typography-rtl.ant-typography ol li,.ant-typography-rtl.ant-typography ul li {
    margin: 0 20px 0 0;
    padding: 0 4px 0 0
}

.ant-upload {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    outline: 0;
    padding: 0
}

.ant-upload p {
    margin: 0
}

.ant-upload-btn {
    display: block;
    outline: none;
    width: 100%
}

.ant-upload input[type=file] {
    cursor: pointer
}

.ant-upload.ant-upload-select {
    display: inline-block
}

.ant-upload.ant-upload-disabled {
    color: hsla(0,0%,100%,.3);
    cursor: not-allowed
}

.ant-upload.ant-upload-select-picture-card {
    background-color: hsla(0,0%,100%,.04);
    border: 1px dashed #434343;
    border-radius: 6px;
    cursor: pointer;
    height: 104px;
    margin-bottom: 8px;
    margin-right: 8px;
    text-align: center;
    transition: border-color .3s;
    vertical-align: top;
    width: 104px
}

.ant-upload.ant-upload-select-picture-card>.ant-upload {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center
}

.ant-upload.ant-upload-select-picture-card:hover {
    border-color: #f0b90b
}

.ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover {
    border-color: #434343
}

.ant-upload.ant-upload-drag {
    background: hsla(0,0%,100%,.04);
    border: 1px dashed #434343;
    border-radius: 6px;
    cursor: pointer;
    height: 100%;
    position: relative;
    text-align: center;
    transition: border-color .3s;
    width: 100%
}

.ant-upload.ant-upload-drag .ant-upload {
    padding: 16px 0
}

.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
    border-color: #fc0
}

.ant-upload.ant-upload-drag.ant-upload-disabled {
    cursor: not-allowed
}

.ant-upload.ant-upload-drag .ant-upload-btn {
    display: table;
    height: 100%
}

.ant-upload.ant-upload-drag .ant-upload-drag-container {
    display: table-cell;
    vertical-align: middle
}

.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
    border-color: #bf9003
}

.ant-upload.ant-upload-drag p.ant-upload-drag-icon {
    margin-bottom: 20px
}

.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
    color: #bf9003;
    font-size: 48px
}

.ant-upload.ant-upload-drag p.ant-upload-text {
    color: hsla(0,0%,100%,.85);
    font-size: 16px;
    margin: 0 0 4px
}

.ant-upload.ant-upload-drag p.ant-upload-hint {
    color: hsla(0,0%,100%,.45);
    font-size: 14px
}

.ant-upload.ant-upload-drag .anticon-plus {
    color: hsla(0,0%,100%,.3);
    font-size: 30px;
    transition: all .3s
}

.ant-upload.ant-upload-drag .anticon-plus:hover,.ant-upload.ant-upload-drag:hover .anticon-plus {
    color: hsla(0,0%,100%,.45)
}

.ant-upload-picture-card-wrapper {
    display: inline-block;
    width: 100%
}

.ant-upload-picture-card-wrapper:before {
    content: "";
    display: table
}

.ant-upload-picture-card-wrapper:after {
    clear: both;
    content: "";
    display: table
}

.ant-upload-list {
    font-feature-settings: "tnum","tnum";
    box-sizing: border-box;
    color: hsla(0,0%,100%,.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0
}

.ant-upload-list:after,.ant-upload-list:before {
    content: "";
    display: table
}

.ant-upload-list:after {
    clear: both
}

.ant-upload-list-item {
    font-size: 14px;
    height: 22.001px;
    margin-top: 8px;
    position: relative
}

.ant-upload-list-item-name {
    display: inline-block;
    line-height: 1.5715;
    overflow: hidden;
    padding-left: 22px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.ant-upload-list-item-card-actions {
    position: absolute;
    right: 0
}

.ant-upload-list-item-card-actions-btn {
    opacity: 0
}

.ant-upload-list-item-card-actions-btn.ant-btn-sm {
    height: 22.001px;
    line-height: 1;
    vertical-align: top
}

.ant-upload-list-item-card-actions.picture {
    line-height: 0;
    top: 22px
}

.ant-upload-list-item-card-actions-btn:focus,.ant-upload-list-item-card-actions.picture .ant-upload-list-item-card-actions-btn {
    opacity: 1
}

.ant-upload-list-item-card-actions .anticon {
    color: hsla(0,0%,100%,.45);
    transition: all .3s
}

.ant-upload-list-item-card-actions:hover .anticon {
    color: hsla(0,0%,100%,.85)
}

.ant-upload-list-item-info {
    height: 100%;
    transition: background-color .3s
}

.ant-upload-list-item-info>span {
    display: block;
    height: 100%;
    width: 100%
}

.ant-upload-list-item-info .ant-upload-text-icon .anticon,.ant-upload-list-item-info .anticon-loading .anticon {
    color: hsla(0,0%,100%,.45);
    font-size: 14px;
    position: absolute;
    top: 5px
}

.ant-upload-list-item:hover .ant-upload-list-item-info {
    background-color: hsla(0,0%,100%,.08)
}

.ant-upload-list-item:hover .ant-upload-list-item-card-actions-btn {
    opacity: 1
}

.ant-upload-list-item-error,.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon,.ant-upload-list-item-error .ant-upload-list-item-name,.ant-upload-list-item-error .ant-upload-text-icon>.anticon {
    color: #a61d24
}

.ant-upload-list-item-error .ant-upload-list-item-card-actions-btn {
    opacity: 1
}

.ant-upload-list-item-progress {
    bottom: -12px;
    font-size: 14px;
    line-height: 0;
    padding-left: 26px;
    position: absolute;
    width: 100%
}

.ant-upload-list-picture .ant-upload-list-item,.ant-upload-list-picture-card .ant-upload-list-item {
    border: 1px solid #434343;
    border-radius: 6px;
    height: 66px;
    padding: 8px;
    position: relative
}

.ant-upload-list-picture .ant-upload-list-item:hover,.ant-upload-list-picture-card .ant-upload-list-item:hover {
    background: transparent
}

.ant-upload-list-picture .ant-upload-list-item-error,.ant-upload-list-picture-card .ant-upload-list-item-error {
    border-color: #a61d24
}

.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
    background: transparent
}

.ant-upload-list-picture .ant-upload-list-item-uploading,.ant-upload-list-picture-card .ant-upload-list-item-uploading {
    border-style: dashed
}

.ant-upload-list-picture .ant-upload-list-item-thumbnail,.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
    height: 48px;
    line-height: 60px;
    opacity: .8;
    text-align: center;
    width: 48px
}

.ant-upload-list-picture .ant-upload-list-item-thumbnail .anticon,.ant-upload-list-picture-card .ant-upload-list-item-thumbnail .anticon {
    font-size: 26px
}

.ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill="#e6f7ff"],.ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill="#e6f7ff"] {
    fill: #2a1215
}

.ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill="#1890ff"],.ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill="#1890ff"] {
    fill: #a61d24
}

.ant-upload-list-picture .ant-upload-list-item-icon,.ant-upload-list-picture-card .ant-upload-list-item-icon {
    font-size: 26px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%)
}

.ant-upload-list-picture .ant-upload-list-item-icon .anticon,.ant-upload-list-picture-card .ant-upload-list-item-icon .anticon {
    font-size: 26px
}

.ant-upload-list-picture .ant-upload-list-item-image,.ant-upload-list-picture-card .ant-upload-list-item-image {
    max-width: 100%
}

.ant-upload-list-picture .ant-upload-list-item-thumbnail img,.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
    display: block;
    height: 48px;
    overflow: hidden;
    width: 48px
}

.ant-upload-list-picture .ant-upload-list-item-name,.ant-upload-list-picture-card .ant-upload-list-item-name {
    box-sizing: border-box;
    display: inline-block;
    line-height: 44px;
    margin: 0 0 0 8px;
    max-width: 100%;
    overflow: hidden;
    padding-left: 48px;
    padding-right: 8px;
    text-overflow: ellipsis;
    transition: all .3s;
    white-space: nowrap
}

.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
    margin-bottom: 12px
}

.ant-upload-list-picture .ant-upload-list-item-progress,.ant-upload-list-picture-card .ant-upload-list-item-progress {
    bottom: 14px;
    margin-top: 0;
    padding-left: 56px;
    width: calc(100% - 24px)
}

.ant-upload-list-picture-card-container {
    display: inline-block;
    height: 104px;
    margin: 0 8px 8px 0;
    vertical-align: top;
    width: 104px
}

.ant-upload-list-picture-card .ant-upload-list-item {
    height: 100%;
    margin: 0
}

.ant-upload-list-picture-card .ant-upload-list-item-info {
    height: 100%;
    overflow: hidden;
    position: relative
}

.ant-upload-list-picture-card .ant-upload-list-item-info:before {
    background-color: rgba(0,0,0,.5);
    content: " ";
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: 1
}

.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info:before {
    opacity: 1
}

.ant-upload-list-picture-card .ant-upload-list-item-actions {
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all .3s;
    white-space: nowrap;
    z-index: 10
}

.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye {
    color: hsla(0,0%,100%,.85);
    cursor: pointer;
    font-size: 16px;
    margin: 0 4px;
    transition: all .3s;
    width: 16px;
    z-index: 10
}

.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover {
    color: #fff
}

.ant-upload-list-picture-card .ant-upload-list-item-actions:hover,.ant-upload-list-picture-card .ant-upload-list-item-info:hover+.ant-upload-list-item-actions {
    opacity: 1
}

.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
    display: block;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: static;
    width: 100%
}

.ant-upload-list-picture-card .ant-upload-list-item-name {
    display: none;
    line-height: 1.5715;
    margin: 8px 0 0;
    padding: 0;
    text-align: center
}

.ant-upload-list-picture-card .ant-upload-list-item-file+.ant-upload-list-item-name {
    bottom: 10px;
    display: block;
    position: absolute
}

.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
    background-color: hsla(0,0%,100%,.04)
}

.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
    height: auto
}

.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete,.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye,.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info:before {
    display: none
}

.ant-upload-list-picture-card .ant-upload-list-item-progress {
    bottom: 32px;
    padding-left: 0;
    width: calc(100% - 14px)
}

.ant-upload-list-picture-container,.ant-upload-list-text-container {
    transition: opacity .3s,height .3s
}

.ant-upload-list-picture-container:before,.ant-upload-list-text-container:before {
    content: "";
    display: table;
    height: 0;
    width: 0
}

.ant-upload-list-picture-container .ant-upload-span,.ant-upload-list-text-container .ant-upload-span {
    display: block;
    flex: auto
}

.ant-upload-list-picture .ant-upload-span,.ant-upload-list-text .ant-upload-span {
    align-items: center;
    display: flex
}

.ant-upload-list-picture .ant-upload-span>*,.ant-upload-list-text .ant-upload-span>* {
    flex: none
}

.ant-upload-list-picture .ant-upload-list-item-name,.ant-upload-list-text .ant-upload-list-item-name {
    flex: auto;
    margin: 0;
    padding: 0 8px
}

.ant-upload-list-picture .ant-upload-list-item-card-actions,.ant-upload-list-text .ant-upload-list-item-card-actions,.ant-upload-list-text .ant-upload-text-icon .anticon {
    position: static
}

.ant-upload-list .ant-upload-animate-inline-appear,.ant-upload-list .ant-upload-animate-inline-enter,.ant-upload-list .ant-upload-animate-inline-leave {
    animation-duration: .3s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.78,.14,.15,.86)
}

.ant-upload-list .ant-upload-animate-inline-appear,.ant-upload-list .ant-upload-animate-inline-enter {
    animation-name: uploadAnimateInlineIn
}

.ant-upload-list .ant-upload-animate-inline-leave {
    animation-name: uploadAnimateInlineOut
}

@keyframes uploadAnimateInlineIn {
    0% {
        height: 0;
        margin: 0;
        opacity: 0;
        padding: 0;
        width: 0
    }
}

@keyframes uploadAnimateInlineOut {
    to {
        height: 0;
        margin: 0;
        opacity: 0;
        padding: 0;
        width: 0
    }
}

.ant-upload-rtl {
    direction: rtl
}

.ant-upload-rtl.ant-upload.ant-upload-select-picture-card {
    margin-left: 8px;
    margin-right: auto
}

.ant-upload-list-rtl {
    direction: rtl
}

.ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 {
    padding-left: 14px;
    padding-right: 22px
}

.ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 {
    padding-left: 28px;
    padding-right: 22px
}

.ant-upload-list-rtl .ant-upload-list-item-name {
    padding-left: 0;
    padding-right: 22px
}

.ant-upload-list-rtl .ant-upload-list-item-name-icon-count-1 {
    padding-left: 14px
}

.ant-upload-list-rtl .ant-upload-list-item-card-actions {
    left: 0;
    right: auto
}

.ant-upload-list-rtl .ant-upload-list-item-card-actions .anticon {
    padding-left: 5px;
    padding-right: 0
}

.ant-upload-list-rtl .ant-upload-list-item-info {
    padding: 0 4px 0 12px
}

.ant-upload-list-rtl .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
    padding-left: 5px;
    padding-right: 0
}

.ant-upload-list-rtl .ant-upload-list-item-progress {
    padding-left: 0;
    padding-right: 26px
}

.ant-upload-list-picture .ant-upload-list-item-info,.ant-upload-list-picture-card .ant-upload-list-item-info {
    padding: 0
}

.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-thumbnail,.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
    left: auto;
    right: 8px
}

.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-icon,.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-icon {
    left: auto;
    right: 50%;
    transform: translate(50%,-50%)
}

.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name,.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name {
    margin: 0 8px 0 0;
    padding-left: 8px;
    padding-right: 48px
}

.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1,.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 {
    padding-left: 18px;
    padding-right: 48px
}

.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2,.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 {
    padding-left: 36px;
    padding-right: 48px
}

.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-progress,.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-progress {
    padding-left: 0;
    padding-right: 0
}

.ant-upload-list-rtl .ant-upload-list-picture-card-container {
    margin: 0 0 8px 8px
}

.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-actions {
    left: auto;
    right: 50%;
    transform: translate(50%,-50%)
}

.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-file+.ant-upload-list-item-name {
    margin: 8px 0 0;
    padding: 0
}

.box {
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    padding: 30px
}

.box.dark {
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    padding: 30px
}

h2.title.dark {
    color: #fff!important
}

.modal-no-border .ant-modal-header {
    border-bottom: none
}

.modal-no-border .ant-modal-footer {
    border-top: none
}

@media screen and (max-width: 600px) {
    .customFullHeight .ant-modal-body {
        height:calc(100vh - 80px)
    }
}

.customDrawer.ant-drawer .ant-drawer-body,.customDrawer.ant-drawer .ant-drawer-header {
    background-color: #181a20
}

.hideOnMobile {
    display: none
}

@media screen and (min-width: 768px) {
    .hideOnMobile {
        display:block
    }
}

.center-area-spin {
    margin-top: 10px;
    text-align: center
}

.hideOnDesktop {
    display: block
}

@media screen and (min-width: 768px) {
    .hideOnDesktop {
        display:none
    }
}

.bo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -15px;
    margin-right: -15px
}

.bo-row [class*=bo-col] {
    padding-left: 15px;
    padding-right: 15px
}

.bo-row .bo-col-1 {
    width: 8.3333333333%
}

.bo-row .bo-col-2 {
    width: 16.66%
}

.bo-row .bo-col-3 {
    width: 25%
}

.bo-row .bo-col-4 {
    width: 33.33%
}

.bo-row .bo-col-5 {
    width: 41.66%
}

.bo-row .bo-col-6 {
    width: 50%
}

.bo-row .bo-col-7 {
    width: 58.33%
}

.bo-row .bo-col-8 {
    width: 66.66%
}

.bo-row .bo-col-9 {
    width: 75%
}

.bo-row .bo-col-10 {
    width: 83.33%
}

.bo-row .bo-col-11 {
    width: 91.66%
}

.bo-row .bo-col-12 {
    width: 100%
}

@media only screen and (max-width: 1400px) {
    .bo-row .bo-col-xxl-1 {
        width:8.3333333333%
    }

    .bo-row .bo-col-xxl-2 {
        width: 16.6666666667%
    }

    .bo-row .bo-col-xxl-3 {
        width: 25%
    }

    .bo-row .bo-col-xxl-4 {
        width: 33.3333333333%
    }

    .bo-row .bo-col-xxl-5 {
        width: 41.6666666667%
    }

    .bo-row .bo-col-xxl-6 {
        width: 50%
    }

    .bo-row .bo-col-xxl-7 {
        width: 58.3333333333%
    }

    .bo-row .bo-col-xxl-8 {
        width: 66.6666666667%
    }

    .bo-row .bo-col-xxl-9 {
        width: 75%
    }

    .bo-row .bo-col-xxl-10 {
        width: 83.3333333333%
    }

    .bo-row .bo-col-xxl-11 {
        width: 91.6666666667%
    }

    .bo-row .bo-col-xxl-12 {
        width: 100%
    }
}

@media only screen and (max-width: 1200px) {
    .bo-row .bo-col-xl-1 {
        width:8.3333333333%
    }

    .bo-row .bo-col-xl-2 {
        width: 16.6666666667%
    }

    .bo-row .bo-col-xl-3 {
        width: 25%
    }

    .bo-row .bo-col-xl-4 {
        width: 33.3333333333%
    }

    .bo-row .bo-col-xl-5 {
        width: 41.6666666667%
    }

    .bo-row .bo-col-xl-6 {
        width: 50%
    }

    .bo-row .bo-col-xl-7 {
        width: 58.3333333333%
    }

    .bo-row .bo-col-xl-8 {
        width: 66.6666666667%
    }

    .bo-row .bo-col-xl-9 {
        width: 75%
    }

    .bo-row .bo-col-xl-10 {
        width: 83.3333333333%
    }

    .bo-row .bo-col-xl-11 {
        width: 91.6666666667%
    }

    .bo-row .bo-col-xl-12 {
        width: 100%
    }
}

@media only screen and (max-width: 992px) {
    .bo-row .bo-col-lg-1 {
        width:8.3333333333%
    }

    .bo-row .bo-col-lg-2 {
        width: 16.6666666667%
    }

    .bo-row .bo-col-lg-3 {
        width: 25%
    }

    .bo-row .bo-col-lg-4 {
        width: 33.3333333333%
    }

    .bo-row .bo-col-lg-5 {
        width: 41.6666666667%
    }

    .bo-row .bo-col-lg-6 {
        width: 50%
    }

    .bo-row .bo-col-lg-7 {
        width: 58.3333333333%
    }

    .bo-row .bo-col-lg-8 {
        width: 66.6666666667%
    }

    .bo-row .bo-col-lg-9 {
        width: 75%
    }

    .bo-row .bo-col-lg-10 {
        width: 83.3333333333%
    }

    .bo-row .bo-col-lg-11 {
        width: 91.6666666667%
    }

    .bo-row .bo-col-lg-12 {
        width: 100%
    }
}

@media only screen and (max-width: 768px) {
    .bo-row .bo-col-md-1 {
        width:8.3333333333%
    }

    .bo-row .bo-col-md-2 {
        width: 16.6666666667%
    }

    .bo-row .bo-col-md-3 {
        width: 25%
    }

    .bo-row .bo-col-md-4 {
        width: 33.3333333333%
    }

    .bo-row .bo-col-md-5 {
        width: 41.6666666667%
    }

    .bo-row .bo-col-md-6 {
        width: 50%
    }

    .bo-row .bo-col-md-7 {
        width: 58.3333333333%
    }

    .bo-row .bo-col-md-8 {
        width: 66.6666666667%
    }

    .bo-row .bo-col-md-9 {
        width: 75%
    }

    .bo-row .bo-col-md-10 {
        width: 83.3333333333%
    }

    .bo-row .bo-col-md-11 {
        width: 91.6666666667%
    }

    .bo-row .bo-col-md-12 {
        width: 100%
    }
}

@media only screen and (max-width: 576px) {
    .bo-row .bo-col-sm-1 {
        width:8.3333333333%
    }

    .bo-row .bo-col-sm-2 {
        width: 16.6666666667%
    }

    .bo-row .bo-col-sm-3 {
        width: 25%
    }

    .bo-row .bo-col-sm-4 {
        width: 33.3333333333%
    }

    .bo-row .bo-col-sm-5 {
        width: 41.6666666667%
    }

    .bo-row .bo-col-sm-6 {
        width: 50%
    }

    .bo-row .bo-col-sm-7 {
        width: 58.3333333333%
    }

    .bo-row .bo-col-sm-8 {
        width: 66.6666666667%
    }

    .bo-row .bo-col-sm-9 {
        width: 75%
    }

    .bo-row .bo-col-sm-10 {
        width: 83.3333333333%
    }

    .bo-row .bo-col-sm-11 {
        width: 91.6666666667%
    }

    .bo-row .bo-col-sm-12 {
        width: 100%
    }
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: 5px
}

.p-3 {
    padding: 15px
}

.pl-0 {
    padding-left: 0
}

.pr-0 {
    padding-right: 0
}

.pr-2 {
    padding-right: 10px
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: 5px
}

.pb-0 {
    padding-bottom: 0
}

.pb-1 {
    padding-bottom: 5px
}

.px-0 {
    padding-left: 0;
    padding-right: 0
}

.px-3 {
    padding-left: 15px;
    padding-right: 15px
}

.py-0 {
    padding-bottom: 0;
    padding-top: 0
}

.py-2 {
    padding-bottom: 10px;
    padding-top: 10px
}

.py-3 {
    padding-bottom: 15px;
    padding-top: 15px
}

@media screen and (max-width: 1400px) {
    .p-xxl-0 {
        padding:0
    }

    .p-xxl-1 {
        padding: 5px
    }

    .p-xxl-3 {
        padding: 15px
    }

    .pl-xxl-0 {
        padding-left: 0
    }

    .pr-xxl-0 {
        padding-right: 0
    }

    .pr-xxl-2 {
        padding-right: 10px
    }

    .pt-xxl-0 {
        padding-top: 0
    }

    .pt-xxl-1 {
        padding-top: 5px
    }

    .pb-xxl-0 {
        padding-bottom: 0
    }

    .pb-xxl-1 {
        padding-bottom: 5px
    }

    .px-xxl-0 {
        padding-left: 0;
        padding-right: 0
    }

    .px-xxl-3 {
        padding-left: 15px;
        padding-right: 15px
    }

    .py-xxl-0 {
        padding-left: 0;
        padding-right: 0
    }

    .py-xxl-2 {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .py-xxl-3 {
        padding-bottom: 15px;
        padding-top: 15px
    }
}

@media screen and (max-width: 1200px) {
    .p-xl-0 {
        padding:0
    }

    .p-xl-1 {
        padding: 5px
    }

    .p-xl-3 {
        padding: 15px
    }

    .pl-xl-0 {
        padding-left: 0
    }

    .pr-xl-0 {
        padding-right: 0
    }

    .pr-xl-2 {
        padding-right: 10px
    }

    .pt-xl-0 {
        padding-top: 0
    }

    .pt-xl-1 {
        padding-top: 5px
    }

    .pb-xl-0 {
        padding-bottom: 0
    }

    .pb-xl-1 {
        padding-bottom: 5px
    }

    .px-xl-0 {
        padding-left: 0;
        padding-right: 0
    }

    .px-xl-3 {
        padding-left: 15px;
        padding-right: 15px
    }

    .py-xl-0 {
        padding-left: 0;
        padding-right: 0
    }

    .py-xl-2 {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .py-xl-3 {
        padding-bottom: 15px;
        padding-top: 15px
    }
}

@media screen and (max-width: 992px) {
    .p-lg-0 {
        padding:0
    }

    .p-lg-1 {
        padding: 5px
    }

    .p-lg-3 {
        padding: 15px
    }

    .pl-lg-0 {
        padding-left: 0
    }

    .pr-lg-0 {
        padding-right: 0
    }

    .pr-lg-2 {
        padding-right: 10px
    }

    .pt-lg-0 {
        padding-top: 0
    }

    .pt-lg-1 {
        padding-top: 5px
    }

    .pb-lg-0 {
        padding-bottom: 0
    }

    .pb-lg-1 {
        padding-bottom: 5px
    }

    .px-lg-0 {
        padding-left: 0;
        padding-right: 0
    }

    .px-lg-3 {
        padding-left: 15px;
        padding-right: 15px
    }

    .py-lg-0 {
        padding-left: 0;
        padding-right: 0
    }

    .py-lg-2 {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .py-lg-3 {
        padding-bottom: 15px;
        padding-top: 15px
    }
}

@media screen and (max-width: 768px) {
    .p-md-0 {
        padding:0
    }

    .p-md-1 {
        padding: 5px
    }

    .p-md-3 {
        padding: 15px
    }

    .pl-md-0 {
        padding-left: 0
    }

    .pr-md-0 {
        padding-right: 0
    }

    .pr-md-2 {
        padding-right: 10px
    }

    .pt-md-0 {
        padding-top: 0
    }

    .pt-md-1 {
        padding-top: 5px
    }

    .pb-md-0 {
        padding-bottom: 0
    }

    .pb-md-1 {
        padding-bottom: 5px
    }

    .px-md-0 {
        padding-left: 0;
        padding-right: 0
    }

    .px-md-3 {
        padding-left: 15px;
        padding-right: 15px
    }

    .py-md-0 {
        padding-left: 0;
        padding-right: 0
    }

    .py-md-2 {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .py-md-3 {
        padding-bottom: 15px;
        padding-top: 15px
    }
}

@media screen and (max-width: 576px) {
    .p-sm-0 {
        padding:0
    }

    .p-sm-1 {
        padding: 5px
    }

    .p-sm-3 {
        padding: 15px
    }

    .pl-sm-0 {
        padding-left: 0
    }

    .pr-sm-0 {
        padding-right: 0
    }

    .pr-sm-2 {
        padding-right: 10px
    }

    .pt-sm-0 {
        padding-top: 0
    }

    .pt-sm-1 {
        padding-top: 5px
    }

    .pb-sm-0 {
        padding-bottom: 0
    }

    .pb-sm-1 {
        padding-bottom: 5px
    }

    .px-sm-0 {
        padding-left: 0;
        padding-right: 0
    }

    .px-sm-3 {
        padding-left: 15px;
        padding-right: 15px
    }

    .py-sm-0 {
        padding-left: 0;
        padding-right: 0
    }

    .py-sm-2 {
        padding-bottom: 10px;
        padding-top: 10px
    }

    .py-sm-3 {
        padding-bottom: 15px;
        padding-top: 15px
    }
}

html {
    scroll-behavior: smooth
}

body {
    --toastify-color-dark: #02142b!important;
    -ms-scroll-chaining: none;
    font-family: Sarabun,sans-serif!important;
    font-optical-sizing: auto;
    font-style: normal;
    overscroll-behavior: none;
    touch-action: manipulation;
    -ms-touch-action: manipulation
}

#root {
    display: block
}

::-webkit-scrollbar {
    height: 10px;
    width: 10px
}

::-webkit-scrollbar-track {
    background-color: #111
}

::-webkit-scrollbar-thumb {
    background-color: #232323
}

::-webkit-scrollbar-thumb:hover {
    background: gray
}

::-webkit-scrollbar-corner {
    background-color: #111
}

.btn-swal-antd {
    background-color: #f0b90b;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 0 rgba(0,0,0,.05);
    color: #fff;
    cursor: pointer;
    outline: none;
    padding: 6px 25px;
    text-shadow: 0 -1px 0 rgba(0,0,0,.12);
    transition: all .25s ease
}

.btn-swal-antd:hover {
    background-color: #f7c740
}

.content-swal-antd {
    color: #000;
    font-size: 1rem
}

.title-swal-antd {
    font-size: 1.5rem
}

.no-border {
    border: 0!important
}

.swal2-popup.swal2-toast {
    padding: 10px 15px
}

.swal2-popup.swal2-toast .swal2-title {
    font-size: 14px;
    font-weight: 500;
    margin: 7px
}

.swal2-popup.swal2-toast .no-border {
    border: 0!important
}

.loading-spin {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: calc(100vh - 120px);
    justify-content: center;
    width: 100%
}

.ant-progress-text {
    display: none!important
}

.ant-progress-outer {
    padding: 0!important
}

.ant-progress-success-bg {
    background-color: #fa4b62
}

.ant-progress-bg {
    background-color: #04c793
}

.customButtonFit {
    align-items: center;
    color: #fff!important;
    display: flex;
    font-size: 1rem!important;
    font-weight: 400;
    height: 36px;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.homeDrawer {
    display: flex;
    flex-direction: column!important;
    height: 80dvh!important;
    justify-content: space-between!important
}

.passwordInput {
    border-color: #4d505d!important
}

.passwordInput .ant-input-password-icon,.passwordInput svg {
    height: 24px;
    width: 24px
}

.passwordInput svg {
    color: #4d505d!important;
    cursor: pointer
}

.fill-primary {
    fill: #f0b90b!important
}

.stroke-primary {
    stroke: #f0b90b!important
}

.text-primary {
    color: #f0b90b
}

.highcharts-plot-line-label {
    margin-left: -5px!important;
    overflow: visible!important
}

@media only screen and (max-width: 768px) {
    .highcharts-plot-line-label {
        margin-left:12px!important;
        margin-top: -2px!important
    }
}

.plotlineChart {
    align-items: flex-end;
    display: flex;
    flex-direction: column
}

.text-danger {
    --tw-text-opacity: 1!important;
    color: #fa4b62!important;
    font-size: 80%!important;
    font-style: italic!important;
    font-weight: 400!important;
    margin-top: -10px
}

.plotlineChart span.price,.plotlineChart span.time {
    background-color: #d1a305;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 11px;
    padding: 6px
}

.plotlineChart span.time {
    margin-top: 2px;
    text-align: right
}

.plotlineChartMobile {
    align-items: flex-end;
    display: flex;
    flex-direction: column
}

.plotlineChartMobile span.price,.plotlineChartMobile span.time {
    background-color: #d1a305;
    border-radius: .25rem;
    color: #fff;
    display: block;
    font-size: .625rem;
    letter-spacing: .05em!important;
    padding: .375rem
}

.plotlineChartMobile span.time {
    margin-top: 4px;
    text-align: right
}

.custom-date-picker .ant-picker-input>input {
    font-size: 1rem;
    text-align: center
}

@media screen and (max-width: 768px) {
    .custom-date-picker .ant-picker-input>input {
        font-size:14px
    }
}

.custom-date-picker {
    width: 100%
}

.ant-btn-primary {
    background: linear-gradient(180deg,#f5b42a,#f5b42a)!important;
    color: #fff!important;
    font-weight: 700!important
}

.ant-btn-primary:hover {
    background: linear-gradient(180deg,#ffc107,#ffc107)!important
}

.ant-btn-primary.ant-btn-dangerous {
    background: #fa4b62!important;
    color: #fff!important;
    font-weight: 700!important
}

.ant-btn-primary.ant-btn-dangerous:hover {
    background: red!important
}

.no-padding-modal .ant-modal-body {
    padding: 0!important
}

.no-padding-modal .ant-modal-footer {
    padding: 3px 16px
}

.ant-modal-body {
    border-radius: 5px;
    padding: 15px 20px 20px
}

.ant-modal-body,.ant-modal-footer,.ant-modal-header {
    background-color: #181a20
}

.ant-radio-button-wrapper-checked span {
    color: #000;
    font-weight: 700
}

@media screen and (max-width: 992px) {
    .custom-modal-wrapper {
        -webkit-overflow-scrolling:touch;
        height: 100vh;
        overflow-y: auto
    }

    .custom-modal-wrapper::-webkit-scrollbar {
        width: 6px
    }

    .custom-modal-wrapper::-webkit-scrollbar-track {
        background: transparent
    }

    .custom-modal-wrapper::-webkit-scrollbar-thumb {
        background-color: hsla(0,0%,100%,.3);
        border-radius: 3px
    }
}

body {
    background-color: #050819!important
}

input:-webkit-autofill,input:-webkit-autofill:focus,input:-webkit-autofill:hover,select:-webkit-autofill,select:-webkit-autofill:focus,select:-webkit-autofill:hover,textarea:-webkit-autofill,textarea:-webkit-autofill:focus,textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: #fff;
    -webkit-transition: background-color 9999s ease-in-out 0s;
    transition: background-color 9999s ease-in-out 0s
}

@font-face {
    font-family: Frizon;
    src: local("Frizon"),url(/static/media/Frizon.e09be36cf53cb6081dae.ttf) format("truetype")
}

@font-face {
    font-family: SVN-MissionX;
    src: url(/static/media/SVN-MissionX.f366c9e7c52a27dac65d.otf) format("opentype")
}

@font-face {
    font-family: LucidaGrande;
    src: local("LucidaGrande"),url(/static/media/LucidaGrande.e3a5361b34465d3fa3d5.ttf) format("truetype")
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: #04c793!important
}

.Toastify__toast-theme--colored.Toastify__toast--error,.Toastify__toast-theme--colored.Toastify__toast--success {
    color: #fff!important;
    font-family: Sarabun,sans-serif!important;
    font-size: 17px!important;
    font-weight: 600!important
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: #fa4b62!important
}

.feb2023-modal-kyc-user-no-line .ant-modal-footer {
    border-top: initial!important
}

.highcharts-navigator,.highcharts-navigator-xaxis {
    visibility: hidden
}

.highcharts-yaxis .highcharts-axis-line {
    stroke-dasharray: 6 2.25
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=number]::-ms-clear,input[type=number]::-ms-reveal {
    display: none;
    height: 0;
    width: 0
}
