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

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

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

@-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

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

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

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

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

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75)
    }
    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25)
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75)
    }
    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25)
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

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

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

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

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

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

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

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

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

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

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

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

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

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

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

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

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

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

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

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

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

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

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

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

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

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

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

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

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

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

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

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

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

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

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

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

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

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

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

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

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

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

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

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    100% {
        opacity: 0
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

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

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        transform-origin: center top
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        transform-origin: center top
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(frontend/css/owl.video.play.html) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}
/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#bs5/dt-1.11.5
 *
 * Included libraries:
 *  DataTables 1.11.5
 */

table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.dt-control:before{height:1em;width:1em;margin-top:-9px;display:inline-block;color:white;border:.15em solid white;border-radius:1em;box-shadow:0 0 .2em #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:1em;content:"+";background-color:#31b131}table.dataTable tr.dt-hasChild td.dt-control:before{content:"-";background-color:#d33333}/*! Bootstrap 5 integration for DataTables
 *
 * ©2020 SpryMedia Ltd, all rights reserved.
 * License: MIT datatables.net/license/mit
 */table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:.85em}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable>thead>tr>th:active,table.dataTable>thead>tr>td:active{outline:none}table.dataTable>thead>tr>th:not(.sorting_disabled),table.dataTable>thead>tr>td:not(.sorting_disabled){padding-right:30px}table.dataTable>thead .sorting,table.dataTable>thead .sorting_asc,table.dataTable>thead .sorting_desc,table.dataTable>thead .sorting_asc_disabled,table.dataTable>thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable>thead .sorting:before,table.dataTable>thead .sorting:after,table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_asc:after,table.dataTable>thead .sorting_desc:before,table.dataTable>thead .sorting_desc:after,table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_asc_disabled:after,table.dataTable>thead .sorting_desc_disabled:before,table.dataTable>thead .sorting_desc_disabled:after{position:absolute;bottom:.5em;display:block;opacity:.3}table.dataTable>thead .sorting:before,table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_desc:before,table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_desc_disabled:before{right:1em;content:"↑"}table.dataTable>thead .sorting:after,table.dataTable>thead .sorting_asc:after,table.dataTable>thead .sorting_desc:after,table.dataTable>thead .sorting_asc_disabled:after,table.dataTable>thead .sorting_desc_disabled:after{right:.5em;content:"↓"}table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_desc:after{opacity:1}table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_desc_disabled:after{opacity:0}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody>table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody>table>thead .sorting:before,div.dataTables_scrollBody>table>thead .sorting_asc:before,div.dataTables_scrollBody>table>thead .sorting_desc:before,div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_desc:after{display:none}div.dataTables_scrollBody>table>tbody tr:first-child th,div.dataTables_scrollBody>table>tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:center !important}}table.dataTable.table-sm>thead>tr>th:not(.sorting_disabled){padding-right:20px}table.dataTable.table-sm .sorting:before,table.dataTable.table-sm .sorting_asc:before,table.dataTable.table-sm .sorting_desc:before{top:5px;right:.85em}table.dataTable.table-sm .sorting:after,table.dataTable.table-sm .sorting_asc:after,table.dataTable.table-sm .sorting_desc:after{top:5px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable thead tr:first-child th,table.table-bordered.dataTable thead tr:first-child td{border-top-width:1px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:first-child,table.table-bordered.dataTable th:first-child,table.table-bordered.dataTable td:first-child,table.table-bordered.dataTable td:first-child{border-left-width:1px}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:1px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-bottom-width:1px}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0}table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1){--bs-table-accent-bg: transparent}table.dataTable.table-striped>tbody>tr.odd{--bs-table-accent-bg: var(--bs-table-striped-bg)}


/*! tailwindcss v2.1.2 | MIT License | https://tailwindcss.com*//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.inset-0{top:0;right:0;bottom:0;left:0}.left-full{left:100%}.top-0{top:0}.left-1\/2{left:50%}.right-full{right:100%}.z-10{z-index:10}.mx-auto{margin-left:auto;margin-right:auto}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-ml-0\.5{margin-left:-.125rem}.mr-1\.5{margin-right:.375rem}.-ml-0{margin-left:0}.mr-1{margin-right:.25rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-5{margin-top:1.25rem}.mt-12{margin-top:3rem}.mt-32{margin-top:8rem}.mt-10{margin-top:2.5rem}.ml-2{margin-left:.5rem}.mt-2{margin-top:.5rem}.mb-4{margin-bottom:1rem}.mt-4{margin-top:1rem}.ml-6{margin-left:1.5rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.mt-6{margin-top:1.5rem}.mt-16{margin-top:4rem}.ml-3{margin-left:.75rem}.ml-1{margin-left:.25rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.hidden{display:none}.h-2{height:.5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-48{height:12rem}.h-10{height:2.5rem}.h-6{height:1.5rem}.h-12{height:3rem}.h-screen{height:100vh}.h-8{height:2rem}.h-40{height:10rem}.w-2{width:.5rem}.w-full{width:100%}.w-4{width:1rem}.w-5{width:1.25rem}.w-0{width:0}.w-10{width:2.5rem}.w-6{width:1.5rem}.w-12{width:3rem}.w-8{width:2rem}.w-auto{width:auto}.max-w-screen-xl{max-width:1280px}.max-w-xl{max-width:36rem}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.max-w-2xl{max-width:42rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.transform{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.origin-top{transform-origin:top}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-y-10{--tw-translate-y:-2.5rem}.-translate-y-8{--tw-translate-y:-2rem}.translate-y-2{--tw-translate-y:0.5rem}.translate-y-0{--tw-translate-y:0px}.translate-x-1\/2{--tw-translate-x:50%}.translate-y-12{--tw-translate-y:3rem}.translate-y-16{--tw-translate-y:4rem}.scale-75{--tw-scale-x:.75;--tw-scale-y:.75}@-webkit-keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}.animate-bounce{-webkit-animation:bounce 1s infinite;animation:bounce 1s infinite}.cursor-pointer{cursor:pointer}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1.5rem*var(--tw-space-x-reverse));margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem*var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem*var(--tw-space-y-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded{border-radius:.25rem}.border{border-width:1px}.border-t-4{border-top-width:4px}.border-l-4{border-left-width:4px}.border-b{border-bottom-width:1px}.border-transparent{border-color:transparent}.border-green-600{--tw-border-opacity:1;border-color:rgba(5,150,105,var(--tw-border-opacity))}.border-red-600{--tw-border-opacity:1;border-color:rgba(220,38,38,var(--tw-border-opacity))}.border-yellow-400{--tw-border-opacity:1;border-color:rgba(251,191,36,var(--tw-border-opacity))}.border-blue-600{--tw-border-opacity:1;border-color:rgba(37,99,235,var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-pink-100{--tw-bg-opacity:1;background-color:rgba(252,231,243,var(--tw-bg-opacity))}.bg-pink-600{--tw-bg-opacity:1;background-color:rgba(219,39,119,var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-yellow-400{--tw-bg-opacity:1;background-color:rgba(251,191,36,var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgba(254,226,226,var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgba(249,250,251,var(--tw-bg-opacity))}.bg-gradient-to-r{background-image:linear-gradient(90deg,var(--gradient-color-stops))}.from-green-600{--tw-gradient-from:#059669;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to, rgba(5, 150, 105, 0))}.from-red-600{--tw-gradient-from:#dc2626;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to, rgba(220, 38, 38, 0))}.via-green-500{--tw-gradient-stops:var(--tw-gradient-from),#10b981,var(--tw-gradient-to, rgba(16, 185, 129, 0))}.via-red-500{--tw-gradient-stops:var(--tw-gradient-from),#ef4444,var(--tw-gradient-to, rgba(239, 68, 68, 0))}.to-green-800{--tw-gradient-to:#065f46}.to-red-800{--tw-gradient-to:#991b1b}.p-4{padding:1rem}.p-2{padding:.5rem}.p-1{padding:.25rem}.px-4{padding-left:1rem;padding-right:1rem}.py-8{padding-top:2rem;padding-bottom:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.text-right{text-align:right}.text-base{font-size:1rem;line-height:1.5rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.font-medium{font-weight:500}.font-extrabold{font-weight:800}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-5{line-height:1.25rem}.leading-10{line-height:2.5rem}.leading-8{line-height:2rem}.leading-7{line-height:1.75rem}.leading-6{line-height:1.5rem}.tracking-tight{letter-spacing:-.025em}.text-gray-200{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.text-pink-800{--tw-text-opacity:1;color:rgba(157,23,77,var(--tw-text-opacity))}.text-pink-400{--tw-text-opacity:1;color:rgba(244,114,182,var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-gray-50{--tw-text-opacity:1;color:rgba(249,250,251,var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.text-pink-600{--tw-text-opacity:1;color:rgba(219,39,119,var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.text-gray-100{--tw-text-opacity:1;color:rgba(243,244,246,var(--tw-text-opacity))}.text-pink-500{--tw-text-opacity:1;color:rgba(236,72,153,var(--tw-text-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06)}.shadow,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05)}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-150,.transition{transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-100{transition-duration:.1s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.hover\:bg-pink-500:hover{--tw-bg-opacity:1;background-color:rgba(236,72,153,var(--tw-bg-opacity))}.hover\:text-gray-600:hover{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.focus\:text-gray-50:focus{--tw-text-opacity:1;color:rgba(249,250,251,var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}@media (min-width:640px){.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:mt-5{margin-top:1.25rem}.sm\:mt-8{margin-top:2rem}.sm\:flex{display:flex}.sm\:max-w-lg{max-width:32rem}.sm\:translate-y-0{--tw-translate-y:0px}.sm\:translate-x-2{--tw-translate-x:0.5rem}.sm\:translate-x-0{--tw-translate-x:0px}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y:1}.sm\:items-start{align-items:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-end{justify-content:flex-end}.sm\:p-6{padding:1.5rem}.sm\:py-12{padding-top:3rem;padding-bottom:3rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-center{text-align:center}.sm\:text-6xl{font-size:3.75rem;line-height:1}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:leading-none{line-height:1}.sm\:leading-9{line-height:2.25rem}.sm\:leading-10{line-height:2.5rem}}@media (min-width:768px){.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:grid{display:grid}.md\:max-w-2xl{max-width:42rem}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px*var(--tw-space-y-reverse))}.md\:py-20{padding-top:5rem;padding-bottom:5rem}.md\:py-4{padding-top:1rem;padding-bottom:1rem}.md\:px-10{padding-left:2.5rem;padding-right:2.5rem}.md\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:1024px){.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-start-2{grid-column-start:2}.lg\:col-start-1{grid-column-start:1}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:mt-0{margin-top:0}.lg\:block{display:block}.lg\:flex{display:flex}.lg\:grid{display:grid}.lg\:hidden{display:none}.lg\:max-w-none{max-width:none}.lg\:max-w-md{max-width:28rem}.lg\:max-w-screen-xl{max-width:1280px}.lg\:grid-flow-row-dense{grid-auto-flow:row dense}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:items-center{align-items:center}.lg\:items-start{align-items:flex-start}.lg\:justify-start{justify-content:flex-start}.lg\:gap-8{gap:2rem}.lg\:gap-12{gap:3rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-24{padding-top:6rem;padding-bottom:6rem}.lg\:text-left{text-align:left}.lg\:text-center{text-align:center}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:1280px){.xl\:py-24{padding-top:6rem;padding-bottom:6rem}.xl\:text-6xl{font-size:3.75rem;line-height:1}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}}
.notify {
    position: fixed;
    z-index: 99999;
}

.notify button {
    background-color: transparent;
    background-image: none;
    padding: 0;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

.notify svg {
    display: block;
    vertical-align: middle;
}




/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
/* ---------------------------------------

[Main Stylesheet]

Project:    	  Hyiprio - Advanced Hyip Investment Scheme with Ranking System
Version:    	  1.0
Primary Use:    Hyip Investment Website

------------------------------------------

[Table of contents]

1. Fonts
2. Reset Css
3. Global Settings
4. Section Styles
5. Colors
6. Margin and Padding
7. Background Overlay
8. Buttons Style
9. Preloader
10. ScrollUp Button

-------------------------------------------*/
/* Font Family Sofia Pro */
@font-face {
    font-family: sofia pro;
    src: url("frontend/fonts/SofiaProLightAz.eot");
    src: url("frontend/fonts/SofiaProLightAz.eot") format("embedded-opentype"), url("frontend/fonts/SofiaProLightAz.woff2") format("woff2"), url("frontend/fonts/SofiaProLightAz.woff") format("woff"), url("frontend/fonts/SofiaProLightAz.ttf") format("truetype"), url("frontend/fonts/SofiaProLightAz.svg#SofiaProLightAz") format("svg");
    font-weight: 300;
    font-style: normal;
}

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

@font-face {
    font-family: sofia pro;
    src: url("frontend/fonts/SofiaPro-Medium.eot");
    src: url("frontend/fonts/SofiaPro-Mediumd41d.eot?#iefix") format("embedded-opentype"), url("frontend/fonts/SofiaPro-Medium.woff2") format("woff2"), url("frontend/fonts/SofiaPro-Medium.woff") format("woff"), url("frontend/fonts/SofiaPro-Medium.ttf") format("truetype"), url("frontend/fonts/SofiaPro-Medium.svg#SofiaPro-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: sofia pro;
    src: url("frontend/fonts/SofiaProBoldAz.eot");
    src: url("frontend/fonts/SofiaProBoldAz.eot") format("embedded-opentype"), url("frontend/fonts/SofiaProBoldAz.woff2") format("woff2"), url("frontend/fonts/SofiaProBoldAz.woff") format("woff"), url("frontend/fonts/SofiaProBoldAz.ttf") format("truetype"), url("frontend/fonts/SofiaProBoldAz.svg#SofiaProBoldAz") format("svg");
    font-weight: 700;
    font-style: normal;
}

/* Font Family Sofia Pro End */
@font-face {
    font-family: "anticon";
    src: url("frontend/fonts/anticon.eot");
    src: url("frontend/fonts/anticond41dd41d.eot?#iefix") format("embedded-opentype"), url("frontend/fonts/anticon.woff") format("woff"), url("frontend/fonts/anticon.ttf") format("truetype"), url("frontend/fonts/anticon.svg#anticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: "anticon" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.anticon {
    line-height: 0;
    vertical-align: -0.125em;
}

.anticon:before {
    font-family: "anticon" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.anticon-account-book:before {
    content: "\61";
}

.anticon-alert:before {
    content: "\62";
}

.anticon-alibaba:before {
    content: "\63";
}

.anticon-align-center:before {
    content: "\64";
}

.anticon-align-left:before {
    content: "\65";
}

.anticon-align-right:before {
    content: "\66";
}

.anticon-alipay:before {
    content: "\67";
}

.anticon-alipay-circle:before {
    content: "\68";
}

.anticon-aliwangwang:before {
    content: "\69";
}

.anticon-aliyun:before {
    content: "\6a";
}

.anticon-amazon:before {
    content: "\6b";
}

.anticon-android:before {
    content: "\6c";
}

.anticon-ant-cloud:before {
    content: "\6d";
}

.anticon-ant-design:before {
    content: "\6e";
}

.anticon-apartment:before {
    content: "\6f";
}

.anticon-api:before {
    content: "\70";
}

.anticon-apple:before {
    content: "\71";
}

.anticon-appstore:before {
    content: "\72";
}

.anticon-area-chart:before {
    content: "\73";
}

.anticon-arrow-down:before {
    content: "\74";
}

.anticon-arrow-left:before {
    content: "\75";
}

.anticon-arrow-right:before {
    content: "\76";
}

.anticon-arrow-up:before {
    content: "\77";
}

.anticon-arrows-alt:before {
    content: "\78";
}

.anticon-audio:before {
    content: "\79";
}

.anticon-audit:before {
    content: "\7a";
}

.anticon-backward:before {
    content: "\41";
}

.anticon-bank:before {
    content: "\42";
}

.anticon-bar-chart:before {
    content: "\43";
}

.anticon-barcode:before {
    content: "\44";
}

.anticon-bars:before {
    content: "\45";
}

.anticon-behance:before {
    content: "\46";
}

.anticon-behance-square:before {
    content: "\47";
}

.anticon-bell:before {
    content: "\48";
}

.anticon-bg-colors:before {
    content: "\49";
}

.anticon-block:before {
    content: "\4a";
}

.anticon-bold:before {
    content: "\4b";
}

.anticon-book:before {
    content: "\4c";
}

.anticon-border:before {
    content: "\4d";
}

.anticon-border-bottom:before {
    content: "\4e";
}

.anticon-border-horizontal:before {
    content: "\4f";
}

.anticon-border-inner:before {
    content: "\50";
}

.anticon-border-left:before {
    content: "\51";
}

.anticon-border-outer:before {
    content: "\52";
}

.anticon-border-right:before {
    content: "\53";
}

.anticon-border-top:before {
    content: "\54";
}

.anticon-border-verticle:before {
    content: "\55";
}

.anticon-box-plot:before {
    content: "\56";
}

.anticon-branches:before {
    content: "\57";
}

.anticon-build:before {
    content: "\58";
}

.anticon-bulb:before {
    content: "\59";
}

.anticon-calculator:before {
    content: "\5a";
}

.anticon-calendar:before {
    content: "\30";
}

.anticon-camera:before {
    content: "\31";
}

.anticon-car:before {
    content: "\32";
}

.anticon-caret-down:before {
    content: "\33";
}

.anticon-caret-left:before {
    content: "\34";
}

.anticon-caret-right:before {
    content: "\35";
}

.anticon-caret-up:before {
    content: "\36";
}

.anticon-carry-out:before {
    content: "\37";
}

.anticon-check:before {
    content: "\38";
}

.anticon-check-circle:before {
    content: "\39";
}

.anticon-check-square:before {
    content: "\21";
}

.anticon-chrome:before {
    content: "\22";
}

.anticon-ci:before {
    content: "\23";
}

.anticon-clock-circle:before {
    content: "\24";
}

.anticon-close:before {
    content: "\25";
}

.anticon-close-circle:before {
    content: "\26";
}

.anticon-close-square:before {
    content: "\27";
}

.anticon-cloud:before {
    content: "\28";
}

.anticon-cloud-download:before {
    content: "\29";
}

.anticon-cloud-server:before {
    content: "\2a";
}

.anticon-cloud-sync:before {
    content: "\2b";
}

.anticon-cloud-upload:before {
    content: "\2c";
}

.anticon-cluster:before {
    content: "\2d";
}

.anticon-code:before {
    content: "\2e";
}

.anticon-code-sandbox:before {
    content: "\2f";
}

.anticon-codepen:before {
    content: "\3a";
}

.anticon-codepen-circle:before {
    content: "\3b";
}

.anticon-coffee:before {
    content: "\3c";
}

.anticon-colum-height:before {
    content: "\3d";
}

.anticon-column-width:before {
    content: "\3e";
}

.anticon-compass:before {
    content: "\3f";
}

.anticon-contacts:before {
    content: "\40";
}

.anticon-container:before {
    content: "\5b";
}

.anticon-control:before {
    content: "\5d";
}

.anticon-copy:before {
    content: "\5e";
}

.anticon-copyright:before {
    content: "\5f";
}

.anticon-credit-card:before {
    content: "\60";
}

.anticon-crown:before {
    content: "\7b";
}

.anticon-customer-service:before {
    content: "\7c";
}

.anticon-dash:before {
    content: "\7d";
}

.anticon-dashboard:before {
    content: "\7e";
}

.anticon-database:before {
    content: "\5c";
}

.anticon-delete:before {
    content: "\e000";
}

.anticon-deployment-unit:before {
    content: "\e001";
}

.anticon-desktop:before {
    content: "\e002";
}

.anticon-diff:before {
    content: "\e003";
}

.anticon-dingding:before {
    content: "\e004";
}

.anticon-disconnect:before {
    content: "\e005";
}

.anticon-dislike:before {
    content: "\e006";
}

.anticon-dollar:before {
    content: "\e007";
}

.anticon-dot-chart:before {
    content: "\e008";
}

.anticon-double-left:before {
    content: "\e009";
}

.anticon-double-right:before {
    content: "\e00a";
}

.anticon-down:before {
    content: "\e00b";
}

.anticon-down-circle:before {
    content: "\e00c";
}

.anticon-down-square:before {
    content: "\e00d";
}

.anticon-download:before {
    content: "\e00e";
}

.anticon-drag:before {
    content: "\e00f";
}

.anticon-dribbble:before {
    content: "\e010";
}

.anticon-dribbble-square:before {
    content: "\e011";
}

.anticon-dropbox:before {
    content: "\e012";
}

.anticon-edit:before {
    content: "\e013";
}

.anticon-ellipsis:before {
    content: "\e014";
}

.anticon-enter:before {
    content: "\e015";
}

.anticon-environment:before {
    content: "\e016";
}

.anticon-euro:before {
    content: "\e017";
}

.anticon-exception:before {
    content: "\e018";
}

.anticon-exclamation:before {
    content: "\e019";
}

.anticon-exclamation-circle:before {
    content: "\e01a";
}

.anticon-experiment:before {
    content: "\e01b";
}

.anticon-export:before {
    content: "\e01c";
}

.anticon-eye:before {
    content: "\e01d";
}

.anticon-eye-invisible:before {
    content: "\e01e";
}

.anticon-facebook:before {
    content: "\e01f";
}

.anticon-fall:before {
    content: "\e020";
}

.anticon-fast-backward:before {
    content: "\e021";
}

.anticon-fast-forward:before {
    content: "\e022";
}

.anticon-file:before {
    content: "\e023";
}

.anticon-file-add:before {
    content: "\e024";
}

.anticon-file-done:before {
    content: "\e025";
}

.anticon-file-excel:before {
    content: "\e026";
}

.anticon-file-exclamation:before {
    content: "\e027";
}

.anticon-file-image:before {
    content: "\e028";
}

.anticon-file-jpg:before {
    content: "\e029";
}

.anticon-file-markdown:before {
    content: "\e02a";
}

.anticon-file-pdf:before {
    content: "\e02b";
}

.anticon-file-ppt:before {
    content: "\e02c";
}

.anticon-file-protect:before {
    content: "\e02d";
}

.anticon-file-search:before {
    content: "\e02e";
}

.anticon-file-sync:before {
    content: "\e02f";
}

.anticon-file-text:before {
    content: "\e030";
}

.anticon-file-unknown:before {
    content: "\e031";
}

.anticon-file-word:before {
    content: "\e032";
}

.anticon-file-zip:before {
    content: "\e033";
}

.anticon-filter:before {
    content: "\e034";
}

.anticon-fire:before {
    content: "\e035";
}

.anticon-flag:before {
    content: "\e036";
}

.anticon-folder:before {
    content: "\e037";
}

.anticon-folder-add:before {
    content: "\e038";
}

.anticon-folder-open:before {
    content: "\e039";
}

.anticon-font-colors:before {
    content: "\e03a";
}

.anticon-font-size:before {
    content: "\e03b";
}

.anticon-fork:before {
    content: "\e03c";
}

.anticon-form:before {
    content: "\e03d";
}

.anticon-forward:before {
    content: "\e03e";
}

.anticon-frown:before {
    content: "\e03f";
}

.anticon-fullscreen:before {
    content: "\e040";
}

.anticon-fullscreen-exit:before {
    content: "\e041";
}

.anticon-fund:before {
    content: "\e042";
}

.anticon-funnel-plot:before {
    content: "\e043";
}

.anticon-gateway:before {
    content: "\e044";
}

.anticon-gift:before {
    content: "\e045";
}

.anticon-github:before {
    content: "\e046";
}

.anticon-gitlab:before {
    content: "\e047";
}

.anticon-global:before {
    content: "\e048";
}

.anticon-gold:before {
    content: "\e049";
}

.anticon-google:before {
    content: "\e04a";
}

.anticon-google-plus:before {
    content: "\e04b";
}

.anticon-hdd:before {
    content: "\e04c";
}

.anticon-heart:before {
    content: "\e04d";
}

.anticon-heat-map:before {
    content: "\e04e";
}

.anticon-highlight:before {
    content: "\e04f";
}

.anticon-home:before {
    content: "\e050";
}

.anticon-hourglass:before {
    content: "\e051";
}

.anticon-html5:before {
    content: "\e052";
}

.anticon-idcard:before {
    content: "\e053";
}

.anticon-ie:before {
    content: "\e054";
}

.anticon-import:before {
    content: "\e055";
}

.anticon-inbox:before {
    content: "\e056";
}

.anticon-info:before {
    content: "\e057";
}

.anticon-info-circle:before {
    content: "\e058";
}

.anticon-instagram:before {
    content: "\e059";
}

.anticon-insurance:before {
    content: "\e05a";
}

.anticon-interation:before {
    content: "\e05b";
}

.anticon-issues-close:before {
    content: "\e05c";
}

.anticon-italic:before {
    content: "\e05d";
}

.anticon-key:before {
    content: "\e05e";
}

.anticon-laptop:before {
    content: "\e05f";
}

.anticon-layout:before {
    content: "\e060";
}

.anticon-left:before {
    content: "\e061";
}

.anticon-left-circle:before {
    content: "\e062";
}

.anticon-left-square:before {
    content: "\e063";
}

.anticon-like:before {
    content: "\e064";
}

.anticon-line:before {
    content: "\e065";
}

.anticon-line-chart:before {
    content: "\e066";
}

.anticon-line-height:before {
    content: "\e067";
}

.anticon-link:before {
    content: "\e068";
}

.anticon-linkedin:before {
    content: "\e069";
}

.anticon-loading:before {
    content: "\e06a";
    display: inline-block;
    animation: 1s linear infinite loadingCircle;
}

.anticon-loading-3-quarters:before {
    content: "\e06b";
}

.anticon-lock:before {
    content: "\e06c";
}

.anticon-login:before {
    content: "\e06d";
}

.anticon-logout:before {
    content: "\e06e";
}

.anticon-mail:before {
    content: "\e06f";
}

.anticon-man:before {
    content: "\e070";
}

.anticon-medicine-box:before {
    content: "\e071";
}

.anticon-medium:before {
    content: "\e072";
}

.anticon-medium-workmark:before {
    content: "\e073";
}

.anticon-meh:before {
    content: "\e074";
}

.anticon-menu:before {
    content: "\e075";
}

.anticon-menu-fold:before {
    content: "\e076";
}

.anticon-menu-unfold:before {
    content: "\e077";
}

.anticon-message:before {
    content: "\e078";
}

.anticon-minus:before {
    content: "\e079";
}

.anticon-minus-circle:before {
    content: "\e07a";
}

.anticon-minus-square:before {
    content: "\e07b";
}

.anticon-mobile:before {
    content: "\e07c";
}

.anticon-money-collect:before {
    content: "\e07d";
}

.anticon-monitor:before {
    content: "\e07e";
}

.anticon-mr:before {
    content: "\e07f";
}

.anticon-notification:before {
    content: "\e080";
}

.anticon-number:before {
    content: "\e081";
}

.anticon-ordered-list:before {
    content: "\e082";
}

.anticon-paper-clip:before {
    content: "\e083";
}

.anticon-pause:before {
    content: "\e084";
}

.anticon-pause-circle:before {
    content: "\e085";
}

.anticon-pay-circle:before {
    content: "\e086";
}

.anticon-percentage:before {
    content: "\e087";
}

.anticon-phone:before {
    content: "\e088";
}

.anticon-pic-center:before {
    content: "\e089";
}

.anticon-pic-left:before {
    content: "\e08a";
}

.anticon-pic-right:before {
    content: "\e08b";
}

.anticon-picture:before {
    content: "\e08c";
}

.anticon-pie-chart:before {
    content: "\e08d";
}

.anticon-play-circle:before {
    content: "\e08e";
}

.anticon-play-square:before {
    content: "\e08f";
}

.anticon-plus:before {
    content: "\e090";
}

.anticon-plus-circle:before {
    content: "\e091";
}

.anticon-plus-square:before {
    content: "\e092";
}

.anticon-pound:before {
    content: "\e093";
}

.anticon-poweroff:before {
    content: "\e094";
}

.anticon-printer:before {
    content: "\e095";
}

.anticon-profile:before {
    content: "\e096";
}

.anticon-project:before {
    content: "\e097";
}

.anticon-property-safety:before {
    content: "\e098";
}

.anticon-pushpin:before {
    content: "\e099";
}

.anticon-qq:before {
    content: "\e09a";
}

.anticon-qrcode:before {
    content: "\e09b";
}

.anticon-question:before {
    content: "\e09c";
}

.anticon-question-circle:before {
    content: "\e09d";
}

.anticon-radar-chart:before {
    content: "\e09e";
}

.anticon-radius-bottomleft:before {
    content: "\e09f";
}

.anticon-radius-bottomright:before {
    content: "\e0a0";
}

.anticon-radius-setting:before {
    content: "\e0a1";
}

.anticon-radius-upleft:before {
    content: "\e0a2";
}

.anticon-radius-upright:before {
    content: "\e0a3";
}

.anticon-read:before {
    content: "\e0a4";
}

.anticon-reconciliation:before {
    content: "\e0a5";
}

.anticon-red-envelope:before {
    content: "\e0a6";
}

.anticon-reddit:before {
    content: "\e0a7";
}

.anticon-redo:before {
    content: "\e0a8";
}

.anticon-reload:before {
    content: "\e0a9";
}

.anticon-reload-time:before {
    content: "\e0aa";
}

.anticon-rest:before {
    content: "\e0ab";
}

.anticon-retweet:before {
    content: "\e0ac";
}

.anticon-right:before {
    content: "\e0ad";
}

.anticon-right-circle:before {
    content: "\e0ae";
}

.anticon-right-square:before {
    content: "\e0af";
}

.anticon-rise:before {
    content: "\e0b0";
}

.anticon-robot:before {
    content: "\e0b1";
}

.anticon-rocket:before {
    content: "\e0b2";
}

.anticon-rollback:before {
    content: "\e0b3";
}

.anticon-safety:before {
    content: "\e0b4";
}

.anticon-safety-certificate:before {
    content: "\e0b5";
}

.anticon-save:before {
    content: "\e0b6";
}

.anticon-scan:before {
    content: "\e0b7";
}

.anticon-schedule:before {
    content: "\e0b8";
}

.anticon-scissor:before {
    content: "\e0b9";
}

.anticon-search:before {
    content: "\e0ba";
}

.anticon-security-scan:before {
    content: "\e0bb";
}

.anticon-select:before {
    content: "\e0bc";
}

.anticon-setting:before {
    content: "\e0bd";
}

.anticon-shake:before {
    content: "\e0be";
}

.anticon-share-alt:before {
    content: "\e0bf";
}

.anticon-shop:before {
    content: "\e0c0";
}

.anticon-shopping:before {
    content: "\e0c1";
}

.anticon-shopping-cart:before {
    content: "\e0c2";
}

.anticon-shrink:before {
    content: "\e0c3";
}

.anticon-sketch:before {
    content: "\e0c4";
}

.anticon-skin:before {
    content: "\e0c5";
}

.anticon-skype:before {
    content: "\e0c6";
}

.anticon-slack:before {
    content: "\e0c7";
}

.anticon-slack-square:before {
    content: "\e0c8";
}

.anticon-sliders:before {
    content: "\e0c9";
}

.anticon-small-dash:before {
    content: "\e0ca";
}

.anticon-smile:before {
    content: "\e0cb";
}

.anticon-snippets:before {
    content: "\e0cc";
}

.anticon-solution:before {
    content: "\e0cd";
}

.anticon-sort-ascending:before {
    content: "\e0ce";
}

.anticon-sort-descending:before {
    content: "\e0cf";
}

.anticon-sound:before {
    content: "\e0d0";
}

.anticon-star:before {
    content: "\e0d1";
}

.anticon-step-backward:before {
    content: "\e0d2";
}

.anticon-step-forward:before {
    content: "\e0d3";
}

.anticon-stock:before {
    content: "\e0d4";
}

.anticon-stop:before {
    content: "\e0d5";
}

.anticon-strikethrough:before {
    content: "\e0d6";
}

.anticon-swap:before {
    content: "\e0d7";
}

.anticon-swap-left:before {
    content: "\e0d8";
}

.anticon-swap-right:before {
    content: "\e0d9";
}

.anticon-switcher:before {
    content: "\e0da";
}

.anticon-sync:before {
    content: "\e0db";
}

.anticon-table:before {
    content: "\e0dc";
}

.anticon-tablet:before {
    content: "\e0dd";
}

.anticon-tag:before {
    content: "\e0de";
}

.anticon-tags:before {
    content: "\e0df";
}

.anticon-taobao:before {
    content: "\e0e0";
}

.anticon-taobao-circle:before {
    content: "\e0e1";
}

.anticon-team:before {
    content: "\e0e2";
}

.anticon-thunderbolt:before {
    content: "\e0e3";
}

.anticon-to-top:before {
    content: "\e0e4";
}

.anticon-tool:before {
    content: "\e0e5";
}

.anticon-trademark:before {
    content: "\e0e6";
}

.anticon-transaction:before {
    content: "\e0e7";
}

.anticon-trophy:before {
    content: "\e0e8";
}

.anticon-twitter:before {
    content: "\e0e9";
}

.anticon-underline:before {
    content: "\e0ea";
}

.anticon-undo:before {
    content: "\e0eb";
}

.anticon-unlock:before {
    content: "\e0ec";
}

.anticon-unordered-list:before {
    content: "\e0ed";
}

.anticon-up:before {
    content: "\e0ee";
}

.anticon-up-circle:before {
    content: "\e0ef";
}

.anticon-up-square:before {
    content: "\e0f0";
}

.anticon-upload:before {
    content: "\e0f1";
}

.anticon-usb:before {
    content: "\e0f2";
}

.anticon-user:before {
    content: "\e0f3";
}

.anticon-user-add:before {
    content: "\e0f4";
}

.anticon-user-delete:before {
    content: "\e0f5";
}

.anticon-usergroup-add:before {
    content: "\e0f6";
}

.anticon-usergroup-delete:before {
    content: "\e0f7";
}

.anticon-vertical-align-bottom:before {
    content: "\e0f8";
}

.anticon-vertical-align-middle:before {
    content: "\e0f9";
}

.anticon-vertical-align-top:before {
    content: "\e0fa";
}

.anticon-vertical-left:before {
    content: "\e0fb";
}

.anticon-vertical-right:before {
    content: "\e0fc";
}

.anticon-video-camera:before {
    content: "\e0fd";
}

.anticon-wallet:before {
    content: "\e0fe";
}

.anticon-warning:before {
    content: "\e0ff";
}

.anticon-wechat:before {
    content: "\e100";
}

.anticon-weibo:before {
    content: "\e101";
}

.anticon-weibo-circle:before {
    content: "\e102";
}

.anticon-weibo-square:before {
    content: "\e103";
}

.anticon-wifi:before {
    content: "\e104";
}

.anticon-windows:before {
    content: "\e105";
}

.anticon-woman:before {
    content: "\e106";
}

.anticon-yahoo:before {
    content: "\e107";
}

.anticon-youtube:before {
    content: "\e108";
}

.anticon-yuque:before {
    content: "\e109";
}

.anticon-zhihu:before {
    content: "\e10a";
}

.anticon-zoom-in:before {
    content: "\e10b";
}

.anticon-zoom-out:before {
    content: "\e10c";
}

.anticon-info-o:before {
    content: "\e10d";
}

.anticon-exclamation-o:before {
    content: "\e10e";
}

.anticon-close-o:before {
    content: "\e10f";
}

.anticon-check-o:before {
    content: "\e110";
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: sofia pro;
    font-weight: 400;
    color: rgba(0, 18, 25, 0.7);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

input {
    outline: none;
}

button {
    border: 0;
    outline: none;
    transition: 0.3s;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sofia pro;
    font-weight: 500;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

/* colors */
.black-color {
    color: #001219;
}

.blue-color {
    color: #003049;
}

.primary-color {
    color: #e73667;
}

.white-color {
    color: #ffffff;
}

.yellow-color {
    color: #ffc300;
}

.green-color {
    color: #2a9d8f;
}

.red-color {
    color: #ef476f;
}

/* Backgrounds */
.black-bg {
    background: #001219;
}

.blue-bg {
    background: #003049;
}

.primary-bg {
    background: #e73667;
}

.gray-bg {
    background: #d2d3d8;
}

.light-blue-bg {
    background: bisque;
}

.dark-blue-bg {
    background: #020d24;
}

.site-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.site-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #003049;
    content: "";
    z-index: -1;
    opacity: 0.6;
}

.primary-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.primary-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #e73667;
    content: "";
    z-index: -1;
    opacity: 0.3;
}

.grad-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.grad-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(95deg, #059dff 15%, #6549d5 45%, #e33fa1 75%, #fb5343) 95%/200% 100%;
    content: "";
    z-index: -1;
    opacity: 0.3;
}

/* Section Styles */
.section-style {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-style-2 {
    padding: 80px 0 50px 0;
    position: relative;
    z-index: 1;
}

.section-style-3 {
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 1;
}

.section-gap {
    padding: 30px 0 30px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #2a9d8f;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-head {
    padding: 170px 0 80px 0;
}

.page-head h2 {
    margin-bottom: 0;
    font-size: 34px;
    color: #ffffff;
}

.site-btn {
    display: inline-block;
    padding: 13px 27px;
    border-radius: 50px;
    color: #001219;
    background: #ffffff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0px 0px 2px #00304966;
}

.site-btn:hover {
    background: #e73667;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
}

.site-btn:focus {
    background: #e73667;
    color: #ffffff;
    border: 0;
    box-shadow: none;
}

.site-btn:active {
    background: #e73667;
    color: #ffffff;
    border: 0;
    box-shadow: none;
}

.site-btn i {
    margin-right: 4px;
}

.site-btn-sm {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 50px;
    color: #001219;
    background: #ffffff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.site-btn-sm:hover {
    background: #e73667;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
}

.site-btn-sm i {
    margin-right: 5px;
}

.site-btn-round {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    background: #e73667;
}

.site-btn-round:hover {
    background: #e73667;
    color: #ffffff;
}

.primary-btn {
    color: #ffffff;
    background: #e73667;
}

.primary-btn:hover {
    background: #ffffff;
    color: #001219;
}

.blue-btn {
    background: #e73667;
    color: #ffffff;
}

.blue-btn:hover {
    background: #003049;
    color: #ffffff;
}

.grad-btn {
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    color: #ffffff;
}

.red-btn {
    background: #ef476f;
    color: #ffffff;
}

.red-btn:hover {
    background: #003049;
    color: #ffffff;
}

.btn-link {
    color: rgba(0, 18, 25, 0.7);
    position: relative;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-link::after {
    position: absolute;
    content: "";
    height: 2px;
    background: #e73667;
    width: 0px;
    transition: 0.3s;
    left: 0;
    bottom: 0px;
}

.btn-link:hover {
    color: #e73667;
}

.btn-link:hover::after {
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #e73667;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #003049;
}

/* toTop Button */
#scrollUp {
    background: rgba(231, 54, 103, 0.3);
    color: #e73667;
    right: 30px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
}

#scrollUp:hover {
    background: #e73667;
    color: #ffffff;
}

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

.centered {
    text-align: center;
}

.coin-left {
    position: relative;
}

.coin-left::before {
    height: 225px;
    width: 200px;
    position: absolute;
    content: "";
    left: 100px;
    top: 100px;
    background: url("frontend/images/coin.html") repeat;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .coin-left::before {
        display: none;
    }
}

.coin-right {
    position: relative;
}

.coin-right::after {
    height: 225px;
    width: 200px;
    position: absolute;
    content: "";
    right: 100px;
    top: 100px;
    background: url("frontend/images/coin.html") repeat;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .coin-right::after {
        display: none;
    }
}

/* Custom css for Dark dropdown */
.dropdown-menu-dark {
    background: #001219;
    padding-top: 5px;
    padding-bottom: 0;
    border-radius: 4px;
    border: 0;
    min-width: 200px;
}

.dropdown-menu-dark li {
    margin-top: 10px;
}

.dropdown-menu-dark li .dropdown-item {
    padding: 8px 15px;
    border-radius: 4px;
}

.dropdown-menu-dark li .dropdown-item i {
    margin-right: 5px;
}

.dropdown-menu-dark li .dropdown-item:hover {
    background: #e73667;
    color: #ffffff;
}

/* Site Card */
.site-card {
    box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.4);
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 4px;
}

.site-card .site-card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.site-card .site-card-header .title {
    color: #003049;
    margin-bottom: 0;
    font-size: 18px;
    display: inline-block;
}

@media (max-width: 500px) {
    .site-card .site-card-header .title {
        font-size: 16px;
    }
}

.site-card .site-card-header .title-small {
    color: #003049;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
}

.site-card .site-card-header .card-header-links .card-header-link {
    display: inline-block;
    background: #e73667;
    border-radius: 3px;
    padding: 8px 18px;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 10px;
}

.site-card .site-card-header .card-header-links .card-header-link:hover {
    background: #003049;
}

.site-card .site-card-header .search {
    font-size: 14px;
}

.site-card .site-card-header .search span {
    margin-right: 5px;
}

.site-card .site-card-header .search input {
    width: 200px;
    height: 27px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 5px;
    background: transparent;
}

.site-card .site-card-body {
    padding: 20px;
}

.site-card .site-card-body .body-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.site-card .site-card-body .paragraph {
    font-size: 14px;
}

@media (max-width: 400px) {
    .site-card .site-card-body {
        padding: 12px;
    }
}

/* site-alert */
.site-alert {
    color: rgba(0, 18, 25, 0.6);
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 2px #5468ff66;
    margin-bottom: 30px;
    background: rgba(255, 195, 0, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
}

.site-alert .content {
    font-size: 18px;
}

.site-alert .content .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 195, 0, 0.5);
    color: #001219;
    margin-right: 8px;
    display: inline-block;
}

/* Site Badge */
.site-badge {
    padding: 2px 10px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.site-badge.badge-success {
    background: #2a9d8f;
}

.site-badge.badge-failed {
    background: #ef476f;
}

.site-badge.badge-pending {
    background: #ffc300;
    color: rgba(0, 18, 25, 0.7);
}

.input-info-text {
    font-size: 12px;
    color: rgba(239, 71, 111, 0.7);
    margin-top: -18px;
}

/* Image Preview */
.wrap-custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 150px;
    text-align: center;
    border: 1px dashed #d2d3d8;
    border-radius: 8px;
}

.wrap-custom-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    overflow: hidden;
    opacity: 0;
}

.wrap-custom-file label {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s;
}

.wrap-custom-file label span {
    display: block;
    color: #003049;
    font-size: 14px;
    transition: color 0.4s;
}

.wrap-custom-file label .upload-icon {
    width: 40px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.wrap-custom-file label.file-ok {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.wrap-custom-file label.file-ok span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: rgba(231, 54, 103, 0.5);
}

.wrap-custom-file label.file-ok .upload-icon {
    display: none;
}

.wrap-custom-file label .recomended {
    color: rgba(42, 157, 143, 0.6);
    font-size: 14px;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 0;
    left: 50%;
}

/* bat-left */
.bat-left {
    height: 166px;
    width: 300px;
    position: absolute;
    left: 100px;
    top: 100px;
    z-index: -1;
    opacity: 0.5 !important;
}

@media (max-width: 767px) {
    .bat-left {
        right: 0;
    }
}

@media (max-width: 575px) {
    .bat-left {
        display: none;
    }
}

/* bat-right */
.bat-right {
    height: 166px;
    width: 300px;
    position: absolute;
    right: 100px;
    top: 100px;
    z-index: -1;
    opacity: 0.5 !important;
}

@media (max-width: 767px) {
    .bat-right {
        right: 0;
    }
}

@media (max-width: 575px) {
    .bat-right {
        display: none;
    }
}

/* Slider Thumb */
.slider-thumb {
    position: relative;
    z-index: 1;
}

.slider-thumb::before {
    position: absolute;
    content: "";
    left: 10%;
    top: -70px;
    width: 250px;
    height: 250px;
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    will-change: border-radius, transform, opacity;
    animation: sliderShape 5s linear infinite;
    display: block;
    z-index: -1;
    -webkit-animation: sliderShape 5s linear infinite;
}

@keyframes sliderShape {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

/* ---------------------------------------

[Main Stylesheet]

Project:    	  Hyiprio - High Yield Hyip Investment System
Version:    	  1.0
Primary Use:    Hyip Investment Website

------------------------------------------

[Table of contents]

1. Fonts
2. Reset Css
3. Global Settings
4. Section Styles
5. Colors
6. Margin and Padding
7. Background Overlay
8. Buttons Style
9. Preloader
10. ScrollUp Button

-------------------------------------------*/
/* Font Family Sofia Pro */
@font-face {
    font-family: sofia pro;
    src: url("frontend/fonts/SofiaProLightAz.eot");
    src: url("frontend/fonts/SofiaProLightAz.eot") format("embedded-opentype"), url("frontend/fonts/SofiaProLightAz.woff2") format("woff2"), url("frontend/fonts/SofiaProLightAz.woff") format("woff"), url("frontend/fonts/SofiaProLightAz.ttf") format("truetype"), url("frontend/fonts/SofiaProLightAz.svg#SofiaProLightAz") format("svg");
    font-weight: 300;
    font-style: normal;
}

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

@font-face {
    font-family: sofia pro;
    src: url("frontend/fonts/SofiaPro-Medium.eot");
    src: url("frontend/fonts/SofiaPro-Mediumd41d.eot?#iefix") format("embedded-opentype"), url("frontend/fonts/SofiaPro-Medium.woff2") format("woff2"), url("frontend/fonts/SofiaPro-Medium.woff") format("woff"), url("frontend/fonts/SofiaPro-Medium.ttf") format("truetype"), url("frontend/fonts/SofiaPro-Medium.svg#SofiaPro-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: sofia pro;
    src: url("frontend/fonts/SofiaProBoldAz.eot");
    src: url("frontend/fonts/SofiaProBoldAz.eot") format("embedded-opentype"), url("frontend/fonts/SofiaProBoldAz.woff2") format("woff2"), url("frontend/fonts/SofiaProBoldAz.woff") format("woff"), url("frontend/fonts/SofiaProBoldAz.ttf") format("truetype"), url("frontend/fonts/SofiaProBoldAz.svg#SofiaProBoldAz") format("svg");
    font-weight: 700;
    font-style: normal;
}

/* Font Family Sofia Pro End */
@font-face {
    font-family: "anticon";
    src: url("frontend/fonts/anticon.eot");
    src: url("frontend/fonts/anticond41dd41d.eot?#iefix") format("embedded-opentype"), url("frontend/fonts/anticon.woff") format("woff"), url("frontend/fonts/anticon.ttf") format("truetype"), url("frontend/fonts/anticon.svg#anticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: "anticon" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.anticon {
    line-height: 0;
    vertical-align: -0.125em;
}

.anticon:before {
    font-family: "anticon" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.anticon-account-book:before {
    content: "\61";
}

.anticon-alert:before {
    content: "\62";
}

.anticon-alibaba:before {
    content: "\63";
}

.anticon-align-center:before {
    content: "\64";
}

.anticon-align-left:before {
    content: "\65";
}

.anticon-align-right:before {
    content: "\66";
}

.anticon-alipay:before {
    content: "\67";
}

.anticon-alipay-circle:before {
    content: "\68";
}

.anticon-aliwangwang:before {
    content: "\69";
}

.anticon-aliyun:before {
    content: "\6a";
}

.anticon-amazon:before {
    content: "\6b";
}

.anticon-android:before {
    content: "\6c";
}

.anticon-ant-cloud:before {
    content: "\6d";
}

.anticon-ant-design:before {
    content: "\6e";
}

.anticon-apartment:before {
    content: "\6f";
}

.anticon-api:before {
    content: "\70";
}

.anticon-apple:before {
    content: "\71";
}

.anticon-appstore:before {
    content: "\72";
}

.anticon-area-chart:before {
    content: "\73";
}

.anticon-arrow-down:before {
    content: "\74";
}

.anticon-arrow-left:before {
    content: "\75";
}

.anticon-arrow-right:before {
    content: "\76";
}

.anticon-arrow-up:before {
    content: "\77";
}

.anticon-arrows-alt:before {
    content: "\78";
}

.anticon-audio:before {
    content: "\79";
}

.anticon-audit:before {
    content: "\7a";
}

.anticon-backward:before {
    content: "\41";
}

.anticon-bank:before {
    content: "\42";
}

.anticon-bar-chart:before {
    content: "\43";
}

.anticon-barcode:before {
    content: "\44";
}

.anticon-bars:before {
    content: "\45";
}

.anticon-behance:before {
    content: "\46";
}

.anticon-behance-square:before {
    content: "\47";
}

.anticon-bell:before {
    content: "\48";
}

.anticon-bg-colors:before {
    content: "\49";
}

.anticon-block:before {
    content: "\4a";
}

.anticon-bold:before {
    content: "\4b";
}

.anticon-book:before {
    content: "\4c";
}

.anticon-border:before {
    content: "\4d";
}

.anticon-border-bottom:before {
    content: "\4e";
}

.anticon-border-horizontal:before {
    content: "\4f";
}

.anticon-border-inner:before {
    content: "\50";
}

.anticon-border-left:before {
    content: "\51";
}

.anticon-border-outer:before {
    content: "\52";
}

.anticon-border-right:before {
    content: "\53";
}

.anticon-border-top:before {
    content: "\54";
}

.anticon-border-verticle:before {
    content: "\55";
}

.anticon-box-plot:before {
    content: "\56";
}

.anticon-branches:before {
    content: "\57";
}

.anticon-build:before {
    content: "\58";
}

.anticon-bulb:before {
    content: "\59";
}

.anticon-calculator:before {
    content: "\5a";
}

.anticon-calendar:before {
    content: "\30";
}

.anticon-camera:before {
    content: "\31";
}

.anticon-car:before {
    content: "\32";
}

.anticon-caret-down:before {
    content: "\33";
}

.anticon-caret-left:before {
    content: "\34";
}

.anticon-caret-right:before {
    content: "\35";
}

.anticon-caret-up:before {
    content: "\36";
}

.anticon-carry-out:before {
    content: "\37";
}

.anticon-check:before {
    content: "\38";
}

.anticon-check-circle:before {
    content: "\39";
}

.anticon-check-square:before {
    content: "\21";
}

.anticon-chrome:before {
    content: "\22";
}

.anticon-ci:before {
    content: "\23";
}

.anticon-clock-circle:before {
    content: "\24";
}

.anticon-close:before {
    content: "\25";
}

.anticon-close-circle:before {
    content: "\26";
}

.anticon-close-square:before {
    content: "\27";
}

.anticon-cloud:before {
    content: "\28";
}

.anticon-cloud-download:before {
    content: "\29";
}

.anticon-cloud-server:before {
    content: "\2a";
}

.anticon-cloud-sync:before {
    content: "\2b";
}

.anticon-cloud-upload:before {
    content: "\2c";
}

.anticon-cluster:before {
    content: "\2d";
}

.anticon-code:before {
    content: "\2e";
}

.anticon-code-sandbox:before {
    content: "\2f";
}

.anticon-codepen:before {
    content: "\3a";
}

.anticon-codepen-circle:before {
    content: "\3b";
}

.anticon-coffee:before {
    content: "\3c";
}

.anticon-colum-height:before {
    content: "\3d";
}

.anticon-column-width:before {
    content: "\3e";
}

.anticon-compass:before {
    content: "\3f";
}

.anticon-contacts:before {
    content: "\40";
}

.anticon-container:before {
    content: "\5b";
}

.anticon-control:before {
    content: "\5d";
}

.anticon-copy:before {
    content: "\5e";
}

.anticon-copyright:before {
    content: "\5f";
}

.anticon-credit-card:before {
    content: "\60";
}

.anticon-crown:before {
    content: "\7b";
}

.anticon-customer-service:before {
    content: "\7c";
}

.anticon-dash:before {
    content: "\7d";
}

.anticon-dashboard:before {
    content: "\7e";
}

.anticon-database:before {
    content: "\5c";
}

.anticon-delete:before {
    content: "\e000";
}

.anticon-deployment-unit:before {
    content: "\e001";
}

.anticon-desktop:before {
    content: "\e002";
}

.anticon-diff:before {
    content: "\e003";
}

.anticon-dingding:before {
    content: "\e004";
}

.anticon-disconnect:before {
    content: "\e005";
}

.anticon-dislike:before {
    content: "\e006";
}

.anticon-dollar:before {
    content: "\e007";
}

.anticon-dot-chart:before {
    content: "\e008";
}

.anticon-double-left:before {
    content: "\e009";
}

.anticon-double-right:before {
    content: "\e00a";
}

.anticon-down:before {
    content: "\e00b";
}

.anticon-down-circle:before {
    content: "\e00c";
}

.anticon-down-square:before {
    content: "\e00d";
}

.anticon-download:before {
    content: "\e00e";
}

.anticon-drag:before {
    content: "\e00f";
}

.anticon-dribbble:before {
    content: "\e010";
}

.anticon-dribbble-square:before {
    content: "\e011";
}

.anticon-dropbox:before {
    content: "\e012";
}

.anticon-edit:before {
    content: "\e013";
}

.anticon-ellipsis:before {
    content: "\e014";
}

.anticon-enter:before {
    content: "\e015";
}

.anticon-environment:before {
    content: "\e016";
}

.anticon-euro:before {
    content: "\e017";
}

.anticon-exception:before {
    content: "\e018";
}

.anticon-exclamation:before {
    content: "\e019";
}

.anticon-exclamation-circle:before {
    content: "\e01a";
}

.anticon-experiment:before {
    content: "\e01b";
}

.anticon-export:before {
    content: "\e01c";
}

.anticon-eye:before {
    content: "\e01d";
}

.anticon-eye-invisible:before {
    content: "\e01e";
}

.anticon-facebook:before {
    content: "\e01f";
}

.anticon-fall:before {
    content: "\e020";
}

.anticon-fast-backward:before {
    content: "\e021";
}

.anticon-fast-forward:before {
    content: "\e022";
}

.anticon-file:before {
    content: "\e023";
}

.anticon-file-add:before {
    content: "\e024";
}

.anticon-file-done:before {
    content: "\e025";
}

.anticon-file-excel:before {
    content: "\e026";
}

.anticon-file-exclamation:before {
    content: "\e027";
}

.anticon-file-image:before {
    content: "\e028";
}

.anticon-file-jpg:before {
    content: "\e029";
}

.anticon-file-markdown:before {
    content: "\e02a";
}

.anticon-file-pdf:before {
    content: "\e02b";
}

.anticon-file-ppt:before {
    content: "\e02c";
}

.anticon-file-protect:before {
    content: "\e02d";
}

.anticon-file-search:before {
    content: "\e02e";
}

.anticon-file-sync:before {
    content: "\e02f";
}

.anticon-file-text:before {
    content: "\e030";
}

.anticon-file-unknown:before {
    content: "\e031";
}

.anticon-file-word:before {
    content: "\e032";
}

.anticon-file-zip:before {
    content: "\e033";
}

.anticon-filter:before {
    content: "\e034";
}

.anticon-fire:before {
    content: "\e035";
}

.anticon-flag:before {
    content: "\e036";
}

.anticon-folder:before {
    content: "\e037";
}

.anticon-folder-add:before {
    content: "\e038";
}

.anticon-folder-open:before {
    content: "\e039";
}

.anticon-font-colors:before {
    content: "\e03a";
}

.anticon-font-size:before {
    content: "\e03b";
}

.anticon-fork:before {
    content: "\e03c";
}

.anticon-form:before {
    content: "\e03d";
}

.anticon-forward:before {
    content: "\e03e";
}

.anticon-frown:before {
    content: "\e03f";
}

.anticon-fullscreen:before {
    content: "\e040";
}

.anticon-fullscreen-exit:before {
    content: "\e041";
}

.anticon-fund:before {
    content: "\e042";
}

.anticon-funnel-plot:before {
    content: "\e043";
}

.anticon-gateway:before {
    content: "\e044";
}

.anticon-gift:before {
    content: "\e045";
}

.anticon-github:before {
    content: "\e046";
}

.anticon-gitlab:before {
    content: "\e047";
}

.anticon-global:before {
    content: "\e048";
}

.anticon-gold:before {
    content: "\e049";
}

.anticon-google:before {
    content: "\e04a";
}

.anticon-google-plus:before {
    content: "\e04b";
}

.anticon-hdd:before {
    content: "\e04c";
}

.anticon-heart:before {
    content: "\e04d";
}

.anticon-heat-map:before {
    content: "\e04e";
}

.anticon-highlight:before {
    content: "\e04f";
}

.anticon-home:before {
    content: "\e050";
}

.anticon-hourglass:before {
    content: "\e051";
}

.anticon-html5:before {
    content: "\e052";
}

.anticon-idcard:before {
    content: "\e053";
}

.anticon-ie:before {
    content: "\e054";
}

.anticon-import:before {
    content: "\e055";
}

.anticon-inbox:before {
    content: "\e056";
}

.anticon-info:before {
    content: "\e057";
}

.anticon-info-circle:before {
    content: "\e058";
}

.anticon-instagram:before {
    content: "\e059";
}

.anticon-insurance:before {
    content: "\e05a";
}

.anticon-interation:before {
    content: "\e05b";
}

.anticon-issues-close:before {
    content: "\e05c";
}

.anticon-italic:before {
    content: "\e05d";
}

.anticon-key:before {
    content: "\e05e";
}

.anticon-laptop:before {
    content: "\e05f";
}

.anticon-layout:before {
    content: "\e060";
}

.anticon-left:before {
    content: "\e061";
}

.anticon-left-circle:before {
    content: "\e062";
}

.anticon-left-square:before {
    content: "\e063";
}

.anticon-like:before {
    content: "\e064";
}

.anticon-line:before {
    content: "\e065";
}

.anticon-line-chart:before {
    content: "\e066";
}

.anticon-line-height:before {
    content: "\e067";
}

.anticon-link:before {
    content: "\e068";
}

.anticon-linkedin:before {
    content: "\e069";
}

.anticon-loading:before {
    content: "\e06a";
    display: inline-block;
    animation: 1s linear infinite loadingCircle;
}

.anticon-loading-3-quarters:before {
    content: "\e06b";
}

.anticon-lock:before {
    content: "\e06c";
}

.anticon-login:before {
    content: "\e06d";
}

.anticon-logout:before {
    content: "\e06e";
}

.anticon-mail:before {
    content: "\e06f";
}

.anticon-man:before {
    content: "\e070";
}

.anticon-medicine-box:before {
    content: "\e071";
}

.anticon-medium:before {
    content: "\e072";
}

.anticon-medium-workmark:before {
    content: "\e073";
}

.anticon-meh:before {
    content: "\e074";
}

.anticon-menu:before {
    content: "\e075";
}

.anticon-menu-fold:before {
    content: "\e076";
}

.anticon-menu-unfold:before {
    content: "\e077";
}

.anticon-message:before {
    content: "\e078";
}

.anticon-minus:before {
    content: "\e079";
}

.anticon-minus-circle:before {
    content: "\e07a";
}

.anticon-minus-square:before {
    content: "\e07b";
}

.anticon-mobile:before {
    content: "\e07c";
}

.anticon-money-collect:before {
    content: "\e07d";
}

.anticon-monitor:before {
    content: "\e07e";
}

.anticon-mr:before {
    content: "\e07f";
}

.anticon-notification:before {
    content: "\e080";
}

.anticon-number:before {
    content: "\e081";
}

.anticon-ordered-list:before {
    content: "\e082";
}

.anticon-paper-clip:before {
    content: "\e083";
}

.anticon-pause:before {
    content: "\e084";
}

.anticon-pause-circle:before {
    content: "\e085";
}

.anticon-pay-circle:before {
    content: "\e086";
}

.anticon-percentage:before {
    content: "\e087";
}

.anticon-phone:before {
    content: "\e088";
}

.anticon-pic-center:before {
    content: "\e089";
}

.anticon-pic-left:before {
    content: "\e08a";
}

.anticon-pic-right:before {
    content: "\e08b";
}

.anticon-picture:before {
    content: "\e08c";
}

.anticon-pie-chart:before {
    content: "\e08d";
}

.anticon-play-circle:before {
    content: "\e08e";
}

.anticon-play-square:before {
    content: "\e08f";
}

.anticon-plus:before {
    content: "\e090";
}

.anticon-plus-circle:before {
    content: "\e091";
}

.anticon-plus-square:before {
    content: "\e092";
}

.anticon-pound:before {
    content: "\e093";
}

.anticon-poweroff:before {
    content: "\e094";
}

.anticon-printer:before {
    content: "\e095";
}

.anticon-profile:before {
    content: "\e096";
}

.anticon-project:before {
    content: "\e097";
}

.anticon-property-safety:before {
    content: "\e098";
}

.anticon-pushpin:before {
    content: "\e099";
}

.anticon-qq:before {
    content: "\e09a";
}

.anticon-qrcode:before {
    content: "\e09b";
}

.anticon-question:before {
    content: "\e09c";
}

.anticon-question-circle:before {
    content: "\e09d";
}

.anticon-radar-chart:before {
    content: "\e09e";
}

.anticon-radius-bottomleft:before {
    content: "\e09f";
}

.anticon-radius-bottomright:before {
    content: "\e0a0";
}

.anticon-radius-setting:before {
    content: "\e0a1";
}

.anticon-radius-upleft:before {
    content: "\e0a2";
}

.anticon-radius-upright:before {
    content: "\e0a3";
}

.anticon-read:before {
    content: "\e0a4";
}

.anticon-reconciliation:before {
    content: "\e0a5";
}

.anticon-red-envelope:before {
    content: "\e0a6";
}

.anticon-reddit:before {
    content: "\e0a7";
}

.anticon-redo:before {
    content: "\e0a8";
}

.anticon-reload:before {
    content: "\e0a9";
}

.anticon-reload-time:before {
    content: "\e0aa";
}

.anticon-rest:before {
    content: "\e0ab";
}

.anticon-retweet:before {
    content: "\e0ac";
}

.anticon-right:before {
    content: "\e0ad";
}

.anticon-right-circle:before {
    content: "\e0ae";
}

.anticon-right-square:before {
    content: "\e0af";
}

.anticon-rise:before {
    content: "\e0b0";
}

.anticon-robot:before {
    content: "\e0b1";
}

.anticon-rocket:before {
    content: "\e0b2";
}

.anticon-rollback:before {
    content: "\e0b3";
}

.anticon-safety:before {
    content: "\e0b4";
}

.anticon-safety-certificate:before {
    content: "\e0b5";
}

.anticon-save:before {
    content: "\e0b6";
}

.anticon-scan:before {
    content: "\e0b7";
}

.anticon-schedule:before {
    content: "\e0b8";
}

.anticon-scissor:before {
    content: "\e0b9";
}

.anticon-search:before {
    content: "\e0ba";
}

.anticon-security-scan:before {
    content: "\e0bb";
}

.anticon-select:before {
    content: "\e0bc";
}

.anticon-setting:before {
    content: "\e0bd";
}

.anticon-shake:before {
    content: "\e0be";
}

.anticon-share-alt:before {
    content: "\e0bf";
}

.anticon-shop:before {
    content: "\e0c0";
}

.anticon-shopping:before {
    content: "\e0c1";
}

.anticon-shopping-cart:before {
    content: "\e0c2";
}

.anticon-shrink:before {
    content: "\e0c3";
}

.anticon-sketch:before {
    content: "\e0c4";
}

.anticon-skin:before {
    content: "\e0c5";
}

.anticon-skype:before {
    content: "\e0c6";
}

.anticon-slack:before {
    content: "\e0c7";
}

.anticon-slack-square:before {
    content: "\e0c8";
}

.anticon-sliders:before {
    content: "\e0c9";
}

.anticon-small-dash:before {
    content: "\e0ca";
}

.anticon-smile:before {
    content: "\e0cb";
}

.anticon-snippets:before {
    content: "\e0cc";
}

.anticon-solution:before {
    content: "\e0cd";
}

.anticon-sort-ascending:before {
    content: "\e0ce";
}

.anticon-sort-descending:before {
    content: "\e0cf";
}

.anticon-sound:before {
    content: "\e0d0";
}

.anticon-star:before {
    content: "\e0d1";
}

.anticon-step-backward:before {
    content: "\e0d2";
}

.anticon-step-forward:before {
    content: "\e0d3";
}

.anticon-stock:before {
    content: "\e0d4";
}

.anticon-stop:before {
    content: "\e0d5";
}

.anticon-strikethrough:before {
    content: "\e0d6";
}

.anticon-swap:before {
    content: "\e0d7";
}

.anticon-swap-left:before {
    content: "\e0d8";
}

.anticon-swap-right:before {
    content: "\e0d9";
}

.anticon-switcher:before {
    content: "\e0da";
}

.anticon-sync:before {
    content: "\e0db";
}

.anticon-table:before {
    content: "\e0dc";
}

.anticon-tablet:before {
    content: "\e0dd";
}

.anticon-tag:before {
    content: "\e0de";
}

.anticon-tags:before {
    content: "\e0df";
}

.anticon-taobao:before {
    content: "\e0e0";
}

.anticon-taobao-circle:before {
    content: "\e0e1";
}

.anticon-team:before {
    content: "\e0e2";
}

.anticon-thunderbolt:before {
    content: "\e0e3";
}

.anticon-to-top:before {
    content: "\e0e4";
}

.anticon-tool:before {
    content: "\e0e5";
}

.anticon-trademark:before {
    content: "\e0e6";
}

.anticon-transaction:before {
    content: "\e0e7";
}

.anticon-trophy:before {
    content: "\e0e8";
}

.anticon-twitter:before {
    content: "\e0e9";
}

.anticon-underline:before {
    content: "\e0ea";
}

.anticon-undo:before {
    content: "\e0eb";
}

.anticon-unlock:before {
    content: "\e0ec";
}

.anticon-unordered-list:before {
    content: "\e0ed";
}

.anticon-up:before {
    content: "\e0ee";
}

.anticon-up-circle:before {
    content: "\e0ef";
}

.anticon-up-square:before {
    content: "\e0f0";
}

.anticon-upload:before {
    content: "\e0f1";
}

.anticon-usb:before {
    content: "\e0f2";
}

.anticon-user:before {
    content: "\e0f3";
}

.anticon-user-add:before {
    content: "\e0f4";
}

.anticon-user-delete:before {
    content: "\e0f5";
}

.anticon-usergroup-add:before {
    content: "\e0f6";
}

.anticon-usergroup-delete:before {
    content: "\e0f7";
}

.anticon-vertical-align-bottom:before {
    content: "\e0f8";
}

.anticon-vertical-align-middle:before {
    content: "\e0f9";
}

.anticon-vertical-align-top:before {
    content: "\e0fa";
}

.anticon-vertical-left:before {
    content: "\e0fb";
}

.anticon-vertical-right:before {
    content: "\e0fc";
}

.anticon-video-camera:before {
    content: "\e0fd";
}

.anticon-wallet:before {
    content: "\e0fe";
}

.anticon-warning:before {
    content: "\e0ff";
}

.anticon-wechat:before {
    content: "\e100";
}

.anticon-weibo:before {
    content: "\e101";
}

.anticon-weibo-circle:before {
    content: "\e102";
}

.anticon-weibo-square:before {
    content: "\e103";
}

.anticon-wifi:before {
    content: "\e104";
}

.anticon-windows:before {
    content: "\e105";
}

.anticon-woman:before {
    content: "\e106";
}

.anticon-yahoo:before {
    content: "\e107";
}

.anticon-youtube:before {
    content: "\e108";
}

.anticon-yuque:before {
    content: "\e109";
}

.anticon-zhihu:before {
    content: "\e10a";
}

.anticon-zoom-in:before {
    content: "\e10b";
}

.anticon-zoom-out:before {
    content: "\e10c";
}

.anticon-info-o:before {
    content: "\e10d";
}

.anticon-exclamation-o:before {
    content: "\e10e";
}

.anticon-close-o:before {
    content: "\e10f";
}

.anticon-check-o:before {
    content: "\e110";
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: sofia pro;
    font-weight: 400;
    color: rgba(0, 18, 25, 0.7);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

input {
    outline: none;
}

button {
    border: 0;
    outline: none;
    transition: 0.3s;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sofia pro;
    font-weight: 500;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

/* colors */
.black-color {
    color: #001219;
}

.blue-color {
    color: #003049;
}

.primary-color {
    color: #e73667;
}

.white-color {
    color: #ffffff;
}

.yellow-color {
    color: #ffc300;
}

.green-color {
    color: #2a9d8f;
}

.red-color {
    color: #ef476f;
}

/* Backgrounds */
.black-bg {
    background: #001219;
}

.blue-bg {
    background: #003049;
}

.primary-bg {
    background: #e73667;
}

.gray-bg {
    background: #d2d3d8;
}

/* .light-blue-bg {
    background: #bee3db;
} */

.dark-blue-bg {
    background: #020d24;
}

.site-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.site-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #003049;
    content: "";
    z-index: -1;
    opacity: 0.6;
}

.primary-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.primary-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #e73667;
    content: "";
    z-index: -1;
    opacity: 0.3;
}

.grad-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.grad-overlay::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(95deg, #059dff 15%, #6549d5 45%, #e33fa1 75%, #fb5343) 95%/200% 100%;
    content: "";
    z-index: -1;
    opacity: 0.3;
}

/* Section Styles */
.section-style {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-style-2 {
    padding: 80px 0 50px 0;
    position: relative;
    z-index: 1;
}

.section-style-3 {
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 1;
}

.section-gap {
    padding: 30px 0 30px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #2a9d8f;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-head {
    padding: 170px 0 80px 0;
}

.page-head h2 {
    margin-bottom: 0;
    font-size: 34px;
    color: #ffffff;
}

.site-btn {
    display: inline-block;
    padding: 13px 27px;
    border-radius: 50px;
    color: #001219;
    background: #ffffff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0px 0px 2px #00304966;
}

.site-btn:hover {
    background: #e73667;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
}

.site-btn:focus {
    background: #e73667;
    color: #ffffff;
    border: 0;
    box-shadow: none;
}

.site-btn:active {
    background: #e73667;
    color: #ffffff;
    border: 0;
    box-shadow: none;
}

.site-btn i {
    margin-right: 4px;
}

.site-btn-sm {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 50px;
    color: #001219;
    background: #ffffff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.site-btn-sm:hover {
    background: #e73667;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
}

.site-btn-sm i {
    margin-right: 5px;
}

.site-btn-round {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    background: #e73667;
}

.site-btn-round:hover {
    background: #e73667;
    color: #ffffff;
}

.primary-btn {
    color: #ffffff;
    background: #e73667;
}

.primary-btn:hover {
    background: #ffffff;
    color: #001219;
}

.blue-btn {
    background: #e73667;
    color: #ffffff;
}

.blue-btn:hover {
    background: #003049;
    color: #ffffff;
}

.grad-btn {
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    color: #ffffff;
}

.red-btn {
    background: #ef476f;
    color: #ffffff;
}

.red-btn:hover {
    background: #003049;
    color: #ffffff;
}

.btn-link {
    color: rgba(0, 18, 25, 0.7);
    position: relative;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-link::after {
    position: absolute;
    content: "";
    height: 2px;
    background: #e73667;
    width: 0px;
    transition: 0.3s;
    left: 0;
    bottom: 0px;
}

.btn-link:hover {
    color: #e73667;
}

.btn-link:hover::after {
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #e73667;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #003049;
}

/* toTop Button */
#scrollUp {
    background: rgba(231, 54, 103, 0.3);
    color: #e73667;
    right: 30px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
}

#scrollUp:hover {
    background: #e73667;
    color: #ffffff;
}

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

.centered {
    text-align: center;
}

.coin-left {
    position: relative;
}

.coin-left::before {
    height: 225px;
    width: 200px;
    position: absolute;
    content: "";
    left: 100px;
    top: 100px;
    background: url("frontend/images/coin.html") repeat;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .coin-left::before {
        display: none;
    }
}

.coin-right {
    position: relative;
}

.coin-right::after {
    height: 225px;
    width: 200px;
    position: absolute;
    content: "";
    right: 100px;
    top: 100px;
    background: url("frontend/images/coin.html") repeat;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 991px) {
    .coin-right::after {
        display: none;
    }
}

/* Custom css for Dark dropdown */
.dropdown-menu-dark {
    background: #001219;
    padding-top: 5px;
    padding-bottom: 0;
    border-radius: 4px;
    border: 0;
    min-width: 200px;
}

.dropdown-menu-dark li {
    margin-top: 10px;
}

.dropdown-menu-dark li .dropdown-item {
    padding: 8px 15px;
    border-radius: 4px;
}

.dropdown-menu-dark li .dropdown-item i {
    margin-right: 5px;
}

.dropdown-menu-dark li .dropdown-item:hover {
    background: #e73667;
    color: #ffffff;
}

/* Site Card */
.site-card {
    box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.4);
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 4px;
}

.site-card .site-card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.site-card .site-card-header .title {
    color: #003049;
    margin-bottom: 0;
    font-size: 18px;
    display: inline-block;
}

@media (max-width: 500px) {
    .site-card .site-card-header .title {
        font-size: 16px;
    }
}

.site-card .site-card-header .title-small {
    color: #003049;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
}

.site-card .site-card-header .card-header-links .card-header-link {
    display: inline-block;
    background: #e73667;
    border-radius: 3px;
    padding: 8px 18px;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 10px;
}

.site-card .site-card-header .card-header-links .card-header-link:hover {
    background: #003049;
}

.site-card .site-card-header .search {
    font-size: 14px;
}

.site-card .site-card-header .search span {
    margin-right: 5px;
}

.site-card .site-card-header .search input {
    width: 200px;
    height: 27px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 5px;
    background: transparent;
}

.site-card .site-card-body {
    padding: 20px;
}

.site-card .site-card-body .body-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.site-card .site-card-body .paragraph {
    font-size: 14px;
}

@media (max-width: 400px) {
    .site-card .site-card-body {
        padding: 12px;
    }
}

/* site-alert */
.site-alert {
    color: rgba(0, 18, 25, 0.6);
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 2px #5468ff66;
    margin-bottom: 30px;
    background: rgba(255, 195, 0, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
}

.site-alert .content {
    font-size: 18px;
}

.site-alert .content .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 195, 0, 0.5);
    color: #001219;
    margin-right: 8px;
    display: inline-block;
}

/* Site Badge */
.site-badge {
    padding: 2px 10px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.site-badge.badge-success {
    background: #2a9d8f;
}

.site-badge.badge-failed {
    background: #ef476f;
}

.site-badge.badge-pending {
    background: #ffc300;
    color: rgba(0, 18, 25, 0.7);
}

.input-info-text {
    font-size: 12px;
    color: rgba(239, 71, 111, 0.7);
    margin-top: -18px;
}

/* Image Preview */
.wrap-custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 150px;
    text-align: center;
    border: 1px dashed #d2d3d8;
    border-radius: 8px;
}

.wrap-custom-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    overflow: hidden;
    opacity: 0;
}

.wrap-custom-file label {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s;
}

.wrap-custom-file label span {
    display: block;
    color: #003049;
    font-size: 14px;
    transition: color 0.4s;
}

.wrap-custom-file label .upload-icon {
    width: 40px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.wrap-custom-file label.file-ok {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.wrap-custom-file label.file-ok span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: rgba(231, 54, 103, 0.5);
}

.wrap-custom-file label.file-ok .upload-icon {
    display: none;
}

.wrap-custom-file label .recomended {
    color: rgba(42, 157, 143, 0.6);
    font-size: 14px;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 0;
    left: 50%;
}

/* bat-left */
.bat-left {
    height: 166px;
    width: 300px;
    position: absolute;
    left: 100px;
    top: 100px;
    z-index: -1;
    opacity: 0.5 !important;
}

@media (max-width: 767px) {
    .bat-left {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .bat-left {
        display: none;
    }
}

/* bat-right */
.bat-right {
    height: 166px;
    width: 300px;
    position: absolute;
    right: 100px;
    top: 100px;
    z-index: -1;
    opacity: 0.5 !important;
}

@media (max-width: 767px) {
    .bat-right {
        right: 0;
    }
}

@media (max-width: 1333px) {
    .bat-right {
        display: none;
    }
}

/* Slider Thumb */
.slider-thumb {
    position: relative;
    z-index: 1;
}

.slider-thumb::before {
    position: absolute;
    content: "";
    left: 10%;
    top: -70px;
    width: 250px;
    height: 250px;
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    will-change: border-radius, transform, opacity;
    animation: sliderShape 5s linear infinite;
    display: block;
    z-index: -1;
    -webkit-animation: sliderShape 5s linear infinite;
}

@media (max-width: 767px) {
    .slider-thumb::before {
        opacity: 0.3;
    }
}

@keyframes sliderShape {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

/* Dark Theme */
.dark-theme {
    color: rgba(255, 255, 255, 0.9);
    background: #032836;
}

.dark-theme .panel-layout .panel-header .logo {
    background: #003049;
    border-right: 1px solid rgba(83, 90, 148, 0.5);
    border-bottom: 1px solid rgba(83, 90, 148, 0.5);
}

.dark-theme .panel-layout .panel-header .nav-wrap {
    background: #003049;
    border-bottom: 1px solid rgba(83, 90, 148, 0.5);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-left .sidebar-toggle {
    background: #535a94;
    color: #ffffff;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-left .sidebar-toggle:hover {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher {
    color: #ffffff;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher svg.light-icon {
    display: inline-block;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher svg.dark-icon {
    display: none;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select {
    color: rgba(255, 255, 255, 0.9);
    background: #535a94;
    border: 1px solid rgba(231, 54, 103, 0.1);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select::after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select .list {
    box-shadow: 0px 0px 2px #aab0c6;
    background: rgba(0, 18, 25, 0.8);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select .list li {
    background: rgba(0, 18, 25, 0.8);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select .list li:hover {
    background: #e73667;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .item {
    background: #535a94;
    border: 1px solid rgba(231, 54, 103, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .item:hover {
    background: rgba(231, 54, 103, 0.9);
    color: #ffffff;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu {
    box-shadow: 0px 0px 2px #aab0c6;
    background: rgba(0, 18, 25, 0.9);
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li .dropdown-item {
    color: #ffffff;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li .dropdown-item:hover {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li.logout .dropdown-item {
    background: rgba(239, 71, 111, 0.1);
    color: #ef476f;
    border-radius: 0 0 4px 4px;
}

.dark-theme .panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li.logout .dropdown-item:hover {
    background: #ef476f;
    color: #ffffff;
}

.dark-theme .panel-layout .side-nav {
    background: #003049;
    border-right: 1px solid rgba(83, 90, 148, 0.5);
}

.dark-theme .panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a {
    color: rgba(255, 255, 255, 0.7);
}

.dark-theme .panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a:after {
    background: rgba(255, 255, 255, 0.2);
}

.dark-theme .panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a:hover {
    color: #ffffff;
}

.dark-theme .panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.active a {
    color: #ffffff;
}

.dark-theme .panel-layout .site-card {
    background: #041f2c;
    border: 1px solid rgba(83, 90, 148, 0.3);
}

.dark-theme .panel-layout .site-card .site-card-header {
    border-bottom: 1px solid #003049;
}

.dark-theme .panel-layout .site-card .site-card-header .title {
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .panel-layout .site-card .site-card-header .search input {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-theme .panel-layout .site-card .site-card-body {
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .referral-link .referral-link-form input {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .referral-link .referral-joined {
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps .single-step {
    background: rgba(42, 157, 143, 0.3);
    border-color: rgba(255, 195, 0, 0.5);
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps .single-step .content h4 {
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form label {
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .input-group .form-control {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .input-group .input-group-text {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .input-group .form-control-textarea {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .input-group .form-select {
    border-color: rgba(255, 255, 255, 0.2);
    color: #003049;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .transaction-list .user-panel-title {
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .transaction-list .user-panel-title h3 {
    color: #ffffff;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .transaction-list .table {
    color: #ffffff;
    border: 1px solid #003049;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .transaction-list .table tbody tr {
    border-bottom: 1px solid #003049;
}

.dark-theme .panel-layout .site-card .site-card-body .progress-steps-form .transaction-list .table tbody tr td strong {
    color: rgba(255, 255, 255, 0.7);
}

.dark-theme .panel-layout .site-card .site-card-body .access-device .icon img {
    filter: invert(1);
}

.dark-theme .panel-layout .site-alert {
    background: rgba(0, 48, 73, 0.7);
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .panel-layout .side-wallet-box {
    background: #003049;
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .panel-layout .side-wallet-box .user-balance-card::before {
    background: rgba(255, 195, 0, 0.4);
}

.dark-theme .panel-layout .btn-link {
    color: #e73667;
}

.dark-theme .panel-layout .site-transactions .single {
    background: #041f2c;
}

.dark-theme .panel-layout .site-transactions .single .left .icon {
    background: #003049;
    color: #ffffff;
}

.dark-theme .panel-layout .site-transactions .single .left .content .date {
    color: rgba(255, 255, 255, 0.4);
}

.dark-theme .panel-layout .site-transactions .single.head {
    background: transparent;
}

.dark-theme .panel-layout .site-pagination .page-item .page-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    background: #003049;
    border-color: #003049;
}

.dark-theme .panel-layout .site-pagination .page-item.active .page-link {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .header {
    background: #032836;
}

.dark-theme .header .navbar .main-nav .nav-item a.nav-link {
    color: #ffffff;
}

.dark-theme .header .navbar .main-nav .nav-item.dropdown .dropdown-menu {
    background: #032836;
}

.dark-theme .header .navbar .main-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
    color: #ffffff;
}

.dark-theme .header .navbar .header-right-btn .color-switcher {
    color: #ffffff;
}

.dark-theme .header .navbar .header-right-btn .color-switcher svg.light-icon {
    display: inline-block;
}

.dark-theme .header .navbar .header-right-btn .color-switcher svg.dark-icon {
    display: none;
}

.dark-theme .banner .banner-content::before {
    background: rgba(255, 255, 255, 0.08);
}

.dark-theme .banner .banner-content h2 {
    color: rgba(255, 255, 255, 0.9);
}

.dark-theme .how-it-works .how-it-works-single h4 {
    color: #ffffff;
}

.dark-theme .how-it-works .how-it-works-single p {
    color: rgba(255, 255, 255, 0.5);
}

.dark-theme .how-it-works .how-it-works-single::before {
    filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
    .dark-theme .how-it-works .how-it-works-single::before {
        display: none;
    }
}

.dark-theme .why-choose-us .why-choose-us-content .single .content h4 {
    color: #ffffff;
}

.dark-theme .why-choose-us .why-choose-us-content .single .content p {
    color: rgba(255, 255, 255, 0.6);
}

.dark-theme .faq-contents .accordion-item {
    border-bottom: 2px solid rgba(231, 54, 103, 0.2);
}

.dark-theme .faq-contents .accordion-item .accordion-header .accordion-button {
    background: rgba(231, 54, 103, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .faq-contents .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: rgba(231, 54, 103, 0.7);
    color: #ffffff;
}

.dark-theme .faq-contents .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
    background: #ffc754e6;
    color: #001219;
}

.dark-theme .faq-contents .accordion-item .accordion-body .para {
    color: rgba(255, 255, 255, 0.6);
}

.dark-theme .faq-contents .accordion-item .accordion-body .list ul li {
    color: rgba(255, 255, 255, 0.6);
}

.dark-theme .single-blog {
    background: #032836;
}

.dark-theme .single-blog .content {
    color: rgba(255, 255, 255, 0.6);
}

.dark-theme .single-blog .content .title h3 a {
    color: #ffffff;
}

.dark-theme .single-blog .content .link a {
    color: #ffffff;
}

.dark-theme .brands-logo .single-brands-logo img {
    filter: brightness(0) invert(1);
}

.dark-theme .light-blue-bg {
    background: #003049;
}

.dark-theme .dark-blue-bg {
    background: #003049;
}

.dark-theme .section-title h4 {
    color: #ffc300;
}

.dark-theme .site-card {
    background: #041f2c;
}

.dark-theme .site-card .site-card-header {
    border-bottom: 1px solid #003049;
}

.dark-theme .site-card .site-card-header .title {
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .site-card .site-card-header .search input {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-theme .site-card .site-card-body {
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .referral-link .referral-link-form input {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .referral-link .referral-joined {
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .site-card .site-card-body .progress-steps .single-step {
    background: rgba(42, 157, 143, 0.3);
    border-color: rgba(255, 195, 0, 0.5);
}

.dark-theme .site-card .site-card-body .progress-steps .single-step .content h4 {
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form label {
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form .input-group .form-control {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form .input-group .input-group-text {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form .input-group .form-control-textarea {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form .input-group .form-select {
    border-color: rgba(255, 255, 255, 0.2);
    color: #003049;
}

.dark-theme .site-card .site-card-body .progress-steps-form .transaction-list .user-panel-title {
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form .transaction-list .user-panel-title h3 {
    color: #ffffff;
}

.dark-theme .site-card .site-card-body .progress-steps-form .transaction-list .table {
    color: #ffffff;
    border: 1px solid #003049;
}

.dark-theme .site-card .site-card-body .progress-steps-form .transaction-list .table tbody tr {
    border-bottom: 1px solid #003049;
}

.dark-theme .site-card .site-card-body .progress-steps-form .transaction-list .table tbody tr td strong {
    color: rgba(255, 255, 255, 0.7);
}

.dark-theme .site-card .site-card-body .access-device .icon img {
    filter: invert(1);
}

.dark-theme .site-alert {
    background: rgba(0, 48, 73, 0.7);
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .side-wallet-box {
    background: #041f2c;
    color: rgba(255, 255, 255, 0.8);
}

.dark-theme .side-wallet-box .user-balance-card::before {
    background: rgba(255, 195, 0, 0.4);
}

.dark-theme .btn-link {
    color: #e73667;
}

.dark-theme .site-transactions .single {
    background: #041f2c;
}

.dark-theme .site-transactions .single .left .icon {
    background: #003049;
    color: #ffffff;
}

.dark-theme .site-transactions .single .left .content .date {
    color: rgba(255, 255, 255, 0.4);
}

.dark-theme .site-transactions .single.head {
    background: transparent;
}

.dark-theme .site-pagination .page-item .page-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    background: #003049;
    border-color: #003049;
}

.dark-theme .site-pagination .page-item.active .page-link {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .single-investment-plan p {
    color: rgba(255, 195, 0, 0.8);
}

.dark-theme .site-datatable .dataTables_length label {
    font-weight: 700 !important;
}

.dark-theme .site-datatable .dataTables_length label select:focus {
    box-shadow: none;
    border: 1px solid rgba(231, 54, 103, 0.5);
}

.dark-theme .site-datatable .dataTables_filter label input {
    background: transparent;
    color: #ffffff;
}

.dark-theme .site-datatable .dataTables_filter label input:focus {
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark-theme .site-datatable .dataTables_info {
    color: rgba(255, 255, 255, 0.7);
}

.dark-theme .site-datatable .dataTables_paginate .pagination .paginate_button .page-link {
    background: #003049;
    color: rgba(255, 255, 255, 0.7);
    border-color: #003049;
}

.dark-theme .site-datatable .dataTables_paginate .pagination .paginate_button .page-link:hover {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .site-datatable .dataTables_paginate .pagination .paginate_button .page-link:focus {
    box-shadow: none;
}

.dark-theme .site-datatable .dataTables_paginate .pagination .paginate_button.active .page-link {
    background: #e73667;
    color: #ffffff;
    border-color: #e73667;
}

.dark-theme .site-datatable .data-table {
    background: #003049;
    box-shadow: 0px 0px 2px #aab0c6;
}

.dark-theme .site-datatable .data-table thead tr th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.dark-theme .site-datatable .data-table tbody tr td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dark-theme .site-datatable .data-table tbody tr td .avatar-text {
    color: #ffffff;
}

.dark-theme .site-datatable .data-table tbody tr td .form-switch input.form-check-input:checked {
    background-color: #e73667;
    border-color: #e73667;
}

.dark-theme .site-datatable .data-table tbody tr td .site-badge {
    color: #ffffff;
}

.dark-theme .site-datatable .data-table tbody tr td .site-badge.success {
    background: #2a9d8f;
}

.dark-theme .site-datatable .data-table tbody tr td .site-badge.failed {
    background: #ef476f;
}

.dark-theme .site-datatable .data-table tbody tr td .site-badge.warnning {
    background: #ffc300;
    color: #001219;
}

.dark-theme .site-datatable .data-table tbody tr td .link {
    color: #e73667;
}

.dark-theme .site-datatable .data-table tbody tr td .link:hover {
    color: #2a9d8f;
}

.dark-theme .site-datatable .data-table tbody tr td .investment-timeline {
    background: #d2d3d8;
}

.dark-theme .site-datatable .data-table tbody tr td .investment-timeline .progress-bar {
    background: #ef476f;
}

.dark-theme .site-datatable .data-table tbody tr td .table-description .icon {
    background: rgba(83, 90, 148, 0.7);
    color: #ffffff;
}

.dark-theme .site-datatable .data-table tbody tr td .date {
    color: rgba(255, 255, 255, 0.75);
}

.dark-theme .site-datatable .data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dark-theme .progress-steps-form .transaction-status {
    background: #003049;
    color: #ffffff;
}

.dark-theme .progress-steps-form .input-group .site-nice-select {
    background: #041f2c;
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-theme .progress-steps-form .input-group .site-nice-select .list {
    background: #003049;
    color: #ffffff;
}

.dark-theme .progress-steps-form .input-group .site-nice-select .list li.selected {
    background: #020d24;
    color: #ffffff;
}

.dark-theme .progress-steps-form .input-group .site-nice-select .list li:hover {
    background: #020d24;
    color: #ffffff;
}

.dark-theme .progress-steps-form .input-group .site-nice-select::after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    height: 8px;
    width: 8px;
}

.dark-theme .wrap-custom-file label span {
    color: #ffffff;
}

.dark-theme .single-badge {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .single-badge .content .description {
    color: rgba(255, 255, 255, 0.4);
}

.dark-theme .earnings-calculator {
    background: #032836;
}

.dark-theme .earnings-calculator .single-box label {
    color: rgba(255, 255, 255, 0.5);
}

.dark-theme .earnings-calculator .single-box .input-group .form-control {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .earnings-calculator .single-box .input-group .input-group-text {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.dark-theme .earnings-calculator .single-box .site-nice-select {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-theme .earnings-calculator .single-box .site-nice-select .current {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 46px;
}

.dark-theme .earnings-calculator .single-box .site-nice-select .list {
    background: #003049;
    color: #ffffff;
    width: 100%;
}

.dark-theme .earnings-calculator .single-box .site-nice-select .list li.selected {
    background: #020d24;
    color: #ffffff;
}

.dark-theme .earnings-calculator .single-box .site-nice-select .list li:hover {
    background: #020d24;
    color: #ffffff;
}

.dark-theme .earnings-calculator .single-box .site-nice-select::after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    height: 8px;
    width: 8px;
}

.dark-theme .support-ticket-single-message {
    background: #003049;
}

.dark-theme .support-ticket-single-message .message-attachments .single-attachment .attach a {
    color: #2a9d8f;
}

.dark-theme .about-us .about-content .content {
    color: rgba(255, 255, 255, 0.9);
}

.dark-theme .site-form form input,
.dark-theme .site-form form textarea {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dark-theme .site-form form input:focus,
.dark-theme .site-form form textarea:focus {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dark-theme .site-form form input:focus-visible,
.dark-theme .site-form form textarea:focus-visible {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dark-theme .site-form form input::placeholder,
.dark-theme .site-form form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dark-theme .site-form form select {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.dark-theme .site-form form select:focus {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dark-theme .site-form form .extra-links a {
    color: rgba(0, 18, 25, 0.5);
}

.dark-theme .site-tab-bars {
    background: #003049;
}

.dark-theme .site-tab-bars ul li {
    display: inline-block;
}

@media (max-width: 991px) {
    .dark-theme .site-tab-bars ul li {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

.dark-theme .site-tab-bars ul li a {
    color: #003049;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
}

.dark-theme .site-tab-bars ul li a svg {
    width: 16px;
    position: relative;
    margin-right: 5px;
    top: -1px;
}

.dark-theme .site-tab-bars ul li a:hover {
    color: #e73667;
}

@media (max-width: 575px) {
    .dark-theme .site-tab-bars ul li a {
        background: rgba(231, 54, 103, 0.2);
        display: block;
    }
}

.dark-theme .site-tab-bars ul li.active a {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .site-tab-bars .nav.nav-pills .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.6);
}

.dark-theme .site-tab-bars .nav.nav-pills .nav-item .nav-link.active {
    background: #e73667;
    color: #ffffff;
}

.dark-theme .caches-privacy {
    background: #535a94;
}

/* Header Top */
.header-top {
    padding: 15px 0;
}

.header-top i {
    margin-right: 8px;
}

.header-top .header-top-address address {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .header-top .header-top-address address {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .header-top .header-top-address {
        text-align: center;
    }
}

.header-top .header-top-phone {
    float: right;
}

@media (max-width: 767px) {
    .header-top .header-top-phone {
        float: none;
        text-align: center;
    }
}

.header-top .header-top-phone p {
    margin-bottom: 0;
    display: inline-block;
    margin-left: 25px;
    transition: 0.3s;
}

.header-top .header-top-phone p:hover {
    color: #ffffff;
}

.header-top .header-top-phone p a {
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.header-top .header-top-phone p a::after {
    position: absolute;
    content: "";
    height: 1px;
    background: #ffffff;
    width: 0px;
    transition: 0.3s;
    left: 0;
    bottom: 0px;
}

.header-top .header-top-phone p a:hover {
    color: #ffffff;
}

.header-top .header-top-phone p a:hover::after {
    width: 100%;
    color: #ffffff;
}

/* Navigation */
/* .header {
    border-bottom: 1px solid rgba(231, 54, 103, 0.1);
    background: #bee3db;
    position: fixed;
    width: 100%;
    z-index: 2;
} */

@media (max-width: 991px) {
    .header {
        position: absolute;
        width: 100%;
        z-index: 2;
        max-height: 450px;
        overflow: auto;
        background: #ffffff;
    }
}

.header .navbar {
    padding: 20px 0;
}

.header .navbar .container-fluid {
    padding: 0 40px;
}

.header .navbar .navbar-brand img {
    height: 40px;
}

.header .navbar .navbar-toggler {
    border: none;
    background: #e73667;
    border-radius: 0;
}

.header .navbar .navbar-toggler:focus {
    box-shadow: none;
}

.header .navbar .main-nav .nav-item {
    margin: 0 12px;
}

@media (max-width: 991px) {
    .header .navbar .main-nav .nav-item {
        margin: 5px 0;
    }
}

.header .navbar .main-nav .nav-item a.nav-link {
    color: rgba(0, 18, 25, 0.8);
    position: relative;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.header .navbar .main-nav .nav-item a.nav-link:hover {
    color: #e73667;
}

.header .navbar .main-nav .nav-item a.nav-link.active {
    color: #e73667;
}

.header .navbar .main-nav .nav-item a.nav-link.dropdown-toggle::after {
    position: absolute;
    border: 0px;
    content: "\e00b";
    font-family: "anticon" !important;
    font-weight: 700;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
    margin-left: 5px;
}

@media (max-width: 991px) {
    .header .navbar .main-nav .nav-item a.nav-link.dropdown-toggle::after {
        margin-left: 0px;
        right: 0;
    }
}

.header .navbar .main-nav .nav-item.dropdown .dropdown-menu {
    padding: 0;
    width: 240px;
    top: 66px;
    border-radius: 3px;
    background: #ffffff;
    margin: 0;
    border: 0;
}

@media (max-width: 991px) {
    .header .navbar .main-nav .nav-item.dropdown .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }
}

.header .navbar .main-nav .nav-item.dropdown .dropdown-menu li {
    margin: 3px;
}

.header .navbar .main-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
    font-size: 14px;
    padding: 12px 10px 12px 20px;
    color: rgba(0, 18, 25, 0.8);
}

.header .navbar .main-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:hover, .header .navbar .main-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:focus {
    border-radius: 3px;
    background: #e73667;
    color: #ffffff;
}

.header .navbar .main-nav .nav-item.dropdown .dropdown-menu li:hover {
    border-radius: 3px;
}

.header .navbar .header-right-btn {
    flex-direction: row;
    justify-content: end;
}

@media (max-width: 991px) {
    .header .navbar .header-right-btn {
        justify-content: start;
    }
}

.header .navbar .header-right-btn .color-switcher {
    color: #001219;
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
}

.header .navbar .header-right-btn .color-switcher svg {
    height: 18px;
}

.header .navbar .header-right-btn .color-switcher svg.dark-icon {
    display: inline-block;
}

.header .navbar .header-right-btn .color-switcher svg.light-icon {
    display: none;
}

.header .navbar .site-nice-select {
    color: #001219;
    border: 0;
    border-radius: 50px;
    display: inline-block;
    height: 40px;
}

@media (max-width: 991px) {
    .header .navbar .site-nice-select {
        background: rgba(210, 211, 216, 0.5);
    }
}

.header.sticky-header {
    padding: 0px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

.header .dropdown-menu-dark {
    padding-top: 15px;
}

/* Banner Section */
.banner {
    padding: 180px 0 90px 0;
}

@media (max-width: 991px) {
    .banner {
        padding-top: 150px;
    }
}

.banner .banner-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-right: 100px;
}

@media (max-width: 1199px) {
    .banner .banner-content {
        margin-right: 0px;
    }
}

@media (max-width: 991px) {
    .banner .banner-content {
        display: block;
        margin-bottom: 50px;
        margin-right: 0px;
    }
}

.banner .banner-content h2 {
    font-size: 72px;
    margin-bottom: 20px;
    color: rgba(0, 18, 25, 0.8);
    font-weight: 700;
}

@media (max-width: 991px) {
    .banner .banner-content h2 {
        font-size: 46px;
    }
}

.banner .banner-content p {
    font-size: 22px;
}

.banner .banner-content .banner-anchors {
    margin-top: 20px;
}

.banner .banner-content .banner-anchors a {
    margin-right: 15px;
}

.banner .banner-right {
    text-align: right;
    position: relative;
    z-index: 1;
}

.banner .banner-right .banner-img {
    border-radius: 8px;
}

@media (max-width: 757px) {
    .banner .banner-right .banner-img {
        width: 100%;
    }
}

.banner .banner-right .dots {
    height: 166px;
    width: 300px;
    position: absolute;
    top: -60px;
    right: -60px;
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .banner .banner-right .dots {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .banner .banner-right .dots {
        display: none;
    }
}

.banner .banner-content-2 img {
    width: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.banner .banner-content-2 h4 {
    color: #ffc300;
    font-size: 18px;
    text-transform: uppercase;
}

.banner .banner-content-2 h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.banner .banner-content-2 p {
    font-size: 20px;
}

.banner .banner-content-2 .banner-anchors {
    margin-top: 40px;
}

.banner .banner-content-2 .banner-anchors a {
    margin: 0 8px;
}

/* Hero Area Slider */
.hero-area .single-hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-area .single-hero .hero-content {
    color: #ffffff;
}

.hero-area .single-hero .hero-content h4 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #ffc300;
}

.hero-area .single-hero .hero-content h1 {
    font-size: 62px;
    margin-bottom: 30px;
}

.hero-area .single-hero .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-area .owl-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-area .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin: 0 3px;
    display: inline-block;
}

.hero-area .owl-dots .owl-dot span {
    color: #003049;
}

.hero-area .owl-dots .owl-dot.active {
    border-color: #ffc300;
    background: #ffc300;
}

/* Investment Plans */
.single-investment-plan {
    margin-bottom: 30px;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: 0.3s;
    border: 2px solid rgba(231, 54, 103, 0.5);
    position: relative;
}

.single-investment-plan:hover {
    transform: translate3d(0, -4px, 0);
}

.single-investment-plan .investment-plan-icon {
    margin-bottom: 25px;
    width: 50px;
}

.single-investment-plan .feature-plan {
    position: absolute;
    padding: 3px 7px;
    border-radius: 6px;
    background: linear-gradient(95deg, #059dff 15%, #6549d5 45%, #e33fa1 75%, #fb5343) 95%/200% 100%;
    color: #ffffff;
    right: 10px;
    top: 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.single-investment-plan h3 {
    font-size: 26px;
    margin-bottom: 0px;
}

.single-investment-plan p {
    font-size: 14px;
    margin-bottom: 30px;
    color: rgba(231, 54, 103, 0.8);
}

.single-investment-plan ul li {
    position: relative;
    margin-bottom: 20px;
    font-size: 14px;
}

.single-investment-plan ul li span {
    float: right;
}

.single-investment-plan ul li span.special {
    padding: 2px 8px;
    background: rgba(42, 157, 143, 0.6);
    border-radius: 8px;
}

.single-investment-plan a {
    margin-top: 20px;
}

/* Earnings Calculator */
.earnings-calculator-img {
    position: relative;
}

@media (max-width: 1199px) {
    .earnings-calculator-img {
        margin-bottom: 30px;
    }
}

.earnings-calculator-img .video {
    position: absolute;
    bottom: 15px;
    left: 15px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: #e73667;
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s;
}

.earnings-calculator-img .video:hover {
    transform: scale(1.1);
}

.earnings-calculator {
    padding: 37px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.4);
}

.earnings-calculator .single-box {
    margin-bottom: 20px;
}

.earnings-calculator .single-box label {
    display: block;
    margin-bottom: 8px;
    color: #001219;
}

.earnings-calculator .single-box .plan-selects {
    color: #003049;
    background: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    height: 50px;
    outline: none;
}

.earnings-calculator .single-box .plan-selects:focus {
    box-shadow: none;
}

.earnings-calculator .single-box input {
    height: 50px;
    border-radius: 4px;
    padding: 0 15px;
}

.earnings-calculator .single-box input:focus {
    box-shadow: none;
}

.earnings-calculator .single-box .input-group .form-control {
    height: 50px;
    background: transparent;
    border-width: 2px;
    border-color: rgba(0, 48, 73, 0.2);
    outline: none;
    box-shadow: none;
    color: #001219;
    border-radius: 4px;
    font-size: 16px;
    padding-left: 15px;
}

.earnings-calculator .single-box .input-group .form-control:disabled {
    color: #2a9d8f;
    border-color: rgba(42, 157, 143, 0.5);
}

.earnings-calculator .single-box .input-group .input-group-text {
    background: transparent;
    color: #001219;
    border-width: 2px;
    border-color: rgba(0, 48, 73, 0.2);
    border-radius: 0 4px 4px 0;
    padding: 0.375rem 2.75rem;
    font-weight: 500;
}

.earnings-calculator .single-box button {
    border: 0;
}

.earnings-calculator .single-box .site-nice-select {
    border-color: rgba(0, 18, 25, 0.2);
    border-width: 2px;
}

.earnings-calculator .single-box .site-nice-select .current {
    color: #001219;
    font-weight: 500;
    font-size: 16px;
    line-height: 46px;
}

.earnings-calculator .single-box .site-nice-select .list {
    width: 100%;
}

.earnings-calculator .single-box .site-nice-select::after {
    border-bottom: 2px solid rgba(0, 18, 25, 0.5);
    border-right: 2px solid rgba(0, 18, 25, 0.5);
    height: 8px;
    width: 8px;
}

/* About */
.about-us .about-img {
    position: relative;
    margin-bottom: 30px;
}

.about-us .about-img::before {
    position: absolute;
    width: 200px;
    height: 200px;
    left: -60px;
    top: 0;
    border-radius: 50%;
    background: rgba(231, 54, 103, 0.3);
    content: "";
}

.about-us .about-img img {
    border-radius: 50%;
    width: 500px;
}

@media (max-width: 757px) {
    .about-us .about-img img {
        width: 100%;
    }
}

.about-us .about-img .content {
    position: absolute;
    left: 0;
    bottom: 40px;
    padding: 10px 20px;
    background: #ffc300;
    color: #001219;
    font-size: 22px;
}

.about-us .about-content .content {
    color: rgba(0, 18, 25, 0.5);
}

/* How it works */
.how-it-works .how-it-works-single {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.how-it-works .how-it-works-single::before {
    position: absolute;
    content: "";
    background: url("frontend/materials/arrow.png") no-repeat;
    height: 70px;
    width: 80px;
    top: 20px;
    left: 100%;
    transform: rotate(25deg) translateX(-50%);
    filter: brightness(0) invert(0);
}

@media (max-width: 575px) {
    .how-it-works .how-it-works-single::before {
        display: none;
    }
}

.how-it-works .how-it-works-single .icon-box {
    height: 90px;
    width: 90px;
    text-align: center;
    line-height: 90px;
    border-radius: 8px;
    font-size: 32px;
    margin: auto;
    margin-bottom: 20px;
    background: #e73667;
    color: #ffffff;
    position: relative;
}

.how-it-works .how-it-works-single .icon-box span {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ffc300;
    color: #003049;
    height: 30px;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 16px;
}

.how-it-works .how-it-works-single .icon-box .icon-box-icon {
    width: 46px;
    margin-top: -12px;
    filter: brightness(0) invert(1);
}

.how-it-works .how-it-works-single h4 {
    color: #001219;
    font-size: 20px;
    margin-bottom: 15px;
}

.how-it-works .how-it-works-single p {
    margin-bottom: 0px;
    color: rgba(0, 18, 25, 0.5);
}

.how-it-works .row [class*="col"]:last-child .how-it-works-single::before {
    display: none;
}

.how-it-works .row [class*="col"]:nth-of-type(4n + 4) .how-it-works-single::before {
    display: none;
}

/* brands logos */
.brands-logo .single-brands-logo {
    text-align: center;
    margin-bottom: 60px;
}

.brands-logo .single-brands-logo img {
    height: 30px;
    width: auto;
    opacity: 0.5;
    transition: 0.3s;
}

.brands-logo .single-brands-logo img:hover {
    opacity: 0.9;
}

/* CTA */
.cta {
    padding: 120px 0;
}

.cta .headding h2 {
    font-size: 42px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .cta .headding {
        text-align: center;
        margin-bottom: 10px;
    }
}

.cta .btns {
    float: right;
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .cta .btns {
        float: none;
        text-align: center;
    }
}

.cta .btns a {
    margin-left: 10px;
}

@media (max-width: 991px) {
    .cta .btns a {
        margin: 0px 5px;
    }
}

/* content-feature */
.content-feature .content-tab .nav {
    width: 380px;
}

.content-feature .content-tab .nav .nav-link {
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    width: 100%;
}

.content-feature .content-tab .nav .nav-link.active {
    background: url("frontend/images/banner-bg.html") no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.content-feature .content-tab .nav .nav-link.active::after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    background: #e73667;
    opacity: 0.4;
    z-index: -1;
    border-radius: 6px;
}

.content-feature .content-tab .nav .nav-link h4 {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: initial;
    color: #ffffff;
}

.content-feature .content-tab .nav .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.content-feature .content-tab .tab-content {
    width: 100%;
    height: 100%;
}

.content-feature .content-tab .tab-content img {
    border-radius: 6px;
}

/* What we do */
.what-we-do .single-what-we-do {
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.what-we-do .single-what-we-do i {
    font-size: 25px;
    margin-bottom: 30px;
}

.what-we-do .single-what-we-do h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.what-we-do .single-what-we-do p {
    margin-bottom: 10px;
}

.what-we-do .single-what-we-do a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.what-we-do .single-what-we-do a i {
    margin-bottom: 0;
    margin-left: 5px;
    position: relative;
    top: 1px;
    font-size: 14px;
}

.what-we-do .single-what-we-do:hover {
    background: rgba(231, 54, 103, 0.2);
    border-color: rgba(231, 54, 103, 0.1);
    color: #ffffff;
}

.what-we-do .single-what-we-do:hover a:hover {
    color: #ffc300;
}

/* About */
.why-choose-us .why-choose-us-img {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.why-choose-us .why-choose-us-img::before {
    position: absolute;
    width: 200px;
    height: 200px;
    left: -60px;
    top: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    content: "";
    opacity: 0.6;
}

.why-choose-us .why-choose-us-img img {
    border-radius: 50%;
    width: 500px;
}

@media (max-width: 757px) {
    .why-choose-us .why-choose-us-img img {
        width: 100%;
    }
}

.why-choose-us .why-choose-us-content {
    margin-bottom: 30px;
}

.why-choose-us .why-choose-us-content .single {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
}

.why-choose-us .why-choose-us-content .single .icons .icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    background: #e73667;
    color: #ffffff;
}

.why-choose-us .why-choose-us-content .single .content {
    padding-left: 20px;
}

.why-choose-us .why-choose-us-content .single .content h4 {
    color: rgba(0, 18, 25, 0.8);
    font-size: 20px;
    margin-bottom: 5px;
}

.why-choose-us .why-choose-us-content .single .content p {
    margin-bottom: 0;
}

/* Team Section */
.single-team {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 6px;
    border: 2px solid;
    border-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.single-team .thumb {
    text-align: center;
    margin-bottom: 30px;
}

.single-team .thumb img {
    border-radius: 50%;
    width: 150px;
    filter: grayscale(1);
}

.single-team .designation h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.single-team .designation p {
    font-style: italic;
}

.single-team .designation .socials {
    margin-top: 20px;
}

.single-team .designation .socials a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    margin: 0 3px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    background: rgba(231, 54, 103, 0.1);
    color: #ffffff;
}

.single-team .designation .socials a:hover {
    background: #e73667;
}

/* Counter Area */
.single-stat {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.single-stat img {
    width: 50px;
    margin-bottom: 25px;
}

.single-stat h3 {
    margin-bottom: 10px;
    font-size: 52px;
}

@media (max-width: 575px) {
    .single-stat h3 {
        font-size: 36px;
    }
}

.single-stat h4 {
    font-size: 22px;
}

@media (max-width: 575px) {
    .single-stat h4 {
        font-size: 18px;
    }
}

/* Blog Post */
.single-blog {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 6px;
    transition: 0.3s;
}

.single-blog .thumb img {
    width: 100%;
    border-radius: 6px 6px 0 0;
}

.single-blog .content {
    padding: 25px 30px;
    color: rgba(0, 18, 25, 0.5);
}

.single-blog .content .meta {
    margin-bottom: 5px;
}

.single-blog .content .meta .date {
    font-size: 14px;
    font-style: italic;
}

.single-blog .content .title h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.single-blog .content .title h3 a {
    color: #001219;
}

.single-blog .content .title h3 a:hover {
    color: #e73667;
}

.single-blog .content .des p {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-blog .content .link a {
    color: #001219;
    font-style: 15px;
    position: relative;
    font-weight: 500;
    font-style: 18px;
}

.single-blog .content .link a::after {
    position: absolute;
    content: "";
    height: 2px;
    background: #e73667;
    width: 0px;
    transition: 0.3s;
    left: 0;
    bottom: 0px;
}

.single-blog .content .link a:hover {
    color: #e73667;
}

.single-blog .content .link a:hover::after {
    width: 100%;
}

.single-blog:hover {
    transform: translate3d(0, -4px, 0);
}

/* Blog Details */
.blog-details {
    color: rgba(0, 18, 25, 0.5);
}

.blog-details img {
    width: 100%;
    margin-bottom: 30px;
}

.blog-details .blog-meta {
    margin-bottom: 10px;
}

.blog-details .blog-meta span a {
    margin-right: 10px;
    font-size: 14px;
    display: inline-block;
    color: #ffffff;
}

.blog-details .blog-meta span a:hover {
    color: #e73667;
}

.blog-details .blog-meta span a i {
    color: #e73667;
    font-size: 16px;
    font-weight: bold;
    margin-right: 5px;
}

.blog-details h2 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 30px;
}

.blog-details .blockquote {
    font-size: 18px;
    font-style: italic;
    padding-left: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #001219;
}

.blog-all-comments {
    color: rgba(230, 57, 70, 0.5);
}

.blog-all-comments h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
}

.blog-all-comments .blog-comments {
    margin-bottom: 40px;
    padding: 30px 40px;
    overflow: hidden;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 6px;
}

.blog-all-comments .blog-comments div {
    overflow: hidden;
}

.blog-all-comments .blog-comments .author-thumb {
    width: 20%;
    float: left;
}

.blog-all-comments .blog-comments .author-thumb img {
    border-radius: 6px;
    width: 70px;
}

.blog-all-comments .blog-comments .author-comments .author-details h4 {
    float: left;
    font-size: 18px;
}

.blog-all-comments
.blog-comments
.author-comments
.author-details
.comment-reply-btn {
    float: right;
}

.blog-all-comments .blog-comments .author-comments .author-designation {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 5px;
    font-style: italic;
}

.blog-comment-form {
    margin-bottom: 30px;
    color: rgba(230, 57, 70, 0.5);
}

.blog-comment-form h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-comment-form input,
.blog-comment-form textarea {
    width: 100%;
    border: 2px solid rgba(230, 57, 70, 0.08);
    text-indent: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
    background: transparent;
    color: #e63946;
    border-radius: 4px;
}

.blog-comment-form input::placeholder,
.blog-comment-form textarea::placeholder {
    color: rgba(230, 57, 70, 0.5);
}

.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
    border-color: rgba(230, 57, 70, 0.5);
}

.blog-comment-form input {
    height: 50px;
}

.blog-comment-form textarea {
    padding-top: 15px;
}

.blog-comments + .blog-comments {
    margin-left: 15%;
}

@media (max-width: 767px) {
    .blog-comment-form {
        margin-bottom: 40px;
    }
}

.post-share-and-tag {
    margin-top: 40px;
}

.post-share-and-tag .social {
    color: #001219;
}

@media (max-width: 767px) {
    .post-share-and-tag .social {
        float: none;
        text-align: left;
        margin-top: 20px;
    }
}

.post-share-and-tag .social span {
    font-size: 20px;
}

.post-share-and-tag .social a {
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
    color: #001219;
}

.post-share-and-tag .social a:hover {
    color: #ffc300;
}

.post-share-and-tag .tags {
    color: #e63946;
}

.post-share-and-tag .tags a {
    color: #292929;
    text-transform: capitalize;
}

.post-share-and-tag .tags a:hover {
    color: #e63946;
}

.blog-details .big-thumb {
    width: 100%;
    margin-bottom: 30px;
}

.blog-details .blockquote {
    border-radius: 8px;
    background: #001219;
    padding: 30px;
    border-bottom: 2px solid rgba(231, 54, 103, 0.8);
}

/* Sidebar */
.site-sidebar .single-sidebar {
    margin-bottom: 40px;
    padding: 30px;
    color: #001219;
    border: 2px solid rgba(0, 18, 25, 0.2);
    border-radius: 8px;
}

.site-sidebar .single-sidebar div {
    overflow: hidden;
}

.site-sidebar .single-sidebar:last-child {
    margin-bottom: 0;
}

.site-sidebar .single-sidebar h3 {
    font-size: 24px;
    position: relative;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.site-sidebar .single-sidebar form {
    width: 100%;
    position: relative;
    height: 50px;
    border-radius: 4px;
    border-radius: 50px;
}

.site-sidebar .single-sidebar form input {
    width: 100%;
    height: 100%;
    transition: 0.4s;
    padding: 0 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
}

.site-sidebar .single-sidebar form input:focus {
    border-color: rgba(231, 54, 103, 0.2);
}

.site-sidebar .single-sidebar form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.site-sidebar .single-sidebar form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 50px;
    border-radius: 0 50px 50px 0;
}

.site-sidebar .single-sidebar form button:hover {
    color: #e73667;
}

.site-sidebar .single-sidebar ul li {
    margin-bottom: 20px;
    position: relative;
    transition: 0.4s;
}

.site-sidebar .single-sidebar ul li:last-child {
    margin-bottom: 0;
}

.site-sidebar .single-sidebar ul li a {
    color: #ffffff;
    display: inline-block;
    text-transform: capitalize;
    background: rgba(231, 54, 103, 0.3);
    padding: 7px 20px;
    border-radius: 50px;
}

.site-sidebar .single-sidebar ul li a:hover {
    color: #003049;
    background: #ffc300;
}

.site-sidebar .single-sidebar .social-follow a {
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    margin: 5px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: rgba(231, 54, 103, 0.3);
}

.site-sidebar .single-sidebar .social-follow a:hover {
    background: #ffc300;
    color: #001219;
}

.site-sidebar .single-sidebar .social-follow a i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .site-sidebar .single-sidebar .social-follow a {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .site-sidebar .single-sidebar .social-follow a {
        width: 100%;
    }
}

.site-sidebar .single-sidebar a img {
    width: 100%;
}

/* Newslatter */
.newslatter-section {
    border-bottom: 1px solid rgba(84, 104, 255, 0.1);
}

.newslatter-section .newslatter form {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .newslatter-section .newslatter form {
        display: block;
    }
}

.newslatter-section .newslatter form input {
    height: 50px;
    flex: 1 1 70%;
    border: 2px solid;
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    transition: 0.3s;
    padding: 0 15px;
    margin-right: 20px;
    border-radius: 8px;
}

.newslatter-section .newslatter form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newslatter-section .newslatter form input:focus {
    border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 575px) {
    .newslatter-section .newslatter form input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
}

.newslatter-section .newslatter form button {
    height: 50px;
    flex: 1 1 30%;
    background: #e73667;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid;
    border-color: #e73667;
    font-size: 14px;
    border-radius: 8px;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .newslatter-section .newslatter form button {
        width: 100%;
    }
}

.newslatter-section .newslatter form button:hover {
    color: #ffffff;
}

/* Auth Section */
.site-auth {
    width: 100%;
    min-height: 100vh;
    background: #003049;
    background-size: cover;
    position: relative;
}

.site-auth .auth-content {
    padding: 40px 60px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .site-auth .auth-content {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .site-auth .auth-content {
        padding: 40px 15px;
    }
}

.site-auth .auth-content .logo {
    margin-bottom: 60px;
}

.site-auth .auth-content .logo a img {
    height: 50px;
}

@media (max-width: 575px) {
    .site-auth .auth-content .logo {
        margin-bottom: 80px;
    }
}

.site-auth .auth-content .title {
    margin-bottom: 40px;
}

.site-auth .auth-content .title h2 {
    color: #001219;
}

.site-auth .auth-content .title p {
    color: rgba(0, 18, 25, 0.6);
}

.site-auth .auth-content .site-auth-form .single-field {
    margin-bottom: 20px;
}

.site-auth .auth-content .site-auth-form .single-field .box-label {
    font-weight: 500;
    color: rgba(0, 18, 25, 0.8);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.site-auth .auth-content .site-auth-form .single-field .box-label .required-field {
    color: #ef476f;
}

.site-auth .auth-content .site-auth-form .single-field .box-input {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    text-indent: 15px;
    background: #ffffff;
    transition: 0.3s;
    border: 1px solid transparent;
    position: relative;
    border: 1px solid #cdd4e7;
}

.site-auth .auth-content .site-auth-form .single-field .box-input::placeholder {
    color: rgba(0, 18, 25, 0.5);
}

.site-auth .auth-content .site-auth-form .single-field .box-input:focus {
    border: 1px solid #e73667;
}

.site-auth .auth-content .site-auth-form .single-field .site-nice-select {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    padding: 0 15px;
    line-height: 3;
    background: #ffffff;
    transition: 0.3s;
    border: 1px solid transparent;
    position: relative;
    font-size: 16px;
    border: 1px solid #cdd4e7;
    margin-bottom: 20px;
}

.site-auth .auth-content .site-auth-form .single-field .site-nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-y: scroll;
}

.site-auth .auth-content .site-auth-form .single-field .site-nice-select::after {
    border-bottom: 2px solid rgba(0, 18, 25, 0.5);
    border-right: 2px solid rgba(0, 18, 25, 0.5);
    height: 8px;
    width: 8px;
}

.site-auth .auth-content .site-auth-form .single-field .joint-input {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #cdd4e7;
}

.site-auth .auth-content .site-auth-form .single-field .joint-input .input-group-text {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.site-auth .auth-content .site-auth-form .single-field .joint-input .form-control {
    border: none;
    border-left: 1px solid #dddddd87;
}

.site-auth .auth-content .site-auth-form .single-field .joint-input .form-control:focus {
    box-shadow: none;
}

.site-auth .auth-content .site-auth-form .single-field .form-select {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    padding: 0 15px;
    line-height: 3;
    transition: 0.3s;
    border: 1px solid transparent;
    position: relative;
    font-size: 16px;
    border: 1px solid #cdd4e7;
}

.site-auth .auth-content .site-auth-form .single-field .password {
    position: relative;
}

.site-auth .auth-content .site-auth-form .single-field .password a {
    position: absolute;
    display: inline-block;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.site-auth .auth-content .site-auth-form .single-field .password a img {
    width: 32px;
    height: 17px;
}

.site-auth .auth-content .site-auth-form .single-field .check-input {
    margin-right: 5px;
    border: 2px solid #ffffff;
    border: 1px solid #cdd4e7;
    height: 1.3em;
    width: 1.3em;
    margin-top: 2px;
}

.site-auth .auth-content .site-auth-form .single-field .check-input:focus {
    box-shadow: none;
}

.site-auth .auth-content .site-auth-form .single-field .check-input:checked {
    background-color: #e73667;
    border: 2px solid #e73667;
}

.site-auth .auth-content .site-auth-form .single-field .form-check-label a {
    color: #e73667;
}

.site-auth .auth-content .site-auth-form .single-field .form-check-label a:hover {
    color: #003049;
}

.site-auth .auth-content .site-auth-form .single-field .forget-pass-text {
    float: right;
}

.site-auth .auth-content .site-auth-form .single-field .forget-pass-text a {
    color: #001219;
}

.site-auth .auth-content .site-auth-form .single-field .forget-pass-text a:hover {
    color: #e73667;
}

.site-auth .auth-content .site-auth-form button {
    margin-bottom: 20px;
}

.site-auth .auth-content .site-auth-form .singnup-text {
    text-align: center;
}

.site-auth .auth-content .site-auth-form .singnup-text p {
    margin-bottom: 0;
    color: #001219;
}

.site-auth .auth-content .site-auth-form .singnup-text p a {
    color: #e73667;
    position: relative;
}

.site-auth .auth-content .site-auth-form .singnup-text p a::after {
    position: absolute;
    content: "";
    height: 2px;
    background: #003049;
    width: 0px;
    transition: 0.3s;
    left: 0;
    bottom: -2px;
}

.site-auth .auth-content .site-auth-form .singnup-text p a:hover {
    color: #003049;
}

.site-auth .auth-content .site-auth-form .singnup-text p a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .site-auth {
        height: auto;
    }
}

/* User Panel Section */
.user-dashboard-content .user-sidebar {
    padding: 40px 30px;
    border-radius: 8px;
    background: #001219;
    margin-bottom: 30px;
}

.user-dashboard-content .user-sidebar ul {
    padding: 0;
}

.user-dashboard-content .user-sidebar ul li {
    margin-bottom: 10px;
}

.user-dashboard-content .user-sidebar ul li:last-child {
    margin-bottom: 0;
}

.user-dashboard-content .user-sidebar ul li a {
    color: #ffffff;
    font-size: 18px;
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    position: relative;
    background: #003049;
}

.user-dashboard-content .user-sidebar ul li a i {
    margin-right: 10px;
}

.user-dashboard-content .user-sidebar ul li a:hover {
    background: #e73667;
}

.user-dashboard-content .user-sidebar ul li.active a {
    background: #e73667;
}

.user-dashboard-content .user-sidebar ul li.active a::after {
    position: absolute;
    height: 100%;
    width: 7px;
    content: "";
    top: 0;
    left: 0;
    background: #ffc300;
    border-radius: 10px 0 0 10px;
}

.user-dashboard-content .user-cards {
    margin-bottom: 20px;
}

.user-dashboard-content .user-cards .single {
    background: #e73667;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 195, 0, 0.5);
    margin-bottom: 30px;
    transition: 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.user-dashboard-content .user-cards .single::before {
    position: absolute;
    height: 65px;
    width: 65px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 195, 0, 0.5);
    right: -25px;
    top: -25px;
}

.user-dashboard-content .user-cards .single:hover {
    transform: translate3d(0, -4px, 0);
}

.user-dashboard-content .user-cards .single .icon {
    font-size: 24px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    color: #535a94;
    display: inline-block;
    margin-right: 15px;
}

.user-dashboard-content .user-cards .single .content h4 {
    margin-bottom: 5px;
    color: #ffffff;
}

.user-dashboard-content .user-cards .single .content h4 b {
    font-weight: 400;
    font-size: 16px;
    position: relative;
    top: -8px;
    margin-right: 2px;
}

.user-dashboard-content .user-cards .single .content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* user-panel-title */
.user-panel-title {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.user-panel-title h3 {
    font-size: 18px;
    color: #001219;
    display: inline-block;
    margin-bottom: 0;
}

/* Transaction Table */
.transaction-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

.transaction-list .table {
    margin-bottom: 0;
    border: 1px solid rgba(0, 18, 25, 0.1);
}

.transaction-list .table thead {
    background: rgba(231, 54, 103, 0.2);
    color: #001219;
}

.transaction-list .table thead tr th {
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.transaction-list .table tbody tr {
    cursor: default;
}

.transaction-list .table tbody tr th {
    padding: 20px;
    vertical-align: middle;
}

.transaction-list .table tbody tr td {
    font-size: 16px;
    padding: 20px;
    vertical-align: middle;
}

.transaction-list .table tbody tr td strong {
    font-weight: 700;
}

.transaction-list .table tbody tr td span {
    font-size: 14px;
    font-weight: 300;
}

.transaction-list .table tbody tr td .payment-method {
    height: 40px;
}

.transaction-list .table tbody tr td a.view {
    color: #ffc300;
    font-size: 22px;
}

.transaction-list .table tbody tr td .badge {
    color: #ffffff;
    font-weight: 400;
}

.transaction-list .table tbody tr td .pending {
    background: #ffc300;
    color: #003049;
}

.transaction-list .table tbody tr td .success {
    background: #2a9d8f;
}

.transaction-list .table tbody tr td .completed {
    background: #ef476f;
}

/* User Ranking */
.user-ranking {
    margin-bottom: 30px;
    height: 200px;
    width: 200px;
    background: #5364f1;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid #ffc300;
    position: relative;
    z-index: 1;
    background-size: cover !important;
}

@media (max-width: 500px) {
    .user-ranking {
        margin: auto;
        margin-bottom: 30px;
    }
}

.user-ranking::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #003049;
    opacity: 0.92;
    z-index: -1;
}

.user-ranking h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
}

.user-ranking p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.user-ranking .rank {
    position: absolute;
    height: 50px;
    width: 50px;
    content: "";
    border-radius: 50%;
    right: 0px;
    top: 0px;
    background: #5364f1;
    line-height: 34px;
    border: 5px solid #ffc300;
}

.user-ranking .rank img {
    height: 25px;
}

/* Referral Link */
.referral-link .referral-link-form {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 7px;
}

@media (max-width: 575px) {
    .referral-link .referral-link-form {
        display: block;
    }
}

.referral-link .referral-link-form input {
    height: 50px;
    flex: 1 1 75%;
    border: 2px solid;
    border-color: rgba(0, 18, 25, 0.1);
    background: transparent;
    color: #001219;
    transition: 0.3s;
    padding: 0 15px;
    margin-right: 0px;
    border-radius: 4px 0 0 4px;
    border-right: 0;
    font-size: 18px;
}

.referral-link .referral-link-form input::placeholder {
    color: rgba(0, 18, 25, 0.8);
}

@media (max-width: 575px) {
    .referral-link .referral-link-form input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
        border-radius: 4px;
        border-right: 2px solid rgba(0, 18, 25, 0.1);
    }
}

.referral-link .referral-link-form button {
    height: 50px;
    flex: 1 1 25%;
    background: #e73667;
    color: #ffffff;
    border: 2px solid;
    border-color: #e73667;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
}

.referral-link .referral-link-form button i {
    margin-right: 5px;
}

@media (max-width: 575px) {
    .referral-link .referral-link-form button {
        width: 100%;
        border-radius: 4px;
    }
}

.referral-link .referral-link-form button:hover {
    color: #ffffff;
    background: #e73667;
    border-color: #e73667;
}

.referral-link .referral-joined {
    font-size: 14px;
    margin-bottom: 0;
    color: rgba(0, 18, 25, 0.4);
}

/* investment-modal */
.investment-modal .modal-header {
    border-bottom: 0;
}

.investment-modal .modal-header h5 {
    font-size: 26px;
}

.investment-modal .modal-header .btn-close {
    transition: 0.3s;
}

.investment-modal .modal-header .btn-close:hover {
    transform: rotate(90deg);
}

.investment-modal .modal-footer {
    border-top: 0;
}

.investment-modal .modal-body .input-group .form-control {
    height: 50px;
    border-width: 2px;
    border-color: #d2d3d8;
}

.investment-modal .modal-body .input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.investment-modal .modal-body p {
    margin-top: 10px;
    margin-bottom: 0;
}

.investment-modal .modal-body p span {
    padding: 2px 8px;
    background: rgba(255, 195, 0, 0.6);
    border-radius: 8px;
    color: #003049;
}

/* progress-steps */
.progress-steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .progress-steps {
        display: none;
    }
}

.progress-steps .single-step {
    background: rgba(0, 18, 25, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    width: 100%;
    cursor: default;
    opacity: 0.3;
    margin-right: 20px;
    border: 2px solid rgba(0, 48, 73, 0.2);
    position: relative;
}

.progress-steps .single-step:last-child {
    margin-right: 0;
}

.progress-steps .single-step .number {
    background: #e73667;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    margin-right: 15px;
    font-size: 16px;
}

.progress-steps .single-step .content h4 {
    font-size: 18px;
    margin-bottom: 3px;
    color: #001219;
}

.progress-steps .single-step .content p {
    margin-bottom: 0;
    font-size: 14px;
}

.progress-steps .single-step.current {
    opacity: 1;
    background: #2a9d8f;
}

.progress-steps .single-step.current::after {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #ffc300;
    top: -10px;
    right: -10px;
    content: "";
}

.progress-steps .single-step.current .number {
    background: #ffc300;
    color: #003049;
}

.progress-steps .single-step.current .content h4 {
    color: #ffffff;
}

.progress-steps .single-step.current .content p {
    color: #ffffff;
}

/* progress-steps-form */
.progress-steps-form .form-label {
    color: #001219;
}

.progress-steps-form .input-group {
    margin-bottom: 20px;
}

.progress-steps-form .input-group .form-control {
    height: 50px;
    background: transparent;
    border-width: 2px;
    border-color: rgba(0, 18, 25, 0.2);
    outline: none;
    box-shadow: none;
    color: #001219;
    border-radius: 4px;
    font-size: 16px;
    padding-left: 15px;
}

.progress-steps-form .input-group .form-control:focus {
    border-color: rgba(231, 54, 103, 0.5);
}

.progress-steps-form .input-group .form-control.textarea {
    height: 120px;
    padding-top: 10px;
}

.progress-steps-form .input-group .form-control.disabled {
    background: rgba(0, 18, 25, 0.1);
    opacity: 0.7;
}

.progress-steps-form .input-group .form-select {
    height: 50px;
    border-width: 2px;
    border-color: rgba(0, 18, 25, 0.2);
    outline: none;
    box-shadow: none;
    color: #001219;
    border-radius: 4px;
    font-size: 16px;
    padding-left: 15px;
}

.progress-steps-form .input-group .form-select:focus {
    border-color: rgba(231, 54, 103, 0.5);
}

.progress-steps-form .input-group .form-select.disabled {
    background: rgba(0, 18, 25, 0.1);
    opacity: 0.7;
}

.progress-steps-form .input-group .input-group-text {
    background: transparent;
    color: #001219;
    border-width: 2px;
    border-color: rgba(0, 18, 25, 0.2);
    border-radius: 0 4px 4px 0;
    padding: 0.375rem 2.75rem;
    font-weight: 500;
}

.progress-steps-form .input-group .input-group-text:focus {
    border-color: rgba(231, 54, 103, 0.5);
}

.progress-steps-form .input-group .form-control-textarea {
    width: 100%;
    height: 120px;
    background: transparent;
    border-width: 2px;
    border-color: rgba(0, 18, 25, 0.2);
    outline: none;
    box-shadow: none;
    color: #001219;
    border-radius: 4px;
    font-size: 16px;
    padding: 15px;
    padding-top: 10px;
}

.progress-steps-form .input-group .form-control-textarea:focus {
    border-color: rgba(231, 54, 103, 0.5);
}

.progress-steps-form .input-group .site-nice-select {
    width: 100%;
    height: 50px;
    border-radius: 4px !important;
    padding: 0 15px;
    background: #ffffff;
    transition: 0.3s;
    position: relative;
    border-width: 2px;
    border-color: rgba(0, 18, 25, 0.2);
}

.progress-steps-form .input-group .site-nice-select .current {
    font-weight: 500;
    font-size: 16px;
    line-height: 46px;
}

.progress-steps-form .input-group .site-nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-y: scroll;
    box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.4);
    background: #d2d3d8;
}

.progress-steps-form .input-group .site-nice-select::after {
    border-bottom: 2px solid rgba(0, 18, 25, 0.5);
    border-right: 2px solid rgba(0, 18, 25, 0.5);
    height: 8px;
    width: 8px;
    right: 15px;
}

.progress-steps-form .buttons {
    display: flex;
    flex: row;
    justify-content: space-between;
}

.progress-steps-form .buttons button i {
    position: relative;
    top: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

.progress-steps-form .buttons a i {
    position: relative;
    top: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

.progress-steps-form .single-choice {
    margin-bottom: 30px;
    text-align: center;
}

.progress-steps-form .single-choice .gateway-btn {
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid rgba(231, 54, 103, 0.4);
    width: 100%;
}

.progress-steps-form .single-choice .gateway-btn .payment-icon {
    height: 30px;
}

.progress-steps-form .single-choice .gateway-btn:hover {
    background: rgba(231, 54, 103, 0.2);
}

.progress-steps-form .single-choice .btn-check:active + .gateway-btn,
.progress-steps-form .single-choice .btn-check:checked + .gateway-btn,
.progress-steps-form .single-choice .gateway-btn.active,
.progress-steps-form .single-choice .gateway-btn:active,
.progress-steps-form .single-choice .show > .gateway-btn.dropdown-toggle {
    background: rgba(231, 54, 103, 0.4);
    border: 2px solid rgba(231, 54, 103, 0.4);
}

.progress-steps-form .single-choice .btn-check:active + .gateway-btn .payment-icon,
.progress-steps-form .single-choice .btn-check:checked + .gateway-btn .payment-icon,
.progress-steps-form .single-choice .gateway-btn.active .payment-icon,
.progress-steps-form .single-choice .gateway-btn:active .payment-icon,
.progress-steps-form .single-choice .show > .gateway-btn.dropdown-toggle .payment-icon {
    opacity: 1;
}

.progress-steps-form .transaction-status {
    background: rgba(190, 227, 219, 0.8);
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    color: #001219;
    margin-bottom: 30px;
}

.progress-steps-form .transaction-status .icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 24px;
}

.progress-steps-form .transaction-status .icon.success {
    background: #2a9d8f;
}

.progress-steps-form .transaction-status .icon.cancelled {
    background: #ef476f;
}

.progress-steps-form .transaction-status h2 {
    margin-bottom: 10px;
}

.progress-steps-form .transaction-status p {
    margin-bottom: 30px;
}

.single-progress-steps-form .form-select {
    height: 60px;
    border: 0px;
    outline: none;
    box-shadow: none;
    color: #001219;
    border-radius: 8px;
    font-size: 18px;
    padding-left: 20px;
}

.single-progress-steps-form .transaction-description {
    background: transparent;
    padding: 15px;
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 30px;
    width: 100%;
    border-width: 2px;
    border-color: rgba(231, 54, 103, 0.4);
    outline: none;
}

.single-progress-steps-form .transaction-description::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.user-buttons {
    display: flex;
    flex: row;
    justify-content: space-between;
}

.user-buttons button i {
    position: relative;
    top: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

.user-buttons a i {
    position: relative;
    top: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

/* Site pagination */
.site-pagination {
    padding-top: 15px;
}

.site-pagination .page-item.active .page-link {
    background: #e73667;
    color: #ffffff;
    border-color: #e73667;
}

.site-pagination .page-item .page-link {
    color: #001219;
    font-size: 14px;
}

/* site form area */
.site-form form h4 {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 10px;
}

.site-form form p {
    font-size: 16px;
    margin-bottom: 15px;
}

.site-form form input,
.site-form form textarea {
    width: 100%;
    border: 2px solid rgba(0, 18, 25, 0.1);
    background: transparent;
    color: #001219;
    text-indent: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 4px;
}

.site-form form input:focus,
.site-form form textarea:focus {
    border: 2px solid rgba(0, 18, 25, 0.2);
}

.site-form form input:focus-visible,
.site-form form textarea:focus-visible {
    border: 2px solid rgba(0, 18, 25, 0.2);
}

.site-form form input::placeholder,
.site-form form textarea::placeholder {
    color: rgba(0, 18, 25, 0.4);
}

.site-form form input {
    height: 50px;
}

.site-form form select {
    height: 50px;
    background: #1c4256;
    border: 2px solid rgba(0, 18, 25, 0.1);
    color: rgba(0, 18, 25, 0.4);
}

.site-form form select:focus {
    border: 2px solid rgba(0, 18, 25, 0.2);
    outline: none;
    box-shadow: none;
}

.site-form form textarea {
    text-indent: 0;
    padding: 10px 15px;
}

.site-form form .extra-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
}

.site-form form .extra-links a {
    color: rgba(0, 18, 25, 0.5);
}

.site-form form .extra-links a:hover {
    color: #e73667;
}

/* Settings Tab */
.settings-tab {
    margin-top: 30px;
}

.settings-tab .nav .nav-item {
    margin-right: 10px;
}

.settings-tab .nav .nav-item .nav-link {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
}

.settings-tab .nav .nav-item .nav-link.active {
    background: #e73667;
}

.settings-tab .single {
    margin-bottom: 20px;
}

.settings-tab .single label {
    display: block;
}

.settings-tab .single .input-group .form-control {
    height: 60px;
    background: transparent;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    box-shadow: none;
    color: #ffffff;
    border-radius: 8px;
    font-size: 18px;
    padding-left: 20px;
}

/* Footer Style */
.footer {
    position: relative;
    z-index: 1;
}

.footer .footer-widget {
    margin-bottom: 30px;
}

.footer .footer-widget h4 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer .footer-widget p {
    margin-bottom: 20px;
    padding-right: 40px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .footer .footer-widget p {
        padding-right: 0;
    }
}

.footer .footer-widget .socials a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 4px;
    color: #e73667;
    background: rgba(231, 54, 103, 0.2);
    display: inline-block;
    text-align: center;
    margin-right: 6px;
    font-size: 16px;
}

.footer .footer-widget .socials a:hover {
    color: #001219;
    background: #ffc300;
}

.footer .footer-widget .footer-nav ul {
    margin: 0;
    padding: 0;
}

.footer .footer-widget .footer-nav ul li {
    margin-bottom: 12px;
}

.footer .footer-widget .footer-nav ul li a {
    color: rgba(255, 255, 255, 0.44);
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-widget .footer-nav ul li a::after {
    position: absolute;
    content: "";
    height: 2px;
    background: #ffc300;
    width: 0px;
    transition: 0.3s;
    left: 0;
    bottom: 0px;
}

.footer .footer-widget .footer-nav ul li a:hover {
    color: #ffc300;
}

.footer .footer-widget .footer-nav ul li a:hover::after {
    width: 100%;
}

.footer .copyright-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.footer .copyright-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer .copyright-text p a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.footer .copyright-text p a:hover {
    color: #e73667;
}

/* faq-contents */
.faq-contents {
    margin-bottom: 30px;
}

.faq-contents .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(0, 18, 25, 0.1);
    padding: 15px 0;
    border-radius: 0;
}

.faq-contents .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 500;
    color: #003049;
    background: transparent;
}

.faq-contents .accordion-item .accordion-header .accordion-button .icon {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: rgba(231, 54, 103, 0.3);
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #e73667;
}

.faq-contents .accordion-item .accordion-header .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-contents .accordion-item .accordion-header .accordion-button::after {
    height: 20px;
    width: 20px;
    background: #e73667;
    border-radius: 50%;
}

.faq-contents .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: rgba(231, 54, 103, 0.1);
}

.faq-contents .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
    background: rgba(231, 54, 103, 0.9);
    color: #ffffff;
}

.faq-contents .accordion-item .accordion-header .accordion-button.collapsed::after {
    background: rgba(231, 54, 103, 0.3);
}

.faq-contents .accordion-item .accordion-body .para {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 48, 73, 0.5);
}

.faq-contents .accordion-item .accordion-body .para a {
    color: #e73667;
    font-size: 16px;
    font-weight: 500;
}

.faq-contents .accordion-item .accordion-body .list ul li {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 7px;
    position: relative;
    padding-left: 18px;
    color: rgba(0, 48, 73, 0.6);
}

.faq-contents .accordion-item .accordion-body .list ul li::before {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: rgba(231, 54, 103, 0.8);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* User Panel Sidebar Css */
.panel-layout {
    background: #21273e08;
}

.panel-layout .panel-header {
    background: #ffffff;
    height: 70px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 100;
    display: flex;
}

.panel-layout .panel-header .logo {
    width: 400px;
    background-color: #bee3db;
    border-right: 1px solid #dddddd85;
    border-bottom: 1px solid #dddddd85;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .panel-layout .panel-header .logo {
        width: 0;
    }
}

.panel-layout .panel-header .logo a {
    display: block;
    text-align: center;
}

.panel-layout .panel-header .logo a .logo-unfold {
    height: 40px;
    margin-top: 16px;
}

.panel-layout .panel-header .logo a .logo-fold {
    display: none;
    width: 30px;
    margin: auto;
    margin-top: 21px;
}

.panel-layout .panel-header .nav-wrap {
    flex: 1;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd85;
}

.panel-layout .panel-header .nav-wrap .nav-left,
.panel-layout .panel-header .nav-wrap .nav-right {
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 0px;
    align-items: center;
    display: flex;
}

.panel-layout .panel-header .nav-wrap .nav-left li a,
.panel-layout .panel-header .nav-wrap .nav-right li a {
    border-radius: 2px;
    color: #001219;
    background: transparent;
    line-height: 1;
    padding: 8px 12px;
    color: #001219;
    display: block;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
}

.panel-layout .panel-header .nav-wrap .nav-left li a:hover,
.panel-layout .panel-header .nav-wrap .nav-right li a:hover {
    background: rgba(231, 54, 103, 0.1);
    color: #e73667;
}

.panel-layout .panel-header .nav-wrap .nav-left li a i,
.panel-layout .panel-header .nav-wrap .nav-right li a i {
    margin-right: 10px;
}

.panel-layout .panel-header .nav-wrap .nav-left .sidebar-toggle,
.panel-layout .panel-header .nav-wrap .nav-right .sidebar-toggle {
    border-radius: 4px;
    color: #001219;
    background: rgba(231, 54, 103, 0.1);
    color: #e73667;
    line-height: 1;
    padding: 8px 12px;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
}

.panel-layout .panel-header .nav-wrap .nav-left .sidebar-toggle:hover,
.panel-layout .panel-header .nav-wrap .nav-right .sidebar-toggle:hover {
    background: rgba(231, 54, 103, 0.8);
    color: #ffffff;
}

.panel-layout .panel-header .nav-wrap .nav-left .sidebar-toggle svg,
.panel-layout .panel-header .nav-wrap .nav-right .sidebar-toggle svg {
    height: 22px;
}

@media (max-width: 991px) {
    .panel-layout .panel-header .nav-wrap .nav-left .sidebar-toggle,
    .panel-layout .panel-header .nav-wrap .nav-right .sidebar-toggle {
        display: block;
        transform: scaleX(-1);
    }
}

.panel-layout .panel-header .nav-wrap .nav-left {
    margin-left: 20px;
}

.panel-layout .panel-header .nav-wrap .nav-right {
    margin-right: 20px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right {
    display: flex;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right {
    display: inline-block;
    margin-left: 10px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher {
    color: #001219;
    cursor: pointer;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher svg {
    height: 18px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher svg.dark-icon {
    display: inline-block;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .color-switcher svg.light-icon {
    display: none;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select {
    height: 32px;
    border-radius: 4px;
    color: rgba(0, 18, 25, 0.9);
    line-height: 2.15;
    padding: 0px 30px 0 12px;
    background: rgba(231, 54, 103, 0.1);
    transition: 0.3s;
    border: 1px solid rgba(231, 54, 103, 0.1);
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-y: scroll;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .site-nice-select::after {
    border-bottom: 2px solid rgba(0, 18, 25, 0.5);
    border-right: 2px solid rgba(0, 18, 25, 0.5);
    height: 7px;
    width: 7px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .item {
    display: inline-block;
    margin-left: 5px;
    border-radius: 4px;
    background: rgba(231, 54, 103, 0.1);
    border: 1px solid rgba(231, 54, 103, 0.1);
    line-height: 1;
    padding: 8px 12px;
    color: rgba(0, 18, 25, 0.9);
    font-size: 14px;
    font-weight: 500;
    height: 32px;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .item:hover {
    background: rgba(231, 54, 103, 0.9);
    color: #ffffff;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu {
    padding: 0;
    border: none;
    box-shadow: 0px 0px 2px #aab0c6;
    background: #ffffff;
    margin-top: 18px !important;
    width: 190px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li .dropdown-item {
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li .dropdown-item i {
    margin-right: 10px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li .dropdown-item:hover {
    background: rgba(231, 54, 103, 0.1);
    color: #e73667;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li.logout .dropdown-item {
    background: rgba(239, 71, 111, 0.1);
    color: #ef476f;
    border-radius: 0 0 4px 4px;
}

.panel-layout .panel-header .nav-wrap .nav-right .single-nav-right .single-right .dropdown-menu li.logout .dropdown-item:hover {
    background: #ef476f;
    color: #ffffff;
}

.panel-layout .side-nav {
    width: 400px;
    background-color: #bee3db;
    position: relative;
    z-index: 1000;
    top: 70px;
    bottom: 0px;
    position: fixed;
    overflow: auto;
    border-right: 1px solid #dddddd85;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .panel-layout .side-nav {
        width: 0;
    }
}

.panel-layout .side-nav .side-nav-inside {
    position: relative;
    height: 100%;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding-left: 0;
    overflow: auto;
    height: calc(100vh - 70px);
    padding: 30px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item {
    position: relative;
    display: block;
    border-radius: 6px;
    transition: 0.4s;
    margin-bottom: 10px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a {
    position: relative;
    display: block;
    padding: 10px 18px;
    white-space: nowrap;
    color: rgba(0, 18, 25, 0.7);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    z-index: 1;
    transition: 0.4s;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a::after {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0px;
    border-radius: 50px;
    background: rgba(0, 48, 73, 0.1);
    width: 0px;
    transition: 0.4s;
    z-index: -1;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a i {
    margin-right: 10px;
    font-size: 18px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a:hover {
    color: #003049;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item a:hover::after {
    width: 100%;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.active a {
    background: #535a94;
    color: #ffffff;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.active a::after {
    display: none;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-items:not(.show) {
    display: none;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-items li {
    margin-bottom: 5px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-items li a {
    font-size: 12px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-items li a svg {
    height: 16px;
    margin-right: 15px;
    position: relative;
    left: 10px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-items li.active a {
    background: #e73667;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-link {
    position: relative;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown .dropdown-link .right-arrow {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.1s;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown.show .dropdown-link .right-arrow {
    top: 20%;
    transform: scaleY(-1);
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown.show .dropdown-items {
    display: block;
    background: #2b3457;
    border-radius: 4px;
}

.panel-layout .side-nav .side-nav-inside .side-nav-menu .side-nav-item.category-title {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    display: block;
    padding: 10px 12px 0 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    font-weight: 700;
}

.panel-layout .page-container {
    min-height: 100vh;
    padding-left: 400px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
}

@media (max-width: 991px) {
    .panel-layout .page-container {
        padding-left: 0;
    }
}

.panel-layout .page-container .main-content {
    padding: calc(70px + 0px) 10px 20px;
    min-height: calc(100vh - 70px);
}

.panel-layout .page-container .main-content .page-title {
    padding: 20px 0;
}

.panel-layout .page-container .main-content .page-title .title-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.panel-layout .page-container .main-content .page-title .title-content .title {
    font-size: 28px;
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
}

@media (max-width: 500px) {
    .panel-layout .page-container .main-content .page-title .title-content .title {
        font-size: 20px;
    }
}

.panel-layout .page-container .main-content .page-title .title-content .title-btn {
    display: inline-block;
    background: #e73667;
    border-radius: 3px;
    padding: 8px 18px;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-layout .page-container .main-content .page-title .title-content .title-btn svg {
    height: 16px;
    margin-right: 3px;
    position: relative;
    top: -2px;
}

.panel-layout .page-container .main-content .page-title .title-content .title-btn:hover {
    background: #e73667;
}

.panel-layout .page-container .main-content .section-title {
    margin-bottom: 10px;
}

.panel-layout .page-container .main-content .section-title .title {
    font-size: 18px;
    margin-bottom: 0px;
}

.panel-layout.nav-folded .logo {
    width: 0px;
    border-right: 0px !important;
}

@media (max-width: 991px) {
    .panel-layout.nav-folded .logo {
        width: 0;
    }
}

.panel-layout.nav-folded .logo a .logo-unfold {
    display: none;
}

.panel-layout.nav-folded .logo a .logo-fold {
    display: block;
}

.panel-layout.nav-folded .nav-wrap .nav-left .sidebar-toggle {
    transform: scaleX(-1);
}

.panel-layout.nav-folded .side-nav {
    width: 0px;
    border-right: 0;
}

.panel-layout.nav-folded .side-nav.side-nav-hover {
    width: 400px;
    transition: 0.2s;
}

.panel-layout.nav-folded .side-nav.side-nav-hover .side-nav-inside .side-nav-menu .side-nav-item span {
    display: inline-block;
    transition: 0.2s;
}

.panel-layout.nav-folded .side-nav.side-nav-hover .side-nav-inside .side-nav-menu .side-nav-item.category-title {
    display: block;
    transition: 0.2s;
}

.panel-layout.nav-folded .side-nav.side-nav-hover .side-nav-inside .side-nav-menu .side-nav-item.side-nav-dropdown.show .dropdown-items {
    display: block;
}

@media (max-width: 991px) {
    .panel-layout.nav-folded .side-nav {
        width: 400px;
    }

    .panel-layout.nav-folded .side-nav .side-nav-inside .side-nav-menu .side-nav-item span {
        display: inline-block;
        transition: 0.2s;
    }

    .panel-layout.nav-folded .side-nav .side-nav-inside .side-nav-menu .side-nav-item.category-title {
        display: block;
        transition: 0.2s;
    }
}

@media (max-width: 400px) {
    .panel-layout.nav-folded .side-nav {
        width: 360px;
    }
}

@media (max-width: 350px) {
    .panel-layout.nav-folded .side-nav {
        width: 320px;
    }
}

@media (max-width: 320px) {
    .panel-layout.nav-folded .side-nav {
        width: 310px;
    }
}

.panel-layout.nav-folded .page-container {
    padding-left: 0px;
    transition: 0.2s;
}

@media (max-width: 991px) {
    .panel-layout.nav-folded .page-container {
        padding-left: 0px;
    }
}

@media (max-width: 991px) {
    .panel-layout.nav-folded .nav-wrap .nav-left .sidebar-toggle {
        transform: scaleX(1);
    }
}

/* Wallet List Design */
.side-wallet-box {
    padding: 15px;
    margin-bottom: 30px;
    background: #bee3db;
    box-shadow: 0px 0px 2px #7366f066;
}

.side-wallet-box .user-balance-card {
    padding: 5px 5px 15px 5px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.side-wallet-box .user-balance-card::before {
    position: absolute;
    height: 90px;
    width: 90px;
    content: "";
    border-radius: 50%;
    background: rgba(231, 54, 103, 0.2);
    right: -50px;
    top: -50px;
}

.side-wallet-box .user-balance-card .wallet-name {
    margin-bottom: 10px;
    position: relative;
}

.side-wallet-box .user-balance-card .wallet-name .name {
    font-size: 18px;
    font-weight: 400;
}

.side-wallet-box .user-balance-card .wallet-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.side-wallet-box .actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.side-wallet-box .actions .user-sidebar-btn {
    width: 48%;
    background: #5364f1;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.side-wallet-box .actions .user-sidebar-btn:last-of-type {
    background: #2a9d8f;
    color: #ffffff;
    border-radius: 4px;
}

.side-wallet-box .actions .user-sidebar-btn:last-of-type:hover {
    background: #e73667;
}

.side-wallet-box .actions .user-sidebar-btn i {
    margin-right: 6px;
}

.side-wallet-box .actions .user-sidebar-btn:hover {
    background: #e73667;
}

.side-wallet-box.default-wallet {
    padding: 20px;
    box-shadow: 0px 0px 2px #7366f066;
}

.side-wallet-box.default-wallet .user-balance-card {
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    padding: 15px;
    margin-bottom: 10px;
}

.side-wallet-box.default-wallet .user-balance-card::before {
    display: none;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-name {
    margin-bottom: 15px;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-name .name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-name .default {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 5px 10px;
    font-size: 10px;
    text-transform: uppercase;
    background: #ffffff;
    color: #001219;
    border-radius: 4px;
    font-weight: 700;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-info {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-info:last-child {
    margin-bottom: 0;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-info .wallet-id {
    color: rgba(255, 255, 255, 0.8);
}

.side-wallet-box.default-wallet .user-balance-card .wallet-info .wallet-id svg {
    height: 18px;
    margin-right: 4px;
    position: relative;
    top: -2px;
}

.side-wallet-box.default-wallet .user-balance-card .wallet-info .balance {
    color: #ffffff;
}

/* User Cards */
.user-cards {
    margin-bottom: 20px;
}

.user-cards .single {
    background: #535a94;
    padding: 20px 15px;
    border-radius: 8px;
    border: 2px solid rgba(255, 195, 0, 0.5);
    margin-bottom: 30px;
    transition: 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.user-cards .single::before {
    position: absolute;
    height: 65px;
    width: 65px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 195, 0, 0.5);
    right: -25px;
    top: -25px;
}

.user-cards .single:hover {
    transform: translate3d(0, -4px, 0);
}

.user-cards .single .icon {
    font-size: 24px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    color: #535a94;
    display: inline-block;
    margin-right: 15px;
}

.user-cards .single .content h4 {
    margin-bottom: 5px;
    color: #ffffff;
}

.user-cards .single .content h4 b {
    font-weight: 400;
    font-size: 16px;
    position: relative;
    top: -8px;
    margin-right: 2px;
}

.user-cards .single .content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* site-transactions */
.site-transactions .single {
    padding: 15px;
    box-shadow: 0px 0px 2px #5468ff66;
    background: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: 0.3s;
}

.site-transactions .single.head {
    background: #d2d3d8;
    padding: 5px 15px;
    font-weight: 700;
}

.site-transactions .single.head:hover {
    background: #d2d3d8;
}

.site-transactions .single .left {
    display: flex;
    min-width: 300px;
}

@media (max-width: 767px) {
    .site-transactions .single .left {
        min-width: 300px;
    }
}

.site-transactions .single .left .icon {
    height: 45px;
    width: 45px;
    line-height: 42px;
    border-radius: 50%;
    background: rgba(0, 48, 73, 0.1);
    color: #003049;
    text-align: center;
    margin-right: 15px;
}

.site-transactions .single .left .icon svg {
    width: 18px;
}

.site-transactions .single .left .icon-img img {
    height: 30px;
    width: 30px;
    background: rgba(0, 48, 73, 0.1);
    color: #003049;
    text-align: center;
    margin-right: 15px;
}

.site-transactions .single .left .content .title {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.site-transactions .single .left .content .date {
    font-size: 14px;
    margin-bottom: 0;
    color: rgba(0, 18, 25, 0.5);
}

.site-transactions .single .middle {
    display: flex;
    align-items: center;
    font-size: 16px;
}

@media (max-width: 767px) {
    .site-transactions .single .middle {
        min-width: 250px;
    }
}

.site-transactions .single .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .site-transactions .single .right {
        min-width: 300px;
    }
}

.site-transactions .single .right .amount {
    text-align: right;
}

.site-transactions .single .right .amount .net {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.site-transactions .single .right .amount .net.in {
    color: #2a9d8f;
}

.site-transactions .single .right .amount .net.out {
    color: #ef476f;
}

.site-transactions .single .right .amount .total {
    font-size: 14px;
}

.site-transactions .single .right .action {
    margin-left: 50px;
}

.site-transactions .single .right .action a {
    margin-left: 10px;
    height: 40px;
    width: 40px;
    line-height: 38px;
    border-radius: 50%;
    background: #535a94;
    color: #ffffff;
    text-align: center;
    display: inline-block;
}

.site-transactions .single .right .action a svg {
    height: 16px;
    position: relative;
    top: -3px;
}

.site-transactions .single .right .action a.cancel {
    background: #ef476f;
}

.site-transactions .single .right .action a.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.site-transactions .single .right .action a:hover {
    background: #003049;
}

.site-transactions .single .right .action a.delete {
    background: #ef476f;
}

.site-transactions .single:hover {
    background: rgba(231, 54, 103, 0.03);
}

.site-transactions .single:first-child {
    border-radius: 4px 4px 0 0;
}

.site-transactions .single:last-child {
    border-radius: 0px 0px 4px 4px;
}

@media (max-width: 855px) {
    .site-transactions .single {
        min-width: 900px;
    }
}

@media (max-width: 855px) {
    .site-transactions {
        display: block;
        overflow-x: auto;
        width: 100%;
    }
}

/* Invoice */
.invoice-option-btn {
    display: inline-block;
    background: #e73667;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 37px;
}

.invoice-option-btn.remove-optionss {
    background: #ef476f;
    margin-top: 5px;
}

.invoice-option-btn.disabled {
    pointer-events: none;
    opacity: 0.65;
}

/* chatting */
.chatting-content {
    height: 500px;
    overflow-y: scroll;
    padding-right: 15px;
    padding-bottom: 40px;
}

.chatting-content::-webkit-scrollbar {
    width: 5px;
}

.chatting-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 48, 73, 0.3);
}

.chatting-content::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 18, 25, 0.3);
}

.chatting-content .identity {
    color: #ffffff57;
    font-size: 12px;
}

.chatting-content .user-chat,
.chatting-content .admin-chat {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
}

.chatting-content .user-chat {
    text-align: right;
}

.chatting-content .user-chat .content {
    display: inline-block;
    background: #ffc300;
    padding: 8px 16px;
    border-radius: 6px;
    color: #001219;
}

.chatting-content .admin-chat .content {
    display: inline-block;
    background: #003049;
    padding: 8px 16px;
    border-radius: 6px;
    color: #ffffff;
}

.chatting .chat-box {
    position: relative;
    overflow: hidden;
}

.chatting .chat-box textarea.message-box {
    width: calc(100% - 210px);
    margin-left: 80px;
    height: 60px;
    float: left;
    box-shadow: 0px 0px 9px 1px #fd4d401a;
    font-size: 16px;
    padding: 15px;
    padding-top: 10px;
    border: 2px solid rgba(0, 18, 25, 0.1);
    border-radius: 8px;
    color: #001219;
    background: transparent;
    outline: none;
}

.chatting .chat-box textarea.message-box:focus {
    border: 2px solid rgba(231, 54, 103, 0.3);
}

.chatting .chat-box button {
    position: absolute;
    top: 0px;
    right: 4px;
    width: 100px;
    height: 60px;
    color: #ffffff;
    background: #e73667;
    border-radius: 8px;
    font-size: 18px;
}

.chatting .chat-box .attach-file {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #ffffff;
    background: #e73667;
    border-radius: 50%;
    font-size: 18px;
    display: inline-block;
    text-align: center;
}

.chatting .chat-box .attach-file label {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
}

.chatting .chat-box .attach-file input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    opacity: 0;
    cursor: pointer;
}

/* access-device */
.access-device {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    background: #5468ff17;
    padding: 5px 10px;
    border-radius: 10px;
}

.access-device .icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.access-device .icon img {
    height: 40px;
    width: auto;
}

.access-device .content p {
    font-size: 14px;
    margin-bottom: 2px;
}

.access-device .content p .this-device {
    margin-left: 10px;
    color: #2a9d8f;
}

.access-device .content p .time {
    margin-left: 10px;
}

/* Site DataTable */
.site-datatable .dataTables_length {
    margin-bottom: 15px;
}

.site-datatable .dataTables_length label {
    font-size: 14px;
    font-weight: 700 !important;
}

.site-datatable .dataTables_length label select {
    font-weight: 700 !important;
}

.site-datatable .dataTables_length label select:focus {
    box-shadow: none;
    border: 1px solid rgba(231, 54, 103, 0.5);
}

.site-datatable .dataTables_filter {
    margin-bottom: 15px;
}

.site-datatable .dataTables_filter label {
    font-size: 14px;
    font-weight: 700 !important;
}

.site-datatable .dataTables_filter label input {
    font-weight: 700 !important;
}

.site-datatable .dataTables_filter label input:focus {
    box-shadow: none;
    border: 1px solid rgba(231, 54, 103, 0.5);
}

.site-datatable .dataTables_info {
    font-size: 14px;
    font-weight: 700;
}

.site-datatable .dataTables_paginate {
    margin-top: 10px;
}

.site-datatable .dataTables_paginate .pagination .paginate_button .page-link {
    color: #001219;
    font-size: 14px;
    font-weight: 700;
}

.site-datatable .dataTables_paginate .pagination .paginate_button .page-link:focus {
    box-shadow: none;
}

.site-datatable .dataTables_paginate .pagination .paginate_button.active .page-link {
    background: #e73667;
    color: #ffffff;
    border-color: #e73667;
}

.site-datatable .data-table {
    width: 100%;
    margin-bottom: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 2px #aab0c6;
    min-width: 1200px;
}

@media (max-width: 991px) {
    .site-datatable .data-table {
        min-width: 1200px;
    }
}

.site-datatable .data-table thead tr th {
    border-bottom: 1px solid rgba(83, 90, 148, 0.2);
    padding: 15px 10px;
    color: #003049;
    background: rgba(83, 90, 148, 0.1);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.site-datatable .data-table thead tr th::before {
    top: 50%;
    transform: translateY(-50%);
}

.site-datatable .data-table thead tr th::after {
    top: 50%;
    transform: translateY(-50%);
}

.site-datatable .data-table tbody {
    border-top: 0;
}

.site-datatable .data-table tbody tr {
    transition: 0.3s;
}

.site-datatable .data-table tbody tr td {
    border-bottom: 1px solid rgba(83, 90, 148, 0.1);
    padding: 15px 10px;
    color: #003049;
    justify-content: center;
    font-size: 14px;
    line-height: 2.7;
}

.site-datatable .data-table tbody tr td .avatar {
    width: 40px;
    border-radius: 50%;
}

.site-datatable .data-table tbody tr td .avatar-text {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
}

.site-datatable .data-table tbody tr td .avatar-img img {
    height: 40px;
    width: 40px;
}

.site-datatable .data-table tbody tr td .form-switch input {
    box-shadow: none;
    height: 18px;
    width: 35px;
    margin-top: 10px;
}

.site-datatable .data-table tbody tr td .form-switch input.form-check-input:checked {
    background-color: #e73667;
    border-color: #e73667;
}

.site-datatable .data-table tbody tr td .site-badge {
    display: inline;
    color: #ffffff;
    padding: 3px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
}

.site-datatable .data-table tbody tr td .site-badge.success {
    background: #2a9d8f;
}

.site-datatable .data-table tbody tr td .site-badge.failed {
    background: #ef476f;
}

.site-datatable .data-table tbody tr td .site-badge.warnning {
    background: #ffc300;
    color: #001219;
}

.site-datatable .data-table tbody tr td .transaction {
    text-transform: uppercase;
    font-size: 12px;
}

.site-datatable .data-table tbody tr td .link {
    color: #e73667;
    font-weight: 700;
}

.site-datatable .data-table tbody tr td .link:hover {
    color: #2a9d8f;
}

.site-datatable .data-table tbody tr td .clock {
    margin-left: 5px;
}

.site-datatable .data-table tbody tr td .investment-timeline {
    background: #d2d3d8;
    height: 0.5rem;
}

.site-datatable .data-table tbody tr td .investment-timeline .progress-bar {
    background: #ef476f;
}

.site-datatable .data-table tbody tr td .table-description {
    display: flex;
    align-items: center;
}

.site-datatable .data-table tbody tr td .table-description .icon {
    height: 45px;
    width: 45px;
    line-height: 42px;
    border-radius: 50%;
    background: rgba(210, 211, 216, 0.7);
    color: #001219;
    text-align: center;
    margin-right: 15px;
}

.site-datatable .data-table tbody tr td .table-description .icon svg {
    height: 18px;
}

.site-datatable .data-table tbody tr td .table-description .description {
    font-size: 16px;
}

.site-datatable .data-table tbody tr td .date {
    margin-top: -12px;
    font-size: 13px;
    color: rgba(0, 18, 25, 0.75);
}

.site-datatable .data-table tbody tr td .date .time {
    margin-left: 5px;
}

.site-datatable .data-table tbody tr td .optional-msg {
    color: #ffffff;
    height: 25px;
    width: 25px;
    line-height: 22px;
    display: inline-block;
    background: #e73667;
    border-radius: 50%;
    margin-left: 5px;
    cursor: pointer;
}

.site-datatable .data-table tbody tr td .optional-msg svg {
    height: 13px;
}

.site-datatable .data-table tbody tr:hover {
    background: rgba(83, 90, 148, 0.05);
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 1) td .avatar-text {
    background: #e73667;
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 2) td .avatar-text {
    background: #001219;
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 3) td .avatar-text {
    background: #535a94;
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 4) td .avatar-text {
    background: #2a9d8f;
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 5) td .avatar-text {
    background: #003049;
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 6) td .avatar-text {
    background: #e73667;
}

.site-datatable .data-table tbody tr:nth-of-type(4n + 6) td .avatar-text {
    background: #535a94;
}

/* single-badge */
.single-badge {
    text-align: center;
    border: 2px solid rgba(0, 18, 25, 0.1);
    border-radius: 50%;
    padding: 50px;
    margin: 0 auto;
    margin-bottom: 30px;
    height: 270px;
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    position: relative;
    background: rgba(83, 90, 148, 0.3);
}

.single-badge .badge {
    margin-bottom: 10px;
}

.single-badge .badge .img {
    width: 80px;
}

.single-badge .content .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-badge .content .description {
    color: rgba(0, 18, 25, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}

.single-badge.locked::before {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 100%;
    content: "";
    background: #001219;
    opacity: 0.8;
    transition: 0.4s;
}

.single-badge.locked::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f023";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    font-size: 62px;
    transition: 0.4s;
}

.single-badge:hover.locked::before {
    display: none;
}

.single-badge:hover.locked::after {
    display: none;
}

/* support-ticket-single-message */
.support-ticket-single-message {
    box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.4);
    background: #21273e08;
    margin-bottom: 40px;
    padding: 30px;
    width: 65%;
    border-radius: 10px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .support-ticket-single-message {
        width: 100%;
    }
}

.support-ticket-single-message.admin {
    float: left;
}

.support-ticket-single-message.user {
    float: right;
}

.support-ticket-single-message .logo {
    margin-bottom: 40px;
}

.support-ticket-single-message .logo img {
    width: 40px;
    border-radius: 50%;
}

.support-ticket-single-message .salutation {
    margin-bottom: 20px;
}

.support-ticket-single-message .message-body .article {
    margin-bottom: 25px;
}

.support-ticket-single-message .message-footer .regards {
    margin-bottom: 10px;
}

.support-ticket-single-message .message-footer .name {
    font-weight: 700;
}

.support-ticket-single-message .message-footer .email a {
    color: #e73667;
}

.support-ticket-single-message .message-attachments {
    margin-top: 30px;
}

.support-ticket-single-message .message-attachments .title {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 10px;
}

.support-ticket-single-message .message-attachments .single-attachment .attach a {
    color: #001219;
}

.support-ticket-single-message .message-attachments .single-attachment .attach a:hover {
    color: #e73667;
}

.support-ticket-single-message .message-attachments .single-attachment .attach a i {
    margin-right: 5px;
}

/* Site Tab Bars */
.site-tab-bars {
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0px 0px 2px rgba(231, 54, 103, 0.4);
    background: white;
    border-radius: 4px;
}

.site-tab-bars ul li {
    display: inline-block;
}

@media (max-width: 991px) {
    .site-tab-bars ul li {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

.site-tab-bars ul li a {
    color: #003049;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
}

.site-tab-bars ul li a svg {
    width: 16px;
    position: relative;
    margin-right: 5px;
    top: -1px;
}

.site-tab-bars ul li a:hover {
    color: #e73667;
}

@media (max-width: 575px) {
    .site-tab-bars ul li a {
        background: rgba(231, 54, 103, 0.2);
        display: block;
    }
}

.site-tab-bars ul li.active a {
    background: #e73667;
    color: #ffffff;
}

.site-tab-bars .nav.nav-pills {
    box-shadow: none;
}

.site-tab-bars .nav.nav-pills .nav-item .nav-link {
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    color: rgba(0, 48, 73, 0.6);
}

.site-tab-bars .nav.nav-pills .nav-item .nav-link.active {
    border-bottom: none;
    background: #e73667;
    color: #ffffff;
}

/* Automatic Popup */
.auto-popup-section {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease 0s;
    background-color: rgba(63, 58, 100, 0.9);
}

.auto-popup-section:not(.close) .auto-popup-dialog {
    animation-duration: 0.5s;
    animation-delay: 0.3s;
}

.auto-popup-section.close {
    visibility: hidden;
    opacity: 0;
}

.auto-popup-section.close .auto-popup-dialog {
    animation-duration: 0.5s;
    animation-delay: 0;
}

.auto-popup-dialog {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 650px;
    max-width: 90vw;
    max-height: 100vh;
    border-radius: 8px;
    background-color: #fff;
}

.auto-popup-close {
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    color: #ccc;
    border: none;
    background-color: transparent;
    z-index: 2;
}

.auto-popup-close i {
    font-size: 32px;
    line-height: 1;
}

.auto-popup-close:hover {
    color: #ef476f;
}

@media only screen and (max-width: 479px) {
    .auto-popup-close {
        top: 10px;
        right: 10px;
    }
}

.auto-popup-dialog-inner {
    padding: 50px;
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.auto-popup-dialog-inner::before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    background: #2a9d8f;
    opacity: 0.7;
    z-index: -1;
}

.auto-pop-content {
    text-align: center;
}

.auto-pop-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.auto-pop-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .auto-popup-dialog-inner {
        padding: 40px 30px;
    }
}

@media only screen and (max-width: 479px) {
    .auto-popup-dialog-inner {
        padding: 40px 20px;
    }
}

/* caches-privacy */
.caches-privacy {
    position: fixed;
    bottom: 300px;
    left: 30px;
    width: 430px;
    border-radius: 8px;
    padding: 30px;
    z-index: 1;
    background: #ffffff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 0px 2px rgba(0, 48, 73, 0.8);
}

@media(max-width: 575px){
    .caches-privacy {
        width: 94%;
        left: 3%;
        right: 3%;
    }
}

.caches-privacy .content p a {
    color: #ffc300;
}

.site-badge {
    display: inline;
    color: #ffffff;
    padding: 3px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
}

.site-badge.success {
    background: #2a9d8f;
}

.site-badge.failed {
    background: #ef476f;
}

.site-badge.warnning {
    background: #ffc300;
    color: #001219;
}


.dark-theme .site-sidebar .single-sidebar {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dark-theme .site-sidebar .single-sidebar form input {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-theme .blog-details {
    color: rgba(255, 255, 255, 0.9);
}

.dark-theme .blog-details .blockquote {
    color: #ffffff;
}

.dark-theme .post-share-and-tag .social {
    color: #ffffff;
}

.dark-theme .post-share-and-tag .social a {
    color: #ffffff;
}

.user-home-menu {
    display: none !important;
    padding: 8px 12px;
    line-height: 1;
    border-radius: 4px;
    background: #e73667;
    color: #ffffff;
}

.user-home-menu:focus {
    color: #ffffff;
}

@media (max-width: 992px) {
    .user-home-menu {
        display: block !important;
    }
}

@media (max-width: 575px) {
    .preview-table {
        width: 600px;
    }
}

@media (max-width: 400px) {
    .preview-table {
        width: 500px;
    }
}


/* frontend-editor-data */
.frontend-editor-data h1 {
    font-size: 42px;
    margin-bottom: 15px;
}
.frontend-editor-data h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
.frontend-editor-data h3 {
    font-size: 26px;
    margin-bottom: 15px;
}
.frontend-editor-data h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.frontend-editor-data h5 {
    font-size: 18px;
    margin-bottom: 15px;
}
.frontend-editor-data h6 {
    font-size: 16px;
    margin-bottom: 15px;
}
.frontend-editor-data p {
    margin-bottom: 20px;
}



.frontend-editor-data ul, .frontend-editor-data ol {
    margin: initial;
    padding: initial;
    list-style: initial;
    padding-left: 2rem;
    margin-bottom: 20px;
}
.frontend-editor-data ul li {
    margin-bottom: 10px;
}

@media(max-width: 1199px){
    .site-sidebar {
        margin-top: 30px;
    }
}

/* input-icon */
.input-icon {
    position: absolute;
    right: 15px;
    top: 9px;
    color: #44444473;
}

.input-icon svg {
    height: 20px;
}

.dark-theme .input-icon {
    color: #ffffff73;
}

/* input-icon */
.input-icon {
    position: absolute;
    right: 15px;
    top: 9px;
    color: #44444473;
}

.input-icon svg {
    height: 20px;
}

.dark-theme .input-icon {
    color: #ffffff73;
}

/*# sourceMappingURL=styles.css.map */
