@charset "UTF-8";

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

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

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -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%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

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

@-webkit-keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        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);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

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

@-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-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(0);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

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

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }

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

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-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(.9)rotate(-3deg);
        transform: scale(.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);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(.9)rotate(-3deg);
        -ms-transform: scale(.9)rotate(-3deg);
        transform: scale(.9)rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1)rotate(3deg);
        -ms-transform: scale(1.1)rotate(3deg);
        transform: scale(1.1)rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1)rotate(-3deg);
        -ms-transform: scale(1.1)rotate(-3deg);
        transform: scale(1.1)rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1)rotate(0);
        -ms-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%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }

    15% {
        -webkit-transform: translateX(-25%)rotate(-5deg);
        -ms-transform: translateX(-25%)rotate(-5deg);
        transform: translateX(-25%)rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%)rotate(3deg);
        -ms-transform: translateX(20%)rotate(3deg);
        transform: translateX(20%)rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%)rotate(-3deg);
        -ms-transform: translateX(-15%)rotate(-3deg);
        transform: translateX(-15%)rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%)rotate(2deg);
        -ms-transform: translateX(10%)rotate(2deg);
        transform: translateX(10%)rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%)rotate(-1deg);
        -ms-transform: translateX(-5%)rotate(-1deg);
        transform: translateX(-5%)rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-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% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-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);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-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);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-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(0)scale(1);
        transform: perspective(400px)translateZ(0)rotateY(0)scale(1)
    }

    0%,
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
        transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1)
    }

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

    80% {
        -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
        transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95)
    }

    80%,
    100% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
        transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1)
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
        -ms-transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
        transform: perspective(400px)translateZ(0)rotateY(0)scale(1)
    }

    0%,
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
        -ms-transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
        transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1)
    }

    50% {
        -webkit-transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
        -ms-transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
        transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
        -ms-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
        transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95)
    }

    80%,
    100% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
        -ms-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
        transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1)
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-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(0);
        transform: perspective(400px)rotateX(0);
        opacity: 1
    }
}

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

    40% {
        -webkit-transform: perspective(400px)rotateX(-10deg);
        -ms-transform: perspective(400px)rotateX(-10deg);
        transform: perspective(400px)rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px)rotateX(10deg);
        -ms-transform: perspective(400px)rotateX(10deg);
        transform: perspective(400px)rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px)rotateX(0);
        -ms-transform: perspective(400px)rotateX(0);
        transform: perspective(400px)rotateX(0);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-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(0);
        transform: perspective(400px)rotateY(0);
        opacity: 1
    }
}

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

    40% {
        -webkit-transform: perspective(400px)rotateY(-10deg);
        -ms-transform: perspective(400px)rotateY(-10deg);
        transform: perspective(400px)rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px)rotateY(10deg);
        -ms-transform: perspective(400px)rotateY(10deg);
        transform: perspective(400px)rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px)rotateY(0);
        -ms-transform: perspective(400px)rotateY(0);
        transform: perspective(400px)rotateY(0);
        opacity: 1
    }
}

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

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

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

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

    100% {
        -webkit-transform: perspective(400px)rotateX(90deg);
        -ms-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;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important
}

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

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

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

    100% {
        -webkit-transform: perspective(400px)rotateY(90deg);
        -ms-transform: perspective(400px)rotateY(90deg);
        transform: perspective(400px)rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-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(0);
        transform: translateX(0%)skewX(0);
        opacity: 1
    }
}

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

    60% {
        -webkit-transform: translateX(-20%)skewX(30deg);
        -ms-transform: translateX(-20%)skewX(30deg);
        transform: translateX(-20%)skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%)skewX(-15deg);
        -ms-transform: translateX(0%)skewX(-15deg);
        transform: translateX(0%)skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%)skewX(0);
        -ms-transform: translateX(0%)skewX(0);
        transform: translateX(0%)skewX(0);
        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(0);
        transform: translateX(0%)skewX(0);
        opacity: 1
    }

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

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

    100% {
        -webkit-transform: translateX(100%)skewX(-30deg);
        -ms-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: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    0%,
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center
    }

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center
    }

    100% {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center
    }

    100% {
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }

    100% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

    0%,
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }

    100% {
        -webkit-transform: rotate(90deg);
        -ms-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);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-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);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-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);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-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);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    0%,
    20%,
    60% {
        -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)
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg)
    }

    40%,
    80% {
        -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);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    0%,
    20%,
    60% {
        -webkit-transform-origin: top left;
        -ms-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);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg)
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg)
    }

    40%,
    80% {
        -webkit-transform-origin: top left;
        -ms-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);
        -ms-transform: rotate(60deg)translateY(0);
        transform: rotate(60deg)translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-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(0)rotate(0);
        transform: translateX(0)rotate(0)
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0)rotate(0);
        -ms-transform: translateX(0)rotate(0);
        transform: translateX(0)rotate(0)
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%)rotate(120deg);
        transform: translateX(100%)rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)rotate(0);
        -ms-transform: translateX(0)rotate(0);
        transform: translateX(0)rotate(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%)rotate(120deg);
        -ms-transform: translateX(100%)rotate(120deg);
        transform: translateX(100%)rotate(120deg)
    }
}

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

@keyframes ellipse1 {
    0% {
        transform: translate(-50%, 55%) scale(.8);
        opacity: 0
    }

    20% {
        transform: translate(-50%, 55%) scale(.9);
        opacity: 1
    }

    100% {
        transform: translate(-50%, 55%) scale(1);
        opacity: 0
    }
}

@keyframes ellipse2 {
    0% {
        transform: scale(.8);
        opacity: 0
    }

    20% {
        transform: scale(.9);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

@keyframes ellipse3 {
    0% {
        transform: translate(50%, -50%) scale(.8);
        opacity: 0
    }

    20% {
        transform: translate(50%, -50%) scale(.9);
        opacity: 1
    }

    100% {
        transform: translate(50%, -50%) scale(1);
        opacity: 0
    }
}

@keyframes ellipse4 {
    0% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }

    20% {
        transform: translate(-50%, -50%) scale(.9);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg) scale(1)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes rotate360rv {
    from {
        transform: rotate(0deg) scale(1)
    }

    to {
        transform: rotate(-360deg)
    }
}

@keyframes playvideo {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.3);
        opacity: 1
    }
}

@keyframes loader {
    0% {
        transform: scaleY(.1)
    }

    50% {
        transform: scaleY(1);
        background: #d74d29
    }

    100% {
        transform: scaleY(.1);
        background: #fff0
    }
}

@keyframes to-left {

    0%,
    100% {
        transform: translateX(0);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }

    50% {
        transform: translateX(-15px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }
}

@keyframes to-right {

    0%,
    100% {
        transform: translateX(0);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }

    50% {
        transform: translateX(15px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }
}

@keyframes to-top {

    0%,
    100% {
        transform: translateY(0);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }

    50% {
        transform: translateY(-15px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }
}

@keyframes to-bottom {

    0%,
    100% {
        transform: translateY(0);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }

    50% {
        transform: translateY(15px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease
    }
}

@keyframes ani-1 {
    0% {
        transform: translate(0, 0) rotate(0deg)
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg)
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg)
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg)
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg)
    }

    100% {
        transform: translate(0, 0) rotate(0deg)
    }
}

@keyframes ani-2 {

    0%,
    100% {
        -webkit-transform: translateX(0) translateY(0) rotate(0);
        transform: translateX(0) translateY(0) rotate(0)
    }

    25%,
    75% {
        -webkit-transform: translateX(15px) translateY(20px) rotate(10deg);
        transform: translateX(15px) translateY(20px) rotate(10deg)
    }

    50% {
        -webkit-transform: translateX(60px) translateY(35px) rotate(15deg);
        transform: translateX(60px) translateY(35px) rotate(15deg)
    }
}

@keyframes tf-buzz-out {
    10% {
        transform: translateY(3%) rotate(2deg)
    }

    20% {
        transform: translateY(-3%) rotate(-2deg)
    }

    30% {
        transform: translateY(3%) rotate(2deg)
    }

    40% {
        transform: translateY(-3%) rotate(-2deg)
    }

    50% {
        transform: translateY(2%) rotate(1deg)
    }

    60% {
        transform: translateY(-2%) rotate(-1deg)
    }

    70% {
        transform: translateY(2%) rotate(1deg)
    }

    80% {
        transform: translateY(-2%) rotate(-1deg)
    }

    90% {
        transform: translateY(1%) rotate(0)
    }

    to {
        transform: translateY(-1%) rotate(0)
    }
}

@keyframes preload {

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

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

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

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

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

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

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

@keyframes link-icon {
    0% {
        transform: translateX(0);
        opacity: 1
    }

    49% {
        transform: translateX(20px);
        opacity: 0
    }

    50% {
        transform: translateX(-20px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 8px #fff0
    }

    100% {
        box-shadow: 0 0 0 0 #fff0
    }
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: #fff0;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-target {
    position: relative;
    direction: ltr
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-connects {
    overflow: hidden;
    z-index: 0
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
    inset-inline-start: auto;
    inset-inline-end: 0
}

.noUi-vertical .noUi-origin {
    width: 0
}

.noUi-horizontal .noUi-origin {
    height: 0
}

.noUi-handle {
    position: absolute
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    -webkit-transition: transform .3s;
    transition: transform .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-horizontal {
    height: 18px
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    inset-inline-start: -17px;
    top: -6px
}

.noUi-vertical {
    width: 18px
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    inset-inline-start: -6px;
    top: -17px
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    inset-inline-end: -17px;
    inset-inline-start: auto
}

.noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB
}

.noUi-connects {
    border-radius: 3px
}

.noUi-connect {
    background: #3FB8AF
}

.noUi-draggable {
    cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize
}

.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB
}

.noUi-active {
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB
}

.noUi-handle:after,
.noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #E8E7E6;
    inset-inline-start: 14px;
    top: 6px
}

.noUi-handle:after {
    inset-inline-start: 17px
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    inset-inline-start: 6px;
    top: 14px
}

.noUi-vertical .noUi-handle:after {
    top: 17px
}

[disabled] .noUi-connect {
    background: #B8B8B8
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
    cursor: not-allowed
}

.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-pips {
    position: absolute;
    color: #999
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px
}

.noUi-marker {
    position: absolute;
    background: #CCC
}

.noUi-marker-sub {
    background: #AAA
}

.noUi-marker-large {
    background: #AAA
}

.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    inset-inline-start: 0;
    width: 100%
}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%)
}

.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%)
}

.noUi-marker-horizontal.noUi-marker {
    margin-inline-start: -1px;
    width: 2px;
    height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px
}

.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    inset-inline-start: 100%
}

.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%, 0);
    padding-inline-start: 25px
}

.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%)
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    inset-inline-start: 50%;
    bottom: 120%
}

.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    inset-inline-end: 120%
}

.nice-select {
    -webkit-tap-highlight-color: #fff0;
    background-color: #fff;
    border: 1px solid #E5E5EA !important;
    border-radius: 3px;
    padding: 10px 20px;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    position: relative;
    transition: all linear .2s;
    user-select: none;
    white-space: nowrap;
    width: 100%
}

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

.nice-select:after {
    border-bottom: 1.7px solid #3A3A3C;
    border-inline-end: 1.7px solid #3A3A3C;
    content: '';
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    inset-inline-end: 24px;
    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
}

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

.nice-select.open .list {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    width: 100%;
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0)
}

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

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

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

.nice-select.wide .list {
    inset-inline-start: 0 !important;
    inset-inline-end: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    inset-inline-start: auto;
    inset-inline-end: 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 rgb(68 68 68 / .11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
    font-size: 14px;
    max-height: 155px;
    overflow: auto
}

.nice-select .list.style {
    max-height: unset
}

.nice-select .list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0)
}

.nice-select .list::-webkit-scrollbar-thumb {
    background-color: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0)
}

.nice-select .list::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0)
}

.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-inline-start: 18px;
    padding-inline-end: 29px;
    text-align: start;
    -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: 600;
    color: #111
}

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

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

.no-csspointerevents .nice-select.open .list {
    display: block
}

root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))
}

*,
::after,
::before {
    box-sizing: border-box
}

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

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: #fff0
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 2.5rem
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 2rem
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {

    .h3,
    h3 {
        font-size: 1.75rem
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {

    .h4,
    h4 {
        font-size: 1.5rem
    }
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

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

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul {
    padding-inline-start: 2rem
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-inline-start: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

.small,
small {
    font-size: .875em
}

.mark,
mark {
    padding: .2em;
    background-color: #fcf8e3
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

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

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: .875em;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: start
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

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

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

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

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit
}

@media (min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

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

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

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

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

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

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

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

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

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

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

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

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

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

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

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

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

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

.list-unstyled {
    padding-inline-start: 0;
    list-style: none
}

.list-inline {
    padding-inline-start: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-inline-end: .5rem
}

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote>:last-child {
    margin-bottom: 0
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d
}

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

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: .875em;
    color: #6c757d
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-inline-end: var(--bs-gutter-x, .75rem);
    padding-inline-start: var(--bs-gutter-x, .75rem);
    margin-inline-end: auto;
    margin-inline-start: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}

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

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

.col {
    flex: 1 0 0%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.offset-1 {
    margin-inline-start: 8.33333333%
}

.offset-2 {
    margin-inline-start: 16.66666667%
}

.offset-3 {
    margin-inline-start: 25%
}

.offset-4 {
    margin-inline-start: 33.33333333%
}

.offset-5 {
    margin-inline-start: 41.66666667%
}

.offset-6 {
    margin-inline-start: 50%
}

.offset-7 {
    margin-inline-start: 58.33333333%
}

.offset-8 {
    margin-inline-start: 66.66666667%
}

.offset-9 {
    margin-inline-start: 75%
}

.offset-10 {
    margin-inline-start: 83.33333333%
}

.offset-11 {
    margin-inline-start: 91.66666667%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-sm-0 {
        margin-inline-start: 0
    }

    .offset-sm-1 {
        margin-inline-start: 8.33333333%
    }

    .offset-sm-2 {
        margin-inline-start: 16.66666667%
    }

    .offset-sm-3 {
        margin-inline-start: 25%
    }

    .offset-sm-4 {
        margin-inline-start: 33.33333333%
    }

    .offset-sm-5 {
        margin-inline-start: 41.66666667%
    }

    .offset-sm-6 {
        margin-inline-start: 50%
    }

    .offset-sm-7 {
        margin-inline-start: 58.33333333%
    }

    .offset-sm-8 {
        margin-inline-start: 66.66666667%
    }

    .offset-sm-9 {
        margin-inline-start: 75%
    }

    .offset-sm-10 {
        margin-inline-start: 83.33333333%
    }

    .offset-sm-11 {
        margin-inline-start: 91.66666667%
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-md-0 {
        margin-inline-start: 0
    }

    .offset-md-1 {
        margin-inline-start: 8.33333333%
    }

    .offset-md-2 {
        margin-inline-start: 16.66666667%
    }

    .offset-md-3 {
        margin-inline-start: 25%
    }

    .offset-md-4 {
        margin-inline-start: 33.33333333%
    }

    .offset-md-5 {
        margin-inline-start: 41.66666667%
    }

    .offset-md-6 {
        margin-inline-start: 50%
    }

    .offset-md-7 {
        margin-inline-start: 58.33333333%
    }

    .offset-md-8 {
        margin-inline-start: 66.66666667%
    }

    .offset-md-9 {
        margin-inline-start: 75%
    }

    .offset-md-10 {
        margin-inline-start: 83.33333333%
    }

    .offset-md-11 {
        margin-inline-start: 91.66666667%
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-lg-0 {
        margin-inline-start: 0
    }

    .offset-lg-1 {
        margin-inline-start: 8.33333333%
    }

    .offset-lg-2 {
        margin-inline-start: 16.66666667%
    }

    .offset-lg-3 {
        margin-inline-start: 25%
    }

    .offset-lg-4 {
        margin-inline-start: 33.33333333%
    }

    .offset-lg-5 {
        margin-inline-start: 41.66666667%
    }

    .offset-lg-6 {
        margin-inline-start: 50%
    }

    .offset-lg-7 {
        margin-inline-start: 58.33333333%
    }

    .offset-lg-8 {
        margin-inline-start: 66.66666667%
    }

    .offset-lg-9 {
        margin-inline-start: 75%
    }

    .offset-lg-10 {
        margin-inline-start: 83.33333333%
    }

    .offset-lg-11 {
        margin-inline-start: 91.66666667%
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xl-0 {
        margin-inline-start: 0
    }

    .offset-xl-1 {
        margin-inline-start: 8.33333333%
    }

    .offset-xl-2 {
        margin-inline-start: 16.66666667%
    }

    .offset-xl-3 {
        margin-inline-start: 25%
    }

    .offset-xl-4 {
        margin-inline-start: 33.33333333%
    }

    .offset-xl-5 {
        margin-inline-start: 41.66666667%
    }

    .offset-xl-6 {
        margin-inline-start: 50%
    }

    .offset-xl-7 {
        margin-inline-start: 58.33333333%
    }

    .offset-xl-8 {
        margin-inline-start: 66.66666667%
    }

    .offset-xl-9 {
        margin-inline-start: 75%
    }

    .offset-xl-10 {
        margin-inline-start: 83.33333333%
    }

    .offset-xl-11 {
        margin-inline-start: 91.66666667%
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .offset-xxl-0 {
        margin-inline-start: 0
    }

    .offset-xxl-1 {
        margin-inline-start: 8.33333333%
    }

    .offset-xxl-2 {
        margin-inline-start: 16.66666667%
    }

    .offset-xxl-3 {
        margin-inline-start: 25%
    }

    .offset-xxl-4 {
        margin-inline-start: 33.33333333%
    }

    .offset-xxl-5 {
        margin-inline-start: 41.66666667%
    }

    .offset-xxl-6 {
        margin-inline-start: 50%
    }

    .offset-xxl-7 {
        margin-inline-start: 58.33333333%
    }

    .offset-xxl-8 {
        margin-inline-start: 66.66666667%
    }

    .offset-xxl-9 {
        margin-inline-start: 75%
    }

    .offset-xxl-10 {
        margin-inline-start: 83.33333333%
    }

    .offset-xxl-11 {
        margin-inline-start: 91.66666667%
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

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

.caption-top {
    caption-side: top
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-inline-end: 0;
    padding-inline-start: 0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-switch {
    padding-inline-start: 2.5em
}

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

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

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

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

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

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

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

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

.form-range:focus {
    outline: 0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-floating {
    position: relative
}

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

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

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

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

.form-floating>.form-control::-moz-placeholder {
    color: #fff0
}

.form-floating>.form-control::placeholder {
    color: #fff0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn:hover {
    color: #212529
}

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

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

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

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

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: 0 0 0 .25rem rgb(49 132 253 / .5)
}

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

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

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

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

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

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
    box-shadow: 0 0 0 .25rem rgb(130 138 145 / .5)
}

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

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgb(130 138 145 / .5)
}

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

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

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

.btn-check:focus+.btn-success,
.btn-success:focus {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
    box-shadow: 0 0 0 .25rem rgb(60 153 110 / .5)
}

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

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

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

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

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

.btn-check:focus+.btn-info,
.btn-info:focus {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2;
    box-shadow: 0 0 0 .25rem rgb(11 172 204 / .5)
}

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

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

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

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

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

.btn-check:focus+.btn-warning,
.btn-warning:focus {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
    box-shadow: 0 0 0 .25rem rgb(217 164 6 / .5)
}

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

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

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

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

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

.btn-check:focus+.btn-danger,
.btn-danger:focus {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 0 0 .25rem rgb(225 83 97 / .5)
}

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

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

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

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

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

.btn-check:focus+.btn-light,
.btn-light:focus {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb;
    box-shadow: 0 0 0 .25rem rgb(211 212 213 / .5)
}

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

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgb(211 212 213 / .5)
}

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

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

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

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21;
    box-shadow: 0 0 0 .25rem rgb(66 70 73 / .5)
}

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

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

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

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

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

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

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

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

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

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

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

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .25rem rgb(108 117 125 / .5)
}

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

.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
    box-shadow: 0 0 0 .25rem rgb(108 117 125 / .5)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fade {
    transition: opacity .15s linear
}

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

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

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

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

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

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

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-inline-start: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-inline-end: .3em solid #fff0;
    border-bottom: 0;
    border-inline-start: .3em solid #fff0
}

.dropdown-toggle:empty::after {
    margin-inline-start: 0
}

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

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

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

.dropdown-menu-start[data-bs-popper] {
    inset-inline-end: auto;
    inset-inline-start: 0
}

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

.dropdown-menu-end[data-bs-popper] {
    inset-inline-end: 0;
    inset-inline-start: auto
}

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

    .dropdown-menu-sm-start[data-bs-popper] {
        inset-inline-end: auto;
        inset-inline-start: 0
    }

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

    .dropdown-menu-sm-end[data-bs-popper] {
        inset-inline-end: 0;
        inset-inline-start: auto
    }
}

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

    .dropdown-menu-md-start[data-bs-popper] {
        inset-inline-end: auto;
        inset-inline-start: 0
    }

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

    .dropdown-menu-md-end[data-bs-popper] {
        inset-inline-end: 0;
        inset-inline-start: auto
    }
}

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

    .dropdown-menu-lg-start[data-bs-popper] {
        inset-inline-end: auto;
        inset-inline-start: 0
    }

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

    .dropdown-menu-lg-end[data-bs-popper] {
        inset-inline-end: 0;
        inset-inline-start: auto
    }
}

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

    .dropdown-menu-xl-start[data-bs-popper] {
        inset-inline-end: auto;
        inset-inline-start: 0
    }

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

    .dropdown-menu-xl-end[data-bs-popper] {
        inset-inline-end: 0;
        inset-inline-start: auto
    }
}

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

    .dropdown-menu-xxl-start[data-bs-popper] {
        inset-inline-end: auto;
        inset-inline-start: 0
    }

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

    .dropdown-menu-xxl-end[data-bs-popper] {
        inset-inline-end: 0;
        inset-inline-start: auto
    }
}

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

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-inline-start: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-inline-end: .3em solid #fff0;
    border-bottom: .3em solid;
    border-inline-start: .3em solid #fff0
}

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

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    inset-inline-end: auto;
    inset-inline-start: 100%;
    margin-top: 0;
    margin-inline-start: .125rem
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-inline-start: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid #fff0;
    border-inline-end: 0;
    border-bottom: .3em solid #fff0;
    border-inline-start: .3em solid
}

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

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

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    inset-inline-end: 100%;
    inset-inline-start: auto;
    margin-top: 0;
    margin-inline-end: .125rem
}

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

.dropstart .dropdown-toggle::after {
    display: none
}

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

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

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

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

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

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

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

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

.dropdown-menu.show {
    display: block
}

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

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

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

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    color: #fff;
    background-color: rgb(255 255 255 / .15)
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    color: #fff;
    background-color: #0d6efd
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgb(0 0 0 / .15)
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    flex: 1 1 auto
}

.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-inline-start: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:nth-child(n+3),
.btn-group>:not(.btn-check)+.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-inline-end: .5625rem;
    padding-inline-start: .5625rem
}

.dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
    margin-inline-start: 0
}

.dropstart .dropdown-toggle-split::before {
    margin-inline-end: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-inline-end: .375rem;
    padding-inline-start: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-inline-end: .75rem;
    padding-inline-start: .75rem
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn~.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

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

.nav-link:focus,
.nav-link:hover {
    color: #0a58ca
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid #fff0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: #fff0;
    border-color: #fff0
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #0d6efd
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
    flex-basis: 0%;
    flex-grow: 1;
    text-align: center
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-inline-end: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-inline-end: 0;
    padding-inline-start: 0
}

.navbar-nav .dropdown-menu {
    position: static
}

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #fff0;
    border: 1px solid #fff0;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out
}

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

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto
}

@media (min-width:576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-inline-end: .5rem;
        padding-inline-start: .5rem
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media (min-width:768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-inline-end: .5rem;
        padding-inline-start: .5rem
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-inline-end: .5rem;
        padding-inline-start: .5rem
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-inline-end: .5rem;
        padding-inline-start: .5rem
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

@media (min-width:1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xxl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-inline-end: .5rem;
        padding-inline-start: .5rem
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xxl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-inline-end: .5rem;
    padding-inline-start: .5rem
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand {
    color: rgb(0 0 0 / .9)
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: rgb(0 0 0 / .9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0 0 0 / .55)
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgb(0 0 0 / .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgb(0 0 0 / .3)
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgb(0 0 0 / .9)
}

.navbar-light .navbar-toggler {
    color: rgb(0 0 0 / .55);
    border-color: rgb(0 0 0 / .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgb(0 0 0 / .55)
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgb(0 0 0 / .9)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255 / .55)
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(255 255 255 / .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgb(255 255 255 / .25)
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgb(255 255 255 / .55);
    border-color: rgb(255 255 255 / .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgb(255 255 255 / .55)
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgb(0 0 0 / .125);
    border-radius: .25rem
}

.card>hr {
    margin-inline-end: 0;
    margin-inline-start: 0
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-inline-start: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgb(0 0 0 / .03);
    border-bottom: 1px solid rgb(0 0 0 / .125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .5rem 1rem;
    background-color: rgb(0 0 0 / .03);
    border-top: 1px solid rgb(0 0 0 / .125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    margin-inline-end: -.5rem;
    margin-bottom: -.5rem;
    margin-inline-start: -.5rem;
    border-bottom: 0
}

.card-header-pills {
    margin-inline-end: -.5rem;
    margin-inline-start: -.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    padding: 1rem;
    border-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-group>.card {
    margin-bottom: .75rem
}

@media (min-width:576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap
    }

    .card-group>.card {
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        margin-inline-start: 0;
        border-inline-start: 0
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-header,
    .card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-footer,
    .card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-header,
    .card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-footer,
    .card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: start;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease
}

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

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / .125)
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg)
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-inline-start: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / .25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgb(0 0 0 / .125)
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.accordion-item:not(:first-of-type) {
    border-top: 0
}

.accordion-item:last-of-type {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-inline-end: 0;
    border-inline-start: 0;
    border-radius: 0
}

.accordion-flush .accordion-item:first-child {
    border-top: 0
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item+.breadcrumb-item {
    padding-inline-start: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-inline-end: .5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "https://creativelayers.net/")
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    padding-inline-start: 0;
    list-style: none
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

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

.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / .25)
}

.page-item:not(:first-child) .page-link {
    margin-inline-start: -1px
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #fff0;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-inline-end: 3rem
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    z-index: 2;
    padding: 1.25rem 1rem
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe
}

.alert-primary .alert-link {
    color: #06357a
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8
}

.alert-secondary .alert-link {
    color: #34383c
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc
}

.alert-success .alert-link {
    color: #0c4128
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb
}

.alert-info .alert-link {
    color: #04414d
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5
}

.alert-warning .alert-link {
    color: #523e02
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

.alert-danger .alert-link {
    color: #6a1a21
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe
}

.alert-light .alert-link {
    color: #4f5050
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf
}

.alert-dark .alert-link {
    color: #101214
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease
}

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

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgb(255 255 255 / .15) 25%, transparent 25%, transparent 50%, rgb(255 255 255 / .15) 50%, rgb(255 255 255 / .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none
    }
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section
}

.list-group-numbered>li::before {
    content: counters(section, ".") ". ";
    counter-increment: section
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgb(0 0 0 / .125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px
}

.list-group-horizontal {
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-inline-start-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-inline-start: -1px;
    border-inline-start-width: 1px
}

@media (min-width:576px) {
    .list-group-horizontal-sm {
        flex-direction: row
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-inline-start-width: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-inline-start: -1px;
        border-inline-start-width: 1px
    }
}

@media (min-width:768px) {
    .list-group-horizontal-md {
        flex-direction: row
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-inline-start-width: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-inline-start: -1px;
        border-inline-start-width: 1px
    }
}

@media (min-width:992px) {
    .list-group-horizontal-lg {
        flex-direction: row
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-inline-start-width: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-inline-start: -1px;
        border-inline-start-width: 1px
    }
}

@media (min-width:1200px) {
    .list-group-horizontal-xl {
        flex-direction: row
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-inline-start-width: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-inline-start: -1px;
        border-inline-start-width: 1px
    }
}

@media (min-width:1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row
    }

    .list-group-horizontal-xxl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xxl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xxl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-inline-start-width: 0
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
        margin-inline-start: -1px;
        border-inline-start-width: 1px
    }
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    color: #084298;
    background-color: #cfe2ff
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #084298;
    background-color: #bacbe6
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #084298;
    border-color: #084298
}

.list-group-item-secondary {
    color: #41464b;
    background-color: #e2e3e5
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #41464b;
    background-color: #cbccce
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #41464b;
    border-color: #41464b
}

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #0f5132;
    background-color: #bcd0c7
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #0f5132;
    border-color: #0f5132
}

.list-group-item-info {
    color: #055160;
    background-color: #cff4fc
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #055160;
    background-color: #badce3
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #055160;
    border-color: #055160
}

.list-group-item-warning {
    color: #664d03;
    background-color: #fff3cd
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #664d03;
    background-color: #e6dbb9
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #664d03;
    border-color: #664d03
}

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #842029;
    background-color: #dfc2c4
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #842029;
    border-color: #842029
}

.list-group-item-light {
    color: #636464;
    background-color: #fefefe
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #636464;
    background-color: #e5e5e5
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #636464;
    border-color: #636464
}

.list-group-item-dark {
    color: #141619;
    background-color: #d3d3d4
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #141619;
    background-color: #bebebf
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #141619;
    border-color: #141619
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: #fff0 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / .25);
    opacity: 1
}

.btn-close.disabled,
.btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: .25
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgb(255 255 255 / .85);
    background-clip: padding-box;
    border: 1px solid rgb(0 0 0 / .1);
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / .15);
    border-radius: .25rem
}

.toast:not(.showing):not(.show) {
    opacity: 0
}

.toast.hide {
    display: none
}

.toast-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none
}

.toast-container>:not(:last-child) {
    margin-bottom: .75rem
}

.toast-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    color: #6c757d;
    background-color: rgb(255 255 255 / .85);
    background-clip: padding-box;
    border-bottom: 1px solid rgb(0 0 0 / .05);
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.toast-header .btn-close {
    margin-inline-end: -.375rem;
    margin-inline-start: .75rem
}

.toast-body {
    padding: .75rem;
    word-wrap: break-word
}

.modal {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

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

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgb(0 0 0 / .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

.modal-fullscreen .modal-footer {
    border-radius: 0
}

@media (max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0
    }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: start;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: #fff0;
    border-style: solid
}

.bs-tooltip-auto[data-popper-placement^=top],
.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow {
    bottom: 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    top: -1px;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-auto[data-popper-placement^=right],
.bs-tooltip-end {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
    inset-inline-start: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    inset-inline-end: -1px;
    border-width: .4rem .4rem .4rem 0;
    border-inline-end-color: #000
}

.bs-tooltip-auto[data-popper-placement^=bottom],
.bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow {
    top: 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-auto[data-popper-placement^=left],
.bs-tooltip-start {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow {
    inset-inline-end: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
    inset-inline-start: -1px;
    border-width: .4rem 0 .4rem .4rem;
    border-inline-start-color: #000
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: start;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgb(0 0 0 / .2);
    border-radius: .3rem
}

.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem
}

.popover .popover-arrow::after,
.popover .popover-arrow::before {
    position: absolute;
    display: block;
    content: "";
    border-color: #fff0;
    border-style: solid
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,
.bs-popover-top>.popover-arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
.bs-popover-top>.popover-arrow::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgb(0 0 0 / .25)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,
.bs-popover-end>.popover-arrow {
    inset-inline-start: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
.bs-popover-end>.popover-arrow::before {
    inset-inline-start: 0;
    border-width: .5rem .5rem .5rem 0;
    border-inline-end-color: rgb(0 0 0 / .25)
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,
.bs-popover-end>.popover-arrow::after {
    inset-inline-start: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-inline-end-color: #fff
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,
.bs-popover-bottom>.popover-arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
.bs-popover-bottom>.popover-arrow::before {
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: rgb(0 0 0 / .25)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #fff
}

.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,
.bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    display: block;
    width: 1rem;
    margin-inline-start: -.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,
.bs-popover-start>.popover-arrow {
    inset-inline-end: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
.bs-popover-start>.popover-arrow::before {
    inset-inline-end: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-inline-start-color: rgb(0 0 0 / .25)
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,
.bs-popover-start>.popover-arrow::after {
    inset-inline-end: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-inline-start-color: #fff
}

.popover-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgb(0 0 0 / .2);
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: 1rem 1rem;
    color: #212529
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-inline-end: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

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

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {

    .carousel-fade .active.carousel-item-end,
    .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {

    .carousel-control-next,
    .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    inset-inline-start: 0
}

.carousel-control-next {
    inset-inline-end: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-inline-end: 15%;
    margin-bottom: 1rem;
    margin-inline-start: 15%;
    list-style: none
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-inline-end: 3px;
    margin-inline-start: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid #fff0;
    border-bottom: 10px solid #fff0;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    inset-inline-end: 15%;
    bottom: 1.25rem;
    inset-inline-start: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentColor;
    border-inline-end-color: #fff0;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@-webkit-keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: .75s linear infinite spinner-grow;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media (prefers-reduced-motion:reduce) {

    .spinner-border,
    .spinner-grow {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out
}

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

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem
}

.offcanvas-header .btn-close {
    padding: .5rem .5rem;
    margin-top: -.5rem;
    margin-inline-end: -.5rem;
    margin-bottom: -.5rem
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto
}

.offcanvas-start {
    top: 0;
    inset-inline-start: 0;
    width: 400px;
    border-inline-end: 1px solid rgb(0 0 0 / .2);
    transform: translateX(-100%)
}

.offcanvas-end {
    top: 0;
    inset-inline-end: 0;
    width: 400px;
    border-inline-start: 1px solid rgb(0 0 0 / .2);
    transform: translateX(100%)
}

.offcanvas-top {
    top: 0;
    inset-inline-end: 0;
    inset-inline-start: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgb(0 0 0 / .2);
    transform: translateY(-100%)
}

.offcanvas-bottom {
    inset-inline-end: 0;
    inset-inline-start: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgb(0 0 0 / .2);
    transform: translateY(100%)
}

.offcanvas.show {
    transform: none
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.link-primary {
    color: #0d6efd
}

.link-primary:focus,
.link-primary:hover {
    color: #0a58ca
}

.link-secondary {
    color: #6c757d
}

.link-secondary:focus,
.link-secondary:hover {
    color: #565e64
}

.link-success {
    color: #198754
}

.link-success:focus,
.link-success:hover {
    color: #146c43
}

.link-info {
    color: #0dcaf0
}

.link-info:focus,
.link-info:hover {
    color: #3dd5f3
}

.link-warning {
    color: #ffc107
}

.link-warning:focus,
.link-warning:hover {
    color: #ffcd39
}

.link-danger {
    color: #dc3545
}

.link-danger:focus,
.link-danger:hover {
    color: #b02a37
}

.link-light {
    color: #f8f9fa
}

.link-light:focus,
.link-light:hover {
    color: #f9fafb
}

.link-dark {
    color: #212529
}

.link-dark:focus,
.link-dark:hover {
    color: #1a1e21
}

.ratio {
    position: relative;
    width: 100%
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%)
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%)
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%)
}

.fixed-top {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    inset-inline-start: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 1030
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020
}

@media (min-width:576px) {
    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:768px) {
    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:992px) {
    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1200px) {
    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1400px) {
    .sticky-xxl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 1;
    content: ""
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: left !important
}

.float-end {
    float: right !important
}

.float-none {
    float: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-visible {
    overflow: visible !important
}

.overflow-scroll {
    overflow: scroll !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / .15) !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / .075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / .175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    inset-inline-start: 0 !important
}

.start-50 {
    inset-inline-start: 50% !important
}

.start-100 {
    inset-inline-start: 100% !important
}

.end-0 {
    inset-inline-end: 0 !important
}

.end-50 {
    inset-inline-end: 50% !important
}

.end-100 {
    inset-inline-end: 100% !important
}

.translate-middle {
    transform: translate(-50%, -50%) !important
}

.translate-middle-x {
    transform: translateX(-50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-inline-end: 1px solid #dee2e6 !important
}

.border-end-0 {
    border-inline-end: 0 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-inline-start: 1px solid #dee2e6 !important
}

.border-start-0 {
    border-inline-start: 0 !important
}

.border-primary {
    border-color: #0d6efd !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #198754 !important
}

.border-info {
    border-color: #0dcaf0 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #212529 !important
}

.border-white {
    border-color: #fff !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

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

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

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

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

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important
}

.mx-1 {
    margin-inline-end: .25rem !important;
    margin-inline-start: .25rem !important
}

.mx-2 {
    margin-inline-end: .5rem !important;
    margin-inline-start: .5rem !important
}

.mx-3 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important
}

.mx-4 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important
}

.mx-5 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important
}

.mx-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-inline-end: 0 !important
}

.me-1 {
    margin-inline-end: .25rem !important
}

.me-2 {
    margin-inline-end: .5rem !important
}

.me-3 {
    margin-inline-end: 1rem !important
}

.me-4 {
    margin-inline-end: 1.5rem !important
}

.me-5 {
    margin-inline-end: 3rem !important
}

.me-auto {
    margin-inline-end: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-inline-start: 0 !important
}

.ms-1 {
    margin-inline-start: .25rem !important
}

.ms-2 {
    margin-inline-start: .5rem !important
}

.ms-3 {
    margin-inline-start: 1rem !important
}

.ms-4 {
    margin-inline-start: 1.5rem !important
}

.ms-5 {
    margin-inline-start: 3rem !important
}

.ms-auto {
    margin-inline-start: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important
}

.px-1 {
    padding-inline-end: .25rem !important;
    padding-inline-start: .25rem !important
}

.px-2 {
    padding-inline-end: .5rem !important;
    padding-inline-start: .5rem !important
}

.px-3 {
    padding-inline-end: 1rem !important;
    padding-inline-start: 1rem !important
}

.px-4 {
    padding-inline-end: 1.5rem !important;
    padding-inline-start: 1.5rem !important
}

.px-5 {
    padding-inline-end: 3rem !important;
    padding-inline-start: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-inline-end: 0 !important
}

.pe-1 {
    padding-inline-end: .25rem !important
}

.pe-2 {
    padding-inline-end: .5rem !important
}

.pe-3 {
    padding-inline-end: 1rem !important
}

.pe-4 {
    padding-inline-end: 1.5rem !important
}

.pe-5 {
    padding-inline-end: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-inline-start: 0 !important
}

.ps-1 {
    padding-inline-start: .25rem !important
}

.ps-2 {
    padding-inline-start: .5rem !important
}

.ps-3 {
    padding-inline-start: 1rem !important
}

.ps-4 {
    padding-inline-start: 1.5rem !important
}

.ps-5 {
    padding-inline-start: 3rem !important
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fst-italic {
    font-style: italic !important
}

.fst-normal {
    font-style: normal !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.text-start {
    text-align: start !important
}

.text-end {
    text-align: end !important
}

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

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.text-primary {
    color: #0d6efd !important
}

.text-secondary {
    color: #6c757d !important
}

.text-success {
    color: #198754 !important
}

.text-info {
    color: #0dcaf0 !important
}

.text-warning {
    color: #ffc107 !important
}

.text-danger {
    color: #dc3545 !important
}

.text-light {
    color: #f8f9fa !important
}

.text-dark {
    color: #212529 !important
}

.text-white {
    color: #fff !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgb(0 0 0 / .5) !important
}

.text-white-50 {
    color: rgb(255 255 255 / .5) !important
}

.text-reset {
    color: inherit !important
}

.bg-primary {
    background-color: #0d6efd !important
}

.bg-secondary {
    background-color: #6c757d !important
}

.bg-success {
    background-color: #198754 !important
}

.bg-info {
    background-color: #0dcaf0 !important
}

.bg-warning {
    background-color: #ffc107 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

.bg-dark {
    background-color: #212529 !important
}

.bg-body {
    background-color: #fff !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-end {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-start {
    border-bottom-left-radius: .25rem !important;
    border-top-left-radius: .25rem !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media (min-width:576px) {
    .float-sm-start {
        float: left !important
    }

    .float-sm-end {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-inline-end: 0 !important;
        margin-inline-start: 0 !important
    }

    .mx-sm-1 {
        margin-inline-end: .25rem !important;
        margin-inline-start: .25rem !important
    }

    .mx-sm-2 {
        margin-inline-end: .5rem !important;
        margin-inline-start: .5rem !important
    }

    .mx-sm-3 {
        margin-inline-end: 1rem !important;
        margin-inline-start: 1rem !important
    }

    .mx-sm-4 {
        margin-inline-end: 1.5rem !important;
        margin-inline-start: 1.5rem !important
    }

    .mx-sm-5 {
        margin-inline-end: 3rem !important;
        margin-inline-start: 3rem !important
    }

    .mx-sm-auto {
        margin-inline-end: auto !important;
        margin-inline-start: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-inline-end: 0 !important
    }

    .me-sm-1 {
        margin-inline-end: .25rem !important
    }

    .me-sm-2 {
        margin-inline-end: .5rem !important
    }

    .me-sm-3 {
        margin-inline-end: 1rem !important
    }

    .me-sm-4 {
        margin-inline-end: 1.5rem !important
    }

    .me-sm-5 {
        margin-inline-end: 3rem !important
    }

    .me-sm-auto {
        margin-inline-end: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-inline-start: 0 !important
    }

    .ms-sm-1 {
        margin-inline-start: .25rem !important
    }

    .ms-sm-2 {
        margin-inline-start: .5rem !important
    }

    .ms-sm-3 {
        margin-inline-start: 1rem !important
    }

    .ms-sm-4 {
        margin-inline-start: 1.5rem !important
    }

    .ms-sm-5 {
        margin-inline-start: 3rem !important
    }

    .ms-sm-auto {
        margin-inline-start: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-inline-end: 0 !important;
        padding-inline-start: 0 !important
    }

    .px-sm-1 {
        padding-inline-end: .25rem !important;
        padding-inline-start: .25rem !important
    }

    .px-sm-2 {
        padding-inline-end: .5rem !important;
        padding-inline-start: .5rem !important
    }

    .px-sm-3 {
        padding-inline-end: 1rem !important;
        padding-inline-start: 1rem !important
    }

    .px-sm-4 {
        padding-inline-end: 1.5rem !important;
        padding-inline-start: 1.5rem !important
    }

    .px-sm-5 {
        padding-inline-end: 3rem !important;
        padding-inline-start: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-inline-end: 0 !important
    }

    .pe-sm-1 {
        padding-inline-end: .25rem !important
    }

    .pe-sm-2 {
        padding-inline-end: .5rem !important
    }

    .pe-sm-3 {
        padding-inline-end: 1rem !important
    }

    .pe-sm-4 {
        padding-inline-end: 1.5rem !important
    }

    .pe-sm-5 {
        padding-inline-end: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-inline-start: 0 !important
    }

    .ps-sm-1 {
        padding-inline-start: .25rem !important
    }

    .ps-sm-2 {
        padding-inline-start: .5rem !important
    }

    .ps-sm-3 {
        padding-inline-start: 1rem !important
    }

    .ps-sm-4 {
        padding-inline-start: 1.5rem !important
    }

    .ps-sm-5 {
        padding-inline-start: 3rem !important
    }

    .text-sm-start {
        text-align: start !important
    }

    .text-sm-end {
        text-align: end !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .float-md-start {
        float: left !important
    }

    .float-md-end {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-inline-end: 0 !important;
        margin-inline-start: 0 !important
    }

    .mx-md-1 {
        margin-inline-end: .25rem !important;
        margin-inline-start: .25rem !important
    }

    .mx-md-2 {
        margin-inline-end: .5rem !important;
        margin-inline-start: .5rem !important
    }

    .mx-md-3 {
        margin-inline-end: 1rem !important;
        margin-inline-start: 1rem !important
    }

    .mx-md-4 {
        margin-inline-end: 1.5rem !important;
        margin-inline-start: 1.5rem !important
    }

    .mx-md-5 {
        margin-inline-end: 3rem !important;
        margin-inline-start: 3rem !important
    }

    .mx-md-auto {
        margin-inline-end: auto !important;
        margin-inline-start: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-inline-end: 0 !important
    }

    .me-md-1 {
        margin-inline-end: .25rem !important
    }

    .me-md-2 {
        margin-inline-end: .5rem !important
    }

    .me-md-3 {
        margin-inline-end: 1rem !important
    }

    .me-md-4 {
        margin-inline-end: 1.5rem !important
    }

    .me-md-5 {
        margin-inline-end: 3rem !important
    }

    .me-md-auto {
        margin-inline-end: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-inline-start: 0 !important
    }

    .ms-md-1 {
        margin-inline-start: .25rem !important
    }

    .ms-md-2 {
        margin-inline-start: .5rem !important
    }

    .ms-md-3 {
        margin-inline-start: 1rem !important
    }

    .ms-md-4 {
        margin-inline-start: 1.5rem !important
    }

    .ms-md-5 {
        margin-inline-start: 3rem !important
    }

    .ms-md-auto {
        margin-inline-start: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-inline-end: 0 !important;
        padding-inline-start: 0 !important
    }

    .px-md-1 {
        padding-inline-end: .25rem !important;
        padding-inline-start: .25rem !important
    }

    .px-md-2 {
        padding-inline-end: .5rem !important;
        padding-inline-start: .5rem !important
    }

    .px-md-3 {
        padding-inline-end: 1rem !important;
        padding-inline-start: 1rem !important
    }

    .px-md-4 {
        padding-inline-end: 1.5rem !important;
        padding-inline-start: 1.5rem !important
    }

    .px-md-5 {
        padding-inline-end: 3rem !important;
        padding-inline-start: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-inline-end: 0 !important
    }

    .pe-md-1 {
        padding-inline-end: .25rem !important
    }

    .pe-md-2 {
        padding-inline-end: .5rem !important
    }

    .pe-md-3 {
        padding-inline-end: 1rem !important
    }

    .pe-md-4 {
        padding-inline-end: 1.5rem !important
    }

    .pe-md-5 {
        padding-inline-end: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-inline-start: 0 !important
    }

    .ps-md-1 {
        padding-inline-start: .25rem !important
    }

    .ps-md-2 {
        padding-inline-start: .5rem !important
    }

    .ps-md-3 {
        padding-inline-start: 1rem !important
    }

    .ps-md-4 {
        padding-inline-start: 1.5rem !important
    }

    .ps-md-5 {
        padding-inline-start: 3rem !important
    }

    .text-md-start {
        text-align: start !important
    }

    .text-md-end {
        text-align: end !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .float-lg-start {
        float: left !important
    }

    .float-lg-end {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-inline-end: 0 !important;
        margin-inline-start: 0 !important
    }

    .mx-lg-1 {
        margin-inline-end: .25rem !important;
        margin-inline-start: .25rem !important
    }

    .mx-lg-2 {
        margin-inline-end: .5rem !important;
        margin-inline-start: .5rem !important
    }

    .mx-lg-3 {
        margin-inline-end: 1rem !important;
        margin-inline-start: 1rem !important
    }

    .mx-lg-4 {
        margin-inline-end: 1.5rem !important;
        margin-inline-start: 1.5rem !important
    }

    .mx-lg-5 {
        margin-inline-end: 3rem !important;
        margin-inline-start: 3rem !important
    }

    .mx-lg-auto {
        margin-inline-end: auto !important;
        margin-inline-start: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-inline-end: 0 !important
    }

    .me-lg-1 {
        margin-inline-end: .25rem !important
    }

    .me-lg-2 {
        margin-inline-end: .5rem !important
    }

    .me-lg-3 {
        margin-inline-end: 1rem !important
    }

    .me-lg-4 {
        margin-inline-end: 1.5rem !important
    }

    .me-lg-5 {
        margin-inline-end: 3rem !important
    }

    .me-lg-auto {
        margin-inline-end: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-inline-start: 0 !important
    }

    .ms-lg-1 {
        margin-inline-start: .25rem !important
    }

    .ms-lg-2 {
        margin-inline-start: .5rem !important
    }

    .ms-lg-3 {
        margin-inline-start: 1rem !important
    }

    .ms-lg-4 {
        margin-inline-start: 1.5rem !important
    }

    .ms-lg-5 {
        margin-inline-start: 3rem !important
    }

    .ms-lg-auto {
        margin-inline-start: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-inline-end: 0 !important;
        padding-inline-start: 0 !important
    }

    .px-lg-1 {
        padding-inline-end: .25rem !important;
        padding-inline-start: .25rem !important
    }

    .px-lg-2 {
        padding-inline-end: .5rem !important;
        padding-inline-start: .5rem !important
    }

    .px-lg-3 {
        padding-inline-end: 1rem !important;
        padding-inline-start: 1rem !important
    }

    .px-lg-4 {
        padding-inline-end: 1.5rem !important;
        padding-inline-start: 1.5rem !important
    }

    .px-lg-5 {
        padding-inline-end: 3rem !important;
        padding-inline-start: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-inline-end: 0 !important
    }

    .pe-lg-1 {
        padding-inline-end: .25rem !important
    }

    .pe-lg-2 {
        padding-inline-end: .5rem !important
    }

    .pe-lg-3 {
        padding-inline-end: 1rem !important
    }

    .pe-lg-4 {
        padding-inline-end: 1.5rem !important
    }

    .pe-lg-5 {
        padding-inline-end: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-inline-start: 0 !important
    }

    .ps-lg-1 {
        padding-inline-start: .25rem !important
    }

    .ps-lg-2 {
        padding-inline-start: .5rem !important
    }

    .ps-lg-3 {
        padding-inline-start: 1rem !important
    }

    .ps-lg-4 {
        padding-inline-start: 1.5rem !important
    }

    .ps-lg-5 {
        padding-inline-start: 3rem !important
    }

    .text-lg-start {
        text-align: start !important
    }

    .text-lg-end {
        text-align: end !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .float-xl-start {
        float: left !important
    }

    .float-xl-end {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-inline-end: 0 !important;
        margin-inline-start: 0 !important
    }

    .mx-xl-1 {
        margin-inline-end: .25rem !important;
        margin-inline-start: .25rem !important
    }

    .mx-xl-2 {
        margin-inline-end: .5rem !important;
        margin-inline-start: .5rem !important
    }

    .mx-xl-3 {
        margin-inline-end: 1rem !important;
        margin-inline-start: 1rem !important
    }

    .mx-xl-4 {
        margin-inline-end: 1.5rem !important;
        margin-inline-start: 1.5rem !important
    }

    .mx-xl-5 {
        margin-inline-end: 3rem !important;
        margin-inline-start: 3rem !important
    }

    .mx-xl-auto {
        margin-inline-end: auto !important;
        margin-inline-start: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-inline-end: 0 !important
    }

    .me-xl-1 {
        margin-inline-end: .25rem !important
    }

    .me-xl-2 {
        margin-inline-end: .5rem !important
    }

    .me-xl-3 {
        margin-inline-end: 1rem !important
    }

    .me-xl-4 {
        margin-inline-end: 1.5rem !important
    }

    .me-xl-5 {
        margin-inline-end: 3rem !important
    }

    .me-xl-auto {
        margin-inline-end: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-inline-start: 0 !important
    }

    .ms-xl-1 {
        margin-inline-start: .25rem !important
    }

    .ms-xl-2 {
        margin-inline-start: .5rem !important
    }

    .ms-xl-3 {
        margin-inline-start: 1rem !important
    }

    .ms-xl-4 {
        margin-inline-start: 1.5rem !important
    }

    .ms-xl-5 {
        margin-inline-start: 3rem !important
    }

    .ms-xl-auto {
        margin-inline-start: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-inline-end: 0 !important;
        padding-inline-start: 0 !important
    }

    .px-xl-1 {
        padding-inline-end: .25rem !important;
        padding-inline-start: .25rem !important
    }

    .px-xl-2 {
        padding-inline-end: .5rem !important;
        padding-inline-start: .5rem !important
    }

    .px-xl-3 {
        padding-inline-end: 1rem !important;
        padding-inline-start: 1rem !important
    }

    .px-xl-4 {
        padding-inline-end: 1.5rem !important;
        padding-inline-start: 1.5rem !important
    }

    .px-xl-5 {
        padding-inline-end: 3rem !important;
        padding-inline-start: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-inline-end: 0 !important
    }

    .pe-xl-1 {
        padding-inline-end: .25rem !important
    }

    .pe-xl-2 {
        padding-inline-end: .5rem !important
    }

    .pe-xl-3 {
        padding-inline-end: 1rem !important
    }

    .pe-xl-4 {
        padding-inline-end: 1.5rem !important
    }

    .pe-xl-5 {
        padding-inline-end: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-inline-start: 0 !important
    }

    .ps-xl-1 {
        padding-inline-start: .25rem !important
    }

    .ps-xl-2 {
        padding-inline-start: .5rem !important
    }

    .ps-xl-3 {
        padding-inline-start: 1rem !important
    }

    .ps-xl-4 {
        padding-inline-start: 1.5rem !important
    }

    .ps-xl-5 {
        padding-inline-start: 3rem !important
    }

    .text-xl-start {
        text-align: start !important
    }

    .text-xl-end {
        text-align: end !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

@media (min-width:1400px) {
    .float-xxl-start {
        float: left !important
    }

    .float-xxl-end {
        float: right !important
    }

    .float-xxl-none {
        float: none !important
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: .25rem !important
    }

    .gap-xxl-2 {
        gap: .5rem !important
    }

    .gap-xxl-3 {
        gap: 1rem !important
    }

    .gap-xxl-4 {
        gap: 1.5rem !important
    }

    .gap-xxl-5 {
        gap: 3rem !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-inline-end: 0 !important;
        margin-inline-start: 0 !important
    }

    .mx-xxl-1 {
        margin-inline-end: .25rem !important;
        margin-inline-start: .25rem !important
    }

    .mx-xxl-2 {
        margin-inline-end: .5rem !important;
        margin-inline-start: .5rem !important
    }

    .mx-xxl-3 {
        margin-inline-end: 1rem !important;
        margin-inline-start: 1rem !important
    }

    .mx-xxl-4 {
        margin-inline-end: 1.5rem !important;
        margin-inline-start: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-inline-end: 3rem !important;
        margin-inline-start: 3rem !important
    }

    .mx-xxl-auto {
        margin-inline-end: auto !important;
        margin-inline-start: auto !important
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-inline-end: 0 !important
    }

    .me-xxl-1 {
        margin-inline-end: .25rem !important
    }

    .me-xxl-2 {
        margin-inline-end: .5rem !important
    }

    .me-xxl-3 {
        margin-inline-end: 1rem !important
    }

    .me-xxl-4 {
        margin-inline-end: 1.5rem !important
    }

    .me-xxl-5 {
        margin-inline-end: 3rem !important
    }

    .me-xxl-auto {
        margin-inline-end: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-inline-start: 0 !important
    }

    .ms-xxl-1 {
        margin-inline-start: .25rem !important
    }

    .ms-xxl-2 {
        margin-inline-start: .5rem !important
    }

    .ms-xxl-3 {
        margin-inline-start: 1rem !important
    }

    .ms-xxl-4 {
        margin-inline-start: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-inline-start: 3rem !important
    }

    .ms-xxl-auto {
        margin-inline-start: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-inline-end: 0 !important;
        padding-inline-start: 0 !important
    }

    .px-xxl-1 {
        padding-inline-end: .25rem !important;
        padding-inline-start: .25rem !important
    }

    .px-xxl-2 {
        padding-inline-end: .5rem !important;
        padding-inline-start: .5rem !important
    }

    .px-xxl-3 {
        padding-inline-end: 1rem !important;
        padding-inline-start: 1rem !important
    }

    .px-xxl-4 {
        padding-inline-end: 1.5rem !important;
        padding-inline-start: 1.5rem !important
    }

    .px-xxl-5 {
        padding-inline-end: 3rem !important;
        padding-inline-start: 3rem !important
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-inline-end: 0 !important
    }

    .pe-xxl-1 {
        padding-inline-end: .25rem !important
    }

    .pe-xxl-2 {
        padding-inline-end: .5rem !important
    }

    .pe-xxl-3 {
        padding-inline-end: 1rem !important
    }

    .pe-xxl-4 {
        padding-inline-end: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-inline-end: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-inline-start: 0 !important
    }

    .ps-xxl-1 {
        padding-inline-start: .25rem !important
    }

    .ps-xxl-2 {
        padding-inline-start: .5rem !important
    }

    .ps-xxl-3 {
        padding-inline-start: 1rem !important
    }

    .ps-xxl-4 {
        padding-inline-start: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-inline-start: 3rem !important
    }

    .text-xxl-start {
        text-align: start !important
    }

    .text-xxl-end {
        text-align: end !important
    }

    .text-xxl-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

@-webkit-keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

@keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

.bootstrap-select>select.bs-select-hidden,
select.bs-select-hidden,
select.selectpicker {
    display: none !important
}

.bootstrap-select {
    width: 220px\0;
    vertical-align: middle
}

.bootstrap-select>.dropdown-toggle {
    position: relative;
    width: 100%;
    text-align: end;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.bootstrap-select>.dropdown-toggle:after {
    margin-top: -1px
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #999
}

.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover {
    color: rgb(255 255 255 / .5)
}

.bootstrap-select>select {
    position: absolute !important;
    bottom: 0;
    inset-inline-start: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
    z-index: 0 !important
}

.bootstrap-select>select.mobile-device {
    top: 0;
    inset-inline-start: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2 !important
}

.bootstrap-select.is-invalid .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle,
.was-validated .bootstrap-select select:invalid+.dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
    border-color: #28a745
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 220px
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: thin dotted #333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
    height: auto
}

:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    float: none;
    z-index: auto
}

.form-inline .bootstrap-select,
.form-inline .bootstrap-select.form-control:not([class*=col-]) {
    width: auto
}

.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
    float: none;
    display: inline-block;
    margin-inline-start: 0
}

.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*=col-].dropdown-menu-right,
.row .bootstrap-select[class*=col-].dropdown-menu-right {
    float: right
}

.form-group .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-inline .bootstrap-select {
    margin-bottom: 0
}

.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
    padding: 0
}

.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.bootstrap-select.form-control-lg .dropdown-toggle,
.bootstrap-select.form-control-sm .dropdown-toggle {
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: .25rem .5rem
}

.bootstrap-select.form-control-lg .dropdown-toggle {
    padding: .5rem 1rem
}

.form-inline .bootstrap-select .form-control {
    width: 100%
}

.bootstrap-select.disabled,
.bootstrap-select>.disabled {
    cursor: not-allowed
}

.bootstrap-select.disabled:focus,
.bootstrap-select>.disabled:focus {
    outline: 0 !important
}

.bootstrap-select.bs-container {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 0 !important;
    padding: 0 !important
}

.bootstrap-select.bs-container .dropdown-menu {
    z-index: 1060
}

.bootstrap-select .dropdown-toggle .filter-option {
    position: static;
    top: 0;
    inset-inline-start: 0;
    float: left;
    height: 100%;
    width: 100%;
    text-align: start;
    overflow: hidden;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
}

.bs3.bootstrap-select .dropdown-toggle .filter-option {
    padding-inline-end: inherit
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
    position: absolute;
    padding-top: inherit;
    padding-bottom: inherit;
    padding-inline-start: inherit;
    float: none
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
    padding-inline-end: inherit
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden
}

.bootstrap-select .dropdown-toggle .filter-expand {
    width: 0 !important;
    float: left;
    opacity: 0 !important;
    overflow: hidden
}

.bootstrap-select .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    inset-inline-end: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
    border-radius: inherit
}

.bootstrap-select[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select .dropdown-menu>.inner:focus {
    outline: 0 !important
}

.bootstrap-select .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.bootstrap-select .dropdown-menu li {
    position: relative
}

.bootstrap-select .dropdown-menu li.active small {
    color: rgb(255 255 255 / .5) !important
}

.bootstrap-select .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select .dropdown-menu li a.opt {
    position: relative;
    padding-inline-start: 2.25em
}

.bootstrap-select .dropdown-menu li a span.check-mark {
    display: none
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select .dropdown-menu li small {
    padding-inline-start: .5em
}

.bootstrap-select .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / .05);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / .05);
    pointer-events: none;
    opacity: .9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select .dropdown-menu .notify.fadeOut {
    -webkit-animation: .3s linear 750ms forwards bs-notify-fadeOut;
    -o-animation: .3s linear 750ms forwards bs-notify-fadeOut;
    animation: .3s linear 750ms forwards bs-notify-fadeOut
}

.bootstrap-select .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option {
    position: static;
    display: inline;
    padding: 0
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
    display: inline
}

.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
    content: '\00a0'
}

.bootstrap-select.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: absolute;
    display: inline-block;
    inset-inline-end: 15px;
    top: 5px
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-inline-end: 34px
}

.bootstrap-select .bs-ok-default:after {
    content: '';
    display: block;
    width: .5em;
    height: 1em;
    border-style: solid;
    border-width: 0 .26em .26em 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
    content: '';
    border-inline-start: 7px solid #fff0;
    border-inline-end: 7px solid #fff0;
    border-bottom: 7px solid rgb(204 204 204 / .2);
    position: absolute;
    bottom: -4px;
    inset-inline-start: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
    content: '';
    border-inline-start: 6px solid #fff0;
    border-inline-end: 6px solid #fff0;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    inset-inline-start: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
    bottom: auto;
    top: -4px;
    border-top: 7px solid rgb(204 204 204 / .2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
    bottom: auto;
    top: -4px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
    inset-inline-end: 12px;
    inset-inline-start: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
    inset-inline-end: 13px;
    inset-inline-start: auto
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before {
    display: block
}

.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
    padding: 4px 8px
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-actionsbox .btn-group button {
    width: 50%
}

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-donebutton .btn-group button {
    width: 100%
}

.bs-searchbox+.bs-actionsbox {
    padding: 0 8px 4px
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none
}

@font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-inline-start: auto;
    margin-inline-end: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-container-pointer-events {
    touch-action: pan-y
}

.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgb(0 0 0 / .5), #fff0)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgb(0 0 0 / .5), #fff0)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgb(0 0 0 / .5), #fff0)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgb(0 0 0 / .5), #fff0)
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    inset-inline-start: 10px;
    inset-inline-end: auto
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
    color: #fff
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    inset-inline-end: 10px;
    inset-inline-start: auto
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
    color: #fff
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    inset-inline-start: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical>.swiper-pagination-bullets {
    inset-inline-end: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
    background: rgb(0 0 0 / .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    inset-inline-start: 0;
    top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    inset-inline-start: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgb(0 0 0 / .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    inset-inline-start: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    inset-inline-end: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgb(0 0 0 / .5);
    border-radius: 10px;
    inset-inline-start: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    inset-inline-start: 50%;
    top: 50%;
    margin-inline-start: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: #fff0
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-container-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    filter: blur(50px)
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.mfp-bg {
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    top: 0;
    inset-inline-start: 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%;
    inset-inline-start: 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: start;
    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: -.8em;
    inset-inline-start: 8px;
    inset-inline-end: 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: #fff0;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    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;
    inset-inline-end: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .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;
    inset-inline-end: -6px;
    text-align: end;
    padding-inline-end: 6px;
    width: 100%
}

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

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

.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;
    inset-inline-start: 0;
    top: 0;
    margin-top: 35px;
    margin-inline-start: 35px;
    border: medium inset #fff0
}

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

.mfp-arrow-left {
    inset-inline-start: 0
}

.mfp-arrow-inset-inline-start:after {
    border-inline-end: 17px solid #FFF;
    margin-inline-start: 31px
}

.mfp-arrow-inset-inline-start:before {
    margin-inline-start: 25px;
    border-inline-end: 27px solid #3f3f3f
}

.mfp-arrow-right {
    inset-inline-end: 0
}

.mfp-arrow-inset-inline-end:after {
    border-inline-start: 17px solid #FFF;
    margin-inline-start: 39px
}

.mfp-arrow-inset-inline-end:before {
    border-inline-start: 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;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgb(0 0 0 / .6);
    background: #000
}

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
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    inset-inline-end: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgb(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%;
    inset-inline-start: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: start;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-inline-end: 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) {
    .mfp-img-mobile .mfp-image-holder {
        padding-inline-start: 0;
        padding-inline-end: 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-inline-start: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgb(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 {
        inset-inline-end: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        inset-inline-end: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgb(0 0 0 / .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

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

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

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

    .mfp-container {
        padding-inline-start: 6px;
        padding-inline-end: 6px
    }
}

:root {
    --mm-lineheight: 22px
}

.mm-hidden {
    display: none !important
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu,
.mm-menu *,
.mm-menu :after,
.mm-menu :before {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

:root {
    --mm-blocker-visibility-delay: 0.4s;
    --mm-blocker-opacity-delay: 0s
}

.mm-blocker {
    display: block;
    position: absolute;
    bottom: 100%;
    top: 0;
    inset-inline-end: 0;
    inset-inline-start: 0;
    z-index: 3;
    opacity: 0;
    background: var(--mm-color-background);
    -webkit-transition: bottom 0s ease var(--mm-blocker-visibility-delay), width .4s ease, opacity .4s ease var(--mm-blocker-opacity-delay), -webkit-transform .4s ease;
    transition: bottom 0s ease var(--mm-blocker-visibility-delay), width .4s ease, opacity .4s ease var(--mm-blocker-opacity-delay), -webkit-transform .4s ease;
    -o-transition: bottom 0s ease var(--mm-blocker-visibility-delay), width .4s ease, opacity .4s ease var(--mm-blocker-opacity-delay), transform .4s ease;
    transition: bottom 0s ease var(--mm-blocker-visibility-delay), width .4s ease, opacity .4s ease var(--mm-blocker-opacity-delay), transform .4s ease;
    transition: bottom 0s ease var(--mm-blocker-visibility-delay), width .4s ease, opacity .4s ease var(--mm-blocker-opacity-delay), transform .4s ease, -webkit-transform .4s ease
}

.mm-blocker:focus-visible {
    opacity: .75
}

.mm-btn {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 50px;
    padding: 0
}

.mm-btn--next,
[dir=rtl] .mm-btn--prev {
    --mm-btn-rotate: 135deg
}

.mm-btn--prev,
[dir=rtl] .mm-btn--next {
    --mm-btn-rotate: -45deg
}

.mm-btn--next:after,
.mm-btn--prev:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid var(--mm-color-icon);
    border-bottom: none;
    border-inline-end: none;
    -webkit-transform: rotate(var(--mm-btn-rotate));
    -ms-transform: rotate(var(--mm-btn-rotate));
    transform: rotate(var(--mm-btn-rotate))
}

.mm-btn--prev:before {
    inset-inline-start: 23px
}

.mm-btn--next:after {
    inset-inline-end: 23px
}

.mm-btn--close:before {
    content: "×";
    font-size: 150%
}

.mm-btnreset {
    padding: 0;
    background: 0 0;
    border: none;
    cursor: pointer
}

.mm-divider {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: var(--mm-lineheight);
    padding: calc((var(--mm-listitem-size) * .65 - var(--mm-lineheight)) * .5) 20px;
    font-size: 75%;
    text-transform: uppercase;
    background: var(--mm-color-background);
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--mm-color-background-highlight)), to(var(--mm-color-background-highlight)));
    background-image: -o-linear-gradient(var(--mm-color-background-highlight), var(--mm-color-background-highlight));
    background-image: linear-gradient(var(--mm-color-background-highlight), var(--mm-color-background-highlight));
    opacity: 1;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.mm-navbar:not(.mm-hidden)~.mm-listview .mm-divider {
    top: var(--mm-navbar-size)
}

:root {
    --mm-listitem-size: 50px
}

.mm-listitem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    padding: 0;
    margin: 0;
    color: var(--mm-color-text);
    border-color: var(--mm-color-border)
}

.mm-listitem:after {
    content: "";
    border-color: inherit;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    inset-inline-start: 20px;
    inset-inline-end: 0;
    bottom: 0
}

.mm-listitem__btn,
.mm-listitem__text {
    padding: calc((var(--mm-listitem-size) - var(--mm-lineheight))/ 2) 0
}

.mm-listitem__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    display: block;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-listitem__btn {
    display: block;
    position: relative;
    width: auto;
    -webkit-padding-end: 50px;
    padding-inline-end: 50px;
    border-color: inherit;
    background: #fff0
}

.mm-listitem__btn:not(.mm-listitem__text) {
    border-inline-start-width: 1px;
    border-inline-start-style: solid
}

.mm-listitem--selected>.mm-listitem__text {
    background: var(--mm-color-background-emphasis)
}

.mm-listitem--opened>.mm-listitem__btn,
.mm-listitem--opened>.mm-panel {
    background: var(--mm-color-background-highlight)
}

.mm-listview {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 0;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
    line-height: var(--mm-lineheight);
    -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.mm-menu ::-webkit-input-placeholder {
    color: var(--mm-color-text-dimmed)
}

.mm-menu ::-moz-placeholder {
    color: var(--mm-color-text-dimmed)
}

.mm-menu :-ms-input-placeholder {
    color: var(--mm-color-text-dimmed)
}

.mm-menu ::-ms-input-placeholder {
    color: var(--mm-color-text-dimmed)
}

.mm-menu ::placeholder {
    color: var(--mm-color-text-dimmed)
}

.mm-menu,
.mm-menu * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-menu :focus,
.mm-menu :focus-visible,
.mm-menu:focus,
.mm-menu:focus-visible {
    outline: 0
}

.mm-menu a,
.mm-menu button,
.mm-menu label {
    color: inherit
}

.mm-menu a:focus,
.mm-menu button:focus,
.mm-menu label:focus {
    outline: 0
}

.mm-menu a:focus-visible,
.mm-menu button:focus-visible,
.mm-menu label:focus-visible {
    outline: 2px solid var(--mm-color-focusring);
    outline-offset: -5px
}

.mm-menu input:focus,
.mm-menu input:focus-visible,
.mm-menu select:focus,
.mm-menu select:focus-visible,
.mm-menu textarea:focus,
.mm-menu textarea:focus-visible {
    outline: 2px solid var(--mm-color-focusring);
    outline-offset: 2px
}

.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
    text-decoration: none;
    color: inherit
}

:root {
    --mm-navbar-size: 50px
}

.mm-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: var(--mm-navbar-size);
    padding-top: env(safe-area-inset-top);
    color: var(--mm-color-text-dimmed);
    text-align: center;
    opacity: 1;
    background: var(--mm-color-background);
    border-bottom: 1px solid var(--mm-color-border);
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.mm-navbar>* {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-navbar__btn {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.mm-navbar__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    overflow: hidden
}

.mm-navbar__title[href="#"] {
    pointer-events: none
}

.mm-navbar__title>span {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-btn.mm-hidden+.mm-navbar__title:not(:last-child) {
    -webkit-padding-start: 60px;
    padding-inline-start: 60px;
    -webkit-padding-end: 10px;
    padding-inline-end: 10px
}

.mm-btn:not(.mm-hidden)+.mm-navbar__title:last-child {
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
    -webkit-padding-end: 60px;
    padding-inline-end: 60px
}

.mm-panel {
    --mm-panel-child-offset: 100%;
    --mm-panel-parent-offset: -30%;
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    color: var(--mm-color-text);
    border-color: var(--mm-color-border);
    background: var(--mm-color-background);
    -webkit-transform: translate3d(var(--mm-panel-child-offset), 0, 0);
    transform: translate3d(var(--mm-panel-child-offset), 0, 0);
    -webkit-transition-property: inset-inline-start, -webkit-transform;
    transition-property: inset-inline-start, -webkit-transform;
    -o-transition-property: transform, inset-inline-start;
    transition-property: transform, inset-inline-start;
    transition-property: transform, inset-inline-start, -webkit-transform
}

[dir=rtl] .mm-panel {
    --mm-panel-child-offset: -100%;
    --mm-panel-parent-offset: 30%
}

.mm-panel:after {
    content: "";
    display: block;
    height: var(--mm-listitem-size)
}

.mm-panel:focus {
    outline: 0
}

.mm-panel--opened {
    z-index: 2;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.mm-panel--parent {
    -webkit-transform: translate3d(var(--mm-panel-parent-offset), 0, 0);
    transform: translate3d(var(--mm-panel-parent-offset), 0, 0);
    z-index: 0
}

.mm-panel--highest {
    z-index: 3
}

.mm-menu--opened .mm-panel--noanimation {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important
}

.mm-panel__content {
    padding: 20px
}

.mm-panels {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text)
}

.mm-panels:focus {
    outline: 0
}

:root {
    --mm-toggle-size: 34px
}

.mm-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: calc(var(--mm-toggle-size) * 1.75);
    -ms-flex: calc(var(--mm-toggle-size) * 1.75) 0 0;
    flex: calc(var(--mm-toggle-size) * 1.75) 0 0;
    height: var(--mm-toggle-size);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: none !important;
    border-radius: var(--mm-toggle-size);
    border: var(--mm-color-border);
    background: var(--mm-color-border);
    cursor: pointer;
    -webkit-transition-property: background-color;
    -o-transition-property: background-color;
    transition-property: background-color
}

.mm-toggle:before {
    content: "";
    aspect-ratio: 1;
    margin: 2px;
    border-radius: 100%;
    background: var(--mm-color-background);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.mm-toggle:checked {
    background: #4bd963
}

.mm-toggle:checked:before {
    -webkit-transform: translateX(calc(var(--mm-toggle-size) * .75));
    -ms-transform: translateX(calc(var(--mm-toggle-size) * .75));
    transform: translateX(calc(var(--mm-toggle-size) * .75))
}

[dir=rtl] .mm-toggle:checked:before {
    -webkit-transform: translateX(calc(var(--mm-toggle-size) * -.75));
    -ms-transform: translateX(calc(var(--mm-toggle-size) * -.75));
    transform: translateX(calc(var(--mm-toggle-size) * -.75))
}

.mm-listitem--vertical>.mm-panel {
    position: static;
    width: 100%;
    padding: 10px 0 10px 20px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important
}

.mm-listitem--vertical>.mm-panel:after {
    content: none;
    display: none
}

.mm-listitem--vertical:not(.mm-listitem--opened)>.mm-panel {
    display: none
}

.mm-listitem--vertical>.mm-listitem__btn {
    height: var(--mm-listitem-size);
    bottom: auto
}

.mm-listitem--vertical .mm-listitem:last-child:after {
    border-color: #fff0
}

.mm-listitem--opened>.mm-listitem__btn:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    inset-inline-end: 19px
}

:root {
    --mm-size: 80%;
    --mm-min-size: 240px;
    --mm-max-size: 440px
}

.mm-menu--offcanvas {
    position: fixed;
    z-index: 0
}

.mm-page {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100vh;
    background: inherit
}

:where(.mm-slideout) {
    position: relative;
    z-index: 1;
    width: 100%;
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-property: width, -webkit-transform;
    transition-property: width, -webkit-transform;
    -o-transition-property: width, transform;
    transition-property: width, transform;
    transition-property: width, transform, -webkit-transform
}

.mm-wrapper--opened,
.mm-wrapper--opened body {
    overflow: hidden
}

.mm-wrapper__blocker {
    background: rgb(0 0 0 / .4)
}

.mm-wrapper--opened .mm-wrapper__blocker {
    --mm-blocker-visibility-delay: 0s;
    --mm-blocker-opacity-delay: 0.4s;
    bottom: 0;
    opacity: .5
}

.mm-menu {
    --mm-translate-horizontal: 0;
    --mm-translate-vertical: 0
}

.mm-menu--position-left,
.mm-menu--position-left-front {
    inset-inline-end: auto
}

.mm-menu--position-right,
.mm-menu--position-right-front {
    inset-inline-start: auto
}

.mm-menu--position-left,
.mm-menu--position-left-front,
.mm-menu--position-right,
.mm-menu--position-right-front {
    width: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size))
}

.mm-menu--position-left-front {
    --mm-translate-horizontal: -100%
}

.mm-menu--position-right-front {
    --mm-translate-horizontal: 100%
}

.mm-menu--position-top {
    bottom: auto
}

.mm-menu--position-bottom {
    top: auto
}

.mm-menu--position-bottom,
.mm-menu--position-top {
    width: 100%;
    height: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size))
}

.mm-menu--position-top {
    --mm-translate-vertical: -100%
}

.mm-menu--position-bottom {
    --mm-translate-vertical: 100%
}

.mm-menu--position-bottom,
.mm-menu--position-left-front,
.mm-menu--position-right-front,
.mm-menu--position-top {
    z-index: 2;
    -webkit-transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
    transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.mm-menu--position-bottom.mm-menu--opened,
.mm-menu--position-left-front.mm-menu--opened,
.mm-menu--position-right-front.mm-menu--opened,
.mm-menu--position-top.mm-menu--opened {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-wrapper--position-left {
    --mm-translate-horizontal: clamp(var(--mm-min-size),
            var(--mm-size),
            var(--mm-max-size))
}

.mm-wrapper--position-right {
    --mm-translate-horizontal: clamp(calc(-1 * var(--mm-max-size)),
            calc(-1 * var(--mm-size)),
            calc(-1 * var(--mm-min-size)))
}

.mm-wrapper--position-left .mm-slideout,
.mm-wrapper--position-right .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout,
.mm-wrapper--position-right.mm-wrapper--opened .mm-slideout {
    -webkit-transform: translate3d(var(--mm-translate-horizontal), 0, 0);
    transform: translate3d(var(--mm-translate-horizontal), 0, 0)
}

.mm-wrapper--position-bottom .mm-wrapper__blocker,
.mm-wrapper--position-left-front .mm-wrapper__blocker,
.mm-wrapper--position-right-front .mm-wrapper__blocker,
.mm-wrapper--position-top .mm-wrapper__blocker {
    z-index: 1
}

.mm-menu--theme-light {
    --mm-color-background: #f3f3f3;
    --mm-color-border: rgb(0 0 0 / 0.15);
    --mm-color-icon: rgb(0 0 0 / 0.4);
    --mm-color-text: rgb(0 0 0 / 0.8);
    --mm-color-text-dimmed: rgb(0 0 0 / 0.4);
    --mm-color-background-highlight: rgb(0 0 0 / 0.05);
    --mm-color-background-emphasis: rgb(255 255 255 / 0.75);
    --mm-color-focusring: #06c
}

.mm-menu--theme-light-contrast {
    --mm-color-background: #f3f3f3;
    --mm-color-border: rgb(0 0 0 / 0.5);
    --mm-color-icon: rgb(0 0 0 / 0.5);
    --mm-color-text: #000;
    --mm-color-text-dimmed: rgb(0 0 0 / 0.7);
    --mm-color-background-highlight: rgb(0 0 0 / 0.05);
    --mm-color-background-emphasis: rgb(255 255 255 / 0.9);
    --mm-color-focusring: #06c
}

.mm-menu--theme-dark {
    --mm-color-background: #333;
    --mm-color-border: rgb(0, 0, 0, 0.4);
    --mm-color-icon: rgb(255, 255, 255, 0.4);
    --mm-color-text: rgb(255, 255, 255, 0.8);
    --mm-color-text-dimmed: rgb(255, 255, 255, 0.4);
    --mm-color-background-highlight: rgb(255, 255, 255, 0.08);
    --mm-color-background-emphasis: rgb(0, 0, 0, 0.1);
    --mm-color-focusring: #06c
}

.mm-menu--theme-dark-contrast {
    --mm-color-background: #333;
    --mm-color-border: rgb(255 255 255 / 0.5);
    --mm-color-icon: rgb(255 255 255 / 0.5);
    --mm-color-text: #fff;
    --mm-color-text-dimmed: rgb(255 255 255 / 0.7);
    --mm-color-background-highlight: rgb(255 255 255 / 0.1);
    --mm-color-background-emphasis: rgb(0 0 0 / 0.3);
    --mm-color-focusring: #06c
}

.mm-menu--theme-white {
    --mm-color-background: #fff;
    --mm-color-border: rgb(0 0 0 / 0.15);
    --mm-color-icon: rgb(0 0 0 / 0.3);
    --mm-color-text: rgb(0 0 0 / 0.8);
    --mm-color-text-dimmed: rgb(0 0 0 / 0.3);
    --mm-color-background-highlight: rgb(0 0 0 / 0.06);
    --mm-color-background-emphasis: rgb(0 0 0 / 0.03);
    --mm-color-focusring: #06c
}

.mm-menu--theme-white-contrast {
    --mm-color-background: #fff;
    --mm-color-border: rgb(0 0 0 / 0.5);
    --mm-color-icon: rgb(0 0 0 / 0.5);
    --mm-color-text: #000;
    --mm-color-text-dimmed: rgb(0 0 0 / 0.7);
    --mm-color-background-highlight: rgb(0 0 0 / 0.07);
    --mm-color-background-emphasis: rgb(0 0 0 / 0.035);
    --mm-color-focusring: #06c
}

.mm-menu--theme-black {
    --mm-color-background: #000;
    --mm-color-border: rgb(255 255 255 / 0.2);
    --mm-color-icon: rgb(255 255 255 / 0.4);
    --mm-color-text: rgb(255 255 255 / 0.7);
    --mm-color-text-dimmed: rgb(255 255 255 / 0.4);
    --mm-color-background-highlight: rgb(255 255 255 / 0.1);
    --mm-color-background-emphasis: rgb(255 255 255 / 0.06);
    --mm-color-focusring: #06c
}

.mm-menu--theme-black-contrast {
    --mm-color-background: #000;
    --mm-color-border: rgb(255 255 255 / 0.5);
    --mm-color-icon: rgb(255 255 255 / 0.5);
    --mm-color-text: #fff;
    --mm-color-text-dimmed: rgb(255 255 255 / 0.6);
    --mm-color-background-highlight: rgb(255 255 255 / 0.125);
    --mm-color-background-emphasis: rgb(255 255 255 / 0.1);
    --mm-color-focusring: #06c
}

.mm-counter {
    display: block;
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
    float: right;
    color: var(--mm-color-text-dimmed)
}

[dir=rtl] .mm-counter {
    float: left
}

:root {
    --mm-iconbar-size: 50px
}

.mm-menu--iconbar-left .mm-navbars,
.mm-menu--iconbar-left .mm-panels {
    margin-inline-start: var(--mm-iconbar-size)
}

.mm-menu--iconbar-right .mm-navbars,
.mm-menu--iconbar-right .mm-panels {
    margin-inline-end: var(--mm-iconbar-size)
}

.mm-iconbar {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: var(--mm-iconbar-size);
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 solid;
    border-color: var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center
}

.mm-menu--iconbar-left .mm-iconbar,
.mm-menu--iconbar-right .mm-iconbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mm-menu--iconbar-left .mm-iconbar {
    border-inline-end-width: 1px;
    inset-inline-start: 0
}

.mm-menu--iconbar-right .mm-iconbar {
    border-inline-start-width: 1px;
    inset-inline-end: 0
}

.mm-iconbar__bottom,
.mm-iconbar__top {
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain
}

.mm-iconbar__bottom>*,
.mm-iconbar__top>* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: calc((var(--mm-iconbar-size) - var(--mm-lineheight))/ 2) 0
}

.mm-iconbar__bottom a,
.mm-iconbar__bottom a:hover,
.mm-iconbar__top a,
.mm-iconbar__top a:hover {
    text-decoration: none
}

.mm-iconbar__tab--selected {
    background: var(--mm-color-background-emphasis)
}

:root {
    --mm-iconpanel-size: 50px
}

.mm-panel--iconpanel-0 {
    inset-inline-start: calc(0 * var(--mm-iconpanel-size))
}

.mm-panel--iconpanel-1 {
    inset-inline-start: calc(1 * var(--mm-iconpanel-size))
}

.mm-panel--iconpanel-2 {
    inset-inline-start: calc(2 * var(--mm-iconpanel-size))
}

.mm-panel--iconpanel-3 {
    inset-inline-start: calc(3 * var(--mm-iconpanel-size))
}

.mm-panel--iconpanel-4 {
    inset-inline-start: calc(4 * var(--mm-iconpanel-size))
}

.mm-panel--iconpanel-first~.mm-panel {
    inset-inline-start: var(--mm-iconpanel-size)
}

.mm-menu--iconpanel .mm-panel--parent .mm-divider,
.mm-menu--iconpanel .mm-panel--parent .mm-navbar {
    opacity: 0
}

.mm-menu--iconpanel .mm-panels>.mm-panel--parent {
    overflow-y: hidden;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset
}

.mm-menu--iconpanel .mm-panels>.mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0) {
    border-inline-start-width: 1px;
    border-inline-start-style: solid
}

.mm-navbars {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mm-navbars .mm-navbar {
    position: relative;
    padding-top: 0;
    border-bottom: none
}

.mm-navbars--top {
    border-bottom: 1px solid var(--mm-color-border)
}

.mm-navbars--top .mm-navbar:first-child {
    padding-top: env(safe-area-inset-top)
}

.mm-navbars--bottom {
    border-top: 1px solid var(--mm-color-border)
}

.mm-navbars--bottom .mm-navbar:last-child {
    padding-bottom: env(safe-area-inset-bottom)
}

.mm-navbar__breadcrumbs {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.mm-navbar__breadcrumbs>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-padding-end: 6px;
    padding-inline-end: 6px
}

.mm-navbar__breadcrumbs>a {
    text-decoration: underline
}

.mm-navbar__breadcrumbs:not(:last-child) {
    -webkit-padding-end: 0;
    padding-inline-end: 0
}

.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs {
    -webkit-padding-start: 0;
    padding-inline-start: 0
}

.mm-navbar__tab {
    padding: 0 10px;
    border: 1px solid #fff0
}

.mm-navbar__tab--selected {
    background: var(--mm-color-background)
}

.mm-navbar__tab--selected:not(:first-child) {
    border-inline-start-color: var(--mm-color-border)
}

.mm-navbar__tab--selected:not(:last-child) {
    border-inline-end-color: var(--mm-color-border)
}

.mm-navbars--top.mm-navbars--has-tabs {
    border-bottom: none
}

.mm-navbars--top.mm-navbars--has-tabs .mm-navbar {
    background: var(--mm-color-background-emphasis)
}

.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs~.mm-navbar {
    background: var(--mm-color-background)
}

.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child {
    border-bottom: 1px solid var(--mm-color-border)
}

.mm-navbars--top .mm-navbar__tab {
    border-bottom-color: var(--mm-color-border)
}

.mm-navbars--top .mm-navbar__tab--selected {
    border-top-color: var(--mm-color-border);
    border-bottom-color: #fff0
}

.mm-navbars--bottom.mm-navbar--has-tabs {
    border-top: none
}

.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar {
    background: var(--mm-color-background)
}

.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs,
.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs~.mm-navbar {
    background: var(--mm-color-background-emphasis)
}

.mm-navbars--bottom .mm-navbar__tab {
    border-top-color: var(--mm-color-border)
}

.mm-navbars--bottom .mm-navbar__tab--selected {
    border-bottom-color: var(--mm-color-border);
    border-top-color: #fff0
}

.mm-searchfield {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: var(--mm-navbar-size);
    padding: 0;
    overflow: hidden
}

.mm-searchfield__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mm-searchfield__input input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: calc(var(--mm-navbar-size) * .7);
    min-height: auto;
    max-height: auto;
    margin: 0;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    line-height: calc(var(--mm-navbar-size) * .7);
    font: inherit;
    font-size: inherit
}

.mm-searchfield__input input,
.mm-searchfield__input input:focus,
.mm-searchfield__input input:hover {
    background: var(--mm-color-background-highlight);
    color: var(--mm-color-text)
}

.mm-menu[class*=-contrast] .mm-searchfield__input input {
    border: 1px solid var(--mm-color-border)
}

.mm-searchfield__input input::-ms-clear {
    display: none
}

.mm-searchfield__btn {
    display: none;
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    bottom: 0
}

.mm-searchfield--searching .mm-searchfield__btn {
    display: block
}

.mm-searchfield__cancel {
    display: block;
    position: relative;
    -webkit-margin-end: -100px;
    margin-inline-end: -100px;
    -webkit-padding-start: 5px;
    padding-inline-start: 5px;
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
    visibility: hidden;
    line-height: var(--mm-navbar-size);
    text-decoration: none;
    -webkit-transition-property: visibility, margin;
    -o-transition-property: visibility, margin;
    transition-property: visibility, margin
}

.mm-searchfield--cancelable .mm-searchfield__cancel {
    visibility: visible;
    -webkit-margin-end: 0;
    margin-inline-end: 0
}

.mm-panel--search {
    inset-inline-start: 0 !important;
    inset-inline-end: 0 !important;
    width: 100% !important;
    border: none !important
}

.mm-panel__splash {
    padding: 20px
}

.mm-panel--searching .mm-panel__splash {
    display: none
}

.mm-panel__noresults {
    display: none;
    padding: 40px 20px;
    color: var(--mm-color-text-dimmed);
    text-align: center;
    font-size: 150%;
    line-height: 1.4
}

.mm-panel--noresults .mm-panel__noresults {
    display: block
}

:root {
    --mm-sectionindexer-size: 20px
}

.mm-sectionindexer {
    background: inherit;
    text-align: center;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--mm-sectionindexer-size);
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-end: calc(-1 * var(--mm-sectionindexer-size));
    z-index: 5;
    -webkit-transition-property: inset-inline-end;
    -o-transition-property: inset-inline-end;
    transition-property: inset-inline-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.mm-sectionindexer a {
    color: var(--mm-color-text-dimmed);
    line-height: 1;
    text-decoration: none;
    display: block
}

.mm-sectionindexer~.mm-panel {
    -webkit-padding-end: 0;
    padding-inline-end: 0
}

.mm-sectionindexer--active {
    inset-inline-end: 0
}

.mm-sectionindexer--active~.mm-panel {
    -webkit-padding-end: var(--mm-sectionindexer-size);
    padding-inline-end: var(--mm-sectionindexer-size)
}

.mm-menu--selected-hover .mm-listitem__btn,
.mm-menu--selected-hover .mm-listitem__text,
.mm-menu--selected-parent .mm-listitem__btn,
.mm-menu--selected-parent .mm-listitem__text {
    -webkit-transition-property: background-color;
    -o-transition-property: background-color;
    transition-property: background-color
}

@media (hover:hover) {
    .mm-menu--selected-hover .mm-listview:hover>.mm-listitem--selected:not(:hover)>.mm-listitem__text {
        background: 0 0
    }

    .mm-menu--selected-hover .mm-listitem__btn:hover,
    .mm-menu--selected-hover .mm-listitem__text:hover {
        background: var(--mm-color-background-emphasis)
    }
}

.mm-menu--selected-parent .mm-listitem__btn,
.mm-menu--selected-parent .mm-listitem__text {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s
}

@media (hover:hover) {

    .mm-menu--selected-parent .mm-listitem__btn:hover,
    .mm-menu--selected-parent .mm-listitem__text:hover {
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s
    }
}

.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent)>.mm-listitem__text {
    background: 0 0
}

.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__btn,
.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__text {
    background: var(--mm-color-background-emphasis)
}

:root {
    --mm-sidebar-collapsed-size: 50px;
    --mm-sidebar-expanded-size: var(--mm-max-size)
}

.mm-wrapper--sidebar-collapsed .mm-slideout {
    width: calc(100% - var(--mm-sidebar-collapsed-size));
    -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
    transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0)
}

[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider,
.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar {
    opacity: 0
}

.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded {
    width: var(--mm-sidebar-expanded-size);
    border-inline-end-width: 1px;
    border-inline-end-style: solid
}

.mm-wrapper--sidebar-expanded.mm-wrapper--opened {
    overflow: auto
}

.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker {
    display: none
}

.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
    width: calc(100% - var(--mm-sidebar-expanded-size));
    -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
    transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0)
}

[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

:root {
    --White: #fff;
    --Text: #3D3E3F;
    --Primary: #e4c737;
    --Secondary: #1A1A1A;
    --Third: #EB664E;
    --Fourth: #000;
    --Border: #EBEBEB
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    background: var(--White);
    line-height: 1;
    padding: 0 !important
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block
}

ol,
ul {
    list-style: none
}

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

caption,
th,
td {
    font-weight: 400;
    text-align: start
}

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

blockquote,
q {
    quotes: none
}

a img {
    border: 0
}

img {
    max-width: 100%;
    height: auto
}

select {
    max-width: 100%
}

body,
button,
input,
select,
textarea {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--Text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: auto
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic
}

p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary)
}

strong,
b,
cite {
    font-weight: 700
}

dfn,
cite,
em,
i,
blockquote {
    font-style: italic
}

abbr,
acronym {
    border-bottom: 1px dotted #e0e0e0;
    cursor: help
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
    text-decoration: none
}

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

small {
    font-size: 75%
}

big {
    font-size: 125%
}

address {
    font-style: italic;
    margin: 0 0 20px
}

code,
kbd,
tt,
var,
samp,
pre {
    margin: 20px 0;
    padding: 4px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    border-radius: 0;
    height: auto
}

svg,
svg path {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

hr {
    margin-bottom: 20px;
    border: dashed 1px #ccc
}

ul,
ol {
    padding: 0
}

ul {
    list-style: disc
}

ol {
    list-style: decimal
}

li>ul,
li>ol {
    margin-bottom: 0
}

li {
    list-style: none
}

ul li,
ol li {
    padding: 0
}

dl,
dd {
    margin: 0 0 20px
}

dt {
    font-weight: 700
}

del,
.disable {
    text-decoration: line-through;
    filter: alpha(opacity=50);
    opacity: .5
}

table,
th,
td {
    border: 1px solid #343444
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 30px;
    table-layout: fixed;
    width: 100%
}

caption,
th,
td {
    font-weight: 400;
    text-align: start
}

th {
    border-width: 0 1px 1px 0;
    font-weight: 700
}

td {
    border-width: 0 1px 1px 0
}

th,
td {
    padding: 8px 12px
}

embed,
object,
video {
    margin-bottom: 20px;
    max-width: 100%;
    vertical-align: middle
}

p>embed,
p>iframe,
p>object,
p>video {
    margin-bottom: 0
}

button,
input {
    line-height: normal
}

button,
input,
select,
textarea {
    font-size: 100%;
    line-height: inherit;
    margin: 0;
    vertical-align: baseline
}

textarea {
    overflow: auto;
    vertical-align: top
}

input[type=checkbox] {
    display: inline
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: button;
    border: 0
}

input[type=checkbox],
input[type=radio] {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #fff0 !important;
    cursor: pointer;
    vertical-align: sub
}

input[type=search] {
    -webkit-appearance: textfield
}

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

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

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f7f7f7 inset
}

input[type=search] {
    outline: 0
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

::-webkit-input-placeholder {
    color: #171412
}

::-moz-placeholder {
    color: #171412;
    opacity: 1
}

:-ms-input-placeholder {
    color: #171412
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Roboto", sans-serif;
    color: var(--Secondary);
    margin: 0;
    font-weight: 600;
    text-rendering: optimizeLegibility
}

h1,
.h1 {
    font-size: 60px;
    line-height: 70px
}

h2,
.h2 {
    font-size: 40px;
    line-height: 47px
}

h3,
.h3 {
    font-size: 26px;
    line-height: 36px
}

h4,
.h4 {
    font-size: 21px;
    line-height: 30px
}

h5,
.h5 {
    font-size: 19px;
    line-height: 28px
}

h6,
.h6 {
    font-size: 18px;
    line-height: 25px
}

.hidden {
    display: none
}

.block {
    display: block
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.fixed {
    position: fixed !important
}

.position-unset {
    position: unset !important
}

.over-hidden {
    overflow: hidden
}

.z-5 {
    z-index: 5
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.flex-grow {
    flex-grow: 1 !important
}

.row-reverse {
    flex-direction: row-reverse !important
}

.justify-start {
    justify-content: start !important
}

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

.justify-end {
    justify-content: flex-end !important
}

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

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

.flex-wrap {
    flex-wrap: wrap !important
}

.text-end {
    text-align: end !important
}

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

.gap2 {
    gap: 2px !important
}

.gap6 {
    gap: 6px !important
}

.gap7 {
    gap: 7px !important
}

.gap8 {
    gap: 8px !important
}

.gap9 {
    gap: 9px !important
}

.gap10 {
    gap: 10px !important
}

.gap14 {
    gap: 14px !important
}

.gap15 {
    gap: 15px !important
}

.gap16 {
    gap: 16px !important
}

.gap18 {
    gap: 18px !important
}

.gap20 {
    gap: 20px !important
}

.gap22 {
    gap: 22px !important
}

.gap24 {
    gap: 24px !important
}

.gap30 {
    gap: 30px !important
}

.gap34 {
    gap: 34px !important
}

.gap40 {
    gap: 40px !important
}

.gap50 {
    gap: 50px !important
}

.ml-20 {
    margin-inline-start: 20px !important
}

.mr-20 {
    margin-inline-end: 20px !important
}

.pr-20 {
    padding-inline-end: 20px !important
}

.pl-20 {
    padding-inline-start: 20px !important
}

.ml-6 {
    margin-inline-start: 6px !important
}

.mt-3 {
    margin-top: 3px !important
}

.mt-4 {
    margin-top: 4px !important
}

.mt-10 {
    margin-top: 10px !important
}

.mt-13 {
    margin-top: 13px !important
}

.mt-20 {
    margin-top: 20px !important
}

.mt-21 {
    margin-top: 21px !important
}

.mb-1 {
    margin-bottom: 1px !important
}

.mb-2 {
    margin-bottom: 2px !important
}

.mb-3 {
    margin-bottom: 3px !important
}

.mb-4 {
    margin-bottom: 4px !important
}

.mb-5 {
    margin-bottom: 5px !important
}

.mb-6 {
    margin-bottom: 6px !important
}

.mb-8 {
    margin-bottom: 8px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-14 {
    margin-bottom: 14px !important
}

.mb-15 {
    margin-bottom: 15px !important
}

.mb-16 {
    margin-bottom: 16px !important
}

.mb-12 {
    margin-bottom: 12px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-22 {
    margin-bottom: 22px !important
}

.mb-24 {
    margin-bottom: 24px !important
}

.mb-27 {
    margin-bottom: 27px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-35 {
    margin-bottom: 35px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.pt-30 {
    padding-top: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-20 {
    padding-bottom: 20px
}

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

.w-half {
    width: 50% !important
}

.w-max {
    width: max-content !important
}

.h-full {
    height: 100%
}

.capitalize {
    text-transform: capitalize
}

.italic {
    font-style: italic
}

.e-resize {
    cursor: e-resize
}

.tf-color {
    color: var(--Primary) !important
}

.cursor-pointer {
    cursor: pointer
}

.border-radius-corner {
    border-radius: 999px !important
}

.space-20 {
    height: 20px
}

#wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 100%
}

#wrapper>.background-F9F9F9 {
    background-color: #F9F9F9
}

a {
    text-decoration: none;
    color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

a:hover,
a:focus {
    color: var(--Primary);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.cl-container {
    position: relative;
    margin-inline-start: auto;
    margin-inline-end: auto;
    padding-inline-end: 14px;
    padding-inline-start: 14px;
    width: 1428px;
    max-width: 100%
}

.cl-container .row {
    margin-inline-start: -14px !important;
    margin-inline-end: -14px !important
}

.cl-container .row>* {
    padding-inline-start: 14px !important;
    padding-inline-end: 14px !important
}

.cl-container.full {
    width: 100%
}

.cl-container.w1800 {
    width: 1670px
}

.tf-section {
    padding-top: 200px;
    padding-bottom: 200px
}

.heading-section {
    margin-bottom: 46px
}

.heading-section h2 {
    margin-top: -9px;
    margin-bottom: 16px
}

.heading-section .text {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: var(--Text)
}

.heading-section.style-white h2,
.heading-section.style-white .text {
    color: var(--White)
}

.text-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px
}

.divider {
    height: 1px;
    background: var(--Border)
}

ul.breadcrumbs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px
}

ul.breadcrumbs li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--Text)
}

ul.breadcrumbs.style-1 li {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.wg-blog {
    border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 29px
}

.wg-blog .image {
    overflow: hidden
}

.wg-blog .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.wg-blog .content {
    padding: 22px 25px 30px;
    text-align: center;
    background-color: var(--White);
    border: 1px solid var(--Border);
    border-top: 0;
    border-radius: 0 0 16px 16px
}

.wg-blog .content .name {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 23px
}

.wg-blog .content p {
    margin-bottom: 23px
}

.wg-blog .content a {
    margin: auto
}

.wg-blog:hover {
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922)
}

.wg-blog:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

.wg-blog.style-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 27px
}

.wg-blog.style-row .image {
    width: 35.6%
}

.wg-blog.style-row .content {
    width: 64.4%;
    padding: 41px 30px;
    text-align: start;
    border-top: 1px solid var(--Border);
    border-radius: 0 16px 16px 0
}

.wg-blog.style-row .content .sub-blog {
    justify-content: start
}

.wg-blog.style-row .content .name {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    max-width: 415px;
    margin-bottom: 14px
}

.wg-blog.style-row .content a {
    margin: unset
}

.wg-blog.style-large {
    margin-bottom: 27px
}

.wg-blog.style-large .content {
    padding: 22px 30px 26px;
    text-align: start
}

.wg-blog.style-large .content .sub-blog {
    justify-content: start;
    margin-bottom: 12px
}

.wg-blog.style-large .content .name {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 13px
}

.wg-blog.style-large .content p {
    margin-bottom: 22px
}

.wg-blog.style-large .content a {
    margin: unset
}

.sub-blog {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 13px
}

.sub-blog div {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Text)
}

.sub-blog div:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--Text);
    inset-inline-end: -14px;
    top: 50%;
    transform: translateY(-50%)
}

.sub-blog.style-color {
    justify-content: start
}

.sub-blog.style-color div {
    color: var(--Fourth)
}

.sub-blog.style-color div::after {
    background-color: var(--Fourth)
}

.wg-pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px
}

.wg-pagination li {
    min-width: 40px;
    text-align: center;
    color: var(--Secondary);
    font-size: 15px;
    font-weight: 400;
    line-height: 28px
}

.wg-pagination li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    gap: 10px;
    border-radius: 40px;
    color: var(--Secondary)
}

.wg-pagination li a i {
    font-size: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.wg-pagination li:hover a {
    background: #F9F9F9
}

.wg-pagination li.active a {
    background: var(--Secondary);
    color: #fff !important
}

.wg-pagination li.active i {
    color: #fff !important
}

.wg-pagination li:last-child a,
.wg-pagination li:first-child a {
    border: 1px solid var(--Border);
    width: 61px;
    height: 40px
}

.wg-pagination li:last-child a i,
.wg-pagination li:first-child a i {
    font-size: 23px
}

.wg-pagination li:last-child:hover a,
.wg-pagination li:first-child:hover a {
    border: 1px solid var(--Secondary)
}

.wg-pagination li:last-child {
    margin-inline-start: 10px
}

.wg-pagination li:first-child {
    margin-inline-end: 10px
}

.wg-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px
}

.wg-social>span {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    color: var(--White)
}

.wg-social ul.list-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px
}

.wg-social ul.list-social li a {
    color: var(--White);
    position: relative;
    font-size: 14px
}

.wg-social ul.list-social li a::before {
    position: absolute;
    content: "";
    top: 50%;
    inset-inline-start: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: .07;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%)
}

.wg-social ul.list-social li a:hover::before {
    background-color: #FFF
}

.wg-social.style-black>span {
    color: var(--Secondary)
}

.wg-social.style-black ul.list-social li a {
    color: var(--Secondary)
}

.wg-social.style-black ul.list-social li a:hover::before {
    background-color: #1c1c1c
}

ul.wg-social-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 120px;
    padding: 19px 20px;
    background-color: var(--White)
}

ul.wg-social-1 li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px
}

.checkbox-item label {
    padding-inline-start: 30px;
    cursor: pointer;
    position: relative
}

.checkbox-item label input {
    position: absolute;
    opacity: 0;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.checkbox-item label input:checked~.btn-checkbox {
    background-color: var(--Secondary)
}

.checkbox-item label input:checked~.btn-checkbox:after {
    display: block
}

.checkbox-item label .btn-checkbox {
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff0;
    border-radius: 6px;
    border: 1px solid var(--Border)
}

.checkbox-item label .btn-checkbox:after {
    content: "\f125";
    font-family: flaticon_just-home !important;
    position: absolute;
    font-size: 11px;
    top: 3px;
    inset-inline-start: 4px;
    color: #fff;
    display: none
}

.radio-item label {
    padding-inline-start: 30px;
    cursor: pointer;
    position: relative
}

.radio-item label input {
    position: absolute;
    opacity: 0;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.radio-item label input:checked~.btn-checkbox:after {
    display: block
}

.radio-item label .btn-checkbox {
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff0;
    border-radius: 50%;
    border: 1px solid var(--Border)
}

.radio-item label .btn-checkbox:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #fff0;
    border-radius: 50%;
    border: 4px solid var(--Secondary);
    display: none
}

.switch-item label {
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px
}

.switch-item label input {
    position: relative;
    width: 55px;
    min-width: 55px;
    height: 30px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #F8F5F0 !important;
    border-radius: 999px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-inline-end: 0
}

.switch-item label input::before {
    position: absolute;
    top: 3px;
    inset-inline-start: 3px;
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--White);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.switch-item label input:checked {
    background-color: var(--Secondary) !important
}

.switch-item label input:checked::before {
    inset-inline-start: 28px
}

ul.list-text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 13px
}

ul.list-text li {
    position: relative;
    padding-inline-start: 16px
}

ul.list-text li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--Fourth);
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%)
}

.ratings {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px
}

.ratings i {
    font-size: 12px;
    color: var(--Primary)
}

.wg-related-posts {
    padding-top: 191px;
    padding-bottom: 171px;
    border-radius: 24px;
    background-color: #F9F9F9
}

.box-content-search {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    padding: 40px 0;
    border: 1px solid var(--Secondary);
    border-radius: 32px;
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    opacity: 0;
    visibility: hidden;
    z-index: 5
}

.box-content-search.active {
    top: calc(100% + 10px);
    opacity: 1;
    visibility: visible
}

.box-content-search .heading {
    padding: 0 40px 13px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Fourth)
}

.box-content-search .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-content-search .item i {
    font-size: 16px;
    color: var(--Fourth)
}

.box-content-search .item:hover {
    background-color: #F9F9F9
}

.box-content-search .item1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-content-search .item1:hover {
    background-color: #F9F9F9
}

.box-content-search .item1>div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.box-content-search .item1>div .image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden
}

.box-content-search .item1>div .image img {
    width: 100%;
    object-fit: cover
}

.box-content-search .item1 .text {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary)
}

.box-content-search.style-1 {
    padding: 28px 21px 20px
}

.box-content-search.style-1 ul {
    max-height: 320px
}

.box-content-search.style-1 ul .item1 {
    padding: 15px;
    border-radius: 16px
}

.wg-filter {
    position: relative;
    z-index: 15
}

.wg-filter .btn-filter.active {
    border-color: var(--Secondary)
}

.wg-filter .open-filter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--Secondary);
    border-radius: 16px;
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    position: absolute;
    width: 100%;
    top: 100%;
    inset-inline-end: 0;
    opacity: 0;
    visibility: hidden
}

.wg-filter .open-filter.active {
    opacity: 1;
    visibility: visible;
    top: 110%
}

.wg-filter .open-filter .title {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
    margin-bottom: 20px
}

.wg-filter.style-more {
    z-index: 40
}

.wg-filter.style-more .btn-filter {
    height: 54px;
    padding: 16px 47px 16px 28px
}

.wg-filter.style-more .open-filter {
    width: 1022px
}

.wg-filter.style-more .open-filter.active {
    top: 116%;
    z-index: 70
}

.wg-filter.style-more::after {
    border-bottom: 1.7px solid #3A3A3C;
    border-inline-end: 1.7px solid #3A3A3C;
    content: "";
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    top: 47%;
    inset-inline-end: 30px;
    border-color: var(--Secondary);
    -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
}

.wg-filter.style-price {
    z-index: 50
}

.wg-filter.style-price .btn-filter {
    height: 54px;
    padding: 16px 47px 16px 28px
}

.wg-filter.style-price .open-filter {
    width: 401px;
    inset-inline-start: 0;
    padding: 24px 30px 30px 20px
}

.wg-filter.style-price .open-filter.active {
    top: 116%;
    z-index: 60
}

.wg-filter.style-price .open-filter .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 16px
}

.wg-filter.style-price .open-filter .grid-2-cols {
    gap: 10px
}

.wg-filter.style-price .open-filter .nice-select {
    border-radius: 12px !important;
    padding: 12px 49px 12px 19px !important
}

.wg-filter.style-price .open-filter .nice-select::after {
    inset-inline-end: 21px !important
}

.wg-filter.style-price::after {
    border-bottom: 1.7px solid #3A3A3C;
    border-inline-end: 1.7px solid #3A3A3C;
    content: "";
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    top: 47%;
    inset-inline-end: 30px;
    border-color: var(--Secondary);
    -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
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    width: 100%
}

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

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
    width: 100%
}

.grid-checkbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    width: 100%
}

.box-dream {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 16px;
    background-color: var(--White);
    padding-top: 10px
}

.box-dream:hover {
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922)
}

.box-dream:hover .image .swiper-container::after {
    opacity: 1;
    visibility: visible
}

.box-dream:hover .image .swiper-container .swiper-pagination,
.box-dream:hover .image .swiper-container .swiper-button-next,
.box-dream:hover .image .swiper-container .swiper-button-prev {
    opacity: 1;
    visibility: visible
}

.box-dream:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

.box-dream:hover .button-heart {
    opacity: 1;
    visibility: visible
}

.box-dream .image {
    position: relative;
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden
}

.box-dream .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.box-dream .image .swiper-container .swiper-slide {
    overflow: hidden
}

.box-dream .image .swiper-container::after {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    background: linear-gradient(180deg, #fff0 0%, rgb(26 26 26 / .1) 61.39%, rgb(26 26 26 / .8) 100%);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-dream .image .swiper-container .swiper-pagination,
.box-dream .image .swiper-container .swiper-button-next,
.box-dream .image .swiper-container .swiper-button-prev {
    z-index: 10;
    opacity: 0;
    visibility: hidden
}

.box-dream .button-heart {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: rgb(26 26 26 / .3019607843);
    padding: 9px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    z-index: 20;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-dream .button-heart i {
    font-size: 15px;
    color: var(--White)
}

.box-dream .button-heart.style-1 {
    border: 1px solid var(--Border);
    background-color: #fff0
}

.box-dream .button-heart.style-1 i {
    color: var(--Text)
}

.box-dream .content {
    padding: 24px 30px 30px 30px
}

.box-dream .content .head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 11px
}

.box-dream .content .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px
}

.box-dream .content .price {
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: var(--Third)
}

.box-dream .content .location {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 27px
}

.box-dream .content .location .icon i {
    font-size: 20px;
    color: var(--Text)
}

.box-dream .content .location p {
    line-height: 24px
}

.box-dream .content .bot {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 17px;
    border-top: 1px solid var(--Border)
}

.box-dream .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--Text)
}

.box-dream.has-border {
    border: 1px solid var(--Border);
    padding-top: 9px
}

.box-dream.has-border:hover {
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922)
}

.box-dream.style-1 {
    border: 1px solid var(--Border)
}

.box-dream.style-1 .image {
    margin: 0 9px
}

.box-dream.style-1 .content {
    padding: 13px 20px 13px 20px
}

.box-dream.style-1 .content .head {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 2px
}

.box-dream.style-1 .content .price {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px
}

.box-dream.style-1 .content .location {
    gap: 7px;
    margin-bottom: 10px
}

.box-dream.style-1 .content .location i {
    font-size: 16px
}

.box-dream.style-1 .content .location p {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px
}

.box-dream.style-1 .content .icon-box .item {
    gap: 7px
}

.box-dream.style-1 .content .icon-box .item i {
    font-size: 17px
}

.box-dream.style-1 .content .icon-box .item p {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.box-dream.style-2 {
    padding-top: 0
}

.box-dream.style-2 .image {
    margin: 0
}

.box-dream.style-2 .content {
    padding-inline-start: 0;
    padding-inline-end: 0;
    padding-bottom: 0
}

.box-dream.style-2 .content .location {
    margin-bottom: 17px
}

.box-dream.style-2:hover {
    box-shadow: none
}

.box-dream.style-2.type-small .content {
    padding-top: 15px
}

.box-dream.style-2.type-small .content .head {
    margin-bottom: 9px
}

.box-dream.style-2.type-small .content .location {
    margin-bottom: 15px
}

.box-dream.style-2.type-small .content .location p {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px
}

.box-dream.style-2.type-small .content .bot {
    padding-top: 16px
}

.box-dream.style-2.type-small .content .icon-box .item {
    gap: 7px
}

.box-dream.style-2.type-small .content .icon-box .item i {
    font-size: 17px
}

.box-dream.style-2.type-small .content .icon-box .item p {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.box-dream.style-2.type-small .content .price {
    font-size: 19px;
    font-weight: 600;
    line-height: 22px
}

.box-dream.style-3 {
    padding-top: 0
}

.box-dream.style-3 .image {
    margin: 0;
    border-radius: 12px 12px 0 0
}

.box-dream.style-3 .list-tags .tags-item {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px
}

.box-dream.style-3 .content {
    padding: 13px 20px 16px;
    border: 1px solid var(--Border);
    border-top: 0;
    border-radius: 0 0 12px 12px
}

.box-dream.style-3 .content .head {
    margin-bottom: 2px
}

.box-dream.style-3 .content .location {
    gap: 7px;
    margin-bottom: 13px
}

.box-dream.style-3 .content .location .icon i {
    font-size: 16px
}

.box-dream.style-3 .content .location p {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.box-dream.style-3 .content .icon-box {
    gap: 10px
}

.box-dream.style-3 .content .icon-box .item {
    padding: 7px 15px;
    gap: 7px
}

.box-dream.style-3 .content .icon-box .item i {
    font-size: 16px
}

.box-dream.style-3 .content .icon-box .item p {
    font-weight: 400;
    font-size: 15px
}

.box-dream.style-3 .content .price {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px
}

.box-dream.style-3 .content .bot {
    padding-top: 22px
}

.box-dream.style-3 .button-heart {
    position: unset;
    opacity: 1;
    visibility: visible
}

.box-dream.style-3 .icon-box {
    margin-bottom: 20px
}

.box-dream.style-absolute {
    padding-top: 0
}

.box-dream.style-absolute .image {
    margin: 0
}

.box-dream.style-absolute .content {
    position: absolute;
    padding: 14px 20px 17px 20px;
    bottom: 20px;
    inset-inline-start: 20px;
    inset-inline-end: 20px;
    background-color: var(--White);
    border-radius: 8px;
    z-index: 10
}

.box-dream.style-absolute .content .location {
    margin-bottom: 15px
}

.box-dream.style-absolute.type-no-bg-content .image::after {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    background: linear-gradient(180deg, #fff0 0%, rgb(26 26 26 / .1) 61.39%, rgb(26 26 26 / .8) 100%);
    z-index: 5;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-dream.style-absolute.type-no-bg-content .content {
    background-color: #fff0
}

.box-dream.style-absolute.type-no-bg-content .content .icon-box .item p,
.box-dream.style-absolute.type-no-bg-content .content .icon-box .item i,
.box-dream.style-absolute.type-no-bg-content .content .price,
.box-dream.style-absolute.type-no-bg-content .content .location p,
.box-dream.style-absolute.type-no-bg-content .content .location .icon i,
.box-dream.style-absolute.type-no-bg-content .content .title a {
    color: var(--White)
}

.box-dream.style-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    padding-top: 0;
    border: 1px solid var(--Border)
}

.box-dream.style-row .image {
    margin: 9px 0 9px 9px;
    width: 350px;
    flex-shrink: 0
}

.box-dream.style-row .image img {
    height: 300px
}

.box-dream.style-row .content {
    padding: 0;
    padding-top: 45px;
    padding-bottom: 15px
}

.box-dream.style-row .content .head {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px
}

.box-dream.style-row .content .location {
    margin-bottom: 19px
}

.box-dream.style-row .content>p {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 20px
}

.box-dream.style-properties .image {
    border-radius: 16px;
    height: 100%
}

.box-dream.style-properties .image .list-tags {
    top: 40px;
    inset-inline-start: 40px
}

.box-dream.style-properties .content {
    padding: 0;
    max-width: 368px;
    bottom: 37px;
    inset-inline-start: 40px
}

.box-dream.style-properties .content .title {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px
}

.box-dream.style-properties .content .location {
    margin-bottom: 25px
}

.box-dream.style-properties .button-arrow-right {
    position: absolute;
    bottom: 40px;
    inset-inline-end: 40px;
    z-index: 10
}

.box-dream.style-white {
    background-color: #fff0
}

.box-dream.style-white .content .price,
.box-dream.style-white .content .icon-box .item p,
.box-dream.style-white .content .icon-box .item i,
.box-dream.style-white .content .location p,
.box-dream.style-white .content .location .icon i,
.box-dream.style-white .content .title a {
    color: var(--White)
}

.box-dream.style-properties-1 .image {
    border-radius: 16px;
    height: 100%
}

.box-dream.style-properties-1 .image .list-tags {
    top: 30px;
    inset-inline-start: 30px
}

.box-dream.style-properties-1 .content {
    padding: 0;
    max-width: 368px;
    bottom: 33px;
    inset-inline-start: 30px
}

.box-dream.style-properties-1 .content .price {
    font-size: 19px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px
}

.box-dream.style-properties-1 .content .head {
    margin-bottom: 9px
}

.box-dream.style-properties-1 .content .title {
    font-size: 21px;
    font-weight: 600;
    line-height: 30px
}

.box-dream.style-properties-1 .content .location p {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.box-dream.style-properties-1 .button-arrow-right {
    position: absolute;
    bottom: 30px;
    inset-inline-end: 30px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-dream.style-properties-1:hover .button-arrow-right {
    opacity: 1;
    visibility: visible
}

.box-dream.style-full {
    padding: 0
}

.box-dream.style-full .image {
    margin: 0
}

.box-dream.style-full .content {
    padding: 155px 0 155px 3px
}

.box-dream.style-full .content .head {
    margin-bottom: 9px
}

.box-dream.style-full .content .head .title {
    font-size: 40px;
    font-weight: 600;
    line-height: 47px
}

.box-dream.style-full .content .location {
    margin-bottom: 21px
}

.box-dream.style-full .content .text-content {
    margin-bottom: 23px
}

.box-dream.style-full .content .price {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 20px;
    margin-bottom: 41px
}

.box-dream.style-favorities>.wg-icon {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    z-index: 10
}

.box-dream.style-favorities>.wg-icon>* i {
    font-size: 14px
}

.box-dream.style-favorities .image {
    width: 264px;
    margin: 7px 0 6px 6px
}

.box-dream.style-favorities .image img {
    height: unset
}

.box-dream.style-favorities .content {
    padding-top: 42px
}

.box-dream.style-favorities .content .location {
    margin-bottom: 26px
}

.list-tags {
    position: absolute;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    top: 20px;
    inset-inline-start: 20px;
    z-index: 10
}

.list-tags .tags-item {
    padding: 9px 15px;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    border-radius: 120px
}

.list-tags .tags-item.for-sell {
    background-color: var(--Fourth);
    color: var(--White)
}

.list-tags .tags-item.featured {
    background-color: var(--Primary);
    color: var(--Secondary)
}

.list-tags.type-1 {
    top: 30px;
    inset-inline-start: 30px
}

.icon-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px 31px
}

.icon-box .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: relative
}

.icon-box .item i {
    font-size: 20px;
    color: var(--Text)
}

.icon-box .item:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    inset-inline-end: -15px;
    background-color: var(--Border)
}

.icon-box.style-border .item {
    padding: 10px 16px;
    border: 1px solid var(--Border);
    border-radius: 120px
}

.icon-box.style-border .item::after {
    display: none
}

.cities-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.cities-item .image {
    overflow: hidden
}

.cities-item::after {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 61.39%, #fff0 100%)
}

.cities-item img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.cities-item .content {
    position: absolute;
    top: 42px;
    inset-inline-start: 50px;
    z-index: 3
}

.cities-item .content p {
    margin-bottom: 4px;
    color: var(--White)
}

.cities-item .content h4 {
    color: var(--White)
}

.cities-item>a {
    position: absolute;
    inset-inline-start: 50px;
    bottom: 40px;
    z-index: 10;
    opacity: 0;
    visibility: hidden
}

.cities-item:hover>a {
    opacity: 1;
    visibility: visible
}

.cities-item:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

.cities-item.style-1 {
    border-radius: 0
}

.cities-item.style-1::after {
    display: none
}

.cities-item.style-1 .image {
    border-radius: 16px
}

.cities-item.style-1 .content {
    position: unset;
    padding-top: 22px
}

.cities-item.style-1 .content p {
    color: var(--Text)
}

.cities-item.style-1 .content h4 {
    color: var(--Secondary);
    font-size: 19px;
    font-weight: 500;
    line-height: 28px
}

.cities-item.style-2 {
    height: 480px;
    margin-bottom: 0
}

.cities-item.style-3::after {
    display: none
}

.cities-item.style-3 .content {
    top: 34px;
    inset-inline-start: 40px
}

.cities-item.style-3 .content h4 {
    color: #111235;
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0
}

.cities-item.style-3 .content p {
    color: #111235
}

.cities-item.style-4 .content {
    top: unset;
    inset-inline-start: 30px;
    bottom: 30px;
    inset-inline-end: 30px;
    padding: 9px 30px 12px 30px;
    backdrop-filter: blur(10px);
    border-radius: 16px
}

.cities-item.style-5::after {
    display: none
}

.cities-item.style-5 .content {
    top: 24px;
    inset-inline-start: 30px
}

.cities-item.style-5 .content h4 {
    color: #111235;
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0
}

.cities-item.style-5 .content p {
    color: #111235
}

.cities-item.style-5 a {
    bottom: 30px;
    inset-inline-start: 30px
}

.cities-item.style-6 {
    border-radius: 16px
}

.cities-item.style-6:hover {
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .05)
}

.cities-item.style-6::after {
    display: none
}

.cities-item.style-6 img {
    height: unset;
    border-radius: 0
}

.cities-item.style-6 .content {
    position: unset;
    padding: 14px 20px 6px 20px;
    background-color: var(--White)
}

.cities-item.style-6 .content p {
    color: var(--Text)
}

.cities-item.style-6 .content h4 {
    color: var(--Secondary);
    font-size: 19px;
    font-weight: 500;
    line-height: 28px
}

.box-icon {
    text-align: center
}

.box-icon:hover .icon:not(.has-ellipse) i {
    transform: rotateY(360deg)
}

.box-icon:hover .icon.has-ellipse::before {
    width: 100px !important;
    height: 100px !important;
    bottom: -10px;
    inset-inline-start: -12px
}

.box-icon:hover .icon.has-ellipse.small::before {
    width: 80px !important;
    height: 80px !important;
    bottom: -10px;
    inset-inline-start: -12px
}

.box-icon:hover .image {
    transform: rotateY(360deg)
}

.box-icon .icon {
    width: 50px;
    height: 50px;
    font-size: 50px;
    color: var(--Secondary);
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-bottom: 24px;
    position: relative
}

.box-icon .icon i {
    display: inline-block;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease
}

.box-icon .icon.has-ellipse {
    padding-inline-start: 10px;
    padding-bottom: 10px
}

.box-icon .icon.has-ellipse::before {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--Primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-icon .icon.has-ellipse.small::before {
    width: 30px;
    height: 30px
}

.box-icon .icon i {
    position: relative
}

.box-icon .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    text-transform: capitalize
}

.box-icon .title:hover {
    color: var(--Fourth)
}

.box-icon p {
    color: var(--Secondary);
    margin-top: 14px
}

.box-icon.style-1 .icon {
    width: 70px;
    height: 70px;
    font-size: 60px
}

.box-icon.style-1 .title {
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
    text-transform: none
}

.box-icon.style-2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.box-icon.style-2 .icon {
    width: 50px;
    height: 50px;
    margin: 7px 0 0 0;
    font-size: 40px
}

.box-icon.style-2 .content {
    text-align: start
}

.box-icon.style-2 .content .title {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px
}

.box-icon.style-2 .content p {
    margin-top: 4px
}

.box-icon.style-3 .image {
    margin-bottom: 58px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease
}

.box-icon.style-3 .text-content {
    margin-top: 16px
}

.box-icon.has-bg {
    text-align: start;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 34px 47px 30px 47px;
    border-radius: 0 16px 16px 0;
    border-inline-start: 3px solid #FFF8F6
}

.box-icon.has-bg .icon {
    margin-inline-start: unset;
    margin-inline-end: unset;
    margin-bottom: 5px
}

.box-icon.has-bg .icon i {
    font-size: 35px
}

.box-icon.has-bg .content .title {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px
}

.box-icon.has-bg .content p {
    margin-top: 4px
}

.box-icon.has-bg.active,
.box-icon.has-bg:hover {
    background-color: #FFF8F6;
    border-inline-start: 3px solid var(--Secondary)
}

.box-icon.style-4 .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.box-icon.style-4 .icon::before {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--Primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.box-icon.style-4 .icon i {
    font-size: 40px
}

.box-icon.style-4 .title {
    font-size: 21px;
    font-weight: 600;
    line-height: 30px
}

.box-icon.style-4 p {
    margin-top: 3px
}

.box-icon.style-4:hover .icon::before {
    width: 50px;
    height: 50px
}

.box-icon.style-5 .icon {
    width: 80px;
    height: 80px;
    background-color: var(--Primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

.box-icon.style-5 .icon i {
    font-size: 40px
}

.box-icon.style-5 .title {
    font-size: 21px;
    font-weight: 600;
    line-height: 30px
}

.box-icon.style-5 p {
    margin-top: 3px
}

.box-icon.type-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0 14px 0
}

.box-icon.type-row .icon {
    margin: 0;
    width: 70px;
    height: 60px;
    padding-inline-start: 20px;
    padding-bottom: 10px
}

.box-icon.type-row .icon i {
    font-size: 50px;
    color: var(--Fourth)
}

.box-icon.type-row .content {
    text-align: start
}

.box-icon.type-row .content .title {
    font-size: 40px;
    font-weight: 600;
    line-height: 47px
}

.box-icon.type-row .content .text-content {
    color: var(--Fourth);
    margin-top: 4px
}

.properties-slider {
    border-radius: 16px;
    overflow: hidden
}

.properties-slider .swiper-button-next {
    inset-inline-end: 20px !important
}

.properties-slider .swiper-button-prev {
    inset-inline-start: 20px !important
}

.properties-content-default {
    padding: 31px 40px 40px 40px;
    border-radius: 16px;
    background-color: var(--Secondary)
}

.properties-content-default .number {
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: var(--White);
    margin-bottom: 4px
}

.properties-content-default .number span {
    font-size: 26px;
    line-height: 36px
}

.properties-content-default .text {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--White);
    margin-bottom: 34px
}

.properties-content-default p {
    color: var(--White);
    margin-bottom: 45px
}

.properties-content-default>a {
    margin-inline-start: auto
}

.video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

.video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-wrap .popup-youtube {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgb(26 26 26 / .2);
    backdrop-filter: blur(10px)
}

.video-wrap .popup-youtube .icon {
    height: 20px
}

.video-wrap .popup-youtube .icon i {
    font-size: 20px;
    color: var(--White)
}

.video-wrap .popup-youtube::before {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(26 26 26 / .1098039216);
    animation: playvideo 2s ease-in-out infinite alternate;
    z-index: -1
}

.counter .number-counter div {
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: var(--Primary);
    margin-bottom: 12px
}

.counter .number-counter p {
    color: var(--White);
    text-transform: capitalize
}

.counter .number-counter.style-1 {
    border-radius: 16px;
    padding: 61px 40px 63px;
    background-color: #F9F9F9;
    text-align: start !important
}

.counter .number-counter.style-1 div {
    text-align: start !important;
    margin-bottom: 53px;
    color: var(--Third)
}

.counter .number-counter.style-1 h4 {
    color: var(--Secondary);
    margin-bottom: 16px
}

.counter .number-counter.style-1 .text-content {
    color: var(--Secondary)
}

.testimonials-item {
    position: relative
}

.testimonials-item .head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin-bottom: 43px
}

.testimonials-item .head .image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden
}

.testimonials-item .head .image img {
    width: 100%
}

.testimonials-item .head .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-top: 20px
}

.testimonials-item .description {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: var(--Secondary)
}

.testimonials-item>svg {
    position: absolute;
    top: 0;
    inset-inline-end: 0
}

.testimonials-item.style-white p,
.testimonials-item.style-white .description,
.testimonials-item.style-white .title a {
    color: var(--White)
}

.testimonials-item.style-white svg path {
    fill: var(--Primary)
}

.testimonials-item.style-no-img .head {
    margin-bottom: 53px
}

.testimonials-item.style-no-img .head .image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    background-color: var(--Primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

.testimonials-item.style-no-img .head .title {
    margin-top: 10px
}

.testimonials-item.background-white {
    padding: 40px 40px 30px 40px;
    background-color: var(--White);
    border-radius: 16px
}

.testimonials-item.background-white.type-1 {
    background-color: #F9F9F9
}

.testimonials-item.background-white .head {
    margin-bottom: 40px
}

.testimonials-item.background-white .image {
    width: 80px;
    height: 80px
}

.testimonials-item.background-white .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px
}

.testimonials-item.background-white .description {
    font-size: 17px;
    font-weight: 400;
    line-height: 32px
}

.testimonials-item.background-white svg {
    top: 61px;
    inset-inline-end: 43px
}

.gird-tab-search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

.gird-tab-search .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.gird-tab-search .item a {
    width: max-content;
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    color: var(--Secondary);
    position: relative
}

.gird-tab-search .item a::after {
    position: absolute;
    content: "";
    bottom: 10px;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 0;
    height: 2px;
    background-color: var(--Third);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.gird-tab-search .item a.active,
.gird-tab-search .item a:hover {
    color: var(--Third)
}

.gird-tab-search .item a.active::after,
.gird-tab-search .item a:hover::after {
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: auto
}

.experts-item .image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 23px
}

.experts-item .image img {
    width: 100%;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.experts-item .image .wg-social-1 {
    position: absolute;
    top: 55%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden
}

.experts-item:hover .wg-social-1 {
    top: 50%;
    opacity: 1;
    visibility: visible
}

.experts-item:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

ul.grid-tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

ul.grid-tags li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 19px 15px 19px;
    border: 1px solid var(--Border);
    border-radius: 120px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary)
}

ul.grid-tags li a:hover {
    border-color: var(--Secondary);
    background-color: #FFF8F6
}

.area-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    margin-bottom: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.area-item:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

.area-item .image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0
}

.area-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.area-item .name {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 4px
}

.area-item .text {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--Secondary)
}

.area-item.style-1 {
    padding: 9px;
    gap: 20px;
    align-items: center;
    border-radius: 16px;
    border: 1px solid var(--Border);
    width: 100%;
    margin-bottom: 0
}

.area-item.style-1 .image {
    width: 60px;
    height: 60px;
    border-radius: 12px
}

.area-item.style-1 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.area-item.style-1 .name {
    margin-top: -5px;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px
}

.area-item.style-1:hover {
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922)
}

.group-icon {
    position: relative;
    background-color: #F9F9F9;
    padding: 88px 0 96px 80px;
    border-radius: 16px
}

.group-icon .image {
    position: absolute;
    inset-inline-end: 39px;
    bottom: 96px
}

.group-icon h3 {
    margin-bottom: 15px
}

.group-icon .text-content {
    margin-bottom: 23px
}

.group-icon.style-1 {
    background-color: #FFF8F6
}

.group-icon.style-1 .image {
    inset-inline-end: 42px
}

.categories-item {
    padding: 30px;
    border-radius: 16px;
    background-color: var(--White);
    border: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    position: relative
}

.categories-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #fff8f6;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    flex-shrink: 0
}

.categories-item .icon i {
    font-size: 24px;
    color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.categories-item .name {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 4px;
    margin-top: 4px
}

.categories-item .text {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--Secondary)
}

.categories-item>a {
    border: 1px solid var(--Border);
    position: absolute;
    inset-inline-end: 40px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
    visibility: hidden
}

.categories-item:hover a {
    inset-inline-end: 30px;
    opacity: 1;
    visibility: visible
}

.categories-item:hover .icon {
    background-color: var(--Primary)
}

.categories-item.style-1 {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 59px 30px 56px 30px;
    gap: 14px
}

.categories-item.style-1 .icon {
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff0
}

.categories-item.style-1 .icon i {
    font-size: 36px;
    color: var(--Secondary)
}

.categories-item.style-1 .name {
    margin-top: 0
}

.categories-item.style-1:hover .icon {
    background-color: var(--Fourth)
}

.categories-item.style-1:hover .icon i {
    color: var(--White)
}

.flat-accordion .flat-toggle {
    padding: 0 40px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 47px
}

.flat-accordion .flat-toggle .toggle-title {
    position: relative;
    cursor: pointer
}

.flat-accordion .flat-toggle .toggle-title:before {
    position: absolute;
    content: "";
    inset-inline-end: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.flat-accordion .flat-toggle .toggle-title::after {
    position: absolute;
    content: "";
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: var(--Secondary)
}

.flat-accordion .flat-toggle .toggle-content {
    margin-top: 26px;
    display: none
}

.flat-accordion .flat-toggle.active {
    background-color: #F9F9F9;
    padding: 40px 40px
}

.flat-accordion .flat-toggle.active .toggle-title::before {
    opacity: 0;
    visibility: hidden
}

.ft-download {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ft-download li {
    flex-shrink: 0;
    width: 198px
}

.ft-download li a {
    padding: 14px 22px 14px 25px;
    border-radius: 12px;
    background-color: rgb(255 255 255 / .0509803922);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px
}

.ft-download li a .icon {
    font-size: 21px;
    color: var(--White);
    width: 21px
}

.ft-download li a .app {
    position: relative
}

.ft-download li a .app::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: -15px;
    height: 100%;
    width: 1px;
    background-color: var(--White);
    opacity: .2
}

.ft-download li a .app div:first-child {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--White);
    margin-bottom: 2px
}

.ft-download li a .app div:last-child {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--White)
}

.ft-download.style-1 {
    flex-direction: row;
    gap: 30px
}

.ft-download.style-1 li {
    width: 210px
}

.ft-download.style-1 li a {
    padding: 12px 22px 12px 20px;
    gap: 39px;
    background-color: var(--White)
}

.ft-download.style-1 li a .icon {
    color: var(--Fourth)
}

.ft-download.style-1 li a .app::before {
    background-color: var(--Fourth);
    opacity: .3;
    inset-inline-start: -21px
}

.ft-download.style-1 li a .app div:first-child {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: var(--Fourth)
}

.ft-download.style-1 li a .app div:last-child {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: var(--Fourth)
}

.ft-download.bg-fourth.type-secondary li a {
    background-color: var(--Secondary)
}

.ft-download.bg-fourth.type-secondary li a .icon {
    background-color: var(--Secondary) !important;
    color: var(--White)
}

.ft-download.bg-fourth li a {
    background-color: var(--Fourth)
}

.ft-download.bg-fourth li a .icon {
    background-color: var(--Fourth) !important;
    color: var(--White)
}

.ft-download.bg-fourth li a .app::before {
    background-color: var(--White);
    opacity: .3
}

.ft-download.bg-fourth li a .app div:first-child {
    color: var(--White)
}

.ft-download.bg-fourth li a .app div:last-child {
    color: var(--White)
}

.download-app {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: var(--Fourth);
    border-radius: 16px;
    overflow: hidden;
    align-items: center
}

.download-app .content-right {
    padding-inline-start: 119px;
    flex-grow: 1;
    padding-inline-end: 20px
}

.download-app .content-right .sub {
    width: max-content;
    padding: 4px 25px;
    border-radius: 60px;
    background-color: rgb(255 255 255 / .1019607843);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: var(--White);
    margin-bottom: 25px
}

.download-app .content-right .heading {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: var(--White);
    margin-bottom: 35px
}

.download-app .content-right p {
    font-family: "DM Sans", sans-serif;
    color: var(--White);
    margin-bottom: 35px
}

.download-app .image {
    max-width: 567px
}

.work-with-us-item {
    padding: 83px 0 82px 0;
    border-bottom: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px
}

.work-with-us-item .proces {
    width: 100%;
    max-width: 250px;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary)
}

.work-with-us-item h2 {
    width: 100%;
    max-width: 450px;
    position: relative
}

.work-with-us-item .text-content {
    width: 100%;
    max-width: 340px;
    color: var(--Secondary);
    text-align: end
}

.work-with-us-item a {
    position: absolute;
    inset-inline-start: 61px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    width: 72px;
    height: 72px
}

.work-with-us-item a i {
    font-size: 22px
}

.work-with-us-item:hover a {
    inset-inline-start: 71px;
    opacity: 1;
    visibility: visible
}

.box-curved-text .curved-text-inner {
    width: 159px;
    height: 159px;
    background-color: var(--Primary);
    border-radius: 50%;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.box-curved-text .curved-text-inner .text {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px
}

.box-curved-text .curved-text-inner .curved-text {
    position: absolute;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    color: var(--Secondary);
    animation: rotate360 7s infinite linear
}

.wrap-file-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.wrap-file-item .file-item {
    width: 100%;
    max-width: 301px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 20px 20px 18px 20px;
    border: 1px solid var(--Border);
    border-radius: 8px
}

.wrap-file-item .file-item .icon {
    width: 40px
}

.wrap-file-item .file-item .icon img {
    width: 100%
}

.wrap-file-item .file-item .name {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
    margin-top: 1px;
    margin-bottom: 3px
}

.wrap-file-item .file-item .size {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: var(--Fourth)
}

.wrap-check-ellipse {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px
}

.check-ellipse-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    max-width: 250px
}

.check-ellipse-item .icon {
    width: 18px;
    height: 18px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Secondary);
    border-radius: 50%
}

.check-ellipse-item .icon i {
    font-size: 8px;
    color: var(--Secondary)
}

.check-ellipse-item .icon.has-bg {
    background-color: #FFF8F6
}

.check-ellipse-item.style-1 {
    gap: 15px
}

.check-ellipse-item.style-1 .icon {
    width: 30px;
    height: 30px;
    border: 0;
    background-color: var(--White)
}

.check-ellipse-item.style-1 .icon i {
    font-size: 12px
}

.check-ellipse-item.style-1 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px
}

.uncheck-ellipse-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    max-width: 250px
}

.uncheck-ellipse-item .icon {
    width: 18px;
    height: 18px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(235 102 78 / .1490196078);
    border-radius: 50%
}

.uncheck-ellipse-item .icon i {
    font-size: 8px;
    color: var(--Third)
}

.wrap-walk-score {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 60px
}

.wrap-walk-score .walk-score-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px
}

.wrap-walk-score .walk-score-item .icon {
    width: 90px;
    height: 90px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff8f6;
    border: 1px solid var(--Secondary);
    border-radius: 50%
}

.wrap-walk-score .walk-score-item .icon i {
    font-size: 30px;
    color: var(--Secondary)
}

.wrap-walk-score .walk-score-item .title {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary)
}

.wrap-walk-score .walk-score-item p {
    color: var(--Secondary)
}

.wrap-nearby {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 40px;
    flex-direction: column
}

.wrap-nearby .nearby-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px
}

.wrap-nearby .nearby-item .number {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Primary);
    border-radius: 50%
}

.wrap-nearby .nearby-item .number h4 span {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px
}

.wrap-nearby .nearby-item .title {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary)
}

.wrap-nearby .nearby-item p {
    color: var(--Secondary)
}

.wrap-nearby .nearby-item p span {
    font-weight: 500
}

.wrap-gallery-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 10px;
    grid-template-rows: auto;
    grid-template-areas: "aa aa bb cc" "aa aa dd ee"
}

.wrap-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.wrap-gallery-image .item-1 {
    grid-area: aa
}

.wrap-gallery-image .item-2 {
    grid-area: bb
}

.wrap-gallery-image .item-3 {
    grid-area: cc
}

.wrap-gallery-image .item-4 {
    grid-area: dd
}

.wrap-gallery-image .item-5 {
    grid-area: ee
}

.wrap-gallery-image .more-photos {
    position: absolute;
    bottom: 10px;
    inset-inline-end: 15px
}

.more-photos {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 15px;
    background-color: var(--White);
    border-radius: 8px;
    cursor: pointer
}

.more-photos i {
    font-size: 16px;
    color: var(--Secondary)
}

.more-photos p {
    color: var(--Secondary)
}

.list-icons-page {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px
}

.list-icons-page .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    cursor: pointer
}

.list-icons-page .item .icon {
    width: 40px;
    height: 40px;
    padding-top: 2px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--White);
    border: 1px solid var(--Border);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.list-icons-page .item .icon i {
    font-size: 16px;
    color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.list-icons-page .item:hover .icon {
    background-color: #F9F9F9
}

.list-icons-page .item:hover .icon i {
    color: var(--Fourth)
}

.list-icons-page.style-white .icon {
    background-color: #fff0
}

.list-icons-page.style-white .icon i {
    color: var(--White)
}

.list-icons-page.style-white p {
    color: var(--White)
}

.list-icons-page.style-default {
    gap: 30px
}

.list-icons-page.style-default .item .icon {
    width: 16px;
    height: 16px;
    padding-top: 0;
    border: 0
}

.wrap-recent-activities {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.wrap-recent-activities .recent-activities-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px
}

.wrap-recent-activities .recent-activities-item .image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F9F9F9;
    overflow: hidden;
    flex-shrink: 0
}

.wrap-recent-activities .recent-activities-item p {
    line-height: 20px
}

.wrap-recent-activities .recent-activities-item p span {
    font-weight: 500
}

.wrap-recent-activities .tf-button-primary {
    height: 54px
}

.avatar-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px 30px;
    flex-wrap: wrap
}

.avatar-image .left {
    width: 150px;
    height: 150px;
    position: relative;
    flex-shrink: 0
}

.avatar-image .left img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%
}

.avatar-image .left .icon {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--Border);
    background-color: var(--White);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.avatar-image .left .icon i {
    font-size: 16px;
    color: var(--Secondary)
}

.avatar-image .right .uploadfile {
    position: relative
}

.avatar-image .right .uploadfile input {
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.avatar-image .right .uploadfile .tf-button-primary {
    height: 52px;
    padding: 0 40px
}

.avatar-image .right .uploadfile .file-name {
    font-size: 14px;
    margin-top: 9px
}

.list-message {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 32px;
    flex-direction: column
}

.message-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px
}

.message-item .avt {
    width: 50px;
    height: 50px
}

.message-item .avt img {
    width: 100%;
    object-fit: cover
}

.message-item .name {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
    margin-bottom: 3px
}

.message-item .sub {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--Fourth)
}

.message-item .time {
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
    color: #6B7177
}

.message-item .number {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #1967D2;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White);
    font-family: "Jost";
    font-size: 8px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: .07em
}

.message-item .number.bg-green {
    background-color: #34A853
}

.message-item .number.bg-yellow {
    background-color: #F9AB00
}

.upload-image-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    flex-direction: column;
    padding-bottom: 29px;
    border-bottom: 1px solid var(--Border)
}

.upload-image-wrap .text {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary)
}

.upload-image-wrap p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: var(--Secondary)
}

.upload-image-wrap .list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px
}

.upload-image-wrap .list .item {
    position: relative;
    width: 190px;
    height: 167px
}

.upload-image-wrap .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px
}

.upload-image-wrap .list .item ul {
    position: absolute;
    top: 55%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden
}

.upload-image-wrap .list .item ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    cursor: pointer
}

.upload-image-wrap .list .item ul li i {
    font-size: 12px;
    color: var(--Fourth)
}

.upload-image-wrap .list .item .uploadfile {
    width: 100%;
    height: 100%;
    background-color: #FFF8F6;
    border-radius: 16px;
    border: 1px dashed var(--Fourth);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-direction: column;
    cursor: pointer
}

.upload-image-wrap .list .item .uploadfile input {
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.upload-image-wrap .list .item .uploadfile i {
    font-size: 26px;
    color: var(--Secondary)
}

.upload-image-wrap .list .item .uploadfile div {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary)
}

.upload-image-wrap .list .item:hover ul {
    top: 50%;
    opacity: 1;
    visibility: visible
}

.wg-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px
}

.wg-icon>* {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFF8F6;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer
}

.wg-icon>* i {
    font-size: 12px;
    color: var(--Fourth)
}

.wg-icon>*:hover {
    background-color: var(--Primary)
}

.my-properties-item {
    padding: 25px 25px 25px;
    border-bottom: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 53px
}

.my-properties-item .property {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px
}

.my-properties-item .property .image {
    width: 150px;
    height: 128.57px;
    overflow: hidden;
    border-radius: 12px
}

.my-properties-item .property .image img {
    width: 100%
}

.my-properties-item .property .price {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Third);
    margin-top: 15px;
    margin-bottom: 4px
}

.my-properties-item .property .title {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 11px
}

.my-properties-item .property .location {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 0
}

.my-properties-item .property .location .icon i {
    font-size: 20px;
    color: var(--Text)
}

.my-properties-item .property .location p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.my-properties-item>div {
    width: 150px
}

.my-properties-item>div:first-child {
    width: 350px
}

.text-infor-item {
    height: 120px;
    padding: 33px 54px 30px;
    border-bottom: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 53px;
    color: var(--Secondary)
}

.text-infor-item .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px
}

.text-infor-item>div {
    width: 100%
}

.text-infor-item>div:last-child {
    width: 100px;
    flex-shrink: 0
}

.box-status {
    width: max-content;
    padding: 0 15px;
    background-color: var(--Third);
    font-weight: 400;
    font-size: 13px;
    line-height: 29px;
    color: var(--White);
    border-radius: 120px
}

.agents-item {
    padding: 39px 54px 38px 39px;
    border: 1px solid var(--Border);
    border-radius: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.agents-item .image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden
}

.agents-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.agents-item .image.has-border {
    border: 1px solid var(--Border)
}

.agents-item .name {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 4px;
    margin-top: 12px
}

.agents-item p {
    margin-bottom: 20px
}

.agents-item p span {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Third)
}

.agents-item .bot {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid var(--Border);
    padding-top: 20px
}

.agents-item:hover {
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922)
}

.shop-item {
    text-align: center
}

.shop-item .image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px
}

.shop-item .image img {
    width: 100%;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.shop-item .image a {
    border: 0;
    position: absolute;
    bottom: 0;
    inset-inline-start: 10px;
    inset-inline-end: 10px;
    opacity: 0;
    width: unset;
    visibility: hidden
}

.shop-item .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 8px
}

.shop-item .price {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--Third)
}

.shop-item:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

.shop-item:hover a {
    bottom: 10px;
    opacity: 1;
    visibility: visible
}

.shop-detail-content {
    padding-inline-start: 1px
}

.shop-detail-content h2 {
    margin-bottom: 10px;
    margin-top: -9px
}

.shop-detail-content h3 {
    color: var(--Third)
}

.shop-detail-content .divider {
    margin-top: 20px;
    margin-bottom: 27px
}

.shop-detail-content .tf-button-primary {
    width: 240px
}

.shop-detail-content .check {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
    margin-bottom: 10px
}

.shop-detail-content .check .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #F9F9F9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

.shop-detail-content .check p {
    line-height: 26px;
    color: var(--Secondary)
}

.shop-detail-content>p {
    margin-bottom: 20px
}

.shop-detail-content .bot {
    margin-top: 22px
}

.shop-detail-content .bot .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.shop-detail-content .bot .item>p:first-child {
    width: 91px
}

.wg-quantity {
    position: relative;
    width: max-content
}

.wg-quantity .btn-quantity {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--White);
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer
}

.wg-quantity .btn-quantity.minus-btn {
    inset-inline-start: 10px
}

.wg-quantity .btn-quantity.plus-btn {
    inset-inline-end: 10px
}

.wg-quantity input {
    width: 127px !important;
    padding: 12px 40px !important;
    background-color: #F9F9F9 !important;
    border: 0 !important;
    text-align: center
}

.shop-cart-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    gap: 21px;
    border-bottom: 1px solid var(--Border)
}

.shop-cart-item .image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden
}

.shop-cart-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.shop-cart-item .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Secondary)
}

.shop-cart-item .wg-icon li {
    background-color: var(--White);
    border: 1px solid var(--Border)
}

.shop-cart-item .wg-icon li i {
    font-size: 12px
}

.shop-cart-item>div:nth-child(2) {
    width: 203px
}

.shop-cart-item>div:nth-child(3) {
    width: 132px
}

.shop-cart-item>div:nth-child(4) {
    width: 148px
}

.shop-cart-item>div:nth-child(5) {
    width: 198px
}

.order-completed .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--Primary);
    margin: 0 auto 20px auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

.order-completed h2 {
    text-align: center;
    margin-bottom: 14px
}

.order-completed>.text-content {
    text-align: center;
    margin-bottom: 33px
}

.order-completed .order-info {
    padding: 37px 95px 33px 77px;
    background-color: #FFF8F6;
    border-radius: 8px;
    border: 2px dashed var(--Secondary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px
}

.order-completed .order-info .item p:first-child {
    margin-bottom: 2px
}

.order-completed .order-info .item p:last-child {
    font-weight: 500
}

.order-completed .sidebar-shop {
    max-width: unset
}

.pricing-item {
    border-radius: 16px;
    background-color: var(--White);
    border: 1px solid var(--Border);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.pricing-item .top {
    padding: 32px 40px 30px 40px;
    border-bottom: 1px solid var(--Border);
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.pricing-item .top h4 span {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Fourth)
}

.pricing-item .top h4:first-child {
    margin-bottom: -5px
}

.pricing-item .center {
    padding: 40px 30px 29px
}

.pricing-item .center ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px
}

.pricing-item .center ul li {
    justify-content: center
}

.pricing-item .center ul li p {
    line-height: 18px
}

.pricing-item .center>a {
    height: 54px
}

.pricing-item.active,
.pricing-item:hover {
    background-color: #FFF8F6;
    border-color: var(--Primary)
}

.pricing-item.active .top,
.pricing-item:hover .top {
    border-color: var(--Primary)
}

.pricing-item.active a,
.pricing-item:hover a {
    background-color: var(--Primary)
}

.tooltips-item {
    position: relative
}

.tooltips-item:hover .sub-tooltips {
    opacity: 1;
    visibility: visible
}

.tooltips-item .tooltips-main {
    width: 100px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9F9F9;
    border-radius: 12px
}

.tooltips-item .sub-tooltips {
    position: absolute;
    bottom: calc(100% + 3px);
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 30px;
    padding-inline-start: 12px;
    padding-inline-end: 20px;
    background-color: var(--Secondary);
    border-radius: 6px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden
}

.tooltips-item .sub-tooltips * {
    color: var(--White)
}

.tooltips-item .sub-tooltips::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--Secondary);
    transform: translateX(-50%) rotate(45deg);
    bottom: -3px;
    inset-inline-start: 50%
}

.tooltips-item .sub-tooltips.left {
    inset-inline-end: calc(100% + 3px);
    inset-inline-start: unset;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.tooltips-item .sub-tooltips.inset-inline-start::before {
    inset-inline-end: -6px;
    bottom: unset;
    inset-inline-start: unset
}

.tooltips-item .sub-tooltips.bottom {
    top: calc(100% + 3px);
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.tooltips-item .sub-tooltips.bottom::before {
    top: -3px;
    inset-inline-start: 50%
}

.tooltips-item .sub-tooltips.right {
    inset-inline-start: calc(100% + 3px);
    inset-inline-end: unset;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.tooltips-item .sub-tooltips.inset-inline-end::before {
    inset-inline-start: 0;
    bottom: unset;
    inset-inline-end: unset
}

.progress-bars .progress-bars-line {
    display: block;
    height: 10px;
    border-radius: 10px;
    background-color: var(--Border)
}

.progress-bars .progress-bars-line>div {
    position: relative;
    display: block;
    height: 10px;
    border-radius: 10px;
    background-color: var(--Primary)
}

.progress-bars .progress-bars-line>div .progress-bars-number {
    position: absolute;
    inset-inline-end: -3px;
    top: -30px
}

.range-slider #range-two-val {
    margin-bottom: 10px;
    height: 6px;
    box-shadow: none;
    border: 0;
    background-color: var(--Border)
}

.range-slider #range-two-val .noUi-connects .noUi-connect {
    background-color: var(--Primary)
}

.range-slider #range-two-val .noUi-origin .noUi-handle {
    width: 16px;
    height: 16px;
    background-color: var(--White);
    border: 2px solid var(--Primary);
    border-radius: 50%;
    inset-inline-end: -8px
}

.range-slider #range-two-val .noUi-origin .noUi-handle::after,
.range-slider #range-two-val .noUi-origin .noUi-handle::before {
    display: none
}

.range-slider .value {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

.range-slider .value>div {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary)
}

.box-agents {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 30px;
    padding: 30px
}

.box-agents .list-user {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px
}

.box-agents .list-user .item {
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--Third);
    border-radius: 50%;
    padding: 3px
}

.box-agents .list-user .item img {
    width: 100%;
    border-radius: 50%
}

.box-agents .text {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: var(--Secondary)
}

.box-agents .text span {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    margin-inline-end: 10px
}

.box-agents.style-1 {
    padding: 0;
    justify-content: start;
    flex-direction: row
}

.box-agents.style-1 .list-user .item {
    border-color: var(--Primary)
}

.box-agents.style-1 .text {
    color: var(--White)
}

.box-testimonials {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922)
}

.box-testimonials>.image {
    width: 100%;
    max-width: 580px;
    height: 600px
}

.box-testimonials>.image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.box-testimonials .testimonials-item {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    padding: 50px 0 50px 134px
}

.box-testimonials .testimonials-item>svg {
    position: unset;
    margin-bottom: 44px
}

.box-testimonials .testimonials-item .image {
    width: 90px;
    height: 90px
}

.box-testimonials .testimonials-item .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px
}

.box-testimonials .testimonials-item .description {
    max-width: 567px;
    font-size: 19px;
    font-weight: 500;
    line-height: 32px
}

.sort-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px
}

.sort-wrap p {
    color: var(--Fourth);
    width: 100%
}

.box-filter-small {
    margin-bottom: 10px
}

.box-filter-small form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.box-filter-small form .input-search {
    width: 260px
}

.box-filter-small form .input-search input {
    height: 44px
}

.box-filter-small form>.nice-select {
    width: max-content;
    height: 44px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 120px;
    padding-inline-end: 40px
}

.box-filter-small form>.nice-select ul.list {
    width: 300px
}

.box-filter-small form .wg-filter .btn-filter {
    height: 44px !important;
    padding-inline-end: 40px;
    padding-inline-start: 20px
}

.box-filter-small form>div::after {
    top: 43% !important;
    inset-inline-end: 23px !important
}

.property-single-sidebar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 390px;
    margin-inline-start: auto
}

.property-single-sidebar.has-background .sidebar-item {
    background-color: #F9F9F9
}

.property-single-sidebar .sidebar-item {
    padding: 30px;
    border-radius: 16px;
    background-color: var(--White);
    border: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    flex-direction: column
}

.property-single-sidebar .sidebar-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    margin-top: -6px
}

.property-single-sidebar .sidebar-request .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary);
    text-align: center
}

.property-single-sidebar .sidebar-request .text span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.property-single-sidebar .sidebar-schedule form {
    gap: 20px
}

.property-single-sidebar .sidebar-schedule form .cols {
    gap: 20px;
    flex-wrap: wrap
}

.property-single-sidebar .sidebar-schedule form .widget-menu-tab {
    margin-bottom: 20px
}

.property-single-sidebar .sidebar-schedule form .widget-content-inner {
    gap: 20px
}

.property-single-sidebar .sidebar-schedule form .widget-content-inner textarea {
    height: 100px !important
}

.property-single-sidebar .sidebar-contact-info {
    margin-bottom: 30px
}

.property-single-sidebar .sidebar-contact-info .contact-info {
    margin-bottom: 0
}

.property-single-sidebar .sidebar-contact-info .contact-info .person {
    margin-top: 0;
    margin-bottom: 31px
}

.property-single-sidebar .sidebar-contact-info .contact-info form {
    gap: 20px
}

.property-single-sidebar .sidebar-contact-info .contact-info form .cols {
    gap: 20px;
    flex-wrap: wrap
}

.property-single-sidebar .sidebar-contact-info .contact-info form .cols>* {
    width: 100%
}

.property-single-sidebar .sidebar-contact-info .contact-info form textarea {
    height: 100px !important
}

.property-single-sidebar .sidebar-contact-info .contact-info form .widget-menu-tab {
    margin-bottom: 20px
}

.property-single-sidebar .sidebar-contact-info .contact-info form .widget-content-inner {
    gap: 20px
}

.property-single-sidebar .sidebar-contact-info .contact-info form .button-submit .tf-button-primary {
    height: 54px
}

.property-single-sidebar .sidebar-contact-info .contact-info form .tf-button-primary {
    height: 52px
}

.form-schedule {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    flex-direction: column
}

.form-schedule .widget-tabs {
    width: 100%
}

.form-schedule .widget-tabs .widget-menu-tab {
    justify-content: center;
    margin-bottom: 30px;
    position: relative
}

.form-schedule .widget-tabs .widget-menu-tab::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--Border);
    top: 50%;
    z-index: -1
}

.form-schedule .widget-tabs .widget-content-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    flex-direction: column
}

.form-schedule .widget-tabs .widget-content-inner textarea {
    height: 230px !important
}

.form-schedule .nice-select>.list {
    max-width: unset;
    width: 100%
}

.contact-info {
    margin-bottom: 72px
}

.contact-info .tf-button-green {
    height: 33px !important
}

.contact-info .person {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
    margin-top: 39px;
    margin-bottom: 42px
}

.contact-info .person .image {
    width: 90px;
    height: 90px
}

.contact-info .person .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.contact-info .person .content {
    padding-top: 5px
}

.contact-info .person .content .name {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary)
}

.contact-info>.title {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 22px
}

.contact-info form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    flex-direction: column
}

.contact-info form textarea {
    height: 230px !important
}

.contact-info form .cols>* {
    width: 50%
}

.contact-info form .checkbox-item {
    margin-top: -3px;
    margin-bottom: -5px
}

.contact-info form .checkbox-item p span {
    color: var(--Third)
}

.contact-info form .nice-select>.list {
    max-width: unset;
    width: 100%
}

.contact-item {
    padding: 60px 50px;
    border-radius: 24px;
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    text-align: center;
    min-height: 385px;
    color: var(--Secondary)
}

.contact-item .icon {
    width: 80px;
    height: 80px;
    background-color: #F9F9F9;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-bottom: 22px
}

.contact-item .icon i {
    font-size: 35px
}

.contact-item .content {
    min-height: 100px
}

.contact-item .content h4 {
    margin-bottom: 14px
}

.contact-item .bot {
    margin-top: 21px;
    border-top: 1px solid var(--Border);
    padding-top: 23px
}

.message-boxes-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 29px;
    height: 75px;
    background-color: rgb(205 233 246 / .5019607843)
}

.message-boxes-item .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: #4780AA
}

.message-boxes-item i {
    color: #4780AA;
    cursor: pointer
}

.message-boxes-item.type-warning {
    background-color: rgb(247 243 215 / .5019607843)
}

.message-boxes-item.type-warning .text,
.message-boxes-item.type-warning i {
    color: #927238
}

.message-boxes-item.type-error {
    background-color: rgb(236 200 197 / .5019607843)
}

.message-boxes-item.type-error .text,
.message-boxes-item.type-error i {
    color: #AB3331
}

.message-boxes-item.type-success {
    background-color: rgb(222 242 215 / .5019607843)
}

.message-boxes-item.type-success .text,
.message-boxes-item.type-success i {
    color: #5B7052
}

.wg-blockquote {
    position: relative;
    border-inline-start: 5px solid var(--Secondary);
    padding: 53px 83px 56px 75px;
    background-color: #F9F9F9
}

.wg-blockquote blockquote {
    font-style: italic;
    font-weight: 400;
    font-size: 21px;
    line-height: 36px;
    color: var(--Secondary);
    margin-bottom: 21px
}

.wg-blockquote cite {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary);
    font-style: normal
}

.wg-blockquote .icon {
    position: absolute;
    bottom: 44px;
    inset-inline-end: 58px
}

.flat-title {
    padding-top: 90px;
    padding-bottom: 94px;
    position: relative;
    z-index: 20
}

.flat-title .content {
    text-align: center
}

.flat-title .content h2 {
    margin-bottom: 14px
}

.flat-title .content>.text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px
}

.flat-title.page-property-grid-2 {
    padding-top: 40px;
    padding-bottom: 42px
}

.flat-title.page-property-grid-2 .content {
    text-align: start
}

.flat-title.page-property-grid-2 .content .breadcrumbs {
    justify-content: start;
    margin-bottom: 44px
}

.flat-title.page-property-grid-2 .content .form-filter {
    position: relative;
    z-index: 5
}

.flat-title.page-property-grid-2 .content .form-filter form {
    background-color: #F9F9F9;
    border-radius: 16px;
    border: 1px solid var(--Border)
}

.flat-title.page-property-grid-2 .content .form-filter form .wg-filter>.btn-filter {
    background-color: var(--White)
}

.flat-title.page-property-grid-2 .content .form-filter form .list .group-form {
    width: 212px
}

.flat-title.page-property-grid-2 .content .form-filter form .list .group-form.form-search-content {
    width: 526px
}

.flat-title.page-property-grid-3 {
    padding-top: 90px;
    padding-bottom: 101px;
    border-radius: 24px;
    background-color: #F9F9F9
}

.flat-title.page-property-grid-3 .content .breadcrumbs {
    margin-bottom: 23px
}

.flat-title.page-property-grid-3 .content .form-filter {
    max-width: 1022px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    text-align: start;
    position: relative;
    z-index: 5
}

.flat-title.page-property-grid-3 .content .form-filter form {
    border-radius: 16px;
    border: 1px solid var(--Border)
}

.flat-title.page-property-grid-3 .content .form-filter form .wg-filter>.btn-filter {
    background-color: var(--White)
}

.flat-title.page-property-grid-3 .content .form-filter form .list .group-form {
    width: 152px
}

.flat-title.page-property-grid-3 .content .form-filter form .list .group-form.form-search-content {
    width: 266px
}

.flat-title.page-property-grid-4 {
    padding-top: 29px;
    padding-bottom: 30px;
    background-color: var(--Secondary);
    border-radius: 24px;
    margin-bottom: 41px
}

.flat-title.page-property-grid-4 .content {
    text-align: start
}

.flat-title.page-property-grid-4 .content .form-filter form {
    padding: 0
}

.flat-title.page-property-grid-4 .content .form-filter form .wg-filter input {
    color: var(--Secondary) !important
}

.flat-title.page-property-grid-4 .content .form-filter form .wg-filter input::placeholder {
    color: var(--Secondary) !important
}

.flat-title.page-property-grid-4 .content .form-filter form .list .group-form {
    width: 100%;
    max-width: 212px
}

.flat-title.page-property-grid-4 .content .form-filter form .list .group-form.form-search-content {
    max-width: 576px
}

.flat-title.page-property-list-2 {
    padding-top: 239px;
    padding-bottom: 129px;
    border-radius: 24px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/slider/slider-home-1.jpg);
    background-attachment: fixed;
    z-index: 20
}

.flat-title.page-property-list-2::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 61.39%, #fff0 100%)
}

.flat-title.page-property-list-2 .content h2 {
    color: var(--White)
}

.flat-title.page-property-list-2 .content .breadcrumbs {
    margin-bottom: 23px
}

.flat-title.page-property-list-2 .content .breadcrumbs li {
    color: var(--White)
}

.flat-title.page-property-list-2 .content .breadcrumbs li a {
    color: var(--White)
}

.flat-title.page-property-list-2 .content .form-filter {
    max-width: 1022px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    text-align: start;
    position: relative;
    z-index: 5
}

.flat-title.page-property-list-2 .content .form-filter form {
    border-radius: 16px;
    border: 1px solid var(--Border)
}

.flat-title.page-property-list-2 .content .form-filter form .wg-filter>.btn-filter {
    background-color: var(--White)
}

.flat-title.page-property-list-2 .content .form-filter form>.list {
    gap: 10px
}

.flat-title.page-property-list-2 .content .form-filter form .list .group-form {
    width: 152px
}

.flat-title.page-property-list-2 .content .form-filter form .list .group-form.form-search-content {
    width: 266px
}

.flat-title.page-property-list-3 {
    padding-top: 212px;
    padding-bottom: 101px;
    border-radius: 24px;
    position: relative;
    background-color: var(--Fourth);
    z-index: 20
}

.flat-title.page-property-list-3 .content h2 {
    color: var(--White)
}

.flat-title.page-property-list-3 .content .breadcrumbs {
    margin-bottom: 23px
}

.flat-title.page-property-list-3 .content .breadcrumbs li {
    color: var(--White)
}

.flat-title.page-property-list-3 .content .breadcrumbs li a {
    color: var(--White)
}

.flat-title.page-property-list-3 .content .form-filter {
    max-width: 1022px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    text-align: start;
    position: relative;
    z-index: 5
}

.flat-title.page-property-list-3 .content .form-filter form {
    border-radius: 16px;
    border: 1px solid var(--Border)
}

.flat-title.page-property-list-3 .content .form-filter form .wg-filter>.btn-filter {
    background-color: var(--White)
}

.flat-title.page-property-list-3 .content .form-filter form .list .group-form {
    width: 152px
}

.flat-title.page-property-list-3 .content .form-filter form .list .group-form.form-search-content {
    width: 266px
}

.flat-title.agency-single {
    padding-bottom: 92px
}

.flat-title.agency-single .content h2 {
    margin-bottom: 12px
}

.flat-title.agency-single .content .breadcrumbs li {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px
}

.flat-title.agency-single .content .breadcrumbs li span {
    font-size: 15px;
    font-weight: 500;
    color: var(--Third)
}

.flat-title.inner-page {
    border-radius: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 241px;
    padding-bottom: 248px;
    height: 570px
}

.flat-title.inner-page .content h2 {
    color: var(--White)
}

.flat-title.inner-page .content>.text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: var(--White)
}

.flat-title.inner-page .content .breadcrumbs a,
.flat-title.inner-page .content .breadcrumbs li {
    color: var(--White)
}

.slider .wrap-slider {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.slider .slider-item .slider-content {
    padding-top: 259px;
    padding-bottom: 237px;
    text-align: center
}

.slider .slider-item .slider-content .sub {
    width: max-content;
    margin: auto;
    padding: 11px 25px;
    border-radius: 120px;
    border: 1px solid var(--White);
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: var(--White);
    margin-bottom: 17px
}

.slider .slider-item .slider-content h1 {
    color: var(--White);
    max-width: 610px;
    margin: auto;
    margin-bottom: 42px
}

.slider .slider-item .slider-content .list-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 36px
}

.slider .slider-item .slider-content .list-link>* {
    position: relative;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: var(--White);
    cursor: pointer
}

.slider .slider-item .slider-content .list-link>*::after {
    position: absolute;
    content: "";
    bottom: -3px;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 0;
    height: 2px;
    background-color: var(--White);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.slider .slider-item .slider-content .list-link>*.active::after,
.slider .slider-item .slider-content .list-link>*:hover::after {
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: auto
}

.slider.home1 .wrap-slider {
    position: relative;
    border-radius: 24px;
    background-image: url(../images/slider/slider-home-1.jpg);
    background-attachment: fixed
}

.slider.home1 .wrap-slider::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 61.39%, #fff0 100%)
}

.slider.home1 .wrap-slider form {
    max-width: 686px;
    margin: auto
}

.slider.home1 .wrap-slider .slider-content {
    padding-inline-end: 28px
}

.slider.home2 .wrap-slider {
    position: relative;
    background-image: url(../images/slider/slider-home-2.jpg);
    background-attachment: fixed
}

.slider.home2 .wrap-slider form {
    max-width: 686px;
    margin: auto;
    margin-bottom: 56px
}

.slider.home2 .wrap-slider .slider-content {
    padding-top: 312px;
    padding-bottom: 114px
}

.slider.home2 .wrap-slider .slider-content .sub {
    color: var(--Fourth);
    border-color: var(--Fourth)
}

.slider.home2 .wrap-slider .slider-content h1 {
    color: var(--Fourth);
    font-weight: 500;
    margin-bottom: 12px
}

.slider.home2 .wrap-slider .slider-content>.text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Fourth);
    margin-bottom: 56px
}

.slider.home2 .wrap-slider .slider-content>.text-1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--White);
    margin-bottom: 26px
}

.slider.home2 .wrap-slider .slider-content .list-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.slider.home2 .wrap-slider .slider-content .list-icon .item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 20px 5px 5px;
    border-radius: 120px;
    background: rgb(255 255 255 / .3);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px)
}

.slider.home2 .wrap-slider .slider-content .list-icon .item .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--White)
}

.slider.home2 .wrap-slider .slider-content .list-icon .item .icon i {
    font-size: 18px;
    color: var(--Text)
}

.slider.home2 .wrap-slider .slider-content .list-icon .item p {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: var(--White)
}

.slider.home3 .wrap-slider {
    position: relative;
    background-image: url(../images/slider/slider-home-3.jpg)
}

.slider.home3 .wrap-slider .slider-content {
    padding-top: 286px;
    padding-bottom: 300px
}

.slider.home3 .wrap-slider .slider-content h1 {
    margin-bottom: 12px;
    color: #111235
}

.slider.home3 .wrap-slider .slider-content h1 span {
    color: #254EF0
}

.slider.home3 .wrap-slider .slider-content>.text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #111235;
    margin-bottom: 52px
}

.slider.home3 .wrap-slider .slider-content .list-link {
    margin-bottom: 36px
}

.slider.home3 .wrap-slider .slider-content .list-link>* {
    color: #111235
}

.slider.home3 .wrap-slider .slider-content .list-link>*::after {
    background-color: #111235
}

.slider.home3 .wrap-slider .slider-content form {
    max-width: 920px;
    margin: auto
}

.slider.home4 .wrap-slider {
    position: relative
}

.slider.home4 .wrap-slider::after {
    position: absolute;
    content: url(../images/sale.svg);
    bottom: 0;
    inset-inline-end: 0;
    z-index: 0
}

.slider.home4 .wrap-slider::before {
    position: absolute;
    content: url(../images/rent.svg);
    bottom: 0;
    inset-inline-start: 0;
    z-index: 0
}

.slider.home4 .wrap-slider .slider-item {
    position: relative;
    z-index: 5
}

.slider.home4 .wrap-slider .slider-item .slider-content {
    padding-top: 259px;
    padding-bottom: 184px;
    padding-inline-end: 17px
}

.slider.home4 .wrap-slider .slider-item .slider-content .sub {
    color: var(--Fourth);
    border-color: var(--Fourth);
    margin-bottom: 24px
}

.slider.home4 .wrap-slider .slider-item .slider-content .text-content {
    margin-bottom: 10px
}

.slider.home4 .wrap-slider .slider-item .slider-content h1 {
    color: var(--Fourth);
    font-weight: 500;
    margin-bottom: 46px;
    max-width: none
}

.slider.home4 .wrap-slider .slider-item .slider-content>.text-1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Fourth);
    margin-bottom: 26px
}

.slider.home4 .wrap-slider .slider-item .slider-content .list-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.slider.home4 .wrap-slider .slider-item .slider-content .list-links a {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    padding: 8px 17px;
    border-radius: 120px;
    border: 1px solid var(--Border);
    color: var(--Fourth)
}

.slider.home4 .wrap-slider form {
    max-width: 686px;
    margin: auto;
    margin-bottom: 56px
}

.slider.home5 .wrap-slider {
    position: relative;
    background-color: #FFF8F6
}

.slider.home5 .wrap-slider .slider-content {
    padding-top: 281px;
    padding-bottom: 139px;
    text-align: start
}

.slider.home5 .wrap-slider .slider-content p {
    color: var(--Fourth);
    margin-bottom: 8px
}

.slider.home5 .wrap-slider .slider-content .text-content {
    margin-bottom: 10px
}

.slider.home5 .wrap-slider .slider-content h1 {
    position: relative;
    z-index: 15;
    color: var(--Fourth);
    font-weight: 500;
    margin-bottom: 46px;
    max-width: none
}

.slider.home5 .wrap-slider .slider-content h1 span {
    color: var(--Primary)
}

.slider.home5 .wrap-slider .slider-content>form {
    position: relative;
    z-index: 15;
    /* margin-bottom: 60px; */
    max-width: 1070px;
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    border: 1px solid var(--Border)
}

.slider.home5 .wrap-slider .slider-content .text-1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Fourth)
}

.slider.home5 .wrap-slider .slider-content .list-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.slider.home5 .wrap-slider .slider-content .list-links a {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    padding: 8px 17px;
    border-radius: 120px;
    background-color: var(--White);
    border: 1px solid var(--Border);
    color: var(--Fourth)
}

.slider.home5 .wrap-slider .slider-content .left {
    position: absolute;
    top: 158px;
    inset-inline-end: 0;
    z-index: 2
}

.slider.home5 .wrap-slider .slider-content .left form {
    position: absolute;
    top: 16px;
    inset-inline-start: -31px;
    width: 100%;
    max-width: 378px
}

.slider.home5 .wrap-slider .slider-content .left .box-agents {
    position: absolute;
    inset-inline-end: -47px;
    bottom: -30px;
    border-radius: 24px;
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .05)
}

.slider.home5 .wrap-slider .slider-content .left .wrap-img {
    max-width: 567px
}

.slider.home5 .wrap-slider .slider-content .left .wrap-img img {
    width: 100%
}

.slider.home5 .wrap-slider .slider-content .left .wrap-img .img-1 {
    border-radius: 200px 0 0 30px
}

.slider.home5 .wrap-slider .slider-content .left .wrap-img .img-2 {
    border-radius: 30px 0 0 30px
}

.slider.home5 .wrap-slider .slider-content .left .wrap-img .img-3 {
    border-radius: 0 30px 30px 0
}

.slider.home5 .wrap-slider .slider-content .left .wrap-img .img-4 {
    border-radius: 0 30px 200px 0
}

.slider.home6 .wrap-slider {
    position: relative;
    background-color: var(--Secondary)
}

.slider.home6 .wrap-slider .slider-item {
    background-image: url(../images/slider/slider-home-6.jpg);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 924px;
    position: relative
}

.slider.home6 .wrap-slider .slider-item::before {
    position: absolute;
    content: "";
    width: 583px;
    height: 583px;
    top: -63px;
    bottom: -73px;
    opacity: .2;
    background-color: var(--Primary);
    filter: blur(500px)
}

.slider.home6 .wrap-slider .slider-item .slider-content {
    text-align: start;
    padding-top: 267px;
    padding-bottom: 159px
}

.slider.home6 .wrap-slider .slider-item .slider-content .sub {
    margin-inline-start: unset;
    margin-inline-end: unset
}

.slider.home6 .wrap-slider .slider-item .slider-content h1 {
    margin-inline-start: unset;
    margin-inline-end: unset;
    margin-bottom: 8px;
    max-width: unset
}

.slider.home6 .wrap-slider .slider-item .slider-content h1 span {
    color: var(--Primary)
}

.slider.home6 .wrap-slider .slider-item .slider-content>p {
    color: var(--White);
    margin-bottom: 47px
}

.slider.home6 .wrap-slider .slider-item .slider-content .list-link {
    justify-content: start
}

.slider.home6 .wrap-slider .slider-item .slider-content .form-search-home6 {
    position: relative;
    z-index: 15;
    margin-bottom: 60px;
    max-width: 899px;
    border: 0
}

.slider.home7 .wrap-slider {
    position: relative;
    background-color: #FFF8F6
}

.slider.home7 .wrap-slider .image {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0
}

.slider.home7 .wrap-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider.home7 .wrap-slider::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 61.39%, #fff0 100%)
}

.slider.home7 .wrap-slider .slider-item {
    position: relative;
    z-index: 5
}

.slider.home7 .wrap-slider .slider-item .slider-content {
    padding-top: 284px;
    padding-bottom: 228px;
    text-align: center
}

.slider.home7 .wrap-slider .slider-item .slider-content .text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: var(--White);
    margin-bottom: 33px
}

.slider.home7 .wrap-slider .slider-item .slider-content h1 {
    max-width: 587px;
    font-weight: 500;
    margin-bottom: 32px
}

.slider.home7 .wrap-slider .slider-item .slider-content .text-1 {
    font-size: 21px;
    font-weight: 500;
    line-height: 24.61px;
    margin-bottom: 44px;
    color: var(--White)
}

.slider.home7 .swiper-button-next {
    inset-inline-end: 60px !important
}

.slider.home7 .swiper-button-prev {
    inset-inline-start: 60px !important
}

.slider.home7>form {
    max-width: 1162px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-top: -48px;
    border-radius: 24px !important;
    gap: 50px
}

.slider.home7>form>.list .group-form {
    width: 172px
}

.slider.home7>form>.list .group-form.form-search-content {
    width: 356px
}

.slider.home8 .wrap-slider {
    position: relative;
    background-image: url(../images/slider/slider-home-8.jpg);
    border-radius: 24px
}

.slider.home8 .wrap-slider .slider-item {
    position: relative;
    z-index: 5
}

.slider.home8 .wrap-slider .slider-item .slider-content {
    padding-top: 192px;
    padding-bottom: 308px
}

.slider.home8 .wrap-slider .slider-item .slider-content h1 {
    max-width: unset;
    margin-bottom: 8px
}

.slider.home8 .wrap-slider .slider-item .slider-content>p {
    color: var(--White);
    margin-bottom: 51px
}

.slider.home8 .wrap-slider .slider-item .slider-content .widget-tabs {
    max-width: 899px;
    margin-inline-start: auto;
    margin-inline-end: auto
}

.slider.home8 .wrap-slider .slider-item .slider-content .widget-tabs .widget-menu-tab {
    justify-content: center
}

.slider.home8 .wrap-slider .slider-item .slider-content .widget-tabs .form-search-home6 {
    text-align: start;
    border-radius: 24px
}

.slider.home8 .wrap-slider .slider-item .slider-content .widget-tabs .form-search-home6 .wg-filter .tf-button-filter {
    border-radius: 12px
}

.slider.home8 .wrap-slider .slider-item .slider-content .widget-tabs .form-search-home6 .button-submit button {
    border-radius: 12px;
    color: var(--White);
    background-color: var(--Secondary)
}

.slider.home8 .wrap-slider .counter {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
    max-width: 900px;
    height: 80px;
    padding: 26px 200px 0 102px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    background-image: url(../images/image-box/img-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.slider.home8 .wrap-slider .counter .number-counter div {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 0
}

.slider.home8 .wrap-slider .counter .number-counter div,
.slider.home8 .wrap-slider .counter p {
    color: var(--Secondary)
}

.slider.home9 .top {
    padding-top: 29px;
    padding-bottom: 48px
}

.slider.home9 .top .row {
    align-items: flex-end
}

.slider.home9 .top .tf-button-primary {
    margin-bottom: 12px
}

.slider.home9 .top h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 59px
}

.slider.home9 .top .box-agents {
    padding: 0;
    margin-bottom: 12px;
    align-items: start
}

.slider.home9 .top .box-agents .text div {
    margin-top: 10px
}

.slider.home9 .wrap-slider {
    position: relative;
    border-radius: 24px;
    background-image: url(../images/slider/slider-home-9.jpg);
    background-attachment: fixed
}

.slider.home9 .wrap-slider::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 61.39%, #fff0 100%)
}

.slider.home9 .wrap-slider .slider-item {
    padding-top: 74px;
    padding-bottom: 74px
}

.slider.home9 .wrap-slider .slider-item .button-play-video {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    height: 100%;
    padding: 20px 0
}

.slider.home9 .wrap-slider .slider-item .button-play-video .video-wrap {
    width: 86px;
    height: 86px
}

.slider.home9 .wrap-slider .slider-item .button-play-video .video-wrap .popup-youtube {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(255 255 255 / .1019607843)
}

.slider.home9 .wrap-slider .slider-item .button-play-video p {
    color: var(--White)
}

.slider.home10 .wrap-slider {
    position: relative;
    background-image: url(../images/slider/slider-home-10.jpg);
    background-attachment: fixed
}

.slider.home10 .wrap-slider .slider-content {
    padding-top: 323px;
    padding-bottom: 391px;
    text-align: start
}

.slider.home10 .wrap-slider .slider-content h1 {
    max-width: unset;
    margin-bottom: 12px
}

.slider.home10 .wrap-slider .slider-content h1 span {
    color: var(--Primary)
}

.slider.home10 .wrap-slider .slider-content .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: var(--White);
    margin-bottom: 57px
}

.slider.home10 .wrap-slider .slider-content .btns-more {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Primary)
}

.slider.home10 .wrap-slider .slider-content .btns-more i {
    font-size: 18px
}

.slider.home10 .wrap-slider .slider-content .btns-more:hover {
    color: var(--White)
}

.slider.home10 .wrap-slider .counter {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    max-width: 960px;
    height: 150px;
    border-radius: 0 24px 0 0;
    padding: 45px 102px 45px 260px;
    background-color: var(--Primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

.slider.home10 .wrap-slider .counter .number-counter div {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 0
}

.slider.home10 .wrap-slider .counter .number-counter div,
.slider.home10 .wrap-slider .counter p {
    color: var(--Secondary)
}

.slider.page-404 {
    padding: 20px 20px 0 20px
}

.slider.page-404 .wrap-slider {
    background-image: url(../images/section/404.jpg);
    background-attachment: unset;
    border-radius: 24px
}

.slider.page-404 .wrap-slider .slider-item .slider-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 200px;
    padding-bottom: 200px;
    min-height: calc(100vh - 40px)
}

.slider.page-404 .wrap-slider .slider-item .slider-content>.heading {
    font-size: 70px;
    font-weight: 600;
    line-height: 82px;
    color: var(--White);
    margin-bottom: 4px
}

.slider.page-404 .wrap-slider .slider-item .slider-content>h2 {
    color: var(--White);
    margin-bottom: 14px
}

.slider.page-404 .wrap-slider .slider-item .slider-content>.text-content {
    color: var(--White);
    margin-bottom: 53px
}

.slider.page-404 .wrap-slider .slider-item .slider-content>form {
    width: 100%;
    max-width: 565px;
    margin-inline-start: auto;
    margin-inline-end: auto
}

.luxury-home {
    background-color: var(--Fourth);
    border-radius: 24px;
    padding-bottom: 191px
}

.luxury-home.has-bg-vector-1 {
    position: relative
}

.luxury-home.has-bg-vector-1::before {
    position: absolute;
    bottom: -35px;
    inset-inline-start: -20px;
    inset-inline-end: -20px;
    content: url(../images/section/bg-luxury-home.png)
}

.luxury-home .image {
    position: relative
}

.luxury-home .image img {
    width: 100%;
    border-radius: 16px
}

.luxury-home .image .box {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    background-color: var(--White);
    padding: 20px 60px 20px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.luxury-home .image .box .icon {
    width: 60px;
    height: 60px;
    background-color: rgb(231 200 115 / .2);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.luxury-home .image .box .icon i {
    font-size: 26px
}

.luxury-home .content {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 9px
}

.luxury-home .content h2 {
    color: var(--White);
    margin-bottom: 34px
}

.luxury-home .content .text-content {
    color: var(--White);
    margin-bottom: 43px
}

.luxury-home .content ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px 53px;
    flex-wrap: wrap;
    margin-bottom: 41px
}

.luxury-home .content ul li h4 {
    margin-bottom: 14px
}

.luxury-home .counter {
    padding-top: 91px
}

.luxury-home.style-1 {
    background-color: var(--White);
    padding-bottom: 199px
}

.luxury-home.style-1 .content {
    padding-top: 123px;
    justify-content: unset
}

.luxury-home.style-1 .content .text-content {
    color: var(--Secondary);
    margin-bottom: 36px
}

.luxury-home.style-1 .content h2 {
    color: var(--Secondary)
}

.luxury-home.style-1 .heading-section {
    margin-top: 196px
}

.luxury-home.style-2 {
    background-color: var(--White);
    padding-bottom: 199px
}

.luxury-home.style-2 .content .text-content {
    color: var(--Secondary);
    margin-bottom: 36px
}

.luxury-home.style-2 .content h2 {
    color: var(--Secondary)
}

.luxury-home.style-2 .image {
    width: 100%;
    max-width: 576px;
    margin-inline-start: auto
}

.luxury-home.style-2 .image .box {
    bottom: 20px;
    inset-inline-start: 20px;
    top: unset;
    background-color: var(--Fourth)
}

.luxury-home.style-2 .image .box .icon {
    background-color: rgb(255 255 255 / .1)
}

.luxury-home.style-2 .image .box .icon i {
    color: var(--White)
}

.luxury-home.style-2 .image .box h4,
.luxury-home.style-2 .image .box p {
    color: var(--White)
}

.luxury-home.style-2 .heading-section {
    margin-top: 196px
}

.luxury-home.style-3 {
    border-radius: 0;
    background-color: #fff8f6;
    padding-top: 0;
    padding-bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.luxury-home.style-3 .image {
    width: 100%
}

.luxury-home.style-3 .image img {
    border-radius: 0;
    height: 100%;
    object-fit: cover
}

.luxury-home.style-3 .content {
    width: 100%;
    padding: 191px 50px 191px 147px
}

.luxury-home.style-3 .content .text-content {
    margin-bottom: 36px
}

.luxury-home.style-3 .content h2,
.luxury-home.style-3 .content .text-content {
    color: var(--Secondary)
}

.luxury-home.style-4 {
    background-color: var(--White);
    padding-bottom: 200px
}

.luxury-home.style-4 .content {
    justify-content: start;
    padding-top: 69px
}

.luxury-home.style-4 .content h2,
.luxury-home.style-4 .content .text-content {
    color: var(--Secondary)
}

.luxury-home.style-4 .content .text-content {
    margin-bottom: 34px
}

.luxury-home.style-4 .content .counter {
    padding-top: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 90px;
    max-width: 470px;
    margin-bottom: 41px
}

.luxury-home.style-4 .content .counter>div {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 42px;
    flex-direction: column
}

.luxury-home.style-4 .content .counter .number-counter div,
.luxury-home.style-4 .content .counter p {
    color: var(--Secondary)
}

.luxury-home.style-5 {
    background-color: var(--White);
    padding-bottom: 200px
}

.luxury-home.style-5 .content h2,
.luxury-home.style-5 .content .text-content {
    color: var(--Secondary)
}

.parallax-wrap {
    padding-top: 216px;
    padding-bottom: 229px;
    text-align: center;
    background-image: url(../images/section/parallax-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative
}

.parallax-wrap .heading {
    font-weight: 500;
    font-size: 60px;
    line-height: 70px;
    color: #111235;
    margin-bottom: 30px
}

.parallax-wrap .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #111235;
    margin-bottom: 43px
}

.parallax-wrap .color-white .heading,
.parallax-wrap .color-white .text {
    color: var(--White)
}

.parallax-wrap.style-1 {
    padding-bottom: 228px;
    background-image: url(../images/section/parallax-2.jpg)
}

.parallax-wrap.style-1::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 61.39%, #fff0 100%)
}

.parallax-wrap.style-1 .content {
    position: relative;
    z-index: 7
}

.progress-wrap {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 30px;
    -webkit-box-shadow: inset 0 0 0 2px rgb(130 130 130 / .2);
    box-shadow: inset 0 0 0 2px rgb(130 130 130 / .2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    background: var(--Secondary)
}

.progress-wrap::after {
    position: absolute;
    content: "\ea3a";
    font-family: "icomoon";
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    color: var(--White);
    inset-inline-start: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.progress-wrap svg path {
    fill: none
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    stroke: var(--Primary);
    stroke-width: 5;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 150ms;
    transition-duration: 0.4s;
    transition-timing-function: linear
}

.preload-container {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 1000000000000000000000;
    height: 100%;
    width: 100%;
    background-color: #fff
}

.preload-container .middle {
    top: 50%;
    inset-inline-start: 50%;
    position: absolute;
    z-index: 100;
    margin: -15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    content: url(../images/favicon.png);
    animation: preload 1.2s linear infinite alternate
}

#header_main {
    position: relative;
    z-index: 100
}

#header_main .header-inner {
    padding: 20px 20px 0 20px !important
}

#header_main .header-inner.background-white .header-inner-wrap {
    background-color: var(--White)
}

#header_main .header-inner .header-inner-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--Border);
    border-radius: 24px;
    padding-inline-start: 40px;
    padding-inline-end: 40px
}

#header_main .header-inner .header-inner-wrap #site-logo #logo-header-mobile {
    display: none
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li {
    position: relative
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>a {
    line-height: 100px
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul {
    position: absolute;
    min-width: 270px;
    padding: 30px;
    opacity: 0;
    border-radius: 16px;
    background-color: var(--White);
    visibility: hidden;
    transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li {
    line-height: 40px
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 40px
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 0;
    height: 1px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a.current::after,
#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a:hover::after {
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: auto
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul.mega-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 130px;
    padding: 40px 45px;
    transform: translateX(-50%) translateY(10px)
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul.mega-menu .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 33px
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover ul.mega-menu {
    transform: translateX(-50%) translateY(0)
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li::after {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 0;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover::after {
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: auto
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li.current::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation a,
#header_main .header-inner .header-inner-wrap .main-menu ul.navigation li {
    width: max-content;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Secondary)
}

#header_main .header-inner .header-inner-wrap .main-menu.style-white>ul>li>a {
    color: var(--White)
}

#header_main .header-inner .header-inner-wrap .main-menu.style-white>ul>li::after {
    background-color: var(--White) !important
}

#header_main .header-inner .header-inner-wrap .main-menu.style-blue>ul>li>a {
    color: var(--Fourth)
}

#header_main .header-inner .header-inner-wrap .main-menu.style-blue>ul>li::after {
    background-color: var(--Fourth) !important
}

#header_main .header-inner .header-inner-wrap .header-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

#header_main .header-inner .header-inner-wrap .header-right .header-call {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer
}

#header_main .header-inner .header-inner-wrap .header-right .header-call .icon i {
    font-size: 20px;
    color: var(--Secondary)
}

#header_main .header-inner .header-inner-wrap .header-right .header-call .number {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary)
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-white .number {
    color: var(--White)
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-white .icon i {
    color: var(--White)
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-blue .number {
    color: var(--Fourth)
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-blue .icon i {
    color: var(--Fourth)
}

#header_main .header-inner .header-inner-wrap .header-right .header-user {
    width: 41px;
    height: 41px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Secondary);
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0
}

#header_main .header-inner .header-inner-wrap .header-right .header-user i {
    font-size: 16px;
    color: var(--Secondary)
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-white {
    border-color: var(--White)
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-white .icon i {
    color: var(--White)
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-blue {
    border-color: var(--Fourth)
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-blue .icon i {
    color: var(--Fourth)
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login .image {
    width: 41px;
    height: 41px
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login .name {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary)
}

#header_main .header-inner .header-inner-wrap .mobile-button {
    display: none;
    width: 23px;
    height: 10px;
    position: relative
}

#header_main .header-inner .header-inner-wrap .mobile-button::before,
#header_main .header-inner .header-inner-wrap .mobile-button::after {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 2px;
    background-color: var(--Secondary)
}

#header_main .header-inner .header-inner-wrap .mobile-button::before {
    top: 0
}

#header_main .header-inner .header-inner-wrap .mobile-button::after {
    bottom: 0
}

#header_main.is-fixed {
    position: fixed !important;
    padding: 0;
    top: -100%;
    inset-inline-start: 0;
    width: 100%;
    z-index: 9999;
    border: none;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease
}

#header_main.is-fixed.is-small {
    top: 0
}

#header_main.is-fixed.is-small .header-inner {
    padding-top: 0 !important
}

#header_main.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: var(--White)
}

#header_main.is-fixed.type-home1.is-small {
    top: 20px
}

#header_main.style-absolute {
    position: absolute;
    width: 100%
}

#header_main.style-no-bg .header-inner .header-inner-wrap {
    background-color: #fff0;
    border: 0
}

#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: var(--Secondary)
}

#header_main.style-no-bg .header-inner .header-inner-wrap .main-menu ul.navigation>li::after {
    bottom: 29px;
    height: 2px
}

#header_main.type-home2 .header-inner .header-inner-wrap {
    background-color: var(--White)
}

#header_main.type-home3 {
    border-bottom: 1px solid rgb(151 170 190 / .5)
}

#header_main.type-home3 .header-inner {
    padding: 0 !important
}

#header_main.type-home3 .header-inner .header-inner-wrap {
    padding-inline-start: 60px;
    padding-inline-end: 60px;
    border-radius: 0
}

#header_main.type-home3 .header-inner .header-inner-wrap #site-logo {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#header_main.type-home3 .header-inner .header-inner-wrap .main-menu .navigation {
    margin-inline-start: 0
}

#header_main.type-home3 .header-inner .header-inner-wrap .main-menu .navigation>li>a {
    line-height: 81px
}

#header_main.type-home3 .header-inner .header-inner-wrap .main-menu .navigation>li .mega-menu {
    inset-inline-start: 0;
    transform: translateY(10px)
}

#header_main.type-home3 .header-inner .header-inner-wrap .main-menu .navigation>li:hover .mega-menu {
    transform: translateY(0)
}

#header_main.type-home3.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: var(--White)
}

#header_main.type-home4 .header-inner {
    padding: 10px 20px 0 20px !important
}

#header_main.type-home4.is-fixed.is-small {
    background-color: var(--White);
    border: 1px solid var(--Border)
}

#header_main.type-home4.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: #fff0
}

#header_main.type-home6 .header-inner {
    padding: 10px 20px 0 20px !important
}

#header_main.type-home6.is-fixed.is-small {
    background-color: var(--Secondary);
    border: 0;
    border-bottom: 1px solid var(--Border)
}

#header_main.type-home6.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: #fff0
}

#header_main.type-home8 .header-inner {
    padding: 0 20px 0 20px !important
}

#header_main.type-home8 .header-inner .header-inner-wrap .main-menu ul.navigation>li>a {
    line-height: 81px
}

#header_main.type-home8.is-fixed.is-small {
    background-color: var(--White);
    border: 0;
    border-bottom: 1px solid var(--Border)
}

#header_main.type-home8.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: #fff0
}

#header_main.type-home10 .header-inner {
    padding: 10px 20px 0 20px !important
}

#header_main.type-home10.is-fixed.is-small {
    background-color: var(--Secondary);
    border: 0
}

#header_main.type-home10.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: #fff0
}

#header_main.style-bg-white .header-inner {
    padding: 40px 40px 0 40px !important
}

#header_main.style-bg-white .header-inner .header-inner-wrap {
    border-radius: 120px;
    padding-inline-end: 20px
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation {
    gap: 50px
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li::after {
    display: none
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li::before {
    position: absolute;
    content: "";
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: 41px;
    border-radius: 120px;
    background-color: unset;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li.current::before,
#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover::before {
    background-color: var(--Primary)
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li>a {
    position: relative;
    line-height: 79px
}

#header_main.style-container .header-inner .header-inner-wrap {
    width: 100%;
    max-width: 1400px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    padding-inline-start: 0;
    padding-inline-end: 0
}

#header_main.style-container .header-inner .header-inner-wrap .main-menu {
    flex-grow: 1
}

#header_main.style-container .header-inner .header-inner-wrap .main-menu .navigation {
    margin-inline-start: 60px;
    justify-content: start
}

#header_main.style-fixed {
    position: fixed;
    width: 100%;
    inset-inline-start: 0;
    top: 0 !important;
    background-color: #F9F9F9
}

#header_main.style-fixed.none-bg {
    background-color: var(--White)
}

.mm-wrapper--position-left .mm-slideout,
.mm-wrapper--position-right .mm-slideout {
    transform: none
}

#menu {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary) !important;
    background-color: var(--White) !important
}

#menu>a.close {
    position: absolute;
    top: 10px;
    inset-inline-start: unset;
    inset-inline-end: 20px;
    width: 40px;
    height: 40px;
    background-color: #F9F9F9;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}

#menu>a.close i {
    font-size: 10px;
    color: var(--Secondary)
}

#menu .mm-panels {
    background-color: var(--White) !important
}

#menu .mm-panels .mm-panel {
    background-color: var(--White) !important
}

#menu .mm-panels .mm-panel .mm-navbar {
    background-color: var(--White) !important;
    border-bottom: 1px solid var(--Border) !important
}

#menu .mm-panels .mm-panel .mm-navbar .mm-navbar__title {
    justify-content: start;
    padding: 10px 20px;
    height: 60px;
    color: var(--Secondary) !important
}

#menu .mm-panels .mm-panel .mm-listview {
    padding: 30px 20px
}

#menu .mm-panels .mm-panel .mm-listview .current {
    background-color: #F9F9F9;
    border-radius: 12px
}

#menu .mm-panels .mm-panel .mm-listview .mm-listitem .mm-btn {
    height: 51px
}

#menu .mm-panels .mm-panel .mm-listview .mm-listitem .mm-btn::after {
    border-color: var(--Secondary)
}

#menu .mm-panels .mm-panel .mm-listview .mm-listitem::after {
    display: none
}

@media (min-width:992px) {
    #menu {
        display: none
    }
}

.tf-button-default {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid var(--Secondary);
    border-radius: 120px;
    color: var(--Secondary);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tf-button-default:hover {
    background-color: var(--Secondary);
    color: var(--White)
}

.tf-button-default.style-white {
    color: var(--White);
    border-color: var(--White)
}

.tf-button-default.style-white:hover {
    background-color: var(--White);
    color: var(--Secondary)
}

.tf-button-default.style-blue {
    background-color: var(--White);
    border-color: var(--Fourth);
    color: var(--Fourth)
}

.tf-button-default.style-blue:hover {
    color: var(--White);
    background-color: var(--Fourth)
}

.tf-button-default.style-blue.active {
    color: var(--White);
    background-color: var(--Fourth)
}

.tf-button-default.style-blue.active:hover {
    background-color: #112e29
}

.tf-button-default.type-1 {
    background-color: #F7F6F7;
    border-color: #F7F6F7
}

.tf-button-default.type-1:hover {
    background-color: var(--Secondary);
    color: var(--White)
}

.tf-button-no-bg {
    position: relative;
    width: max-content;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--Secondary);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tf-button-no-bg i {
    font-size: 18px
}

.tf-button-no-bg:hover i {
    animation: 0.3s link-icon linear;
    color: var(--Primary)
}

.tf-button-no-bg.style-white {
    color: var(--White)
}

.tf-button-no-bg.style-white i {
    color: var(--White)
}

.tf-button-bg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 44px;
    padding: 13px 30px;
    background-color: rgb(255 255 255 / .0509803922);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--White)
}

.tf-button-bg:hover {
    background-color: rgb(255 255 255 / .2509803922)
}

.tf-button-bg.type-secondary {
    background-color: var(--Secondary) !important
}

.tf-button-green {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    background-color: var(--Fourth);
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--White)
}

.tf-button-green i {
    font-size: 16px
}

.tf-button-green:hover {
    background-color: #1e302d;
    color: var(--White)
}

.tf-button-primary {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 10px;
    padding: 18px 26px;
    border-radius: 12px;
    border: 0;
    background-color: #E7C873;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tf-button-primary i {
    font-size: 18px
}

.tf-button-primary.active,
.tf-button-primary:hover {
    background-color: #D9B75A;
    color: var(--Secondary)
}

.tf-button-primary.active i,
.tf-button-primary:hover i {
    animation: 0.3s link-icon linear
}

.tf-button-primary.style-green {
    background-color: #254EF0;
    color: var(--White)
}

.tf-button-primary.style-green:hover {
    background-color: #0a36e1
}

.tf-button-primary.style-blue {
    background-color: var(--Fourth);
    color: var(--White)
}

.tf-button-primary.style-blue:hover {
    background-color: #112e29
}

.tf-button-primary.style-bg-white {
    background-color: var(--White);
    border: 1px solid var(--Primary)
}

.tf-button-primary.style-bg-white.active,
.tf-button-primary.style-bg-white:hover {
    background-color: rgb(217 183 90 / .0509803922)
}

.tf-button-primary.style-black {
    background-color: var(--Secondary);
    color: var(--White)
}

.tf-button-primary.style-black.active,
.tf-button-primary.style-black:hover {
    background-color: var(--Fourth)
}

.tf-button-primary.type-1 {
    padding: 17px 26px;
    border: 1px solid var(--Secondary);
    border-radius: 120px
}

.tf-button-filter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border: 1px solid var(--Border);
    border-radius: 12px;
    color: var(--Secondary);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tf-button-filter i {
    font-size: 18px
}

.tf-button-filter.border-radius {
    border-radius: 120px
}

.button-arrow-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--White);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.button-arrow-right i {
    font-size: 18px;
    color: var(--Secondary)
}

.button-arrow-inset-inline-end:hover i {
    animation: 0.3s link-icon linear
}

.button-arrow-right.style-third {
    background-color: var(--Third)
}

.button-arrow-right.style-third i {
    color: var(--White)
}

.tf-button-icon-before {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline-end: 20px;
    gap: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Secondary);
    position: relative
}

.tf-button-icon-before::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    width: 50px;
    height: 50px;
    background-color: var(--White);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0
}

.tf-button-icon-before span {
    position: relative
}

.tf-button-icon-before i {
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: var(--Secondary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tf-button-icon-before:hover i {
    color: var(--Primary)
}

.tf-button-icon-before:hover::before {
    width: 100% !important
}

.tf-button-icon-before.style-1 {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    gap: 10px;
    padding-inline-end: 0
}

.tf-button-icon-before.style-1 i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 40px;
    background-color: #F9F9F9
}

.tf-button-icon-before.style-1 .title {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px
}

.tf-button-icon-before.style-1:hover {
    color: var(--Third)
}

.tf-button-icon-before.style-1:hover i {
    color: var(--Third)
}

.tf-button-other {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: var(--Secondary)
}

.tf-button-other .icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background-color: var(--White);
    border: 1px solid var(--Border);
    position: relative
}

.tf-button-other .icon::after {
    position: absolute;
    content: "";
    top: 50%;
    inset-inline-start: 50%;
    background-color: var(--Secondary);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 1px
}

.tf-button-other .icon::before {
    position: absolute;
    content: "";
    top: 50%;
    inset-inline-start: 50%;
    background-color: var(--Secondary);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 8px;
    width: 1px
}

form {
    position: relative;
    z-index: 30
}

form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 28px;
    background-color: var(--White);
    border: 1px solid #E1E1E1;
    border-radius: 12px;
    color: var(--Secondary);
    overflow: hidden;
    margin-bottom: 0
}

form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary)
}

form textarea.style-1,
form input[type=text].style-1,
form input[type=password].style-1,
form input[type=datetime].style-1,
form input[type=datetime-local].style-1,
form input[type=date].style-1,
form input[type=month].style-1,
form input[type=time].style-1,
form input[type=week].style-1,
form input[type=number].style-1,
form input[type=email].style-1,
form input[type=url].style-1,
form input[type=search].style-1,
form input[type=tel].style-1,
form input[type=color].style-1 {
    height: 44px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background-color: #fff0;
    color: var(--White)
}

form textarea.style-1::placeholder,
form input[type=text].style-1::placeholder,
form input[type=password].style-1::placeholder,
form input[type=datetime].style-1::placeholder,
form input[type=datetime-local].style-1::placeholder,
form input[type=date].style-1::placeholder,
form input[type=month].style-1::placeholder,
form input[type=time].style-1::placeholder,
form input[type=week].style-1::placeholder,
form input[type=number].style-1::placeholder,
form input[type=email].style-1::placeholder,
form input[type=url].style-1::placeholder,
form input[type=search].style-1::placeholder,
form input[type=tel].style-1::placeholder,
form input[type=color].style-1::placeholder {
    color: var(--White)
}

form textarea.style-2,
form input[type=text].style-2,
form input[type=password].style-2,
form input[type=datetime].style-2,
form input[type=datetime-local].style-2,
form input[type=date].style-2,
form input[type=month].style-2,
form input[type=time].style-2,
form input[type=week].style-2,
form input[type=number].style-2,
form input[type=email].style-2,
form input[type=url].style-2,
form input[type=search].style-2,
form input[type=tel].style-2,
form input[type=color].style-2 {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 30px;
    height: 70px;
    border-radius: 70px;
    background-color: var(--White)
}

form textarea.style-2::placeholder,
form input[type=text].style-2::placeholder,
form input[type=password].style-2::placeholder,
form input[type=datetime].style-2::placeholder,
form input[type=datetime-local].style-2::placeholder,
form input[type=date].style-2::placeholder,
form input[type=month].style-2::placeholder,
form input[type=time].style-2::placeholder,
form input[type=week].style-2::placeholder,
form input[type=number].style-2::placeholder,
form input[type=email].style-2::placeholder,
form input[type=url].style-2::placeholder,
form input[type=search].style-2::placeholder,
form input[type=tel].style-2::placeholder,
form input[type=color].style-2::placeholder {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px
}

form textarea.style-3,
form input[type=text].style-3,
form input[type=password].style-3,
form input[type=datetime].style-3,
form input[type=datetime-local].style-3,
form input[type=date].style-3,
form input[type=month].style-3,
form input[type=time].style-3,
form input[type=week].style-3,
form input[type=number].style-3,
form input[type=email].style-3,
form input[type=url].style-3,
form input[type=search].style-3,
form input[type=tel].style-3,
form input[type=color].style-3 {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    padding: 0 56px;
    height: 55px;
    border-radius: 70px;
    background-color: var(--White)
}

form textarea.style-3::placeholder,
form input[type=text].style-3::placeholder,
form input[type=password].style-3::placeholder,
form input[type=datetime].style-3::placeholder,
form input[type=datetime-local].style-3::placeholder,
form input[type=date].style-3::placeholder,
form input[type=month].style-3::placeholder,
form input[type=time].style-3::placeholder,
form input[type=week].style-3::placeholder,
form input[type=number].style-3::placeholder,
form input[type=email].style-3::placeholder,
form input[type=url].style-3::placeholder,
form input[type=search].style-3::placeholder,
form input[type=tel].style-3::placeholder,
form input[type=color].style-3::placeholder {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px
}

form textarea.style-4,
form input[type=text].style-4,
form input[type=password].style-4,
form input[type=datetime].style-4,
form input[type=datetime-local].style-4,
form input[type=date].style-4,
form input[type=month].style-4,
form input[type=time].style-4,
form input[type=week].style-4,
form input[type=number].style-4,
form input[type=email].style-4,
form input[type=url].style-4,
form input[type=search].style-4,
form input[type=tel].style-4,
form input[type=color].style-4 {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    padding: 0 30px;
    height: 70px;
    border: 0;
    border-radius: 70px;
    color: var(--White);
    background-color: rgb(255 255 255 / .1019607843)
}

form textarea.style-4::placeholder,
form input[type=text].style-4::placeholder,
form input[type=password].style-4::placeholder,
form input[type=datetime].style-4::placeholder,
form input[type=datetime-local].style-4::placeholder,
form input[type=date].style-4::placeholder,
form input[type=month].style-4::placeholder,
form input[type=time].style-4::placeholder,
form input[type=week].style-4::placeholder,
form input[type=number].style-4::placeholder,
form input[type=email].style-4::placeholder,
form input[type=url].style-4::placeholder,
form input[type=search].style-4::placeholder,
form input[type=tel].style-4::placeholder,
form input[type=color].style-4::placeholder {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--White)
}

form textarea.style-default,
form input[type=text].style-default,
form input[type=password].style-default,
form input[type=datetime].style-default,
form input[type=datetime-local].style-default,
form input[type=date].style-default,
form input[type=month].style-default,
form input[type=time].style-default,
form input[type=week].style-default,
form input[type=number].style-default,
form input[type=email].style-default,
form input[type=url].style-default,
form input[type=search].style-default,
form input[type=tel].style-default,
form input[type=color].style-default {
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background-color: #fff0
}

form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
    padding: 14px 22px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 20px;
    background-color: var(--White);
    border-radius: 12px;
    color: var(--Secondary);
    overflow: hidden;
    display: inline-block;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative
}

form textarea {
    height: 200px !important
}

form .cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%
}

form .cols.cols-two>* {
    width: 50%
}

form .style-absolute-right {
    position: absolute;
    top: 50%;
    inset-inline-end: 0;
    z-index: 5;
    transform: translateY(-50%)
}

form .style-absolute-right-center {
    position: absolute;
    top: 50%;
    inset-inline-end: 19px;
    z-index: 5;
    transform: translateY(-50%)
}

form .style-absolute-left-center {
    position: absolute;
    top: 50%;
    inset-inline-start: 25px;
    z-index: 5;
    transform: translateY(-50%)
}

form .style-icon-default {
    padding: 0;
    background-color: #fff0;
    border: 0;
    font-size: 17px
}

form .style-icon-bg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 5px;
    background-color: var(--Primary);
    border: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

form .style-icon-bg i {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 20px
}

form .style-icon-bg:hover {
    background-color: #D9B75A
}

form.style-line-bottom {
    padding-bottom: 13px;
    border-bottom: 1px solid rgb(255 255 255 / .1019607843)
}

form.form-search .button-submit button i {
    font-size: 17px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

form.form-search .button-submit button:hover i {
    color: var(--Primary)
}

form .style-subscribe {
    background-color: unset;
    border-radius: 0;
    padding: 0;
    border-inline-start: 1px solid rgb(255 255 255 / .1019607843);
    padding-inline-start: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    color: var(--White)
}

form .style-subscribe i {
    font-size: 19px
}

form .style-subscribe.type-secondary {
    color: var(--Secondary)
}

form.form-subscribe input {
    padding-inline-end: 160px !important
}

form.form-style-fourth {
    border: 0 !important;
    border-radius: 120px;
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .05) !important
}

form.form-style-fourth input {
    border: 0 !important;
    color: var(--Fourth)
}

form.form-style-fourth input::placeholder {
    color: var(--Fourth)
}

form.form-style-fourth .button-submit button {
    background-color: var(--Fourth);
    color: var(--White)
}

fieldset {
    margin-bottom: 0;
    width: 100%
}

fieldset.phone {
    position: relative
}

fieldset.phone::after {
    position: absolute;
    content: "";
    border-radius: 12px;
    width: 40px;
    top: 1px;
    bottom: 1px;
    inset-inline-end: 1px;
    background-color: var(--White)
}

.form-style-has-title {
    position: relative
}

.form-style-has-title .title {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: #969696;
    margin-bottom: 4px
}

.form-style-has-title .nice-select {
    padding: 0;
    border: 0 !important;
    background-color: #fff0
}

.form-style-has-title .nice-select::after {
    inset-inline-end: 3px;
    margin-top: -8px
}

.form-style-has-title .nice-select ul.list {
    width: 300px
}

.form-style-has-title .box-content-search {
    width: 540px
}

form.background-secondary {
    background-color: var(--Secondary) !important
}

form.background-secondary .divider-1 {
    background-color: rgb(255 255 255 / .15) !important
}

form.background-secondary input {
    color: var(--White) !important
}

form.background-secondary input::placeholder {
    color: var(--White) !important
}

form.background-secondary i {
    color: var(--White) !important
}

form.background-secondary .wg-filter>.tf-button-filter {
    color: var(--White) !important;
    border-color: rgb(255 255 255 / .15) !important
}

.form-search-home3 {
    position: relative;
    z-index: 20;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border-radius: 120px;
    background-color: var(--White);
    text-align: start
}

.form-search-home3>div:nth-child(1) {
    width: 174px
}

.form-search-home3>div:nth-child(1) {
    width: 174px
}

.form-search-home3>div:nth-child(3) {
    width: 130px
}

.form-search-home3>div:nth-child(4) {
    width: 107px
}

.form-search-home3 .button-submit button {
    padding: 19px 22px;
    background-color: #254EF0;
    width: 100%;
    color: var(--White);
    border-radius: 120px;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px
}

.form-search-home3 .nice-select>ul {
    width: 300px !important
}

.form-search-home3 .box-content-search {
    width: 540px
}

.form-search-home3 .wg-filter {
    position: unset
}

.form-search-home5 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 40px;
    padding: 19px 20px 19px 30px;
    border-radius: 12px;
    background-color: var(--White);
    z-index: 50 !important
}

.form-search-home5>.list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-grow: 1;
    gap: 30px;
    margin-top: 7px
}

.form-search-home5>.list>.divider-1 {
    background-color: var(--Border);
    width: 1px
}

.form-search-home5>.list .group-form {
    width: 152px
}

.form-search-home5>.list .group-form.form-search-content {
    width: 326px
}

.form-search-home5 .button-submit button {
    padding: 19px 30px;
    background-color: var(--Primary);
    width: 100%;
    color: var(--Secondary);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px
}

.form-search-home5 .wg-filter {
    position: unset
}

.form-search-home5.background-secondary .wg-filter input {
    color: var(--Secondary) !important
}

.form-search-home5.background-secondary .wg-filter input::placeholder {
    color: var(--Secondary) !important
}

.form-search-home6 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding: 20px 20px 20px 30px;
    border-radius: 0;
    background-color: var(--White)
}

.form-search-home6>.list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-grow: 1;
    gap: 30px;
    margin-top: 7px
}

.form-search-home6>.list>.divider-1 {
    background-color: var(--Border);
    width: 1px
}

.form-search-home6>.list .group-form {
    width: 172px
}

.form-search-home6>.list .group-form.form-search-content {
    width: 356px
}

.form-search-home6 .wg-filter .tf-button-filter {
    border-radius: 0
}

.form-search-home6 .button-submit button {
    padding: 19px 30px;
    background-color: var(--Primary);
    width: 100%;
    color: var(--Secondary);
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px
}

.form-search-home6 .wg-filter {
    position: unset
}

.form-search-home9 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border-radius: 24px;
    background-color: var(--White)
}

.form-search-home9>.list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-top: 0
}

.form-search-home9>.list>.divider-1 {
    background-color: var(--Border);
    width: 1px
}

.form-search-home9>.list .group-form {
    width: 100%;
    padding: 18px 30px 11px;
    border: 1px solid var(--Border);
    border-radius: 12px
}

.form-search-home9 .button-submit {
    width: 100%
}

.form-search-home9 .button-submit button {
    width: 100%;
    height: 78px
}

.form-search-home9 .wg-filter {
    position: unset
}

.form-sidebar-left {
    padding: 30px;
    background-color: #F9F9F9;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 390px
}

.form-sidebar-left .input-search {
    width: 100%
}

.form-sidebar-left .nice-select>.list {
    max-width: unset;
    width: 100%
}

.has-top-title {
    position: relative
}

.has-top-title textarea:valid,
.has-top-title input:valid {
    border: 1px solid var(--Secondary) !important
}

.has-top-title textarea:valid~label,
.has-top-title input:valid~label {
    opacity: 1;
    visibility: visible
}

.has-top-title textarea[type=email].has-value,
.has-top-title input[type=email].has-value {
    border: 1px solid var(--Secondary) !important
}

.has-top-title textarea[type=email].has-value~label,
.has-top-title input[type=email].has-value~label {
    opacity: 1;
    visibility: visible
}

.has-top-title textarea~label,
.has-top-title input~label {
    position: absolute;
    width: unset;
    height: 15px;
    top: -8px;
    inset-inline-start: 10px;
    padding: 2px 10px 2px 10px;
    color: var(--Secondary);
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    text-align: start;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 3
}

.has-top-title textarea~label::before,
.has-top-title input~label::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--White);
    top: 50%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1
}

.form-shop-checkout .nice-select>.list {
    max-width: unset
}

.main-content {
    padding-bottom: 200px
}

.main-content.pt-200 {
    padding-top: 200px
}

.main-content.style-1 {
    padding-bottom: 156px
}

.main-content.spacing-20 {
    padding: 20px
}

.main-content.default {
    padding-bottom: 0
}

.main-content.px-110 {
    padding-inline-start: 110px;
    padding-inline-end: 110px
}

.main-content.px-60 {
    padding-inline-start: 60px;
    padding-inline-end: 60px
}

.main-content.px-20 {
    padding-inline-start: 20px;
    padding-inline-end: 20px
}

.footer {
    padding: 0 20px 20px 20px
}

.footer #logo-footer {
    width: 200px;
    height: 56px
}

.footer .footer-inner {
    background-color: var(--Secondary);
    border-radius: 24px;
    padding: 50px 20px 40px 20px
}

.footer .footer-inner .footer-inner-wrap {
    width: 100%;
    max-width: 1680px;
    margin: auto
}

.footer .footer-inner .footer-inner-wrap .top-footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 41px;
    border-bottom: 1px solid rgb(255 255 255 / .1019607843)
}

.footer .footer-inner .footer-inner-wrap .top-footer .wg-social {
    margin-top: 2px
}

.footer .footer-inner .footer-inner-wrap .center-footer {
    padding-top: 95px;
    padding-bottom: 87px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.footer .footer-inner .footer-inner-wrap .center-footer .ft-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: #fff;
    opacity: .5;
    margin-bottom: 42px
}

.footer .footer-inner .footer-inner-wrap .center-footer .navigation-menu-footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.footer .footer-inner .footer-inner-wrap .center-footer .navigation-menu-footer li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 35px;
    color: #fff
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-1 {
    width: 100%;
    max-width: 400px
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-3 .ft-title,
.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-2 .ft-title {
    margin-bottom: 30px
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-4 {
    width: 122px
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-4 .ft-title {
    margin-bottom: 34px
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-5 {
    width: 171px
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-5 .ft-title {
    margin-bottom: 34px
}

.footer .footer-inner .footer-inner-wrap .center-footer form {
    margin-bottom: 42px
}

.footer .footer-inner .footer-inner-wrap .center-footer form .button-submit {
    top: 0 !important;
    transform: none !important
}

.footer .footer-inner .footer-inner-wrap .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #fff
}

.footer .footer-inner .footer-inner-wrap.style-container {
    max-width: 1400px
}

.footer .bottom-footer {
    padding-top: 43px;
    border-top: 1px solid rgb(255 255 255 / .1019607843);
    text-align: center
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer {
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 18px
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer .icon {
    width: 60px !important;
    height: 60px;
    background-color: #254EF0;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer .icon i {
    font-size: 30px;
    color: var(--White)
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer h2 {
    color: var(--White);
    margin-bottom: -4px
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer p {
    color: var(--White);
    margin-bottom: 26px
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form {
    width: 100%;
    max-width: 567px
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form input {
    height: 60px !important
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form .button-submit {
    inset-inline-end: 30px
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form .style-absolute-right-center {
    top: 50% !important;
    transform: translateY(-50%) !important
}

.footer.style-1 .bottom-footer {
    border: none;
    background-color: #222121;
    padding-top: 30px;
    padding-bottom: 29px
}

.footer.style-1 .bottom-footer .inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer.style-1 .bottom-footer p {
    color: var(--White)
}

.footer.style-1 .bottom-footer .list-social {
    gap: 32px
}

.footer.style-1.bg-fourth .footer-inner {
    background-color: var(--Fourth)
}

.footer.style-1.bg-fourth .footer-inner .footer-inner-wrap .center-footer .icon {
    background-color: var(--Primary)
}

.footer.style-1.bg-fourth .footer-inner .footer-inner-wrap .center-footer .icon i {
    color: var(--Fourth)
}

.footer.style-1.bg-fourth .bottom-footer {
    background-color: var(--Text)
}

.footer.style-1.background-white .footer-inner {
    background-color: var(--White)
}

.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer .icon {
    background-color: var(--Primary)
}

.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer .icon i {
    color: var(--Fourth)
}

.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer h2,
.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer p {
    color: var(--Secondary)
}

.footer.style-1.background-white .bottom-footer {
    background-color: #f9f9f9
}

.footer.style-1.background-white .bottom-footer p {
    color: var(--Secondary)
}

.footer.style-1.background-white.type-1 .footer-inner {
    background-color: #F9F9F9
}

.footer.style-1.background-white.type-1 .bottom-footer {
    background-color: #F2F1F1
}

.footer.style-full {
    padding: 0
}

.footer.style-full .footer-inner {
    border-radius: 0
}

.footer.style-fourth .footer-inner {
    background-color: var(--Fourth)
}

.footer.bg-white .footer-inner {
    background-color: var(--White)
}

.footer.bg-white .footer-inner .footer-inner-wrap .top-footer {
    border-color: var(--Border)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer form {
    border-color: var(--Fourth)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer form input {
    color: var(--Fourth)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer form input::placeholder {
    color: var(--Fourth)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer form .button-submit button {
    background-color: var(--Fourth);
    color: var(--White)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer .icon {
    background-color: var(--Primary)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer .icon i {
    color: var(--White)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer .ft-title {
    color: var(--Secondary);
    opacity: 1
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer .text {
    color: var(--Fourth)
}

.footer.bg-white .footer-inner .footer-inner-wrap .center-footer .navigation-menu-footer li a {
    color: var(--Fourth)
}

.footer.bg-white .bottom-footer {
    background-color: var(--White);
    border-color: var(--Border)
}

.footer.bg-white .bottom-footer .text {
    color: var(--Fourth)
}

.footer.type-home8 {
    padding-inline-start: 60px;
    padding-inline-end: 60px;
    padding-bottom: 60px
}

.footer.type-home8 .footer-inner {
    background-color: #F9F9FB
}

.footer.type-home8 .bottom-footer {
    background-color: #F9F9FB
}

.blog-single-wrap .image-head {
    margin-bottom: 40px
}

.blog-single-wrap .image-head img {
    width: 100%;
    border-radius: 24px
}

.blog-single-wrap .blog-single-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 51px;
    margin-bottom: 200px
}

.blog-single-wrap .blog-single-inner h2 {
    margin-bottom: 12px
}

.blog-single-wrap .blog-single-inner h4 {
    margin-bottom: 24px
}

.blog-single-wrap .blog-single-inner .grid-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.blog-single-wrap .blog-single-inner .grid-image .right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.blog-single-wrap .blog-single-inner .grid-image .image img {
    width: 100%;
    border-radius: 12px
}

.blog-single-wrap .blog-single-inner .grid-image-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.blog-single-wrap .blog-single-inner .grid-image-1 .image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px
}

.blog-single-wrap .blog-single-inner .grid-image-1 .image p {
    text-align: center
}

.blog-single-wrap .blog-single-inner .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 19px;
    gap: 20px
}

.blog-single-wrap .blog-single-inner .bottom .share {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 31px
}

.blog-single-wrap .blog-single-inner .bottom .share span {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary)
}

.blog-single-wrap .blog-single-inner .bottom .share ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px
}

.blog-single-wrap .blog-single-inner .bottom .share ul li {
    position: relative
}

.blog-single-wrap .blog-single-inner .bottom .share ul li:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--Fourth);
    inset-inline-end: -14px;
    top: 50%;
    transform: translateY(-50%)
}

.blog-single-wrap .blog-single-inner .bottom ul.tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.blog-single-wrap .blog-single-inner .bottom ul.tags li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 0 20px;
    border-radius: 8px;
    background-color: #F9F9F9;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.blog-single-wrap .blog-single-inner .box-admin {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: #F9F9F9;
    border-radius: 16px;
    padding: 40px;
    margin-top: 29px
}

.blog-single-wrap .blog-single-inner .box-admin .image {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.blog-single-wrap .blog-single-inner .box-admin .content .name {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 5px
}

.blog-single-wrap .blog-single-inner .nav-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px
}

.blog-single-wrap .blog-single-inner .nav-links>svg {
    margin-inline-end: 13px
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation>a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Secondary);
    border-radius: 40px;
    width: 60px;
    height: 39px;
    margin-top: 5px
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation>a i {
    font-size: 18px
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation .content .title-post {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 3px
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation.next-post .content {
    text-align: end
}

.reviews-wrap {
    margin-top: 20px
}

.reviews-wrap ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.reviews-wrap ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Border)
}

.reviews-wrap ul li .image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.reviews-wrap ul li .content .ratings {
    margin-top: 14px;
    margin-bottom: 4px
}

.reviews-wrap ul li .content .name {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 5px
}

.reviews-wrap ul li .content .time {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--Secondary);
    margin-bottom: 32px
}

.leave-a-review {
    margin-top: 22px
}

.leave-a-review>div {
    margin-bottom: 28px
}

.leave-a-review>p {
    margin-bottom: 14px
}

.leave-a-review form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    flex-direction: column
}

.leave-a-review form textarea {
    height: 230px !important
}

.leave-a-review form .checkbox-item {
    margin-top: -3px;
    margin-bottom: -5px
}

.properties-cities {
    padding-top: 269px;
    padding-bottom: 0
}

.properties-cities .wrap {
    margin-top: 43px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 28px
}

.featured-properties {
    padding-top: 150px;
    padding-bottom: 169px
}

.featured-properties.style-1 {
    border-radius: 24px;
    padding-top: 190px;
    padding-bottom: 200px;
    background-color: var(--Secondary)
}

.featured-properties.style-1 .box-dream {
    max-width: 448px
}

.featured-properties.style-2 {
    background-color: #F9F9F9;
    padding-top: 200px;
    padding-bottom: 200px
}

.testimonials .testimonials-inner h2 {
    margin-top: -9px;
    margin-bottom: 34px
}

.testimonials .testimonials-inner .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--Secondary);
    margin-bottom: 34px
}

.testimonials .testimonials-inner .list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 50px
}

.testimonials .testimonials-inner .list h3 {
    margin-bottom: 3px
}

.testimonials .testimonials-inner .list p {
    margin-bottom: 6px
}

.testimonials .testimonials-inner .list .ratings i {
    font-size: 10px
}

.testimonials .testimonials-inner.style-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

.testimonials .testimonials-inner.style-row h2 {
    margin-top: 0;
    margin-bottom: 40px
}

.testimonials .bottom-wrap .swiper-button-prev,
.testimonials .bottom-wrap .swiper-button-next {
    width: 60px !important;
    height: 40px !important
}

.account-bar {
    padding-top: 91px;
    padding-bottom: 94px;
    background-color: #FFF8F6;
    border-radius: 24px
}

.account-bar h3 {
    font-size: 30px;
    margin-bottom: 17px
}

.account-bar .text {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px
}

.account-bar.style-1 {
    background-color: var(--Fourth)
}

.account-bar.style-1 h3,
.account-bar.style-1 .text {
    color: var(--White)
}

.account-bar.style-1 a {
    color: var(--Fourth)
}

.account-bar.type-container {
    background-color: unset;
    padding-top: 0;
    padding-bottom: 0
}

.account-bar.type-container .wrap {
    background-color: var(--Fourth);
    padding-top: 91px;
    padding-bottom: 94px;
    border-radius: 16px
}

.account-bar.background-secondary {
    background-color: var(--Secondary)
}

.account-bar.background-secondary h3,
.account-bar.background-secondary .text {
    color: var(--White)
}

.perfect-home .wrap-image {
    position: relative
}

.perfect-home .wrap-image>div:first-child {
    max-width: 550px
}

.perfect-home .wrap-image>div.flex .image:first-child {
    max-width: 310px
}

.perfect-home .wrap-image>div.flex .image:last-child {
    max-width: 450px
}

.perfect-home .wrap-image .image img {
    border-radius: 16px
}

.perfect-home .wrap-image .box {
    position: absolute;
    top: 223px;
    inset-inline-start: 199px;
    background-color: var(--White);
    padding: 20px 60px 20px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.perfect-home .wrap-image .box .icon {
    width: 60px;
    height: 60px;
    background-color: var(--Fourth);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.perfect-home .wrap-image .box .icon i {
    font-size: 26px;
    color: var(--White)
}

.perfect-home .content-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-inline-start: 47px;
    padding-top: 134px
}

.perfect-home .content-right h2 {
    margin-bottom: 34px
}

.perfect-home .content-right .text-content {
    margin-bottom: 36px
}

.perfect-home .content-right .list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 34px
}

.perfect-home.style-1 {
    padding-top: 198px;
    padding-bottom: 200px
}

.perfect-home.style-1 .content-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    flex-direction: column;
    padding-top: 56px;
    padding-bottom: 56px
}

.perfect-home.style-1 .content-left .box-icon {
    height: 209px
}

.perfect-home.style-1 .content-left .box-icon:nth-child(2),
.perfect-home.style-1 .content-left .box-icon:nth-child(3) {
    height: 214px
}

.perfect-home.style-1 .content-left .box-icon:nth-child(2) .icon i,
.perfect-home.style-1 .content-left .box-icon:nth-child(3) .icon i {
    font-size: 40px
}

.perfect-home.style-1 .img-right img {
    border-radius: 16px
}

.perfect-home.style-2 {
    background-color: #fff8f6
}

.perfect-home.style-2 .wrap-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.perfect-home.style-2 .wrap-image .box {
    position: unset;
    gap: 11px;
    background-color: var(--Primary);
    flex-direction: column;
    padding: 30px 30px 21px 30px;
    width: 100%;
    max-width: 209px;
    align-items: flex-start;
    margin-inline-start: auto;
    margin-top: 21px;
    margin-bottom: 73px
}

.perfect-home.style-2 .wrap-image .item-1 {
    max-width: 310px
}

.perfect-home.style-2 .wrap-image .item-2 {
    margin-top: auto;
    max-width: 400px
}

.perfect-home.style-2 .content-right {
    padding-inline-start: 0;
    padding-top: 101px
}

.perfect-home.style-2 .content-right .text-content {
    margin-bottom: 44px
}

.perfect-home.style-2 .content-right .list {
    flex-wrap: wrap;
    gap: 30px 10px;
    flex-direction: row;
    margin-bottom: 50px
}

.perfect-home.style-2 .content-right .list>* {
    max-width: 259px
}

.perfect-home.style-3 .wrap-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.perfect-home.style-3 .wrap-image .box {
    position: unset;
    gap: 11px;
    background-color: var(--Primary);
    flex-direction: column;
    padding: 30px 30px 21px 30px;
    width: 100%;
    max-width: 209px;
    align-items: flex-start;
    margin-inline-start: auto;
    margin-top: 21px;
    margin-bottom: 73px;
    border-radius: 50px 50px 16px 16px
}

.perfect-home.style-3 .wrap-image .item-1 {
    max-width: 310px
}

.perfect-home.style-3 .wrap-image .item-1 img {
    border-radius: 16px 16px 100px 100px
}

.perfect-home.style-3 .wrap-image .item-2 {
    max-width: 400px;
    margin-top: auto
}

.perfect-home.style-3 .wrap-image .item-2 img {
    border-radius: 200px 200px 16px 16px
}

.perfect-home.style-3 .content-right {
    padding-inline-start: 0;
    padding-top: 101px
}

.perfect-home.style-3 .content-right .text-content {
    margin-bottom: 44px
}

.perfect-home.style-3 .content-right .list {
    flex-wrap: wrap;
    gap: 30px 10px;
    flex-direction: row;
    margin-bottom: 50px
}

.perfect-home.style-3 .content-right .list>* {
    max-width: 259px
}

.flat-homes {
    border-radius: 24px;
    background-color: #F6F8FA
}

.flat-homes .heading-section {
    padding-inline-start: 45px
}

.flat-homes.style-1 {
    background-color: var(--White);
    padding-bottom: 0
}

.flat-cities .inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 28px;
    grid-template-rows: auto;
    grid-template-areas: "aa aa bb cc" "dd ee ff ff"
}

.flat-cities .inner .item-1 {
    grid-area: aa
}

.flat-cities .inner .item-2 {
    grid-area: bb
}

.flat-cities .inner .item-3 {
    grid-area: cc
}

.flat-cities .inner .item-4 {
    grid-area: dd
}

.flat-cities .inner .item-5 {
    grid-area: ee
}

.flat-cities .inner .item-6 {
    grid-area: ff
}

.flat-cities .inner .cities-item {
    margin-bottom: 0
}

.flat-cities .inner.style-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 28px;
    grid-template-areas: "aa bb cc" "aa dd ee"
}

.flat-cities .inner.style-1 .cities-item img {
    height: 320px
}

.flat-cities .inner.style-1 .cities-item.item-1 img {
    height: 670px
}

.flat-cities.style-1 {
    background-color: #F7F7F7;
    padding-top: 212px
}

.flat-cities.style-1 .wrap {
    padding-inline-start: 46px;
    padding-inline-end: 46px
}

.flat-cities.style-2 {
    background-color: #F7F7F7;
    padding-top: 189px;
    padding-bottom: 173px
}

.flat-cities.style-2 .cities-item img {
    height: 330px
}

.flat-cities.style-3 .inner {
    margin-bottom: 196px
}

.flat-cities.style-4 {
    padding-top: 114px;
    padding-bottom: 0
}

.flat-cities.style-4 .cities-item {
    height: 300px
}

.flat-cities.style-4 .cities-item .content {
    top: 27px;
    inset-inline-start: 30px
}

.flat-cities.style-4 .cities-item .content p {
    font-size: 13px;
    font-weight: 400;
    line-height: 15.23px;
    margin-bottom: 6px
}

.flat-cities.style-4 .cities-item .content h4 {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px
}

.flat-cities.style-4 .cities-item a {
    inset-inline-start: 30px
}

.flat-cities.style-4 .cities-item img {
    height: 300px
}

.flat-cities.style-4.py-200 {
    padding-top: 200px;
    padding-bottom: 200px
}

.exclusive-properties .inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 28px;
    grid-template-rows: auto;
    grid-template-areas: "aa aa bb cc" "dd ee ff ff"
}

.exclusive-properties .inner .item-1 {
    grid-area: aa
}

.exclusive-properties .inner .item-2 {
    grid-area: bb
}

.exclusive-properties .inner .item-3 {
    grid-area: cc
}

.exclusive-properties .inner .item-4 {
    grid-area: dd
}

.exclusive-properties .inner .item-5 {
    grid-area: ee
}

.exclusive-properties .inner .item-6 {
    grid-area: ff
}

.exclusive-properties .inner .cities-item {
    margin-bottom: 0
}

.choose-us {
    border-radius: 24px;
    background-color: var(--Primary);
    padding-bottom: 175px
}

.choose-us.style-1 {
    background-color: #FFF8F6;
    padding-bottom: 181px;
    border-radius: 16px
}

.choose-us.style-2 {
    background-color: var(--White);
    padding-bottom: 191px;
    padding-top: 231px;
    border-radius: 16px
}

.choose-us.has-bg-vector {
    position: relative
}

.choose-us.has-bg-vector::before {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    content: url(https://creativelayers.net/themes/images/section/vector-1.png)
}

.best-properties .inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 28px;
    grid-template-rows: auto;
    grid-template-areas: "aa aa dd dd" "bb cc dd dd"
}

.best-properties .inner .item-1 {
    grid-area: aa
}

.best-properties .inner .item-2 {
    grid-area: bb
}

.best-properties .inner .item-3 {
    grid-area: cc
}

.best-properties .inner .item-4 {
    grid-area: dd
}

.best-properties.style-1 {
    background-color: var(--Secondary)
}

.best-properties.style-1 .inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 28px;
    grid-template-rows: auto;
    grid-template-areas: "dd dd aa aa" "dd dd cc bb"
}

.best-properties.style-1 .inner .properties-content-default {
    background-color: var(--Primary)
}

.best-properties.style-1 .inner .properties-content-default .number,
.best-properties.style-1 .inner .properties-content-default p,
.best-properties.style-1 .inner .properties-content-default .text {
    color: var(--Secondary)
}

.best-properties.style-1.type-2D3A4F {
    background-color: #2D3A4F
}

.flat-testimonial>.divider {
    margin: 99px 0 95px 0
}

.flat-testimonial.style-1 {
    background-color: #FFF8F6;
    padding-top: 190px;
    padding-bottom: 210px
}

.flat-testimonial.style-2 {
    background-color: var(--Fourth);
    padding-top: 190px;
    padding-bottom: 198px
}

.flat-testimonial.style-2 .testimonials-inner h2,
.flat-testimonial.style-2 .testimonials-inner .text {
    color: var(--White)
}

.flat-testimonial.style-2 .testimonials-inner .list h3,
.flat-testimonial.style-2 .testimonials-inner .list p {
    color: var(--White)
}

.flat-testimonial.style-3 {
    background-color: #fdeeec;
    padding-top: 130px;
    padding-bottom: 130px
}

.flat-testimonial.style-4 {
    background-color: var(--Secondary);
    padding-top: 200px;
    padding-bottom: 199px
}

.flat-testimonial.background-secondary {
    background-color: var(--Secondary)
}

.flat-testimonial.background-secondary>.divider {
    background-color: rgb(255 255 255 / .1)
}

.flat-testimonial.background-secondary .testimonials-inner h2,
.flat-testimonial.background-secondary .testimonials-inner h3,
.flat-testimonial.background-secondary .testimonials-inner p {
    color: var(--White)
}

.flat-testimonial.style-5 {
    background-color: #F9F9F9;
    padding-top: 201px;
    padding-bottom: 191px
}

.flat-testimonial.style-5.type-1 {
    background-color: var(--White);
    padding-top: 191px
}

.flat-testimonial.style-6 {
    padding-top: 191px;
    position: relative;
    padding-bottom: 0
}

.flat-testimonial.style-6::before {
    position: absolute;
    content: "";
    top: 0;
    border-radius: 24px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 655px;
    background-color: var(--Fourth)
}

.flat-testimonial.style-6>.divider {
    background-color: rgb(255 255 255 / .1)
}

.flat-testimonial.style-6 .testimonials-inner h2,
.flat-testimonial.style-6 .testimonials-inner h3,
.flat-testimonial.style-6 .testimonials-inner p {
    color: var(--White)
}

.tab-search {
    padding-top: 194px;
    padding-bottom: 185px
}

.tab-search .widget-tabs {
    padding-inline-start: 2px
}

.flat-news {
    background-color: #F9F9F9;
    border-radius: 24px
}

.flat-news .wg-blog {
    margin-bottom: 0
}

.flat-news.style-1 {
    background-color: #fff0;
    padding-top: 150px;
    padding-bottom: 0
}

.flat-news.style-2 {
    background-color: #fff0;
    padding-top: 201px;
    padding-bottom: 199px
}

.flat-news.style-2>div:first-child {
    margin-bottom: 196px
}

.flat-news.style-3 {
    background-color: var(--White)
}

.flat-experts .wrap-experts {
    margin-bottom: 190px
}

.flat-experts.style-1 {
    padding-bottom: 190px
}

.flat-experts.style-1 .wrap-experts {
    margin-bottom: 0
}

.work-with-us {
    padding-top: 163px;
    padding-bottom: 200px
}

.work-with-us .wrap {
    margin-bottom: 190px;
    padding-inline-start: 14px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

.work-with-us .widget-tabs {
    margin-bottom: 20px
}

.work-with-us .widget-tabs .widget-menu-tab {
    margin-bottom: 50px !important
}

.work-with-us .widget-tabs .box-dream {
    margin-bottom: 30px
}

.work-with-us.style-1 {
    padding-top: 200px;
    padding-bottom: 193px
}

.work-with-us.style-1 .wrap {
    padding-inline-start: 0;
    margin-bottom: 0
}

.work-with-us.style-1 .box-icon {
    width: 100%;
    max-width: 342px
}

.work-with-us.style-2 {
    padding-top: 200px;
    padding-bottom: 190px
}

.work-with-us.style-2 .wrap {
    padding-inline-start: 0;
    margin-bottom: 0
}

.work-with-us.style-3 {
    padding-top: 202px
}

.work-with-us.style-4 {
    padding-top: 200px;
    padding-bottom: 0
}

.work-with-us.style-4 .list-item {
    border-top: 1px solid var(--Border)
}

.flat-explore {
    padding-top: 192px;
    padding-bottom: 0
}

.flat-explore .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 19px
}

.flat-explore .wrap .cities-item {
    margin-bottom: 0
}

.flat-counter {
    padding-bottom: 0
}

.flat-counter.style-1 {
    padding-top: 123px;
    padding-bottom: 115px;
    border-radius: 16px;
    background-color: var(--Primary);
    margin-inline-start: 60px;
    margin-inline-end: 60px
}

.flat-counter.style-1 .counter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    margin-top: -10px
}

.flat-counter.style-1 .counter .number-counter {
    width: max-content
}

.flat-counter.style-1 .counter .number-counter div {
    color: var(--Secondary);
    text-align: start
}

.flat-counter.style-1 .counter .number-counter p {
    color: var(--Secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.flat-counter.style-1.type-no-bg {
    padding-top: 200px;
    padding-bottom: 193px;
    background-color: #fff0
}

.flat-counter.style-1.type-no-bg .counter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px 107px
}

.flat-counter.style-1.type-no-bg .counter .number-counter {
    position: relative
}

.flat-counter.style-1.type-no-bg .counter .number-counter:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 1px;
    top: 0;
    bottom: 0;
    inset-inline-end: -50px;
    background-color: var(--Border)
}

.flat-discover .box-dream img {
    height: 300px
}

.recent-properties {
    padding-bottom: 0
}

.recent-properties .heading-section {
    padding-inline-start: 45px
}

.recent-properties .slider-recent-properties {
    padding-bottom: 75px
}

.recent-properties .slider-recent-properties.padding-bottom-80 {
    padding-bottom: 80px
}

.recent-properties.pb-200 {
    padding-bottom: 200px
}

.recent-properties.style-1 {
    padding-bottom: 200px
}

.recent-properties.style-1 .heading-section {
    padding-inline-start: 0
}

.recent-properties.style-1 .slider-recent-properties {
    padding-bottom: 55px
}

.flat-brand.bg-fourth {
    background-color: var(--Fourth);
    padding-top: 64px;
    padding-bottom: 78px
}

.flat-brand.bg-fourth p {
    margin-bottom: 60px;
    text-align: center;
    color: var(--White);
    letter-spacing: .8px
}

.flat-brand.background-secondary {
    background-color: var(--Secondary);
    padding-top: 102px;
    padding-bottom: 92px;
    border-radius: 16px
}

.flat-brand.background-secondary p {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--White)
}

.featured-categories {
    background-color: #f9f9f9;
    padding-bottom: 198px
}

.featured-categories.style-1 {
    background-color: var(--Fourth);
    border-radius: 16px;
    padding-top: 170px;
    padding-bottom: 230px
}

.featured-categories.style-1 .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 28px
}

.featured-categories.style-2 {
    background-color: #f9f9f9;
    border-radius: 0;
    padding-top: 200px;
    padding-bottom: 200px
}

.featured-categories.style-2 .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 28px
}

.featured-categories.style-3 {
    background-color: var(--White);
    padding-top: 200px;
    padding-bottom: 200px
}

.featured-categories.style-3 .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 19px
}

.featured-categories.style-3 .wrap .cities-item {
    margin-bottom: 0
}

.featured-categories.style-4 {
    background-color: #F9F9F9;
    padding-top: 100px;
    padding-bottom: 100px;
    border-radius: 24px
}

.featured-categories.style-4 .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 28px
}

.featured-categories.style-4 .wrap .cities-item {
    margin-bottom: 0
}

.flat-partner {
    padding-top: 196px;
    padding-bottom: 0
}

.flat-partner.style-1 {
    padding-top: 5px;
    padding-bottom: 199px
}

.flat-area {
    padding-top: 199px;
    padding-bottom: 0
}

.featured-listings {
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: var(--Fourth)
}

.featured-listings .slider-recent-properties>.swiper-wrapper {
    padding-bottom: 73px
}

.flat-question {
    padding-top: 200px;
    padding-bottom: 150px
}

.flat-question .flat-accordion {
    max-width: 804px;
    margin-inline-start: auto;
    margin-inline-end: auto
}

.flat-question.style-1 {
    padding-top: 100px
}

.flat-question.style-1 .widget-tabs .widget-menu-tab {
    margin-bottom: 50px
}

.finest-selection .inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-radius: 16px;
    overflow: hidden
}

.finest-selection .inner .content {
    flex-grow: 1;
    padding: 134px 120px 40px;
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.finest-selection .inner .content h2 {
    color: var(--Secondary);
    margin-bottom: 35px
}

.finest-selection .inner .content .text-content {
    color: var(--Secondary);
    margin-bottom: 40px
}

.finest-selection .inner .image {
    flex-grow: 2;
    max-width: 686px;
    height: 550px
}

.finest-selection .inner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.popular-real {
    padding-top: 0;
    padding-bottom: 0
}

.estate-agent {
    background-color: #f9f9f9
}

.estate-agent .content-left {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px
}

.estate-agent .content-left h2 {
    margin-bottom: 34px
}

.estate-agent .content-left .text-content {
    color: var(--Secondary);
    margin-bottom: 43px
}

.estate-agent .image {
    width: 100%;
    margin-inline-start: auto;
    max-width: 588px;
    height: 555px;
    position: relative
}

.estate-agent .image .box-curved-text {
    position: absolute;
    top: 118px;
    inset-inline-start: 111px;
    z-index: 2
}

.estate-agent .image .img-1 {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 1;
    border-radius: 16px;
    max-width: 310px
}

.estate-agent .image .img-2 {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    border-radius: 16px;
    max-width: 400px
}

.page-head {
    padding-top: 30px;
    padding-bottom: 20px
}

.top {
    position: relative;
    z-index: 10;
    padding-bottom: 21px
}

.top h3 {
    margin-bottom: 3px
}

.top .sub {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 886px
}

.property-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
    padding-bottom: 30px;
    width: 100%
}

.property-grid-wrap>.box-dream {
    max-width: 435px
}

.property-grid-wrap>.box-dream .image {
    margin: 0 9px
}

.property-grid-wrap>.box-dream .content {
    padding: 24px 30px 23px 30px;
    position: relative
}

.property-grid-wrap>.box-dream .content .price {
    position: absolute;
    top: 20px;
    inset-inline-end: 30px
}

.property-grid-wrap.type-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px
}

.property-grid-wrap-v2 .top {
    padding: 0;
    margin-bottom: 21px
}

.property-grid-wrap-v2 .top .sub {
    max-width: unset
}

.property-grid-wrap-v2 .box-dream {
    margin-bottom: 30px
}

.property-grid-wrap-v3 {
    padding-top: 42px
}

.property-grid-wrap-v3 .top {
    padding: 0;
    margin-bottom: 21px
}

.property-grid-wrap-v3 .top .sub {
    max-width: unset
}

.property-grid-wrap-v3 .box-dream {
    margin-bottom: 30px
}

.property-list-wrap .top {
    padding: 0;
    margin-top: -8px;
    margin-bottom: 21px
}

.property-list-wrap .top .sub {
    max-width: unset
}

.property-list-wrap .box-dream {
    margin-bottom: 30px
}

.property-list-wrap .form-sidebar-left {
    margin-bottom: 50px
}

.property-list-wrap.v1 .top>form {
    display: none
}

.property-list-wrap-v2 {
    padding-top: 50px
}

.property-list-wrap-v2 .top {
    margin-top: -8px
}

.property-list-wrap-v2 .top .sub {
    max-width: unset
}

.property-list-wrap-v2 .list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 28px;
    flex-direction: column;
    margin-bottom: 30px
}

.property-list-wrap-v3 {
    padding-top: 50px
}

.property-list-wrap-v3 .top {
    margin-top: -8px
}

.property-list-wrap-v3 .top .sub {
    max-width: unset
}

.property-list-wrap-v3 .list .box-dream {
    margin-bottom: 30px
}

.property-map-wrap-v4 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    gap: 20px
}

.property-map-wrap-v4>div {
    width: 36.7%
}

.property-map-wrap-v4>div:first-child {
    width: 62%
}

.property-map-wrap-v4 .top {
    padding-bottom: 11px
}

.property-map-wrap-v4 .list-box-dream {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 30px
}

.property-map-wrap-v4 .list-box-dream .box-dream .image {
    width: 258px;
    height: 222px
}

.property-single-wrap.v2 .head-title {
    margin-bottom: 27px
}

.property-single-wrap.v2 .thumbs-slider {
    margin-bottom: 51px
}

.property-single-wrap.v3 {
    padding-bottom: 17px
}

.property-single-wrap.v3 .wrap-gallery-image {
    margin-bottom: 43px
}

.property-single-wrap.v4 {
    padding-bottom: 79px
}

.property-single-wrap.v4>.swiper-container {
    margin-bottom: 50px
}

.property-single-wrap.v4>.swiper-container img {
    border-radius: 16px
}

.property-single-wrap.v4 .content-wrap .head-title .list-tags {
    position: unset;
    margin-bottom: 20px
}

.property-single-wrap.v5 .head-title {
    margin-bottom: 27px
}

.property-single-wrap.v5 .thumbs-slider-column {
    margin-inline-end: -13px;
    margin-bottom: 60px
}

.property-single-wrap.v5 .thumbs-slider-column .list-tags {
    top: 30px;
    inset-inline-start: 30px
}

.property-single-wrap.v5 .thumbs-slider-column img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.property-single-wrap.v5 .content-wrap>.overview h4 {
    margin-bottom: 33px;
    margin-top: -7px
}

.property-single-wrap.v5 .content-wrap>.overview .box-items {
    margin-bottom: 76px
}

.property-single-wrap.v5 .content-wrap .widget-tabs .widget-menu-tab {
    margin-bottom: 73px
}

.property-single-wrap.v5 .content-wrap .widget-tabs .widget-menu-tab .item-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding-bottom: 17px
}

.property-single-wrap.v5 .content-wrap .widget-tabs .widget-content-tab .widget-content-inner>* {
    margin-bottom: 64px
}

.property-single-wrap.v6 .head-title {
    position: absolute;
    z-index: 1;
    bottom: 42px;
    inset-inline-start: 50%;
    width: 100%;
    max-width: 1430px;
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin-bottom: 0
}

.property-single-wrap.v6 .head-title .list-icons-page {
    margin-bottom: 25px
}

.property-single-wrap.v6 .head-title .list-tags {
    margin-bottom: 20px
}

.property-single-wrap.v6 .list-icons-page.show-mobile {
    display: none
}

.property-single-wrap.v6 .slider-property-single-6 {
    margin-bottom: 50px
}

.property-single-wrap.v6 .slider-property-single-6 .swiper-item {
    position: relative
}

.property-single-wrap.v6 .slider-property-single-6 .swiper-item .image {
    position: relative
}

.property-single-wrap.v6 .slider-property-single-6 .swiper-item .image img {
    border-radius: 24px
}

.property-single-wrap.v6 .slider-property-single-6 .swiper-item .image::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgb(26 26 26 / .8) 0%, rgb(26 26 26 / .1) 31.59%, rgb(26 26 26 / .1) 72.28%, rgb(26 26 26 / .8) 100%)
}

.property-single-wrap.v6 .content-wrap>* {
    border-radius: 16px;
    border: 1px solid var(--Border);
    padding: 31px 40px 38px 40px
}

.property-single-wrap.v6 .content-wrap>*:not(:last-child) {
    margin-bottom: 30px !important
}

.property-single-wrap.v6 .content-wrap .overview h4 {
    margin-bottom: 33px
}

.property-single-wrap.v6 .content-wrap .overview .box-items {
    margin-bottom: 0
}

.property-single-wrap.v7>.page-top {
    border-radius: 24px;
    background-color: var(--White);
    margin-top: 20px;
    margin-bottom: 50px;
    padding-top: 14px;
    border: 1px solid var(--Border)
}

.property-single-wrap.v7>.page-top .head-title {
    margin-top: 13px;
    margin-bottom: 27px;
    border-top: 1px solid var(--Border);
    padding-top: 31px
}

.property-single-wrap.v7 .wrap-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    border-radius: 16px;
    overflow: hidden
}

.property-single-wrap.v7 .wrap-image .swiper-container {
    max-width: 972px;
    width: 100%
}

.property-single-wrap.v7 .wrap-image .swiper-container .swiper-item {
    height: 100%
}

.property-single-wrap.v7 .wrap-image .swiper-container .swiper-item .list-tags {
    top: 30px;
    inset-inline-start: 30px
}

.property-single-wrap.v7 .wrap-image .image {
    height: 100%
}

.property-single-wrap.v7 .wrap-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.property-single-wrap.v7 .box-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    text-align: center;
    padding-top: 36px;
    padding-bottom: 29px
}

.property-single-wrap.v7 .box-items>.item {
    width: 100%
}

.property-single-wrap.v7 .box-items>.item .icon {
    margin-bottom: 6px
}

.property-single-wrap.v7 .box-items>.item .icon i {
    font-size: 20px
}

.property-single-wrap.v7 .box-items>.item:not(:last-child) {
    border-inline-end: 1px solid var(--Border)
}

.property-single-wrap.v7 .content-wrap>* {
    border-radius: 16px;
    border: 1px solid var(--Border);
    padding: 31px 40px 38px 40px;
    background-color: var(--White)
}

.property-single-wrap.v7 .content-wrap>*:not(:last-child) {
    margin-bottom: 30px !important
}

.property-single-wrap.v7 .content-wrap .list-item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px 60px
}

.property-single-wrap.v7 .content-wrap .wrap-file-item .file-item {
    max-width: 280px
}

.property-single-wrap.v7 .content-wrap .calculator .pie-chart {
    flex-wrap: wrap
}

.property-single-wrap.v7 .content-wrap .calculator .pie-chart .wrap-note {
    padding-top: 0 !important
}

.property-single-wrap.v7 .content-wrap .calculator form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px
}

.property-single-wrap .wrap-gallery-image {
    margin-bottom: 45px
}

.property-single-wrap .head-title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 39px
}

.property-single-wrap .head-title h3 {
    margin-top: -9px;
    margin-bottom: 9px
}

.property-single-wrap .head-title .location {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px
}

.property-single-wrap .head-title .location .icon i {
    font-size: 20px;
    color: var(--Text)
}

.property-single-wrap .head-title .location .text-content {
    color: var(--Text)
}

.property-single-wrap .head-title .square {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: end;
    color: var(--Secondary);
    margin-top: -4px;
    margin-bottom: 4px
}

.property-single-wrap .head-title .price {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    text-align: end;
    color: var(--Secondary)
}

.property-single-wrap .head-title.style-white .location .icon i,
.property-single-wrap .head-title.style-white .location .text-content,
.property-single-wrap .head-title.style-white .square,
.property-single-wrap .head-title.style-white .price,
.property-single-wrap .head-title.style-white h3 {
    color: var(--White)
}

.property-single-wrap .content-wrap .box-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
    margin-bottom: 72px
}

.property-single-wrap .content-wrap .box-items .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 60px;
    padding: 20px;
    border-radius: 8px;
    background-color: #F9F9F9
}

.property-single-wrap .content-wrap .box-items .item .icon i {
    font-size: 20px;
    color: var(--Secondary)
}

.property-single-wrap .content-wrap .box-items .item .text-content {
    color: var(--Secondary)
}

.property-single-wrap .content-wrap h4 {
    margin-bottom: 24px
}

.property-single-wrap .content-wrap .tf-button-green {
    height: 40px
}

.property-single-wrap .content-wrap .desc {
    margin-bottom: 71px
}

.property-single-wrap .content-wrap .address {
    margin-bottom: 73px
}

.property-single-wrap .content-wrap .address>.flex {
    margin-bottom: 32px
}

.property-single-wrap .content-wrap .list-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 60px
}

.property-single-wrap .content-wrap .list-item .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--Border)
}

.property-single-wrap .content-wrap .list-item .item .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary)
}

.property-single-wrap .content-wrap .attachments {
    margin-bottom: 73px
}

.property-single-wrap .content-wrap .attachments h4 {
    margin-bottom: 32px
}

.property-single-wrap .content-wrap .details {
    margin-bottom: 73px
}

.property-single-wrap .content-wrap .energy {
    margin-bottom: 73px
}

.property-single-wrap .content-wrap .energy h4 {
    margin-bottom: 33px
}

.property-single-wrap .content-wrap .energy ul {
    margin-bottom: 40px
}

.property-single-wrap .content-wrap .energy ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 11px 20px;
    min-height: 51px
}

.property-single-wrap .content-wrap .energy ul li p {
    margin-inline-start: auto
}

.property-single-wrap .content-wrap .energy ul li .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary)
}

.property-single-wrap .content-wrap .energy ul li:nth-child(2n+2) {
    background-color: #F9F9F9
}

.property-single-wrap .content-wrap .features {
    margin-bottom: 67px
}

.property-single-wrap .content-wrap .features>p {
    margin-bottom: 22px
}

.property-single-wrap .content-wrap .features h5 {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px
}

.property-single-wrap .content-wrap .features .wrap-check-ellipse {
    margin-bottom: 16px
}

.property-single-wrap .content-wrap .schedule {
    margin-bottom: 72px
}

.property-single-wrap .content-wrap .schedule h4 {
    margin-bottom: 33px
}

.property-single-wrap .content-wrap .plans {
    margin-bottom: 72px
}

.property-single-wrap .content-wrap .plans h4 {
    margin-bottom: 33px
}

.property-single-wrap .content-wrap .plans .widget-tabs .widget-menu-tab {
    margin-bottom: 30px
}

.property-single-wrap .content-wrap .plans .icons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    margin-bottom: 20px
}

.property-single-wrap .content-wrap .plans .icons .item {
    width: 150px;
    height: 126px;
    padding: 28px 30px 30px 30px;
    border-radius: 16px;
    border: 1px solid var(--Border);
    color: var(--Secondary)
}

.property-single-wrap .content-wrap .plans .icons .item i {
    font-size: 24px
}

.property-single-wrap .content-wrap .plans .icons .item .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 3px;
    margin-bottom: -2px
}

.property-single-wrap .content-wrap .plans img {
    margin-top: 22px
}

.property-single-wrap .content-wrap .calculator {
    margin-bottom: 81px
}

.property-single-wrap .content-wrap .calculator .pie-chart {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 55px;
    margin-bottom: 26px
}

.property-single-wrap .content-wrap .calculator .pie-chart #morris-donut-1 {
    width: 260px;
    height: 260px
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 59px;
    padding-top: 100px
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item {
    position: relative;
    padding-inline-start: 22px
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item::before {
    position: absolute;
    content: "";
    top: 3px;
    inset-inline-start: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 4px
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item p {
    color: var(--Fourth)
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item:nth-child(1)::before {
    background-color: var(--Primary)
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item:nth-child(2)::before {
    background-color: #58A0E5
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item:nth-child(3)::before {
    background-color: #EB6E85
}

.property-single-wrap .content-wrap .calculator form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    padding-inline-end: 16px
}

.property-single-wrap .content-wrap .video {
    margin-bottom: 74px
}

.property-single-wrap .content-wrap .video h4 {
    margin-bottom: 32px
}

.property-single-wrap .content-wrap .map {
    margin-bottom: 74px
}

.property-single-wrap .content-wrap .map h4 {
    margin-bottom: 32px
}

.property-single-wrap .content-wrap .map .wrap-map-v1 {
    height: 500px;
    min-height: unset;
    padding: 0;
    margin: 0;
    border-radius: 16px
}

.property-single-wrap .content-wrap .tour {
    margin-bottom: 81px
}

.property-single-wrap .content-wrap .tour h4 {
    margin-bottom: 32px
}

.property-single-wrap .content-wrap .tour .image img {
    border-radius: 16px
}

.property-single-wrap .content-wrap .page-views {
    margin-bottom: 98px
}

.property-single-wrap .content-wrap .walk-score {
    margin-bottom: 73px
}

.property-single-wrap .content-wrap .walk-score h4 {
    margin-bottom: 32px
}

.property-single-wrap .content-wrap .nearby {
    margin-bottom: 80px
}

.property-single-wrap .content-wrap .nearby h4 {
    margin-bottom: 29px
}

.property-single-wrap .content-wrap .nearby .widget-tabs .widget-menu-tab {
    margin-bottom: 42px
}

.property-single-wrap .content-wrap .nearby .widget-tabs .widget-menu-tab .item-title {
    padding-bottom: 17px
}

.property-single-wrap .content-wrap .nearby .nearby-item h4 {
    margin-bottom: 0
}

.property-single-wrap .content-wrap .reviews-wrap {
    margin-top: 0;
    margin-bottom: 72px
}

.property-single-wrap .content-wrap .reviews-wrap .tf-button-green {
    height: 33px
}

.property-single-wrap .content-wrap .leave-a-review {
    margin-top: 0;
    margin-bottom: 72px
}

.property-single-wrap .content-wrap .smilar-homes h4 {
    margin-bottom: 33px
}

.grid-section-4 {
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-section-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px
}

.grid-section-1>.wg-box:first-child {
    width: 66%
}

.message-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px
}

.message-wrap>.wg-box.left {
    width: 27.5%;
    min-width: 300px;
    padding: 40px 39px 28px
}

.message-wrap>.wg-box.left>form {
    margin-bottom: 30px
}

.message-wrap>.wg-box.left>form input {
    height: 50px;
    border-radius: 12px
}

.message-wrap>.wg-box.left>ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 32px;
    cursor: pointer
}

.message-wrap>.wg-box.right {
    flex-grow: 1;
    padding: 21px 30px 39px
}

.message-wrap>.wg-box.right>.head {
    padding-inline-start: 11px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 19px;
    border-bottom: 1px solid #e9e9e9
}

.message-wrap>.wg-box.right>.head>a {
    font-family: "DM Sans";
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.03px;
    color: #e8543e
}

.message-wrap>.wg-box.right>.chat {
    height: 562px;
    padding-inline-start: 11px;
    padding-top: 40px;
    overflow-y: auto;
    display: none
}

.message-wrap>.wg-box.right>.chat.active-chat {
    display: block
}

.message-wrap>.wg-box.right>.chat::-webkit-scrollbar {
    width: 0
}

.message-wrap>.wg-box.right>.chat .list-message {
    margin-bottom: 15px
}

.message-wrap>.wg-box.right>.chat .list-message .name {
    margin-bottom: 0
}

.message-wrap>.wg-box.right>.chat .list-message.style-me .message-item {
    flex-direction: row-reverse
}

.message-wrap>.wg-box.right>.chat .list-message.style-me .message-item>.flex {
    flex-direction: row-reverse
}

.message-wrap>.wg-box.right>.chat .list-message.style-me .message-item>.flex>.flex {
    flex-direction: row-reverse
}

.message-wrap>.wg-box.right>.chat .bubble {
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 22px;
    word-break: break-all
}

.message-wrap>.wg-box.right>.chat .bubble.you {
    max-width: 474px
}

.message-wrap>.wg-box.right>.chat .bubble.me {
    max-width: 463px;
    margin-inline-start: auto;
    text-align: end;
    background-color: rgb(231 200 115 / .1)
}

.message-wrap>.wg-box.right>.write {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9e9e9
}

.message-wrap>.wg-box.right>.write a {
    flex-shrink: 0
}

.wg-box {
    padding: 39px;
    border-radius: 24px;
    border: 1px solid var(--Border);
    background-color: var(--White)
}

.wg-box>h4 {
    margin-bottom: 33px;
    margin-top: -8px
}

.wg-box.pl-44 {
    padding-inline-start: 44px
}

.wg-box.pr-45 {
    padding-inline-end: 45px
}

.wg-box.pr-29 {
    padding-inline-end: 29px
}

.my-profiles-wrap .avatar-image {
    margin-bottom: 40px
}

.my-profiles-wrap .form-profiles .description textarea {
    height: 230px !important
}

.my-profiles-wrap .form-profiles .wrap-map-v1 {
    height: 550px;
    min-height: 550px;
    margin: 0;
    width: 100%
}

.my-profiles-wrap .form-profiles .cols {
    justify-content: start
}

.my-profiles-wrap .form-profiles .cols.small>* {
    max-width: 300px
}

.form-bacsic-infomation textarea {
    height: 230px !important
}

.form-location .wrap-map-v1 {
    height: 550px;
    min-height: 550px;
    margin: 0;
    width: 100%
}

.form-location .cols {
    justify-content: start
}

.form-location .cols.small>* {
    max-width: 300px
}

.form-media {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 40px;
    flex-direction: column
}

.form-media .upload-image-wrap {
    margin-top: -8px
}

.form-media textarea {
    height: 230px !important
}

.form-amenities .grid-checkbox {
    max-width: 1260px;
    margin-top: -3px;
    gap: 12px 30px;
    margin-bottom: 35px
}

.form-floors {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.form-floors textarea {
    height: 230px !important
}

.form-floors .upload-image-wrap {
    margin-top: -8px
}

.grid-favorities-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 28px;
    padding-inline-end: 11px
}

.shop-list-wrap .top {
    margin-top: -9px
}

.shop-list-wrap .top .sub {
    max-width: unset
}

.shop-list-wrap .shop-item {
    margin-bottom: 26px
}

.shop-list-wrap .wg-pagination {
    margin-top: 70px
}

.shop-detail-wrap {
    padding-top: 100px
}

.shop-detail-wrap .bottom {
    padding-top: 94px;
    padding-bottom: 190px
}

.shop-detail-wrap .bottom .widget-tabs .widget-menu-tab {
    margin-bottom: 32px
}

.flat-products {
    padding-top: 0;
    padding-bottom: 0
}

.form-shop-cart .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.form-shop-cart .bottom fieldset {
    max-width: 270px
}

.form-shop-cart .bottom>a {
    border-radius: 12px;
    font-family: "DM Sans";
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;
    padding: 12px 24px
}

.sidebar-shop {
    max-width: 400px;
    margin-inline-start: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.sidebar-shop.w-420 {
    max-width: 420px
}

.sidebar-shop .title {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 13px
}

.sidebar-shop .text {
    font-size: 15px;
    font-weight: 400;
    line-height: 50px;
    color: var(--Secondary)
}

.sidebar-shop .text-1 {
    font-size: 15px;
    font-weight: 500;
    line-height: 50px;
    color: var(--Secondary)
}

.sidebar-shop .sidebar-shop-item {
    border-radius: 16px;
    padding: 32px 40px 40px 40px;
    border: 1px solid var(--Border)
}

.sidebar-shop .sidebar-shop-item.cart-totals>a {
    margin-top: 19px
}

.sidebar-shop .sidebar-shop-item.your-order .text-1 {
    line-height: 18px
}

.sidebar-shop .sidebar-shop-item.your-order .text {
    line-height: 35px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(1) {
    margin-bottom: 31px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(2) {
    margin-bottom: 13px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(3) {
    margin-bottom: 6px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(5) {
    margin-bottom: 13px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(6) {
    margin-bottom: 13px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(7) {
    margin-bottom: 17px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(8) {
    margin-bottom: 14px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(9) {
    margin-bottom: 22px
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(10) {
    margin-bottom: -5px
}

.sidebar-shop .sidebar-shop-item.payment .title {
    margin-bottom: 29px
}

.sidebar-shop .sidebar-shop-item.payment ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 10px
}

.form-shop-checkout h4 {
    margin-top: -8px;
    margin-bottom: 32px
}

.form-shop-checkout .additional {
    margin-top: 101px
}

.form-shop-checkout .additional textarea {
    height: 290px !important
}

.agency-list-wrap .form-sidebar-left {
    max-width: 390px
}

.agency-list-wrap .sidebar {
    padding-inline-start: 0;
    max-width: 390px;
    margin-top: 30px
}

.agency-list-wrap .top {
    margin-top: -8px
}

.agency-list-wrap .top .sub {
    max-width: unset
}

.agency-single-wrap .wrap-inner {
    margin-top: -7px
}

.agency-single-wrap .wrap-inner h4 {
    margin-bottom: 24px
}

.agency-single-wrap .wrap-inner>p {
    margin-bottom: 64px
}

.agency-single-wrap .wrap-inner .grid-box-dream {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 28px;
    margin-top: 32px;
    margin-bottom: 79px
}

.agency-single-wrap .wrap-inner .reviews-wrap {
    margin-bottom: 73px
}

.agency-single-wrap .wrap-inner .list-agents {
    margin-top: -7px;
    margin-bottom: 80px
}

.agency-single-wrap .wrap-inner .list-agents h4 {
    margin-bottom: 32px
}

.agency-single-wrap .sidebar {
    padding-inline-start: 0;
    max-width: 390px;
    margin-inline-start: auto
}

.vision-mission {
    padding-top: 191px;
    padding-bottom: 178px
}

.vision-mission .content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px 200px
}

.vision-mission .content>div {
    width: 100%;
    max-width: 600px
}

.vision-mission .content h2 {
    margin-bottom: 22px
}

.flat-pricing,
.flat-compare {
    padding-top: 100px
}

.send-message {
    padding-bottom: 196px
}

.send-message .heading-section {
    margin-bottom: 35px
}

.send-message form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    flex-direction: column
}

.send-message form textarea {
    height: 230px !important
}

.send-message form>.checkbox-item {
    margin-top: -3px;
    margin-bottom: -5px
}

.wg-component h4 {
    margin-bottom: 50px
}

.page-invoice {
    padding-top: 100px;
    padding-bottom: 200px;
    width: 100%;
    max-width: 1170px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    color: var(--Secondary)
}

.page-invoice .btns-print {
    margin-bottom: 36px
}

.page-invoice .btns-print a {
    margin-inline-start: auto
}

.page-invoice .wrap {
    border-radius: 24px;
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    background-color: var(--White)
}

.page-invoice .wrap .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px
}

.page-invoice .wrap>.inner {
    padding: 131px 100px 104px;
    position: relative
}

.page-invoice .wrap>.inner>.invoice {
    position: absolute;
    top: 127px;
    inset-inline-start: 751px;
    font-family: "DM Sans";
    font-size: 28px;
    font-weight: 700;
    line-height: 36.46px;
    color: var(--Secondary)
}

.page-invoice .wrap>.inner>.number {
    position: absolute;
    top: 130px;
    inset-inline-end: 95px;
    font-family: "DM Sans";
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    text-align: end;
    color: var(--Secondary)
}

.page-invoice .wrap>.inner>.logo {
    margin-bottom: 44px
}

.page-invoice .wrap>.inner>.logo img {
    width: 180px
}

.page-invoice .wrap>.inner>.infor-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 69px
}

.page-invoice .wrap>.inner>.infor-item>div:first-child {
    width: 651px;
    flex-shrink: 0
}

.page-invoice .wrap>.inner>.infor-item>div p {
    margin-bottom: 3px
}

.page-invoice .wrap>.inner>.infor-item>div h4 {
    margin-bottom: 23px
}

.page-invoice .wrap>.inner>.infor-item.item-2 {
    margin-bottom: 41px
}

.page-invoice .wrap>.inner>.infor-item.item-2 .text {
    margin-bottom: 6px
}

.page-invoice .wrap>.inner>.infor-item.item-2>div:first-child p {
    max-width: 218px
}

.page-invoice .wrap>.inner .table-total-due .title {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary)
}

.page-invoice .wrap>.inner .table-total-due>.head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 18px 87px 24px 39px;
    border-radius: 8px;
    background-color: #F9F9F9
}

.page-invoice .wrap>.inner .table-total-due>.head>div {
    width: 115px
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(1) {
    width: 438px
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(2) {
    width: 175px
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(3) {
    width: 116px
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(4) {
    text-align: end
}

.page-invoice .wrap>.inner .table-total-due>ul>li {
    height: 71px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 23px 79px 19px 39px;
    border-bottom: 1px solid var(--Border)
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div {
    width: 116px
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(1) {
    width: 440px
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(2) {
    width: 177px
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(3) {
    width: 119px
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(4) {
    text-align: end
}

.page-invoice .wrap>.inner .table-total-due>ul>li:nth-child(2) {
    height: 75px;
    padding: 17px 79px 19px 39px
}

.page-invoice .wrap>.inner .table-total-due>.total {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding: 18px 79px 18px 39px
}

.page-invoice .wrap>.inner .table-total-due>.total .title {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px
}

.page-invoice .wrap>.bottom {
    padding-top: 45px;
    padding-bottom: 43px;
    border-top: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 63px
}

.page-invoice .wrap>.bottom p {
    font-family: "DM Sans"
}

.layout-wrap {
    min-height: 100vh
}

.layout-wrap .layout-wrap-inner .section-menu-left {
    position: fixed;
    z-index: 50;
    top: 141px;
    inset-inline-start: 20px;
    bottom: 20px;
    width: 331px;
    border-radius: 24px;
    padding: 40px;
    background-color: var(--Fourth);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content {
    height: 100%;
    overflow-y: auto
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content::-webkit-scrollbar {
    width: 0
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 12px
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--White);
    padding-inline-start: 20px
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li a i {
    font-size: 20px
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li.active,
.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li:hover {
    background: rgb(255 255 255 / .0509803922)
}

.layout-wrap .layout-wrap-inner .section-content-right {
    flex-grow: 1;
    padding-inline-start: 371px;
    padding-top: 121px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.layout-wrap .layout-wrap-inner .section-content-right>h3 {
    margin-top: 31px;
    margin-bottom: 5px
}

.layout-wrap .layout-wrap-inner .section-content-right>.text-content {
    margin-bottom: 33px
}

.layout-wrap .layout-wrap-inner .section-content-right>.bottom-page {
    padding: 32px 0 11px
}

.layout-wrap .layout-wrap-inner .section-content-right>.bottom-page p {
    text-align: center
}

.layout-wrap .layout-wrap-inner .section-content-right form .nice-select>.list {
    max-width: unset
}

.btn-canvas {
    position: fixed;
    top: 141px;
    inset-inline-start: 20px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: none
}

.btn-canvas .text-content {
    display: none
}

.btn-canvas span {
    width: 23px;
    height: 10px;
    position: relative
}

.btn-canvas span::before,
.btn-canvas span::after {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.btn-canvas span::before {
    top: 0
}

.btn-canvas span::after {
    bottom: 0
}

.btn-canvas.active {
    inset-inline-start: 351px
}

.btn-canvas.active span::before {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 50%
}

.btn-canvas.active span::after {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 50%
}

.widget-tabs .widget-menu-tab {
    overflow-x: auto;
    overflow-y: hidden
}

.widget-tabs .widget-menu-tab .item-title {
    min-width: max-content
}

.widget-tabs.style-1 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin-bottom: 30px
}

.widget-tabs.style-1 .widget-menu-tab .item-title {
    padding: 10px 20px;
    border-radius: 41px;
    border: 1px solid #fff0;
    background-color: #fff0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.widget-tabs.style-1 .widget-menu-tab .item-title .inner {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Text)
}

.widget-tabs.style-1 .widget-menu-tab .item-title.active {
    border: 1px solid var(--Secondary);
    background-color: #FFF8F6
}

.widget-tabs.style-2 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 31px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 37px
}

.widget-tabs.style-2 .widget-menu-tab .item-title {
    position: relative;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: #050B20;
    padding-bottom: 12px;
    cursor: pointer
}

.widget-tabs.style-2 .widget-menu-tab .item-title::after {
    position: absolute;
    content: "";
    bottom: -1px;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: 0;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.widget-tabs.style-2 .widget-menu-tab .item-title.active::after,
.widget-tabs.style-2 .widget-menu-tab .item-title:hover::after {
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: auto
}

.widget-tabs.style-2.type-small .widget-menu-tab {
    border-bottom: 0
}

.widget-tabs.style-2.type-small .widget-menu-tab .item-title {
    font-size: 15px;
    line-height: 18px
}

.widget-tabs.style-3 .widget-menu-tab {
    padding: 7px 10px 6px;
    background-color: #f9f9f9;
    border-radius: 120px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.widget-tabs.style-3 .widget-menu-tab .item-title {
    padding: 11px 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Text);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 120px
}

.widget-tabs.style-3 .widget-menu-tab .item-title.active {
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .05)
}

.widget-tabs.style-4 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.widget-tabs.style-4 .widget-menu-tab .item-title {
    padding: 15px 35px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Text);
    border: 1px solid var(--Border);
    background-color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.widget-tabs.style-4 .widget-menu-tab .item-title:first-child {
    border-radius: 12px 0 0 12px
}

.widget-tabs.style-4 .widget-menu-tab .item-title:last-child {
    border-radius: 0 12px 12px 0
}

.widget-tabs.style-4 .widget-menu-tab .item-title.active {
    background-color: #fff8f6;
    border-color: var(--Secondary)
}

.widget-tabs.style-img {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 11px
}

.widget-tabs.style-img .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: unset
}

.widget-tabs.style-img .widget-menu-tab .item-title {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer
}

.widget-tabs.style-img .widget-menu-tab .item-title img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.widget-tabs.style-img .widget-menu-tab .item-title.active {
    border: 1px solid var(--Secondary)
}

.widget-tabs.style-img .widget-content-tab {
    width: 100%
}

.widget-tabs.style-img .widget-content-tab .widget-content-inner {
    height: 100%
}

.widget-tabs.style-img .widget-content-tab .widget-content-inner img {
    border-radius: 16px;
    width: 100%;
    max-width: 661px;
    height: 100%;
    object-fit: cover
}

.widget-tabs.style-5 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.widget-tabs.style-5 .widget-menu-tab .item-title {
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    background-color: var(--Secondary);
    color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.widget-tabs.style-5 .widget-menu-tab .item-title:first-child {
    border-radius: 12px 0 0 0
}

.widget-tabs.style-5 .widget-menu-tab .item-title:last-child {
    border-radius: 0 12px 0 0
}

.widget-tabs.style-5 .widget-menu-tab .item-title.active {
    background-color: var(--White);
    color: var(--Secondary)
}

.widget-tabs.style-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

.widget-tabs.style-row .form-search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    flex-grow: 1
}

.widget-tabs.style-row .form-search .input-search {
    position: relative;
    width: 330px;
    flex-shrink: 0;
    height: 54px
}

.widget-tabs.style-row .form-search>.nice-select {
    border-radius: 120px;
    padding: 12px 49px 12px 27px
}

.widget-tabs.style-row .form-search>.nice-select::after {
    top: 47%;
    inset-inline-end: 30px
}

.widget-tabs.style-row .form-search>.nice-select ul.list {
    width: 300px
}

.widget-tabs.style-row .widget-menu-tab {
    height: 54px
}

.widget-tabs-1.style-3 .widget-menu-tab-1 {
    padding: 7px 10px 6px;
    background-color: #f9f9f9;
    border-radius: 120px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.widget-tabs-1.style-3 .widget-menu-tab-1 .item-title-1 {
    padding: 11px 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Text);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 120px
}

.widget-tabs-1.style-3 .widget-menu-tab-1 .item-title-1.active-1 {
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .05)
}

.offcanvas-start {
    width: 370px
}

.modal-backdrop {
    display: none !important
}

.modal {
    background-color: rgb(26 26 26 / .6)
}

.modal .modal-dialog {
    min-width: 800px
}

.modal .modal-dialog .modal-content {
    position: relative;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    border: 0;
    max-width: 800px;
    overflow: hidden;
    transform: translateY(3px)
}

.modal .modal-dialog .modal-content .btn-hide-modal {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}

.modal .modal-dialog .modal-content .btn-hide-modal i {
    font-size: 12px;
    color: var(--Secondary)
}

.modal .modal-dialog .modal-content .image-left {
    width: 386px;
    flex-shrink: 0;
    position: relative
}

.modal .modal-dialog .modal-content .image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.modal .modal-dialog .modal-content .image-left h3 {
    position: absolute;
    top: 45px;
    inset-inline-start: 30px;
    inset-inline-end: 30px;
    color: var(--Secondary);
    text-align: center
}

.modal .modal-dialog .modal-content .content-right {
    padding: 78px 30px 30px 30px;
    width: 100%
}

.modal .modal-dialog .modal-content .content-right h4 {
    margin-bottom: 22px
}

.modal .modal-dialog .modal-content .content-right form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 22px
}

.modal .modal-dialog .modal-content .content-right form>.flex {
    margin-top: -3px;
    margin-bottom: -5px
}

.modal .modal-dialog .modal-content .content-right form .checkbox-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px
}

.modal .modal-dialog .modal-content .content-right form .lost-password {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Third)
}

.modal .modal-dialog .modal-content .content-right .btn-show-register {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-inline-start: 4px
}

.modal .modal-dialog .modal-content .content-right .wg-social-1 {
    gap: 20px;
    margin-top: 2px
}

.modal .modal-dialog .modal-content .content-right .wg-social-1 li a i {
    font-size: 20px
}

.modal#modalregister .modal-dialog .modal-content {
    transform: translateY(-5px)
}

.modal#modalregister .modal-dialog .modal-content .content-right {
    padding: 34px 30px 30px 30px
}

.table-compare {
    overflow-x: auto !important
}

.table-compare::-webkit-scrollbar {
    width: 0
}

.table-compare>* {
    min-width: 1400px
}

.table-compare .head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    justify-content: end;
    margin-bottom: 32px;
    padding-inline-end: 2px
}

.table-compare .head .item .image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
    max-width: 327px
}

.table-compare .head .item .image .icon {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--White);
    border-radius: 50%;
    box-shadow: 0 6px 15px 0 rgb(64 79 104 / .0509803922);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.table-compare .head .item .image .icon i {
    font-size: 16px;
    color: var(--Secondary)
}

.table-compare .head .item .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: -2px
}

.table-compare .head .item .price {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Third)
}

.table-compare ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.table-compare ul li {
    padding: 0 0 0 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
    height: 51px;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer
}

.table-compare ul li.h-58 {
    height: 58px
}

.table-compare ul li .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px
}

.table-compare ul li:nth-child(2n+1) {
    background: #F9F9F9
}

.table-compare ul li:hover {
    background-color: #c3c3c3
}

.table-compare ul li>div {
    width: 100%
}

.table-compare ul li>div:nth-child(1) {
    max-width: 298px
}

.table-compare ul li>div:nth-child(2) {
    max-width: 327px
}

.table-compare ul li>div:nth-child(3) {
    max-width: 329px
}

.table-compare ul li>div:nth-child(4) {
    max-width: 329px
}

.table-listing-properties {
    overflow-x: auto !important
}

.table-listing-properties::-webkit-scrollbar {
    width: 0
}

.table-listing-properties>* {
    min-width: 1420px
}

.table-listing-properties>.head {
    padding: 31px 53px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 53px;
    background-color: #F9F9F9
}

.table-listing-properties>.head .item {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary);
    width: 100%;
    width: 150px
}

.table-listing-properties>.head .item:first-child {
    width: 340px
}

.table-text-infor {
    overflow-x: auto !important
}

.table-text-infor::-webkit-scrollbar {
    width: 0
}

.table-text-infor>* {
    min-width: 1200px
}

.table-text-infor>.head {
    padding: 31px 54px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 53px;
    background-color: #F9F9F9
}

.table-text-infor>.head .item {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary);
    width: 100%
}

.table-text-infor>.head .item:last-child {
    width: 100px;
    flex-shrink: 0
}

.table-text-infor.no-border-bottom>ul li:last-child>div {
    border-bottom: 0
}

.table-text-infor.default>.head .item {
    width: 100% !important;
    flex-shrink: unset !important
}

.table-text-infor.default>ul li>div>div {
    width: 100% !important;
    flex-shrink: unset !important
}

.table-shop-cart {
    overflow-x: auto !important
}

.table-shop-cart::-webkit-scrollbar {
    width: 0
}

.table-shop-cart>* {
    min-width: 924px
}

.table-shop-cart>.head {
    padding: 25px 30px 27px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 0;
    background-color: #F9F9F9;
    margin-bottom: 9px
}

.table-shop-cart>.head .item {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary)
}

.table-shop-cart>.head .item:nth-child(1) {
    width: 343px
}

.table-shop-cart>.head .item:nth-child(2) {
    width: 152px
}

.table-shop-cart>.head .item:nth-child(3) {
    width: 168px
}

.table-shop-cart>.head .item:nth-child(4) {
    width: 201px
}

.table-default {
    color: var(--Secondary)
}

.table-default>.head {
    padding: 29px 36px;
    height: 70px;
    background-color: #F9F9F9;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0
}

.table-default>.head .text {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px
}

.table-default>ul li {
    padding: 0 24px;
    height: 70px;
    border-bottom: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sidebar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-inline-start: 57px
}

.sidebar .sidebar-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 14px
}

.sidebar .sidebar-item {
    background-color: #F9F9F9;
    border-radius: 16px;
    border: 1px solid var(--Border);
    padding: 23px 30px 20px
}

.sidebar .sidebar-item.no-bg {
    background-color: var(--White)
}

.sidebar .sidebar-item.sidebar-search {
    padding: 29px 30px
}

.sidebar .sidebar-item.sidebar-categories {
    padding: 23px 30px 20px
}

.sidebar .sidebar-item.sidebar-categories ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.sidebar .sidebar-item.sidebar-categories ul li {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    padding-inline-start: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.sidebar .sidebar-item.sidebar-categories ul li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.sidebar .sidebar-item.sidebar-categories ul li:hover,
.sidebar .sidebar-item.sidebar-categories ul li.active {
    padding-inline-start: 25px
}

.sidebar .sidebar-item.sidebar-categories ul li:hover::before,
.sidebar .sidebar-item.sidebar-categories ul li.active::before {
    width: 15px;
    background-color: var(--Third)
}

.sidebar .sidebar-item.sidebar-categories ul li:hover a,
.sidebar .sidebar-item.sidebar-categories ul li.active a {
    color: var(--Third)
}

.sidebar .sidebar-item.sidebar-agents {
    padding: 23px 30px 29px
}

.sidebar .sidebar-item.sidebar-agents .sidebar-title {
    margin-bottom: 22px
}

.sidebar .sidebar-item.sidebar-agents ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.sidebar .sidebar-item.sidebar-agents ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 25px
}

.sidebar .sidebar-item.sidebar-agents ul li .image {
    border-radius: 8px;
    overflow: hidden
}

.sidebar .sidebar-item.sidebar-agents ul li .image img {
    width: 90px;
    height: 90px;
    object-fit: cover
}

.sidebar .sidebar-item.sidebar-agents ul li .content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 23px
}

.sidebar .sidebar-item.sidebar-agents ul li .content .name {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px
}

.sidebar .sidebar-item.sidebar-tags {
    padding: 23px 30px 29px
}

.sidebar .sidebar-item.sidebar-tags .sidebar-title {
    margin-bottom: 22px
}

.sidebar .sidebar-item.sidebar-tags ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.sidebar .sidebar-item.sidebar-tags ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 0 20px;
    border-radius: 8px;
    background-color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px
}

.sidebar .sidebar-item.sidebar-exclusive {
    padding-bottom: 28px
}

.sidebar .sidebar-item.sidebar-exclusive .sidebar-title {
    margin-bottom: 22px
}

.sidebar .sidebar-item.sidebar-exclusive .box-dream .image .list-tags {
    top: 20px;
    inset-inline-start: 20px
}

.sidebar .sidebar-item.sidebar-exclusive .box-dream .content {
    bottom: 20px;
    inset-inline-start: 20px
}

.sidebar .sidebar-item.sidebar-agents-1 {
    padding-bottom: 28px
}

.sidebar .sidebar-item.sidebar-agents-1 .sidebar-title {
    margin-bottom: 22px
}

.sidebar .sidebar-item.sidebar-agents-1 ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.sidebar .sidebar-item.sidebar-agents-1 ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .image {
    width: 90px;
    height: 90px
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .content {
    padding-top: 5px
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .content .name {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary)
}

.sidebar .sidebar-item.sidebar-info {
    padding: 30px 30px 37px 30px
}

.sidebar .sidebar-item.sidebar-info .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px
}

.sidebar .sidebar-item.sidebar-info .image {
    width: 100%;
    height: 330px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 23px
}

.sidebar .sidebar-item.sidebar-info .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar .sidebar-item.sidebar-info .image.has-border {
    border: 1px solid var(--Border);
    margin-bottom: 21px
}

.sidebar .sidebar-item.sidebar-info>ul>li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px
}

.sidebar .sidebar-item.sidebar-info>ul>li:not(:last-child) {
    border-bottom: 1px solid var(--Border);
    margin-bottom: 12px
}

.sidebar .sidebar-item.sidebar-info>ul>li .wg-social {
    margin-top: 8px
}

.sidebar .sidebar-item.sidebar-info>ul>li .wg-social .list-social {
    gap: 13px
}

.sidebar .sidebar-item.sidebar-contact-info-1 {
    padding-bottom: 30px
}

.sidebar .sidebar-item.sidebar-contact-info-1 .sidebar-title {
    margin-bottom: 22px
}

.sidebar .sidebar-item.sidebar-contact-info-1 .form-comment {
    gap: 20px !important
}

.sidebar .sidebar-item.sidebar-contact-info-1 .form-comment textarea {
    height: 100px !important
}

.sidebar .sidebar-item.sidebar-contact-info-1 .form-comment .flex .tf-button-primary {
    height: 52px
}

.sidebar .wrap-map-v1 {
    height: 300px;
    min-height: 300px;
    margin: 0
}

.arrow-style-1 .swiper-button-next {
    inset-inline-end: 0;
    width: 70px;
    height: 46px
}

.arrow-style-1 .swiper-button-next::after {
    font-size: 12px;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.arrow-style-1 .swiper-button-prev {
    inset-inline-start: 0;
    width: 70px;
    height: 46px
}

.arrow-style-1 .swiper-button-prev::after {
    font-size: 12px;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.arrow-style-1 .has-background {
    background-color: rgb(26 26 26 / .2);
    border-radius: 30px;
    backdrop-filter: blur(10px)
}

.arrow-style-1 .has-border {
    border: 1px solid var(--Border);
    border-radius: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.arrow-style-1 .has-border::after {
    color: var(--Secondary)
}

.arrow-style-1 .has-border:hover {
    border: 1px solid var(--Secondary)
}

.arrow-style-1 .type-white::after {
    color: var(--White)
}

.arrow-style-1 .type-white:hover {
    border-color: var(--White)
}

.arrow-style-1 .type-white:hover::after {
    color: var(--White)
}

.arrow-style-2 .swiper-button-prev::after {
    color: var(--Secondary);
    font-size: 12px;
    font-weight: 700
}

.arrow-style-2 .swiper-button-next::after {
    color: var(--Secondary);
    font-size: 12px;
    font-weight: 700
}

.top-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 6px;
    align-items: center;
    position: absolute;
    top: 36px;
    inset-inline-end: 22px
}

.top-wrap>div {
    position: unset
}

.arrow-over .swiper-button-next {
    inset-inline-end: -116px;
    top: 60%
}

.arrow-over .swiper-button-prev {
    inset-inline-start: -116px;
    top: 60%
}

.pagination-style-1 .swiper-pagination {
    bottom: 29px
}

.pagination-style-1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 7.5px;
    background-color: var(--White)
}

.pagination-style-2>.swiper-pagination {
    bottom: 0
}

.pagination-style-2>.swiper-pagination .swiper-pagination-bullet {
    margin: 10px 12.5px;
    background-color: var(--Secondary);
    position: relative
}

.pagination-style-2>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid #122223;
    border-top-color: #D9D9D9;
    border-radius: 50%;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%) rotate(-45deg)
}

.pagination-style-2>.swiper-pagination.style-black .swiper-pagination-bullet {
    opacity: 1;
    background-color: var(--White)
}

.pagination-style-2>.swiper-pagination.style-black .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border: 1px solid var(--White);
    border-top-color: rgb(18 34 35 / .2)
}

.bottom-wrap {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px
}

.bottom-wrap>div {
    position: unset;
    margin: 0
}

.bottom-wrap.style-number {
    gap: 21px;
    bottom: 30px
}

.bottom-wrap.style-number .slider-min,
.bottom-wrap.style-number .slider-max {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 28px
}

.bottom-wrap.style-number .swiper-pagination {
    width: 200px;
    margin-inline-start: 0;
    height: 2px;
    border-radius: 0;
    background-color: rgb(24 26 31 / .2)
}

.bottom-wrap.style-number .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: #000
}

.pagination-style-number .swiper-pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px
}

.pagination-style-number .swiper-pagination .swiper-pagination-bullet {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--Secondary);
    width: unset;
    height: unset;
    background-color: unset
}

.pagination-style-number .type-white .swiper-pagination-bullet {
    color: var(--White)
}

.pagination-style-progressbar .swiper-pagination {
    background-color: rgb(255 255 255 / .1);
    height: 3px;
    border-radius: 3px;
    top: unset;
    bottom: 21px;
    margin-inline-start: 238px;
    max-width: 1162px
}

.pagination-style-progressbar .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: var(--Third);
    border-radius: 3px
}

.padding-bottom-80 {
    padding-bottom: 80px
}

.padding-bottom-55 {
    padding-bottom: 55px
}

.carouselright {
    width: calc(100vw - (100vw - 1400px) / 2 - 14px);
    margin-inline-end: -34px !important;
    max-width: 100%;
    padding-bottom: 96px
}

.carouselright .bottom-wrap {
    gap: 20px
}

.carouselright.style-full {
    margin-inline-end: unset !important
}

.carouselright.style-full .box-dream .image {
    width: 428px;
    height: 300px
}

.carouselright.style-full .bottom-wrap {
    gap: 30px
}

.slider-auto>.swiper-wrapper>.swiper-slide {
    width: auto
}

.thumbs-slider-second {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-inline-start: 119px;
    padding-inline-end: 216px;
    gap: 225px
}

.thumbs-slider-second .slider-thumbs-gallery-second-1 {
    width: 370px;
    height: 390px;
    flex-shrink: 0
}

.thumbs-slider-second .slider-thumbs-gallery-second-2 {
    padding-top: 31px
}

.thumbs-slider-second.style-1 {
    padding-inline-start: 0;
    padding-inline-end: 0;
    gap: 0
}

.thumbs-slider-second.style-1 .slider-thumbs-gallery-second-1 {
    width: unset;
    height: unset;
    flex-shrink: unset
}

.thumbs-slider-second.style-1 .slider-thumbs-gallery-second-2 {
    padding-top: 105px
}

.thumbs-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.thumbs-slider .slider-thumbs-gallery-2 {
    margin-bottom: 10px;
    border-radius: 16px;
    overflow: hidden
}

.thumbs-slider .slider-thumbs-gallery-2 .thumbs-prev {
    inset-inline-start: 30px
}

.thumbs-slider .slider-thumbs-gallery-2 .thumbs-next {
    inset-inline-end: 30px
}

.thumbs-slider .slider-thumbs-gallery-1 img {
    border-radius: 12px
}

.thumbs-slider-column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 11px
}

.thumbs-slider-column img {
    border-radius: 12px
}

.thumbs-slider-column .slider-thumbs-gallery-1 {
    width: 158px;
    height: 650px;
    flex-shrink: 0
}

.thumbs-slider-column .slider-thumbs-gallery-1 .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.thumbs-slider-column .slider-thumbs-gallery-1 .swiper-wrapper .swiper-slide {
    width: 158px;
    height: 121px !important
}

.slider-4-center {
    overflow: unset
}

.slider-4-center .swiper-slide {
    overflow: hidden;
    border-radius: 16px
}

.slider-4-center .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: all 1s cubic-bezier(.3, 1, .35, 1) 0s;
    transition: transform 500ms ease
}

.slider-4-center .swiper-slide img:hover {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s;
    transition: all 2s cubic-bezier(.3, 1, .35, 2) 0s
}

.slider-effect-fade .swiper-slide .fade-item {
    -webkit-transform: translate(0, 150px);
    -moz-transform: translate(0, 150px);
    -ms-transform: translate(0, 150px);
    -o-transform: translate(0, 150px);
    transform: translate(0, 150px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-1 {
    transition-delay: 0.1s
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-2 {
    transition-delay: 0.2s
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-3 {
    transition-delay: 0.3s
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-4 {
    transition-delay: 0.4s
}

.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible
}

.slider-recent-properties {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    margin-inline-start: -15px;
    margin-inline-end: -15px
}

.slider-news,
.slider-homes {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    padding-bottom: 15px;
    margin-inline-start: -15px;
    margin-inline-end: -15px;
    margin-bottom: -15px
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.wrap-map-v1 {
    position: relative;
    height: 100%;
    min-height: 1089px;
    padding-inline-start: 6px;
    padding-top: 9px;
    margin-inline-end: -40px
}

.wrap-map-v2 {
    position: relative;
    z-index: 20;
    margin-bottom: 40px
}

.wrap-map-v2 #map {
    height: 668px
}

.wrap-map-v2 .wrap-filter {
    position: absolute;
    bottom: 20px;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1400px
}

.wrap-map-v2 .wrap-filter form {
    border-radius: 16px;
    padding: 20px 20px 20px 30px
}

.wrap-map-v2 .wrap-filter form .list .group-form {
    width: 100%;
    max-width: 212px
}

.wrap-map-v2 .wrap-filter form .list .group-form.form-search-content {
    max-width: 526px
}

.wrap-map-v3 {
    position: relative;
    height: 100%;
    min-height: 1089px;
    margin-inline-start: -40px;
    margin-inline-end: -3px
}

.wrap-map-v4 {
    position: relative;
    height: 100%;
    min-height: 1089px;
    height: 953px
}

.wrap-map-v5 {
    position: relative;
    padding-bottom: 193px
}

.wrap-map-v5 #map-1 {
    height: 571px
}

.wrap-map-v5 .grid-contact {
    position: absolute;
    bottom: 0;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1190px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 40px;
    z-index: 9999;
}

.wrap-map-v5 .grid-contact>.contact-item {
    width: 100%
}

#map {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

#map-1 {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

#map-2 {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.map-marker-container {
    position: absolute;
    margin-top: 10px;
    transform: translate3d(-50%, -100%, 0)
}

.marker-container {
    position: relative;
    top: 25px;
    inset-inline-start: 10px;
    width: 46px;
    height: 46px;
    z-index: 1;
    border-radius: 50%;
    cursor: pointer;
    -webkit-perspective: 1000
}

.face {
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    color: #fff;
    z-index: 100;
    background: #1F4B43;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: content-box;
    background-clip: content-box;
    line-height: 46px;
    font-size: 24px
}

.face::before,
.face::after {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 50px rgb(31 75 67 / .1);
    -o-box-shadow: 0 0 0 50px rgb(31 75 67 / .1);
    box-shadow: 0 0 0 20px rgb(31 75 67 / .1);
    -webkit-animation: ripple 2s infinite;
    animation: ripple 2s infinite
}

.face::before {
    content: "";
    position: absolute;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s
}

.face::after {
    content: "";
    position: absolute;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}

.face>div {
    position: absolute;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 99
}

#singleListingMap .marker-container {
    cursor: default
}

.marker-card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    position: absolute;
    z-index: 1
}

#map .infoBox {
    margin-inline-start: 170px;
    margin-bottom: -100px
}

.map-listing-item {
    position: relative
}

.map-listing-item .infoBox-close {
    position: absolute;
    inset-inline-end: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    background: #f9f9f9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Secondary);
    font-size: 9px;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
    cursor: pointer;
    transition: all 300ms ease
}

.map-listing-item .inner-box {
    position: relative;
    border-radius: 10px;
    background: #fff;
    min-width: 327px;
    box-shadow: 0 10px 25px rgb(54 95 104 / .1);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    padding: 10px
}

.map-listing-item .image {
    width: 75px;
    height: 75px
}

.map-listing-item .image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 500ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.map-listing-item .content {
    position: relative;
    padding: 0
}

.map-listing-item .content .price {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Third)
}

.map-listing-item .content h4 {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
    margin-bottom: 0 !important
}

.cluster-map-visible {
    text-align: center;
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    background-color: #14a077;
    border: 7px solid rgb(25 103 210 / .2);
    box-shadow: 0 7px 30px rgb(33 33 33 / .3);
    box-sizing: content-box;
    background-clip: content-box
}

.map-style-fixed {
    position: fixed;
    top: 141px;
    bottom: 0;
    inset-inline-start: 20px;
    width: 48.5%;
    z-index: 0;
    margin: 0
}

.property-map-v3 .box-filter-small {
    margin-top: 121px
}

.property-map-wrap-v4 .box-filter-small {
    margin-top: 121px
}

.property-map-wrap-v4 .map-style-fixed {
    width: 60.8%
}

.nice-select {
    border-radius: 12px;
    border: 1px solid var(--Border) !important;
    padding: 12px 20px
}

.nice-select.border-radius-1 {
    border-radius: 120px;
    padding: 12.5px 25px
}

.nice-select::after {
    inset-inline-end: 27px;
    border-color: var(--Secondary)
}

.nice-select>span {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary)
}

.nice-select>.list {
    margin-top: 10px;
    border: 1px solid var(--Secondary);
    border-radius: 16px;
    max-height: unset;
    padding: 28px 20px 20px 21px;
    max-width: 300px
}

.nice-select>.list .option {
    height: 41px;
    padding: 0 15px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 41px;
    color: var(--Secondary);
    position: relative
}

.nice-select>.list .option.selected {
    color: var(--Secondary);
    font-weight: 400
}

.nice-select>.list .option.selected::after {
    position: absolute;
    font-family: flaticon_just-home !important;
    content: "\f125";
    inset-inline-end: 18px;
    top: 50%;
    transform: translateY(-50%)
}

.nice-select>.list.style-radio {
    padding: 28px 20px 30px 21px
}

.nice-select>.list.style-radio .option {
    padding-inline-start: 50px;
    height: 50px;
    line-height: 50px
}

.nice-select>.list.style-radio .option::after {
    position: absolute;
    inset-inline-start: 15px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--Border)
}

.nice-select>.list.style-radio .option.selected::after {
    border: 4px solid var(--Secondary)
}

.nice-select.open {
    border-color: var(--Secondary) !important;
    z-index: 50
}

.nice-select.style-white span.current {
    color: var(--White) !important
}

.nice-select.style-white::after {
    border-color: var(--White) !important
}

.nice-select.default {
    padding: 0;
    padding-inline-end: 18px;
    border: 0 !important
}

.nice-select.default::after {
    inset-inline-end: 0;
    top: 44%;
    inset-inline-end: 2px
}

.nice-select.default ul.list {
    width: 220px;
    inset-inline-end: 0;
    inset-inline-start: unset
}

.tf-select select {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--Border) !important;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary);
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tf-select select:focus {
    border-color: var(--Secondary) !important
}

.tf-field-label {
    position: relative
}

.tf-field-label .tf-input {
    padding: 12px 18px
}

.tf-field-label .tf-input:focus {
    border-color: var(--Black)
}

.tf-field-label .tf-input:not(:placeholder-shown)~.tf-label,
.tf-field-label .tf-input:focus~.tf-label {
    top: 0;
    transform: translateY(-50%);
    padding: 0 8px;
    background-color: var(--White)
}

.tf-field-label .tf-input::placeholder {
    color: #fff0
}

.tf-field-label .tf-label {
    position: absolute;
    top: 11px;
    inset-inline-start: 18px;
    transition: all 0.1s ease;
    cursor: text;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary)
}

.tf-select-label {
    position: relative;
    z-index: 2
}

.tf-select-label .select-label {
    position: absolute;
    top: 11px;
    inset-inline-start: 18px;
    transition: all 0.1s ease;
    cursor: text;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary);
    z-index: 51
}

.tf-select-label.focused .select-label {
    top: 0;
    transform: translateY(-50%);
    padding: 0 8px;
    background-color: var(--White)
}

@media (max-width:1800px) {
    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 20px
    }

    .property-grid-wrap>.box-dream {
        margin-inline-start: auto;
        margin-inline-end: auto
    }

    .property-grid-wrap.type-2-cols {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px
    }

    .property-grid-wrap.type-2-cols>.box-dream {
        max-width: 500px
    }

    .wrap-map-v3,
    .wrap-map-v1 {
        margin: 0;
        padding: 0
    }

    .slider.home4 .wrap-slider::before {
        inset-inline-start: unset;
        inset-inline-end: calc(50% + 150px)
    }

    .slider.home4 .wrap-slider::after {
        inset-inline-end: unset;
        inset-inline-start: calc(50% + 150px)
    }
}

@media (max-width:1440px) {
    .pagination-style-progressbar .swiper-pagination {
        width: unset;
        inset-inline-end: 35px;
        margin-inline-start: 190px
    }

    .luxury-home.style-3 .content {
        padding-inline-start: 50px
    }

    .box-filter-small .wg-filter.style-price .open-filter {
        inset-inline-start: unset;
        inset-inline-end: 0
    }

    .box-filter-small .wg-filter.style-more {
        position: unset
    }

    .box-filter-small .wg-filter.style-more>.btn-filter {
        position: relative
    }

    .box-filter-small .wg-filter.style-more>.btn-filter::after {
        border-bottom: 1.7px solid #3A3A3C;
        border-inline-end: 1.7px solid #3A3A3C;
        content: "";
        height: 8px;
        width: 8px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        top: 43% !important;
        inset-inline-end: 23px !important;
        border-color: var(--Secondary);
        -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
    }

    .box-filter-small .wg-filter.style-more::after {
        display: none
    }

    .message-wrap {
        gap: 10px
    }

    .message-wrap>.wg-box {
        padding: 20px !important
    }

    .page-head>div {
        flex-wrap: wrap;
        gap: 30px;
        flex-direction: column-reverse
    }

    .page-head>div .widget-content-tab .widget-content-inner form {
        flex-wrap: wrap
    }

    .page-head>div .widget-content-tab .widget-content-inner form>* {
        width: 25%
    }

    .page-head>div .widget-content-tab .widget-content-inner form>* .btn-filter {
        justify-content: start
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more {
        position: unset
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more .open-filter {
        width: 100%;
        top: calc(100% + 20px)
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more>.btn-filter {
        position: relative
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more>.btn-filter::after {
        border-bottom: 1.7px solid #3A3A3C;
        border-inline-end: 1.7px solid #3A3A3C;
        content: "";
        height: 8px;
        width: 8px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        top: 47%;
        inset-inline-end: 30px;
        border-color: var(--Secondary);
        -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
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more::after {
        display: none
    }

    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px
    }

    .property-grid-wrap>.box-dream {
        max-width: 490px
    }

    .box-testimonials .testimonials-item {
        padding-inline-start: 30px
    }

    .flat-counter.style-1 {
        margin-inline-start: 0;
        margin-inline-end: 0
    }

    .pricing-item {
        margin-bottom: 30px
    }

    .agency-list-wrap .sidebar,
    .agency-list-wrap .form-sidebar-left {
        max-width: unset
    }

    .layout-wrap .layout-wrap-inner .section-menu-left.null {
        -webkit-transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        -o-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        opacity: 0;
        visibility: hidden
    }

    .layout-wrap .layout-wrap-inner .section-content-right.full {
        padding-inline-start: 0
    }

    .grid-favorities-item {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 28px 28px;
        padding-inline-end: 0
    }

    .btn-canvas {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        z-index: 70
    }

    .grid-section-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .grid-section-1 {
        flex-wrap: wrap
    }

    .grid-section-1>.wg-box {
        width: 100% !important
    }

    .thumbs-slider-second {
        padding-inline-start: 0;
        padding-inline-end: 0
    }

    .main-content.px-60,
    .main-content.px-110 {
        padding-inline-start: 0;
        padding-inline-end: 0
    }

    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
        margin-inline-start: 0
    }

    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation .mega-menu {
        gap: 40px !important
    }

    #header_main .header-inner .header-inner-wrap .header-right .header-call {
        display: none
    }

    #header_main.type-home3 .header-inner #site-logo {
        position: unset !important;
        transform: none !important
    }

    #header_main.type-home3 .header-inner .main-menu .navigation {
        gap: 10px !important
    }

    .sidebar {
        padding-inline-start: 0
    }

    .properties-content-default {
        padding: 15px 30px
    }

    .properties-content-default .text,
    .properties-content-default p {
        margin-bottom: 15px
    }

    .flat-cities.style-1 .wrap {
        padding-inline-start: 0;
        padding-inline-end: 0
    }

    .slider.home5 .wrap-slider .slider-content .left .box-agents {
        inset-inline-end: 0
    }

    .property-single-sidebar {
        max-width: unset;
        width: 100%
    }

    .property-map-wrap-v4 .list-box-dream .box-dream {
        flex-direction: column;
        gap: 0
    }

    .property-map-wrap-v4 .list-box-dream .box-dream .content {
        padding: 9px 0 9px 9px
    }

    .property-map-wrap-v4 .list-box-dream .box-dream .image {
        flex-grow: 1;
        width: unset;
        margin: 9px;
        height: unset
    }
}

@media (max-width:1200px) {
    .po-sticky {
        position: unset !important
    }

    .counter .number-counter.style-1 {
        width: 100%;
        margin-bottom: 15px
    }

    .box-icon.style-2 .content p br {
        display: none
    }

    .perfect-home .content-right {
        padding-top: 30px;
        padding-inline-start: 0
    }

    .box-dream.style-row {
        flex-direction: column;
        gap: 15px
    }

    .box-dream.style-row .image {
        width: 100%;
        margin: 0 !important;
        padding: 9px;
        border-radius: 12px;
        overflow: hidden
    }

    .box-dream.style-row .image>.swiper-container {
        border-radius: 12px;
        overflow: hidden
    }

    .box-dream.style-row .image img {
        border-radius: 12px
    }

    .box-dream.style-row .content {
        padding: 9px 0 9px 9px
    }

    #header_main .header-inner {
        padding: 15px 15px 0 15px
    }

    #header_main .header-inner .header-inner-wrap {
        padding-inline-end: 15px;
        padding-inline-start: 15px
    }

    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
        gap: 20px !important
    }

    #header_main .header-inner .header-inner-wrap .header-right {
        gap: 15px
    }

    #header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li::before {
        width: calc(100% + 20px)
    }

    #header_main.type-home3 .header-inner {
        padding: 15px 15px 0 15px !important
    }

    .footer .footer-inner .footer-inner-wrap .center-footer {
        flex-wrap: wrap;
        gap: 40px
    }

    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-1 {
        max-width: unset
    }
}

@media (max-width:1199px) {
    .property-single-sidebar {
        margin-top: 50px
    }
}

@media (max-width:1024px) {
    .box-filter-small .wg-filter.style-price .open-filter {
        inset-inline-start: unset;
        inset-inline-end: 0
    }

    .box-filter-small .wg-filter.style-more .open-filter {
        max-width: max-content
    }

    .slider.home8 .wrap-slider .counter {
        position: unset;
        max-width: unset;
        height: unset;
        padding: 40px 14px
    }

    .slider.home8 .wrap-slider .counter .number-counter {
        width: 100%;
        text-align: center
    }

    .slider.home8 .wrap-slider .counter .number-counter>div {
        text-align: center !important
    }
}

@media (max-width:991px) {
    .layout-wrap .layout-wrap-inner .section-menu-left {
        top: 150px;
        width: unset;
        inset-inline-end: 20px;
        -webkit-transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        -o-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        opacity: 0;
        visibility: hidden
    }

    .layout-wrap .layout-wrap-inner .section-menu-left.null {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
        visibility: visible
    }

    .layout-wrap .layout-wrap-inner .section-content-right {
        padding-top: 120px;
        padding-inline-start: 0
    }

    .layout-wrap .layout-wrap-inner .section-content-right .reviews-wrap ul li {
        flex-wrap: wrap;
        gap: 15px
    }

    .layout-wrap .layout-wrap-inner .section-content-right .reviews-wrap ul li .ratings {
        margin-top: 0
    }

    .layout-wrap .layout-wrap-inner .section-content-right .reviews-wrap ul li .time {
        margin-bottom: 10px
    }

    .layout-wrap .layout-wrap-inner .btn-canvas {
        top: 100px;
        inset-inline-start: 20px;
        inset-inline-end: 20px;
        position: absolute;
        width: unset;
        height: 50px;
        padding: 0 15px;
        border-radius: 6px;
        gap: 15px;
        justify-content: start
    }

    .layout-wrap .layout-wrap-inner .btn-canvas span::after {
        transform: rotate3d(0, 0, 1, -45deg);
        top: 50%
    }

    .layout-wrap .layout-wrap-inner .btn-canvas span::before {
        transform: rotate3d(0, 0, 1, 45deg);
        top: 50%
    }

    .layout-wrap .layout-wrap-inner .btn-canvas .text-content {
        display: block
    }

    .layout-wrap .layout-wrap-inner .btn-canvas.active span::after {
        bottom: 0;
        top: unset;
        transform: none
    }

    .layout-wrap .layout-wrap-inner .btn-canvas.active span::before {
        top: 0;
        transform: none
    }

    .agents-item {
        padding: 20px
    }

    .agents-item>div:first-child {
        gap: 20px !important
    }

    .agents-item .name {
        margin-top: 0
    }

    .sidebar .sidebar-item,
    .agency-list-wrap .sidebar,
    .agency-list-wrap .form-sidebar-left {
        padding: 15px;
        gap: 15px
    }

    .thumbs-slider-second.style-1 .slider-thumbs-gallery-second-2 {
        padding-top: 0
    }

    .thumbs-slider-second.style-1 .slider-thumbs-gallery-second-1 {
        margin-top: 20px
    }

    .slider.home6 .wrap-slider .slider-item {
        background-image: none
    }

    .flat-explore .wrap {
        flex-wrap: wrap
    }

    .flat-explore .wrap .cities-item {
        width: 47% !important
    }

    .flat-explore .wrap .cities-item .content {
        top: 15px !important;
        inset-inline-start: 15px !important
    }

    .flat-explore .wrap .cities-item>a {
        bottom: 15px !important;
        inset-inline-start: 15px !important
    }

    .luxury-home.style-3 {
        flex-wrap: wrap;
        padding-inline-start: 20px;
        padding-inline-end: 20px
    }

    .luxury-home.style-3 .content {
        padding-top: 70px;
        padding-bottom: 70px
    }

    .box-dream.style-full .content {
        padding-top: 40px;
        padding-bottom: 0
    }

    .map-style-fixed {
        margin-top: 100px;
        position: unset;
        width: 100%;
        height: 500px;
        min-height: 500px
    }

    .modal .modal-dialog {
        margin-top: 30px;
        margin-bottom: 30px;
        min-width: unset
    }

    .modal .modal-dialog .modal-content {
        flex-wrap: wrap;
        transform: translateY(0) !important
    }

    .modal .modal-dialog .modal-content .image-left {
        width: 100%;
        height: 500px
    }

    .modal .modal-dialog .modal-content .content-right {
        padding: 34px 30px 30px 30px
    }

    .property-map-wrap-v4 {
        padding-inline-end: 15px;
        padding-inline-start: 15px;
        flex-wrap: wrap
    }

    .property-map-wrap-v4>* {
        width: 100% !important
    }

    .property-map-wrap-v4>*.wrap-map-v4 {
        height: 500px;
        min-height: 500px
    }

    .property-map-wrap-v4>*.wrap-map-v4 .map-style-fixed {
        width: 100% !important
    }

    .box-filter-small {
        margin-top: 50px
    }

    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px
    }

    .property-grid-wrap>.box-dream {
        max-width: 400px
    }

    .slider.home6 .wrap-slider .slider-item .slider-content {
        padding-top: 150px;
        padding-bottom: 100px
    }

    .slider.home5 {
        margin-bottom: 30px
    }

    .slider.home5 .wrap-slider .slider-item .slider-content {
        padding-top: 150px;
        padding-bottom: 100px
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left {
        position: unset;
        margin-top: 50px
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left>form {
        position: relative;
        inset-inline-start: 0
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left>.wrap-img {
        margin-top: 40px;
        margin-bottom: 100px;
        justify-content: center
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left>.box-agents {
        bottom: 15px;
        inset-inline-end: 14px
    }

    .slider.home10 .wrap-slider .counter {
        padding-inline-start: 20px;
        padding-inline-end: 20px;
        height: unset
    }

    .download-app {
        flex-wrap: wrap
    }

    .download-app .content-right {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-inline-start: 20px
    }

    .download-app .content-right .ft-download {
        flex-wrap: wrap
    }

    .download-app .image {
        width: 100%
    }

    .download-app .image img {
        width: 100%;
        height: 600px;
        object-fit: cover
    }

    .flat-cities .inner.style-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 28px;
        grid-template-areas: "aa aa" "bb cc" "dd ee"
    }

    .flat-cities .inner.style-1 .cities-item.item-1 img {
        height: 320px
    }

    .flat-counter.style-1 .counter {
        margin-top: 30px;
        flex-wrap: wrap;
        row-gap: 30px;
        text-align: center
    }

    .flat-counter.style-1 .counter .number-counter {
        width: 100% !important
    }

    .flat-counter.style-1 .counter .number-counter div {
        text-align: center
    }

    form {
        z-index: 40 !important;
        flex-wrap: wrap;
        align-items: center !important
    }

    form>.list {
        flex-wrap: wrap
    }

    form>.list>* {
        width: 100% !important;
        max-width: unset !important
    }

    form>.list>.divider-1 {
        display: none
    }

    .wrap-map-v5 {
        padding-bottom: 0
    }

    .wrap-map-v5 .grid-contact {
        position: unset;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        padding-top: 20px;
        flex-wrap: wrap
    }

    .vision-mission .content {
        flex-wrap: wrap
    }

    .vision-mission .content>div {
        max-width: unset
    }

    .agency-list-wrap .top {
        margin-top: 50px
    }

    .sidebar-shop {
        padding-top: 50px;
        max-width: unset !important
    }

    .shop-detail-wrap .shop-detail-content {
        padding-inline-start: 0;
        padding-top: 50px
    }

    .shop-detail-wrap .bottom {
        padding-top: 70px;
        padding-bottom: 70px
    }

    form .cols {
        flex-direction: column
    }

    form .cols>* {
        width: 100% !important;
        max-width: unset !important
    }

    .thumbs-slider-second {
        flex-wrap: wrap;
        gap: 40px
    }

    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr)
    }

    .mobile-wrap {
        flex-wrap: wrap
    }

    .mobile-wrap>* {
        width: 100% !important
    }

    #header_main {
        border-bottom: 1px solid var(--Border)
    }

    #header_main.style-bg-white .header-inner {
        padding: 20px 20px 0 20px !important
    }

    #header_main.style-fixed .header-inner {
        padding-bottom: 20px !important
    }

    #header_main.style-fixed .header-inner .header-inner-wrap {
        background-color: #F9F9F9
    }

    #header_main.style-fixed.none-bg .header-inner .header-inner-wrap {
        background-color: var(--White)
    }

    #header_main.type-home8 {
        padding-top: 20px;
        padding-bottom: 20px
    }

    #header_main.style-absolute {
        background-color: var(--White);
        padding-bottom: 20px
    }

    #header_main.style-absolute .header-inner {
        padding-bottom: 0 !important
    }

    #header_main.is-fixed.type-home1.is-small {
        top: 0
    }

    #header_main.is-fixed.is-small {
        background-color: var(--White);
        padding-top: 10px;
        padding-bottom: 10px
    }

    #header_main.is-fixed.is-small.style-no-bg {
        background-color: var(--White)
    }

    #header_main.is-fixed.is-small.style-no-bg .header-inner .header-inner-wrap {
        background-color: #fff0
    }

    #header_main .header-inner {
        padding-bottom: 20px !important
    }

    #header_main .header-inner.background-white {
        background-color: var(--White)
    }

    #header_main .header-inner.background-white .header-inner-wrap {
        background-color: var(--White)
    }

    #header_main .header-inner .header-inner-wrap {
        padding: 0 !important;
        border: 0
    }

    #header_main .header-inner .header-inner-wrap #site-logo #logo-header-mobile {
        display: block
    }

    #header_main .header-inner .header-inner-wrap #site-logo #logo-header {
        display: none
    }

    #header_main .header-inner .header-inner-wrap .main-menu {
        display: none
    }

    #header_main .header-inner .header-inner-wrap .header-right {
        display: none
    }

    #header_main .header-inner .header-inner-wrap .mobile-button {
        display: block !important
    }

    .sidebar {
        margin-top: 40px;
        max-width: unset !important
    }

    .footer {
        padding: 0 !important
    }

    .footer .footer-inner {
        border-radius: 0;
        padding: 0
    }

    .footer .footer-inner .footer-inner-wrap .top-footer {
        padding: 20px
    }

    .footer .footer-inner .footer-inner-wrap .top-footer #footer-logo {
        width: 150px
    }

    .footer .footer-inner .footer-inner-wrap .top-footer .wg-social>span {
        display: none
    }

    .footer .footer-inner .footer-inner-wrap .center-footer {
        padding: 40px 20px
    }

    .footer .footer-inner .footer-inner-wrap .bottom-footer {
        padding: 20px
    }

    .blog-single-wrap {
        padding: 15px 0
    }

    .flat-cities .inner {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "aa bb" "cc dd" "ee ff"
    }

    .exclusive-properties .inner {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "aa bb" "cc dd" "ee ff"
    }

    .best-properties .inner {
        gap: 10px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-areas: "aa aa" "aa aa" "dd dd" "dd dd" "dd dd" "bb cc" "bb cc" !important
    }

    .agents-item .image {
        width: 100px;
        height: 100px
    }

    .property-list-wrap.v1 .form-sidebar-left {
        display: none
    }

    .property-list-wrap.v1 .top>form {
        display: block;
        margin-bottom: 30px
    }
}

@media (max-width:820px) {
    .form-search-home3 {
        border-radius: 12px
    }

    .form-search-home3>div {
        width: 100% !important
    }

    .finest-selection .inner {
        flex-wrap: wrap
    }

    .finest-selection .inner .content {
        padding-top: 50px;
        padding-inline-start: 20px;
        padding-inline-end: 20px
    }

    .finest-selection .inner .image {
        max-width: unset
    }

    .luxury-home .image .box {
        bottom: 10px;
        inset-inline-start: 10px;
        top: unset
    }

    .counter {
        flex-wrap: wrap;
        row-gap: 15px
    }

    .counter .number-counter {
        width: 50%;
        text-align: center
    }

    .work-with-us .wrap {
        padding-inline-start: 0;
        flex-wrap: wrap;
        gap: 20px
    }

    .work-with-us .wrap>div {
        width: 100%;
        max-width: none !important
    }
}

@media (max-width:767px) {
    .smilar-homes .box-dream {
        margin-bottom: 30px
    }

    .property-single-wrap .head-title {
        flex-wrap: wrap;
        gap: 15px
    }

    .property-single-wrap .head-title .square {
        text-align: start
    }

    .property-single-wrap.v3 .wrap-gallery-image {
        margin-inline-start: 15px;
        margin-inline-end: 15px
    }

    .property-single-wrap.v6 .head-title {
        bottom: 10px
    }

    .property-single-wrap.v6 .head-title>div:last-child {
        display: none
    }

    .property-single-wrap.v6 .list-icons-page.show-mobile {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding-inline-start: 14px;
        margin-bottom: 30px
    }

    .list-icons-page .item p {
        display: none
    }

    .widget-tabs.style-3 .widget-menu-tab {
        overflow-x: auto
    }

    .widget-tabs.style-3 .widget-menu-tab .item-title {
        padding: 10px 15px;
        min-width: max-content
    }

    .top-heading {
        flex-wrap: wrap;
        margin-bottom: 20px
    }

    .top-heading .heading-section {
        margin-bottom: 15px;
        width: 100%
    }

    .flat-accordion .flat-toggle {
        padding-inline-start: 15px !important;
        padding-inline-end: 15px !important
    }

    .flat-accordion .flat-toggle.active {
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }

    .flat-accordion .flat-toggle .toggle-title {
        padding-inline-end: 20px
    }

    .pie-chart {
        flex-wrap: wrap
    }

    .pie-chart .wrap-note {
        padding-top: 0 !important;
        gap: 20px !important;
        flex-wrap: wrap
    }

    .box-content-search {
        max-width: -webkit-fill-available
    }

    .message-wrap {
        flex-direction: column
    }

    .message-wrap>* {
        width: 100% !important
    }

    .carouselright {
        margin-inline-start: 0
    }

    .work-with-us-item h2 a {
        inset-inline-start: unset !important;
        inset-inline-end: 40px
    }

    .work-with-us-item:hover h2 a {
        inset-inline-end: 25px
    }

    .box-dream .head {
        padding-top: 15px !important;
        gap: 10px !important
    }

    .box-dream .price {
        position: unset !important
    }

    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px
    }

    .property-grid-wrap>.box-dream {
        max-width: 350px
    }

    .box-testimonials {
        flex-wrap: wrap
    }

    .box-testimonials .image {
        max-width: unset
    }

    .work-with-us-item {
        flex-wrap: wrap
    }

    .work-with-us-item .text-content {
        text-align: start
    }

    .testimonials .testimonials-inner {
        flex-wrap: wrap
    }

    .cities-item.style-4 .content {
        padding: 10px;
        bottom: 10px;
        inset-inline-start: 20px;
        inset-inline-end: 20px
    }

    .box-icon {
        margin-bottom: 50px
    }

    .agents-item {
        position: relative
    }

    .agents-item>.flex {
        flex-wrap: wrap;
        row-gap: 20px !important
    }

    .agents-item>.flex>div:last-child {
        width: 100%
    }

    .agents-item>.flex>div:last-child .infor {
        position: absolute;
        top: 25px;
        inset-inline-start: 140px
    }

    .form-shop-cart .bottom {
        flex-wrap: wrap
    }

    .upload-image-wrap .list {
        flex-wrap: wrap
    }

    .grid-section-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .property-single-wrap.v7 .wrap-image {
        flex-direction: column
    }

    .property-single-wrap.v7 .wrap-image>.flex {
        flex-direction: row !important
    }

    .property-single-wrap.v7 .box-items {
        flex-wrap: wrap;
        row-gap: 15px
    }

    .property-single-wrap.v7 .box-items .item {
        width: 50%;
        border: 0 !important
    }

    .thumbs-slider-column {
        flex-wrap: wrap;
        margin-inline-end: 0 !important
    }

    .thumbs-slider-column .slider-thumbs-gallery-1 {
        width: unset;
        height: unset
    }

    .thumbs-slider-column .slider-thumbs-gallery-1 .swiper-wrapper {
        display: none
    }

    .property-single-wrap .content-wrap .box-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 10px
    }

    .property-single-wrap .content-wrap>.plans .icons {
        flex-wrap: wrap
    }

    .property-single-wrap .content-wrap>.calculator form {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px
    }

    .wrap-gallery-image {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 10px;
        grid-template-areas: "aa aa" "aa aa" "bb cc" "dd ee"
    }

    .list-icons-page {
        flex-wrap: wrap
    }

    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-2,
    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-3,
    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-4,
    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-5 {
        width: 45%
    }

    .footer.style-1 .bottom-footer .inner {
        flex-wrap: wrap;
        gap: 15px
    }

    .footer.style-1 .bottom-footer .inner>* {
        width: 100%
    }

    .testimonials .testimonials-inner {
        margin-bottom: 40px
    }

    .tab-search .widget-tabs .widget-menu-tab {
        gap: 30px;
        overflow-x: auto;
        overflow-y: hidden
    }

    .tab-search .widget-tabs .widget-menu-tab .item-title {
        min-width: max-content;
        font-size: 16px
    }

    .tab-search .widget-tabs .widget-content-tab .widget-content-inner .gird-tab-search {
        flex-wrap: wrap
    }

    .tab-search .widget-tabs .widget-content-tab .widget-content-inner .gird-tab-search .item {
        width: 45%
    }

    .luxury-home .content {
        padding-bottom: 50px
    }

    .luxury-home .image {
        margin-bottom: 40px;
        max-width: unset !important
    }

    .group-icon {
        margin-bottom: 20px;
        padding: 20px
    }

    .group-icon>.image {
        bottom: 15px;
        inset-inline-end: 15px
    }

    .exclusive-properties .inner {
        gap: 10px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "aa" "bb" "cc" "dd" "ee" "ff"
    }
}

@media (max-width:550px) {
    .agents-item .wrap-contact>* {
        width: 100%;
        justify-content: start
    }

    .has-bg-vector::before {
        display: none
    }

    .contact-item {
        padding: 30px 20px
    }

    .box-dream.style-favorities {
        gap: 0
    }

    .box-dream.style-favorities .image {
        margin: 7px;
        flex-grow: 1;
        width: unset
    }

    .box-dream.style-favorities .head {
        padding-top: 0 !important
    }

    .wg-box {
        padding: 30px 20px 20px !important
    }

    .property-single-wrap .content-wrap .list-item {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px 60px
    }

    .property-single-wrap.v5 .content-wrap .widget-tabs .widget-menu-tab {
        overflow-x: auto;
        overflow-y: hidden
    }

    .property-single-wrap.v5 .content-wrap .widget-tabs .widget-menu-tab .item-title {
        min-width: max-content
    }

    .property-single-wrap.v6 .content-wrap>* {
        padding: 15px
    }

    .property-single-wrap.v6 .content-wrap>*>h4 {
        margin-bottom: 15px !important
    }

    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .image::before,
    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .image img {
        border-radius: 0
    }

    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .head-title {
        bottom: 15px
    }

    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .head-title .list-icons-page {
        gap: 10px;
        margin-bottom: 15px
    }

    .property-single-wrap.v7 .page-top {
        border-radius: 0
    }

    .property-single-wrap.v7 .content-wrap>* {
        padding: 15px
    }

    .property-single-wrap.v7 .content-wrap>*>h4 {
        margin-bottom: 15px !important
    }

    #map {
        border-radius: 0
    }

    .shop-detail-wrap {
        padding-top: 50px
    }

    .flat-title {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        border-radius: 0 !important
    }

    .flat-title.page-property-grid-2 {
        position: relative;
        z-index: 20
    }

    .flat-title.page-property-list-3,
    .flat-title.page-property-list-2 {
        padding-top: 120px !important
    }

    .flat-title.inner-page {
        height: unset
    }

    .exclusive-properties .inner .box-dream .image img {
        height: 320px;
        object-fit: cover
    }

    h2 {
        font-size: 26px !important;
        line-height: 36px !important
    }

    h3 {
        font-size: 21px !important;
        line-height: 30px !important
    }

    .flat-cities .inner.style-1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 28px;
        margin-bottom: 70px;
        grid-template-areas: "aa" "bb" "cc" "dd" "ee"
    }

    ul.grid-tags {
        gap: 10px
    }

    ul.grid-tags li a {
        padding: 0 15px;
        line-height: 40px
    }

    .widget-tabs.style-1 .widget-menu-tab .item-title {
        padding: 10px
    }

    .luxury-home .counter {
        padding-top: 30px
    }

    .luxury-home.style-3 .content {
        padding: 20px 30px
    }

    .categories-item.style-1 {
        padding: 15px
    }

    .categories-item.style-1 .icon {
        width: 70px;
        height: 70px
    }

    .flat-news.style-2>div:first-child {
        margin-bottom: 70px
    }

    .area-item {
        gap: 15px;
        margin-bottom: 30px
    }

    .area-item .image {
        width: 70px;
        height: 70px
    }

    .box-filter-small form>* {
        width: 100% !important;
        max-width: unset !important
    }

    .box-filter-small form>* .btn-filter {
        justify-content: start
    }

    .box-filter-small form ul.list {
        width: 100% !important;
        max-width: unset !important
    }

    .open-filter .grid-4-cols .nice-select::after {
        display: none
    }

    .property-grid-wrap.type-2-cols>.box-dream {
        max-width: 350px
    }

    .page-head>div .widget-content-tab .widget-content-inner form {
        flex-wrap: wrap
    }

    .page-head>div .widget-content-tab .widget-content-inner form .open-filter,
    .page-head>div .widget-content-tab .widget-content-inner form ul.list {
        width: 100% !important;
        max-width: unset !important
    }

    .page-head>div .widget-content-tab .widget-content-inner form>* {
        width: 100% !important
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.wg-filter>.btn-filter {
        justify-content: start
    }

    .agency-single-wrap .wrap-inner .grid-box-dream {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 28px 28px
    }

    .layout-wrap {
        padding: 20px
    }

    .grid-checkbox {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-3-cols {
        grid-template-columns: repeat(1, 1fr)
    }

    .luxury-home.style-1 .content {
        padding-top: 0
    }

    .luxury-home.style-1 .content h2,
    .luxury-home.style-1 .content .text-content {
        margin-bottom: 15px
    }

    .luxury-home.style-1 .heading-section {
        margin-top: 50px
    }

    .luxury-home.style-4 .content {
        padding-top: 0
    }

    .luxury-home.style-4 .content .counter {
        gap: 15px
    }

    .luxury-home.style-4 .content .counter>div {
        gap: 15px
    }

    .perfect-home .wrap-image .box {
        position: unset
    }

    .perfect-home.style-1 .content-left {
        padding-top: 0
    }

    .perfect-home.style-2 .wrap-image {
        flex-wrap: wrap;
        justify-content: center
    }

    .perfect-home.style-2 .wrap-image>div {
        width: 100%
    }

    .perfect-home.style-2 .wrap-image>div img {
        width: 100%
    }

    .perfect-home.style-2 .wrap-image .item-1,
    .perfect-home.style-2 .wrap-image .item-2 {
        max-width: unset
    }

    .perfect-home.style-2 .wrap-image .box {
        max-width: none;
        margin: 15px 0
    }

    .perfect-home.style-3 .wrap-image {
        gap: 10px
    }

    .perfect-home.style-3 .wrap-image .item-1,
    .perfect-home.style-3 .wrap-image .item-2 {
        max-width: unset
    }

    .perfect-home.style-3 .wrap-image .box {
        margin-bottom: 0 !important;
        padding: 20px !important
    }

    .work-with-us .wrap {
        margin-bottom: 50px
    }

    .cities-item .content {
        top: 30px;
        inset-inline-start: 30px
    }

    .property-grid-wrap>.box-dream .content {
        position: unset;
        padding: 15px 20px 10px
    }

    .slider-cities-2,
    .slider-cities-1,
    .slider-discover,
    .slider-cities,
    .slider-recent-properties,
    .slider-news,
    .slider-homes {
        padding-inline-end: 0;
        margin-inline-end: 0
    }

    .categories-item {
        padding: 15px
    }

    .box-dream.style-absolute .content {
        bottom: 20px !important;
        inset-inline-start: 20px !important;
        inset-inline-end: 20px !important
    }

    .box-dream.style-absolute .content .head {
        padding-top: 0 !important
    }

    .box-dream.style-absolute .content .price {
        width: 100%;
        margin-bottom: 0
    }

    .box-dream .content {
        bottom: 20px !important;
        inset-inline-start: 20px !important;
        padding: 15px 20px 10px
    }

    .box-dream .content .title {
        font-size: 20px;
        line-height: 28px
    }

    .box-dream .content .price {
        font-size: 18px
    }

    .box-dream .content .location p {
        font-size: 16px;
        line-height: 19px
    }

    .box-dream .content .icon-box {
        width: 100%;
        gap: 10px;
        flex-wrap: wrap
    }

    .box-dream .content .icon-box .item {
        gap: 7px
    }

    .box-dream .content .icon-box .item i,
    .box-dream .content .icon-box .item p {
        font-size: 15px
    }

    .box-dream .content .price {
        margin-bottom: 7px
    }

    .counter .number-counter {
        width: 100%;
        text-align: start
    }

    .counter .number-counter>div {
        font-size: 30px;
        line-height: 40px;
        text-align: start !important
    }

    .counter .number-counter.style-1 {
        padding: 20px 15px
    }

    .counter .number-counter.style-1 div {
        font-size: 26px;
        line-height: 35px;
        margin-bottom: 15px
    }

    .tf-section-default {
        border-radius: 0 !important
    }

    .tf-section {
        padding: 40px 6px !important;
        border-radius: 0 !important
    }

    .tf-section::before {
        border-radius: 0 !important
    }

    .account-bar {
        padding: 40px 20px;
        border-radius: 0 !important;
        text-align: center
    }

    .account-bar a {
        width: 100%
    }

    .account-bar h3 {
        font-size: 21px;
        line-height: 30px
    }

    .account-bar.style-1 {
        padding-inline-start: 0;
        padding-inline-end: 0
    }

    .slider .wrap-slider {
        border-radius: 0 !important
    }

    .slider .wrap-slider::before {
        border-radius: 0 !important
    }

    .slider .wrap-slider .slider-content {
        padding: 156px 0 0 !important
    }

    .slider .wrap-slider .slider-content h1 {
        font-size: 32px;
        line-height: 40px
    }

    .slider.page-404 {
        padding-inline-start: 0;
        padding-inline-end: 0
    }

    .slider.home2 .slider-content .list-icon {
        gap: 5px !important
    }

    .slider.home2 .slider-content .list-icon .item {
        padding: 5px 10px 5px 5px !important
    }

    .slider.home9 .top {
        text-align: center
    }

    .slider.home9 .top .tf-button-primary,
    .slider.home9 .top h2 {
        margin-bottom: 15px;
        margin-inline-start: auto;
        margin-inline-end: auto
    }

    .slider.home9 .top .box-agents {
        gap: 15px;
        align-items: center
    }

    .slider.home9 .wrap-slider .slider-item {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .slider.home9 .wrap-slider .slider-item form {
        padding: 20px
    }

    .slider.home10 .wrap-slider .counter {
        position: unset;
        border-radius: 0
    }

    .estate-agent .image {
        height: unset
    }

    .estate-agent .image .box-curved-text {
        top: 0;
        inset-inline-end: 0;
        inset-inline-start: unset
    }

    .estate-agent .image .img-1,
    .estate-agent .image .img-2 {
        position: unset;
        width: 100%;
        max-width: unset
    }

    .work-with-us-item {
        padding: 30px 0;
        gap: 15px
    }

    .flat-experts .wrap-experts {
        margin-bottom: 70px
    }

    .flat-testimonial>.divider {
        margin: 30px 0
    }

    .box-icon {
        margin-bottom: 40px
    }

    .box-icon.has-bg {
        padding: 30px;
        margin-bottom: 0
    }

    .parallax-wrap {
        padding: 50px 0 !important
    }

    .parallax-wrap .heading {
        font-size: 25px;
        line-height: 32px
    }

    .properties-content-default .number {
        font-size: 23px;
        line-height: 30px
    }

    .properties-content-default p {
        display: none
    }

    .main-content {
        padding: 0 0 20px 0 !important
    }

    .main-content.default,
    .main-content.spacing-20 {
        padding: 0 !important
    }

    .space-20 {
        display: none
    }

    .wg-blog.style-row {
        flex-direction: column
    }

    .wg-blog.style-row .image {
        width: 100%
    }

    .wg-blog.style-row .content {
        width: 100%
    }

    .heading-section h2 {
        font-size: 23px;
        line-height: 30px
    }

    .footer .footer-inner .footer-inner-wrap .center-footer>div {
        width: 100% !important
    }

    .footer .footer-inner .footer-inner-wrap .center-footer>div .ft-title {
        margin-bottom: 10px !important
    }

    .footer #logo-footer {
        width: 150px;
        height: 41px
    }

    .footer #footer-logo {
        order: 1
    }

    .footer #footer-logo img {
        width: 170px;
        height: 48px
    }

    .footer p {
        order: 2
    }

    .footer .wg-social {
        order: 3
    }

    .blog-single-wrap .image-head img {
        border-radius: 0
    }

    .blog-single-wrap .blog-single-inner .wg-blockquote {
        padding: 40px
    }

    .blog-single-wrap .blog-single-inner .grid-image-1,
    .blog-single-wrap .blog-single-inner .grid-image {
        flex-direction: column
    }

    .blog-single-wrap .blog-single-inner .box-admin {
        flex-direction: column;
        padding: 30px
    }

    .blog-single-wrap .blog-single-inner .nav-links {
        flex-direction: column;
        gap: 30px;
        align-items: unset
    }

    .blog-single-wrap .blog-single-inner .nav-links>svg {
        margin: auto
    }

    .blog-single-wrap .blog-single-inner .nav-links .next-post {
        justify-content: end
    }

    .blog-single-wrap .blog-single-inner .reviews-wrap ul li {
        flex-direction: column
    }

    .box-filter-small .wg-filter .open-filter {
        width: 100%
    }

    .wg-filter .open-filter {
        padding: 15px !important
    }
}