
/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

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

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

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

@keyframes bounce {
    0%,20%,53%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

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

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

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

    25%,75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

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

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

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,to {
        transform: translateZ(0)
    }

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

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

.shake {
    animation-name: shake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

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

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,11.1%,to {
        transform: none
    }

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

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

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

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

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

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

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

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

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

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

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

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

.bounceInDown {
    animation-name: bounceInDown
}

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

.bounceInLeft {
    animation-name: bounceInLeft
}

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

.bounceInRight {
    animation-name: bounceInRight
}

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

.bounceInUp {
    animation-name: bounceInUp
}

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

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

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

.bounceOut {
    animation-name: bounceOut
}

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

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

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

.bounceOutDown {
    animation-name: bounceOutDown
}

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

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

.bounceOutLeft {
    animation-name: bounceOutLeft
}

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

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

.bounceOutRight {
    animation-name: bounceOutRight
}

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

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

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

.bounceOutUp {
    animation-name: bounceOutUp
}

.fadeIn {
    animation-name: fadeIn
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

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

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

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

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

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

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }

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

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

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

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

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

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

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

    to {
        transform: none;
        opacity: 1
    }
}

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

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

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

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

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

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

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

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

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

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

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

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

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

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

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

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

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

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

.hinge {
    animation-name: hinge
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

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

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

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

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

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

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

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

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

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

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

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

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

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

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

.zoomOutLeft {
    animation-name: zoomOutLeft
}

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

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

.zoomOutRight {
    animation-name: zoomOutRight
}

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

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

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

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

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

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

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

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

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

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

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

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

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

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

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

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

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

.slideOutUp {
    animation-name: slideOutUp
}

@keyframes react-loading-skeleton {
    to {
        transform: translateX(100%)
    }
}

.react-loading-skeleton {
    --base-color: #ebebeb;
    --highlight-color: #f5f5f5;
    --animation-duration: 1.5s;
    --animation-direction: normal;
    --pseudo-element-display: block;
    background-color: var(--base-color);
    width: 100%;
    border-radius: .25rem;
    display: inline-flex;
    line-height: 1;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: hidden
}

.react-loading-skeleton:after {
    content: " ";
    display: var(--pseudo-element-display);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg,var(--base-color),var(--highlight-color),var(--base-color));
    transform: translateX(-100%);
    animation-name: react-loading-skeleton;
    animation-direction: var(--animation-direction);
    animation-duration: var(--animation-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite
}

@media (prefers-reduced-motion) {
    .react-loading-skeleton {
        --pseudo-element-display: none
    }
}

:root {
    --rt-color-white: #fff;
    --rt-color-dark: #222;
    --rt-color-success: #8dc572;
    --rt-color-error: #be6464;
    --rt-color-warning: #f0ad4e;
    --rt-color-info: #337ab7;
    --rt-opacity: 0.9;
    --rt-transition-show-delay: 0.15s;
    --rt-transition-closing-delay: 0.15s
}

.core-styles-module_tooltip__3vRRp {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    will-change: opacity
}

.core-styles-module_fixed__pcSol {
    position: fixed
}

.core-styles-module_arrow__cvMwQ {
    background: inherit;
    position: absolute
}

.core-styles-module_noArrow__xock6 {
    display: none
}

.core-styles-module_clickable__ZuTTB {
    pointer-events: auto
}

.core-styles-module_show__Nt9eE {
    opacity: var(--rt-opacity);
    transition: opacity var(--rt-transition-show-delay) ease-out
}

.core-styles-module_closing__sGnxF {
    opacity: 0;
    transition: opacity var(--rt-transition-closing-delay) ease-in
}

.styles-module_tooltip__mnnfp {
    border-radius: 3px;
    font-size: 90%;
    padding: 8px 16px;
    width: max-content
}

.styles-module_arrow__K0L3T {
    height: 8px;
    width: 8px
}

[class*=react-tooltip__place-top]>.styles-module_arrow__K0L3T {
    transform: rotate(45deg)
}

[class*=react-tooltip__place-right]>.styles-module_arrow__K0L3T {
    transform: rotate(135deg)
}

[class*=react-tooltip__place-bottom]>.styles-module_arrow__K0L3T {
    transform: rotate(225deg)
}

[class*=react-tooltip__place-left]>.styles-module_arrow__K0L3T {
    transform: rotate(315deg)
}

.styles-module_dark__xNqje {
    background: var(--rt-color-dark);
    color: var(--rt-color-white)
}

.styles-module_light__Z6W-X {
    background-color: var(--rt-color-white);
    color: var(--rt-color-dark)
}

.styles-module_success__A2AKt {
    background-color: var(--rt-color-success);
    color: var(--rt-color-white)
}

.styles-module_warning__SCK0X {
    background-color: var(--rt-color-warning);
    color: var(--rt-color-white)
}

.styles-module_error__JvumD {
    background-color: var(--rt-color-error);
    color: var(--rt-color-white)
}

.styles-module_info__BWdHW {
    background-color: var(--rt-color-info);
    color: var(--rt-color-white)
}

/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(180deg,hsla(0,0%,100%,.15),hsla(0,0%,100%,0))
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    font-family: var(--font-family);
    color: #212529;
    background-color: #fff;
    -webkit-tap-highlight-color: transparent
}

hr {
    background-color: currentColor
}

abbr[data-bs-original-title],abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

code,kbd,pre,samp {
    direction: ltr;
    unicode-bidi: bidi-override
}

caption {
    color: #6c757d
}

button:focus:not(:focus-visible) {
    outline: 0
}

select:disabled {
    opacity: 1
}

::file-selector-button {
    font: inherit
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-1 {
        font-size:5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-2 {
        font-size:4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-3 {
        font-size:4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-4 {
        font-size:3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-5 {
        font-size:3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-6 {
        font-size:2.5rem
    }
}

.initialism {
    text-transform: uppercase
}

.blockquote-footer {
    color: #6c757d
}

.blockquote-footer:before {
    content: "— "
}

.figure-caption {
    color: #6c757d
}

.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem)
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5)
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

@media (min-width: 576px) {
    .col-sm {
        flex:1 0
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex:1 0
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex:1 0
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex:1 0
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex:1 0
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,.gx-0 {
    --bs-gutter-x: 0
}

.g-0,.gy-0 {
    --bs-gutter-y: 0
}

.g-1,.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex:0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,.gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,.gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,.gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,.gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,.gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,.gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,.gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,.gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,.gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,.gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,.gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,.gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex:0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width:50%
        
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,.gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,.gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,.gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,.gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,.gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,.gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,.gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,.gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,.gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,.gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,.gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,.gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex:0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,.gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,.gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,.gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,.gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,.gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,.gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,.gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,.gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,.gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,.gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,.gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,.gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1200px) {
    .col-xl-auto {
        flex:0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,.gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,.gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,.gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,.gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,.gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,.gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,.gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,.gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,.gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,.gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,.gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,.gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1400px) {
    .col-xxl-auto {
        flex:0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0,.gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,.gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,.gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1,.gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2,.gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2,.gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3,.gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,.gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,.gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,.gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,.gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,.gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0,0,0,.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0,0,0,.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0,0,0,.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6
}

.table>:not(caption)>*>* {
    padding: .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: currentColor
}

.caption-top {
    caption-side: top
}

.table-sm>:not(caption)>*>* {
    padding: .25rem
}

.table-bordered>:not(caption)>* {
    border-width: 1px 0
}

.table-bordered>:not(caption)>*>* {
    border-width: 0 1px
}

.table-borderless>:not(caption)>*>* {
    border-bottom-width: 0
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bacbe6
}

.table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #badce3
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e6dbb9
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfc2c4
}

.table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfe0e1
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x:auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x:auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x:auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x:auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x:auto;
        -webkit-overflow-scrolling: touch
    }
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end:.75rem;color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width:1px;border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }

    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end:.75rem;color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width:1px;border-radius: 0;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm {
    min-height: calc(1.5em + (.5rem + 2px));
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.form-control-sm::file-selector-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end:.5rem}

.form-control-sm::-webkit-file-upload-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end:.5rem}

.form-control-lg {
    min-height: calc(1.5em + (1rem + 2px));
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.form-control-lg::file-selector-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end:1rem}

.form-control-lg::-webkit-file-upload-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end:1rem}

textarea.form-control {
    min-height: calc(1.5em + (.75rem + 2px))
}

textarea.form-control-sm {
    min-height: calc(1.5em + (.5rem + 2px))
}

textarea.form-control-lg {
    min-height: calc(1.5em + (1rem + 2px))
}

.form-control-color {
    max-width: 3rem;
    height: auto;
    padding: .375rem
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: .25rem
}

.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: .25rem
}

.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-select {
        transition: none
    }
}

.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-select[multiple],.form-select[size]:not([size="1"]) {
    padding-right: .75rem;
    background-image: none
}

.form-select:disabled {
    background-color: #e9ecef
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529
}

.form-select-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

.form-select-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5
}

.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label {
    opacity: .5
}

.form-switch {
    padding-left: 2.5em
}

.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: 0;
    border-radius: 2em;
    transition: background-position .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-switch .form-check-input {
        transition: none
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
    background-position: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none
}

.btn-check:disabled+.btn,.btn-check[disabled]+.btn {
    pointer-events: none;
    filter: none;
    opacity: .65
}

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.form-range:focus {
    outline: 0
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
}

.form-range::-moz-focus-outer {
    border: 0
}

.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe
}

.form-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range:disabled {
    pointer-events: none
}

.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.form-floating {
    position: relative
}

.form-floating>.form-control,.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25
}

.form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem .75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-floating>label {
        transition: none
    }
}

.form-floating>.form-control {
    padding: 1rem .75rem
}

.form-floating>.form-control::placeholder {
    color: transparent
}

.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control,.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0
}

.input-group>.form-control:focus,.input-group>.form-select:focus {
    z-index: 3
}

.input-group .btn {
    position: relative;
    z-index: 2
}

.input-group .btn:focus {
    z-index: 3
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.input-group-lg>.form-select,.input-group-sm>.form-select {
    padding-right: 3rem
}

.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #198754
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(25,135,84,.9);
    border-radius: .25rem
}

.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,.was-validated .form-control:valid {
    border-color: #198754;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-valid:focus,.was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
}

.was-validated textarea.form-control:valid,textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.form-select.is-valid,.was-validated .form-select:valid {
    border-color: #198754
}

.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right .75rem center,center right 2.25rem;
    background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-select.is-valid:focus,.was-validated .form-select:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
}

.form-check-input.is-valid,.was-validated .form-check-input:valid {
    border-color: #198754
}

.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked {
    background-color: #198754
}

.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
}

.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label {
    color: #198754
}

.form-check-inline .form-check-input~.valid-feedback {
    margin-left: .5em
}

.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid {
    z-index: 1
}

.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus {
    z-index: 3
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem
}

.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
}

.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.form-select.is-invalid,.was-validated .form-select:invalid {
    border-color: #dc3545
}

.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-position: right .75rem center,center right 2.25rem;
    background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
}

.form-check-input.is-invalid,.was-validated .form-check-input:invalid {
    border-color: #dc3545
}

.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked {
    background-color: #dc3545
}

.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
}

.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-inline .form-check-input~.invalid-feedback {
    margin-left: .5em
}

.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid {
    z-index: 2
}

.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus {
    z-index: 3
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529
}

.btn-check:focus+.btn,.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.btn.disabled,.btn:disabled,fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65
}

.btn-primary {
    background-color: #9acd32;
    border-color: #0d6efd
}

.btn-check:focus+.btn-primary,.btn-primary:focus,.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca
}

.btn-check:focus+.btn-primary,.btn-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(49,132,253,.5)
}

.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be
}

.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(49,132,253,.5)
}

.btn-primary.disabled,.btn-primary:disabled {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64
}

.btn-check:focus+.btn-secondary,.btn-secondary:focus {
    box-shadow: 0 0 0 .25rem hsla(208,6%,54%,.5)
}

.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #565e64;
    border-color: #51585e
}

.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem hsla(208,6%,54%,.5)
}

.btn-secondary.disabled,.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43
}

.btn-check:focus+.btn-success,.btn-success:focus {
    box-shadow: 0 0 0 .25rem rgba(60,153,110,.5)
}

.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #146c43;
    border-color: #13653f
}

.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(60,153,110,.5)
}

.btn-success.disabled,.btn-success:disabled {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2
}

.btn-check:focus+.btn-info,.btn-info:focus {
    box-shadow: 0 0 0 .25rem rgba(11,172,204,.5)
}

.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle {
    color: #000;
    background-color: #3dd5f3;
    border-color: #25cff2
}

.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(11,172,204,.5)
}

.btn-info.disabled,.btn-info:disabled {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720
}

.btn-check:focus+.btn-warning,.btn-warning:focus {
    box-shadow: 0 0 0 .25rem rgba(217,164,6,.5)
}

.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle {
    color: #000;
    background-color: #ffcd39;
    border-color: #ffc720
}

.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(217,164,6,.5)
}

.btn-warning.disabled,.btn-warning:disabled {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37
}

.btn-check:focus+.btn-danger,.btn-danger:focus {
    box-shadow: 0 0 0 .25rem rgba(225,83,97,.5)
}

.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b02a37;
    border-color: #a52834
}

.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(225,83,97,.5)
}

.btn-danger.disabled,.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb
}

.btn-check:focus+.btn-light,.btn-light:focus {
    box-shadow: 0 0 0 .25rem hsla(210,2%,83%,.5)
}

.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb
}

.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem hsla(210,2%,83%,.5)
}

.btn-light.disabled,.btn-light:disabled {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21
}

.btn-check:focus+.btn-dark,.btn-dark:focus {
    box-shadow: 0 0 0 .25rem rgba(66,70,73,.5)
}

.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1a1e21;
    border-color: #191c1f
}

.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(66,70,73,.5)
}

.btn-dark.disabled,.btn-dark:disabled {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.5)
}

.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.5)
}

.btn-outline-primary.disabled,.btn-outline-primary:disabled {
    color: #0d6efd;
    background-color: transparent
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .25rem hsla(208,7%,46%,.5)
}

.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus {
    box-shadow: 0 0 0 .25rem hsla(208,7%,46%,.5)
}

.btn-outline-secondary.disabled,.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-success {
    color: #198754;
    border-color: #198754
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:focus+.btn-outline-success,.btn-outline-success:focus {
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.5)
}

.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus {
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.5)
}

.btn-outline-success.disabled,.btn-outline-success:disabled {
    color: #198754;
    background-color: transparent
}

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-outline-info:hover {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:focus+.btn-outline-info,.btn-outline-info:focus {
    box-shadow: 0 0 0 .25rem rgba(13,202,240,.5)
}

.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13,202,240,.5)
}

.btn-outline-info.disabled,.btn-outline-info:disabled {
    color: #0dcaf0;
    background-color: transparent
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:hover {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus {
    box-shadow: 0 0 0 .25rem rgba(255,193,7,.5)
}

.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus {
    box-shadow: 0 0 0 .25rem rgba(255,193,7,.5)
}

.btn-outline-warning.disabled,.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus {
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.5)
}

.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus {
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.5)
}

.btn-outline-danger.disabled,.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-check:focus+.btn-outline-light,.btn-outline-light:focus {
    box-shadow: 0 0 0 .25rem rgba(248,249,250,.5)
}

.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus {
    box-shadow: 0 0 0 .25rem rgba(248,249,250,.5)
}

.btn-outline-light.disabled,.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus {
    box-shadow: 0 0 0 .25rem rgba(33,37,41,.5)
}

.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus {
    box-shadow: 0 0 0 .25rem rgba(33,37,41,.5)
}

.btn-outline-dark.disabled,.btn-outline-dark:disabled {
    color: #212529;
    background-color: transparent
}

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline
}

.btn-link:hover {
    color: #0a58ca
}

.btn-link.disabled,.btn-link:disabled {
    color: #6c757d
}

.btn-group-lg>.btn,.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.btn-group-sm>.btn,.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown,.dropend,.dropstart,.dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: .125rem
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position:start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position:start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position:start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position:start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position:start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropend .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropend .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-toggle:after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropstart .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    display: none
}

.dropstart .dropdown-toggle:before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropstart .dropdown-toggle:before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.15)
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus,.dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef
}

.dropdown-item.active,.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd
}

.dropdown-item.disabled,.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1rem;
    color: #212529
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(0,0,0,.15)
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover {
    color: #fff;
    background-color: hsla(0,0%,100%,.15)
}

.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active {
    color: #fff;
    background-color: #0d6efd
}

.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(0,0,0,.15)
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd
}

.btn-group,.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical>.btn,.btn-group>.btn {
    position: relative;
    flex: 1 1 auto
}

.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after {
    margin-left: 0
}

.dropstart .dropdown-toggle-split:before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.btn-group-vertical>.btn,.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus,.nav-link:hover {
    color: #0a58ca
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem
}

.nav-pills .nav-link.active,.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #0d6efd
}

.nav-fill .nav-item,.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,.nav-justified>.nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link {
    width: 100%
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static
}

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height,75vh);
    overflow-y: auto
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap:nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap:nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap:nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap:nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap:nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xxl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xxl .navbar-collapse {
        display: flex!important;
        flex-basis: auto
    }

    .navbar-expand-xxl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: flex!important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.55)
}

.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0,0,0,.7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0,0,0,.3)
}

.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: rgba(0,0,0,.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,.55)
}

.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover {
    color: rgba(0,0,0,.9)
}

.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: hsla(0,0%,100%,.55)
}

.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover {
    color: hsla(0,0%,100%,.75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: hsla(0,0%,100%,.25)
}

.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: hsla(0,0%,100%,.55);
    border-color: hsla(0,0%,100%,.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: hsla(0,0%,100%,.55)
}

.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover {
    color: #fff
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem
}

.card>hr {
    margin-right: 0;
    margin-left: 0
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.card-header+.list-group,.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem
}

.card-subtitle,.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .5rem 1rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    margin-bottom: -.5rem;
    border-bottom: 0
}

.card-header-pills,.card-header-tabs {
    margin-right: -.5rem;
    margin-left: -.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(.25rem - 1px)
}

.card-img,.card-img-bottom,.card-img-top {
    width: 100%
}

.card-img,.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-group>.card {
    margin-bottom: .75rem
}

@media (min-width: 576px) {
    .card-group {
        display:flex;
        flex-flow: row wrap
    }

    .card-group>.card {
        flex: 1 0;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125)
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg)
}

.accordion-button:after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button:after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.accordion-item:not(:first-of-type) {
    border-top: 0
}

.accordion-item:last-of-type {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

.accordion-flush .accordion-item:first-child {
    border-top: 0
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item:before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider,"/")
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    padding-left: 0;
    list-style: none
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .page-link {
        transition: none
    }
}

.page-link:hover {
    z-index: 2;
    border-color: #dee2e6
}

.page-link:focus,.page-link:hover {
    color: #0a58ca;
    background-color: #e9ecef
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.alert {
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 3rem
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe
}

.alert-primary .alert-link {
    color: #06357a
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8
}

.alert-secondary .alert-link {
    color: #34383c
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc
}

.alert-success .alert-link {
    color: #0c4128
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb
}

.alert-info .alert-link {
    color: #04414d
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5
}

.alert-warning .alert-link {
    color: #523e02
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

.alert-danger .alert-link {
    color: #6a1a21
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe
}

.alert-light .alert-link {
    color: #4f5050
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf
}

.alert-dark .alert-link {
    color: #101214
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    height: 1rem;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress,.progress-bar {
    display: flex;
    overflow: hidden
}

.progress-bar {
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section
}

.list-group-numbered>li:before {
    content: counters(section,".") ". ";
    counter-increment: section
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:focus,.list-group-item-action:hover {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px
}

.list-group-horizontal {
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px
}

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction:row
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction:row
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction:row
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction:row
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media (min-width: 1400px) {
    .list-group-horizontal-xxl {
        flex-direction:row
    }

    .list-group-horizontal-xxl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xxl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xxl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    color: #084298;
    background-color: #cfe2ff
}

.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover {
    color: #084298;
    background-color: #bacbe6
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #084298;
    border-color: #084298
}

.list-group-item-secondary {
    color: #41464b;
    background-color: #e2e3e5
}

.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover {
    color: #41464b;
    background-color: #cbccce
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #41464b;
    border-color: #41464b
}

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd
}

.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover {
    color: #0f5132;
    background-color: #bcd0c7
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #0f5132;
    border-color: #0f5132
}

.list-group-item-info {
    color: #055160;
    background-color: #cff4fc
}

.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover {
    color: #055160;
    background-color: #badce3
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #055160;
    border-color: #055160
}

.list-group-item-warning {
    color: #664d03;
    background-color: #fff3cd
}

.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover {
    color: #664d03;
    background-color: #e6dbb9
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #664d03;
    border-color: #664d03
}

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da
}

.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover {
    color: #842029;
    background-color: #dfc2c4
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #842029;
    border-color: #842029
}

.list-group-item-light {
    color: #636464;
    background-color: #fefefe
}

.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover {
    color: #636464;
    background-color: #e5e5e5
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #636464;
    border-color: #636464
}

.list-group-item-dark {
    color: #141619;
    background-color: #d3d3d4
}

.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover {
    color: #141619;
    background-color: #bebebf
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #141619;
    border-color: #141619
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") 50%/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    opacity: 1
}

.btn-close.disabled,.btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: .25
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: hsla(0,0%,100%,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .25rem
}

.toast:not(.showing):not(.show) {
    opacity: 0
}

.toast.hide {
    display: none
}

.toast-container {
    width: max-content;
    max-width: 100%;
    pointer-events: none
}

.toast-container>:not(:last-child) {
    margin-bottom: .75rem
}

.toast-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    color: #6c757d;
    background-color: hsla(0,0%,100%,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.toast-header .btn-close {
    margin-right: -.375rem;
    margin-left: .75rem
}

.toast-body {
    padding: .75rem;
    word-wrap: break-word
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
    padding: .5rem;
    margin: -.5rem -.5rem -.5rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width:500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg,.modal-xl {
        max-width:800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width:1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

.modal-fullscreen .modal-footer {
    border-radius: 0
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0
    }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .tooltip-arrow:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow {
    bottom: 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before {
    top: -1px;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before {
    right: -1px;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000
}

.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow {
    top: 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before {
    bottom: -1px;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before {
    left: -1px;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem
}

.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem
}

.popover .popover-arrow:after,.popover .popover-arrow:before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgba(0,0,0,.25)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: rgba(0,0,0,.25)
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #fff
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before {
    top: 0;
    border-width: 0 .5rem .5rem;
    border-bottom-color: rgba(0,0,0,.25)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after {
    top: 1px;
    border-width: 0 .5rem .5rem;
    border-bottom-color: #fff
}

.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: rgba(0,0,0,.25)
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(0,0,0,.2);
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: 1rem;
    color: #212529
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner:after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,.carousel-item-prev,.carousel-item.active {
    display: block
}

.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next,.carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

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

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid;
    border-right: .25em solid transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .spinner-border,.spinner-grow {
        animation-duration: 1.5s
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .offcanvas {
        transition: none
    }
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem
}

.offcanvas-header .btn-close {
    padding: .5rem;
    margin-top: -.5rem;
    margin-right: -.5rem;
    margin-bottom: -.5rem
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0,0,0,.2);
    transform: translateX(-100%)
}

.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(0,0,0,.2);
    transform: translateX(100%)
}

.offcanvas-top {
    top: 0;
    border-bottom: 1px solid rgba(0,0,0,.2);
    transform: translateY(-100%)
}

.offcanvas-bottom,.offcanvas-top {
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%
}

.offcanvas-bottom {
    border-top: 1px solid rgba(0,0,0,.2);
    transform: translateY(100%)
}

.offcanvas.show {
    transform: none
}

.clearfix:after {
    display: block;
    clear: both;
    content: ""
}

.link-primary {
    color: #0d6efd
}

.link-primary:focus,.link-primary:hover {
    color: #0a58ca
}

.link-secondary {
    color: #6c757d
}

.link-secondary:focus,.link-secondary:hover {
    color: #565e64
}

.link-success {
    color: #198754
}

.link-success:focus,.link-success:hover {
    color: #146c43
}

.link-info {
    color: #0dcaf0
}

.link-info:focus,.link-info:hover {
    color: #3dd5f3
}

.link-warning {
    color: #ffc107
}

.link-warning:focus,.link-warning:hover {
    color: #ffcd39
}

.link-danger {
    color: #dc3545
}

.link-danger:focus,.link-danger:hover {
    color: #b02a37
}

.link-light {
    color: #f8f9fa
}

.link-light:focus,.link-light:hover {
    color: #f9fafb
}

.link-dark {
    color: #212529
}

.link-dark:focus,.link-dark:hover {
    color: #1a1e21
}

.ratio {
    position: relative;
    width: 100%
}

.ratio:before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%)
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%)
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%)
}

.fixed-top {
    top: 0
}

.fixed-bottom,.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    bottom: 0
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position:-webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position:-webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position:-webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position:-webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position:-webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important
}

.stretched-link:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: ""
}

.text-truncate {
    overflow: none;
    text-overflow: ellipsis;
    white-space: nowrap
}

.align-baseline {
    vertical-align: baseline!important
}

.align-top {
    vertical-align: top!important
}

.align-middle {
    vertical-align: middle!important
}

.align-bottom {
    vertical-align: bottom!important
}

.align-text-bottom {
    vertical-align: text-bottom!important
}

.align-text-top {
    vertical-align: text-top!important
}

.float-start {
    float: left!important
}

.float-end {
    float: right!important
}

.float-none {
    float: none!important
}

.overflow-auto {
    overflow: auto!important
}

.overflow-hidden {
    overflow: hidden!important
}

.overflow-visible {
    overflow: visible!important
}

.overflow-scroll {
    overflow: scroll!important
}

.d-inline {
    display: inline!important
}

.d-inline-block {
    display: inline-block!important
}

.d-block {
    display: block!important
}

.d-grid {
    display: grid!important
}

.d-table {
    display: table!important
}

.d-table-row {
    display: table-row!important
}

.d-table-cell {
    display: table-cell!important
}

.d-flex {
    display: flex!important
}

.d-inline-flex {
    display: inline-flex!important
}

.d-none {
    display: none!important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important
}

.shadow-none {
    box-shadow: none!important
}

.position-static {
    position: static!important
}

.position-relative {
    position: relative!important
}

.position-absolute {
    position: absolute!important
}

.position-fixed {
    position: fixed!important
}

.position-sticky {
    position: -webkit-sticky!important;
    position: sticky!important
}

.top-0 {
    top: 0!important
}

.top-50 {
    top: 50%!important
}

.top-100 {
    top: 100%!important
}

.bottom-0 {
    bottom: 0!important
}

.bottom-50 {
    bottom: 50%!important
}

.bottom-100 {
    bottom: 100%!important
}

.start-0 {
    left: 0!important
}

.start-50 {
    left: 50%!important
}

.start-100 {
    left: 100%!important
}

.end-0 {
    right: 0!important
}

.end-50 {
    right: 50%!important
}

.end-100 {
    right: 100%!important
}

.translate-middle {
    transform: translate(-50%,-50%)!important
}

.translate-middle-x {
    transform: translateX(-50%)!important
}

.translate-middle-y {
    transform: translateY(-50%)!important
}

.border {
    border: 1px solid #dee2e6!important
}

.border-0 {
    border: 0!important
}

.border-top {
    border-top: 1px solid #dee2e6!important
}

.border-top-0 {
    border-top: 0!important
}

.border-end {
    border-right: 1px solid #dee2e6!important
}

.border-end-0 {
    border-right: 0!important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6!important
}

.border-bottom-0 {
    border-bottom: 0!important
}

.border-start {
    border-left: 1px solid #dee2e6!important
}

.border-start-0 {
    border-left: 0!important
}

.border-primary {
    border-color: #0d6efd!important
}

.border-secondary {
    border-color: #6c757d!important
}

.border-success {
    border-color: #198754!important
}

.border-info {
    border-color: #0dcaf0!important
}

.border-warning {
    border-color: #ffc107!important
}

.border-danger {
    border-color: #dc3545!important
}

.border-light {
    border-color: #f8f9fa!important
}

.border-dark {
    border-color: #212529!important
}

.border-white {
    border-color: #fff!important
}

.border-1 {
    border-width: 1px!important
}

.border-2 {
    border-width: 2px!important
}

.border-3 {
    border-width: 3px!important
}

.border-4 {
    border-width: 4px!important
}

.border-5 {
    border-width: 5px!important
}

.w-25 {
    width: 25%!important
}

.w-50 {
    width: 50%!important
}

.w-75 {
    width: 75%!important
}

.w-100 {
    width: 100%!important
}

.w-auto {
    width: auto!important
}

.mw-100 {
    max-width: 100%!important
}

.vw-100 {
    width: 100vw!important
}

.min-vw-100 {
    min-width: 100vw!important
}

.h-25 {
    height: 25%!important
}

.h-50 {
    height: 50%!important
}

.h-75 {
    height: 75%!important
}

.h-100 {
    height: 100%!important
}

.h-auto {
    height: auto!important
}

.mh-100 {
    max-height: 100%!important
}

.vh-100 {
    height: 100vh!important
}

.min-vh-100 {
    min-height: 100vh!important
}

.flex-fill {
    flex: 1 1 auto!important
}

.flex-row {
    flex-direction: row!important
}

.flex-column {
    flex-direction: column!important
}

.flex-row-reverse {
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    flex-direction: column-reverse!important
}

.flex-grow-0 {
    flex-grow: 0!important
}

.flex-grow-1 {
    flex-grow: 1!important
}

.flex-shrink-0 {
    flex-shrink: 0!important
}

.flex-shrink-1 {
    flex-shrink: 1!important
}

.flex-wrap {
    flex-wrap: wrap!important
}

.flex-nowrap {
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.gap-0 {
    gap: 0!important
}

.gap-1 {
    gap: .25rem!important
}

.gap-2 {
    gap: .5rem!important
}

.gap-3 {
    gap: 1rem!important
}

.gap-4 {
    gap: 1.5rem!important
}

.gap-5 {
    gap: 3rem!important
}

.justify-content-start {
    justify-content: flex-start!important
}

.justify-content-end {
    justify-content: flex-end!important
}

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

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

.justify-content-around {
    justify-content: space-around!important
}

.justify-content-evenly {
    justify-content: space-evenly!important
}

.align-items-start {
    align-items: flex-start!important
}

.align-items-end {
    align-items: flex-end!important
}

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

.align-items-baseline {
    align-items: baseline!important
}

.align-items-stretch {
    align-items: stretch!important
}

.align-content-start {
    align-content: flex-start!important
}

.align-content-end {
    align-content: flex-end!important
}

.align-content-center {
    align-content: center!important
}

.align-content-between {
    align-content: space-between!important
}

.align-content-around {
    align-content: space-around!important
}

.align-content-stretch {
    align-content: stretch!important
}

.align-self-auto {
    align-self: auto!important
}

.align-self-start {
    align-self: flex-start!important
}

.align-self-end {
    align-self: flex-end!important
}

.align-self-center {
    align-self: center!important
}

.align-self-baseline {
    align-self: baseline!important
}

.align-self-stretch {
    align-self: stretch!important
}

.order-first {
    order: -1!important
}

.order-0 {
    order: 0!important
}

.order-1 {
    order: 1!important
}

.order-2 {
    order: 2!important
}

.order-3 {
    order: 3!important
}

.order-4 {
    order: 4!important
}

.order-5 {
    order: 5!important
}

.order-last {
    order: 6!important
}

.m-0 {
    margin: 0!important
}

.m-1 {
    margin: .25rem!important
}

.m-2 {
    margin: .5rem!important
}

.m-3 {
    margin: 1rem!important
}

.m-4 {
    margin: 1.5rem!important
}

.m-5 {
    margin: 3rem!important
}

.m-auto {
    margin: auto!important
}

.mx-0 {
    margin-right: 0!important;
    margin-left: 0!important
}

.mx-1 {
    margin-right: .25rem!important;
    margin-left: .25rem!important
}

.mx-2 {
    margin-right: .5rem!important;
    margin-left: .5rem!important
}

.mx-3 {
    margin-right: 1rem!important;
    margin-left: 1rem!important
}

.mx-4 {
    margin-right: 1.5rem!important;
    margin-left: 1.5rem!important
}

.mx-5 {
    margin-right: 3rem!important;
    margin-left: 3rem!important
}

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

.my-0 {
    margin-top: 0!important;
    margin-bottom: 0!important
}

.my-1 {
    margin-top: .25rem!important;
    margin-bottom: .25rem!important
}

.my-2 {
    margin-top: .5rem!important;
    margin-bottom: .5rem!important
}

.my-3 {
    margin-top: 1rem!important;
    margin-bottom: 1rem!important
}

.my-4 {
    margin-top: 1.5rem!important;
    margin-bottom: 1.5rem!important
}

.my-5 {
    margin-top: 3rem!important;
    margin-bottom: 3rem!important
}

.my-auto {
    margin-top: auto!important;
    margin-bottom: auto!important
}

.mt-0 {
    margin-top: 0!important
}

.mt-1 {
    margin-top: .25rem!important
}

.mt-2 {
    margin-top: .5rem!important
}

.mt-3 {
    margin-top: 1rem!important
}

.mt-4 {
    margin-top: 1.5rem!important
}

.mt-5 {
    margin-top: 3rem!important
}

.mt-auto {
    margin-top: auto!important
}

.me-0 {
    margin-right: 0!important
}

.me-1 {
    margin-right: .25rem!important
}

.me-2 {
    margin-right: .5rem!important
}

.me-3 {
    margin-right: 1rem!important
}

.me-4 {
    margin-right: 1.5rem!important
}

.me-5 {
    margin-right: 3rem!important
}

.me-auto {
    margin-right: auto!important
}

.mb-0 {
    margin-bottom: 0!important
}

.mb-1 {
    margin-bottom: .25rem!important
}

.mb-2 {
    margin-bottom: .5rem!important
}

.mb-3 {
    margin-bottom: 1rem!important
}

.mb-4 {
    margin-bottom: 1.5rem!important;
   background : #00796b
}

.mb-5 {
    margin-bottom: 3rem!important
}

.mb-auto {
    margin-bottom: auto!important
}

.ms-0 {
    margin-left: 0!important
}

.ms-1 {
    margin-left: .25rem!important
}

.ms-2 {
    margin-left: .5rem!important
}

.ms-3 {
    margin-left: 1rem!important
}

.ms-4 {
    margin-left: 1.5rem!important
}

.ms-5 {
    margin-left: 3rem!important
}

.ms-auto {
    margin-left: auto!important
}

.p-0 {
    padding: 0!important
}

.p-1 {
    padding: .25rem!important
}

.p-2 {
    padding: .5rem!important
}

.p-3 {
    padding: 1rem!important
}

.p-4 {
    padding: 1.5rem!important
}

.p-5 {
    padding: 3rem!important
}

.px-0 {
    padding-right: 0!important;
    padding-left: 0!important
}

.px-1 {
    padding-right: .25rem!important;
    padding-left: .25rem!important
}

.px-2 {
    padding-right: .5rem!important;
    padding-left: .5rem!important
}

.px-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important
}

.px-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important
}

.px-5 {
    padding-right: 3rem!important;
    padding-left: 3rem!important
}

.py-0 {
    padding-top: 0!important;
    padding-bottom: 0!important
}

.py-1 {
    padding-top: .25rem!important;
    padding-bottom: .25rem!important
}

.py-2 {
    padding-top: .5rem!important;
    padding-bottom: .5rem!important
}

.py-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important
}

.py-4 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important
}

.py-5 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important
}

.pt-0 {
    padding-top: 0!important
}

.pt-1 {
    padding-top: .25rem!important
}

.pt-2 {
    padding-top: .5rem!important
}

.pt-3 {
    padding-top: 1rem!important
}

.pt-4 {
    padding-top: 1.5rem!important
}

.pt-5 {
    padding-top: 3rem!important
}

.pe-0 {
    padding-right: 0!important
}

.pe-1 {
    padding-right: .25rem!important
}

.pe-2 {
    padding-right: .5rem!important
}

.pe-3 {
    padding-right: 1rem!important
}

.pe-4 {
    padding-right: 1.5rem!important
}

.pe-5 {
    padding-right: 3rem!important
}

.pb-0 {
    padding-bottom: 0!important
}

.pb-1 {
    padding-bottom: .25rem!important
}

.pb-2 {
    padding-bottom: .5rem!important
}

.pb-3 {
    padding-bottom: 1rem!important
}

.pb-4 {
    padding-bottom: 1.5rem!important
}

.pb-5 {
    padding-bottom: 3rem!important
}

.ps-0 {
    padding-left: 0!important
}

.ps-1 {
    padding-left: .25rem!important
}

.ps-2 {
    padding-left: .5rem!important
}

.ps-3 {
    padding-left: 1rem!important
}

.ps-4 {
    padding-left: 1.5rem!important
}

.ps-5 {
    padding-left: 3rem!important
}

.font-monospace {
    font-family: var(--bs-font-monospace)!important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw)!important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw)!important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw)!important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw)!important
}

.fs-5 {
    font-size: 1.25rem!important
}

.fs-6 {
    font-size: 1rem!important
}

.fst-italic {
    font-style: italic!important
}

.fst-normal {
    font-style: normal!important
}

.fw-light {
    font-weight: 300!important
}

.fw-lighter {
    font-weight: lighter!important
}

.fw-normal {
    font-weight: 400!important
}

.fw-bold {
    font-weight: 700!important
}

.fw-bolder {
    font-weight: bolder!important
}

.lh-1 {
    line-height: 1!important
}

.lh-sm {
    line-height: 1.25!important
}

.lh-base {
    line-height: 1.5!important
}

.lh-lg {
    line-height: 2!important
}

.text-start {
    text-align: left!important
}

.text-end {
    text-align: right!important
}

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

.text-decoration-none {
    text-decoration: none!important
}

.text-decoration-underline {
    text-decoration: underline!important
}

.text-decoration-line-through {
    text-decoration: line-through!important
}

.text-lowercase {
    text-transform: lowercase!important
}

.text-uppercase {
    text-transform: uppercase!important
}

.text-capitalize {
    text-transform: capitalize!important
}

.text-wrap {
    white-space: normal!important
}

.text-nowrap {
    white-space: nowrap!important
}

.text-break {
    word-wrap: break-word!important;
    word-break: break-word!important
}

.text-primary {
    color: #0d6efd!important
}

.text-secondary {
    color: #6c757d!important
}

.text-success {
    color: #198754!important
}

.text-info {
    color: #0dcaf0!important
}

.text-warning {
    color: #ffc107!important
}

.text-danger {
    color: #dc3545!important
}

.text-light {
    color: #f8f9fa!important
}

.text-dark {
    color: #212529!important
}

.text-white {
    color: #fff!important
}

.text-body {
    color: #212529!important
}

.text-muted {
    color: #6c757d!important
}

.text-black-50 {
    color: rgba(0,0,0,.5)!important
}

.text-white-50 {
    color: hsla(0,0%,100%,.5)!important
}

.text-reset {
    color: inherit!important
}

.bg-primary {
    background-color: #0d6efd!important
}

.bg-secondary {
    background-color: #6c757d!important
}

.bg-success {
    background-color: #198754!important
}

.bg-info {
    background-color: #0dcaf0!important
}

.bg-warning {
    background-color: #ffc107!important
}

.bg-danger {
    background-color: #dc3545!important
}

.bg-light {
    background-color: #f8f9fa!important
}

.bg-dark {
    background-color: #212529!important
}

.bg-body,.bg-white {
    background-color: #fff!important
}

.bg-transparent {
    background-color: transparent!important
}

.bg-gradient {
    background-image: var(--bs-gradient)!important
}

.user-select-all {
    -webkit-user-select: all!important;
    -moz-user-select: all!important;
    user-select: all!important
}

.user-select-auto {
    -webkit-user-select: auto!important;
    -moz-user-select: auto!important;
    user-select: auto!important
}

.user-select-none {
    -webkit-user-select: none!important;
    -moz-user-select: none!important;
    user-select: none!important
}

.pe-none {
    pointer-events: none!important
}

.pe-auto {
    pointer-events: auto!important
}

.rounded {
    border-radius: .25rem!important
}

.rounded-0 {
    border-radius: 0!important
}

.rounded-1 {
    border-radius: .2rem!important
}

.rounded-2 {
    border-radius: .25rem!important
}

.rounded-3 {
    border-radius: .3rem!important
}

.rounded-circle {
    border-radius: 50%!important
}

.rounded-pill {
    border-radius: 50rem!important
}

.rounded-top {
    border-top-left-radius: .25rem!important
}

.rounded-end,.rounded-top {
    border-top-right-radius: .25rem!important
}

.rounded-bottom,.rounded-end {
    border-bottom-right-radius: .25rem!important
}

.rounded-bottom,.rounded-start {
    border-bottom-left-radius: .25rem!important
}

.rounded-start {
    border-top-left-radius: .25rem!important
}

.visible {
    visibility: visible!important
}

.invisible {
    visibility: hidden!important
}

@media (min-width: 576px) {
    .float-sm-start {
        float:left!important
    }

    .float-sm-end {
        float: right!important
    }

    .float-sm-none {
        float: none!important
    }

    .d-sm-inline {
        display: inline!important
    }

    .d-sm-inline-block {
        display: inline-block!important
    }

    .d-sm-block {
        display: block!important
    }

    .d-sm-grid {
        display: grid!important
    }

    .d-sm-table {
        display: table!important
    }

    .d-sm-table-row {
        display: table-row!important
    }

    .d-sm-table-cell {
        display: table-cell!important
    }

    .d-sm-flex {
        display: flex!important
    }

    .d-sm-inline-flex {
        display: inline-flex!important
    }

    .d-sm-none {
        display: none!important
    }

    .flex-sm-fill {
        flex: 1 1 auto!important
    }

    .flex-sm-row {
        flex-direction: row!important
    }

    .flex-sm-column {
        flex-direction: column!important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-sm-grow-0 {
        flex-grow: 0!important
    }

    .flex-sm-grow-1 {
        flex-grow: 1!important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-sm-wrap {
        flex-wrap: wrap!important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-sm-0 {
        gap: 0!important
    }

    .gap-sm-1 {
        gap: .25rem!important
    }

    .gap-sm-2 {
        gap: .5rem!important
    }

    .gap-sm-3 {
        gap: 1rem!important
    }

    .gap-sm-4 {
        gap: 1.5rem!important
    }

    .gap-sm-5 {
        gap: 3rem!important
    }

    .justify-content-sm-start {
        justify-content: flex-start!important
    }

    .justify-content-sm-end {
        justify-content: flex-end!important
    }

    .justify-content-sm-center {
        justify-content: center!important
    }

    .justify-content-sm-between {
        justify-content: space-between!important
    }

    .justify-content-sm-around {
        justify-content: space-around!important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly!important
    }

    .align-items-sm-start {
        align-items: flex-start!important
    }

    .align-items-sm-end {
        align-items: flex-end!important
    }

    .align-items-sm-center {
        align-items: center!important
    }

    .align-items-sm-baseline {
        align-items: baseline!important
    }

    .align-items-sm-stretch {
        align-items: stretch!important
    }

    .align-content-sm-start {
        align-content: flex-start!important
    }

    .align-content-sm-end {
        align-content: flex-end!important
    }

    .align-content-sm-center {
        align-content: center!important
    }

    .align-content-sm-between {
        align-content: space-between!important
    }

    .align-content-sm-around {
        align-content: space-around!important
    }

    .align-content-sm-stretch {
        align-content: stretch!important
    }

    .align-self-sm-auto {
        align-self: auto!important
    }

    .align-self-sm-start {
        align-self: flex-start!important
    }

    .align-self-sm-end {
        align-self: flex-end!important
    }

    .align-self-sm-center {
        align-self: center!important
    }

    .align-self-sm-baseline {
        align-self: baseline!important
    }

    .align-self-sm-stretch {
        align-self: stretch!important
    }

    .order-sm-first {
        order: -1!important
    }

    .order-sm-0 {
        order: 0!important
    }

    .order-sm-1 {
        order: 1!important
    }

    .order-sm-2 {
        order: 2!important
    }

    .order-sm-3 {
        order: 3!important
    }

    .order-sm-4 {
        order: 4!important
    }

    .order-sm-5 {
        order: 5!important
    }

    .order-sm-last {
        order: 6!important
    }

    .m-sm-0 {
        margin: 0!important
    }

    .m-sm-1 {
        margin: .25rem!important
    }

    .m-sm-2 {
        margin: .5rem!important
    }

    .m-sm-3 {
        margin: 1rem!important
    }

    .m-sm-4 {
        margin: 1.5rem!important
    }

    .m-sm-5 {
        margin: 3rem!important
    }

    .m-sm-auto {
        margin: auto!important
    }

    .mx-sm-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }

    .mx-sm-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }

    .mx-sm-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }

    .mx-sm-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }

    .mx-sm-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }

    .mx-sm-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }

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

    .my-sm-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }

    .my-sm-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }

    .my-sm-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }

    .my-sm-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }

    .my-sm-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }

    .my-sm-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }

    .my-sm-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }

    .mt-sm-0 {
        margin-top: 0!important
    }

    .mt-sm-1 {
        margin-top: .25rem!important
    }

    .mt-sm-2 {
        margin-top: .5rem!important
    }

    .mt-sm-3 {
        margin-top: 1rem!important
    }

    .mt-sm-4 {
        margin-top: 1.5rem!important
    }

    .mt-sm-5 {
        margin-top: 3rem!important
    }

    .mt-sm-auto {
        margin-top: auto!important
    }

    .me-sm-0 {
        margin-right: 0!important
    }

    .me-sm-1 {
        margin-right: .25rem!important
    }

    .me-sm-2 {
        margin-right: .5rem!important
    }

    .me-sm-3 {
        margin-right: 1rem!important
    }

    .me-sm-4 {
        margin-right: 1.5rem!important
    }

    .me-sm-5 {
        margin-right: 3rem!important
    }

    .me-sm-auto {
        margin-right: auto!important
    }

    .mb-sm-0 {
        margin-bottom: 0!important
    }

    .mb-sm-1 {
        margin-bottom: .25rem!important
    }

    .mb-sm-2 {
        margin-bottom: .5rem!important
    }

    .mb-sm-3 {
        margin-bottom: 1rem!important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-sm-5 {
        margin-bottom: 3rem!important
    }

    .mb-sm-auto {
        margin-bottom: auto!important
    }

    .ms-sm-0 {
        margin-left: 0!important
    }

    .ms-sm-1 {
        margin-left: .25rem!important
    }

    .ms-sm-2 {
        margin-left: .5rem!important
    }

    .ms-sm-3 {
        margin-left: 1rem!important
    }

    .ms-sm-4 {
        margin-left: 1.5rem!important
    }

    .ms-sm-5 {
        margin-left: 3rem!important
    }

    .ms-sm-auto {
        margin-left: auto!important
    }

    .p-sm-0 {
        padding: 0!important
    }

    .p-sm-1 {
        padding: .25rem!important
    }

    .p-sm-2 {
        padding: .5rem!important
    }

    .p-sm-3 {
        padding: 1rem!important
    }

    .p-sm-4 {
        padding: 1.5rem!important
    }

    .p-sm-5 {
        padding: 3rem!important
    }

    .px-sm-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }

    .px-sm-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }

    .px-sm-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }

    .px-sm-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }

    .px-sm-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }

    .px-sm-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }

    .py-sm-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }

    .py-sm-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }

    .py-sm-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }

    .py-sm-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }

    .py-sm-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }

    .py-sm-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }

    .pt-sm-0 {
        padding-top: 0!important
    }

    .pt-sm-1 {
        padding-top: .25rem!important
    }

    .pt-sm-2 {
        padding-top: .5rem!important
    }

    .pt-sm-3 {
        padding-top: 1rem!important
    }

    .pt-sm-4 {
        padding-top: 1.5rem!important
    }

    .pt-sm-5 {
        padding-top: 3rem!important
    }

    .pe-sm-0 {
        padding-right: 0!important
    }

    .pe-sm-1 {
        padding-right: .25rem!important
    }

    .pe-sm-2 {
        padding-right: .5rem!important
    }

    .pe-sm-3 {
        padding-right: 1rem!important
    }

    .pe-sm-4 {
        padding-right: 1.5rem!important
    }

    .pe-sm-5 {
        padding-right: 3rem!important
    }

    .pb-sm-0 {
        padding-bottom: 0!important
    }

    .pb-sm-1 {
        padding-bottom: .25rem!important
    }

    .pb-sm-2 {
        padding-bottom: .5rem!important
    }

    .pb-sm-3 {
        padding-bottom: 1rem!important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-sm-5 {
        padding-bottom: 3rem!important
    }

    .ps-sm-0 {
        padding-left: 0!important
    }

    .ps-sm-1 {
        padding-left: .25rem!important
    }

    .ps-sm-2 {
        padding-left: .5rem!important
    }

    .ps-sm-3 {
        padding-left: 1rem!important
    }

    .ps-sm-4 {
        padding-left: 1.5rem!important
    }

    .ps-sm-5 {
        padding-left: 3rem!important
    }

    .text-sm-start {
        text-align: left!important
    }

    .text-sm-end {
        text-align: right!important
    }

    .text-sm-center {
        text-align: center!important
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float:left!important
    }

    .float-md-end {
        float: right!important
    }

    .float-md-none {
        float: none!important
    }

    .d-md-inline {
        display: inline!important
    }

    .d-md-inline-block {
        display: inline-block!important
    }

    .d-md-block {
        display: block!important
    }

    .d-md-grid {
        display: grid!important
    }

    .d-md-table {
        display: table!important
    }

    .d-md-table-row {
        display: table-row!important
    }

    .d-md-table-cell {
        display: table-cell!important
    }

    .d-md-flex {
        display: flex!important
    }

    .d-md-inline-flex {
        display: inline-flex!important
    }

    .d-md-none {
        display: none!important
    }

    .flex-md-fill {
        flex: 1 1 auto!important
    }

    .flex-md-row {
        flex-direction: row!important
    }

    .flex-md-column {
        flex-direction: column!important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-md-grow-0 {
        flex-grow: 0!important
    }

    .flex-md-grow-1 {
        flex-grow: 1!important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-md-wrap {
        flex-wrap: wrap!important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-md-0 {
        gap: 0!important
    }

    .gap-md-1 {
        gap: .25rem!important
    }

    .gap-md-2 {
        gap: .5rem!important
    }

    .gap-md-3 {
        gap: 1rem!important
    }

    .gap-md-4 {
        gap: 1.5rem!important
    }

    .gap-md-5 {
        gap: 3rem!important
    }

    .justify-content-md-start {
        justify-content: flex-start!important
    }

    .justify-content-md-end {
        justify-content: flex-end!important
    }

    .justify-content-md-center {
        justify-content: center!important
    }

    .justify-content-md-between {
        justify-content: space-between!important
    }

    .justify-content-md-around {
        justify-content: space-around!important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly!important
    }

    .align-items-md-start {
        align-items: flex-start!important
    }

    .align-items-md-end {
        align-items: flex-end!important
    }

    .align-items-md-center {
        align-items: center!important
    }

    .align-items-md-baseline {
        align-items: baseline!important
    }

    .align-items-md-stretch {
        align-items: stretch!important
    }

    .align-content-md-start {
        align-content: flex-start!important
    }

    .align-content-md-end {
        align-content: flex-end!important
    }

    .align-content-md-center {
        align-content: center!important
    }

    .align-content-md-between {
        align-content: space-between!important
    }

    .align-content-md-around {
        align-content: space-around!important
    }

    .align-content-md-stretch {
        align-content: stretch!important
    }

    .align-self-md-auto {
        align-self: auto!important
    }

    .align-self-md-start {
        align-self: flex-start!important
    }

    .align-self-md-end {
        align-self: flex-end!important
    }

    .align-self-md-center {
        align-self: center!important
    }

    .align-self-md-baseline {
        align-self: baseline!important
    }

    .align-self-md-stretch {
        align-self: stretch!important
    }

    .order-md-first {
        order: -1!important
    }

    .order-md-0 {
        order: 0!important
    }

    .order-md-1 {
        order: 1!important
    }

    .order-md-2 {
        order: 2!important
    }

    .order-md-3 {
        order: 3!important
    }

    .order-md-4 {
        order: 4!important
    }

    .order-md-5 {
        order: 5!important
    }

    .order-md-last {
        order: 6!important
    }

    .m-md-0 {
        margin: 0!important
    }

    .m-md-1 {
        margin: .25rem!important
    }

    .m-md-2 {
        margin: .5rem!important
    }

    .m-md-3 {
        margin: 1rem!important
    }

    .m-md-4 {
        margin: 1.5rem!important
    }

    .m-md-5 {
        margin: 3rem!important
    }

    .m-md-auto {
        margin: auto!important
    }

    .mx-md-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }

    .mx-md-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }

    .mx-md-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }

    .mx-md-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }

    .mx-md-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }

    .mx-md-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }

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

    .my-md-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }

    .my-md-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }

    .my-md-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }

    .my-md-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }

    .my-md-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }

    .my-md-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }

    .my-md-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }

    .mt-md-0 {
        margin-top: 0!important
    }

    .mt-md-1 {
        margin-top: .25rem!important
    }

    .mt-md-2 {
        margin-top: .5rem!important
    }

    .mt-md-3 {
        margin-top: 1rem!important
    }

    .mt-md-4 {
        margin-top: 1.5rem!important
    }

    .mt-md-5 {
        margin-top: 3rem!important
    }

    .mt-md-auto {
        margin-top: auto!important
    }

    .me-md-0 {
        margin-right: 0!important
    }

    .me-md-1 {
        margin-right: .25rem!important
    }

    .me-md-2 {
        margin-right: .5rem!important
    }

    .me-md-3 {
        margin-right: 1rem!important
    }

    .me-md-4 {
        margin-right: 1.5rem!important
    }

    .me-md-5 {
        margin-right: 3rem!important
    }

    .me-md-auto {
        margin-right: auto!important
    }

    .mb-md-0 {
        margin-bottom: 0!important
    }

    .mb-md-1 {
        margin-bottom: .25rem!important
    }

    .mb-md-2 {
        margin-bottom: .5rem!important
    }

    .mb-md-3 {
        margin-bottom: 1rem!important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-md-5 {
        margin-bottom: 3rem!important
    }

    .mb-md-auto {
        margin-bottom: auto!important
    }

    .ms-md-0 {
        margin-left: 0!important
    }

    .ms-md-1 {
        margin-left: .25rem!important
    }

    .ms-md-2 {
        margin-left: .5rem!important
    }

    .ms-md-3 {
        margin-left: 1rem!important
    }

    .ms-md-4 {
        margin-left: 1.5rem!important
    }

    .ms-md-5 {
        margin-left: 3rem!important
    }

    .ms-md-auto {
        margin-left: auto!important
    }

    .p-md-0 {
        padding: 0!important
    }

    .p-md-1 {
        padding: .25rem!important
    }

    .p-md-2 {
        padding: .5rem!important
    }

    .p-md-3 {
        padding: 1rem!important
    }

    .p-md-4 {
        padding: 1.5rem!important
    }

    .p-md-5 {
        padding: 3rem!important
    }

    .px-md-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }

    .px-md-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }

    .px-md-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }

    .px-md-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }

    .px-md-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }

    .px-md-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }

    .py-md-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }

    .py-md-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }

    .py-md-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }

    .py-md-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }

    .py-md-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }

    .py-md-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }

    .pt-md-0 {
        padding-top: 0!important
    }

    .pt-md-1 {
        padding-top: .25rem!important
    }

    .pt-md-2 {
        padding-top: .5rem!important
    }

    .pt-md-3 {
        padding-top: 1rem!important
    }

    .pt-md-4 {
        padding-top: 1.5rem!important
    }

    .pt-md-5 {
        padding-top: 3rem!important
    }

    .pe-md-0 {
        padding-right: 0!important
    }

    .pe-md-1 {
        padding-right: .25rem!important
    }

    .pe-md-2 {
        padding-right: .5rem!important
    }

    .pe-md-3 {
        padding-right: 1rem!important
    }

    .pe-md-4 {
        padding-right: 1.5rem!important
    }

    .pe-md-5 {
        padding-right: 3rem!important
    }

    .pb-md-0 {
        padding-bottom: 0!important
    }

    .pb-md-1 {
        padding-bottom: .25rem!important
    }

    .pb-md-2 {
        padding-bottom: .5rem!important
    }

    .pb-md-3 {
        padding-bottom: 1rem!important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-md-5 {
        padding-bottom: 3rem!important
    }

    .ps-md-0 {
        padding-left: 0!important
    }

    .ps-md-1 {
        padding-left: .25rem!important
    }

    .ps-md-2 {
        padding-left: .5rem!important
    }

    .ps-md-3 {
        padding-left: 1rem!important
    }

    .ps-md-4 {
        padding-left: 1.5rem!important
    }

    .ps-md-5 {
        padding-left: 3rem!important
    }

    .text-md-start {
        text-align: left!important
    }

    .text-md-end {
        text-align: right!important
    }

    .text-md-center {
        text-align: center!important
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float:left!important
    }

    .float-lg-end {
        float: right!important
    }

    .float-lg-none {
        float: none!important
    }

    .d-lg-inline {
        display: inline!important
    }

    .d-lg-inline-block {
        display: inline-block!important
    }

    .d-lg-block {
        display: block!important
    }

    .d-lg-grid {
        display: grid!important
    }

    .d-lg-table {
        display: table!important
    }

    .d-lg-table-row {
        display: table-row!important
    }

    .d-lg-table-cell {
        display: table-cell!important
    }

    .d-lg-flex {
        display: flex!important
    }

    .d-lg-inline-flex {
        display: inline-flex!important
    }

    .d-lg-none {
        display: none!important
    }

    .flex-lg-fill {
        flex: 1 1 auto!important
    }

    .flex-lg-row {
        flex-direction: row!important
    }

    .flex-lg-column {
        flex-direction: column!important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-lg-grow-0 {
        flex-grow: 0!important
    }

    .flex-lg-grow-1 {
        flex-grow: 1!important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-lg-wrap {
        flex-wrap: wrap!important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-lg-0 {
        gap: 0!important
    }

    .gap-lg-1 {
        gap: .25rem!important
    }

    .gap-lg-2 {
        gap: .5rem!important
    }

    .gap-lg-3 {
        gap: 1rem!important
    }

    .gap-lg-4 {
        gap: 1.5rem!important
    }

    .gap-lg-5 {
        gap: 3rem!important
    }

    .justify-content-lg-start {
        justify-content: flex-start!important
    }

    .justify-content-lg-end {
        justify-content: flex-end!important
    }

    .justify-content-lg-center {
        justify-content: center!important
    }

    .justify-content-lg-between {
        justify-content: space-between!important
    }

    .justify-content-lg-around {
        justify-content: space-around!important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly!important
    }

    .align-items-lg-start {
        align-items: flex-start!important
    }

    .align-items-lg-end {
        align-items: flex-end!important
    }

    .align-items-lg-center {
        align-items: center!important
    }

    .align-items-lg-baseline {
        align-items: baseline!important
    }

    .align-items-lg-stretch {
        align-items: stretch!important
    }

    .align-content-lg-start {
        align-content: flex-start!important
    }

    .align-content-lg-end {
        align-content: flex-end!important
    }

    .align-content-lg-center {
        align-content: center!important
    }

    .align-content-lg-between {
        align-content: space-between!important
    }

    .align-content-lg-around {
        align-content: space-around!important
    }

    .align-content-lg-stretch {
        align-content: stretch!important
    }

    .align-self-lg-auto {
        align-self: auto!important
    }

    .align-self-lg-start {
        align-self: flex-start!important
    }

    .align-self-lg-end {
        align-self: flex-end!important
    }

    .align-self-lg-center {
        align-self: center!important
    }

    .align-self-lg-baseline {
        align-self: baseline!important
    }

    .align-self-lg-stretch {
        align-self: stretch!important
    }

    .order-lg-first {
        order: -1!important
    }

    .order-lg-0 {
        order: 0!important
    }

    .order-lg-1 {
        order: 1!important
    }

    .order-lg-2 {
        order: 2!important
    }

    .order-lg-3 {
        order: 3!important
    }

    .order-lg-4 {
        order: 4!important
    }

    .order-lg-5 {
        order: 5!important
    }

    .order-lg-last {
        order: 6!important
    }

    .m-lg-0 {
        margin: 0!important
    }

    .m-lg-1 {
        margin: .25rem!important
    }

    .m-lg-2 {
        margin: .5rem!important
    }

    .m-lg-3 {
        margin: 1rem!important
    }

    .m-lg-4 {
        margin: 1.5rem!important
    }

    .m-lg-5 {
        margin: 3rem!important
    }

    .m-lg-auto {
        margin: auto!important
    }

    .mx-lg-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }

    .mx-lg-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }

    .mx-lg-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }

    .mx-lg-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }

    .mx-lg-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }

    .mx-lg-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }

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

    .my-lg-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }

    .my-lg-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }

    .my-lg-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }

    .my-lg-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }

    .my-lg-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }

    .my-lg-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }

    .my-lg-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }

    .mt-lg-0 {
        margin-top: 0!important
    }

    .mt-lg-1 {
        margin-top: .25rem!important
    }

    .mt-lg-2 {
        margin-top: .5rem!important
    }

    .mt-lg-3 {
        margin-top: 1rem!important
    }

    .mt-lg-4 {
        margin-top: 1.5rem!important
    }

    .mt-lg-5 {
        margin-top: 3rem!important
    }

    .mt-lg-auto {
        margin-top: auto!important
    }

    .me-lg-0 {
        margin-right: 0!important
    }

    .me-lg-1 {
        margin-right: .25rem!important
    }

    .me-lg-2 {
        margin-right: .5rem!important
    }

    .me-lg-3 {
        margin-right: 1rem!important
    }

    .me-lg-4 {
        margin-right: 1.5rem!important
    }

    .me-lg-5 {
        margin-right: 3rem!important
    }

    .me-lg-auto {
        margin-right: auto!important
    }

    .mb-lg-0 {
        margin-bottom: 0!important
    }

    .mb-lg-1 {
        margin-bottom: .25rem!important
    }

    .mb-lg-2 {
        margin-bottom: .5rem!important
    }

    .mb-lg-3 {
        margin-bottom: 1rem!important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-lg-5 {
        margin-bottom: 3rem!important
    }

    .mb-lg-auto {
        margin-bottom: auto!important
    }

    .ms-lg-0 {
        margin-left: 0!important
    }

    .ms-lg-1 {
        margin-left: .25rem!important
    }

    .ms-lg-2 {
        margin-left: .5rem!important
    }

    .ms-lg-3 {
        margin-left: 1rem!important
    }

    .ms-lg-4 {
        margin-left: 1.5rem!important
    }

    .ms-lg-5 {
        margin-left: 3rem!important
    }

    .ms-lg-auto {
        margin-left: auto!important
    }

    .p-lg-0 {
        padding: 0!important
    }

    .p-lg-1 {
        padding: .25rem!important
    }

    .p-lg-2 {
        padding: .5rem!important
    }

    .p-lg-3 {
        padding: 1rem!important
    }

    .p-lg-4 {
        padding: 1.5rem!important
    }

    .p-lg-5 {
        padding: 3rem!important
    }

    .px-lg-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }

    .px-lg-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }

    .px-lg-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }

    .px-lg-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }

    .px-lg-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }

    .px-lg-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }

    .py-lg-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }

    .py-lg-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }

    .py-lg-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }

    .py-lg-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }

    .py-lg-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }

    .py-lg-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }

    .pt-lg-0 {
        padding-top: 0!important
    }

    .pt-lg-1 {
        padding-top: .25rem!important
    }

    .pt-lg-2 {
        padding-top: .5rem!important
    }

    .pt-lg-3 {
        padding-top: 1rem!important
    }

    .pt-lg-4 {
        padding-top: 1.5rem!important
    }

    .pt-lg-5 {
        padding-top: 3rem!important
    }

    .pe-lg-0 {
        padding-right: 0!important
    }

    .pe-lg-1 {
        padding-right: .25rem!important
    }

    .pe-lg-2 {
        padding-right: .5rem!important
    }

    .pe-lg-3 {
        padding-right: 1rem!important
    }

    .pe-lg-4 {
        padding-right: 1.5rem!important
    }

    .pe-lg-5 {
        padding-right: 3rem!important
    }

    .pb-lg-0 {
        padding-bottom: 0!important
    }

    .pb-lg-1 {
        padding-bottom: .25rem!important
    }

    .pb-lg-2 {
        padding-bottom: .5rem!important
    }

    .pb-lg-3 {
        padding-bottom: 1rem!important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-lg-5 {
        padding-bottom: 3rem!important
    }

    .ps-lg-0 {
        padding-left: 0!important
    }

    .ps-lg-1 {
        padding-left: .25rem!important
    }

    .ps-lg-2 {
        padding-left: .5rem!important
    }

    .ps-lg-3 {
        padding-left: 1rem!important
    }

    .ps-lg-4 {
        padding-left: 1.5rem!important
    }

    .ps-lg-5 {
        padding-left: 3rem!important
    }

    .text-lg-start {
        text-align: left!important
    }

    .text-lg-end {
        text-align: right!important
    }

    .text-lg-center {
        text-align: center!important
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float:left!important
    }

    .float-xl-end {
        float: right!important
    }

    .float-xl-none {
        float: none!important
    }

    .d-xl-inline {
        display: inline!important
    }

    .d-xl-inline-block {
        display: inline-block!important
    }

    .d-xl-block {
        display: block!important
    }

    .d-xl-grid {
        display: grid!important
    }

    .d-xl-table {
        display: table!important
    }

    .d-xl-table-row {
        display: table-row!important
    }

    .d-xl-table-cell {
        display: table-cell!important
    }

    .d-xl-flex {
        display: flex!important
    }

    .d-xl-inline-flex {
        display: inline-flex!important
    }

    .d-xl-none {
        display: none!important
    }

    .flex-xl-fill {
        flex: 1 1 auto!important
    }

    .flex-xl-row {
        flex-direction: row!important
    }

    .flex-xl-column {
        flex-direction: column!important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-xl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-xl-0 {
        gap: 0!important
    }

    .gap-xl-1 {
        gap: .25rem!important
    }

    .gap-xl-2 {
        gap: .5rem!important
    }

    .gap-xl-3 {
        gap: 1rem!important
    }

    .gap-xl-4 {
        gap: 1.5rem!important
    }

    .gap-xl-5 {
        gap: 3rem!important
    }

    .justify-content-xl-start {
        justify-content: flex-start!important
    }

    .justify-content-xl-end {
        justify-content: flex-end!important
    }

    .justify-content-xl-center {
        justify-content: center!important
    }

    .justify-content-xl-between {
        justify-content: space-between!important
    }

    .justify-content-xl-around {
        justify-content: space-around!important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly!important
    }

    .align-items-xl-start {
        align-items: flex-start!important
    }

    .align-items-xl-end {
        align-items: flex-end!important
    }

    .align-items-xl-center {
        align-items: center!important
    }

    .align-items-xl-baseline {
        align-items: baseline!important
    }

    .align-items-xl-stretch {
        align-items: stretch!important
    }

    .align-content-xl-start {
        align-content: flex-start!important
    }

    .align-content-xl-end {
        align-content: flex-end!important
    }

    .align-content-xl-center {
        align-content: center!important
    }

    .align-content-xl-between {
        align-content: space-between!important
    }

    .align-content-xl-around {
        align-content: space-around!important
    }

    .align-content-xl-stretch {
        align-content: stretch!important
    }

    .align-self-xl-auto {
        align-self: auto!important
    }

    .align-self-xl-start {
        align-self: flex-start!important
    }

    .align-self-xl-end {
        align-self: flex-end!important
    }

    .align-self-xl-center {
        align-self: center!important
    }

    .align-self-xl-baseline {
        align-self: baseline!important
    }

    .align-self-xl-stretch {
        align-self: stretch!important
    }

    .order-xl-first {
        order: -1!important
    }

    .order-xl-0 {
        order: 0!important
    }

    .order-xl-1 {
        order: 1!important
    }

    .order-xl-2 {
        order: 2!important
    }

    .order-xl-3 {
        order: 3!important
    }

    .order-xl-4 {
        order: 4!important
    }

    .order-xl-5 {
        order: 5!important
    }

    .order-xl-last {
        order: 6!important
    }

    .m-xl-0 {
        margin: 0!important
    }

    .m-xl-1 {
        margin: .25rem!important
    }

    .m-xl-2 {
        margin: .5rem!important
    }

    .m-xl-3 {
        margin: 1rem!important
    }

    .m-xl-4 {
        margin: 1.5rem!important
    }

    .m-xl-5 {
        margin: 3rem!important
    }

    .m-xl-auto {
        margin: auto!important
    }

    .mx-xl-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }

    .mx-xl-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }

    .mx-xl-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }

    .mx-xl-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }

    .mx-xl-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }

    .mx-xl-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }

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

    .my-xl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }

    .my-xl-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }

    .my-xl-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }

    .my-xl-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }

    .my-xl-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }

    .my-xl-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }

    .my-xl-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }

    .mt-xl-0 {
        margin-top: 0!important
    }

    .mt-xl-1 {
        margin-top: .25rem!important
    }

    .mt-xl-2 {
        margin-top: .5rem!important
    }

    .mt-xl-3 {
        margin-top: 1rem!important
    }

    .mt-xl-4 {
        margin-top: 1.5rem!important
    }

    .mt-xl-5 {
        margin-top: 3rem!important
    }

    .mt-xl-auto {
        margin-top: auto!important
    }

    .me-xl-0 {
        margin-right: 0!important
    }

    .me-xl-1 {
        margin-right: .25rem!important
    }

    .me-xl-2 {
        margin-right: .5rem!important
    }

    .me-xl-3 {
        margin-right: 1rem!important
    }

    .me-xl-4 {
        margin-right: 1.5rem!important
    }

    .me-xl-5 {
        margin-right: 3rem!important
    }

    .me-xl-auto {
        margin-right: auto!important
    }

    .mb-xl-0 {
        margin-bottom: 0!important
    }

    .mb-xl-1 {
        margin-bottom: .25rem!important
    }

    .mb-xl-2 {
        margin-bottom: .5rem!important
    }

    .mb-xl-3 {
        margin-bottom: 1rem!important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-xl-5 {
        margin-bottom: 3rem!important
    }

    .mb-xl-auto {
        margin-bottom: auto!important
    }

    .ms-xl-0 {
        margin-left: 0!important
    }

    .ms-xl-1 {
        margin-left: .25rem!important
    }

    .ms-xl-2 {
        margin-left: .5rem!important
    }

    .ms-xl-3 {
        margin-left: 1rem!important
    }

    .ms-xl-4 {
        margin-left: 1.5rem!important
    }

    .ms-xl-5 {
        margin-left: 3rem!important
    }

    .ms-xl-auto {
        margin-left: auto!important
    }

    .p-xl-0 {
        padding: 0!important
    }

    .p-xl-1 {
        padding: .25rem!important
    }

    .p-xl-2 {
        padding: .5rem!important
    }

    .p-xl-3 {
        padding: 1rem!important
    }

    .p-xl-4 {
        padding: 1.5rem!important
    }

    .p-xl-5 {
        padding: 3rem!important
    }

    .px-xl-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }

    .px-xl-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }

    .px-xl-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }

    .px-xl-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }

    .px-xl-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }

    .px-xl-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }

    .py-xl-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }

    .py-xl-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }

    .py-xl-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }

    .py-xl-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }

    .py-xl-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }

    .py-xl-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }

    .pt-xl-0 {
        padding-top: 0!important
    }

    .pt-xl-1 {
        padding-top: .25rem!important
    }

    .pt-xl-2 {
        padding-top: .5rem!important
    }

    .pt-xl-3 {
        padding-top: 1rem!important
    }

    .pt-xl-4 {
        padding-top: 1.5rem!important
    }

    .pt-xl-5 {
        padding-top: 3rem!important
    }

    .pe-xl-0 {
        padding-right: 0!important
    }

    .pe-xl-1 {
        padding-right: .25rem!important
    }

    .pe-xl-2 {
        padding-right: .5rem!important
    }

    .pe-xl-3 {
        padding-right: 1rem!important
    }

    .pe-xl-4 {
        padding-right: 1.5rem!important
    }

    .pe-xl-5 {
        padding-right: 3rem!important
    }

    .pb-xl-0 {
        padding-bottom: 0!important
    }

    .pb-xl-1 {
        padding-bottom: .25rem!important
    }

    .pb-xl-2 {
        padding-bottom: .5rem!important
    }

    .pb-xl-3 {
        padding-bottom: 1rem!important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-xl-5 {
        padding-bottom: 3rem!important
    }

    .ps-xl-0 {
        padding-left: 0!important
    }

    .ps-xl-1 {
        padding-left: .25rem!important
    }

    .ps-xl-2 {
        padding-left: .5rem!important
    }

    .ps-xl-3 {
        padding-left: 1rem!important
    }

    .ps-xl-4 {
        padding-left: 1.5rem!important
    }

    .ps-xl-5 {
        padding-left: 3rem!important
    }

    .text-xl-start {
        text-align: left!important
    }

    .text-xl-end {
        text-align: right!important
    }

    .text-xl-center {
        text-align: center!important
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float:left!important
    }

    .float-xxl-end {
        float: right!important
    }

    .float-xxl-none {
        float: none!important
    }

    .d-xxl-inline {
        display: inline!important
    }

    .d-xxl-inline-block {
        display: inline-block!important
    }

    .d-xxl-block {
        display: block!important
    }

    .d-xxl-grid {
        display: grid!important
    }

    .d-xxl-table {
        display: table!important
    }

    .d-xxl-table-row {
        display: table-row!important
    }

    .d-xxl-table-cell {
        display: table-cell!important
    }

    .d-xxl-flex {
        display: flex!important
    }

    .d-xxl-inline-flex {
        display: inline-flex!important
    }

    .d-xxl-none {
        display: none!important
    }

    .flex-xxl-fill {
        flex: 1 1 auto!important
    }

    .flex-xxl-row {
        flex-direction: row!important
    }

    .flex-xxl-column {
        flex-direction: column!important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1!important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .gap-xxl-0 {
        gap: 0!important
    }

    .gap-xxl-1 {
        gap: .25rem!important
    }

    .gap-xxl-2 {
        gap: .5rem!important
    }

    .gap-xxl-3 {
        gap: 1rem!important
    }

    .gap-xxl-4 {
        gap: 1.5rem!important
    }

    .gap-xxl-5 {
        gap: 3rem!important
    }

    .justify-content-xxl-start {
        justify-content: flex-start!important
    }

    .justify-content-xxl-end {
        justify-content: flex-end!important
    }

    .justify-content-xxl-center {
        justify-content: center!important
    }

    .justify-content-xxl-between {
        justify-content: space-between!important
    }

    .justify-content-xxl-around {
        justify-content: space-around!important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly!important
    }

    .align-items-xxl-start {
        align-items: flex-start!important
    }

    .align-items-xxl-end {
        align-items: flex-end!important
    }

    .align-items-xxl-center {
        align-items: center!important
    }

    .align-items-xxl-baseline {
        align-items: baseline!important
    }

    .align-items-xxl-stretch {
        align-items: stretch!important
    }

    .align-content-xxl-start {
        align-content: flex-start!important
    }

    .align-content-xxl-end {
        align-content: flex-end!important
    }

    .align-content-xxl-center {
        align-content: center!important
    }

    .align-content-xxl-between {
        align-content: space-between!important
    }

    .align-content-xxl-around {
        align-content: space-around!important
    }

    .align-content-xxl-stretch {
        align-content: stretch!important
    }

    .align-self-xxl-auto {
        align-self: auto!important
    }

    .align-self-xxl-start {
        align-self: flex-start!important
    }

    .align-self-xxl-end {
        align-self: flex-end!important
    }

    .align-self-xxl-center {
        align-self: center!important
    }

    .align-self-xxl-baseline {
        align-self: baseline!important
    }

    .align-self-xxl-stretch {
        align-self: stretch!important
    }

    .order-xxl-first {
        order: -1!important
    }

    .order-xxl-0 {
        order: 0!important
    }

    .order-xxl-1 {
        order: 1!important
    }

    .order-xxl-2 {
        order: 2!important
    }

    .order-xxl-3 {
        order: 3!important
    }

    .order-xxl-4 {
        order: 4!important
    }

    .order-xxl-5 {
        order: 5!important
    }

    .order-xxl-last {
        order: 6!important
    }

    .m-xxl-0 {
        margin: 0!important
    }

    .m-xxl-1 {
        margin: .25rem!important
    }

    .m-xxl-2 {
        margin: .5rem!important
    }

    .m-xxl-3 {
        margin: 1rem!important
    }

    .m-xxl-4 {
        margin: 1.5rem!important
    }

    .m-xxl-5 {
        margin: 3rem!important
    }

    .m-xxl-auto {
        margin: auto!important
    }

    .mx-xxl-0 {
        margin-right: 0!important;
        margin-left: 0!important
    }

    .mx-xxl-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important
    }

    .mx-xxl-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important
    }

    .mx-xxl-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important
    }

    .mx-xxl-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important
    }

    .mx-xxl-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important
    }

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

    .my-xxl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important
    }

    .my-xxl-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important
    }

    .my-xxl-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important
    }

    .my-xxl-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important
    }

    .my-xxl-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important
    }

    .my-xxl-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important
    }

    .my-xxl-auto {
        margin-top: auto!important;
        margin-bottom: auto!important
    }

    .mt-xxl-0 {
        margin-top: 0!important
    }

    .mt-xxl-1 {
        margin-top: .25rem!important
    }

    .mt-xxl-2 {
        margin-top: .5rem!important
    }

    .mt-xxl-3 {
        margin-top: 1rem!important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem!important
    }

    .mt-xxl-5 {
        margin-top: 3rem!important
    }

    .mt-xxl-auto {
        margin-top: auto!important
    }

    .me-xxl-0 {
        margin-right: 0!important
    }

    .me-xxl-1 {
        margin-right: .25rem!important
    }

    .me-xxl-2 {
        margin-right: .5rem!important
    }

    .me-xxl-3 {
        margin-right: 1rem!important
    }

    .me-xxl-4 {
        margin-right: 1.5rem!important
    }

    .me-xxl-5 {
        margin-right: 3rem!important
    }

    .me-xxl-auto {
        margin-right: auto!important
    }

    .mb-xxl-0 {
        margin-bottom: 0!important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem!important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem!important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem!important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem!important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem!important
    }

    .mb-xxl-auto {
        margin-bottom: auto!important
    }

    .ms-xxl-0 {
        margin-left: 0!important
    }

    .ms-xxl-1 {
        margin-left: .25rem!important
    }

    .ms-xxl-2 {
        margin-left: .5rem!important
    }

    .ms-xxl-3 {
        margin-left: 1rem!important
    }

    .ms-xxl-4 {
        margin-left: 1.5rem!important
    }

    .ms-xxl-5 {
        margin-left: 3rem!important
    }

    .ms-xxl-auto {
        margin-left: auto!important
    }

    .p-xxl-0 {
        padding: 0!important
    }

    .p-xxl-1 {
        padding: .25rem!important
    }

    .p-xxl-2 {
        padding: .5rem!important
    }

    .p-xxl-3 {
        padding: 1rem!important
    }

    .p-xxl-4 {
        padding: 1.5rem!important
    }

    .p-xxl-5 {
        padding: 3rem!important
    }

    .px-xxl-0 {
        padding-right: 0!important;
        padding-left: 0!important
    }

    .px-xxl-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important
    }

    .px-xxl-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important
    }

    .px-xxl-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important
    }

    .px-xxl-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important
    }

    .px-xxl-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important
    }

    .py-xxl-0 {
        padding-top: 0!important;
        padding-bottom: 0!important
    }

    .py-xxl-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important
    }

    .py-xxl-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important
    }

    .py-xxl-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important
    }

    .py-xxl-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important
    }

    .py-xxl-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important
    }

    .pt-xxl-0 {
        padding-top: 0!important
    }

    .pt-xxl-1 {
        padding-top: .25rem!important
    }

    .pt-xxl-2 {
        padding-top: .5rem!important
    }

    .pt-xxl-3 {
        padding-top: 1rem!important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem!important
    }

    .pt-xxl-5 {
        padding-top: 3rem!important
    }

    .pe-xxl-0 {
        padding-right: 0!important
    }

    .pe-xxl-1 {
        padding-right: .25rem!important
    }

    .pe-xxl-2 {
        padding-right: .5rem!important
    }

    .pe-xxl-3 {
        padding-right: 1rem!important
    }

    .pe-xxl-4 {
        padding-right: 1.5rem!important
    }

    .pe-xxl-5 {
        padding-right: 3rem!important
    }

    .pb-xxl-0 {
        padding-bottom: 0!important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem!important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem!important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem!important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem!important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem!important
    }

    .ps-xxl-0 {
        padding-left: 0!important
    }

    .ps-xxl-1 {
        padding-left: .25rem!important
    }

    .ps-xxl-2 {
        padding-left: .5rem!important
    }

    .ps-xxl-3 {
        padding-left: 1rem!important
    }

    .ps-xxl-4 {
        padding-left: 1.5rem!important
    }

    .ps-xxl-5 {
        padding-left: 3rem!important
    }

    .text-xxl-start {
        text-align: left!important
    }

    .text-xxl-end {
        text-align: right!important
    }

    .text-xxl-center {
        text-align: center!important
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size:2.5rem!important
    }

    .fs-2 {
        font-size: 2rem!important
    }

    .fs-3 {
        font-size: 1.75rem!important
    }

    .fs-4 {
        font-size: 1.5rem!important
    }
}

@media print {
    .d-print-inline {
        display: inline!important
    }

    .d-print-inline-block {
        display: inline-block!important
    }

    .d-print-block {
        display: block!important
    }

    .d-print-grid {
        display: grid!important
    }

    .d-print-table {
        display: table!important
    }

    .d-print-table-row {
        display: table-row!important
    }

    .d-print-table-cell {
        display: table-cell!important
    }

    .d-print-flex {
        display: flex!important
    }

    .d-print-inline-flex {
        display: inline-flex!important
    }

    .d-print-none {
        display: none!important
    }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    white-space: normal
}

:root {
    --font-family: "Open Sans", system-ui, -apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --text-color: #0b012c
}

*,:after,:before {
    box-sizing: border-box;
    font-family: var(--font-family)
}

body,body[data-theme=light] {
    background-color: #fff;
    color: #4b535a
}

body[data-theme=dark] {
    background-color: #000;
    color: #fff
}

body[data-theme=dark] a,body[data-theme=dark] b,body[data-theme=dark] span {
    color: #fff!important
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0px;
    position: relative;
    visibility: visible;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.darkmode button {
    border: 2px solid #5b5b5b;
    background-color: var(--text-color)
}

.darkmode button .toogle_thumb {
    background-color: #212121
}

.darkmode button .moon,.darkmode button .sun {
    font-size: 16px;
    background-color: transparent
}

#root,body,html {
    height: 100%
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0!important
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: hsla(0,0%,50%,.58);
    border: 0;
    opacity: .25
}

a,button,img,input,span {
    transition: all .3s ease 0s
}

hr:not([size]) {
    height: 1px
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: var(--font-family)
}

body[data-theme=dark] h1,body[data-theme=dark] h2,body[data-theme=dark] h3,body[data-theme=dark] h4,body[data-theme=dark] h5,body[data-theme=dark] h6 {
    color: #fff!important
}

.h1,h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {
    .h1,h1 {
        font-size:2.5rem
    }
}

.h2,h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width: 1200px) {
    .h2,h2 {
        font-size:2rem
    }
}

.h3,h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width: 1200px) {
    .h3,h3 {
        font-size:1.75rem
    }
}

.h4,h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width: 1200px) {
    .h4,h4 {
        font-size:1.5rem
    }
}

.h5,h5 {
    font-size: 1.25rem
}

.h6,h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[data-original-title],abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,ul {
    padding-left: 2rem
}

dl,ol,ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,ol ul,ul ol,ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,strong {
    font-weight: bolder
}

.small,small {
    font-size: .875em
}

.mark,mark {
    padding: .2em;
    background-color: #fcf8e3
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #fff;
    text-decoration: none
}

a:not([href]):not([class]),a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,kbd,pre,samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em;
    -ms-overflow-style: scrollbar
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: .875em;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700
}

figure {
    margin: 0 0 1rem
}

img,svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #cacaca;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,td,tfoot,th,thead,tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

button,input,optgroup,select,textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

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

[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit;
    white-space: normal
}

@media (min-width: 1200px) {
    legend {
        font-size:1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

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

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

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

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none!important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.btn-primary {
    background-color: #9acd32;
    color: #fff;
    transition: .5s ease-in;
    border-radius: 8px;
    border-color: transparent
}

body[data-theme=dark] .btn-primary {
    background-color: #c564bb
}

.btn-primary:focus,.btn-primary:hover {
    background-color: var(--primary-color);
    transition: .5s ease-in;
    border-color: transparent
}

body[data-theme=dark] .btn-primary:focus,body[data-theme=dark] .btn-primary:hover {
    background-color: #c564bb
}

.list-inline,.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: .875em;
    text-transform: capitalize
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote>:last-child {
    margin-bottom: 0
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #cacaca
}

.blockquote-footer:before {
    content: "— "
}

.img-fluid,.img-thumbnail {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: .875em;
    color: #cacaca
}

.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    --bs-gutter-x: 30px;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container,.container-md,.container-sm {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1140px
    }
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1440px
    }
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: -60px;
    z-index: 999;
    box-shadow: 0 30px 50px rgba(0,0,0,.03);
    display: block;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    line-height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    background-color: var(--primary-color);
    border-color: transparent!important;
    background-size: 200% auto;
    background-position: 0;
    color: #fff;
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

body[data-theme=dark] .scroll-top {
    background-color: #c564bb
}

.scroll-top.show {
    visibility: visible;
    opacity: 1;
    bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center
}

.scroll-top i {
    position: absolute;
    color: #fff;
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

.scroll-top i svg {
    display: flex
}

.scroll-top:hover {
    background-position: 100%
}

@media extra-small-mobile {
    .scroll-top {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px
    }
}

.swiper-pagination {
    position: static;
    display: block;
    line-height: 1;
    margin-top: 20px
}

.swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    position: relative;
    outline: none;
    margin-right: 20px;
    margin: 0 8px!important;
    border: 2px solid rgba(0,0,0,.212);
    border-radius: 50%
}

.swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0
}

.swiper-pagination .swiper-pagination-bullet:hover:before {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #030f27
}

.swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    width: 8px;
    height: 8px;
    background: #d8d8d8;
    z-index: 1;
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

.swiper-pagination .swiper-pagination-bullet-active:before {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #030f27
}

.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet {
    margin: 8px
}

.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet:hover:before {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #fff
}

.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet-active:before {
    opacity: 1;
    background: #fff;
    width: 16px;
    height: 16px;
    box-shadow: 0 0 9px #ededed
}

.swiper-nav-button {
    transition: all .3s cubic-bezier(.645,.045,.355,1),visibility .1s linear 2s,opacity .1s linear 2s;
    background-image: none;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    outline: none;
    width: 48px;
    height: 48px;
    font-size: 24px;
    color: #6d70a6;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,.01);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    margin: 0;
    top: 50%
}

.swiper-nav-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: inherit;
    color: #fff;
    background: #fff
}

.swiper-nav-button:hover {
    color: #fff
}

.swiper-nav-button:hover:before {
    color: #fff;
    background: #030f27
}

.swiper-nav-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.swiper-nav-button i:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: Font Awesome\ 5 Free;
    font-weight: 300;
    content: "\f053"
}

.swiper-container {
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

.swiper-container:hover .swiper-nav-button {
    opacity: 1;
    visibility: visible
}

.swiper-button-prev i:before,.swiper-nav-prev i:before {
    content: "\f053";
    font-family: Font Awesome\ 5 Free
}

.swiper-button-next i:before {
    content: "\f054";
    font-family: Font Awesome\ 5 Free
}

.swiper-wrapper {
    transition-timing-function: linear!important
}

.navbar__link--active {
    color: #fff!important;
    transition: border-bottom .5s ease-in-out;
    font-size: 1rem;
    background-color: var(--primary-color);
    border-color: transparent!important
}

body[data-theme=dark] .navbar__link--active {
    background-color: #c564bb
}

.wrapper {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 150px
}

@media only screen and (max-width: 991px) {
    .wrapper {
        height:auto
    }
}

.Toastify__toast-container {
    z-index: 999999!important
}

.swal2-popup {
    background: #fff!important;
    border-radius: 25px!important
}

h2#swal2-title {
    color: var(--primary-color)
}

div#swal2-html-container {
    color: #212121
}

.swal2-icon.swal2-warning {
    border-color: var(--primary-color)!important;
    color: var(--primary-color)!important
}

a:hover {
    color: var(--primary-color)
}

.footer_list a:hover {
    color: var(--primary-color)!important
}

.main-color {
    color: var(--primary-color)
}

.login:hover,.signup:hover {
    color: #fff
}

.dropdown-item.active,.dropdown-item:active {
    background-color: var(--primary-color)!important
}

.bookmark-box {
    background: hsla(0,0%,100%,.3);
    background-color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid hsla(0,0%,100%,.18);
    padding: 20px;
    margin-bottom: 50px;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0)
}

.ant-btn:focus,.ant-btn:hover {
    color: #000
}

button:focus {
    box-shadow: none!important
}

.bookmark-icon {
    font-size: 1.5em
}

.showscore-userprofile {
    width: 70%;
    height: 70%;
    border-radius: 100%;
    border: 2px solid
}

.scroll-to-top {
    position: fixed;
    bottom: .5rem;
    right: 0;
    animation: fadeIn .7s ease-in-out 1s both;
    cursor: pointer;
    z-index: 5
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.back-top-container {
    height: 50px;
    text-align: center;
    width: 50px;
    background-color: var(--primary-color);
    border-color: transparent!important;
    color: #fff;
    margin-right: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

body[data-theme=dark] .back-top-container {
    background-color: #c564bb
}

.total_coins {
    display: flex;
    margin-left: 10px
}

.total_coins .inner_coins {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    border-radius: 15px;
    background-color: #6c245a;
    padding: 20px
}

.total_coins .inner_coins p {
    color: #fff;
    text-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 0!important
}

@media only screen and (max-width: 767px) {
    .mob_resp_e {
        margin-left:0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0
    }
}

.custom-dash {
    align-items: center;
    margin-bottom: 10px
}

.custom-dash,.custom-dash button {
    display: flex;
    justify-content: center
}

.custom-dash button {
    width: 100%
}

@media only screen and (max-width: 767px) {
    .custom-dash button button {
        width:100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px
    }
}

.custom-life-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px
}

.custom-life-btn button {
    width: 100%;
    display: flex;
    justify-content: center
}

@media only screen and (max-width: 767px) {
    .custom-life-btn button button {
        width:100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px
    }
}

.loader-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh
}

.bg-danger,.bg-success {
    color: #fff!important
}

.bg-success {
    background: linear-gradient(0deg,#00bf7a,#00bf7a),linear-gradient(0deg,#378810,#378810)
}

.bg-danger {
    background: #ff005c!important
}

.bg-secondary {
    background-color: hsla(208,7%,46%,.102)!important
}

.ant-modal-content {
    border-radius: 5px;
    box-shadow: none;
    background-color: #fff
}

.ant-modal-close {
    position: absolute;
    top: 8px;
    right: 8px
}

.vs_image img {
    object-fit: contain
}

.hideShowbutton {
    display: none!important;
    transition: .3s ease-in-out
}

.Guesstheword.AudioQuestion .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li {
    cursor: pointer;
    margin: 0 8px
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .5!important
}

.funandlearnplay.MathmaniaPlay.dashboard .content__text p {
    margin-top: 50px!important
}

.commonerror img {
    aspect-ratio: 1/1;
    height: 100px;
    width: 100%
}

.commonerror p {
    color: var(--primary-color)
}

.ant-tabs-nav-operations {
    display: none!important
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: var(--primary-color)!important
}

.bg-dark {
    color: #fff!important
}

.swiper-container-rtl .swiper-button-prev {
    right: auto!important
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-container-rtl .swiper-button-prev {
    left: 0!important;
    right: auto!important
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-container-rtl .swiper-button-next {
    right: auto!important;
    left: 50px!important
}

#my-tooltip {
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    width: 300px;
    opacity: 1
}

@media (max-width: 575px) {
    .audio_player {
        width:100%
    }
}

.dropdown-menu {
    margin-top: -3px!important
}

#lifeline-my-tooltip {
    width: 150px;
    text-align: center
}

.correctAnswer {
    background-color: var(--primary-color);
    color: #fff!important;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: auto;
    font-size: 18px!important
}

.correctAnswer1 {
    margin: 0
}

.CircularProgressbar .CircularProgressbar-text {
    color: var(--primary-color)
}

.progressbar-container {
    width: 120px
}

@media screen and (max-width: 520px) {
    .progressbar-container {
        width:100px;
        margin-top: 0
    }
}

.toast-custom {
    z-index: 99999!important
}

#nprogress .bar {
    height: 5px;
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1031
}

body[data-theme=dark] #nprogress .bar {
    background-color: #c564bb
}

#nprogress .spinner-icon {
    display: none
}

.main {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.circle img {
    left: -50%;
    top: -10%
}

.circle img,.circle2 img {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: -1
}

.circle2 img {
    right: -50%;
    top: 30%
}

.custom-container {
    max-width: 600px;
    --bs-gutter-x: 30px;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-right: auto;
    margin-left: auto
}

.switch_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0
}

.switch_data .ant-switch-handle:before {
    background-color: var(--primary-color)
}

.switch_data p {
    margin-bottom: 0
}

.switch_data .switch_button {
    width: 0
}

.switch_data .ant-switch-checked {
    background-color: var(--primary-color)
}

.switch_data .ant-switch-checked .ant-switch-handle:before {
    background-color: #fff
}

.star1 {
    position: absolute;
    left: 0;
    bottom: 0;
    animation: startRotate 3s linear infinite;
    width: 100px
}

@media screen and (max-width: 768px) {
    .star1 {
        display:none
    }
}

.star2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    animation: startRotate 4s linear infinite
}

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

@media screen and (max-width: 768px) {
    .star2 {
        display:none
    }
}

.section_data .Breadcrumb {
    margin-bottom: 0!important
}

.latex>span {
    font-size: 16px!important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    word-break: break-word;
    z-index: -1
}

.latex .MathJax_Preview {
    z-index: -1
}

body[data-theme=dark] .breadcrumb__wrapper .Breadcrumb {
    margin-bottom: 0;
    background-color: transparent
}

.breadcrumb__wrapper {
    overflow: hidden
}

@media only screen and (max-width: 767px) {
    .breadcrumb__wrapper {
        margin-top:50px
    }
}

@media screen and (max-width: 768px) {
    .breadcrumb__wrapper {
        margin-top:-10px
    }
}

.breadcrumb__wrapper .Breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative
}

.breadcrumb__wrapper .Breadcrumb .page-title .title {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--text-color)
}

@media only screen and (max-width: 767px) {
    .breadcrumb__wrapper .Breadcrumb .page-title .title {
        font-size:inherit
    }
}

.breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb {
    padding: 10px 0;
    background-color: transparent;
    margin-bottom: 0
}

@media only screen and (max-width: 767px) {
    .breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb {
        padding:7px 0;
        margin-top: -22px
    }
}

.breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .parent__link a {
    color: var(--primary-color);
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 22px
}

@media only screen and (max-width: 767px) {
    .breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .parent__link a {
        font-size:inherit
    }
}

.breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .parent__link a:hover {
    color: var(--text-color)
}

.breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .parent__link a:hover:before {
    left: 0;
    width: 100%
}

.breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .current {
    color: var(--text-color);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    display: flex
}

@media only screen and (max-width: 767px) {
    .breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .current {
        font-size:inherit
    }
}

.breadcrumb__wrapper .Breadcrumb .breadcrumb__inner .breadcrumb .current:before {
    margin: 0 15px;
    font-size: 26px;
    content: "/";
    font-family: Font Awesome\ 5 Pro;
    color: var(--text-color)
}

[dir=rtl] .login__sign__form {
    margin-right: 0;
    margin-left: 10px
}

[dir=rtl] .playstore_img,[dir=rtl] .slider1__btn {
    margin-left: 10px!important;
    margin-right: 0!important
}

[dir=rtl] .noti_desc {
    margin-right: 10px
}

body[data-theme=dark] .small__top__header {
    background-color: transparent
}

.small__top__header {
    background-color: var(--secondary-color);
    color: #fff;
    z-index: 999;
    position: relative
}

@media only screen and (max-width: 1199px) {
    .small__top__header {
        display:none
    }
}

.small__top__header .login__sign__form {
    display: flex;
    float: right;
    padding: 10px 0;
    font-weight: 900;
    letter-spacing: 2px;
    margin-right: 10px;
    cursor: pointer
}

.small__top__header .login__sign__form .login,.small__top__header .login__sign__form .signup {
    font-size: small
}

.small__top__header .login__sign__form .signup:before {
    content: "|";
    margin: 0 10px
}

.small__top__header .login__sign__form:active,.small__top__header .login__sign__form:focus,.small__top__header .login__sign__form:hover {
    color: #fff
}

.small__top__header .login__sign__form .dropdown__login .dropdown-menu {
    z-index: 99999
}

.small__top__header .login__sign__form .custom_button_right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}

.small__top__header .inner-language__dropdown {
    font-weight: 600
}

.small__top__header .inner-language__dropdown .dropdown-menu {
    z-index: 99999
}

.small__top__header .dropdown__language .select__inner {
    width: 200px;
    z-index: 99999
}

.small__top__header .top_header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

@media only screen and (max-width: 767px) {
    .small__top__header .top_header_right {
        justify-content:center
    }
}

.small__top__header .top_header_right .notify_btn {
    color: #fff!important;
    height: 45px;
    position: relative
}

.small__top__header .top_header_right .right_guest_profile {
    display: flex;
    align-items: center
}

.small__top__header .top_header_right .right_guest_profile .profile_image {
    width: 35px;
    height: 35px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff!important;
    background: var(--primary-color)!important;
    transition: .5s ease-in;
    border-color: transparent;
    padding: 1px
}

.small__top__header .top_header_right .right_guest_profile .guest_login {
    font-size: 14px;
    font-weight: 600
}

@media only screen and (max-width: 767px) {
    .small__top__header .dropdown__language {
        text-align:center
    }
}

.small__top__header .notification .notification_badges {
    position: absolute;
    right: 6px;
    top: 2px;
    background: #212121;
    border-radius: 50%;
    width: 17px;
    font-size: 10px
}

.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle,.small__top__header .login__sign__form .btn-check:active+.btn-primary {
    color: #fff!important;
    background-color: var(--primary-color);
    transition: .5s ease-in;
    border-color: transparent;
    box-shadow: none!important
}

body[data-theme=dark] .btn-check:checked+.btn-primary,body[data-theme=dark] .btn-primary.active,body[data-theme=dark] .btn-primary:active,body[data-theme=dark] .show>.btn-primary.dropdown-toggle,body[data-theme=dark] .small__top__header .login__sign__form .btn-check:active+.btn-primary {
    background-color: #c564bb!important
}

body[data-theme=dark] .header-section {
    border: 2px solid hsla(0,0%,100%,.04);
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15)
}

.header-section {
    display: none;
    min-height: 100px;
    z-index: 999;
    position: relative
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .header-section {
        min-height:80px
    }
}

@media only screen and (max-width: 767px) {
    .header-section {
        min-height:80px;
        margin-top: 95px
    }
}

.header-section .header-inner {
    display: flex;
    align-items: center;
    min-height: 80px
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .header-section .header-inner {
        min-height:80px
    }
}

@media only screen and (max-width: 767px) {
    .header-section .header-inner {
        min-height:100px;
        background-color: #fff
    }
}

.header-section.is-sticky .header-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background-color: #fff!important;
    animation: headerSlideDown .95s ease forwards;
    box-shadow: 0 8px 20px 0 rgba(33,33,33,.1)
}

.header-section.header-fluid .container {
    max-width: 100%
}

@media only screen and (min-width: 1400px) and (max-width:1899px) {
    .header-section.header-fluid .container {
        padding-right:150px;
        padding-left: 150px
    }
}

.header-section.header-fluid-two .container {
    max-width: 100%
}

@media only screen and (min-width: 1400px) and (max-width:1899px) {
    .header-section.header-fluid-two .container {
        padding-right:240px;
        padding-left: 240px
    }
}

.header-section.header-shadow .header-inner {
    box-shadow: 0 3px 9px rgba(0,0,0,.05)
}

@media only screen and (max-width: 767px) {
    .header-section.header-transparent {
        margin-top:0
    }
}

.header-section.header-transparent .header-inner {
    background-color: transparent;
    z-index: 10
}

.header-section.header-light .header-login a,.header-section.header-light .header-login a:hover {
    color: #fff
}

.header-logo a {
    position: relative;
    max-width: 158px
}

@media only screen and (max-width: 479px) {
    .header-logo a {
        max-width:120px
    }

    .header-logo a img {
        height: 100px;
        object-fit: contain
    }
}

.header-logo a img.light-logo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1
}

.header-logo a img.dark-logo {
    opacity: 1;
    width: min(50vw,200px);
    height: 80px;
    object-fit: contain
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

body[data-theme=dark] .site-main-menu>ul>li>a {
    color: #fff
}

.site-main-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.site-main-menu>ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
    list-style: none
}

.site-main-menu>ul>li {
    position: relative
}

.site-main-menu>ul>li>a {
    font-weight: 500;
    line-height: 1.375;
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    color: #666
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .site-main-menu>ul>li>a {
        font-size:14px
    }
}

.site-main-menu>ul>li>a .menu-text {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 1px;
    text-align: left;
    font-family: var(--font-family);
    text-transform: capitalize;
    gap: 7px
}

.site-main-menu>ul>li .menu-toggle {
    display: none
}

.site-main-menu>ul>li:hover .mega-menu,.site-main-menu>ul>li:hover>.sub-menu {
    visibility: visible;
    margin-top: 10px;
    opacity: 1
}

.site-main-menu .mega-menu,.site-main-menu .sub-menu {
    position: absolute;
    z-index: 9999;
    top: 100%;
    right: 0;
    visibility: hidden;
    width: 240px;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 1px 0;
    list-style: none;
    transition: all .4s ease .2s;
    opacity: 0;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 29px rgba(71,70,70,.05)
}

.site-main-menu .mega-menu:before,.site-main-menu .sub-menu:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 40px;
    text-align: center;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-color: transparent transparent #e8e2e2;
    border-style: solid;
    border-width: 0 7.5px 10px
}

.site-main-menu .mega-menu li,.site-main-menu .sub-menu li {
    position: relative
}

.site-main-menu .mega-menu li a,.site-main-menu .sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.375;
    border-radius: 10px;
    display: block;
    padding: 8px 15px;
    white-space: nowrap;
    color: #474646
}

.site-main-menu .mega-menu li a .menu-text,.site-main-menu .sub-menu li a .menu-text {
    display: flex;
    align-items: center
}

.site-main-menu .mega-menu li .menu-toggle,.site-main-menu .sub-menu li .menu-toggle {
    display: none
}

.site-main-menu .mega-menu li.has-children>a .menu-text:after,.site-main-menu .sub-menu li.has-children>a .menu-text:after {
    font-family: Font Awesome\ 5 Free;
    content: "\f107";
    font-size: 8px;
    font-weight: 900;
    margin-left: auto
}

.site-main-menu .mega-menu li.active>a,.site-main-menu .mega-menu li:hover>a,.site-main-menu .sub-menu li.active>a,.site-main-menu .sub-menu li:hover>a {
    color: #111
}

.site-main-menu .mega-menu li:hover>.sub-menu,.site-main-menu .sub-menu li:hover>.sub-menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1
}

.site-main-menu .mega-menu .sub-menu,.site-main-menu .sub-menu .sub-menu {
    top: -18px;
    left: 100%
}

.site-main-menu .mega-menu .sub-menu:before,.site-main-menu .sub-menu .sub-menu:before {
    display: none
}

.site-main-menu .mega-menu {
    left: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 15px 34px;
    list-style: none
}

.site-main-menu .mega-menu>li {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 15px
}

.site-main-menu .mega-menu>li.menu-item-50 {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 15px
}

.site-main-menu .mega-menu>li>ul {
    padding-left: 0;
    list-style: none;
    margin: 0
}

.site-main-menu .mega-menu>li>ul>li>a {
    font-size: 15px;
    line-height: 1.78;
    font-weight: 500;
    padding: 8px 0
}

.site-main-menu .mega-menu>li>ul>li>a .badge {
    background-color: transparent;
    background-image: linear-gradient(45deg,#fe378c,#fe5b34);
    display: inline-block;
    border-radius: 2px;
    padding: 4px 8px 3px;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .5px;
    margin: 0 0 0 7px
}

.site-main-menu .mega-menu>li>ul>li>a .badge.primary {
    background-image: none
}

.site-main-menu .has-children ul li:hover a span:before {
    display: none
}

.site-main-menu ul li span {
    padding: 6px 4px
}

.site-main-menu ul li span:before {
    display: none
}

.site-main-menu ul li span {
    border: 1px solid transparent
}

.site-main-menu ul li span:hover {
    border: 1px solid var(--primary-color);
    border-radius: 8px
}

.site-main-menu ul li .navbar__link--active span:before {
    display: none
}

.site-main-menu ul li .navbar__link--active span {
    margin-right: 0
}

.site-main-menu ul li .navbar__link--active span:hover {
    transition: 10ms ease-in
}

.site-main-menu ul li .navbar__link--active:hover:first-child span:before,.site-main-menu ul li .navbar__link--active:hover:nth-child(2) span:before,.site-main-menu ul li .navbar__link--active:hover:nth-child(3) span:before,.site-main-menu ul li .navbar__link--active:hover:nth-child(4) span:before,.site-main-menu ul li .navbar__link--active:hover:nth-child(5) span:before,.site-main-menu ul li .navbar__link--active:hover:nth-child(6) span:before {
    color: #fff
}

@keyframes slide {
    0% {
        transform: translateX(35%)
    }

    to {
        transform: translateX(0)
    }
}

.header-mobile-menu-toggle {
    display: flex;
    padding: 0 10px
}

.header-mobile-menu-toggle .toggle {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    background-color: transparent
}

.header-mobile-menu-toggle .toggle i {
    position: relative;
    display: block;
    overflow: hidden;
    width: 24px;
    height: 3px
}

.header-mobile-menu-toggle .toggle i+i {
    margin-top: 6px
}

.mobile-menu-close {
    display: flex;
    padding: 0 10px
}

.mobile-menu-close .toggle {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    background-color: transparent
}

.mobile-menu-close .toggle i {
    position: relative;
    display: block;
    overflow: hidden;
    width: 24px
}

.mobile-menu-close .toggle i+i {
    margin-top: 6px
}

.header-mobile-menu-toggle .toggle i:after,.header-mobile-menu-toggle .toggle i:before,.mobile-menu-close .toggle i:after,.mobile-menu-close .toggle i:before {
    position: absolute;
    top: 0;
    left: 0;
    flex: 1 0 100%;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--primary-color)
}

.header-mobile-menu-toggle .toggle i.icon-bottom:before,.header-mobile-menu-toggle .toggle i.icon-top:before,.mobile-menu-close .toggle i.icon-bottom:before,.mobile-menu-close .toggle i.icon-top:before {
    transition: transform .6s cubic-bezier(.165,.84,.44,1) .2s;
    transform: scaleX(1) translateZ(0);
    transform-origin: right
}

.header-mobile-menu-toggle .toggle i.icon-bottom:after,.header-mobile-menu-toggle .toggle i.icon-top:after,.mobile-menu-close .toggle i.icon-bottom:after,.mobile-menu-close .toggle i.icon-top:after {
    transition: transform .6s cubic-bezier(.165,.84,.44,1);
    transform: scaleX(0) translateZ(0);
    transform-origin: left
}

.header-mobile-menu-toggle .toggle i.icon-middle:before,.mobile-menu-close .toggle i.icon-middle:before {
    transition: transform .6s cubic-bezier(.165,.84,.44,1) .2s;
    transform: scaleX(1) translateZ(0);
    transform-origin: left
}

.header-mobile-menu-toggle .toggle i.icon-middle:after,.mobile-menu-close .toggle i.icon-middle:after {
    transition: transform .6s cubic-bezier(.165,.84,.44,1);
    transform: scaleX(0) translateZ(0);
    transform-origin: right
}

.header-mobile-menu-toggle .toggle:hover i:after,.header-mobile-menu-toggle .toggle:hover i:before,.mobile-menu-close .toggle:hover i:after,.mobile-menu-close .toggle:hover i:before {
    background-color: var(--primary-color)
}

.header-mobile-menu-toggle .toggle:hover i.icon-bottom:before,.header-mobile-menu-toggle .toggle:hover i.icon-top:before,.mobile-menu-close .toggle:hover i.icon-bottom:before,.mobile-menu-close .toggle:hover i.icon-top:before {
    transition: transform .6s cubic-bezier(.165,.84,.44,1);
    transform: scaleX(0) translateZ(0)
}

.header-mobile-menu-toggle .toggle:hover i.icon-bottom:after,.header-mobile-menu-toggle .toggle:hover i.icon-top:after,.mobile-menu-close .toggle:hover i.icon-bottom:after,.mobile-menu-close .toggle:hover i.icon-top:after {
    transition: transform .6s cubic-bezier(.165,.84,.44,1) .2s;
    transform: scaleX(1) translateZ(0)
}

.header-mobile-menu-toggle .toggle:hover i.icon-middle:before,.mobile-menu-close .toggle:hover i.icon-middle:before {
    transition: transform .6s cubic-bezier(.165,.84,.44,1);
    transform: scaleX(0) translateZ(0)
}

.header-mobile-menu-toggle .toggle:hover i.icon-middle:after,.mobile-menu-close .toggle:hover i.icon-middle:after {
    transition: transform .6s cubic-bezier(.165,.84,.44,1) .2s;
    transform: scaleX(1) translateZ(0)
}

@media only screen and (max-width: 479px) {
    .header-mobile-menu-toggle,.mobile-menu-close {
        padding-right:8px;
        padding-left: 8px
    }
}

.header-light .header-mobile-menu-toggle .toggle i:after,.header-light .header-mobile-menu-toggle .toggle i:before,.header-light .header-mobile-menu-toggle .toggle:hover i:after,.header-light .header-mobile-menu-toggle .toggle:hover i:before,.header-light .mobile-menu-close .toggle i:after,.header-light .mobile-menu-close .toggle i:before,.header-light .mobile-menu-close .toggle:hover i:after,.header-light .mobile-menu-close .toggle:hover i:before {
    background-color: #fff
}

.site-main-mobile-menu {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    transition: all .25s cubic-bezier(.645,.045,.355,1);
    opacity: 0;
    background: rgba(0,0,0,.7)
}

.site-main-mobile-menu .site-main-mobile-menu-inner {
    position: relative;
    z-index: 9;
    float: right;
    width: 360px;
    height: 100%;
    transition: all .25s cubic-bezier(.645,.045,.355,1);
    transform: translateX(100%);
    background-color: #748494;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top;
    background-size: cover
}

@media only screen and (max-width: 479px) {
    .site-main-mobile-menu .site-main-mobile-menu-inner {
        width:300px
    }
}

.site-main-mobile-menu .site-main-mobile-menu-inner:before {
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #212121
}

#page {
    position: relative;
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

.mobile-menu-open {
    overflow: hidden
}

.mobile-menu-open #page {
    transform: translateX(-360px)
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner {
    transform: translateX(0)
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 80px;
    padding: 0 15px 0 30px;
    background-color: #030f27
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-close {
    padding: 0
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-close .toggle {
    position: relative;
    width: 40px;
    height: 40px
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-close .toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 29px;
    height: 2px;
    margin: 0!important;
    transform-origin: center
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-close .toggle i.icon-top {
    transform: translate(-50%,-50%) rotate(45deg)
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-close .toggle:hover i:after,.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-close .toggle:hover i:before {
    background-color: #fff
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-content {
    overflow-y: auto;
    height: calc(100% - 80px);
    padding: 20px 30px 100px
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-content>ul {
    margin: 0;
    padding-left: 0;
    list-style: none
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-content>ul>li {
    position: relative!important
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-content>ul>li+li>a {
    border-top: 1px solid hsla(0,0%,100%,.15)
}

.mobile-menu-open .site-main-mobile-menu .site-main-mobile-menu-inner .mobile-menu-content>ul>li>a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    padding: 19px 0;
    color: #fff;
    border-bottom: 1px solid transparent
}

.site-mobile-menu>ul>li .menu-toggle {
    width: 40px;
    color: #fff
}

.site-mobile-menu>ul>li .menu-toggle i {
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

.site-mobile-menu>ul>li.open>a {
    border-bottom-color: hsla(0,0%,100%,.15)
}

.site-mobile-menu>ul>li.open>.menu-toggle {
    background-color: hsla(0,0%,100%,.2)
}

.site-main-mobile-menu.active {
    visibility: visible;
    opacity: 1
}

.site-main-mobile-menu.active .site-main-mobile-menu-inner {
    transform: translateX(0)
}

.site-main-mobile-menu-inner {
    position: relative;
    z-index: 9;
    float: right;
    width: 360px;
    height: 100%;
    transform: translateX(100%);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top;
    background-size: cover
}

.site-main-mobile-menu-inner:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ""
}

.mobile-menu-open .site-main-mobile-menu {
    visibility: visible;
    opacity: 1
}

.mobile-menu-open .site-main-mobile-menu-inner {
    transform: translateX(0)
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0
}

.mobile-menu-logo img {
    width: 150px;
    object-fit: contain
}

.mobile-menu-close {
    padding: 0
}

.mobile-menu-close .toggle {
    position: relative;
    width: 40px;
    height: 40px
}

.mobile-menu-close .toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 29px;
    height: 2px;
    margin: 0!important;
    transform-origin: center
}

.mobile-menu-close .toggle i.icon-top {
    transform: translate(-50%,-50%) rotate(45deg)
}

.mobile-menu-close .toggle i.icon-bottom {
    transform: translate(-50%,-50%) rotate(-45deg)
}

.mobile-menu-content {
    overflow-y: auto;
    height: calc(100% - 80px);
    padding: 20px 30px 100px
}

.mobile-menu-content .right_guest_profile {
    margin-top: 10px
}

.mobile-menu-content .right_guest_profile .profile_image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 7px
}

.site-mobile-menu>ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.site-mobile-menu>ul>li {
    position: relative!important
}

.site-mobile-menu>ul>li>a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    padding: 19px 0;
    border-bottom: 1px solid hsla(0,0%,100%,.102);
    text-align: left
}

.site-mobile-menu>ul>li .menu-toggle {
    position: absolute;
    top: 11px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent
}

.site-mobile-menu>ul>li .menu-toggle i {
    font-size: 18px;
    line-height: 1
}

.site-mobile-menu>ul>li.open>.menu-toggle i {
    transform: rotateX(180deg)
}

.site-mobile-menu .mega-menu,.site-mobile-menu .sub-menu {
    display: none;
    margin: 14px 0;
    padding-left: 0;
    list-style: none
}

.site-mobile-menu .mega-menu li,.site-mobile-menu .sub-menu li {
    margin-top: 10px;
    text-align: left
}

.site-mobile-menu .mega-menu li a,.site-mobile-menu .sub-menu li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 0;
    color: hsla(0,0%,100%,.7)
}

.custom_modal_notify {
    background-color: hsla(0,0%,94%,.493)!important;
    padding-bottom: 0;
    border-radius: 12px!important
}

.custom_modal_notify .ant-modal-body {
    height: 550px;
    overflow-y: scroll;
    overflow-x: hidden
}

.custom_modal_notify .ant-modal-close-x {
    position: relative;
    right: 10px;
    top: 7px;
    background-color: hsla(0,0%,94%,.493)!important
}

.custom_modal_notify .ant-modal-body::-webkit-scrollbar {
    width: 5px
}

.custom_modal_notify .ant-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1
}

.custom_modal_notify .ant-modal-body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 15px
}

body[data-theme=dark] .custom_modal_notify .ant-modal-body::-webkit-scrollbar-thumb {
    background-color: #c564bb
}

.custom_modal_notify .ant-modal-header {
    background-color: transparent!important
}

.custom_modal_notify .ant-modal-title {
    font-size: 1.4rem
}

.tp-menu-toggle {
    font-size: 16px;
    line-height: 0
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .tp-menu-toggle {
        margin-right:25px
    }
}

@media (max-width: 767px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:992px) and (max-width:1199px) {
    .tp-menu-toggle {
        font-size:28px
    }
}

.tp-side-info-area {
    background: #171151;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 30px;
    width: 350px;
    transform: translateX(120%);
    transition: .3s;
    z-index: 99
}

.tp-side-info-area.tp-sidebar-opened {
    transform: translateX(0)
}

@media (max-width: 767px) {
    .tp-side-info-area {
        width:300px
    }
}

.tp-sidebar-close {
    color: #fff;
    position: absolute;
    left: -35px;
    font-size: 21px;
    background: #171151;
    width: 35px;
    height: 35px
}

.body-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999999;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out 0s
}

.body-overlay.opened {
    opacity: 1;
    visibility: visible
}

.layout-left-right {
    display: flex;
    flex: 0 0 auto
}

@media (max-width: 767px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:992px) and (max-width:1199px) {
    .layout-left-right {
        display:block
    }
}

.tpsideinfo {
    background-color: #000;
    text-align: start;
    position: fixed;
    right: 0;
    top: 0;
    width: 420px;
    height: 100%;
    box-shadow: 5px 15px 30px 0 rgba(5,13,54,.05);
    transition: all .3s cubic-bezier(.785,.135,.15,.86);
    z-index: 9999999;
    padding: 0 15px;
    transform: translateX(100%)
}

@media (max-width: 767px) {
    .tpsideinfo {
        width:320px
    }
}

.tpsideinfo.tp-shop-sidebar-opened {
    transform: translateX(0)
}

.tpsideinfo__close {
    color: #fff;
    right: 30px;
    font-size: 18px;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 40px
}

@media (max-width: 767px) {
    .tpsideinfo__close {
        width:30px;
        height: 30px
    }
}

.mean-container a.meanmenu-reveal {
    display: none
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0
}

.mobile-menu {
    height: calc(100% - 120px);
    overflow-y: auto;
    padding-right: 10px
}

.mobile-menu::-webkit-scrollbar {
    width: 5px
}

.mobile-menu::-webkit-scrollbar-track {
    background-color: var(--primary-color)
}

body[data-theme=dark] .mobile-menu::-webkit-scrollbar-track {
    background-color: #c564bb
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #232222
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block!important;
    text-align: left
}

.mean-container a.meanmenu-reveal {
    display: none!important
}

.mean-container .mean-nav ul li a {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    display: block;
    float: left;
    margin: 0;
    text-align: left;
    text-decoration: none;
    text-transform: capitalize
}

.mean-container .mean-nav ul li a:hover {
    color: var(--primary-color)
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 15px;
    padding: 0!important;
    line-height: 14px;
    border: none;
    height: 26px;
    width: 100%;
    line-height: 26px;
    color: #fff;
    top: 0;
    font-weight: 400;
    text-align: center;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize
}

.mean-container .mean-nav ul li>a>i {
    display: none
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 14px
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
    color: var(--primary-color)
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg)
}

.profile_image {
    height: 40px;
    margin-right: 5px
}

.has-dropdown .submenu li {
    margin: 10px 0
}

@media (max-width: 350px) {
    .tpsideinfo .mobile-menu-logo {
        display:none
    }
}

.logoutWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-color);
    font-family: var(--font-family)
}

.logoutWrapper img {
    width: 200px
}

@media screen and (max-width: 475px) {
    .logoutWrapper img {
        width:190px
    }
}

.logoutWrapper .headline {
    font-size: 42px;
    font-weight: 600
}

@media screen and (max-width: 475px) {
    .logoutWrapper .headline {
        font-size:24px
    }
}

.logoutWrapper .confirmMsg {
    font-size: 20px;
    font-weight: 400
}

@media screen and (max-width: 475px) {
    .logoutWrapper .confirmMsg {
        font-size:16px
    }
}

.logoutBtns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px
}

.logoutBtns .yes {
    background-color: var(--primary-color);
    color: #fff
}

.logoutBtns .no,.logoutBtns .yes {
    padding: 12px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer
}

.logoutBtns .no {
    background-color: #fff;
    color: var(--text-color);
    border: 2px solid #949191
}

.footer_wrapper {
    padding: 40px 0 10px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    
}

.footer_wrapper a,.footer_wrapper li {
    color: #000
}

.footer_wrapper .bottom_circle img {
    position: absolute;
    bottom: -200%;
    right: 0;
    left: 0;
    width: 100%
}

.footer_wrapper .footer_logo img {
    height: 100px;
    object-fit: contain
}

.footer_wrapper .footer_email_subs {
    position: relative;
    margin-bottom: 20px
}

.footer_wrapper .footer_email_subs .subs-btn {
    transition: 1.5s ease-out;
    box-shadow: inset 0 0 0 0 #313131
}

.footer_wrapper .footer_email_subs .subs-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--primary-color);
    color: #fff
}

.footer_wrapper .footer_email_subs input {
    width: 95%;
    padding-left: 30px;
    border-radius: 30px;
    height: 42px
}

.footer_wrapper .footer_email_subs button {
    position: absolute;
    right: 19px;
    top: 0;
    bottom: 0;
    border-radius: 30px;
    background-color: var(--primary-color);
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center
}

.footer_wrapper .footer_left_second .footer_title .footer_heading {
    color: #222222;
    text-transform: capitalize;
    font-family: var(--font-family)
}

.footer_wrapper .footer_left_second .footer_policy {
    list-style-type: none;
    padding-left: 0
}

.footer_wrapper .footer_left_second .footer_policy li {
    padding-bottom: 10px;
    cursor: pointer
}

.footer_wrapper .footer_left_second .footer_policy li:hover {
    color: var(--primary-color)
}

.footer_wrapper .footer_right .footer_title .footer_heading {
    color: #222222;
    text-transform: capitalize;
    font-family: var(--font-family)
}

.footer_wrapper .footer_right .footer_policy {
    list-style-type: none;
    padding-left: 0
}

.footer_wrapper .footer_right .footer_policy li {
    padding-bottom: 10px;
    cursor: pointer
}

.footer_wrapper .footer_right .footer_policy li a:hover {
    color: var(--primary-color)
}

.footer_wrapper .footer_right .footer_social {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    flex-wrap: wrap;
    color: #fff;
    gap: 15px
}

.footer_wrapper .footer_right .footer_social li a {
    display: flex;
    justify-content: center;
    align-items: center
}

.footer_wrapper .footer_right .footer_social li a img {
    width: 30px;
    height: 30px;
    object-fit: contain
}

.footer_wrapper .footer_left_text {
    padding-bottom: 10px
}

.footer_wrapper .footer_left_text p {
    color: #000;
    opacity: 1
}

@media (min-width: 992px) {
    .footer_wrapper .col-lg-3 {
        width:20%
    }

    .footer_wrapper .col-lg-3.footer_left {
        width: 35%
    }

    .footer_wrapper .col-lg-3.footer_left .footer_email_subs,.footer_wrapper .col-lg-3.footer_left .footer_left_text {
        width: 75%
    }

    .footer_wrapper .col-lg-3.footer_left_second {
        width: 25%
    }
}

.footer_wrapper .playstore_img img {
    width: 150px;
    object-fit: contain;
    margin-bottom: 20px
}

.quizplay {
    display: flex;
    color: #fff
}

.quizplay .morphisam {
    border-radius: 46px;
    padding: 30px 0;
    position: relative
}

@media only screen and (max-width: 575px) {
    .quizplay .morphisam {
        padding:15px
    }
}

.quizplay .quiz__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto
}

.quizplay .left-sec .bottom__left {
    display: block
}

.quizplay .left-sec .bottom__left .cat__Box {
    display: flex;
    flex-direction: row;
    position: relative;
    margin-bottom: 40px
}

.quizplay .left-sec .bottom__left .cat__Box:after,.quizplay .left-sec .bottom__left .cat__Box:before {
    background-color: #d3d3d3;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 34%;
    opacity: 1
}

@media screen and (max-width: 480px) {
    .quizplay .left-sec .bottom__left .cat__Box:after,.quizplay .left-sec .bottom__left .cat__Box:before {
        width:20%
    }
}

.quizplay .left-sec .bottom__left .cat__Box .quizplay__title {
    margin: -12px auto auto;
    font-size: 1.25rem;
    color: #000
}

@media only screen and (max-width: 767px) {
    .quizplay .left-sec .bottom__left .cat__Box .quizplay__title {
        font-size:inherit
    }
}

.quizplay .left-sec .bottom__left .bottom__cat__box {
    display: flex
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
    width: 100%;
    list-style-type: none;
    text-decoration: none;
    padding-left: 0;
    position: relative
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .row {
    gap: 30px 0
}

@media (max-width: 991px) {
    .quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
        height:auto
    }
}

@media (max-width: 575px) {
    .quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
        height:auto
    }
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box::-webkit-scrollbar {
    width: 5px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #212121
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button {
    display: flex;
    border-radius: 15px;
    align-items: start;
    text-align: center;
    flex-direction: column;
    padding: 0 30px 20px;
    background: rgba(9,0,41,.059);
    position: relative;
    transition: all .3s ease-in-out;
    overflow: hidden
}

@media screen and (max-width: 1199px) {
    .quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button {
        padding:10px
    }
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover:before {
    left: 50%;
    width: 50%
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover:after {
    cursor: pointer;
    transition: all 1s ease-in-out;
    width: 100%
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover .rightArrow {
    visibility: visible;
    transition: all 2s
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button .active {
    border: 10px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button .button.active-one:after {
    height: 100px!important
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__icon {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__icon img {
    width: 30px;
    height: 30px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__text {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: var(--text-color);
    text-align: start;
    margin-bottom: 7px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .box_totQues {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color);
    margin-bottom: -5px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .rightArrow {
    position: absolute;
    right: 22px;
    top: 22px;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li {
    cursor: pointer;
    margin-right: 10px;
    height: 100%;
    max-height: 160px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .box_innerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start;
    gap: 16px;
    border-bottom: .5px solid #d3d3d3;
    width: 100%;
    height: 80px
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .box_innerData .boxDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: baseline;
    flex-direction: column
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .boxFooterData {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap
}

.quizplay .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .boxFooterData .footerText {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: var(--text-color)
}

.quizplay .subcat__slider__context {
    display: block;
    position: relative
}

.quizplay .subcat__slider__context .inner__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: grey
}

.quizplay .subcat__slider__context .cat__Box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative
}

.quizplay .subcat__slider__context .cat__Box:after,.quizplay .subcat__slider__context .cat__Box:before {
    background-color: #d3d3d3;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 100%;
    opacity: 1
}

@media screen and (max-width: 480px) {
    .quizplay .subcat__slider__context .cat__Box:after,.quizplay .subcat__slider__context .cat__Box:before {
        width:20%
    }
}

.quizplay .subcat__slider__context .cat__Box .quizplay__title {
    margin: auto 10px;
    width: 100%
}

.quizplay .subcat__slider__context .cat__Box .subcat__p {
    font-size: 1.25rem;
    display: block;
    margin: 5px auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #000
}

@media only screen and (max-width: 767px) {
    .quizplay .subcat__slider__context .cat__Box .subcat__p {
        font-size:inherit
    }
}

.quizplay .subcat__slider__context .quizplay-slider {
    padding: 20px 0;
    position: relative
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec {
    margin-bottom: 22px
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
    padding: 18px 12px;
    background: rgba(9,0,41,.059);
    border: none;
    border-radius: 8px;
    gap: 16px;
    cursor: pointer;
    overflow: hidden
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover:before {
    left: 50%;
    width: 50%
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover .rightArrow {
    visibility: visible!important;
    transition: all 2s!important
}

@media screen and (max-width: 991px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
        height:auto
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    position: relative
}

@media (max-width: 360px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData {
        flex-wrap:wrap
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .rightArrow {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
    color: var(--text-color);
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 13px
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:4px
    }
}

@media screen and (max-width: 992px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:0
    }
}

@media screen and (max-width: 399px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:44px
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: column;
    position: relative;
    width: 100%
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardText {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-color)
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
    width: 74%;
    color: transparent
}

@media screen and (max-width: 767px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:100%
    }
}

@media screen and (max-width: 399px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:80%
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress {
    height: 4px;
    background-color: #d3d3d3
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress-bar {
    background-color: var(--primary-color)
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 15px
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails p {
    margin: 0
}

@media screen and (max-width: 1199px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 10px;
        align-items: flex-start;
        width: 100%
    }
}

@media screen and (max-width: 767px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:row;
        gap: 20px;
        align-items: center;
        width: 100%
    }
}

@media screen and (max-width: 399px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 10px 0;
        align-items: flex-start;
        width: 100%
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
    font-family: var(--font-family);
    font-size: 14px;
    width: 100%;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color)
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
        font-size:12px
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .premium {
    width: 100%;
    text-align: end;
    position: relative
}

@media screen and (max-width: 1199px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .premium {
        text-align:start;
        width: auto
    }
}

.quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .premium img {
    position: absolute;
    left: 40px;
    top: -15px
}

@media screen and (min-width: 768px) and (max-width:1199px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .premium img {
        left:120px;
        top: -32px
    }
}

@media screen and (max-width: 767px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .premium img {
        left:-40px;
        top: -15px
    }
}

@media screen and (max-width: 399px) {
    .quizplay .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .premium img {
        left:120px;
        top: -32px
    }
}

.quizplay .subcat__slider__context .quizplay-slider .no_sub_data {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.quizplay .subcat__slider__context .quizplay-slider .swiper-button-next {
    right: -20px;
    color: #fff;
    padding: 0 23px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer
}

.quizplay .subcat__slider__context .quizplay-slider .swiper-button-next:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.quizplay .subcat__slider__context .quizplay-slider .swiper-button-next:hover:after {
    animation: moveoutright 1s linear
}

.quizplay .subcat__slider__context .quizplay-slider .swiper-button-prev {
    left: -20px;
    color: #fff;
    padding: 0 23px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer
}

.quizplay .subcat__slider__context .quizplay-slider .swiper-button-prev:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.quizplay .subcat__slider__context .quizplay-slider .swiper-button-prev:hover:after {
    animation: moveoutleft 1s linear
}

@media only screen and (max-width: 767px) {
    .quizplay .subcat__slider__context .quizplay-slider .swiper-wrapper {
        margin:auto
    }
}

.quizplay .subcat__slider__context .sub_cat_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.quizplay .subcat__slider__context .active-one {
    color: #fff;
    background-color: var(--primary-color)!important
}

.quizplay .subcat__slider__context .active-one p {
    color: #fff
}

.quizplay .subcat__slider__context .unactive-one {
    color: #212121
}

.quizplay .right__bottom.cat__Box {
    display: flex;
    flex-direction: row;
    position: relative
}

.quizplay .right__bottom.cat__Box h6 {
    font-size: 1.25rem;
    color: #000
}

@media only screen and (max-width: 767px) {
    .quizplay .right__bottom.cat__Box h6 {
        font-size:inherit
    }
}

.quizplay .right__bottom .left-line,.quizplay .right__bottom .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    width: 30%;
    display: flex;
    line-height: 2px;
    display: block;
    align-items: center;
    justify-content: center
}

.quizplay .unlock__levels__card {
    position: relative;
    top: 0;
    left: 0
}

.quizplay .unlock__levels__card .card {
    height: 85px;
    border-radius: 25px;
    background-color: #fafafa;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    border: 2px;
    gap: 16px;
    overflow: hidden;
    transition: all .5s ease-in-out
}

.quizplay .levelPlayed {
    border: 3px solid #00bf7a!important;
    background-color: #fff!important
}

.quizplay .levelPlayed:before {
    background: #fff!important
}

.quizplay .levelPlayed .levelPlayedIcon {
    color: #00bf7a;
    position: relative;
    left: 10px;
    top: -4px;
    font-size: 18px
}

.quizplay .unlock__levels__card .levelPlayed:hover .cardLevel,.quizplay .unlock__levels__card .levelPlayed:hover .cardLevelQues {
    color: #000!important
}

.quizplay .unlock__levels__card .card:hover:before {
    width: 50%;
    left: 50%;
    opacity: .2;
    background: var(--primary-color);
    filter: blur(25px)
}

.quizplay .unlock__levels__card .levelPlayed:hover:before {
    width: 100%;
    opacity: 1;
    background: transparent;
    filter: blur(0)
}

.quizplay .unlock__levels__card .card:after,.quizplay .unlock__levels__card .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    background: var(--primary-color);
    filter: blur(16px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.quizplay .unlock__levels__card .card:after {
    right: 0
}

.quizplay .unlock__levels__card .card .cardData {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px 0;
    z-index: 12;
    position: relative
}

.quizplay .unlock__levels__card .card .cardData .cardLevel {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    color: var(--text-color)
}

.quizplay .unlock__levels__card .card .cardData .cardLevelQues {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
    position: relative;
    top: 0;
    transition: top .5s ease-in-out
}

.quizplay .unlock__levels__card .card .bubble-aprox {
    right: 100%;
    bottom: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all .3s;
    border-bottom-right-radius: 10%;
    position: absolute
}

body[data-theme=dark] .quizplay .unlock__levels__card .card .bubble-aprox {
    background-color: #c564bb
}

.quizplay .unlock__levels__card .card:hover .bubble-aprox {
    transition: all .3s;
    right: 0;
    bottom: 0
}

.quizplay .unlock__levels__card .card .questions .inner_que {
    padding-left: 5px
}

.quizplay .unlock__levels__card .card .level__icon {
    color: #212121
}

.quizplay .unlock__levels__card .card .level__icon.open_lock {
    color: var(--primary-color)
}

.quizplay .unlock__levels__card .card:after {
    position: absolute;
    content: "";
    background-color: #212121;
    opacity: .1;
    width: 100%;
    height: 57px;
    z-index: -1;
    margin-top: 33px;
    border-radius: 30px
}

.quizplay .lock__levels__card .card {
    background: rgba(9,0,41,.059);
    opacity: .5
}

.quizplay .lock__levels__card .card:hover:before {
    background-color: transparent
}

.quizplay .lock__levels__card .card:before {
    width: 0;
    background-color: transparent
}

.quizplay .lock__levels__card .card:hover .cardLevel,.quizplay .lock__levels__card .card:hover .cardLevelQues {
    color: var(--text-color)!important
}

@media screen and (min-width: 365px) and (max-width:480px) {
    .Quizzone .row {
        gap:50px 0
    }
}

@media screen and (max-width: 364px) {
    .Quizzone .row {
        gap:50px
    }
}

@media screen and (min-width: 350px) and (max-width:364px) {
    .Quizzone .row {
        gap:50px;
        margin-left: -92px
    }
}

@media (max-width: 767px) {
    .Quizzone {
        margin:20px 0
    }
}

.Quizzone .inner__Quizzone {
    display: block;
    justify-content: center;
    width: 100%;
    align-items: center
}

@media only screen and (max-width: 479px) {
    .Quizzone .inner__Quizzone {
        margin-top:50px;
        margin-bottom: 10px
    }
}

.Quizzone .inner__Quizzone .card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 175px;
    text-align: center;
    border-radius: 25px;
    border: none;
    background-color: hsla(210,2%,66%,.22);
    position: relative;
    cursor: pointer
}

.Quizzone .inner__Quizzone .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.Quizzone .inner__Quizzone .card:hover:before {
    left: 50%;
    width: 50%
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .Quizzone .inner__Quizzone .card {
        height:166px
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .Quizzone .inner__Quizzone .card {
        height:170px
    }
}

@media screen and (max-width: 364px) {
    .Quizzone .inner__Quizzone .card {
        width:220px;
        margin-left: 30px
    }
}

.Quizzone .inner__Quizzone .card .card__icon {
    margin-top: -70px
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .Quizzone .inner__Quizzone .card .card__icon {
        margin-top:-60px
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .Quizzone .inner__Quizzone .card .card__icon {
        margin-top:-60px
    }
}

.Quizzone .inner__Quizzone .card .card__icon img {
    height: 80px;
    background-color: transparent
}

.Quizzone .inner__Quizzone .card:hover img {
    transition: all 1.25s;
    transform: scale(1.3)
}

.Quizzone .inner__Quizzone .card .title__card {
    display: block;
    padding: 10px;
    margin-top: 25px
}

@media screen and (max-width: 364px) {
    .Quizzone .inner__Quizzone .card .title__card {
        padding:0 8px
    }
}

.Quizzone .inner__Quizzone .card .title__card .inner__title {
    color: var(--text-color);
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 900
}

.Quizzone .inner__Quizzone .card .title__card .gameTitle {
    font-size: 20px;
    font-weight: 700
}

.Quizzone .inner__Quizzone .card .title__card .gameDesc {
    font-family: var(--font-family)!important;
    font-size: 14px;
    font-weight: 400
}

.Quizzone .inner__Quizzone .card .title__card .inner__desc {
    font-family: Nunito;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    color: var(--text-color)
}

.Quizzone .inner__Quizzone .card_disabled {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    border-radius: 25px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.16);
    background-color: #fafafa;
    text-align: center;
    position: relative;
    cursor: pointer;
    flex-direction: column
}

.Quizzone .inner__Quizzone .card_disabled .card__icon {
    margin-top: -85px
}

.Quizzone .inner__Quizzone .card_disabled .title__card {
    display: block;
    padding: 10px;
    margin-top: 25px
}

.Quizzone .inner__Quizzone .card_disabled .title__card .inner__title {
    color: #474646;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 900
}

.Quizzone .inner__Quizzone .card_disabled:after {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    width: 125px;
    height: 20px;
    z-index: -1;
    border-radius: 30px;
    bottom: -5px
}

@media (min-width: 1400px) {
    .Quizzone .inner__Quizzone .card_disabled:after {
        width:180px
    }
}

.Quizzone ul {
    padding-left: 0
}

.Quizzone ul li {
    text-decoration: none;
    list-style: none;
    margin: 50px 0
}

@media only screen and (max-width: 479px) {
    .Quizzone ul li {
        margin:0
    }
}

@media (max-width: 350px) {
    .Quizzone ul li {
        width:100%;
        margin: auto
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .Quizzone .small__div {
        width:20%
    }
}

.custom-icon {
    font-size: 1.5em
}

.custom-icon strong {
    margin-top: .7rem;
    font-size: .7em
}

@media (min-width: 1400px) {
    .custom-col-xxl {
        flex:0 0 auto;
        width: 13%
    }
}

.custom_row {
    margin-left: 55px
}

@media only screen and (max-width: 1399px) {
    .custom_row {
        margin-left:0
    }
}

.learning_fun {
    margin-top: 100px;
    position: relative
}

@media only screen and (max-width: 767px) {
    .learning_fun {
        margin-top:0
    }
}

@media screen and (max-width: 1199px) {
    .learning_fun .row {
        flex-direction:column-reverse;
        gap: 44px 0
    }

    .learning_fun .row .col-lg-6 {
        width: 100%
    }

    .learning_fun .row .col-lg-6 .leftSec {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .learning_fun .row .col-lg-6 .rightSec .descListItems {
        align-items: start;
        gap: 40px 0
    }
}

.learning_fun .head_title h2 {
    text-align: center;
    font-size: 34px;
    text-transform: capitalize;
    line-height: 1.5;
    font-weight: 700;
    color: var(--text-color)
}

.learning_fun .head_title .image {
    display: flex;
    justify-content: center;
    width: 100%
}

.learning_fun .head_title .image img {
    text-align: center
}

.learning_fun .learning_fun_inner {
    margin-top: 80px
}

.learning_fun .learning_fun_inner .rightSec .learningFunPara {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: left
}

.learning_fun .learning_fun_inner .rightSec .descListItems {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: start
}

.learning_fun .learning_fun_inner .rightSec .descListItems .listItems {
    position: relative;
    list-style: none;
    left: 20px
}

.learning_fun .learning_fun_inner .rightSec .descListItems .listItems:before {
    content: "";
    position: absolute;
    background-color: #636363;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: -22px;
    top: 8px
}

.learning_fun .learning_fun_inner .rightSec .descListItems .conclusion,.learning_fun .learning_fun_inner .rightSec .descListItems .listItems {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px
}

.learning_fun .learning_fun_inner .rightSec .descListItems .conclusion {
    margin-top: 12px
}

@media screen and (max-width: 576px) {
    .learning_fun .learning_fun_inner .leftSec img {
        width:64%
    }
}

.faqs {
    margin-top: 100px
}

@media only screen and (max-width: 767px) {
    .faqs {
        margin-top:0
    }
}

.faqs .head_title h2 {
    text-align: center;
    font-size: 34px;
    text-transform: capitalize;
    line-height: 1.5;
    font-weight: 700;
    color: var(--text-color)
}

.faqs .head_title .image {
    display: flex;
    justify-content: center;
    width: 100%
}

.faqs .head_title .image img {
    text-align: center
}

.faqs .faqWrapper {
    margin-top: 20px
}

.faqs .faqWrapper .faq-body {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.faqs .faqWrapper .faq-body .accordion {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 50%
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .faqs .faqWrapper .faq-body .accordion {
        width:70%
    }
}

@media screen and (max-width: 1099px) {
    .faqs .faqWrapper .faq-body .accordion {
        width:100%
    }
}

.faqs .faqWrapper .faq-body .accordion .accordion-item {
    border: 0;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    color: rgba(9,0,41,.831)
}

.faqs .faqWrapper .faq-body .accordion .accordion-item .accordion-button {
    border-radius: 0!important;
    background-color: transparent;
    border-bottom: 1px solid #d3d3d3;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: var(--text-color);
    padding: 0 0 20px 30px
}

.faqs .faqWrapper .faq-body .accordion .accordion-item .accordion-button:after {
    background-image: none!important;
    content: "+"!important;
    padding: 0 20px 9px;
    height: auto!important;
    color: var(--text-color);
    width: 60px!important;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 30px;
    background-color: transparent;
    transition: all .3s ease
}

.faqs .faqWrapper .faq-body .accordion .accordion-item .accordion-button:not(.collapsed):after {
    justify-content: center;
    align-items: center;
    display: flex;
    transition: none!important;
    content: "-"!important;
    font-size: 36px;
    transform: rotate(0)!important
}

.faqs .faqWrapper .faq-body .accordion .accordion-item .accordion-button:focus {
    box-shadow: 0 0 10px rgba(0,0,0,.102)
}

.faqs .faqWrapper .faq-body .accordion .accordion-item .accordion-button .collapsed {
    font-size: 28px;
    color: var(--text-primary-color);
    padding: 0 0 0 30px;
    border-radius: 0!important;
    border-bottom: 1px solid hsla(0,0%,83%,0)
}

.faqs .faqWrapper .faq-body .accordion .accordion-item .accordion-collapse {
    border-bottom: 1px solid #d3d3d3
}

.funandlearn {
    display: flex;
    color: #fff
}

.funandlearn .morphisam {
    border-radius: 46px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    background-color: #fff;
    padding: 30px;
    position: relative
}

@media only screen and (max-width: 575px) {
    .funandlearn .morphisam {
        padding:15px
    }
}

.funandlearn .quiz__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto
}

.funandlearn .left-sec .bottom__left {
    display: block
}

.funandlearn .left-sec .bottom__left .cat__Box {
    display: flex;
    flex-direction: row;
    position: relative;
    margin-bottom: 40px
}

.funandlearn .left-sec .bottom__left .cat__Box .left-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    display: block;
    width: 50px;
    align-items: center;
    justify-content: center;
    line-height: 2px
}

.funandlearn .left-sec .bottom__left .cat__Box .funandlearn__title {
    margin: auto 10px;
    font-size: 1.25rem
}

@media only screen and (max-width: 767px) {
    .funandlearn .left-sec .bottom__left .cat__Box .funandlearn__title {
        font-size:inherit
    }
}

.funandlearn .left-sec .bottom__left .cat__Box .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2px
}

.funandlearn .left-sec .bottom__left .bottom__cat__box {
    display: flex
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
    width: 100%;
    list-style-type: none;
    text-decoration: none;
    padding-left: 0;
    position: relative
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .row {
    gap: 30px 0
}

@media (max-width: 991px) {
    .funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
        height:auto
    }
}

@media (max-width: 575px) {
    .funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
        height:auto
    }
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box::-webkit-scrollbar {
    width: 5px
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #212121
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button {
    display: flex;
    border-radius: 15px;
    align-items: start;
    text-align: center;
    flex-direction: column;
    padding: 24px 30px 10px;
    background: rgba(9,0,41,.059);
    position: relative;
    transition: all .3s ease-in-out;
    overflow: hidden
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button {
        padding:10px 8px
    }
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover:before {
    left: 50%;
    width: 50%
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover:after {
    cursor: pointer;
    transition: all 1s ease-in-out;
    width: 100%
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover .rightArrow {
    visibility: visible;
    transition: all 2s
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button .active {
    border: 10px
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button .button.active-one:after {
    height: 100px!important
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__icon {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__text {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: var(--text-color);
    text-align: start
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .box_totQues {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color)
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .rightArrow {
    position: absolute;
    right: 22px;
    top: 22px;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li {
    cursor: pointer;
    margin-right: 10px
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .box_innerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start;
    gap: 16px;
    border-bottom: .5px solid #d3d3d3;
    width: 100%;
    height: 80px
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .box_innerData .boxDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: baseline;
    flex-direction: column
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .boxFooterData {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: space-between
}

.funandlearn .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li .boxFooterData .footerText {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: var(--text-color)
}

.funandlearn .subcat__slider__context {
    display: block;
    position: relative
}

.funandlearn .subcat__slider__context .inner__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: grey
}

.funandlearn .subcat__slider__context .cat__Box {
    display: flex;
    flex-direction: row;
    position: relative
}

.funandlearn .subcat__slider__context .cat__Box .left-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    display: block;
    width: 30%;
    align-items: center;
    justify-content: center;
    line-height: 2px
}

.funandlearn .subcat__slider__context .cat__Box .funandlearn__title {
    margin: auto 10px
}

.funandlearn .subcat__slider__context .cat__Box .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    line-height: 2px
}

.funandlearn .subcat__slider__context .cat__Box .subcat__p {
    font-size: 1.25rem;
    display: block;
    margin: 5px auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #000
}

@media only screen and (max-width: 767px) {
    .funandlearn .subcat__slider__context .cat__Box .subcat__p {
        font-size:inherit
    }
}

.funandlearn .subcat__slider__context .quizplay-slider {
    padding: 20px 0;
    position: relative
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
    padding: 0 12px;
    background: rgba(9,0,41,.059);
    border: none;
    border-radius: 8px;
    gap: 16px;
    cursor: pointer;
    height: 100px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover:before {
    left: 50%;
    width: 50%
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover .rightArrow {
    visibility: visible!important;
    transition: all 2s!important
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    position: relative
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .rightArrow {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
    color: var(--text-color);
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 13px
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:4px
    }
}

@media screen and (max-width: 992px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:0
    }
}

@media screen and (min-width: 576px) and (max-width:767px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:144px
    }
}

@media screen and (max-width: 399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:44px
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: column;
    position: relative
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardText {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-color)
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
    width: 74%;
    color: transparent
}

@media screen and (max-width: 767px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:100%
    }
}

@media screen and (max-width: 399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:80%
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress {
    height: 4px;
    width: 150px;
    background-color: #d3d3d3
}

@media screen and (max-width: 399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress {
        width:100%
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress-bar {
    background-color: var(--primary-color)
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px 20px
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color)
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
        font-size:12px
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .funLevels {
    color: var(--text-color);
    position: relative;
    z-index: 12
}

@media screen and (max-width: 1399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .funLevels {
        top:-8px
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .funLevels .dataTitle {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700
}

@media screen and (max-width: 1399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .subcatintro__sec .funLevels .dataTitle {
        font-size:17px
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper {
    position: relative;
    margin-bottom: 22px
}

.funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card {
    overflow: hidden;
    width: 100%
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card {
        height:110px
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card {
        height:100px
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card:hover:before {
    width: 90%;
    opacity: .09;
    background: var(--primary-color);
    filter: blur(16px)
}

.funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card:hover .fun_learn_hide {
    top: 8px
}

.funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card:before {
    content: "";
    position: absolute;
    top: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .06;
    filter: blur(16px);
    width: 30%;
    height: 100%;
    transition: .5s ease;
    left: 0!important
}

.funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .card .fun_learn_hide {
    position: relative;
    top: 0;
    transition: top .5s ease-in-out
}

@media screen and (max-width: 1399px) {
    .funandlearn .subcat__slider__context .quizplay-slider .funLevelsWrapper .swiper-wrapper {
        gap:20px!important
    }
}

.funandlearn .subcat__slider__context .quizplay-slider .no_sub_data {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.funandlearn .subcat__slider__context .quizplay-slider .swiper-button-next {
    right: -20px;
    color: #fff;
    padding: 0 23px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer
}

.funandlearn .subcat__slider__context .quizplay-slider .swiper-button-next:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.funandlearn .subcat__slider__context .quizplay-slider .swiper-button-next:hover:after {
    animation: moveoutright 1s linear
}

.funandlearn .subcat__slider__context .quizplay-slider .swiper-button-prev {
    left: -20px;
    color: #fff;
    padding: 0 23px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer
}

.funandlearn .subcat__slider__context .quizplay-slider .swiper-button-prev:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.funandlearn .subcat__slider__context .quizplay-slider .swiper-button-prev:hover:after {
    animation: moveoutleft 1s linear
}

.funandlearn .subcat__slider__context .sub_cat_title {
    display: flex;
    justify-content: center;
    align-items: center
}

.funandlearn .subcat__slider__context .active-one {
    color: #fff;
    background-color: var(--primary-color)!important
}

.funandlearn .subcat__slider__context .active-one p {
    color: #fff
}

.funandlearn .subcat__slider__context .unactive-one {
    color: #212121
}

.funandlearn .right__bottom.cat__Box {
    display: flex;
    flex-direction: row;
    position: relative
}

.funandlearn .right__bottom.cat__Box h6 {
    font-size: 1.25rem;
    color: #000
}

@media only screen and (max-width: 767px) {
    .funandlearn .right__bottom.cat__Box h6 {
        font-size:inherit
    }
}

.funandlearn .right__bottom .left-line,.funandlearn .right__bottom .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    width: 30%;
    display: flex;
    display: block;
    align-items: center;
    justify-content: center;
    line-height: 2px
}

.funandlearn .unlock__levels__card {
    position: relative;
    top: 0;
    left: 0
}

.funandlearn .unlock__levels__card .card {
    height: 85px;
    border-radius: 25px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.16);
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative
}

.funandlearn .unlock__levels__card .card .bubble-aprox {
    right: 100%;
    bottom: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all .3s;
    border-bottom-right-radius: 10%;
    position: absolute
}

body[data-theme=dark] .funandlearn .unlock__levels__card .card .bubble-aprox {
    background-color: #c564bb
}

.funandlearn .unlock__levels__card .card:hover .bubble-aprox {
    transition: all .3s;
    right: 0;
    bottom: 0
}

.funandlearn .unlock__levels__card .card .questions .inner_que {
    padding-left: 5px
}

.funandlearn .unlock__levels__card .card .level__icon {
    color: #212121
}

.funandlearn .unlock__levels__card .card .level__icon.open_lock {
    color: var(--primary-color)
}

.funandlearn .unlock__levels__card .card:after {
    position: absolute;
    content: "";
    background-color: #212121;
    width: 100%;
    height: 57px;
    z-index: -1;
    margin-top: 33px;
    border-radius: 30px
}

@media screen and (max-width: 1200px) and (max-width:1399px) {
    .funandlearn .subCatWrapper .swiper-wrapper {
        gap:76px!important
    }
}

@media screen and (max-width: 992px) and (max-width:1199px) {
    .funandlearn .subCatWrapper .swiper-wrapper {
        gap:118px!important
    }
}

@media screen and (max-width: 768px) and (max-width:991px) {
    .funandlearn .subCatWrapper .swiper-wrapper {
        gap:108px!important
    }
}

.custom-btn {
    background-color: var(--primary-color);
    color: #212121
}

.fun__title p {
    text-align: justify;
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color)
}

@media screen and (max-width: 472px) {
    .fun__title p {
        text-align:start
    }
}

.funandlearnplay .inner__headerdash {
    position: relative;
    justify-content: center!important
}

.funandlearnplay .total__out__leveldata {
    position: absolute;
    left: 0;
    top: 23px
}

@media only screen and (max-width: 479px) {
    .funandlearnplay .total__out__leveldata {
        position:relative;
        margin-top: 40px
    }
}

.funandlearnplay .funLearnTextData {
    padding: 0 50px
}

@media screen and (max-width: 812px) {
    .funandlearnplay .funLearnTextData {
        padding:0
    }
}

.funandlearnplay .funLearnTextData .funLearntitle {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 50px
}

.funandlearnplay .funLearnTextData .playBtn {
    background-color: rgba(9,0,41,.129);
    color: var(--text-color);
    border-radius: 8px;
    padding: 12px 40px;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .funLearnQuestionsUpperDiv.selfLearnQuestionsUpperDiv {
        margin-top:0!important
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .funLearnQuestionsUpperDiv {
        flex-wrap:wrap;
        gap: 12px
    }

    .funLearnQuestionsUpperDiv.selfLearnQuestionsUpperDiv {
        flex-wrap: nowrap;
        margin-top: 0!important
    }

    .progressbar-container {
        margin-top: 0
    }
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .funLearnQuestionsUpperDiv.selfLearnQuestionsUpperDiv {
        flex-wrap:nowrap!important;
        margin-top: 0!important
    }

    .progressbar-container {
        margin-top: 0
    }
}

@media screen and (max-width: 399px) {
    .funLearnQuestionsUpperDiv {
        margin-top:-10px
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .funLearnQuestionsUpperDiv .leftSec,.funLearnQuestionsUpperDiv .rightSec {
        justify-content:space-between!important;
        width: 100%
    }

    .funLearnQuestionsUpperDiv .rightSec {
        display: flex;
        float: right
    }
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .funLearnQuestionsUpperDiv {
        flex-wrap:wrap;
        gap: 6px
    }

    .funLearnQuestionsUpperDiv .leftSec,.funLearnQuestionsUpperDiv .rightSec {
        justify-content: space-between!important;
        width: 100%
    }
}

.true_and_false .inner__headerdash {
    position: relative;
    justify-content: center!important
}

.true_and_false .total__out__leveldata {
    position: absolute;
    left: 0;
    top: 23px
}

@media only screen and (max-width: 479px) {
    .true_and_false .total__out__leveldata {
        position:relative;
        margin-top: 40px
    }
}

.true_and_false .bookmark_btn {
    position: absolute;
    right: 15px;
    top: 75px
}

.Guesstheword {
    display: flex;
    color: #fff
}

.Guesstheword .morphisam {
    border-radius: 46px;
    padding: 30px;
    position: relative
}

@media only screen and (max-width: 575px) {
    .Guesstheword .morphisam {
        padding:15px
    }
}

.Guesstheword .quiz__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto
}

.Guesstheword .left-sec .bottom__left {
    display: block
}

.Guesstheword .left-sec .bottom__left .cat__Box {
    display: flex;
    flex-direction: row;
    position: relative;
    margin-bottom: 40px
}

.Guesstheword .left-sec .bottom__left .cat__Box .left-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    display: block;
    width: 50px;
    align-items: center;
    justify-content: center;
    line-height: 2px
}

.Guesstheword .left-sec .bottom__left .cat__Box .quizplay__title {
    margin: auto 10px;
    font-size: 1.25rem
}

@media only screen and (max-width: 767px) {
    .Guesstheword .left-sec .bottom__left .cat__Box .quizplay__title {
        font-size:inherit
    }
}

.Guesstheword .left-sec .bottom__left .cat__Box .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2px
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box {
    display: flex
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
    width: 100%;
    list-style-type: none;
    text-decoration: none;
    padding-left: 0;
    position: relative
}

@media (max-width: 991px) {
    .Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
        height:auto
    }
}

@media (max-width: 575px) {
    .Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box {
        height:auto
    }
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box::-webkit-scrollbar {
    width: 5px
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #212121
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button {
    display: flex;
    border-radius: 15px;
    align-items: center;
    position: relative;
    text-align: center;
    margin-bottom: 10px
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button:hover:after {
    cursor: pointer;
    transition: all 1s ease-in-out;
    width: 100%
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button .active {
    border: 10px
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .button .button.active-one:after {
    height: 100px!important
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__icon {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box .Box__text {
    margin-left: 20px;
    text-align: center;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1
}

.Guesstheword .left-sec .bottom__left .bottom__cat__box .inner__Cat__box li {
    cursor: pointer
}

.Guesstheword .subcat__slider__context {
    display: block;
    position: relative
}

.Guesstheword .subcat__slider__context .inner__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: grey
}

.Guesstheword .subcat__slider__context .cat__Box {
    display: flex;
    flex-direction: row;
    position: relative
}

.Guesstheword .subcat__slider__context .cat__Box .left-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    display: block;
    width: 30%;
    align-items: center;
    justify-content: center;
    line-height: 2px
}

.Guesstheword .subcat__slider__context .cat__Box .quizplay__title {
    margin: auto 10px
}

.Guesstheword .subcat__slider__context .cat__Box .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    line-height: 2px
}

.Guesstheword .subcat__slider__context .cat__Box .subcat__p {
    font-size: 1.25rem;
    display: block;
    margin: 5px auto;
    justify-content: center;
    text-align: center;
    align-items: center
}

@media only screen and (max-width: 767px) {
    .Guesstheword .subcat__slider__context .cat__Box .subcat__p {
        font-size:inherit
    }
}

.Guesstheword .subcat__slider__context .quizplay-slider {
    padding: 20px 0;
    position: relative
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec {
    margin: 30px auto
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
    padding: 30px 12px 18px;
    background: rgba(9,0,41,.059);
    border: none;
    border-radius: 8px;
    gap: 16px;
    cursor: pointer;
    overflow: hidden;
    width: 280px
}

@media screen and (max-width: 1199px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
        width:100%
    }
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover:before {
    left: 50%;
    width: 50%
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover .rightArrow {
    visibility: visible!important;
    transition: all 2s!important
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    position: relative
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon {
    margin-top: -24px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .rightArrow {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
    color: var(--text-color);
    position: absolute;
    bottom: 16px;
    right: 0;
    font-size: 13px
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:4px
    }
}

@media screen and (max-width: 992px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:0
    }
}

@media screen and (max-width: 399px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:44px
    }
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: column;
    position: relative
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardText {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-color)
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
    width: 74%;
    color: transparent
}

@media screen and (max-width: 767px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:100%
    }
}

@media screen and (max-width: 399px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:80%
    }
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress {
    height: 4px;
    background-color: #d3d3d3
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress-bar {
    background-color: var(--primary-color)
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px 20px
}

@media screen and (max-width: 1199px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 0;
        align-items: flex-start
    }
}

@media screen and (max-width: 767px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:row;
        gap: 90px;
        align-items: center
    }
}

@media screen and (max-width: 399px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 0;
        align-items: flex-start
    }
}

.Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color)
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .Guesstheword .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
        font-size:12px
    }
}

.Guesstheword .subcat__slider__context .quizplay-slider .no_sub_data {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.Guesstheword .subcat__slider__context .quizplay-slider .swiper-button-next {
    right: -20px;
    color: #fff;
    padding: 0 23px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer
}

.Guesstheword .subcat__slider__context .quizplay-slider .swiper-button-next:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.Guesstheword .subcat__slider__context .quizplay-slider .swiper-button-next:hover:after {
    animation: moveoutright 1s linear
}

.Guesstheword .subcat__slider__context .quizplay-slider .swiper-button-prev {
    left: -20px;
    color: #fff;
    padding: 0 23px;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer
}

.Guesstheword .subcat__slider__context .quizplay-slider .swiper-button-prev:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.Guesstheword .subcat__slider__context .quizplay-slider .swiper-button-prev:hover:after {
    animation: moveoutleft 1s linear
}

.Guesstheword .subcat__slider__context .sub_cat_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.Guesstheword .subcat__slider__context .active-one {
    color: #fff;
    background-color: var(--primary-color)!important
}

.Guesstheword .subcat__slider__context .active-one p {
    color: #fff
}

.Guesstheword .subcat__slider__context .unactive-one {
    color: #212121
}

.Guesstheword .right__bottom.cat__Box {
    display: flex;
    flex-direction: row;
    position: relative
}

.Guesstheword .right__bottom.cat__Box h6 {
    font-size: 1.25rem
}

@media only screen and (max-width: 767px) {
    .Guesstheword .right__bottom.cat__Box h6 {
        font-size:inherit
    }
}

.Guesstheword .right__bottom .left-line,.Guesstheword .right__bottom .right-line {
    border: 1px solid #b3b3b3;
    margin: auto;
    width: 30%;
    display: flex;
    display: block;
    align-items: center;
    justify-content: center;
    line-height: 2px
}

.Guesstheword .unlock__levels__card {
    position: relative;
    top: 0;
    left: 0
}

.Guesstheword .unlock__levels__card .card {
    height: 85px;
    border-radius: 25px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.16);
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative
}

.Guesstheword .unlock__levels__card .card .bubble-aprox {
    right: 100%;
    bottom: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all .3s;
    border-bottom-right-radius: 10%;
    position: absolute
}

body[data-theme=dark] .Guesstheword .unlock__levels__card .card .bubble-aprox {
    background-color: #c564bb
}

.Guesstheword .unlock__levels__card .card:hover .bubble-aprox {
    transition: all .3s;
    right: 0;
    bottom: 0
}

.Guesstheword .unlock__levels__card .card .questions .inner_que {
    padding-left: 5px
}

.Guesstheword .unlock__levels__card .card .level__icon {
    color: #212121
}

.Guesstheword .unlock__levels__card .card .level__icon.open_lock {
    color: var(--primary-color)
}

.Guesstheword .unlock__levels__card .card:after {
    position: absolute;
    content: "";
    background-color: #212121;
    width: 100%;
    height: 57px;
    z-index: -1;
    margin-top: 33px;
    border-radius: 30px
}

.Guesstheword .card__name p {
    color: #212121
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .AudioQuestion .subcat__slider__context .quizplay-slider .swiper-wrapper {
        gap:0 50px
    }
}

.AudioQuestion .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
    width: 250px
}

@media screen and (max-width: 1199px) {
    .AudioQuestion .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
        width:100%
    }
}

@media screen and (max-width: 575px) {
    .AudioQuestion .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:85%
    }
}

.guess_the_word_comp {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.guess_the_word_comp input {
    background-color: #fff;
    border-radius: 5px;
    height: 60px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    width: 300px;
    margin-right: 20px;
    border: #e3e3e3;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color)
}

.guess_the_word_comp .button_area ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0
}

.guess_the_word_comp .button_area ul li {
    margin-right: 20px;
    margin-bottom: 10px
}

.guess_the_word_comp .guessWordDivider {
    margin-bottom: 12px
}

.guess_the_word_comp .guessWordDivider:after,.guess_the_word_comp .guessWordDivider:before {
    width: 200px!important
}

@media screen and (max-width: 575px) {
    .guess_the_word_comp .guessWordDivider:after,.guess_the_word_comp .guessWordDivider:before {
        width:100px!important
    }
}

.guess_the_word_comp .bottom_button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly
}

.guess_the_word_comp .bottom_button .btn {
    text-align: center;
    width: 200px
}

.guess_the_word_comp .custom_input {
    width: 64px
}

.guess_the_word_comp .button_area .btn-primary:disabled {
    color: var(--text-color);
    background-color: #fff;
    border: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700
}

.join_btn .btn-primary:disabled {
    background-color: var(--primary-color)!important;
    border-color: var(--primary-color)!important
}

.guess_the_word_comp .buttondata {
    width: 48px;
    height: 48px
}

.guess_the_word_comp .input_box {
    flex-wrap: wrap
}

.guess_the_word_comp .input_box,.setNoFound {
    display: flex;
    align-items: center;
    justify-content: center
}

.setNoFound {
    background-color: #656565;
    color: #fff;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    border-radius: 10px;
    flex-direction: column
}

.setNoFound .nobtn {
    color: #fff;
    background-color: var(--primary-color)
}

@media only screen and (max-width: 479px) {
    .guessthewordque .inner__headerdash {
        margin:20px auto
    }
}

.guessthewordque .total__out__leveldata {
    position: relative!important;
    right: auto!important;
    top: 0
}

@media only screen and (max-width: 479px) {
    .guessthewordque .total__out__leveldata {
        position:relative;
        margin-top: 0
    }

    .guessthewordque .content__text p {
        margin-top: 0!important
    }
}

.guessthewordque .bookmark_btn {
    position: relative;
    top: 0;
    right: 0
}

@media screen and (max-width: 991px) {
    .guessWordQuestionsUpperDiv {
        margin-top:0!important
    }
}

.reviewAnsShow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px
}

.reviewAnsShow .correctAns {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #d3d3d3
}

.reviewAnsShow .correctAns span {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800
}

.reviewAnsShow .correctAns span img {
    margin-right: 12px
}

.reviewAnsShow .correctAns span span {
    font-weight: 400
}

.guessWordOptionWrapper {
    flex-wrap: wrap
}

.guessWordOptionWrapper .btn {
    width: 200px
}

.SelfLearning.ExamModule .today_box {
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer
}

.SelfLearning.ExamModule .today_box .today_bottom,.SelfLearning.ExamModule .today_box .today_upper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.SelfLearning.ExamModule .today_box .card {
    padding: 30px 20px;
    background: rgba(9,0,41,.059);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0
}

.subdetails_separator {
    border-left: 1px solid var(--text-color);
    align-self: flex-start;
    height: 15px
}

@media screen and (max-width: 399px) {
    .SelfLearning.ExamModule .today_box .card {
        padding:16px 4px
    }
}

.SelfLearning.ExamModule .today_box .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.SelfLearning.ExamModule .today_box .card:hover:before {
    left: 50%;
    width: 50%
}

.SelfLearning.ExamModule .today_box .card:hover .rightArrow {
    visibility: visible!important;
    transition: all 2s!important
}

.SelfLearning.ExamModule .today_box .card .complteCardInnerData {
    justify-content: space-between!important
}

.SelfLearning.ExamModule .today_box .card .cardInnerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .Box__icon {
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff;
    gap: 14px
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 5px
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .rightArrow {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .progressNum {
    color: var(--text-color);
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 13px
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .SelfLearning.ExamModule .today_box .card .cardInnerData .progressNum {
        right:4px
    }
}

@media screen and (max-width: 992px) {
    .SelfLearning.ExamModule .today_box .card .cardInnerData .progressNum {
        right:0
    }
}

@media screen and (max-width: 399px) {
    .SelfLearning.ExamModule .today_box .card .cardInnerData .progressNum {
        right:44px
    }
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .cardDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: column;
    position: relative
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .cardDetails .cardText {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-color);
    word-break: break-word;
    margin-bottom: 10px
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .cardDetails .cardSubDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px 15px
}

@media screen and (max-width: 399px) {
    .SelfLearning.ExamModule .today_box .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 0;
        align-items: flex-start
    }

    .subdetails_separator {
        display: none
    }
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color)
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .SelfLearning.ExamModule .today_box .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
        font-size:12px
    }
}

.SelfLearning.ExamModule .today_box .card .cardInnerData .examTotMarks {
    background-color: #fff;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 5px 10px;
    text-align: center
}

.SelfLearning.ExamModule .nav-link {
    color: #212121;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize
}

.SelfLearning.ExamModule .nav-link.active {
    font-weight: 600
}

.SelfLearning.ExamModule .exam_image img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 350px
}

.SelfLearning.ExamModule .error_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 85px
}

@media only screen and (max-width: 767px) {
    .SelfLearning.ExamModule .error_content {
        top:30px
    }
}

.SelfLearning.ExamModule .error_content .error_img {
    height: 100px;
    aspect-ratio: 1/1;
    width: 100%
}

.SelfLearning.ExamModule .error_content h6 {
    color: var(--primary-color)
}

.completeDataModal {
    padding: 10px;
    border-radius: 15px
}

.completeDataModal .result_title {
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 5px;
    margin-bottom: 15px;
    margin-top: 5px
}

.completeDataModal .result_title h3 {
    color: var(--text-color)!important;
    margin-bottom: 0;
    font-weight: 700
}

.completeDataModal .result_marks_data .mainWrapper {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.completeDataModal .result_marks_data .mainWrapper .obtMarks {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 32px;
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color)
}

@media screen and (max-width: 399px) {
    .completeDataModal .result_marks_data .mainWrapper .obtMarks {
        font-size:20px
    }
}

.completeDataModal .result_marks_data .mainWrapper .totQues {
    background-color: #fff;
    padding: 10px;
    border-radius: 16px;
    color: var(--text-color)
}

.completeDataModal .result_marks_data .mainWrapper .totQues .commanDiv {
    display: flex;
    justify-content: center;
    justify-content: space-around;
    font-family: var(--font-family);
    align-items: center;
    text-align: center
}

.completeDataModal .result_marks_data .mainWrapper .totQues .bottomDiv span,.completeDataModal .result_marks_data .mainWrapper .totQues .centerDiv span,.completeDataModal .result_marks_data .mainWrapper .totQues .upperDiv span {
    font-size: 20px;
    font-weight: 400
}

.completeDataModal .result_marks_data .mainWrapper .allQuest {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv {
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    padding: 30px 10px 10px;
    position: relative;
    overflow: hidden
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:after,.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:before {
    content: "";
    position: absolute;
    bottom: -1px;
    height: 6px;
    border-radius: 50px;
    width: 80px
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:before {
    left: 70px;
    background-color: #00bf7a
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:before {
        left:50px
    }
}

@media screen and (max-width: 399px) {
    .completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:before {
        left:40px
    }
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:after {
    right: 70px;
    background-color: var(--primary-color)
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:after {
        right:45px
    }
}

@media screen and (max-width: 399px) {
    .completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv:after {
        right:30px
    }
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .corrDiv {
    border-right: 2px solid #d3d3d3;
    padding-right: 50px
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .corrDiv {
        padding-right:22px
    }
}

@media screen and (max-width: 399px) {
    .completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .corrDiv {
        padding-right:2px
    }
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .corrDiv,.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .inCorrDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
    position: relative;
    overflow: hidden
}

.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .corrDiv span,.completeDataModal .result_marks_data .mainWrapper .corrIncorrDiv .inCorrDiv span {
    font-family: Lato;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    text-align: center
}

.completeDataModal .result_marks_data .inner_data {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between
}

.completeDataModal .result_marks_data .inner_data p {
    margin-bottom: 0
}

.completeDataModal .result_marks_data .inner_data .result_Data {
    border-radius: 50px;
    background-color: #212121;
    color: var(--primary-color);
    padding: 10px;
    margin-left: 10px;
    width: 35%;
    text-align: center
}

.completeDataModal .inner_total_data {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background-color: hsla(0,0%,50%,.302);
    border-radius: 10px;
    color: var(--primary-color)
}

.completeDataModal .bottom_data {
    background-color: #212121;
    color: var(--primary-color);
    border-radius: 10px 10px 0 0
}

.completeDataModal .bottom_data_two {
    background-color: green;
    color: #fff;
    border-radius: 10px 10px 0 0
}

.completeDataModal .bottom_data_three {
    background-color: #ff4500;
    color: #fff;
    border-radius: 10px 10px 0 0
}

.exammodal.custom_modal_notify.self-modal .ant-modal-body {
    height: 600px!important;
    overflow-y: scroll!important
}

@media only screen and (max-width: 575px) {
    .exammodal.custom_modal_notify.self-modal .ant-modal-body {
        padding:27px 0 0
    }
}

.exammodal.custom_modal_notify.self-modal .ant-modal-close {
    top: 15px;
    right: 25px
}

.randomplayer .headlineText {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 16px
}

.randomplayer .inner_Screen {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 0;
    flex-wrap: wrap;
    gap: 20px
}

@media screen and (max-width: 575px) {
    .randomplayer .inner_Screen {
        flex-direction:column
    }
}

@media screen and (min-width: 400px) and (max-width:660px) {
    .randomplayer .inner_Screen {
        flex-direction:row;
        justify-content: center!important
    }
}

@media screen and (min-width: 400px) and (max-width:540px) {
    .randomplayer .onevsone_colum_adj {
        flex-direction:column!important
    }
}

.randomplayer .inner_Screen .vs_image {
    margin: 0 20px
}

.randomplayer .inner_Screen .vs_image img {
    width: 40px
}

.randomplayer .user_profile {
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    width: 170px;
    height: 180px
}

.randomplayer .user_profile .userName {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px
}

.randomplayer .user_profile .createJoinSpan {
    background: rgba(9,0,41,.102);
    color: var(--text-color);
    border-radius: 8px;
    padding: 6px 27px
}

.randomplayer .user_profile img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50px
}

.randomplayer .opponent_image {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    width: 170px;
    height: 180px
}

.randomplayer .opponent_image .userName {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px
}

.randomplayer .opponent_image .createJoinSpan {
    background: rgba(9,0,41,.102);
    color: var(--text-color);
    border-radius: 8px;
    padding: 6px 30px
}

.randomplayer .opponent_image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50px
}

.randomplayer .start_game {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px
}

.randomplayer .start_game .btn {
    width: 100%;
    height: 52px;
    padding: 10px;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800;
    transition: all .3s
}

.randomplayer .start_game .btn:hover {
    font-size: 22px
}

.groupbattle .user_data .opponent_image img,.groupbattle .user_profile img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    border-radius: 50px
}

.groupbattle .rightWrongAnsDiv img {
    width: auto!important;
    height: auto!important
}

.dashboard .whitebackground .inner__headerdash.groupPlay_header {
    justify-content: space-between!important;
    margin-left: -142px
}

@media screen and (max-width: 767px) {
    .dashboard .whitebackground .inner__headerdash.groupPlay_header {
        margin-left:0
    }
}

@media only screen and (max-width: 767px) {
    .dashboard .whitebackground .inner__headerdash.groupPlay_header {
        flex-direction:column;
        justify-content: center!important
    }
}

.groupPlay_header .total__out__leveldata {
    top: 0
}

@media only screen and (max-width: 767px) {
    .groupPlay_header .total__out__leveldata {
        top:30px
    }
}

.dashboard .whitebackground .groupPlay_header .inner__headerdash_data {
    position: relative;
    left: 50%
}

@media only screen and (max-width: 767px) {
    .dashboard .whitebackground .groupPlay_header .inner__headerdash_data {
        left:auto
    }
}

.groupbattle .user_data {
    justify-content: space-evenly!important
}

.loginform .inner__login__img {
    height: 100%;
    position: relative;
    flex-direction: column
}

.loginform .inner__login__img,.loginform .inner__login__img img {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.loginform .inner__login__img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 350px
}

.loginform .morphisam {
    border-radius: 16px;
    border: 2px solid #fff;
    background:#fbdf4b;
    position: relative
}

body[data-theme=dark] .loginform .morphisam {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff
}

@media only screen and (max-width: 991px) {
    .loginform .border-line:before {
        display:none
    }
}

.loginform .react-tel-input {
    padding: 0;
    border: none
}

.loginform .auth-signup {
    font-weight: 600
}

.inner__login__form {
    padding: 30px
}

.inner__login__form .sent_otp h2 {
    text-align: center;
    font-weight: 600;
    color: var(--text-color)
}

.inner__login__form .sent_otp label {
    text-align: left;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px
}

.inner__login__form .custom-input-class {
    padding: 0;
    width: 50px!important;
    border: transparent;
    height: 50px
}

.inner__login__form .resend_otp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.inner__login__form .resend_otp .main-color {
    color: var(--primary-color);
    font-weight: 600
}

.inner__login__form .btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.inner__login__form .btn-group .btn {
    padding: 20px 48px;
    width: 100%;
    border-radius: 16px!important
}

.inner__login__form .otpbox {
    gap: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

@media only screen and (max-width: 767px) {
    .inner__login__form {
        padding:30px 0
    }
}

.inner__login__form form {
    width: 100%
}

.inner__login__form h3 {
    color: #212121;
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-color)!important
}

@media only screen and (max-width: 575px) {
    .inner__login__form h3 {
        font-size:2rem
    }
}

.inner__login__form p {
    color: #000
}

.inner__login__form input {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    height: 60px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 55px
}

.inner__login__form input:focus {
    box-shadow: none;
    border: transparent
}

.inner__login__form .social__icons {
    margin: 30px auto
}

.inner__login__form .social__icons ul {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    padding-left: 0
}

@media only screen and (max-width: 575px) {
    .inner__login__form .social__icons ul {
        flex-direction:column
    }
}

.inner__login__form .social__icons ul li {
    display: flex;
    align-items: center;
    width: 100%
}

.inner__login__form .social__icons ul li a:hover {
    color: #fff
}

.inner__login__form .social__icons ul li .social__icons {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 10px;
    color: rgba(255,77,65,.871);
    border: none
}

.inner__login__form .social__icons ul li .social__icons_btn {
    display: flex;
    gap: 10px;
    width: 100%;
    font-weight: 500;
    color: #000;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(9,0,41,.48)
}

.inner__login__form .social__icons ul li .facebook_icon svg path {
    color: #3b5998;
    fill: #3b5998;
    background-image: linear-gradient(180deg,transparent 20%,#fff 0,#fff 93%,transparent 0);
    background-size: 55%;
    background-position: 70% 0;
    background-repeat: no-repeat
}

.inner__login__form .sign__up {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #748494
}

.inner__login__form .sign__up .checkbox {
    width: auto;
    height: auto;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 0;
    margin-right: 10px;
    padding-left: 0
}

.inner__login__form .sign__up span a {
    color: #000;
    font-weight: 500;
    text-decoration: underline
}

.inner__login__form .send-button {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 25px
}

@media (max-width: 575px) {
    .inner__login__form .send-button {
        flex-direction:column
    }
}

.inner__login__form .send-button .btn {
    border-radius: 16px;
    width: 100%;
    padding: 20px 48px
}

.inner__login__form .continue {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}

.inner__login__form .continue .line {
    height: 1px;
    width: 20%;
    opacity: .16;
    background-color: #000
}

@media (max-width: 575px) {
    .inner__login__form .continue .line {
        display:none
    }
}

.inner__login__form .continue p {
    margin: 0 20px
}

.loginform .inner__login__form .emailicon,.loginform .inner__login__form .emailicon2,.loginform .inner__login__form .nameicon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 63px;
    text-align: center;
    border-radius: 5px;
    color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center
}

.loginform .inner__login__form input[type=email]::placeholder,.loginform .inner__login__form input[type=password]::placeholder,.loginform .inner__login__form input[type=text]::placeholder,.otpverify .inner__login__form input[type=text]::placeholder {
    text-align: left
}

.resetpassword a {
    color: #000;
    font-weight: 600
}

.submit_login {
    padding: 14px 48px;
    font-size: 20px
}

.password_icon {
    position: absolute;
    top: -10px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    bottom: 0;
    color: #141313
}

.conditions {
    color: #000
}

.react-tel-input .form-control {
    width: 100%!important;
    height: 53px!important;
    border: transparent!important;
    padding-left: 38px!important
}

.react-tel-input .country-list {
    width: 440px!important
}

@media (max-width: 575px) {
    .react-tel-input .country-list {
        width:290px!important
    }
}

.react-tel-input .flag-dropdown {
    background-color: transparent!important;
    border: transparent!important
}

.email_send {
    padding: 20px 48px
}

.intro-slider:hover .main-slider-nav {
    opacity: 1;
    visibility: visible
}

.intro-slider .main-slider-nav {
    cursor: pointer;
    background: rgba(0,0,0,.25);
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: block;
    text-align: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

.intro-slider .main-slider-nav:after {
    display: none
}

.intro-slider .main-slider-nav i {
    font-size: 40px;
    line-height: 1;
    vertical-align: middle
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .intro-slider .main-slider-nav i {
        font-size:30px
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .intro-slider .main-slider-nav i {
        font-size:24px
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .intro-slider .main-slider-nav i {
        font-size:24px
    }
}

@media only screen and (max-width: 767px) {
    .intro-slider .main-slider-nav i {
        font-size:24px
    }
}

.intro-slider .main-slider-nav:hover {
    color: #1292ee
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .intro-slider .main-slider-nav {
        width:80px;
        height: 80px;
        line-height: 80px
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .intro-slider .main-slider-nav {
        width:60px;
        height: 60px;
        line-height: 60px
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .intro-slider .main-slider-nav {
        width:60px;
        height: 60px;
        line-height: 60px
    }
}

@media only screen and (max-width: 767px) {
    .intro-slider .main-slider-nav {
        width:50px;
        height: 50px;
        line-height: 50px
    }
}

.intro-slider .home-slider-prev {
    left: 30px
}

.intro-slider .home-slider-next {
    right: 30px
}

.intro-slider .home-slider-next:after {
    display: none
}

body[data-theme=dark] .intro-slider-wrap {
    background-color: transparent
}

.intro-slider-wrap {
    background-color: #00796b;
    margin-top: -112px;
    padding-top: 100px;
    position: relative
}

@media only screen and (max-width: 479px) {
    .intro-slider-wrap {
        display:flex;
        justify-content: center;
        align-items: center;
        background-color: transparent
    }

    .intro-slider-wrap .swiper-container {
        padding: 30px 0
    }
}

.intro-slider-wrap .slide1 .slider1__btn {
    margin-right: 10px;
    transition: .4s ease-out
}

.intro-slider-wrap .slider1__btn2 {
    background-color: #0d6efd;
    color: #fff!important;
    opacity: .8;
    border-radius: 8px
}

.intro-slider-wrap .swiper-button-prev {
    top: 40%;
    left: auto!important;
    right: 5%;
    background-color: var(--primary-color);
    color: #fff!important;
    padding: 30px;
    border-radius: 50%;
    transition: .4s ease-out
}

.intro-slider-wrap .swiper-button-prev:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.intro-slider-wrap .swiper-button-prev:hover:after {
    animation: moveoutleft 1s linear
}

@media only screen and (max-width: 479px) {
    .intro-slider-wrap .swiper-button-prev {
        display:none
    }
}

.intro-slider-wrap .swiper-button-next {
    right: 5%!important;
    background-color: var(--primary-color);
    color: #fff!important;
    padding: 30px;
    border-radius: 50%;
    transition: .4s ease-out
}

.intro-slider-wrap .swiper-button-next:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.intro-slider-wrap .swiper-button-next:hover:after {
    animation: moveoutright 1s linear
}

@media only screen and (max-width: 479px) {
    .intro-slider-wrap .swiper-button-next {
        display:none
    }
}

.intro-slider-wrap .swiper-pagination .swiper-pagination-bullet-active:before {
    background-color: var(--primary-color)
}

body[data-theme=dark] .intro-slider-wrap .swiper-pagination .swiper-pagination-bullet-active:before {
    background-color: #c564bb
}

.intro-slider-wrap .swiper-pagination {
    margin-bottom: 20px;
    bottom: -3px!important
}

.swiper-slide-active .intro-content>* {
    animation-name: fadeInUp
}

.swiper-slide-active .intro-content>:first-child {
    animation-delay: .5s
}

.swiper-slide-active .intro-content>:nth-child(2) {
    animation-delay: 1s
}

.swiper-slide-active .intro-content>:nth-child(3) {
    animation-delay: 1.5s
}

.swiper-slide-active .intro-content>:nth-child(4) {
    animation-delay: 2s
}

.swiper-slide-active .intro-content>:nth-child(5) {
    animation-delay: 2.5s
}

.swiper-slide-active .intro-content>:nth-child(6) {
    animation-delay: 3s
}

.innerslider {
    height: 80vh;
    position: relative;
    z-index: 99;
    width: 100%;
    margin: auto;
    overflow: visible;
    background-size: cover;
    background-repeat: no-repeat
}

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

.slide2 {
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
    margin: 40px auto
}

@media only screen and (max-width: 479px) {
    .slide2 {
        text-align:center
    }
}

.slide2 h3 {
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 900;
    word-break: break-word;
    color: yellow;
}

@media only screen and (max-width: 479px) {
    .slide2 h3 {
        font-size:28px;
        line-height: 1.5
    }
}

.slide2 .highlighttext {
    color: var(--primary-color);
    font-size: 2rem
}

@media only screen and (max-width: 479px) {
    .slide2 .highlighttext {
        font-size:inherit
    }
}

.slide2 .outer__slide1__img {
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    max-width: 100%;
    max-height: 100%
}

.slide2 .outer__slide1__img img {
display: flex
;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 90%;
    
    object-fit: contain;
    border-radius: 3px;
    background: #73AD21;
    
}

@media only screen and (max-width: 479px) {
    .slide2 .outer__slide1__img img {
        position:inherit;
        
        object-fit: contain;
        
    }
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-size: .8rem!important
}

.outer__slide1__img img {
    animation: updown 0s infinite alternate
}

@keyframes updown {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10px)
    }
}

.slider1__btn {
    border: none;
    padding: 13px 22px
}

.slider1__btn,.slider1__btn2 {
    transition: 2s ease-out;
    display: none
}

.slider1__btn2 {
    padding: 12px 22px
}

.slider1__btn2:hover {
    color: #fff!important
}

body[data-theme=dark] .slider__content h3,body[data-theme=dark] .slider__content p {
    color: white;
}

.slider__content p {
    word-break: break-word;
    color: white;
    overflow: none;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 16px;
    font-weight: 500;
    -webkit-box-orient: vertical
}

@media (max-width: 575px) {
    .slider__content p {
        display:flex;
        -webkit-line-clamp: unset;
        justify-content: center;
        align-items: center
    }
}

.no_data {
    display: flex;
    height: 70vh;
    color: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

@media only screen and (max-width: 991px) {
    .no_data {
        position:relative
    }
}

.loading_data {
    position: absolute;
    top: 9%;
    width: 73%;
    left: 0;
    right: 0;
    margin: auto
}

@media only screen and (max-width: 991px) {
    .loading_data {
        position:relative
    }
}

.choose_us {
    margin-top: 50px;
    display:none
}

@media only screen and (max-width: 767px) {
    .choose_us {
        margin-top:100px
    }
}

.choose_us .head_title h2 {
    text-align: center;
    font-size: 34px;
    text-transform: capitalize;
    line-height: 1.5;
    word-break: break-word;
    font-weight: 700;
    color: var(--text-color)
}

.choose_us .head_title .image {
    display: flex;
    justify-content: center;
    width: 100%
}

.choose_us .head_title .image img {
    text-align: center
}

@media (max-width: 479px) {
    .choose_us .head_title .image img {
        width:50%;
        object-fit: contain
    }
}

.choose_us .choose_us_inner {
    margin-top: 100px;
    text-align: center
}

.choose_us .choose_us_inner .inner_data {
    position: relative;
    padding: 20px 15px;
    border-radius: 16px;
    border: 2px solid #fff;
    background: rgba(9,0,41,.06)
}

body[data-theme=dark] .choose_us .choose_us_inner .inner_data {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff
}

@media only screen and (max-width: 767px) {
    .choose_us .choose_us_inner .inner_data {
        margin-bottom:115px
    }
}

.choose_us .choose_us_inner .inner_data:hover .image img {
    animation: zoominnner 4s ease-in infinite;
    animation: zoomout 4s ease-in infinite
}

.choose_us .choose_us_inner .inner_data .blur img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 400px;
    z-index: -1
}

.choose_us .choose_us_inner .inner_data .image img {
    margin-top: -100px;
    text-align: center;
    width: 100px;
    height: 100px
}

.choose_us .choose_us_inner .inner_data .title {
    margin-top: 20px
}

.choose_us .choose_us_inner .inner_data .title h3 {
    word-break: break-word;
    color: var(--text-color)
}

.choose_us .choose_us_inner .inner_data .desc p {
    margin-bottom: 0;
    word-break: break-word
}

.feature {
    margin-top: 50px;
    display:none
}

@media only screen and (max-width: 767px) {
    .feature {
        margin-top:0
    }
}

.feature .head_title h2 {
    text-align: center;
    font-size: 34px;
    text-transform: capitalize;
    line-height: 1.5;
    font-weight: 700;
    word-break: break-word;
    color: var(--text-color)
}

.feature .head_title .image {
    display: flex;
    justify-content: center;
    width: 100%
}

.feature .head_title .image img {
    text-align: center
}

@media (max-width: 479px) {
    .feature .head_title .image img {
        width:50%;
        object-fit: contain
    }
}

.feature .feature_inner {
    margin-top: 50px
}

.feature .feature_inner .inner_data {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    margin-bottom: 22px;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #fff;
    background: rgba(9,0,41,.06)
}

.feature .feature_inner .inner_data h3 {
    word-break: break-word;
    color: var(--text-color)
}

.feature .feature_inner .inner_data img {
    width: 300px;
    
    object-fit: contain
}

body[data-theme=dark] .feature .feature_inner .inner_data {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff
}

@media only screen and (max-width: 767px) {
    .feature .feature_inner .inner_data {
        margin-bottom:30px;
        flex-direction: column;
        text-align: center
    }
}

.feature .feature_inner .inner_data:hover .image img {
    animation: zoominnner 0s ease-in infinite;
    animation: zoomout 0s ease-in infinite
}

@keyframes zoominnner {
    0% {
        transform: scale(.1)
    }

    50% {
        transform: scale(2)
    }

    to {
        transform: scale(2)
    }
}

@keyframes zoomout {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(.67)
    }

    to {
        transform: scale(1)
    }
}

.feature .feature_inner .inner_data .blur img {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    height: 150px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature .feature_inner .inner_data .desc p {
    margin-bottom: 0;
    word-break: break-word
}

body[data-theme=dark] .work-process-one .work-process-one__single-content p {
    color: #999898
}

body[data-theme=dark] .work-process-one .title h2,body[data-theme=dark] .work-process-one .work-process-one__single-content h2 a {
    color: #fff
}

body[data-theme=dark] .work-process-one .title .image {
    display: flex;
    justify-content: center;
    width: 100%
}

body[data-theme=dark] .work-process-one .title .image img {
    text-align: center
}

.work-process-one {
    position: relative;
    display: none;
    padding: 50px 0 90px;
    counter-reset: count;
    z-index: 1
}

.work-process-one .shape2 {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: -1
}

@media (max-width: 1199px) {
    .work-process-one .shape2 {
        display:none
    }
}

.work-process-one .title h2 {
    text-align: center;
    font-size: 34px;
    text-transform: capitalize;
    line-height: 1.5;
    font-weight: 700;
    word-break: break-word;
    color: var(--text-color)
}

.work-process-one .title .image {
    display: flex;
    justify-content: center;
    width: 100%
}

.work-process-one .title .image img {
    text-align: center
}

@media (max-width: 479px) {
    .work-process-one .title .image img {
        width:50%;
        object-fit: contain
    }
}

.work-process-one .work-process-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px
}

.work-process-one .work-process-one__single.style2 .work-process-one__single-icon .count-box {
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0
}

.work-process-one .work-process-one__single.mt100 {
    margin-top: 100px
}

@media only screen and (max-width: 991px) {
    .work-process-one .work-process-one__single.mt100 {
        margin-top:0
    }
}

.work-process-one .work-process-one__single.mt50 {
    margin-top: 50px
}

@media only screen and (max-width: 991px) {
    .work-process-one .work-process-one__single.mt50 {
        margin-top:0
    }
}

.work-process-one .work-process-one__single .work-process-one__single-icon {
    position: relative;
    display: block;
    width: 150px;
    margin: 0 auto 23px
}

.work-process-one .work-process-one__single .work-process-one__single-icon .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1;
    border-radius: 16px;
    border: 2px solid #fff;
    background: #ffc107;
    border-radius: 50%!important
}

body[data-theme=dark] .work-process-one .work-process-one__single .work-process-one__single-icon .inner {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff
}

body[data-theme=dark] .work-process-one .work-process-one__single .work-process-one__single-icon .inner:after {
    background-color: #c564bb
}

.work-process-one .work-process-one__single .work-process-one__single-icon .inner img {
    width: 60px;
    height: 60px;
    object-fit: contain
}

.work-process-one .work-process-one__single .work-process-one__single-icon .count-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-weight: 400;
    letter-spacing: -.02em;
    z-index: 1;
    transition: all .4s linear;
    transition-delay: .1s
}

body[data-theme=dark] .work-process-one .work-process-one__single .work-process-one__single-icon .count-box {
    background-color: #c564bb
}

.work-process-one .work-process-one__single .work-process-one__single-icon .count-box:before {
    top: -35px;
    left: 70px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    border-radius: 50%;
    font-weight: 400;
    counter-increment: count;
    content: "0" counter(count)
}

.work-process-one .work-process-one__single-content {
    position: relative;
    display: block
}

.work-process-one .work-process-one__single-content h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: -.02em;
    margin-bottom: 2px;
    word-break: break-word;
    color: var(--text-color)
}

.work-process-one .work-process-one__single-content h2 a {
    color: #212121;
    transition: all .2s linear;
    transition-delay: .1s;
    font-weight: 500;
}

.work-process-one .work-process-one__single-content p {
    margin: 0;
    word-break: break-word
}

body[data-theme=dark] .Bookmark .center img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 80%;
    z-index: -1
}

body[data-theme=dark] .Bookmark .morphisam .bottom__card_sec .bottom__profile_card .common_content a {
    color: #fff
}

body[data-theme=dark] .Bookmark .morphisam:after {
    display: none
}

body[data-theme=dark] .Bookmark .morphisam .outer__stage .three__stage .content_stage p,body[data-theme=dark] .Bookmark .morphisam .outer__stage .three__stage .content_stage>span,body[data-theme=dark] .Bookmark .nav-link {
    color: #fff
}

.Bookmark {
    padding-bottom: 50px;
    position: relative
}

.Bookmark .center img {
    display: none
}

@media only screen and (max-width: 991px) {
    .Bookmark {
        margin-top:0
    }

    .Bookmark .Breadcrumb {
        margin-top: 150px
    }
}

.Bookmark .morphisam {
    position: relative
}

body[data-theme=dark] .Bookmark .morphisam {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff;
    border-radius: 46px
}

.Bookmark .morphisam .flex-column,.Bookmark .morphisam .tab-content {
    border: 1px solid hsla(0,0%,93%,.169);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px
}

.Bookmark .morphisam .nav-item {
    margin-bottom: 15px;
    margin-top: 7px;
    cursor: pointer
}

.Bookmark .morphisam .nav-pills .nav-link {
    color: #212121;
    text-align: center
}

.Bookmark .morphisam .nav-pills .nav-link.active {
    color: #474646
}

.Bookmark .morphisam .nav-pills .nav-link.active,.Bookmark .morphisam .nav-pills .show>.nav-link {
    background-color: var(--primary-color);
    transition: all .3s
}

.Bookmark .morphisam .outer__stage {
    color: #212121;
    margin-bottom: 30px
}

@media only screen and (max-width: 575px) {
    .Bookmark .morphisam .outer__stage {
        margin-bottom:15px
    }
}

.Bookmark .morphisam .outer__stage .three__stage {
    display: flex;
    justify-content: space-around;
    align-items: center
}

@media only screen and (max-width: 575px) {
    .Bookmark .morphisam .outer__stage .three__stage {
        flex-direction:column;
        text-align: center;
        justify-content: center
    }
}

.Bookmark .morphisam .outer__stage .three__stage .number_stage span {
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color)
}

@media screen and (max-width: 575px) {
    .Bookmark .morphisam .outer__stage .three__stage .number_stage span {
        margin-top:0
    }
}

.Bookmark .morphisam .outer__stage .three__stage .content_stage {
    width: 800px
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .Bookmark .morphisam .outer__stage .three__stage .content_stage {
        width:600px
    }
}

@media only screen and (max-width: 575px) {
    .Bookmark .morphisam .outer__stage .three__stage .content_stage {
        width:auto;
        margin: 15px auto
    }
}

.Bookmark .morphisam .outer__stage .three__stage .content_stage p {
    color: #212121;
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 0;
    word-break: break-word
}

@media only screen and (max-width: 991px) {
    .Bookmark .morphisam .outer__stage .three__stage .content_stage p {
        font-size:14px
    }
}

.Bookmark .morphisam .outer__stage .three__stage .content_stage>span {
    color: #212121;
    display: flex;
    flex-wrap: wrap
}

@media only screen and (max-width: 991px) {
    .Bookmark .morphisam .outer__stage .three__stage .content_stage>span {
        font-size:14px
    }
}

@media only screen and (max-width: 575px) {
    .Bookmark .morphisam .outer__stage .three__stage .content_stage>span {
        justify-content:center;
        align-items: center
    }
}

.Bookmark .morphisam .outer__stage .three__stage .delete__stage {
    cursor: pointer
}

.Bookmark .morphisam .outer__stage .three__stage .delete__stage .btn {
    padding: 16px 20px;
    background-color: rgba(9,0,41,.149);
    color: var(--text-color)
}

@media screen and (max-width: 767px) {
    .Bookmark .morphisam .outer__stage .three__stage .delete__stage .btn {
        padding:14px
    }
}

.Bookmark .morphisam .play__button {
    display: flex;
    justify-content: center;
    align-items: center
}

.Bookmark .morphisam .play__button a {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px
}

@media (max-width: 340px) {
    .Bookmark .morphisam .play__button a {
        font-size:12px
    }
}

.Bookmark .nav-link {
    color: var(--text-color);
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700
}

.Bookmark .nav-tabs .nav-link.active {
    color: #000;
    background-color: rgba(9,0,41,.161);
    border-radius: 50px
}

.error_page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh
}

.error_page.morphisam {
    background: hsla(0,0%,100%,.3);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid hsla(0,0%,100%,.18);
    position: relative;
    border-radius: inherit
}

.error_page .image_error img {
    height: 400px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%
}

@media only screen and (max-width: 479px) {
    .error_page .image_error img {
        height:auto
    }

    .error_page .title_error h1 {
        text-align: center;
        font-size: inherit;
        color: #212121
    }
}

.error_page .title_para p {
    color: #212121
}

@media only screen and (max-width: 479px) {
    .error_page .title_para p {
        text-align:center;
        font-size: inherit
    }
}

.error_page .error_button a {
    display: flex;
    justify-content: center;
    align-items: center
}

.error_page .error_button i {
    font-size: 13px;
    padding-right: 5px
}

.Instruction {
    padding-bottom: 50px;
    margin: 88px 0
}

@media only screen and (max-width: 479px) {
    .Instruction {
        margin-bottom:30px
    }
}

.Instruction.wrapper {
    padding-top: 0
}

.Instruction .morphisam {
    background: hsla(0,0%,100%,.3);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid hsla(0,0%,100%,.18);
    border-radius: 32px;
    padding: 30px 15px;
    position: relative;
    background-color: rgba(9,0,41,.059);
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

@media only screen and (max-width: 575px) {
    .Instruction .morphisam {
        padding:15px
    }
}

.Instruction .morphisam a,.Instruction .morphisam ul li a {
    color: gray
}

.Instruction .morphisam p,.Instruction .morphisam span {
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px
}

.Instruction .morphisam p strong,.Instruction .morphisam span strong {
    color: var(--primary-color)
}

body[data-theme=dark] .Profile__Sec .center img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 80%;
    z-index: -1
}

body[data-theme=dark] .Profile__Sec .morphism .bottom__card_sec .bottom__profile_card .common_content a {
    color: #fff
}

.Profile__Sec {
    margin: 30px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.Profile__Sec .title {
    font-weight: 600
}

.Profile__Sec .select_profile {
    display: flex;
    align-items: center
}

.Profile__Sec .select_profile .line {
    height: 1px;
    width: 20%;
    background-color: #dedede
}

.Profile__Sec .select_profile h6 {
    font-weight: 600;
    margin: 0 20px;
    text-align: center
}

.Profile__Sec .center img {
    display: none
}

.Profile__Sec #friends_code {
    margin-bottom: 30px
}

.Profile__Sec .btn {
    letter-spacing: 1px;
    padding: 20px 48px;
    background-color: var(--primary-color);
    color: #fff
}

@media only screen and (max-width: 767px) {
    .Profile__Sec .btn {
        margin-top:10px
    }
}

.Profile__Sec .morphism {
    position: relative
}

body[data-theme=dark] .Profile__Sec .morphism {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff;
    border-radius: 46px
}

.Profile__Sec .morphism .card {
    background-color: #f5f5f5;
    border: #f5f5f5;
    padding: 20px
}

.Profile__Sec .morphism .swiper-button-next,.Profile__Sec .morphism .swiper-button-prev {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    object-fit: contain;
    top: 64px;
    font-weight: 400px
}

@media screen and (max-width: 1399px) {
    .Profile__Sec .morphism .swiper-button-next,.Profile__Sec .morphism .swiper-button-prev {
        width:22px;
        top: 46px
    }
}

@media screen and (max-width: 575px) {
    .Profile__Sec .morphism .swiper-button-next,.Profile__Sec .morphism .swiper-button-prev {
        top:36px
    }
}

.Profile__Sec .morphism .swiper-button-next:after,.Profile__Sec .morphism .swiper-button-next:before,.Profile__Sec .morphism .swiper-button-prev:after,.Profile__Sec .morphism .swiper-button-prev:before {
    content: ""
}

.Profile__Sec .morphism .swiper-button-next svg,.Profile__Sec .morphism .swiper-button-prev svg {
    color: gray!important
}

.Profile__Sec .morphism .swiper-button-prev {
    left: -42px
}

@media screen and (max-width: 575px) {
    .Profile__Sec .morphism .swiper-button-prev {
        left:-22px
    }
}

.Profile__Sec .morphism .swiper-button-next {
    right: -42px
}

@media screen and (max-width: 575px) {
    .Profile__Sec .morphism .swiper-button-next {
        right:-22px
    }
}

.Profile__Sec .morphism .main__profile {
    flex-direction: column
}

@media only screen and (max-width: 991px) {
    .Profile__Sec .morphism .main__profile {
        margin:10px auto
    }
}

@media only screen and (max-width: 479px) {
    .Profile__Sec .morphism .main__profile {
        padding-top:0!important
    }
}

.Profile__Sec .morphism .main__profile .prop__image {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    border-radius: 100%;
    border-style: solid;
    border: 2px dashed var(--text-color);
    position: relative;
    padding: 5px;
    margin-top: 30px
}

.Profile__Sec .morphism .main__profile .prop__image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 100%;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden
}

.Profile__Sec .morphism .main__profile .prop__image .select__profile {
    display: block
}

.Profile__Sec .morphism .main__profile .prop__image .select__profile [type=file] {
    height: 0;
    overflow: hidden;
    width: 0;
    float: left
}

.Profile__Sec .morphism .main__profile .prop__image .select__profile [type=file]+label {
    cursor: pointer;
    outline: none;
    transition: all .3s;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    bottom: 20px;
    right: -6px;
    background-color: var(--primary-color);
    background-color: #00bf7a;
    color: #fff;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    border: 1px solid #fff;
    font-size: .75rem;
    display: flex;
    justify-content: center;
    align-items: center
}

body[data-theme=dark] .Profile__Sec .morphism .main__profile .prop__image .select__profile [type=file]+label {
    background-color: #c564bb
}

.Profile__Sec .morphism .main__profile .prop__image .select__profile [type=file]+label em {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto
}

.Profile__Sec .morphism .main__profile .prop__title {
    display: flex;
    padding-top: 20px
}

.Profile__Sec .morphism .main__profile .prop__title h3 {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 400
}

.Profile__Sec .morphism .main__profile .email__id,.Profile__Sec .morphism .main__profile .mobile__number {
    display: flex;
    color: #fff;
    padding-top: 5px;
    margin-bottom: 10px
}

.Profile__Sec .morphism .main__profile .email__id span,.Profile__Sec .morphism .main__profile .mobile__number span {
    display: flex;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400
}

.Profile__Sec .morphism .main__profile .email__id span i,.Profile__Sec .morphism .main__profile .mobile__number span i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px
}

.Profile__Sec .morphism .main__profile .email__id span p,.Profile__Sec .morphism .main__profile .mobile__number span p {
    letter-spacing: 1px;
    margin-bottom: 0
}

.Profile__Sec .morphism .email__id {
    padding-top: 0!important
}

.Profile__Sec .morphism .email__id span {
    display: flex
}

.Profile__Sec .morphism .email__id .main__profile .mobile__number span p,.Profile__Sec .morphism .email__id span p,.Profile__Sec .morphism .email__id span strong,.Profile__Sec .morphism .main__profile .email__id span p {
    letter-spacing: 1px
}

.Profile__Sec .morphism .bottom__card_sec {
    display: flex
}

@media only screen and (max-width: 991px) {
    .Profile__Sec .morphism .bottom__card_sec {
        padding:10px!important
    }
}

.Profile__Sec .morphism .bottom__card_sec label {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #888
}

.Profile__Sec .morphism .bottom__card_sec label input {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px 10px 60px;
    position: relative;
    height: 70px;
    border-radius: 8px;
    border: none;
    background: #fff;
    transition: color .3s ease-out;
    outline: none;
    letter-spacing: 1px;
    color: var(--text-color)
}

@media only screen and (max-width: 767px) {
    .Profile__Sec .morphism .bottom__card_sec label input {
        margin-bottom:10px;
        width: 100%;
        display: block
    }
}

.Profile__Sec .morphism .bottom__card_sec label i {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #767272;
    font-weight: 600;
    padding: 5px 15px;
    height: 72px;
    font-size: 20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden
}

.Profile__Sec .morphism .bottom__card_sec .bottom__profile_card {
    text-align: center
}

.Profile__Sec .morphism .bottom__card_sec .bottom__profile_card .common_content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px
}

@media only screen and (max-width: 767px) {
    .Profile__Sec .morphism .bottom__card_sec .bottom__profile_card .common_content {
        margin-bottom:10px
    }
}

.Profile__Sec .morphism .bottom__card_sec .bottom__profile_card .common_content a {
    background: hsla(0,0%,100%,.3);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 1px 9px 0 rgba(31,38,135,.37);
    padding: 12px 15px;
    width: 100%;
    color: #212121;
    position: relative;
    border: none
}

.Profile__Sec .morphism .bottom__card_sec .bottom__profile_card .common_content a i {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    height: 48px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden
}

body[data-theme=dark] .Profile__Sec .morphism .bottom__card_sec .bottom__profile_card .common_content a i {
    background-color: #c564bb
}

.Profile__Sec .morphism .bottom__card_sec .accBtns {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 2px 50px
}

@media screen and (max-width: 575px) {
    .Profile__Sec .morphism .bottom__card_sec .accBtns {
        flex-wrap:wrap
    }
}

.Profile__Sec .morphism .bottom__card_sec .accBtns .btn {
    width: 100%
}

.Profile__Sec .morphism .bottom_line {
    color: #767272
}

.Profile__Sec .morphism .tabsDiv {
    background: #f5f5f5;
    border-radius: 16px;
    height: max-content
}

.Profile__Sec .morphism .tabsDiv .tab-headers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px
}

.Profile__Sec .morphism .tabsDiv .tab-headers .tab-header {
    padding: 18px 24px;
    cursor: pointer;
    margin: 0 -35px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .Profile__Sec .morphism .tabsDiv .tab-headers .tab-header {
        padding:18px 10px
    }
}

@media screen and (max-width: 991px) {
    .Profile__Sec .morphism .tabsDiv .tab-headers .tab-header {
        margin:0 -22px
    }
}

.Profile__Sec .morphism .tabsDiv .tab-headers .tab-header img {
    object-fit: contain;
    filter: brightness(1) opacity(.6)
}

.Profile__Sec .morphism .tabsDiv .tab-headers .tab-header .profileTabIcon {
    filter: brightness(1) opacity(.6)
}

.Profile__Sec .morphism .tabsDiv .active {
    background-color: var(--primary-color);
    color: #fff!important;
    border-radius: 16px
}

.Profile__Sec .morphism .tabsDiv .active img {
    filter: invert(1.5) brightness(1.5)!important
}

.Profile__Sec .morphism .contentDiv {
    background: #f5f5f5;
    width: 70%;
    border-radius: 15px
}

.Profile__Sec .morphism .contentDiv .nav-tabs {
    border-bottom: none
}

@media screen and (max-width: 991px) {
    .Profile__Sec .morphism .contentDiv {
        width:100%
    }
}

.Profile__Sec .morphism .contentDiv .card {
    padding: 30px;
    border-radius: 32px
}

@media screen and (max-width: 1199px) {
    .Profile__Sec .morphism .contentDiv .card {
        padding:30px 10px
    }
}

@media screen and (max-width: 399px) {
    .Profile__Sec .morphism .contentDiv .card {
        padding:30px 2px
    }
}

.Profile__Sec .questions_details,.Profile__Sec .quiz_details {
    background-color: #fff;
    border-radius: 16px;
    padding: 15px;
    position: relative
}

.Profile__Sec .questions_details .corrIncorrWrapper .won:before,.Profile__Sec .quiz_details .corrIncorrWrapper .won:before {
    background-color: #57d063!important;
    margin-left: -14px
}

.Profile__Sec .questions_details .corrIncorrWrapper .drow:before,.Profile__Sec .quiz_details .corrIncorrWrapper .drow:before {
    background-color: #ffad01!important;
    margin-left: -14px
}

.Profile__Sec .questions_details .corrIncorrWrapper .lost:before,.Profile__Sec .quiz_details .corrIncorrWrapper .lost:before {
    background-color: #a868fa!important;
    margin-left: -14px
}

.Profile__Sec .questions_details .rankDiv,.Profile__Sec .quiz_details .rankDiv {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    font-family: var(--font-family);
    color: var(--text-color);
    margin-top: 45px
}

.Profile__Sec .questions_details .rankDiv .userProfile,.Profile__Sec .quiz_details .rankDiv .userProfile {
    width: 56px
}

.Profile__Sec .questions_details .rankDiv .rankText,.Profile__Sec .quiz_details .rankDiv .rankText {
    font-size: 14px;
    font-weight: 400
}

.Profile__Sec .questions_details .rankDiv .rankNum,.Profile__Sec .quiz_details .rankDiv .rankNum {
    font-size: 18px;
    font-weight: 900
}

.Profile__Sec .questions_details .progressBarWrapper,.Profile__Sec .quiz_details .progressBarWrapper {
    position: relative;
    color: transparent
}

.Profile__Sec .questions_details .progressBarWrapper .progress,.Profile__Sec .quiz_details .progressBarWrapper .progress {
    height: 22px;
    border-radius: 50px
}

.Profile__Sec .questions_details .progressBarWrapper .progress .progress-bar,.Profile__Sec .quiz_details .progressBarWrapper .progress .progress-bar {
    background-color: #00bf7a;
    border-radius: 50px
}

.Profile__Sec .questions_details .progressBarWrapper .gotProgressNum,.Profile__Sec .quiz_details .progressBarWrapper .gotProgressNum {
    position: absolute;
    top: 2px;
    left: 16px;
    font-size: 12px;
    color: #fff
}

.Profile__Sec .questions_details .progressBarWrapper .totProgress,.Profile__Sec .quiz_details .progressBarWrapper .totProgress {
    position: absolute;
    top: 2px;
    right: 16px;
    font-size: 12px;
    color: var(--text-color)
}

.Profile__Sec .questions_details .pointScreen,.Profile__Sec .quiz_details .pointScreen {
    display: flex;
    justify-content: space-between;
    align-items: baseline
}

.Profile__Sec .questions_details .pointScreen .innerDiv,.Profile__Sec .quiz_details .pointScreen .innerDiv {
    display: flex;
    flex-direction: column
}

.Profile__Sec .questions_details .pointScreen .innerDiv span,.Profile__Sec .quiz_details .pointScreen .innerDiv span {
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color)
}

.Profile__Sec .questions_details .pointScreen .innerDiv .boldText,.Profile__Sec .quiz_details .pointScreen .innerDiv .boldText {
    font-size: 18px;
    font-weight: 900
}

.Profile__Sec .questions_details .questions_details_title,.Profile__Sec .questions_details .quiz_details .questions_details_title,.Profile__Sec .questions_details .quiz_details_title,.Profile__Sec .quiz_details .questions_details .questions_details_title,.Profile__Sec .quiz_details .quiz_details_title {
    color: #212121;
    text-align: center;
    padding-bottom: 0;
    font-size: 1.4rem;
    font-weight: 600
}

.Profile__Sec .questions_details .questions_details_inner,.Profile__Sec .questions_details .quiz_details .questions_details_inner,.Profile__Sec .questions_details .quiz_details_inner,.Profile__Sec .quiz_details .questions_details .questions_details_inner,.Profile__Sec .quiz_details .quiz_details_inner {
    list-style-type: none;
    padding: 5px
}

.Profile__Sec .questions_details .questions_details_inner .quiz_details .quiz_details_inner li,.Profile__Sec .questions_details .questions_details_inner .quiz_details_inner li,.Profile__Sec .questions_details .questions_details_inner li,.Profile__Sec .questions_details .quiz_details .questions_details_inner li,.Profile__Sec .questions_details .quiz_details_inner .questions_details_inner li,.Profile__Sec .questions_details .quiz_details_inner li,.Profile__Sec .quiz_details .questions_details .questions_details_inner li,.Profile__Sec .quiz_details .quiz_details_inner .questions_details .questions_details_inner li,.Profile__Sec .quiz_details .quiz_details_inner li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #212121
}

.Profile__Sec .questions_details .questions_details_inner .quiz_details_inner li .custom_badge,.Profile__Sec .questions_details .questions_details_inner li .custom_badge,.Profile__Sec .questions_details .quiz_details .questions_details_inner li .custom_badge,.Profile__Sec .questions_details .quiz_details_inner .questions_details_inner li .custom_badge,.Profile__Sec .questions_details .quiz_details_inner li .custom_badge,.Profile__Sec .quiz_details .questions_details .questions_details_inner li .custom_badge,.Profile__Sec .quiz_details .quiz_details_inner li .custom_badge {
    background-color: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 30px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center
}

.Profile__Sec .questions_details .treeValuesProgressBar,.Profile__Sec .quiz_details .treeValuesProgressBar {
    display: block;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 14px
}

.Profile__Sec .questions_details {
    padding: 15px
}

.Profile__Sec .questions_details .questions_details_inner .no_badges {
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.Profile__Sec .questions_details .progressBar {
    width: 120px;
    margin: 32px auto
}

.Profile__Sec .questions_details .progressBar .circular-progress-bar {
    position: relative;
    text-align: center
}

.Profile__Sec .questions_details .progressBar .progress-ring {
    transform: rotate(-90deg)
}

.Profile__Sec .questions_details .progressBar .ring-circle {
    fill: transparent;
    stroke-width: 10;
    transition: stroke .3s ease
}

.Profile__Sec .questions_details .progressBar .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 24px;
    font-weight: 700
}

.Profile__Sec .questions_details .progressBar .antDProgressBarWrapper {
    position: relative
}

.Profile__Sec .questions_details .progressBar .antDProgressBarWrapper .totAttemptQues {
    position: absolute;
    top: 22%;
    left: 18%;
    background: hsla(0,0%,100%,0);
    width: min-content;
    border-radius: 100%;
    text-align: center
}

.Profile__Sec .questions_details .progressBar .antDProgressBarWrapper .totAttemptQues .attempted {
    margin-top: 35px;
    display: block;
    white-space: nowrap
}

.Profile__Sec .questions_details .progressBar .antDProgressBarWrapper .ant-progress-circle-trail {
    stroke: #00bf7a;
    stroke-width: 7px
}

.Profile__Sec .questions_details .progressBar .antDProgressBarWrapper .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
    stroke: #ff005c!important;
    stroke-width: 7px
}

.Profile__Sec .questions_details .progressBar .CircularProgressbar .CircularProgressbar-path {
    stroke: #00bf7a!important;
    stroke-width: 6px
}

.Profile__Sec .questions_details .progressBar .badge {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color)!important
}

.Profile__Sec .questions_details .progressBar .attempted {
    color: var(--text-color)!important;
    font-size: 14px;
    font-weight: 400
}

.Profile__Sec .questions_details .progress-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.Profile__Sec .questions_details .progress-container .progress-item {
    flex: 1 1;
    margin: 0 8px;
    width: 120px
}

.Profile__Sec .questions_details .corrIncorrWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    position: relative
}

@media screen and (max-width: 1199px) {
    .Profile__Sec .questions_details .corrIncorrWrapper {
        gap:50px
    }
}

@media screen and (max-width: 991px) {
    .Profile__Sec .questions_details .corrIncorrWrapper {
        gap:26px
    }
}

@media screen and (max-width: 767px) {
    .Profile__Sec .questions_details .corrIncorrWrapper {
        gap:50px
    }
}

@media screen and (max-width: 399px) {
    .Profile__Sec .questions_details .corrIncorrWrapper {
        gap:20px
    }
}

.Profile__Sec .questions_details .corrIncorrWrapper .corr:before {
    content: "";
    position: absolute;
    margin-left: -14px;
    top: 7px;
    background-color: #00bf7a;
    width: 8px;
    height: 8px;
    border-radius: 50px
}

.Profile__Sec .questions_details .corrIncorrWrapper .inCorr:before {
    content: "";
    position: absolute;
    margin-left: -14px;
    top: 7px;
    background-color: #ff005c;
    width: 8px;
    height: 8px;
    border-radius: 50px
}

.Profile__Sec .questions_details .corrIncorrWrapper span {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color)
}

.Profile__Sec .questions_details .corrIncorrWrapper span span {
    font-weight: 700
}

.Profile__Sec .questions_details,.Profile__Sec .quiz_details {
    margin-top: 22px
}

@media only screen and (max-width: 479px) {
    .Profile__Sec .questions_details,.Profile__Sec .quiz_details {
        margin-top:15px;
        margin-bottom: 0
    }
}

.Profile__Sec .botton_card_details {
    margin: auto 0
}

@media only screen and (max-width: 575px) {
    .Profile__Sec .botton_card_details>div {
        padding-left:0;
        padding-right: 0
    }
}

.Profile__Sec .botton_card_details .statisticsBadges .badges_data {
    flex-direction: column
}

.Profile__Sec .botton_card_details .statisticsBadges .badges_data .inner_image {
    height: 74px
}

.Profile__Sec .botton_card_details .statisticsBadges .badges_data .inner_image .dummy_background_color:before {
    margin-top: -11px
}

.Profile__Sec .image_section {
    display: flex;
    position: relative;
    flex-direction: column
}

.Profile__Sec .image_section img {
    aspect-ratio: 1/1;
    cursor: pointer
}

@media screen and (max-width: 399px) {
    .Profile__Sec .image_section img {
        width:42px;
        height: 44px
    }
}

.Profile__Sec .statistics_badges {
    display: flex;
    justify-content: center;
    gap: 35px;
    align-items: center
}

.Profile__Sec .statistics_badges .view_all {
    font-size: small;
    color: var(--text-color);
    font-weight: 900
}

.Profile__Sec .orText {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 22px 0
}

.Profile__Sec .orText:before {
    right: 20px;
    margin-left: -50%
}

.Profile__Sec .orText:after {
    left: 20px;
    margin-right: -50%
}

.Profile__Sec .orText:after,.Profile__Sec .orText:before {
    background-color: #d3d3d3;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 30%;
    opacity: 1
}

.Profile__Sec .dummy_image_slider {
    position: relative;
    width: 50%
}

@media screen and (max-width: 991px) {
    .Profile__Sec .dummy_image_slider {
        width:65%;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 767px) {
    .Profile__Sec .dummy_image_slider {
        width:85%
    }
}

@media screen and (max-width: 575px) {
    .Profile__Sec .dummy_image_slider {
        width:auto
    }
}

.Profile__Sec .dummy_image_slider .swiper {
    display: flex;
    align-items: center
}

.Profile__Sec .dummy_image_slider .next,.Profile__Sec .dummy_image_slider .previous {
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    object-fit: contain;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.Profile__Sec .dummy_image_slider .next svg,.Profile__Sec .dummy_image_slider .previous svg {
    color: #fff
}

.Profile__Sec .dummy_image_slider .previous {
    left: -20%;
    right: auto
}

.Profile__Sec .dummy_image_slider .next,.Profile__Sec .dummy_image_slider .previous {
    position: absolute;
    top: 75%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.Profile__Sec .dummy_image_slider .next {
    right: -20%;
    left: auto
}

@media (max-width: 768px) {
    .Profile__Sec .dummy_image_slider .swiper {
        margin-left:auto!important;
        margin-right: auto!important
    }

    .Profile__Sec .dummy_image_slider .line,.Profile__Sec .dummy_image_slider .next,.Profile__Sec .dummy_image_slider .previous {
        display: none
    }
}

.mobile::-webkit-inner-spin-button,.mobile::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.mobile[type=number] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield
}

body[data-theme=dark] .pro-card:after {
    display: none
}

.pro-card {
    gap: 35px
}

@media screen and (max-width: 1199px) {
    .pro-card {
        justify-content:center;
        align-items: center
    }
}

.battles_circle {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto
}

.battles_circle .total_battles {
    position: absolute;
    top: 28%;
    word-wrap: break-word;
    display: flex;
    width: 100%;
    height: 60px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 17px;
    flex-direction: column
}

.battles_circle .total_battles span:first-child {
    font-weight: 700;
    color: #000;
    font-size: larger
}

.battles_circle .total_battles span:nth-child(2) {
    color: #000;
    font-size: smaller
}

.share_app_modal .ant-modal-body {
    display: flex;
    align-items: center;
    justify-content: center
}

.profileBreadcrumb {
    position: relative
}

body[data-theme=dark] .Invite__friends .center img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 80%;
    z-index: -1
}

body[data-theme=dark] .Invite__friends .morphisam:after {
    display: none
}

.Invite__friends {
    position: relative;
    padding-bottom: 30px
}

.Invite__friends .center img {
    display: none
}

.Invite__friends .morphisam {
    position: relative
}

body[data-theme=dark] .Invite__friends .morphisam {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff;
    border-radius: 46px
}

@media only screen and (max-width: 991px) {
    .Invite__friends .morphisam {
        margin-bottom:20px
    }
}

.Invite__friends .morphisam .border_line {
    position: relative
}

.Invite__friends .morphisam .invite_friends_image {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .Invite__friends .morphisam .invite_friends_image {
        height:280px
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .Invite__friends .morphisam .invite_friends_image {
        height:200px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 479px) {
    .Invite__friends .morphisam .invite_friends_image {
        height:auto;
        margin-bottom: 20px
    }
}

.Invite__friends .morphisam .invite_friends_image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto
}

.Invite__friends .morphisam .refer_earn_title h3 {
    color: var(--text-color)
}

.Invite__friends .morphisam .refer_earn_title h5 {
    color: #fff
}

.Invite__friends .morphisam .refer_earn_title .headline {
    color: #090929;
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .Invite__friends .morphisam .refer_earn_title .headline {
        font-size:30px
    }
}

@media screen and (max-width: 475px) {
    .Invite__friends .morphisam .refer_earn_title .headline {
        font-size:24px
    }
}

.Invite__friends .morphisam .refer_earn_title .giftImg {
    padding: 30px 0;
    position: relative
}

.Invite__friends .morphisam .refer_earn_title .giftImg img {
    position: relative;
    z-index: 1
}

.Invite__friends .morphisam .refer_earn_title .giftImg:after {
    content: "";
    position: absolute;
    top: 30px;
    margin-left: -230px;
    width: 300px;
    height: 180px;
    filter: blur(75px);
    border-radius: 70px;
    background-color: rgba(239,83,135,.871)!important;
    opacity: .6
}

.Invite__friends .morphisam .refer_earn_title .referPara {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    color: gray;
    padding: 30px 100px
}

@media screen and (max-width: 767px) {
    .Invite__friends .morphisam .refer_earn_title .referPara {
        padding:30px 0
    }
}

.Invite__friends .morphisam .refer_earn_title .getCoinsDiv {
    margin-top: 20px
}

.Invite__friends .morphisam .refer_earn_title .getCoinsDiv img {
    width: 20px
}

.Invite__friends .morphisam .refer_earn_title .getCoinsDiv span {
    color: #090929;
    font-family: var(--font-family);
    font-size: 25px;
    font-weight: 700
}

@media screen and (max-width: 399px) {
    .Invite__friends .morphisam .refer_earn_title .getCoinsDiv span {
        font-size:20px
    }
}

.Invite__friends .morphisam .refer_earn_title .getCoinsDiv span:first-child {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700
}

@media screen and (max-width: 399px) {
    .Invite__friends .morphisam .refer_earn_title .getCoinsDiv span:first-child {
        font-size:24px
    }
}

.Invite__friends .morphisam .refer_earn_title .referCodeWrapper {
    background: linear-gradient(81.61deg,var(--primary-color) 0,#981b46 100%);
    border-radius: 8px;
    color: #fff;
    padding: 20px
}

.Invite__friends .morphisam .copy__referal {
    position: relative;
    margin: 30px auto
}

@media only screen and (max-width: 479px) {
    .Invite__friends .morphisam .copy__referal {
        width:100%
    }
}

.Invite__friends .morphisam .copy__referal:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    border-radius: 50px
}

.Invite__friends .morphisam .copy__referal .referCode {
    background-color: transparent;
    border-radius: 16px!important;
    border-style: dashed!important;
    color: #fff!important;
    font-weight: 700;
    border: 2px solid #ddd;
    padding: 12px 50px
}

.Invite__friends .morphisam .copy__referal button {
    height: 45px;
    padding: 0 20px;
    border-radius: 16px;
    background-color: transparent;
    cursor: pointer;
    color: #fff!important;
    position: absolute;
    margin-top: -12px;
    margin-left: -58px;
    transition: 2s ease-out;
    display: inline-block;
    box-shadow: inset 0 0 0 0 #313131;
    border: none
}

.Invite__friends .morphisam .copy__referal button span {
    margin-right: 5px;
    display: inline-block
}

.Invite__friends .morphisam .invite__now {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px
}

@media only screen and (max-width: 479px) {
    .Invite__friends .morphisam .invite__now {
        flex-direction:column
    }
}

.Invite__friends .morphisam .invite__now p {
    color: #090929;
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700
}

@media only screen and (max-width: 479px) {
    .Invite__friends .morphisam .invite__now p {
        font-size:inherit
    }
}

.Invite__friends .morphisam .invite__now .social__icons {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center
}

@media only screen and (max-width: 479px) {
    .Invite__friends .morphisam .invite__now .social__icons {
        justify-content:center
    }
}

.Invite__friends .morphisam .invite__now .social__icons li {
    margin-right: 20px;
    cursor: pointer
}

.Invite__friends .morphisam .invite__now .social__icons li a i {
    color: #fff;
    font-size: 26px;
    background: linear-gradient(81.61deg,var(--primary-color) 0,#981b46 100%);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center
}

.LeaderBoard {
    padding-bottom: 50px;
    position: relative;
    margin-top: 140px!important
}

@media screen and (max-width: 767px) {
    .LeaderBoard {
        margin-top:0!important
    }
}

.LeaderBoard .morphisam {
    background: hsla(0,0%,100%,.3);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid hsla(0,0%,100%,.18);
    position: relative;
    background: linear-gradient(0deg,rgba(9,0,41,.06),rgba(9,0,41,.06)),linear-gradient(180deg,hsla(0,0%,100%,.04),hsla(0,0%,100%,0));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 20px 20px 0
}

@media only screen and (max-width: 575px) {
    .LeaderBoard .morphisam {
        padding:15px 15px 0
    }
}

.LeaderBoard .morphisam:after {
    position: absolute;
    content: "";
    width: 96%;
    height: 30px;
    bottom: -7px;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
    background-color: transparent;
    border-radius: 30px
}

@media only screen and (max-width: 479px) {
    .LeaderBoard .morphisam {
        padding:10px
    }
}

@media only screen and (max-width: 991px) {
    .LeaderBoard .morphisam {
        margin-bottom:20px
    }
}

.LeaderBoard .morphisam h5 {
    color: #212121
}

@media only screen and (max-width: 767px) {
    .LeaderBoard .morphisam h5 {
        margin:5px auto 20px
    }
}

.LeaderBoard .morphisam .top_3_Cardwrapper {
    justify-content: center
}

.LeaderBoard .morphisam .selectvalue {
    width: 100%
}

.LeaderBoard .morphisam .two_content_data {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px
}

@media only screen and (max-width: 575px) {
    .LeaderBoard .morphisam .two_content_data {
        margin-bottom:20px
    }
}

.LeaderBoard .morphisam .two_content_data .activeTab {
    background: rgba(9,0,41,.129)
}

.LeaderBoard .morphisam .two_content_data .sortBy {
    display: flex;
    justify-content: center
}

.LeaderBoard .morphisam .two_content_data .sortBy .sortByData {
    padding: 20px 50px;
    border-radius: 48px;
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .LeaderBoard .morphisam .two_content_data .sortBy .sortByData {
        padding:20px 40px
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .LeaderBoard .morphisam .two_content_data .sortBy .sortByData {
        padding:20px 30px
    }
}

@media only screen and (max-width: 575px) {
    .LeaderBoard .morphisam .two_content_data .sortBy .sortByData {
        padding:6px;
        font-size: 14px
    }
}

.LeaderBoard .morphisam .two_content_data .sorting_entries {
    margin-right: 10px
}

.LeaderBoard .morphisam .two_content_data .sorting_area span,.LeaderBoard .morphisam .two_content_data .sorting_entries span {
    color: #212121
}

.LeaderBoard .morphisam .ant-select:not(.ant-select-customize-input) .ant-select-selector {
    background-color: transparent;
    border-radius: 5px
}

.LeaderBoard .morphisam .ant-pagination-next .ant-pagination-item-link,.LeaderBoard .morphisam .ant-pagination-prev .ant-pagination-item-link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.38);
    box-shadow: 5px 5px 30px rgba(0,0,0,.2)
}

.LeaderBoard .morphisam .ant-pagination-item {
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.741);
    box-shadow: 5px 5px 30px rgba(0,0,0,.2)
}

.LeaderBoard .morphisam .ant-pagination {
    display: flex;
    justify-content: flex-end
}

@media only screen and (max-width: 767px) {
    .LeaderBoard .morphisam .ant-pagination {
        justify-content:center;
        margin-top: 15px
    }
}

.LeaderBoard .morphisam .table_content table {
    width: 100%;
    border-radius: 5px;
    box-shadow: inset 5px 5px 30px rgba(0,0,0,.2)
}

.LeaderBoard .morphisam .table_content th {
    border-bottom: 1px solid hsla(0,0%,85%,.349);
    font-weight: 900
}

.LeaderBoard .morphisam .table_content td,.LeaderBoard .morphisam .table_content th {
    text-align: center;
    color: #212121;
    padding: 10px
}

.LeaderBoard .morphisam .table_content .App {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.LeaderBoard .morphisam .table_content .bhoXfZ {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.LeaderBoard .morphisam .table_content .fvAeSn {
    padding: 10px;
    justify-content: center
}

.LeaderBoard .morphisam .table_content .hCBnvI {
    background-color: inherit;
    margin-bottom: 20px
}

.LeaderBoard .morphisam .table_content .iAwKFK {
    border-radius: 10px;
    margin-bottom: 20px;
    border-bottom: 0;
    background-color: inherit;
    background-image: linear-gradient(180deg,rgba(3,41,68,.1),rgba(1,8,14,.1))
}

.LeaderBoard .morphisam .table_content .bhoXfZ {
    background: hsla(0,0%,100%,.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.LeaderBoard .morphisam .table_content .fFBlx {
    padding-left: 15px
}

.LeaderBoard .morphisam .table_bottom_footer p {
    margin-bottom: 0;
    color: #212121
}

@media only screen and (max-width: 767px) {
    .LeaderBoard .morphisam .table_bottom_footer p {
        text-align:center
    }
}

.LeaderBoard .morphisam .leaderboard-profile {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center
}

.LeaderBoard .morphisam .leaderboard-profile img {
    border-radius: 50px;
    object-fit: contain;
    max-width: 100%;
    width: 60px!important;
    height: 60px
}

.LeaderBoard .first_three_data {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.LeaderBoard .first_three_data li {
    list-style: none;
    text-align: center;
    margin-top: -72px
}

@media (max-width: 767px) {
    .LeaderBoard .first_three_data {
        display:none
    }
}

.LeaderBoard table.my_rank_bottom {
    background-color: #ddd;
    border-radius: 10px 10px 0 0!important;
    padding: 10px 0;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px
}

.LeaderBoard table.my_rank_bottom th {
    color: rgba(9,0,41,.929)!important;
    border-bottom: none!important
}

.LeaderBoard table.my_rank_bottom .all_com {
    color: rgba(9,0,41,.929)!important
}

.LeaderBoard table.my_rank_bottom .profile.all_com img {
    height: 25px;
    object-fit: contain
}

.LeaderBoard table.my_rank_bottom td,.LeaderBoard table.my_rank_bottom th {
    padding: 10px;
    text-align: center
}

.LeaderBoard table.my_rank_bottom img {
    max-width: 100%;
    height: auto
}

@media (max-width: 768px) {
    .LeaderBoard table.my_rank_bottom td,.LeaderBoard table.my_rank_bottom th {
        padding:5px
    }

    .LeaderBoard table.my_rank_bottom th {
        font-size: 12px!important
    }

    .LeaderBoard table.my_rank_bottom td {
        font-size: 12px
    }
}

.noLeaderboardData {
    padding-bottom: 50px;
    position: relative;
    margin-top: 0!important
}

@media screen and (max-width: 767px) {
    .noLeaderboardData {
        margin-top:-30px!important
    }
}

.noLeaderboardData .morphisam {
    background: hsla(0,0%,100%,.3);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid hsla(0,0%,100%,.18);
    position: relative;
    background: linear-gradient(0deg,rgba(9,0,41,.06),rgba(9,0,41,.06)),linear-gradient(180deg,hsla(0,0%,100%,.04),hsla(0,0%,100%,0));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 20px 20px 0
}

@media only screen and (max-width: 575px) {
    .noLeaderboardData .morphisam {
        padding:15px 15px 0
    }
}

.noLeaderboardData .morphisam:after {
    position: absolute;
    content: "";
    width: 96%;
    height: 30px;
    bottom: -7px;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
    background-color: transparent;
    border-radius: 30px
}

@media only screen and (max-width: 479px) {
    .noLeaderboardData .morphisam {
        padding:10px
    }
}

@media only screen and (max-width: 991px) {
    .noLeaderboardData .morphisam {
        margin-bottom:20px
    }
}

.noLeaderboardData .morphisam h5 {
    color: #212121
}

@media only screen and (max-width: 767px) {
    .noLeaderboardData .morphisam h5 {
        margin:5px auto 20px
    }
}

.noLeaderboardData .morphisam .top_3_Cardwrapper {
    margin-top: -154px
}

.noLeaderboardData .morphisam .selectvalue {
    width: 100%
}

.noLeaderboardData .morphisam .two_content_data {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px
}

@media only screen and (max-width: 575px) {
    .noLeaderboardData .morphisam .two_content_data {
        margin-bottom:20px
    }
}

.noLeaderboardData .morphisam .two_content_data .activeTab {
    background: rgba(9,0,41,.129)
}

.noLeaderboardData .morphisam .two_content_data .sortBy {
    display: flex;
    justify-content: center
}

.noLeaderboardData .hDHZZh,.noLeaderboardData .huezRP {
    background-color: transparent!important;
    margin-bottom: 10px
}

.noLeaderboardData .morphisam .two_content_data .sortBy .sortByData {
    padding: 20px 50px;
    border-radius: 48px;
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .noLeaderboardData .morphisam .two_content_data .sortBy .sortByData {
        padding:20px 40px
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .noLeaderboardData .morphisam .two_content_data .sortBy .sortByData {
        padding:20px 30px
    }
}

@media only screen and (max-width: 575px) {
    .noLeaderboardData .morphisam .two_content_data .sortBy .sortByData {
        padding:6px;
        font-size: 14px
    }
}

.noLeaderboardData .morphisam .two_content_data .sorting_entries {
    margin-right: 10px
}

.noLeaderboardData .morphisam .two_content_data .sorting_area span,.noLeaderboardData .morphisam .two_content_data .sorting_entries span {
    color: #212121
}

.noLeaderboardData .morphisam .ant-select:not(.ant-select-customize-input) .ant-select-selector {
    background-color: transparent;
    border-radius: 5px
}

.noLeaderboardData .morphisam .ant-pagination-next .ant-pagination-item-link,.noLeaderboardData .morphisam .ant-pagination-prev .ant-pagination-item-link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.38);
    box-shadow: 5px 5px 30px rgba(0,0,0,.2)
}

.noLeaderboardData .morphisam .ant-pagination-item {
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.741);
    box-shadow: 5px 5px 30px rgba(0,0,0,.2)
}

.noLeaderboardData .morphisam .ant-pagination {
    display: flex;
    justify-content: flex-end
}

@media only screen and (max-width: 767px) {
    .noLeaderboardData .morphisam .ant-pagination {
        justify-content:center;
        margin-top: 15px
    }
}

.noLeaderboardData .morphisam .table_content table {
    width: 100%;
    border-radius: 5px;
    box-shadow: inset 5px 5px 30px rgba(0,0,0,.2)
}

.noLeaderboardData .morphisam .table_content th {
    text-align: center;
    border-bottom: 1px solid hsla(0,0%,85%,.349);
    color: #212121;
    font-weight: 900;
    padding: 10px
}

.noLeaderboardData .morphisam .table_content td {
    text-align: center;
    color: #212121;
    padding: 10px
}

.noLeaderboardData .morphisam .table_content .App {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.noLeaderboardData .morphisam .table_content .bhoXfZ {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.noLeaderboardData .morphisam .table_content .fvAeSn {
    padding: 10px;
    justify-content: center
}

.noLeaderboardData .morphisam .table_content .hCBnvI {
    background-color: inherit;
    margin-bottom: 20px
}

.noLeaderboardData .morphisam .table_content .iAwKFK {
    border-radius: 10px;
    margin-bottom: 20px;
    border-bottom: 0;
    background-color: inherit;
    background-image: linear-gradient(180deg,rgba(3,41,68,.1),rgba(1,8,14,.1))
}

.noLeaderboardData .morphisam .table_content .bhoXfZ {
    background: hsla(0,0%,100%,.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.noLeaderboardData .morphisam .table_content .fFBlx {
    padding-left: 15px
}

.noLeaderboardData .morphisam .table_bottom_footer p {
    margin-bottom: 0;
    color: #212121
}

@media only screen and (max-width: 767px) {
    .noLeaderboardData .morphisam .table_bottom_footer p {
        text-align:center
    }
}

.noLeaderboardData .morphisam .leaderboard-profile {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center
}

.noLeaderboardData .morphisam .leaderboard-profile img {
    border-radius: 50px;
    object-fit: contain;
    max-width: 100%;
    width: 60px!important;
    height: 60px
}

.noLeaderboardData .first_three_data {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.noLeaderboardData .first_three_data li {
    list-style: none;
    text-align: center;
    margin-top: -72px
}

@media (max-width: 767px) {
    .noLeaderboardData .first_three_data {
        display:none
    }
}

.noLeaderboardData table.my_rank_bottom {
    background-color: #ddd;
    border-radius: 10px 10px 0 0!important;
    padding: 10px 0;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px
}

.noLeaderboardData table.my_rank_bottom th {
    color: rgba(9,0,41,.929)!important;
    border-bottom: none!important
}

.noLeaderboardData table.my_rank_bottom .all_com {
    color: rgba(9,0,41,.929)!important
}

.noLeaderboardData table.my_rank_bottom .profile.all_com img {
    height: 25px;
    object-fit: contain
}

.noLeaderboardData table.my_rank_bottom td,.noLeaderboardData table.my_rank_bottom th {
    padding: 10px;
    text-align: center
}

.noLeaderboardData table.my_rank_bottom img {
    max-width: 100%;
    height: auto
}

@media (max-width: 768px) {
    .noLeaderboardData table.my_rank_bottom td,.noLeaderboardData table.my_rank_bottom th {
        padding:5px
    }

    .noLeaderboardData table.my_rank_bottom th {
        font-size: 12px!important
    }

    .noLeaderboardData table.my_rank_bottom td {
        font-size: 12px
    }
}

.hLGqlg,.iAwKFK,.rdt_TableBody {
    background-color: hsla(0,0%,100%,.5)!important
}

.cacanJ,.hecapG {
    background-color: rgba(78,75,75,.04)!important
}

.rdt_Pagination {
    background-color: hsla(0,0%,100%,.04)!important
}

.iVexjf {
    background-color: rgba(89,81,81,.08)!important
}

.cacanJ:hover {
    background-color: rgba(9,0,41,.078)!important;
    border: 1px solid transparent!important
}

.ggomLY {
    font-family: Lato!important;
    font-size: 20px!important;
    font-weight: 700!important;
    line-height: 16px!important;
    color: var(--text-color)!important
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .ggomLY {
        font-size:16px!important
    }
}

@media only screen and (max-width: 575px) {
    .ggomLY {
        font-size:14px!important
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .rdt_Table {
        overflow:hidden!important
    }
}

.lnndaO {
    color: #6c245a;
    font-size: 18px;
    font-weight: 700
}

#cell-1-undefined>div {
    color: var(--text-color);
    font-size: 16px;
    width: 40px;
    border-radius: 30px;
    height: 40px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width: 575px) {
    #cell-1-undefined>div {
        font-size:15px
    }
}

#cell-3-undefined>div {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    #cell-3-undefined>div {
        font-size:14px
    }
}

@media only screen and (max-width: 575px) {
    #cell-3-undefined>div {
        font-size:12px
    }
}

#cell-4-undefined>div {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    #cell-4-undefined>div {
        font-size:14px
    }
}

@media only screen and (max-width: 575px) {
    #cell-4-undefined>div {
        font-size:12px
    }
}

.firstDataCard,.secondDataCard,.thirdDataCard {
    position: relative;
    height: 170px;
    width: 210px;
    border-radius: 16px 16px 0 0
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .firstDataCard,.secondDataCard,.thirdDataCard {
        width:206px
    }
}

@media (max-width: 1199px) {
    .firstDataCard,.secondDataCard,.thirdDataCard {
        width:165px
    }
}

.firstDataCard {
    background: linear-gradient(180deg,#ef83aa,rgba(239,131,170,0) 106%)
}

.secondDataCard {
    background: linear-gradient(180deg,#43e8ff,rgba(67,232,255,0) 106%)
}

.thirdDataCard {
    background: linear-gradient(180deg,#fca702 -4.8%,rgba(252,167,2,0) 106%)
}

.firstDataCard {
    height: 212px;
    margin-top: -43px
}

.first_data,.second_data,.third_data {
    position: relative
}

.first_data .data_profile,.second_data .data_profile,.third_data .data_profile {
    border: 4px solid #fff
}

.first_data .data_score,.second_data .data_score,.third_data .data_score {
    color: #212121
}

.first_data .data_nam,.second_data .data_nam,.third_data .data_nam {
    margin-top: 30px;
    font-size: small;
    font-weight: 600
}

.second_data .data_profile,.third_data .data_profile {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    position: relative;
    object-fit: contain;
    background-color: #fff
}

.first_data .data_nam {
    margin-top: 52px
}

.first_data .data_profile {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 100px;
    position: relative;
    background-color: #fff
}

.first_data .crown {
    position: absolute;
    top: -22%;
    left: 40%;
    width: 78px
}

@media (max-width: 1199px) {
    .first_data .crown {
        left:32%
    }
}

.first_data .data_rank {
    position: absolute;
    top: -32%;
    right: 58px;
    background-color: none;
    font-size: 75px;
    font-weight: 900;
    color: #d3d3d3;
    padding: 5px 11px;
    border-radius: 30px;
    z-index: -1
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .first_data .data_rank {
        right:58px;
        top: -36%
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .first_data .data_rank {
        right:41px;
        top: -36%
    }
}

@media (min-width: 1400px) {
    .first_data .data_rank {
        right:58px
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .first_data .data_rank {
        right:41px
    }
}

@media (min-width: 767px) and (max-width:991px) {
    .first_data .data_rank {
        right:41px;
        top: -36%
    }
}

.second_data .data_rank,.third_data .data_rank {
    position: absolute;
    top: -48%;
    right: 58px;
    background-color: none;
    font-size: 75px;
    font-weight: 900;
    color: #d3d3d3;
    padding: 5px 11px;
    border-radius: 30px;
    z-index: -1
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .second_data .data_rank,.third_data .data_rank {
        right:58px
    }
}

@media (min-width: 1400px) {
    .second_data .data_rank,.third_data .data_rank {
        right:58px
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .second_data .data_rank,.third_data .data_rank {
        right:41px
    }
}

@media (min-width: 767px) and (max-width:991px) {
    .second_data .data_rank,.third_data .data_rank {
        right:41px
    }
}

.second_data .Leaf_img .leftleaf,.second_data .Leaf_img .rightleaf,.third_data .Leaf_img .leftleaf,.third_data .Leaf_img .rightleaf {
    height: 80px;
    object-fit: contain
}

.second_data .Leaf_img .rightleaf,.third_data .Leaf_img .rightleaf {
    position: absolute;
    right: 90px;
    top: 2px
}

@media (max-width: 1199px) {
    .second_data .Leaf_img .rightleaf,.third_data .Leaf_img .rightleaf {
        display:none
    }
}

@media (min-width: 1400px) {
    .second_data .Leaf_img .rightleaf,.third_data .Leaf_img .rightleaf {
        right:140px
    }
}

.second_data .Leaf_img .leftleaf,.third_data .Leaf_img .leftleaf {
    position: absolute;
    top: 2px;
    left: 90px
}

@media (max-width: 1199px) {
    .second_data .Leaf_img .leftleaf,.third_data .Leaf_img .leftleaf {
        display:none
    }
}

@media (min-width: 1400px) {
    .second_data .Leaf_img .leftleaf,.third_data .Leaf_img .leftleaf {
        left:140px
    }
}

.first_data .Leaf_img .leftleaf {
    position: absolute;
    left: 25px;
    top: 16px
}

@media (max-width: 1199px) {
    .first_data .Leaf_img .leftleaf {
        display:none
    }
}

@media (min-width: 1400px) {
    .first_data .Leaf_img .leftleaf {
        left:77px
    }
}

.first_data .Leaf_img .rightleaf {
    position: absolute;
    right: 25px;
    top: 16px
}

@media (max-width: 1199px) {
    .first_data .Leaf_img .rightleaf {
        display:none
    }
}

@media (min-width: 1400px) {
    .first_data .Leaf_img .rightleaf {
        right:77px
    }
}

.dashboard {
    padding-bottom: 50px
}

.dashboard .morphisam {
    padding: 10px 15px;
    position: relative;
    border-radius: 16px;
    border: 2px;
    background: linear-gradient(0deg,rgba(9,0,41,.06),rgba(9,0,41,.06)),linear-gradient(180deg,hsla(0,0%,100%,.04),hsla(0,0%,100%,0))
}

.row .bg_white {
    background: transparent
}

@media only screen and (max-width: 575px) {
    .dashboard .morphisam {
        padding:15px
    }

    .header-logo {
        padding-block:15px}
}

@media only screen and (max-width: 479px) {
    .dashboard .whitebackground {
        padding-top:0!important
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between
}

@media only screen and (min-width: 480px) and (max-width:575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv {
        margin-top:-10px
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .editTopMargin {
        margin-top:0!important
    }
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv {
        display:flex;
        flex-wrap: wrap;
        gap: 20px
    }
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv {
        margin-top:-10px;
        margin-bottom: 62px;
        position: relative;
        gap: 12px;
        flex-direction: column;
        align-items: baseline
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .leftSec,.dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .leftSec,.dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
        gap:12px
    }
}

@media screen and (max-width: 575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .leftSec,.dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
        gap:4px
    }

    .header-logo a img.dark-logo {
        height: 50px
    }

    .mobile-menu-header {
        margin-block:0}
}

@media screen and (min-width: 275px) and (max-width:575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
        display:flex;
        margin-bottom: 0
    }

    .dashboard .whitebackground .dashboardPlayUppDiv {
        margin-bottom: 0
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .leftSec,.dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
        gap:12px
    }

    .dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
        display: flex;
        justify-content: flex-end!important;
        padding-right: 10px
    }
}

@media screen and (max-width: 575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .leftSec,.dashboard .whitebackground .dashboardPlayUppDiv .rightSec {
        gap:4px;
        width: 100%;
        justify-content: space-between
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .coins {
    background: rgba(9,0,41,.129);
    padding: 16px 30px;
    border-radius: 8px
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .coins {
        padding:12px 8px
    }
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .coins {
        padding:6px 2px;
        text-align: center
    }
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .coins {
        padding:6px;
        text-align: center
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .coins span {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    color: var(--text-color)
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .coins span {
        font-size:16px
    }
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .coins span {
        font-size:16px
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #d3d3d3;
    border-radius: 48px;
    gap: 16px
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv {
        padding:5px
    }
}

@media screen and (min-width: 576px) and (max-width:767px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv {
        padding:12px
    }
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv {
        padding:6px;
        margin-left: 4px
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv .rightAns {
    border-right: 2px solid #d3d3d3;
    padding-right: 20px
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv .rightAns {
        padding-right:6px
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv .rightAns img,.dashboard .whitebackground .dashboardPlayUppDiv .rightWrongAnsDiv .wrongAns img {
    margin-right: 12px
}

.dashboard .whitebackground .dashboardPlayUppDiv .correctIncorrect {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .correctIncorrect {
        margin-left:24px
    }

    .adj_total_q_btn {
        margin-left: 0!important
    }
}

.dashboard .whitebackground .dashboardPlayUppDiv .correctIncorrect .rightAns {
    border: none;
    padding-right: 0;
    color: var(--text-color)
}

.dashboard .whitebackground .dashboardPlayUppDiv .rightSec .bookmark_btn {
    background: rgba(9,0,41,.129);
    border-radius: 50px;
    width: 50px;
    line-height: 50px
}

@media screen and (max-width: 399px) {
    .dashboard .whitebackground .dashboardPlayUppDiv .rightSec .bookmark_btn {
        margin-left:16px
    }
}

.dashboard .whitebackground .questions .levelNumbr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px
}

.dashboard .whitebackground .questions .levelNumbr .levelText {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 16px
}

.dashboard .whitebackground .inner__headerdash {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    color: #fff
}

@media only screen and (max-width: 479px) {
    .dashboard .whitebackground .inner__headerdash {
        flex-direction:column;
        gap: 20px;
        padding-top: 0
    }
}

.dashboard .whitebackground .inner__headerdash .CircularProgressbar .CircularProgressbar-path,.dashboard .whitebackground .inner__headerdash .CircularProgressbar .CircularProgressbar-trail {
    stroke-width: 5px
}

.dashboard .whitebackground .inner__headerdash .leveldata .inner-level__data {
    letter-spacing: 2px;
    font-weight: 600
}

@media only screen and (max-width: 479px) {
    .dashboard .whitebackground .inner__headerdash .leveldata .inner-level__data {
        font-size:inherit
    }
}

.dashboard .whitebackground .inner__headerdash .coinsdata {
    width: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
    padding: 10px
}

@media only screen and (max-width: 479px) {
    .dashboard .whitebackground .inner__headerdash .coinsdata {
        width:auto;
        height: 50px;
        padding-top: 60px
    }
}

.dashboard .whitebackground .inner__headerdash .coinsdata .inner-coins__data {
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px
}

@media only screen and (max-width: 479px) {
    .dashboard .whitebackground .inner__headerdash .coinsdata .inner-coins__data {
        font-size:inherit;
        margin-top: 0;
        margin-bottom: 0
    }
}

.dashboard .whitebackground .inner__headerdash .coinsdata .inner-coins__data:before {
    position: absolute;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0,0,0,.11)
}

.dashboard .whitebackground .inner__headerdash .inner__total-leveldata {
    letter-spacing: 2px;
    font-weight: 600
}

@media only screen and (max-width: 479px) {
    .dashboard .whitebackground .inner__headerdash .inner__total-leveldata {
        font-size:inherit
    }
}

.dashboard .whitebackground .inner__headerdash .leveldata {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 55px;
    border-radius: 10px
}

.dashboard .whitebackground .inner__headerdash .leveldata h5 {
    color: #fff;
    margin-bottom: 0
}

.dashboard .whitebackground .inner__headerdash .total__out__leveldata {
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #d3d3d3
}

.dashboard .whitebackground .inner__headerdash .total__out__leveldata h5 {
    color: var(--text-color)!important;
    margin-bottom: 0
}

.dashboard .whitebackground .reviewAns {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 400
}

.dashboard .content__text {
    margin: 20px auto
}

.dashboard .content__text,.dashboard .content__text p>div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto
}

.dashboard .content__text p>div {
    font-weight: 600;
    font-size: 2vh;
    text-align: center;
    width: 700px;
    margin: auto;
    object-fit: contain;
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 400;
    word-break: break-word;
    padding-bottom: 10px
}

@media screen and (max-width: 991px) {
    .dashboard .question-text {
        width:100%
    }

    .dashboard .content__text p {
        font-size: 24px;
        margin-top: 50px;
        text-align: center
    }

    .dashboard .content__text p>div {
        width: auto
    }
}

.dashboard .imagedash {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.dashboard .imagedash img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 5px;
    height: 300px
}

.dashboard .optionsWrapper {
    padding: 0 300px
}

@media (max-width: 1199px) {
    .dashboard .optionsWrapper {
        padding:0 10px
    }
}

.dashboard .optionsWrapper .inner__questions {
    width: 100%;
    display: block;
    max-width: 100%;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    margin: auto auto 10px;
    border-radius: 8px
}

.dashboard .optionsWrapper .inner__questions button {
    border-radius: 10px;
    color: #212121;
    padding: 18px;
    font-weight: 600;
    transition: .2s ease-in-out 0s;
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    height: 80px;
    justify-content: center;
    word-break: break-word;
    overflow: auto
}

.dashboard .optionsWrapper .inner__questions button .latex {
    word-break: break-word
}

.dashboard .optionsWrapper .audiencePollDiv {
    margin-top: -44px
}

.dashboard .optionsWrapper .audiencePollDiv .progressBarWrapper {
    width: 100%;
    color: transparent
}

.dashboard .optionsWrapper .audiencePollDiv .progressBarWrapper .progress {
    height: 10px;
    z-index: -1;
    background-color: #6c757d4a;
    width: 100%;
    border-radius: 12px
}

.dashboard .optionsWrapper .audiencePollDiv .progressBarWrapper .progress .progress-bar {
    color: transparent;
    background-color: #00bf7a
}

.dashboard .optionsWrapper .inner__questions button:focus {
    outline: 0;
    box-shadow: none!important
}

.dashboard .optionsWrapper .inner__questions :hover button {
    transform: scale(1.1)
}

.dashboard .divider {
    display: flex;
    justify-content: center;
    align-items: center
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .dashboard .divider {
        padding:20px 154px
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .dashboard .divider {
        padding:20px 80px
    }
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .dashboard .divider {
        padding:20px 60px
    }
}

@media screen and (max-width: 399px) {
    .dashboard .divider {
        padding:20px 60px
    }
}

.dashboard .dashoptions {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 5px
}

.dashboard .dashoptions button {
    box-shadow: none;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #444;
    padding: 14px!important;
    height: 55px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9,0,41,.129);
    color: var(--text-color)!important;
    transition: all 1s ease;
    position: relative
}

.dashboard .dashoptions .lifeline,.dashboard .dashoptions .lifelineHoverIcon {
    transition: opacity 1s,visibility .3s;
    opacity: 0;
    visibility: hidden;
    position: absolute
}

.dashboard .dashoptions .lifelineHoverIcon {
    display: block
}

.dashboard .dashoptions button:hover .lifelineHoverIcon {
    opacity: 1;
    visibility: visible
}

.dashboard .dashoptions button:hover .lifelineIcon {
    opacity: 0;
    visibility: hidden
}

.dashboard .dashoptions button .lifelineIcon {
    opacity: 1;
    visibility: visible
}

@media screen and (min-width: 768px) and (max-width:1199px) {
    .dashboard .dashoptions .lifelineHoverIcon {
        font-size:15px
    }
}

@media screen and (max-width: 768px) {
    .dashboard .dashoptions button:hover {
        transform:scale(105%)!important
    }
}

@media screen and (max-width: 472px) {
    .dashboard .dashoptions button {
        padding:16px!important
    }
}

.dashboard .dashoptions button:hover {
    border: 2px solid var(--text-color)!important;
    transform: scale(1.1)
}

.dashboard .dashoptions button .asdfgh:hover {
    opacity: 0
}

.dashboard .dashoptions button:hover .lifelineText {
    display: block;
    position: absolute;
    transition: all 1s ease
}

.dashboard .dashoptions button .lifelineText {
    display: none;
    transition: all 1s ease
}

@media only screen and (max-width: 479px) {
    .dashboard .dashoptions button {
        font-size:inherit
    }
}

@media (max-width: 350px) {
    .dashboard .dashoptions button {
        font-size:14px
    }
}

.dashboard .dashoptions button:hover {
    box-shadow: -2px -2px 6px hsla(0,0%,100%,.6),-2px -2px 4px hsla(0,0%,100%,.4),2px 2px 2px hsla(0,0%,100%,.05),2px 2px 4px rgba(0,0,0,.1)
}

.dashboard .dashoptions button:active {
    box-shadow: inset -2px -2px 6px hsla(0,0%,100%,.7),inset -2px -2px 4px hsla(0,0%,100%,.5),inset 2px 2px 2px hsla(0,0%,100%,.075),inset 2px 2px 4px rgba(0,0,0,.15)
}

.dashboard .showScoreOptions {
    gap: 0
}

.dashboard .bookmark_area {
    text-align: right;
    padding-bottom: 15px
}

.dashboard .bookmark_area .bookmark_btn {
    color: var(--primary-color);
    margin-bottom: 5px
}

.dashboard .score-badge {
    display: flex;
    align-items: center;
    padding: .3em 1.5em;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 2;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 1rem;
    background-color: var(--primary-color)
}

@media only screen and (max-width: 479px) {
    .dashboard .score-badge {
        font-size:inherit
    }
}

.dashboard .score-badge svg {
    margin-right: 5px;
    font-size: 1.5rem
}

@media only screen and (max-width: 479px) {
    .dashboard .score-badge svg {
        font-size:inherit
    }
}

.dashboard .percent_value h1 {
    font-size: inherit
}

.dashboard .coin_score_screen {
    flex-direction: column
}

.dashboard .coin_score_screen,.dashboard .right_wrong_screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.score-circle {
    width: 100px
}

.score-circle-title {
    margin-right: 17px;
    margin-left: 17px
}

@media only screen and (max-width: 575px) {
    .score-circle {
        width:50px
    }

    .score-circle-title {
        margin-right: 0;
        margin-left: 0;
        font-size: inherit
    }

    .CircularProgressbarWithChildren__children h4 {
        font-size: inherit
    }
}

.score-circle .circle {
    height: 100%;
    width: 25%;
    border: 8px solid #d6d6d6;
    border-radius: 50px
}

button.btn.w-100.p-2.disabled {
    color: gray
}

.winlos {
    color: #00bf7a;
    margin-bottom: -3px;
    margin-top: 18px
}

.winlos span {
    color: var(--text-color)
}

.winlos.percentage {
    font-weight: 500;
    font-size: larger!important
}

.losText {
    color: #ff005c
}

.fifty__fifty .fiftybtn {
    font-size: 14px!important
}

.scoreUpperDiv,.scoreUpperDiv .scoreText {
    display: flex;
    justify-content: center;
    align-items: center
}

.scoreUpperDiv .scoreText {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px
}

.scoreUpperDiv .scoreText .percentage {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700
}

.scoreCenterDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    margin-top: 30px!important
}

@media screen and (max-width: 1199px) {
    .scoreCenterDiv {
        gap:14px
    }
}

@media screen and (max-width: 991px) {
    .scoreCenterDiv {
        flex-direction:column
    }
}

.scoreCenterDiv .rightWrongAnsDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #d3d3d3;
    border-radius: 48px;
    gap: 16px
}

.scoreCenterDiv .rightWrongAnsDiv span {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 500
}

.scoreCenterDiv .rightWrongAnsDiv .rightAns {
    border-right: 2px solid #d3d3d3;
    padding-right: 20px
}

.scoreCenterDiv .rightWrongAnsDiv .rightAns img,.scoreCenterDiv .rightWrongAnsDiv .wrongAns img {
    margin-right: 12px
}

.scoreCenterDiv .getCoins {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #d3d3d3;
    border-radius: 48px;
    gap: 16px
}

.scoreCenterDiv .getCoins .numbr {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800
}

.scoreCenterDiv .getCoins .text {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400
}

.scoreCenterDiv .getCoins .position {
    background: #00bf7a;
    color: #fff;
    border-radius: 26px;
    padding: 1px 10px;
    font-size: 12px
}

.scoreCenterDiv .getCoins .position img {
    margin-right: 6px
}

.reviewUpperDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width: 434px) {
    .reviewUpperDiv {
        flex-direction:column;
        gap: 20px
    }
}

.reviewUpperDiv .level {
    background: rgba(9,0,41,.129);
    padding: 12px;
    border-radius: 8px
}

@media only screen and (max-width: 767px) {
    .reviewUpperDiv .level {
        padding:6px
    }
}

.reviewUpperDiv .level span {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700
}

.reviewUpperDiv .reviewHeadline h4 {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 800
}

@media only screen and (max-width: 767px) {
    .reviewUpperDiv .reviewHeadline h4 {
        font-size:22px
    }
}

.reviewUpperDiv .totalOutLevel span {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400
}

.reviewUpperDiv .rightSec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

.reviewUpperDiv .bookmark_area {
    background-color: rgba(9,0,41,.129);
    border-radius: 50px;
    text-align: center;
    padding-bottom: 0
}

.reviewUpperDiv .bookmark_area .bookmark_btn {
    color: var(--text-color);
    margin-bottom: 5px
}

.reviewDashoption button {
    padding: 14px 52px!important
}

.Maintainance {
    margin-bottom: 50px
}

.Maintainance .container .row .morphisam {
    border-radius: 46px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    background-color: #fff;
    padding: 30px;
    position: relative
}

@media only screen and (max-width: 575px) {
    .Maintainance .container .row .morphisam {
        padding:15px
    }
}

.Maintainance .container .row .morphisam:after {
    position: absolute;
    content: "";
    width: 95%;
    height: 30px;
    bottom: -5px;
    z-index: -1;
    background-color: #212121;
    border-radius: 30px;
    left: 0;
    right: 0;
    margin: auto
}

@media only screen and (max-width: 575px) {
    .Maintainance .container .row .morphisam:after {
        width:80%
    }
}

.Maintainance .container .row .morphisam .left_image {
    display: flex;
    justify-content: center;
    align-items: center
}

.Maintainance .container .row .morphisam .left_image img {
    height: 300px;
    object-fit: contain
}

@media only screen and (max-width: 767px) {
    .Maintainance .container .row .morphisam .left_image img {
        height:200px
    }
}

.Maintainance .container .row .morphisam .right_text {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.Maintainance .container .row .morphisam .right_text p {
    text-align: center;
    width: 70%
}

@media only screen and (max-width: 767px) {
    .Maintainance .container .row .morphisam .right_text p {
        width:auto
    }
}

.custom_modal_notify .ant-modal-content {
    background-color: #f1f0f2!important;
    border-radius: 12px!important
}

.custom_modal_notify .ant-modal-body,.custom_modal_notify .ant-modal-header {
    background-color: transparent!important
}

.custom_modal_notify .ant-modal-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 0
}

.outer_noti {
    display: flex;
    align-items: center;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 16px;
    padding: 12px
}

@media screen and (max-width: 475px) {
    .outer_noti {
        flex-direction:column
    }
}

.noDataDiv img {
    width: 260px;
    display: block;
    margin: auto
}

@media screen and (max-width: 475px) {
    .noDataDiv img {
        width:200px
    }
}

.noti_image {
    object-fit: contain;
    width: 60px;
    height: 80px;
    border-radius: 30px;
    margin-right: 20px
}

.noti_desc {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px
}

.noti_desc p {
    width: 100%;
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 0
}

.noti_desc p,.noti_desc span {
    text-align: start;
    font-weight: 400
}

.noti_desc span {
    color: gray;
    font-size: 14px
}

.noti_desc .noti_title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0
}

.SelfLearning {
    display: flex;
    color: #fff
}

.SelfLearning .morphisam {
    border-radius: 46px;
    padding: 30px;
    position: relative
}

@media only screen and (max-width: 575px) {
    .SelfLearning .morphisam {
        padding:15px
    }
}

.SelfLearning .morphisam .start_button {
    margin-top: 20px
}

.SelfLearning .morphisam .start_button button {
    width: 250px;
    height: 70px;
    font-weight: 700
}

.SelfLearning .left-sec .cat__Box {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.SelfLearning .left-sec .cat__Box .quizplay__title {
    margin: auto 10px;
    font-size: 1rem
}

@media only screen and (max-width: 767px) {
    .SelfLearning .left-sec .cat__Box .quizplay__title {
        font-size:inherit
    }
}

.SelfLearning .left-sec .bottom__cat__box {
    display: flex;
    margin-bottom: 20px
}

.SelfLearning .left-sec .bottom__cat__box .form-select {
    background-color: transparent;
    background-size: 10px 10px
}

.SelfLearning .left-sec .bottom__cat__box .form-select option {
    color: #000
}

.SelfLearning .right-sec {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.SelfLearning .right-sec .que_num,.SelfLearning .right-sec .timer {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px
}

.SelfLearning .subcat__slider__context {
    display: block;
    position: relative
}

.SelfLearning .subcat__slider__context .inner__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: grey
}

.SelfLearning .subcat__slider__context .cat__Box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.SelfLearning .subcat__slider__context .cat__Box:after {
    left: 20px
}

.SelfLearning .subcat__slider__context .cat__Box:before {
    right: 20px
}

.SelfLearning .subcat__slider__context .cat__Box:after,.SelfLearning .subcat__slider__context .cat__Box:before {
    background-color: transparent;
    content: "";
    display: inline-block;
    height: 2px;
    position: absolute;
    vertical-align: middle;
    width: 0;
    opacity: 1
}

@media screen and (max-width: 480px) {
    .SelfLearning .subcat__slider__context .cat__Box:after,.SelfLearning .subcat__slider__context .cat__Box:before {
        width:20%
    }
}

.SelfLearning .subcat__slider__context .cat__Box .quizplay__title {
    margin: auto 10px
}

.SelfLearning .subcat__slider__context .cat__Box .sub_cat_title .subcat__p {
    font-size: 1.1rem;
    display: flex;
    margin: 5px auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    color: rgba(0,0,0,.85);
    font-weight: 800
}

.SelfLearning .subcat__slider__context .cat__Box .sub_cat_title1 .subcat__p {
    font-size: 1rem;
    display: flex;
    margin: 5px auto;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    color: rgba(0,0,0,.85)
}

@media only screen and (max-width: 767px) {
    .SelfLearning .subcat__slider__context .cat__Box .subcat__p {
        font-size:inherit
    }
}

@media (max-width: 370px) {
    .SelfLearning .subcat__slider__context .cat__Box .subcat__p {
        font-size:14px
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider {
    padding: 20px 0;
    position: relative
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec {
    margin: 30px auto
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card {
    padding: 30px 12px 18px;
    background: rgba(9,0,41,.059);
    border: none;
    border-radius: 8px;
    gap: 16px;
    cursor: pointer;
    overflow: hidden
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover .numText {
    top: 8px
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover:before {
    left: 50%;
    width: 50%
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card:hover .rightArrow {
    visibility: visible!important;
    transition: all 2s!important
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    position: relative
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon {
    margin-top: -24px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .Box__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .rightArrow {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--text-color);
    font-size: 20px;
    visibility: hidden;
    transition: visibility .3s ease-in-out
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
    color: var(--text-color);
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 13px
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:4px
    }
}

@media screen and (max-width: 992px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:0
    }
}

@media screen and (min-width: 576px) and (max-width:767px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:144px
    }
}

@media screen and (max-width: 399px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .progressNum {
        right:44px
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: column;
    position: relative
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardText {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-color)
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
    width: 74%;
    color: transparent
}

@media screen and (max-width: 767px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:100%
    }
}

@media screen and (max-width: 399px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv {
        width:80%
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress {
    height: 4px;
    width: 150px;
    background-color: #d3d3d3
}

@media screen and (max-width: 399px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress {
        width:100%
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .progressDiv .progress-bar {
    background-color: var(--primary-color)
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px 20px
}

@media screen and (max-width: 992px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 0;
        align-items: flex-start
    }
}

@media only screen and (min-width: 576px) and (max-width:767px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:row;
        gap: 82px;
        align-items: center
    }
}

@media only screen and (min-width: 400px) and (max-width:575px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:row;
        gap: 65px;
        align-items: center
    }
}

@media screen and (max-width: 399px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails {
        flex-direction:column;
        gap: 0;
        align-items: flex-start
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color)
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .subcatintro__sec .card .cardInnerData .cardDetails .cardSubDetails .CardQues {
        font-size:12px
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .selfLearnNumWrapper {
    color: var(--text-color)
}

.SelfLearning .subcat__slider__context .quizplay-slider .selfLearnNumWrapper .number {
    font-family: var(--font-family);
    font-size: 25px;
    font-weight: 700
}

.SelfLearning .subcat__slider__context .quizplay-slider .selfLearnNumWrapper .numText {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    position: relative;
    top: 0;
    transition: top .5s ease-in-out
}

.SelfLearning .subcat__slider__context .quizplay-slider .no_sub_data {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-next,.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-prev {
    background-color: var(--primary-color)
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-next {
    width: 30px;
    height: 30px;
    padding: 10px;
    top: 25px;
    right: 0;
    color: #fff;
    border-radius: 50%;
    opacity: 1;
    object-fit: contain;
    cursor: pointer
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-next:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-next:hover:after {
    animation: moveoutright 1s linear
}

@keyframes moveoutright {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(100px)
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-next:after {
    font-size: 10px!important
}

@media only screen and (max-width: 479px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-next {
        display:none
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
    padding: 10px;
    top: 25px;
    right: 45px!important;
    left: auto;
    color: #fff;
    border-radius: 50%;
    opacity: 1;
    object-fit: contain;
    cursor: pointer
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-prev:hover {
    background-color: var(--primary-color)!important;
    overflow: hidden
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-prev:hover:after {
    animation: moveoutleft 1s linear
}

@keyframes moveoutleft {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100px)
    }
}

.SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-prev:after {
    font-size: 10px!important
}

@media only screen and (max-width: 479px) {
    .SelfLearning .subcat__slider__context .quizplay-slider .swiper-button-prev {
        display:none
    }
}

.SelfLearning .subcat__slider__context .sub_cat_title,.SelfLearning .subcat__slider__context .sub_cat_title1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%
}

.SelfLearning .subcat__slider__context .active-one {
    color: #fff;
    background-color: var(--primary-color)!important
}

.SelfLearning .subcat__slider__context .active-one p {
    color: #fff
}

.SelfLearning .subcat__slider__context .unactive-one {
    color: #212121
}

.SelfLearning .start_btn {
    background-color: var(--primary-color);
    color: #fff
}

.SelfLearning .selectform {
    font-size: 1rem
}

@media only screen and (max-width: 479px) {
    .SelfLearning .coinsdata {
        margin:40px auto
    }
}

.selflearnig-play .coinsdata {
    width: auto!important;
    height: auto!important;
    padding: 20px 10px
}

.selflearnig-play .inner__headerdash {
    flex-direction: column;
    justify-content: center
}

.selflearnig-play .total__out__leveldata {
    margin-top: 40px
}

.activeEle .spandiv {
    background-color: var(--primary-color)!important;
    transition: .2s ease-in
}

.activeEle .spandiv p {
    color: #fff!important
}

.que_box {
    color: #212121;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 0;
    border: 1px solid rgba(39,36,36,.31);
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color)!important
}

.selfAttemptModal {
    position: relative
}

.selfAttemptModal .divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 60px
}

.selfAttemptModal .divider:after,.selfAttemptModal .divider:before {
    background-color: #d3d3d3;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    opacity: 1
}

.selfAttemptModal .divider:before {
    right: 22px;
    margin-left: -50%
}

.selfAttemptModal .divider:after {
    left: 22px;
    margin-right: -50%
}

.que_content {
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer
}

.que_pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px
}

.self-modal .ant-modal-body {
    height: auto!important;
    overflow-y: auto!important;
    background: transparent!important
}

.self-modal .ant-modal-close-x {
    border-radius: 50px;
    width: 0;
    height: 0;
    position: relative;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    background: var(--secondary-color);
    color: #000
}

.self-modal input[type=radio] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    outline: none;
    background-color: hsla(0,0%,50%,.188)
}

.self-modal input[type=radio]:before {
    content: "";
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%
}

.self-modal input[type=radio]:checked:before {
    background-color: var(--primary-color)
}

body[data-theme=dark] .self-modal input[type=radio]:checked:before {
    background-color: #c564bb
}

.ant-modal-close-x {
    border-radius: 50px;
    width: 0;
    height: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    background: rgba(9,0,41,.129)
}

.que_box.bg-green {
    background-color: var(--primary-color);
    color: #fff!important
}

.que_box.bg-dark {
    background-color: transparent!important;
    color: #000
}

.bg-theme {
    background-color: var(--primary-color);
    color: #fff!important
}

.selfLearnLifelines button {
    width: 220px;
    height: 56px;
    justify-content: center
}

@media screen and (max-width: 991px) {
    .selfLearnLifelines {
        flex-wrap:wrap
    }
}

@media screen and (max-width: 767px) {
    .selfLearnQuestionsUpperDiv .rightWrongAnsDiv .rightAns {
        padding-right:6px!important
    }
}

.contestPlay {
    display: flex;
    color: #fff
}

.contestPlay .morphisam {
    padding: 30px;
    position: relative
}

@media only screen and (max-width: 575px) {
    .contestPlay .morphisam {
        padding:15px
    }
}

.contestPlay .nav-link.active {
    border-radius: 8px;
    border: none;
    outline: none;
    color: #fff;
    background: var(--primary-color)
}

.contestPlay .nav-tabs {
    border-bottom: 1px solid hsla(0,0%,87%,.149)
}

.contestPlay .nav-tabs button {
    text-transform: capitalize;
    letter-spacing: 1px;
    background: rgba(9,0,41,.059);
    color: var(--text-color);
    border-radius: 8px;
    padding: 18px;
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700
}

@media screen and (max-width: 575px) {
    .contestPlay .nav-tabs button {
        padding:10px;
        font-size: 16px
    }
}

.contestPlay .card {
    border-radius: 15px;
    padding: 10px 14px;
    background: rgba(9,0,41,.059);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 2px solid hsla(0,0%,100%,.1);
    margin-top: 36px
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .contestPlay .card {
        padding:4px
    }
}

@media screen and (max-width: 399px) {
    .contestPlay .card {
        padding:4px
    }
}

.contestPlay .card .card-image img {
    object-fit: contain;
    display: flex;
    margin: auto;
    border-radius: 15px;
    max-width: 100%;
    width: 100%
}

.contestPlay .card .card-details .card-title {
    padding-top: 10px
}

.contestPlay .card .card-details .card-title h3 {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color)
}

.contestPlay .card .card-details .card-title p {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    text-align: left
}

.contestPlay .card .card-details .card-title .titleDataDiv {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between
}

.contestPlay .card .card-details .card-title .titleDataDiv .dropIcon {
    background-color: rgba(9,0,41,.059);
    padding: 0;
    border-radius: 6px;
    width: 22px;
    height: 20px;
    text-align: center;
    color: var(--text-color);
    font-size: 12px
}

.contestPlay .card .card-details .card-footer {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: transparent
}

@media screen and (max-width: 399px) {
    .contestPlay .card .card-details .card-footer {
        padding:4px 2px
    }
}

.contestPlay .card .card-details .card-footer p {
    color: #6c757d;
    margin-bottom: 5px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400
}

.contestPlay .card .card-details .card-footer span {
    color: var(--text-color);
    font-family: var(--font-family);
    font-weight: 400
}

.contestPlay .card .card-details .card-footer .btn-play {
    color: var(--text-color);
    margin-bottom: 0;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700
}

.contestPlay .card .card-details .card-footer .upper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    position: relative
}

.contestPlay .card .card-details .card-footer .upper-footer:after,.contestPlay .card .card-details .card-footer .upper-footer:before {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 52px;
    background: #ae9c9f21
}

.contestPlay .card .card-details .card-footer .upper-footer:before {
    left: 122px
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .contestPlay .card .card-details .card-footer .upper-footer:before {
        left:98px
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .contestPlay .card .card-details .card-footer .upper-footer:before {
        left:88px
    }
}

@media screen and (min-width: 280px) and (max-width:991px) {
    .contestPlay .card .card-details .card-footer .upper-footer:before {
        left:92px
    }
}

.contestPlay .card .card-details .card-footer .upper-footer:after {
    right: 92px
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .contestPlay .card .card-details .card-footer .upper-footer:after {
        right:72px
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .contestPlay .card .card-details .card-footer .upper-footer:after {
        right:62px
    }
}

@media screen and (min-width: 280px) and (max-width:991px) {
    .contestPlay .card .card-details .card-footer .upper-footer:after {
        right:66px
    }
}

.contestPlay .card .card-details .card-footer .bottom-footer {
    display: flex;
    justify-content: center;
    align-items: center
}

.contestPlay .card .card-details .card-footer .bottom-footer .card-btn-play {
    background: rgba(9,0,41,.129);
    width: 100%;
    height: 54px;
    border-radius: 8px;
    text-align: center;
    padding: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s ease-in-out
}

.contestPlay .card .card-details .card-footer .bottom-footer .card-btn-play:hover {
    background-color: rgba(9,0,41,.055);
    border: 1px solid #fff;
    font-size: 18px
}

.contestPlay .card .card-details .card-footer .bottom-footer .card-btn-play:hover .btn-play {
    font-size: 16px
}

.contestque .inner__headerdash {
    justify-content: center;
    flex-direction: column
}

.contestque .inner__headerdash .total__out__leveldata {
    position: relative;
    right: auto;
    margin-top: 20px
}

@media only screen and (max-width: 479px) {
    .contestque .inner__headerdash .total__out__leveldata {
        margin-top:0
    }

    .contestque .inner__headerdash .coinsdata {
        margin: 40px auto
    }
}

.contestque .inner__headerdash .bookmark_btn {
    position: absolute;
    right: 0;
    top: 19px
}

@media only screen and (max-width: 479px) {
    .contestque .inner__headerdash .bookmark_btn {
        position:relative;
        margin-top: 0;
        top: 0
    }
}

.user_data {
    justify-content: space-around;
    margin-top: 30px
}

.user_data,.user_data .user_one,.user_data .user_two {
    display: flex;
    align-items: center
}

.user_data .username p {
    color: #212121
}

.user_data .userpoints {
    display: flex;
    align-items: center
}

.user_data .userpoints p {
    color: #212121
}

.user_data .inner__headerdash {
    margin-right: 10px
}

.user_data .inner__headerdash .coinsdata {
    width: 150px!important;
    height: 150px!important
}

.user_data .inner__headerdash .coinsdata .inner-coins__data:before {
    box-shadow: none!important;
    border-radius: 0!important
}

.user_data .group_battle_loser {
    display: flex;
    align-items: center;
    justify-content: center
}

.user_data .group_battle_loser .group_data {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    text-align: center;
    flex-direction: column
}

.user_data .otherPlayersRanksWrapper .group_data {
    flex-direction: row;
    width: 70%
}

.user_data .otherPlayersRanksWrapper .otherplayesProfileWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

@media screen and (max-width: 767px) {
    .user_data .group_battle_loser .group_data {
        flex-direction:column;
        gap: 18px
    }

    .user_data .otherPlayersRanksWrapper .group_data {
        flex-direction: row;
        margin: 0;
        width: 100%
    }
}

@media screen and (max-width: 399px) {
    .user_data .otherPlayersRanksWrapper .group_data {
        flex-direction:column;
        gap: 8px;
        justify-content: flex-start;
        margin: 0
    }
}

.user_data .group_battle_loser .group_data .leftDiv {
    display: flex;
    gap: 0 50px
}

@media screen and (max-width: 767px) {
    .user_data .group_battle_loser .group_data .leftDiv {
        gap:32px;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }
}

.user_data .group_battle_loser .group_data .leftDiv .profileWrapper {
    width: 120px
}

.user_data .group_battle_loser .group_data .leftDiv .profileWrapper .showscore-userprofile {
    width: 92px;
    height: 92px
}

.user_data .group_battle_loser .group_data .leftDiv .profileWrapper .wonbadge {
    width: 35px
}

.user_data .group_battle_loser .group_data .point_screen {
    flex-direction: column;
    align-items: flex-start
}

@media screen and (max-width: 767px) {
    .user_data .group_battle_loser .group_data .point_screen {
        align-items:center
    }
}

.user_data .group_battle_loser .group_data .point_screen .scoreWrapper {
    display: flex;
    gap: 12px;
    margin-top: -18px
}

.user_data .group_battle_loser .group_screen img {
    width: 50px!important;
    margin: 0 20px
}

.playFrndWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 240px
}

@media screen and (max-width: 1650px) {
    .playFrndWrapper {
        padding:0
    }
}

.battlequiz .morphisam {
    border-radius: 8px;
    background: rgba(9,0,41,.059);
    padding: 40px 50px;
    position: relative;
    box-shadow: none
}

.battlequiz .tabTitle {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 900
}

@media screen and (max-width: 470px) {
    .battlequiz .tabTitle {
        font-size:22px
    }
}

@media screen and (max-width: 767px) {
    .battlequiz .morphisam {
        padding:30px 0
    }
}

@media screen and (max-width: 991px) {
    .battlequiz .morphisam {
        gap:30px
    }
}

.battlequiz .morphisam .left_content {
    background-color: #fff;
    padding: 12px;
    border-radius: 16px
}

.battlequiz .morphisam .left_content .leftSecTite {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    margin-top: 20px
}

.battlequiz .morphisam .left-sec .two_header_content {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly
}

.battlequiz .morphisam .left-sec .bottom__cat__box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 40px;
    gap: 30px
}

.battlequiz .morphisam .left-sec .bottom__cat__box .seleterWrapper {
    border-radius: 8px;
    background: rgba(9,0,41,.102);
    width: 100%
}

.battlequiz .morphisam .left-sec .bottom__cat__box .seleterWrapper .form-select {
    border-radius: 8px;
    box-shadow: none;
    position: relative;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    padding: 12px;
    border: none
}

.battlequiz .morphisam .left-sec .bottom__cat__box .seleterWrapper .form-select:focus {
    border: none
}

.battlequiz .morphisam .left-sec .playFrdPara {
    padding: 0 68px;
    text-align: center;
    margin: 24px 0
}

@media screen and (max-width: 1399px) {
    .battlequiz .morphisam .left-sec .playFrdPara {
        padding:0
    }
}

@media screen and (min-width: 992px) and (max-width:1199px) {
    .battlequiz .morphisam .left-sec .playFrdPara {
        margin:10px 0
    }
}

.battlequiz .morphisam .left-sec .playFrdPara p {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400
}

.battlequiz .morphisam .playFrndSelecter .seleterWrapper {
    border-radius: 8px;
    background: rgba(9,0,41,.102);
    width: 100%
}

.battlequiz .morphisam .playFrndSelecter .seleterWrapper .form-select {
    border-radius: 8px;
    box-shadow: none;
    position: relative;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    padding: 20px;
    border: none
}

.battlequiz .morphisam .playFrndSelecter .seleterWrapper .form-select:focus {
    border: none
}

.battlequiz .morphisam .inner_content {
    justify-content: space-around;
    margin-top: 12px
}

.battlequiz .morphisam .inner_content span {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400
}

.battlequiz .random_play {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.battlequiz .random_play .btn {
    width: 100%;
    height: 65px;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800;
    border-radius: 16px;
    transition: all .3s
}

.battlequiz .random_play .btn:hover {
    font-size: 22px
}

@media screen and (max-width: 479px) {
    .battlequiz .random_play .btn {
        height:50px;
        font-size: 18px
    }
}

.battlequiz .randomplayer .headlineText {
    color: var(--text-color)
}

.battlequiz .randomplayer .inner_Screen.onevsonescreen {
    justify-content: space-between
}

@media (max-width: 575px) {
    .battlequiz .randomplayer .inner_Screen.onevsonescreen {
        display:flex;
        justify-content: center;
        flex-direction: column;
        align-items: center
    }
}

.battlequiz .randomplayer .inner_Screen .user_profile img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50px
}

.battlequiz .randomplayer .inner_Screen .user_profile p {
    word-wrap: break-word
}

@media (max-width: 575px) {
    .battlequiz .randomplayer .inner_Screen .opponent_image {
        margin-top:20px
    }
}

.battlequiz .randomplayer .inner_Screen .opponent_image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50px
}

.battlequiz .randomplayer .inner_Screen .vs_image img {
    width: 50px;
    object-fit: contain
}

.battlequiz .ant-tabs-bottom>.ant-tabs-nav:before,.battlequiz .ant-tabs-bottom>div>.ant-tabs-nav:before,.battlequiz .ant-tabs-top>.ant-tabs-nav:before,.battlequiz .ant-tabs-top>div>.ant-tabs-nav:before {
    position: absolute;
    right: 0;
    left: 0;
    border-bottom: 0 solid transparent;
    content: ""
}

.ant-tabs-tab:hover {
    color: #000!important
}

.battlequiz .ant-tabs-bottom>.ant-tabs-tab-active-nav:before,.battlequiz .ant-tabs-bottom>div>.ant-tabs-tab-active-nav:before,.battlequiz .ant-tabs-top>.ant-tabs-tab-active-nav:before,.battlequiz .ant-tabs-top>div>.ant-tabs-tab-active-nav:before {
    position: absolute;
    right: 0;
    left: 0;
    border-bottom: 0 solid transparent;
    content: ""
}

.battlequiz .ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap:before,.battlequiz .ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap:before,.battlequiz .ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap:before,.battlequiz .ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    left: 0;
    box-shadow: none
}

.battlequiz .ant-tabs-bottom>.ant-tabs-nav .ant-tabs-nav-wrap:after,.battlequiz .ant-tabs-bottom>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.battlequiz .ant-tabs-top>.ant-tabs-nav .ant-tabs-nav-wrap:after,.battlequiz .ant-tabs-top>div>.ant-tabs-nav .ant-tabs-nav-wrap:after {
    right: 0;
    box-shadow: none
}

.battlequiz .ant-tabs>.ant-tabs-nav .ant-tabs-nav-wrap:after,.battlequiz .ant-tabs>.ant-tabs-nav .ant-tabs-nav-wrap:before,.battlequiz .ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-wrap:after,.battlequiz .ant-tabs>div>.ant-tabs-nav .ant-tabs-nav-wrap:before {
    position: relative;
    content: ""
}

.battlequiz .ant-tabs>.ant-tabs-nav .ant-tabs-nav-list {
    width: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.battlequiz .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
    color: var(--text-color)
}

.battlequiz .ant-tabs-tab {
    padding: 12px 50px;
    color: var(--text-color);
    background-color: none;
    display: block;
    text-align: center;
    border-top-right-radius: 10px;
    border-radius: 42px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700
}

@media screen and (max-width: 575px) {
    .battlequiz .ant-tabs-tab {
        width:50%;
        padding: 12px
    }
}

.battlequiz .ant-tabs-tab.ant-tabs-tab-active {
    background-color: var(--primary-color);
    background: rgba(9,0,41,.102);
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    color: var(--text-color);
    border-radius: 42px
}

.battlequiz .groupBattleTab h5 {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700
}

.battlequiz .ant-tabs-ink-bar {
    background: transparent
}

.battlequiz .ant-tabs-content {
    padding-left: 20px;
    padding-right: 15px
}

.battlequiz .unactive-one {
    border-radius: 5px
}

.battlequiz .playFrndTitle {
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800
}

.battlerandom .showscore-userprofile {
    width: 150px;
    height: 150px;
    object-fit: contain
}

.battlerandom .user_data {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    margin: auto
}

@-moz-document url-prefix() {
    .battlerandom .user_data {
        margin-top: auto
    }
}

.group_battle {
    flex-direction: column
}

.tieMoreThanTwoWrapper {
    flex-direction: row;
    justify-content: space-evenly!important;
    margin-bottom: 20px!important;
    gap: 50px 0
}

.tieMoreThanTwoWrapper .showscore-userprofile {
    width: 100px;
    height: 100px;
    margin-bottom: 12px
}

@media screen and (max-width: 767px) {
    .battlerandom .user_data {
        flex-direction:column;
        max-width: auto
    }
}

@media screen and (max-width: 460px) {
    .battlerandom .user_data .username {
        margin-top:48px
    }
}

.battlerandom .user_data .rightWrongAnsDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #d3d3d3;
    border-radius: 48px;
    gap: 16px
}

@media screen and (min-width: 400px) and (max-width:575px) {
    .battlerandom .user_data .rightWrongAnsDiv {
        padding:5px
    }
}

@media screen and (max-width: 399px) {
    .battlerandom .user_data .rightWrongAnsDiv {
        padding:6px;
        width: 135px;
        margin-left: -10px
    }
}

.battlerandom .user_data .rightWrongAnsDiv .rightAns {
    color: var(--text-color)
}

.battlerandom .user_data .rightWrongAnsDiv .rightAns,.battlerandom .user_data .rightWrongAnsDiv .wrongAns {
    font-size: 18px;
    font-weight: 900
}

.battlerandom .user_data .rightWrongAnsDiv .rightAns img,.battlerandom .user_data .rightWrongAnsDiv .wrongAns img {
    margin-right: 12px
}

@media screen and (max-width: 399px) {
    .battlerandom .user_data .scoreRightWrongAnsDiv {
        width:100%!important
    }
}

.battlerandom .user_data p {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color)
}

@media (max-width: 575px) {
    .battlerandom .user_data p {
        font-size:18px
    }
}

.battlerandom .user_data .point_screen {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px
}

.battlerandom .user_data .point_screen span {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400
}

.battlerandom .user_data .group_result_point {
    width: 100%!important
}

.battlerandom .user_data .versus_screen img {
    object-fit: contain;
    width: auto;
    aspect-ratio: 1/1
}

@media only screen and (max-width: 575px) {
    .battlerandom .user_data .versus_screen img {
        margin-right:0;
        width: 160px
    }
}

@media only screen and (max-width: 479px) {
    .battlerandom .user_data .versus_screen {
        width:100%;
        margin: 16px 0
    }
}

.battlerandom .user_data .opponet_loser .profileWrapper {
    width: 195px;
    position: relative
}

.battlerandom .user_data .opponet_loser .profileWrapper .CircularProgressbar .CircularProgressbar-path {
    stroke: #ff005c!important
}

.battlerandom .user_data .opponet_loser .profileWrapper .wonbadge {
    position: absolute;
    bottom: 0;
    right: 0
}

.battlerandom .user_data .group_data {
    margin-right: 50px
}

.group_battle .group_data {
    margin-right: 0!important
}

@media only screen and (max-width: 767px) {
    .battlerandom .user_data .group_data {
        margin-right:20px
    }

    .battlerandom .user_data .login_winner {
        margin-right: 0
    }
}

.battlerandom .user_data .login_winner .profileWrapper {
    width: 195px;
    position: relative;
    margin: auto
}

.battlerandom .user_data .login_winner .profileWrapper .CircularProgressbar .CircularProgressbar-path {
    stroke: #00bf7a!important
}

.battlerandom .user_data .login_winner .profileWrapper .wonbadge {
    position: absolute;
    bottom: 0;
    right: 0
}

.battlerandom .user_data .opponent_image,.battlerandom .user_data .user_profile {
    display: flex;
    gap: 12px;
    align-items: end;
    justify-content: center;
    padding-bottom: 30px
}

.battlerandom .onevsone {
    margin-top: 30px;
    width: 60%;
    justify-content: space-between
}

@media screen and (max-width: 1400px) {
    .below_1400 {
        margin-top:30px;
        width: 80%!important;
        justify-content: space-between
    }
}

@media screen and (max-width: 991px) {
    .battlerandom .onevsone {
        width:100%
    }
}

.battlerandom .group_battle .login_winner {
    margin-right: 0
}

.battlerandom .result_data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.battlerandom .result_data p {
    color: #212121;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 40px;
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .battlerandom .result_data p {
        font-size:24px
    }
}

.battlerandom .result_data h3 {
    color: #212121;
    font-size: 25px;
    margin-bottom: 2rem
}

.battlerandom .result_data .wonCoin,.battlerandom .result_data h3 {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--text-color)
}

.battlerandom .result_data .wonCoin {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #00bf7a;
    border-radius: 8px;
    background: linear-gradient(0deg,rgba(9,0,41,.06),rgba(9,0,41,.06)),linear-gradient(180deg,hsla(0,0%,100%,.04),hsla(0,0%,100%,0));
    width: 50%;
    padding: 12px;
    font-size: 32px;
    margin: 12px
}

@media screen and (max-width: 767px) {
    .battlerandom .result_data .wonCoin {
        font-size:24px
    }
}

@media screen and (max-width: 575px) {
    .battlerandom .result_data .wonCoin {
        font-size:18px
    }
}

.battlerandom .result_data .loseCoin {
    border: 2px solid #ff005c!important
}

.battlerandom .result_data .lost_coin {
    font-size: 24px
}

.retry-modal .ant-modal-body {
    height: auto;
    overflow-y: hidden;
    background: transparent
}

.retry-modal .ant-modal-body h5 {
    margin-top: 50px
}

.playwithfriend .ant-tabs-nav-list {
    width: 100%
}

.playwithfriend .ant-tabs-tab {
    width: 50%
}

.playwithfriend {
    width: 640px!important
}

.coins_deduct {
    gap: 16px 30px;
    margin-left: -72px
}

@media screen and (max-width: 991px) {
    .coins_deduct {
        margin-left:0
    }
}

@media screen and (max-width: 767px) {
    .coins_deduct {
        gap:8px
    }
}

@media screen and (max-width: 575px) {
    .coins_deduct {
        gap:8px;
        flex-wrap: wrap;
        justify-content: space-around
    }
}

.groupCoinsDeduct {
    margin-left: 12px
}

.randomplayer {
    position: relative
}

.randomplayer .room_code_screen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    position: relative;
    padding: 16px;
    border-radius: 8px;
    color: var(--text-color)
}

.randomplayer .room_code_screen .shareIcon svg {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 34px;
    border-radius: 4px;
    padding: 4px;
    background: rgba(9,0,41,.102);
    cursor: pointer
}

.randomplayer .room_code_screen h3 {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color)
}

.randomplayer .room_code_screen p {
    margin-bottom: 0
}

.randomplayer .share {
    background: hsla(254,9%,62%,.929);
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    z-index: 1000;
    padding: 28px 20px 20px
}

.randomplayer .share .closePopBtn {
    font-size: 20px;
    position: absolute;
    top: 3px;
    right: 4px;
    cursor: pointer
}

.inner_content .unactive-one {
    border-radius: 30px
}

.inner_content .active-one {
    background: #313131!important;
    background-color: rgba(9,0,41,.102)!important;
    background-image: none!important;
    box-shadow: none!important
}

.list-unstyled {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border: 2px solid #d3d3d3;
    padding: 6px 16px;
    border-radius: 30px
}

.list-unstyled.battle-coins {
    width: min-content
}

.list-unstyled.battle-coins img {
    width: 15px
}

.list-unstyled2 {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border: 2px solid #d3d3d3;
    border-radius: 30px;
    padding: 5px 16px 6px;
    margin-top: 5px
}

.battel-join-top {
    display: flex;
    width: 468px;
    height: 50px;
    top: 132px;
    left: 59px;
    border-radius: 8px;
    padding: 12px;
    gap: 10px;
    background-color: #fff
}

.list-unstyled img {
    width: 30px;
    object-fit: contain
}

.list-unstyled span {
    font-weight: 700!important;
    color: var(--text-color)
}

.total_coins h5 {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color)
}

.create_room {
    display: flex;
    justify-content: center;
    align-items: center
}

.create_room .btn {
    width: 75%;
    height: 65px;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800;
    border-radius: 16px;
    transition: all .3s
}

.create_room .btn:hover {
    font-size: 22px
}

@media screen and (max-width: 479px) {
    .create_room .btn {
        height:50px;
        font-size: 18px
    }
}

.input_coins input {
    height: 46px;
    border-radius: 30px;
    width: 112px;
    outline: none;
    text-align: center;
    letter-spacing: .2rem;
    background-color: transparent;
    border: 2px solid #d3d3d3;
    color: var(--text-color);
    font-weight: 700
}

.onevsoneimg {
    object-fit: contain;
    width: 100%;
    height: 400px
}

.random_current_coins,.random_fees {
    text-align: center
}

.random_current_coins p,.random_fees p {
    margin: 15px auto;
    color: rgba(9,0,41,.502);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700
}

.random_current_coins p span,.random_fees p span {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color)
}

@media only screen and (max-width: 479px) {
    .random_current_coins,.random_fees {
        width:100%
    }
}

.random_current_coins {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.join_input {
    height: 50px;
    border-radius: 10px;
    outline: none;
    border: none;
    padding-left: 10px;
    text-align: start;
    letter-spacing: .2rem;
    background: hsla(0,0%,100%,.639);
    width: 100%;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: -12px
}

.join_btn {
    display: flex;
    justify-content: center;
    align-items: center
}

.join_btn .btn {
    width: 75%;
    height: 60px;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800;
    border-radius: 16px;
    transition: all .3s
}

.join_btn .btn:hover {
    font-size: 22px
}

@media screen and (max-width: 479px) {
    .join_btn .btn {
        height:50px;
        font-size: 18px
    }
}

.input_coins input::-webkit-inner-spin-button,.input_coins input::-webkit-outer-spin-button,.join_room_code input::-webkit-inner-spin-button,.join_room_code input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

.battlequestion .total__out__leveldata {
    position: relative;
    right: auto
}

.battlequestion .content__text p {
    margin-top: 60px
}

@media (max-width: 575px) {
    .onevsonedetails {
        display:flex;
        flex-direction: column;
        align-items: flex-start
    }
}

.randomplayer .coinsdata {
    display: flex;
    justify-content: center
}

body[data-theme=dark] .coinhistory .center img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 80%;
    z-index: -1
}

body[data-theme=dark] .coinhistory .morphisam:after {
    display: none
}

body[data-theme=dark] .coinhistory .coin_data {
    border: 1px solid hsla(0,0%,100%,.102)
}

body[data-theme=dark] .coinhistory .coin_data .inner_data .title p {
    color: #fff
}

body[data-theme=dark] .coinhistory .pagination li a {
    color: #000!important
}

body[data-theme=dark] .coinhistory .pagination li.pagination__link--active a {
    color: #fff!important
}

.coinhistory {
    margin-bottom: 50px
}

.coinhistory .center img {
    display: none
}

.coinhistory .morphisam {
    position: relative
}

body[data-theme=dark] .coinhistory .morphisam {
    background-color: hsla(0,0%,100%,.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 23px rgba(0,0,0,.15);
    border: 1.5px solid hsla(0,0%,100%,.06);
    border-radius: 8px;
    color: #fff;
    border-radius: 46px
}

@media only screen and (max-width: 575px) {
    .coinhistory .morphisam {
        padding:15px
    }
}

.coinhistory .morphisam .nav-link {
    color: var(--text-color);
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700
}

.coinhistory .morphisam .nav-link:focus,.coinhistory .morphisam .nav-link:hover {
    border-color: transparent!important
}

.coinhistory .morphisam .nav-tabs .nav-link.active {
    color: #000;
    background-color: rgba(9,0,41,.161);
    border-radius: 50px
}

.coinhistory .coin_data {
    padding: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,.102)
}

.coinhistory .coin_data .inner_data {
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media screen and (max-width: 767px) {
    .coinhistory .coin_data .inner_data {
        flex-direction:column;
        align-items: flex-start
    }
}

.coinhistory .coin_data .inner_data .title p {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize
}

.coinhistory .coin_data .inner_data .points {
    color: #000;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

@media screen and (max-width: 399px) {
    .coinhistory .coin_data .inner_data .points {
        flex-direction:column;
        gap: 15px;
        align-items: flex-start;
        padding: 10px 0
    }
}

.coinhistory .coin_data .inner_data .points .date {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: gray
}

.coinhistory .coin_data .inner_data .points p {
    margin-bottom: 0
}

.coinhistory .coin_data .inner_data .points .minus {
    background: #ff005c
}

.coinhistory .coin_data .inner_data .points .minus,.coinhistory .coin_data .inner_data .points .plus {
    color: #fff;
    border-radius: 50px;
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.coinhistory .coin_data .inner_data .points .plus {
    background: #00bf7a
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family)
}

.pagination li.pagination__link--active a {
    background-color: transparent;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700
}

.pagination li.pagination__link--active a:hover {
    color: #ff005c!important
}

.pagination li a {
    position: relative;
    display: block;
    padding: 0 6px;
    text-align: center;
    line-height: 45px;
    margin: 0 5px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    transition: all .5s ease-out 0s
}

.pagination li a:hover {
    color: #000!important
}

.pagination__link--disabled a {
    cursor: not-allowed;
    background-color: transparent!important;
    color: #c6c6c6!important
}

.pagination__link--disabled a:hover {
    color: #c6c6c6!important
}

.badges {
    margin-bottom: 50px
}

.badges .badges_data {
    text-align: center;
    margin-bottom: 22px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    padding-left: 20px;
    align-items: center
}

@media screen and (max-width: 575px) {
    .badges .badges_data {
        flex-direction:column;
        align-items: center;
        padding-left: 0
    }
}

.badges .badges_data .inner_image {
    position: relative
}

@media (max-width: 575px) {
    .badges .badges_data .inner_image {
        margin-top:-47px
    }
}

.badges .badges_data .inner_image .dummy_background_color:before {
    content: "⬢";
    color: var(--primary-color);
    font-size: 100px
}

.badges .badges_data .inner_image .dummy_background:before {
    content: "⬢";
    color: grey;
    font-size: 100px
}

.badges .badges_data .inner_image img {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    object-fit: contain;
    position: absolute;
    margin: auto
}

.badges .badges_data .inner_image .counter_badge {
    position: absolute;
    top: 60%;
    right: 29%;
    margin: auto;
    background-color: #fff;
    width: 30px;
    height: 30px;
    padding: 2px;
    border-radius: 50px;
    border: 1px solid grey
}

.badges .badges_data .badgesDataContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 8px
}

@media screen and (max-width: 575px) {
    .badges .badges_data .badgesDataContent {
        justify-content:center;
        align-items: center;
        margin-top: -24px
    }
}

.badges .badges_data .badgesDataContent span {
    color: var(--text-color);
    font-family: var(--font-family);
    text-align: start
}

@media screen and (max-width: 575px) {
    .badges .badges_data .badgesDataContent span {
        text-align:center
    }
}

.badges .badges_data .badgesDataContent .label {
    font-size: 18px;
    font-weight: 700
}

.badges .badges_data .badgesDataContent .note {
    font-size: 14px;
    font-weight: 400;
    word-break: break-word
}

.badges.battle_statistics_badges .questions_details_title {
    position: relative;
    z-index: 12
}

.badges.battle_statistics_badges .questions_details_inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width: 1399px) {
    .badges.battle_statistics_badges .questions_details_inner {
        position:relative;
        z-index: 1
    }
}

@media (max-width: 575px) {
    .badges.battle_statistics_badges .questions_details_inner {
        flex-direction:column
    }
}

.badges.battle_statistics_badges .badges_data .inner_image img {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.badges.battle_statistics_badges .badges_data .inner_image .dummy_background_color:before {
    font-size: 65px
}

.wallet .morphisam {
    position: relative
}

.wallet .morphisam .image img {
    width: 100%
}

.wallet .morphisam .walletContentWrapper {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.wallet .morphisam .request_data {
    background-color: #fff;
    border-radius: 16px;
    font-family: var(--font-family);
    padding-bottom: 20px
}

.wallet .morphisam .request_data .headline {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800;
    text-align: center
}

.wallet .morphisam .request_data .requestDataWrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 26px
}

@media screen and (max-width: 991px) {
    .wallet .morphisam .request_data .requestDataWrapper {
        flex-direction:column;
        gap: 30px
    }
}

.wallet .morphisam .request_data .requestDataWrapper .reedembleAmtDiv,.wallet .morphisam .request_data .requestDataWrapper .totCoinsDiv {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.wallet .morphisam .request_data .requestDataWrapper .totCoinsDiv img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    max-width: 100%
}

.wallet .morphisam .request_data .requestDataWrapper .totCoinsDiv .coins {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color)
}

.wallet .morphisam .request_data .requestDataWrapper .reedemBtnDiv .btn {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800;
    border-radius: 16px;
    padding: 14px 44px
}

.ant-modal-title {
    font-size: 22px;
    font-weight: 600
}

@media screen and (max-width: 991px) {
    .wallet .morphisam .request_data .requestDataWrapper .reedemBtnDiv .btn {
        margin-top:0
    }
}

@media screen and (max-width: 399px) {
    .wallet .morphisam .request_data .requestDataWrapper .reedemBtnDiv .btn {
        padding:6px
    }
}

.wallet .morphisam .request_data input[type=number]:before {
    content: "$";
    display: block
}

.wallet .morphisam .request_data .inner_symbol {
    position: relative
}

.wallet .morphisam .request_data .inner_symbol .currency_symbol {
    position: absolute;
    top: 8px;
    left: 10px
}

.wallet .morphisam .request_data .price {
    color: var(--text-color);
    font-weight: 600;
    outline: none;
    border: 1px solid transparent;
    text-align: center;
    border-radius: 5px;
    height: 40px
}

.wallet .morphisam .request_data .total_coin {
    color: var(--primary-color);
    font-weight: 600
}

.wallet .morphisam .request_data .total_coin img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    max-width: 100%
}

.wallet .morphisam .request_data .notes_data {
    color: var(--primary-color)
}

.wallet .morphisam .notesDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
    color: var(--text-color)
}

@media screen and (max-width: 767px) {
    .wallet .morphisam .notesDiv {
        flex-direction:column;
        align-items: center
    }
}

.wallet .morphisam .notesDiv ul {
    display: flex;
    flex-direction: column
}

.wallet .morphisam .transactionDiv {
    background-color: #fff;
    border-radius: 16px;
    padding-bottom: 30px
}

@media screen and (max-width: 767px) {
    .wallet .morphisam .transactionDiv {
        overflow:scroll
    }
}

.wallet .morphisam .transactionDiv .headline {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    padding: 20px 0
}

.wallet .morphisam .transactionDiv .transactionContentDiv {
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    margin-top: 50px
}

@media screen and (max-width: 767px) {
    .wallet .morphisam .transactionDiv .transactionContentDiv {
        width:max-content;
        gap: 30px;
        padding: 0 12px
    }
}

.wallet .morphisam .transactionDiv .transactionContentDiv .amt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px
}

.wallet .morphisam .transactionDiv .transactionContentDiv .amt span {
    color: var(--text-color);
    font-family: var(--font-family);
    font-weight: 600
}

.wallet .morphisam .transactionDiv .transactionContentDiv .amt .lightColorSpan {
    color: grey
}

.wallet .morphisam .transactionDiv .transactionContentDiv .amt .pending {
    background-color: rgba(9,0,41,.161);
    border-radius: 50px;
    padding: 2px 12px;
    font-size: 14px
}

.wallet .morphisam .transactionDiv .transactionContentDiv .amt .completed {
    background-color: #00bf7a;
    color: #fff
}

.wallet .morphisam .transactionDiv .transactionContentDiv .amt .line1:after {
    content: "";
    position: absolute;
    background-color: #d3d3d3;
    width: 100%;
    height: 1px;
    margin-left: -126px;
    width: 100vw;
    top: 30px
}

.wallet .morphisam .transactionDiv .nav-link {
    color: var(--text-color);
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700
}

.wallet .morphisam .transactionDiv .nav-tabs {
    border: none;
    padding: 0 100px
}

@media screen and (max-width: 1199px) {
    .wallet .morphisam .transactionDiv .nav-tabs {
        padding:0 80px
    }
}

@media screen and (max-width: 399px) {
    .wallet .morphisam .transactionDiv .nav-tabs {
        padding:0 20px
    }
}

.wallet .morphisam .transactionDiv .nav-tabs .nav-link.active {
    color: #000;
    background-color: rgba(9,0,41,.161);
    border-radius: 50px
}

.wallet .morphisam .total_earnings {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.wallet .morphisam .total_earnings p {
    padding: 15px 25px;
    border-radius: 10px;
    background-color: #e7e7e7;
    color: var(--primary-color)
}

.wallet .morphisam .reedem_request {
    background-color: #e7e7e7;
    padding: 20px;
    border-radius: 10px;
    margin: 20px
}

.wallet .morphisam .reedem_request .payment_adderess,.wallet .morphisam .reedem_request .redeem {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.wallet .morphisam .reedem_request .redeem_price {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px;
    border-radius: 10px
}

.wallet .morphisam .reedem_request p {
    color: var(--primary-color)
}

.wallet .morphisam .reedem_request .payment_status,.wallet .morphisam .reedem_request .payment_type {
    margin-bottom: 0
}

.wallet .morphisam .nav-fill .nav-item .nav-link {
    color: #000;
    font-weight: 400;
    letter-spacing: .5px
}

.wallet .morphisam .nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .5px
}

.wallet .morphisam .error_img {
    height: 80px
}

.input_data input {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background: #e1e5e8;
    transition: color .3s ease-out;
    outline: none;
    letter-spacing: 1px;
    color: #000
}

.input_data input::placeholder {
    text-align: center;
    text-transform: capitalize
}

.payment_icon {
    flex-wrap: wrap
}

.payment_icon,.payment_icon li {
    display: flex;
    align-items: center
}

.payment_icon li {
    list-style-type: none;
    margin-right: 20px;
    border-radius: 5px;
    padding: 0 25px;
    color: #fff;
    justify-content: center;
    cursor: pointer;
    margin-top: 5px;
    border: 2px solid gray
}

.payment_icon li i {
    font-size: 20px;
    margin-top: -5px
}

.payment_icon img {
    height: 20px;
    width: 45px
}

.pending-color .payment_status {
    color: var(--primary-color)!important
}

.completed-color .payment_status {
    color: green!important
}

.invalid-color .payment_status {
    color: red!important
}

.mobile_notification {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobile_notification .notification button {
    display: flex;
    align-items: center;
    height: 38px
}

.review-answer-data {
    word-break: break-word
}

.inner__questions .latex {
    height: 80px;
    overflow: auto;
    display: flex;
    align-items: center;
    word-break: break-word
}

.badges_name {
    white-space: nowrap;
    overflow: hidden;
    width: 100px;
    text-overflow: ellipsis
}

@media only screen and (max-width: 1199px) {
    .badges_name {
        white-space:nowrap;
        overflow: hidden;
        width: 80px;
        text-overflow: ellipsis
    }
}

@media only screen and (max-width: 768px) {
    .badges_name {
        white-space:nowrap;
        overflow: hidden;
        width: 100%;
        text-overflow: ellipsis
    }
}

.ant-modal .ant-modal-close {
    top: 25px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center
}

@media only screen and (max-width: 400px) {
    .ant-modal .ant-modal-close {
        top:2px;
        right: 7px
    }

    .payment_modal .ant-modal-close {
        top: 15px;
        right: 20px
    }
}

#share-buttons-container {
    margin-top: 25px
}

.review-answer-data img {
    height: 150px!important;
    object-fit: contain;
    width: 150px!important
}

.wallet .delete-request {
    padding: 12px 15px;
    margin: auto;
    display: flex
}

.statistics .badges .badges_data {
    padding-left: 0;
    display: block
}

.statistics .view_all {
    cursor: pointer
}

.selflearnig-play .inner__questions p {
    margin-bottom: 0
}

.today-exam .error_content {
    position: unset!important;
    margin-top: 100px
}

.review-latext-note {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

.inner__questions p,.review-latext-note p {
    margin-bottom: 0
}

.ant-modal .ant-modal-close:hover {
    background-color: transparent
}

.header-section .header-logo {
    padding: 20px 0
}

.Swal-confirm-buttons,.bg-theme,.inner_loader span {
    background-color: var(--primary-color)!important
}

.custom-svg svg,.custom-svg svg path {
    fill: var(--primary-color)!important
}

#recaptcha-container {
    position: relative;
    z-index: 1
}

.questions-scrollbar {
    height: 500px;
    overflow-y: scroll
}

.inner__questions tbody,.inner__questions td,.inner__questions tfoot,.inner__questions th,.inner__questions thead,.inner__questions tr,.question-text tbody,.question-text td,.question-text tfoot,.question-text th,.question-text thead,.question-text tr {
    border-width: inherit
}

.mjx-chtml {
    font-size: 140%!important
}

.main-form-profile {
    display: block;
    margin: auto;
    height: 100%
}

.custom_modal_notify.notification .ant-modal-close {
    top: 19px!important
}

.custom_modal_notify.notification .ant-modal-header {
    margin-top: 40px
}

.custom_modal_notify.notification .ant-modal-body {
    padding: 10px 10px 10px 0
}

.allgames a {
    color: var(--text-color)
}

.dropdown__language .ant-dropdown-link,.login__sign__form .profile_dropdown {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 12px;
    border-radius: 5px;
    font-weight: 400
}

.dropdown__language .ant-dropdown-link span,.login__sign__form .profile_dropdown span {
    margin-left: 5px;
    font-size: xx-small
}

.ant-dropdown {
    z-index: 99999999
}

.mean-nav .ant-dropdown-trigger {
    color: #fff!important
}

.exm_model_cont h1,p {
    margin: 0
}

.exm_model_cont h1 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center
}

.exm_model_cont .exm_date {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 14px
}

.exm_model_cont .exm_dep {
    text-align: center;
    margin-top: 4px;
    font-size: 18px;
    color: var(--text-color)
}

.exm_model_cont .obt_marks {
    background-color: #fff;
    padding: 10px 0;
    border-radius: 32px;
    margin-top: 9px
}

.exm_content .total_que {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #666;
    padding-bottom: 17px
}

.exm_content {
    padding: 15px 40px;
    background-color: #fff;
    margin-top: 23px;
    border-radius: 16px;
    color: var(--text-color)
}

.exm_content .total_que p {
    font-size: 18px
}

.exm_model_cont .correct_incorrect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px
}

.exm_model_cont .correctAnswers,.incorrectAnswers {
    display: flex;
    flex-direction: column;
    gap: 17px
}

.exm_model_cont .correct_incorrect .correctAnswers,.incorrectAnswers {
    text-align: center
}

.exm_model_cont .correct_incorrect {
    font-size: 16px
}

.correct_incorrect_wrapper .all_que_head {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.correct_incorrect_wrapper {
    margin-top: 30px
}

.all_que_head p {
    font-size: 18px;
    color: var(--text-color)
}

.correctIncorrect_card {
    background-color: #fff;
    margin-top: 20px;
    padding: 17px 40px 0;
    border-radius: 16px
}

.correct_space {
    justify-content: space-around
}

.correct_incorrect_separator {
    border-left: 1px solid #666;
    height: 62px;
    align-self: flex-start
}

.correctAnswers .correct_border {
    border: 5px solid #00bf7a;
    border-radius: 7px 7px 0 0
}

.incorrectAnswers .incorrct_border {
    border: 5px solid #ff005c;
    border-radius: 7px 7px 0 0
}

@media (max-width: 476px) {
    .correct_incorrect_separator {
        display:none
    }

    .exm_model_cont .correct_incorrect {
        flex-direction: column;
        row-gap: 17px
    }

    .exm_content {
        padding: 10px
    }

    .exm_content .total_que p {
        font-size: 16px
    }

    .exm_model_cont .correct_incorrect {
        font-size: 14px
    }

    .all_que_head p {
        font-size: 16px
    }
}

.join_room_code .custom-input-class {
    padding: 0;
    width: 60px!important;
    border: transparent;
    height: 60px
}

.join_room_code .otpbox {
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.join_room_code input {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    height: 60px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 55px
}

.hide_resend_otp {
    display: flex
}

.showCategoryNameOnJoinRoomS {
    display: flex;
    align-items: center;
    width: 212px;
    height: 24px
}

.list-unstyled span .textcolorwhite {
    color: #fff
}

.join_battel_font {
    font-weight: 900;
    font-size: medium
}

.line_bar_for_join_battel {
    rotate: 1turn;
    opacity: 16%;
    border: 1px solid #090029
}

.join_battel_header {
    width: 480px;
    font-weight: 800;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 12px
}

.join_battel_header,.join_battel_sub_header {
    height: 29px;
    line-height: 28.8px;
    text-align: center
}

.join_battel_sub_header {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px
}

@media only screen and (min-width: 1200px) {
    .levelNumbr {
        margin-top:-40px!important;
        margin-bottom: 40px
    }
}

.gap_bottom_and_top {
    row-gap: 1.5rem
}

.no_data_found_image {
    height: 300px;
    object-fit: contain;
    color: transparent;
    margin: 20px auto
}

@media only screen and (max-width: 391px) {
    .no_data_found_image {
        height:auto
    }
}

.audioQuestiondashboard .inner__questions .btn {
    align-items: center
}

.msg_btn {
    display: flex;
    flex-direction: column;
    padding: 5px;
    font-size: 15px
}

.emoji,.msg_btn {
    background-color: transparent;
    border: none
}

.emoji {
    margin: 5px
}

.sendMessageBtn {
    background-color: transparent
}

.msgBtnDiv {
    height: auto;
    display: flex;
    justify-content: center
}

.user_profile {
    position: relative
}

.msgPopUpWrapper {
    position: absolute!important;
    top: 5px!important;
    left: 50px!important
}

.user_one {
    position: relative
}

.msgPopUpWrapperOneVsOne {
    position: absolute!important;
    top: 0!important;
    left: 0!important;
    right: 0;
    margin: auto
}

.inner__headerdash,.opponent_image,.userDataWrapper {
    position: relative
}

.playBookmarkBtn {
    padding: 7px 20px!important;
    margin-top: 5px!important
}

.entry_fees_coins_battle {
    padding: 15px;
    height: 50px;
    width: auto;
    background-color: #eaeaeb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700
}

.battle_line_break {
    height: 2px;
    width: 100%;
    background-color: #eaeaeb;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000
}

.coins_selected {
    font-size: 15px;
    font-weight: 400;
    color: #000
}

.battle_cat_image_main_div {
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%
}

.battle_cat_image {
    display: flex;
    margin-right: 16px;
    margin-left: 5px;
    height: 50px;
    width: 45px
}

.battle_right_cat_div {
    display: flex;
    flex-direction: column
}

.battle_code_bottom_cat {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 17px
}

.inner_user_data .username {
    margin-bottom: 5px
}

.skeleton_title {
    margin-left: 75px;
    margin-top: 30px;
    padding-left: 25px
}

.skeleton_disc {
    left: 75px
}

.skeleton_disc,.skeleton_disc2 {
    display: flex;
    padding-left: 100px;
    top: 60px
}

.skeleton_disc2 {
    left: 190px
}

.skeleton_disc3 {
    display: flex;
    padding-left: 90px;
    top: 60px;
    left: 320px
}

.skeleton_div {
    margin-bottom: 25px;
    display: flex;
    border-radius: 15px;
    align-items: start;
    text-align: center;
    flex-direction: column;
    padding: 10px 5px;
    background: rgba(9,0,41,.059);
    position: relative;
    overflow: hidden;
    width: 98%
}

.skeleton_div:before {
    cursor: pointer;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color) 0 0 no-repeat padding-box!important;
    opacity: .09;
    filter: blur(25px);
    width: 25%;
    height: 100%;
    transition: left 2s
}

.loader_div,.room_loader {
    display: flex;
    justify-content: center;
    align-items: center
}

.room_loader {
    border: 7px solid #f3f3f3;
    border-top: 7px solid var(--primary-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@media only screen and (max-width: 480px) {
    .room_loader {
        border:4px solid #f3f3f3;
        border-top-color: #3498db;
        width: 25px;
        height: 25px
    }
}

.no_data_found_image {
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
    margin: auto
}

.Otp_Verification {
    padding: 30px 55px 0
}

.Otp_Verification_title {
    display: flex;
    align-items: start!important
}

.Otp_Verification_title .btn {
    border-radius: 5px;
    width: 100%;
    padding: 7px 48px;
    margin-top: 25px;
    font-size: 20px
}

.adj_width {
    width: 650px
}

@media (max-width: 767px) {
    .adj_width {
        width:auto
    }

    .Otp_Verification {
        padding: 15px
    }
}

.no_data_found {
    margin-top: 70px;
    margin-bottom: 40px
}

.group_battle_winner_screen {
    flex-direction: column
}

.group_battle_winner_screen .group_data {
    flex-direction: column!important
}

.group_battle_winner_screen .group_battle_winner_screen_looser {
    gap: 90px
}

.group_battle_winner_screen .group_battle_winner_screen_looser_group_data {
    gap: 30px
}

.group_battle_winner_screen .group_battle_winner_screen_looser_group_data .rightWrongAnsDiv .rightAns,.group_battle_winner_screen .group_battle_winner_screen_looser_group_data .rightWrongAnsDiv .wrongAns {
    width: 60px
}

.battel_join_carddd {
    display: flex;
    align-items: center;
    justify-content: flex-start!important;
    margin: 25px auto 0;
    flex-wrap: wrap;
    gap: 35px!important
}

.opponent_image .adj_size_for_creator {
    padding: 6px 20px!important
}

.category_title_line_header {
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 10px
}

.category_title_line_header .category_title_line {
    background-color: #a6a5a7;
    padding: 1px;
    width: 100%;
    opacity: 24%;
    height: 1px
}

.category_title_line_header .category_title_heading {
    color: #000!important;
    width: 100%;
    text-align: center
}

.category_title_line_header .sub_category_title_heading {
    color: #000!important;
    padding: 0 40px;
    width: 160px;
    width: 230px
}

@media screen and (max-width: 1199px) {
    .category_title_line_header .category_title_line {
        display:none
    }

    .category_title_line_header .category_title_heading {
        display: flex;
        padding: 0;
        width: 100%;
        text-align: center;
        justify-content: center
    }
}

.self_learn_attempt_question_popup {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-weight: 700
}

.self_learn_attempt_question_popup_checkbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 20px 10px
}

.winner_image_animation {
    height: 30px;
    width: 100%;
    object-fit: contain;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    position: absolute
}

.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover {
    border-color: transparent!important
}

.choose_us .head_title,.feature .head_title,.work-process-one .title {
    position: relative;
    width: max-content;
    margin: auto auto 20px
}

.choose_us .head_title h2 {
    margin-bottom: 100px
}

.choose_us .head_title h2,.feature .head_title h2,.work-process-one .title h2 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: auto;
    width: max-content
}

.line_footer_for_heading_at_home {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    background-color: yellowgreen;
    width: 70%;
    padding: 5px 0;
    margin-right: 100px;
    border-radius: 10px;
    margin-left: 14px
}

.choose_use_footer_white_line {
    background-color: #fff;
    height: 36px;
    width: 7px;
    rotate: 18deg;
    margin-right: 15px;
    position: absolute;
    right: 10%
}

.choose_use_footer_total_white_line {
    right: 28%;
    background-color: #0000;
    height: 35px;
    width: 86px;
    display: flex;
    z-index: 10;
    position: absolute
}

.choose_us .head_title .line2,.feature .head_title .line2,.work-process-one .title .line2 {
    right: 30%
}

.choose_us .head_title .line3,.feature .head_title .line3,.work-process-one .title .line3 {
    right: 50%
}

@media screen and (max-width: 575px) {
    .choose_us .head_title h2,.feature .head_title h2,.work-process-one .title h2 {
        width:auto
    }

    .line_footer_for_heading_at_home {
        margin-right: 15%;
        margin-left: 15%
    }

    .choose_use_footer_total_white_line {
        right: 15%
    }
}

.time_text_class {
    font-size: 16px!important;
    position: relative;
    top: -3px;
    padding-left: 5px
}

.bookmark_que_index {
    position: absolute;
    right: 30px;
    top: 15px;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 20px
}

.ant-drawer-right>.ant-drawer-content-wrapper {
    box-shadow: none;
    width: 0!important
}

.questionsDetials .ant-progress.ant-progress-circle .ant-progress-text {
    top: 45px
}

.btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

input[type=checkbox] {
    accent-color: #000;
    width: 20px;
    height: 20px
}

.question_skeleton .ant-skeleton-title {
    width: 95%!important;
    height: 50px!important;
    margin: auto
}

.question_skeleton .ant-skeleton-paragraph li:first-child {
    height: 150px;
    width: 150px;
    margin: auto;
    margin-block:15px}

.question_skeleton .ant-skeleton-paragraph li:nth-child(2) {
    height: 20px;
    width: 80%;
    margin: auto
}

.question_skeleton .ant-skeleton-paragraph li:nth-child(3) {
    height: 20px;
    width: 50%;
    margin: auto auto 30px
}

.question_skeleton .ant-skeleton-paragraph li:is(:nth-child(4),:nth-child(6)) {
    height: 50px;
    width: 30%;
    margin-left: 10%
}

.question_skeleton .ant-skeleton-paragraph li:is(:nth-child(5),:nth-child(7)) {
    height: 50px;
    width: 30%;
    float: right;
    margin-top: -50px!important;
    margin-right: 10%
}

Success!
.question_skeleton .ant-skeleton-paragraph li:nth-child(8) {
    height: 40px;
    width: 70%;
    margin: auto
}

.show_score_skeleton .ant-skeleton-title {
    height: 200px!important;
    width: 200px!important;
    border-radius: 50%!important;
    margin: auto
}

.show_score_skeleton .ant-skeleton-paragraph li:first-child {
    height: 30px;
    width: 40%;
    margin: auto;
    margin-block:15px}

.show_score_skeleton .ant-skeleton-paragraph li:nth-child(2) {
    height: 20px;
    width: 60%;
    margin: auto auto 40px
}

.show_score_skeleton .ant-skeleton-paragraph li:nth-child(3) {
    height: 50px;
    width: 50%;
    margin: auto
}

.show_score_skeleton .ant-skeleton-paragraph li:nth-child(4) {
    height: 50px;
    width: 60%;
    margin: auto
}

.show_score_skeleton .ant-skeleton-paragraph li:is(:nth-child(5),:nth-child(6),:nth-child(7),:nth-child(8)) {
    height: 0
}
