html {
    scroll-behavior: smooth;
}

:root {
    --background-dark: #0a0a0a;
    --text-primary: #0f172a;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --border-color-dark: rgba(255, 255, 255, 0.1);
    --container-max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-main {
    background: url(../images/bg.png) no-repeat center/cover;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
    overflow-x: hidden;
}

a {
    text-decoration: none; color: inherit; transition: var(--transition);
}

button {
    border: none; background: none; cursor: pointer; font-family: inherit;
}

ul {
    list-style: none;
}

a, a:hover, a:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    color: #000000;
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

input,
select,
textarea {
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.form-control {
    font-size: 14px !important;
}

input:focus,
select:focus,
textarea:focus {
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
    outline: none !important;
}

a,
button {
    outline: none !important;
    box-shadow: none !important;
}

.bg-body {
    background: var(--color-body);
}

.row-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-5 > [class*=col] {
    padding-left: 5px;
    padding-right: 5px;
}

.row-25 {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.row-25 > [class*=col] {
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.row-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-10 > [class*=col] {
    padding-left: 10px;
    padding-right: 10px;
}

.btn-theme {
    border-radius: .25em;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px 0;
    font-size: 1.05em;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
    transition: .3s all ease;
}

.btn-theme > i {
    margin-top: 1px;
}

.btn-theme:hover,
.btn-theme:active {
    opacity: 0.8;
    color: var(--white);
}

.header .header-top {
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    z-index: 3;
}

.header .header-inner_contact .header-inner_contact__item {
    position: relative;
    font-size: 14px;
    margin: 5px 20px 5px 0;
}

.header .header-inner_contact .header-inner_contact__item > a {
    display: flex;
    align-items: center;
    font-size: .95em;
    color: #232323;
    font-weight: 700;
}

.header .header-inner_contact .header-inner_contact__item > a > span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    border-radius: 4px;
    margin-right: 4px;
    font-size: 1.1em;
}

.header .header-top .header-inner_user .header-inner_user__item > .btn {
    margin: 5px 0 5px 10px;
}

.header .header-top .header-inner_user .header-inner_user__item .header-inner_user__price,
.header .header-top .header-inner_user .header-inner_user__item > .btn-register {
    border: 1px solid #bfbebe;
    background: #fff;
}

.header .header-inner {
    position: relative;
    z-index: 2;
    background: var(--white);
}

.header .header-inner .header-inner_logo {
    padding: 14px 0;
}

.header .header-inner .header-inner_logo .header-inner_logo__image {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.header .header-inner_user {
    margin-left: auto;
}

.header .header-inner_user .header-inner_user__item {
    position: relative;
    font-size: 14px;
}

.header .header-inner_user .header-inner_user__item > .btn {
    margin: 10px 0 10px 10px;
    
    border-radius: 5px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px 0;
    font-size: .85em;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
}

.header .header-inner_user .header-inner_user__item > .btn > i {
    position: relative;
    font-size: .9em;
}

.header .header-inner_user .header-inner_user__item > .btn-login {
    background: var(--primary-color);
    color: var(--white);
}

.header .header-inner_user .header-inner_user__item > .btn-register {
    color: var(--color-dark-gray);
    background: #e9e9e9;
    border: 1px solid var(--color-border);
}

.header .header-inner_user .header-inner_user__item > .btn:hover,
.header .header-inner_user .header-inner_user__item > .btn:active {
    color: var(--white);
    opacity: .8;
}

.header .header-inner_user .header-inner_user__item > .btn > .btn-arrow {
    transition: var(--transition);
    font-size: 1.3em;
}

.header .header-inner_user .header-inner_user__item > .btn > .btn-arrow:before {
    line-height: 0;
    display: block;
}

.header .header-inner_user .header-inner_user__item:hover > .btn > .btn-arrow {
    transform: rotate(180deg);
}

.header .header-inner_user .header-inner_user__item > ul {
    position: absolute;
    background: var(--white);
    top: calc(100% + 40px);
    right: 0;
    transition: var(--transition);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--primary-color);
    border-radius: 0 0 3px 3px;
    -webkit-box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
    min-width: 200px;
}

.header .header-inner_user .header-inner_user__item > ul > li + li {
    border-top: 1px solid var(--color-border);
}

.header .header-inner_user .header-inner_user__item > ul > li > a {
    display: block;
    font-size: 14px;
    color: var(--color-dark);
    padding: 6px 10px;
    position: relative;
}

.header .header-inner_user .header-inner_user__item > ul > li:hover > a,
.header .header-inner_user .header-inner_user__item > ul > li:active > a {
    color: var(--primary-color);
    background: #f2f2f2;
}

.header .header-inner_user .header-inner_user__item > ul:before,
.header .header-inner_user .header-inner_user__item > ul:after {
    content: "";
    display: block;
    position: absolute;
    font-size: 1.4em;
    width: 0;
    height: 0;
    pointer-events: none;
    top: -10px;
    right: 10px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.header .header-inner_user .header-inner_user__item:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.header .header-inner_user .header-inner_user__item .header-inner_user__price {
    font-size: .95em;
    display: flex;
    align-items: center;
    height: 34px;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
    margin-left: 10px;
}

.header .header-inner_user .header-inner_user__item .header-inner_user__price > span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
    font-size: 1.1em;
}

.header .header-inner .header-inner_nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.header .header-inner .header-inner_nav > ul > li {
    position: relative;
}

.header .header-inner .header-inner_nav > ul > li > a {
    text-transform: uppercase;
    font-size: .9em;
    font-weight: 500;
    display: inline-block;
    padding: 25px 10px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: relative;
    white-space: nowrap;
}

.header .header-inner .header-inner_nav > ul > li > a:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    left: 0;
    bottom: 0;
}

.header .header-inner .header-inner_nav > ul > li > ul {
    position: absolute;
    background: var(--white);
    top: calc(100% + 40px);
    right: 0;
    transition: var(--transition);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--primary-color);
    border-radius: 0 0 3px 3px;
    -webkit-box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
    min-width: 200px;
}

.header .header-inner .header-inner_nav > ul > li > ul:before, .header .header-inner .header-inner_nav > ul > li > ul:after {
    content: "";
    display: block;
    position: absolute;
    font-size: 1.4em;
    width: 0;
    height: 0;
    pointer-events: none;
    top: -10px;
    right: 10px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.header .header-inner .header-inner_nav > ul > li > ul > li:not(:last-of-type) {
    border-bottom: 1px solid var(--color-border);
}

.header .header-inner .header-inner_nav > ul > li > ul > li > a {
    display: block;
    font-size: .95em;
    color: var(--color-dark);
    padding: 12px 10px;
    position: relative;
}

.header .header-inner .header-inner_nav > ul > li > ul > li > a:hover,
.header .header-inner .header-inner_nav > ul > li > ul > li > a:active {
    color: var(--primary-color);
    background: #f2f2f2;
}

.header .header-inner .header-inner_nav > ul > li:hover > a {
    background: #f7f4f4;
}

.header .header-inner .header-inner_nav > ul > li:hover > a:before {
    height: 3px;
}

.header .header-inner .header-inner_nav > ul > li:hover > ul {
    top: calc(100% - 3px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.header.is-scroll {
    -webkit-animation: header-scroll .5s forwards;
    animation: header-scroll .5s forwards;
    z-index: 12;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header.is-scrolled {
    -webkit-animation: header-scrolled .5s forwards;
    animation: header-scrolled .5s forwards;
    position: relative;
}

@-webkit-keyframes header-scroll {
    0% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}

@keyframes header-scroll {
    0% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}

@-webkit-keyframes header-scrolled {
    0% {
        top: 30px;
    }
    100% {
        top: 0;
    }
}

@keyframes header-scrolled {
    0% {
        top: 30px;
    }
    100% {
        top: 0;
    }
}

@media screen and (max-width: 991px) {

  
    .header .header-inner .header-inner_logo {
        position: relative;
                padding: 10px 0 10px 45px;
    }

    .header .header-inner .header-inner_logo .header-inner_logo__image {
        height: 50px;
                width: auto;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user {
        position: absolute;
                top: 50%;
                right: 0;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                z-index: 201;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > a {
        font-size: 1.2em;
                color: var(--primary-color);
                height: 30px;
                width: 30px;
                border-radius: 50%;
                background: var(--color-border);
                border: 1px solid #e9e9e9;
                display: flex;
                align-items: center;
                justify-content: center;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul {
        position: absolute;
                background: var(--white);
                top: calc(100% + 60px);
                right: -5px;
                transition: var(--transition);
                pointer-events: none;
                opacity: 0;
                visibility: hidden;
                z-index: -1;
                border: 1px solid var(--color-border);
                border-top: 2px solid var(--primary-color);
                border-radius: 0 0 3px 3px;
                -webkit-box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
                box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
                min-width: 170px;
                width: max-content;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user.active > ul {
        top: calc(100% + 20px);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                z-index: 2;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul:before, .header .header-inner .header-inner_logo .header-inner_mobile__user > ul:after {
        content: "";
                display: block;
                position: absolute;
                font-size: 1.4em;
                width: 0;
                height: 0;
                pointer-events: none;
                top: -10px;
                right: 10px;
                border-right: 10px solid transparent;
                border-left: 10px solid transparent;
                border-bottom: 10px solid var(--primary-color);
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li:not(:last-of-type) {
        border-bottom: 1px solid var(--color-border);
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li > a {
        display: block;
                font-size: .9em;
                color: var(--color-dark);
                padding: 9px 10px;
                position: relative;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li.name {
        text-align: center;
                font-size: 1.1em;
                font-weight: 700;
                padding: 8px 15px;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li.wallet {
        background-color: #f2f2f2;
                text-align: center;
                font-size: .95em;
                font-weight: 700;
                padding: 8px 15px;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li.wallet b {
        color: var(--primary-color);
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li > a:hover, .header .header-inner .header-inner_logo .header-inner_mobile__user > ul > li > a:active {
        color: var(--primary-color);
                background: var(--color-body);
    }

    .header .header-inner .header-inner_logo .header-inner_hamburger {
        position: absolute;
                top: 50%;
                left: 0;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                z-index: 201;
                transition: .3s all ease;
    }

    .header .header-inner .header-inner_logo .header-inner_hamburger button {
        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-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                border-radius: 4px;
                width: 36px;
                height: 36px;
                border: 0;
                outline: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                background: transparent;
    }

    .header .header-inner .header-inner_logo .header-inner_hamburger button span {
        background-color: var(--color-dark);
                border-radius: 2px;
                content: '';
                display: block;
                width: 24px;
                height: 3px;
    }

    .header .header-inner .header-inner_logo .header-inner_hamburger button span:nth-child(1) {
        -webkit-animation: outTop .5s backwards;
                animation: outTop .5s backwards;
                -webkit-animation-direction: reverse;
                animation-direction: reverse;
    }

    .header .header-inner .header-inner_logo .header-inner_hamburger button span:nth-child(2) {
        margin: 4px 0;
                -webkit-animation: outMiddle .5s backwards;
                animation: outMiddle .5s backwards;
                -webkit-animation-direction: reverse;
                animation-direction: reverse;
    }

    .header .header-inner .header-inner_logo .header-inner_hamburger button span:nth-child(3) {
        -webkit-animation: outBottom .5s backwards;
                animation: outBottom .5s backwards;
                -webkit-animation-direction: reverse;
                animation-direction: reverse;
    }

    .is-show_navigation .header .header-inner .header-inner_logo .header-inner_hamburger {
        left: calc(75% + 15px);
    }

    .is-show_navigation .header .header-inner .header-inner_logo .header-inner_hamburger button span {
        background-color: var(--color-dark);
    }

    .is-show_navigation .header .header-inner .header-inner_logo .header-inner_hamburger button span:nth-child(1) {
        -webkit-animation: inTop .5s forwards;
                animation: inTop .5s forwards;
    }

    .is-show_navigation .header .header-inner .header-inner_logo .header-inner_hamburger button span:nth-child(2) {
        -webkit-animation: inMiddle .5s forwards;
                animation: inMiddle .5s forwards;
    }

    .is-show_navigation .header .header-inner .header-inner_logo .header-inner_hamburger button span:nth-child(3) {
        -webkit-animation: inBottom .5s forwards;
                animation: inBottom .5s forwards;
    }

    .is-show_navigation .header .header-inner .header-inner_logo .header-inner_hamburger.no-animation > span {
        -webkit-animation: none;
                animation: none;
    }

    @-webkit-keyframes inMiddle {
        50% {
                    -webkit-transform: rotate(0deg);
                }
                100% {
                    -webkit-transform: rotate(45deg);
                }
    }

    @keyframes inMiddle {
        50% {
                    -webkit-transform: rotate(0deg);
                    transform: rotate(0deg);
                }
                100% {
                    -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
                }
    }

    @-webkit-keyframes outMiddle {
        50% {
                    -webkit-transform: rotate(0deg);
                }
                100% {
                    -webkit-transform: rotate(45deg);
                }
    }

    @keyframes outMiddle {
        50% {
                    -webkit-transform: rotate(0deg);
                    transform: rotate(0deg);
                }
                100% {
                    -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
                }
    }

    @-webkit-keyframes inTop {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(6px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(6px) rotate(135deg);
                }
    }

    @keyframes inTop {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                    transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(7px) rotate(0deg);
                    transform: translateY(7px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(7px) rotate(135deg);
                    transform: translateY(7px) rotate(135deg);
                }
    }

    @-webkit-keyframes outTop {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(7.25px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(7.25px) rotate(135deg);
                }
    }

    @keyframes outTop {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                    transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(7.25px) rotate(0deg);
                    transform: translateY(7.25px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(7.25px) rotate(135deg);
                    transform: translateY(7.25px) rotate(135deg);
                }
    }

    @-webkit-keyframes inBottom {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(-7px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(-7px) rotate(135deg);
                }
    }

    @keyframes inBottom {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                    transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(-7px) rotate(0deg);
                    transform: translateY(-7px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(-7px) rotate(135deg);
                    transform: translateY(-7px) rotate(135deg);
                    opacity: 0;
                }
    }

    @-webkit-keyframes outBottom {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(-7px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(-7px) rotate(135deg);
                }
    }

    @keyframes outBottom {
        0% {
                    -webkit-transform: translateY(0px) rotate(0deg);
                    transform: translateY(0px) rotate(0deg);
                }
                50% {
                    -webkit-transform: translateY(-7px) rotate(0deg);
                    transform: translateY(-7px) rotate(0deg);
                }
                100% {
                    -webkit-transform: translateY(-7px) rotate(135deg);
                    transform: translateY(-7px) rotate(135deg);
                }
    }

    .header .header-inner .header-inner_nav {
        position: absolute;
                left: -200%;
                top: 0;
                width: 75%;
                max-width: 100%;
                height: 100vh;
                -webkit-transition: var(--transition);
                -o-transition: var(--transition);
                transition: var(--transition);
                z-index: 240;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                background: var(--white);
                display: block;
    }

    .header .header-inner .header-inner_nav > ul {
        -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: start;
                -ms-flex-align: start;
                align-items: flex-start;
                -webkit-box-pack: start;
                -ms-flex-pack: start;
                justify-content: flex-start;
                height: 100%;
                position: relative;
                width: 100%;
                padding: 10px 15px;
    }

    .header .header-inner .header-inner_nav > ul > li {
        width: 100%;
                padding: 0;
                position: static !important;
    }

    .header .header-inner .header-inner_nav > ul > li + li {
        border-top: 1px solid var(--color-border);
    }

    .header .header-inner .header-inner_nav > ul > li > a {
        width: 100%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                font-weight: 600;
                padding: 10px 0;
                font-size: 1em;
                background: var(--white) !important;
    }

    .header .header-inner .header-inner_nav > ul > li > a:before {
        display: none;
    }

    .header .header-inner .header-inner_nav > ul > li > a > i {
        font-size: 1.3em;
                transition: var(--transition);
    }

    .header .header-inner .header-inner_nav > ul > li > a[aria-expanded=true] > i {
        transform: rotate(180deg);
    }

    .header .header-inner .header-inner_nav > ul > li > ul {
        position: relative;
                top: unset !important;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                z-index: 2;
                right: unset;
                width: 100%;
                box-shadow: none;
                border: 0;
    }

    .header .header-inner .header-inner_nav > ul > li > ul > li > a {
        padding-left: 0;
                display: flex;
                font-size: 1.15em;
    }

    .header .header-inner .header-inner_nav > ul > li > ul > li > a:before {
        content: "-";
                margin-right: 15px;
    }

    .header .header-inner .header-inner_nav > ul > li > ul > li {
        border-top: 1px solid var(--color-border);
    }

    .header .header-inner .header-inner_nav > ul > li > ul:before,
    .header .header-inner .header-inner_nav > ul > li > ul:after {
        display: none;
    }

    .mobile-no_relative {
        position: static;
    }

    .header .header-overlay {
        position: fixed;
                z-index: 239;
                background-color: rgba(0, 0, 0, .15);
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                -webkit-transition: var(--transition);
                -o-transition: var(--transition);
                transition: var(--transition);
    }

    .is-show_navigation .header .header-inner .header-inner_nav {
        opacity: 1;
                visibility: visible;
                pointer-events: auto;
                left: 0;
    }

    .is-show_navigation .header .header-overlay {
        opacity: 1;
                visibility: visible;
                pointer-events: auto;
    }

}

@media screen and (max-width: 767px) {

    .header .header-inner .header-inner_nav > ul {
        max-width: 540px;
    }

    .registration-card {
        overflow: hidden;
                position: relative;
                border-radius: 1em;
                padding: 15px;
                border-radius: 0;
                width: calc(100% + 30px);
                margin-left: -15px;
                margin-right: -15px;
                background-color: rgba(0, 0, 0, .4);
    }

}

.section-banner .swiper-slide {
    background: var(--primary-color);
    padding: 50px 0;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: -webkit-linear-gradient(to right, var(--color-slider));
    background: linear-gradient(to right, var(--color-slider));
}

.section-banner .swiper-slide .section-banner_title {
    font-size: 2.3em;
    font-weight: 700;
    color: var(--white);
    padding: 20px 0 15px;
    opacity: 1;
    line-height: 1.1;
    text-shadow: 0 2px 3px rgb(0 0 0 / 25%);
}

.section-banner .swiper-slide .section-banner_desc {
    font-size: 1em;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 2px 3px rgb(0 0 0 / 25%);
    line-height: 1.7;
}

.section-banner .swiper-slide .section-banner_button {
    margin-top: 30px;
}

.section-banner .swiper-slide .section-banner_button .btn {
    border-radius: 5px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 25px;
    font-size: 1.05em;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--secondary-color);
    color: var(--white);
    background: var(--secondary-color);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.section-banner .swiper-slide .section-banner_button .btn i {
    margin-right: 6px;
}

.section-banner .swiper-slide .section-banner_button .btn:hover {
    opacity: 0.8;
}

.section-banner .swiper-slide .section-banner_image img {
    max-width: 100%;
    height: auto;
}

.section-banner .slide-button-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary-color);
    background-color: var(--white);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    font-size: 2.6em;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    outline: none !important;
    border-radius: 50%;
}

.section-banner .slide-button-next {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary-color);
    background-color: var(--white);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    font-size: 2.6em;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    outline: none !important;
    border-radius: 50%;
}

.section-banner .slide-button-next.swiper-button-disabled,
.section-banner .slide-button-prev.swiper-button-disabled {
    opacity: 0
}

.section-banner .slide-button-next:hover,
.section-banner .slide-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
}

.section-banner .slide-button-prev.swiper-button-block {
    display: none;
}

@media screen and (max-width: 991px) {

    .section-banner .swiper-slide .section-banner_title {
        font-size: 1.6em;
                text-align: center;
    }

    .section-banner .swiper-slide .section-banner_desc,
    .section-banner .swiper-slide .section-banner_button {
        text-align: center;
    }

}

.section-gap {
    padding: 25px 0;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading .section-heading_title {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1.6em;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.5;
}

.section-heading .section-heading_subtitle {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.5;
}

.section-heading .section-heading_desc {
    font-size: 1em;
    line-height: 1.5;
}

.section-heading .section-heading_desc p {
    margin-bottom: 4px;
}

.section-heading .section-heading_desc p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {

    .section-heading .section-heading_title {
        font-size: 1.5em;
    }

}

.form-inner.form-inner_border {
    padding: 22px;
    border-radius: 5px;
    border: 2px solid #dee2e6;
}

.form-inner .form-group {
    margin-bottom: 0;
}

.form-inner .form-group .form-control {
    color: #121212;
    height: 35px;
    line-height: 35px;
    padding: 0 .75em 0;
    font-size: 1em;
}

.form-inner .form-group textarea.form-control {
    height: auto;
}

.form-inner .form-group .form-control::placeholder {
    color: #878787;
}

.form-inner .btn-create_row {
    font-size: .95em;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3px 0 0;
    border-color: #1e7e34;
}

.form-inner .btn-create_row i {
    margin-right: 4px;
    margin-top: -1px;
    font-size: .9em;
}

.form-inner .btn-delete_row {
    font-size: .95em;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3px 0 0;
}

.form-inner .btn-delete_row i {
    margin-right: 4px;
    margin-top: -1px;
    font-size: .9em;
}

.btn-send_card {
    padding: 12px 25px;
    font-size: 1.05em;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--secondary-color);
    border-color: #ffffff;
}

.btn-send_card:hover {
    background-color: var(--primary-color);
    border-color: #ffffff;
}

.btn-send_card i {
    margin-right: 4px;
    margin-top: -2px;
}

@media screen and (max-width: 991px) {

    .form-inner .form-group {
        margin-bottom: 10px;
    }

    .form-inner .form-group label {
        font-size: 1.15em;
                margin-bottom: 5px !important;
    }

    .form-inner .form-group .form-control {
        font-size: 1.1em;
    }

    .form-inner .btn-create_row,
    .form-inner .btn-delete_row {
        margin-top: -15px;
    }

    .form-inner.form-inner_border {
        padding: 20px;
    }

}

.article-item {
    border-radius: 4px;
    padding: 15px;
    background: var(--white);
}

.article-item .article-item_header {
    position: relative;
    padding-bottom: 65%;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.article-item .article-item_header > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-item .article-item_header > a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-item .article-item_header > a > span {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: .95em;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 4px 12px;
    border-radius: 4px 4px 4px 0
}

.article-item .article-item_body {
    padding: 15px 0 0;
}

.article-item .article-item_body .article-item_title {
    font-size: 1.1em;
    color: var(--dark);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}

.article-item .article-item_body .article-item_desc {
    font-size: 1em;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.article-item .article-item_body .article-item_view {
    text-align: right;
}

.article-item .article-item_body .article-item_view > a {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05em;
}

.article-item .article-item_body .article-item_view > a:hover {
    opacity: .8;
}

.section-account {
    background-color: var(--color-body);
    padding: 82px 0;
}

.card-account .card-header {
    background-color: var(--white);
    text-align: center;
    padding: 15px;
}

.card-account .card-header .card-title {
    margin-bottom: 0;
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.card-account .card-body .form-group .form-control {
    height: 40px;
    font-size: 1em;
}

.card-account .card-body .form-group .form-control::placeholder {
    color: #a8a2a2;
}

.card-account .card-body .card-body_social .card-body_social__divider {
    position: relative;
    height: 1px;
    width: 100%;
    background-color: var(--color-border);
    margin: 40px 0;
}

.card-account .card-body .card-body_social .card-body_social__divider span {
    font-size: .9em;
    background-color: var(--white);
    color: #838181;
    position: absolute;
    padding: 4px 8px;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-account .card-body .card-body_social__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-account .card-body .card-body_social__inner .btn {
    width: calc(50% - 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: .3s all ease;
    border-radius: .25em;
    font-size: 1em;
    text-transform: uppercase;
    height: 40px;
    font-weight: 700;
}

.card-account .card-body .card-body_social__inner .btn i {
    margin-top: .5px;
    position: relative;
    padding-right: 10px !important;
    margin-right: 10px !important;
}

.card-account .card-body .card-body_social__inner .btn i:after {
    position: absolute;
    content: "";
    display: block;
    height: 10px;
    width: 1px;
    background-color: var(--color-border);
    right: 0;
    top: calc(50% - 1px);
    transform: translateY(-50%);
}

.card-account .card-body .card-body_social__inner .btn.btn-facebook {
    background-color: #0D8AF0;
}

.card-account .card-body .card-body_social__inner .btn.btn-facebook:hover,
.card-account .card-body .card-body_social__inner .btn.btn-facebook:active {
    background-color: #0b74cb;
    color: var(--white);
}

.card-account .card-body .card-body_social__inner .btn.btn-google {
    background-color: #DE4032;
}

.card-account .card-body .card-body_social__inner .btn.btn-google:hover,
.card-account .card-body .card-body_social__inner .btn.btn-google:active {
    background-color: #c42d20;
    color: var(--white);
}

.card-account .card-body .card-body_action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.card-account .card-body .card-body_action a,
.card-account .card-body .card-body_action span {
    font-size: 14px;
    color: #5b5858;
}

.card-account .card-body .card-body_action a {
    color: var(--primary-color);
}

.card-account .card-body .card-body_action a:hover,
.card-account .card-body .card-body_action a:active {
    text-decoration: underline;
}

.section-tab {
    position: relative;
}

.section-tab .nav-tabs {
    border-bottom: 0;
    padding-bottom: 10px;
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    justify-content: center;
}

@media screen and (max-width: 991px) {

    .section-tab .nav-tabs {
        justify-content: flex-start;
    }

}

.section-tab .nav-tabs .nav-item {
    position: relative;
    margin-left: 6px;
}

.section-tab.section-page_tab .nav-tabs .nav-item {
    max-width: 200px;
}

.section-tab .nav-tabs .nav-item .nav-link {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    font-size: .95em;
    letter-spacing: 0.4px;
    color: var(--color-dark);
    -webkit-transition: .2s all ease;
    -o-transition: .2s all ease;
    transition: .2s all ease;
    padding-bottom: 5px;
    padding-top: 5px;
    white-space: nowrap;
    border: 0;
    border-radius: 4px 4px 0 0;
    padding-left: 20px;
    padding-right: 20px;
    background: #e7e6e6;
    display: block;
    overflow: hidden;
}

.section-tab .nav-tabs .nav-item:first-child {
    margin-left: 0;
}

.section-tab .nav-tabs .nav-item .nav-link.active {
    color: #fff;
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.section-tab .nav-tabs .nav-item .nav-link.active:before {
    width: 100%;
}

.section-tab_content .tab-pane.active.show {
    position: relative;
    -webkit-animation: effectTab .2s ease-in-out both;
    animation: effectTab .2s ease-in-out both;
}

@keyframes effectTab {
    0% {
        opacity: 0;
        top: 5px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@media screen and (max-width: 991px) {

    .section-tab .nav-tabs .nav-item .nav-link {
        font-size: 1em;
    }

}

.section-table {
    width: 100%;
    font-size: 14px;
    color: var(--color-dark);
    border: 1px solid #CCCCCC;
    margin-bottom: 0;
}

.section-table th,
.section-table td {
    height: 33px;
    padding: 0 10px;
    line-height: 1.2;
    vertical-align: middle;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.section-table th,
.section-table td:first-child {
    white-space: nowrap;
}

.section-table tr:nth-child(even) {
    background-color: var(--color-body);
}

@media screen and (max-width: 991px) {

    .section-table {
        font-size: 15px;
    }

}

.card-mobile-item {
    border: 0;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: .3s all ease;
    margin: 15px 0;
    background: transparent;
}

.card-mobile-item .card-header {
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background-color: var(--white);
    padding: 0;
}

.card-mobile-item .card-header a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-mobile-item .card-header img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: .3s all ease;
}

.card-mobile-item .card-body {
    text-align: center;
    padding: 8px 5px 5px;
}

.card-mobile-item .card-body > a {
    color: var(--color-dark);
    font-size: 1em;
}

.card-mobile-item:hover {
    transform: translateY(-3px);
}

.card-mobile-item:hover .card-body > a {
    color: var(--secondary-color);
}

.card-mobile-item:hover .card-header img {
    opacity: .9;
}

@media screen and (max-width: 991px) {

    .card-mobile-item .card-header img {
        max-height: 70px;
    }

    .card-mobile-item .card-body > a {
        font-size: 1.05em;
    }

}

.footer .footer-item_logo {
    margin-bottom: 15px;
}

.footer .footer-item_logo img {
    width: auto;
    max-width: 100%;
}

.footer .footer-item_text {
    color: #4a4a4a;
    padding-right: 15px;
}

.footer .footer-item_title {
    font-size: 1.2em;
    color: var(--color-dark);
    padding-bottom: 5px;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.footer .footer-item_title:before {
    position: absolute;
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #8a8a8a8a;
    left: 0;
    bottom: 0;
}

.footer .footer-item_list ul li + li {
    border-top: 1px solid #ededed;
    padding-top: 5px;
    margin-top: 5px;
}

.footer .footer-item_list ul li a {
    display: inline-block;
    font-size: 1em;
    color: #222;
}

.footer .footer-item_list ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer .footer-item_info p {
    margin-bottom: 6px;
}

.footer .footer-item_info p a {
    color: #222;
}

.footer .footer-item_info p.footer-item_info__social a {
    margin-right: 15px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border: 1px solid #d8d8d8;
    font-size: 1.1em;
    color: #222;
    background: #fff;
}

.footer .footer-item_info p.footer-item_info__social a:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-bottom .footer-bottom_copyright {
    font-size: 14px;
    color: var(--color-dark);
}

.footer-bottom .footer-dropdown .btn-dropdown {
    font-size: 13px;
    border: 1px solid var(--color-border);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.175em 0.75em;
    background: #fff;
}

.footer-bottom .footer-dropdown .dropdown-wrap .dropdown-menu {
    padding: 8px;
    z-index: 995;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    -webkit-box-shadow: 0 16px 24px rgb(51 51 51 / 8%);
    box-shadow: 0 16px 24px rgb(51 51 51 / 8%);
    border-radius: 4px;
    margin-top: 8px;
    min-width: 9em;
    font-size: 14px;
}

.footer-bottom .footer-dropdown .dropdown-wrap .dropdown-menu > a {
    padding: 6px 10px;
    font-weight: 400;
    line-height: 18px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .9em;
    color: var(--color-dark);
}

.footer-bottom .footer-dropdown .dropdown-wrap .dropdown-menu > a.active, .footer-bottom .footer-dropdown .dropdown-wrap .dropdown-menu > a:hover {
    background-color: #f4fafd;
}

.section-breadcrumb {
    background-color: var(--color-body);
}

.section-breadcrumb .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}

.section-breadcrumb .breadcrumb .breadcrumb-item {
    position: relative;
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 15px;
    padding-left: 15px;
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    position: absolute;
    color: #6c757d;
    content: "/";
    padding-right: 0;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    left: 0;
}

.section-breadcrumb .breadcrumb .breadcrumb-item a,
.section-breadcrumb .breadcrumb .breadcrumb-item span {
    display: inline-block;
    padding: 12px 0;
}

.section-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #3b3838;
    font-weight: 700;
}

.section-breadcrumb .breadcrumb .breadcrumb-item a:hover,
.section-breadcrumb .breadcrumb .breadcrumb-item a:active {
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb .breadcrumb-item span {
    color: var(--primary-color);
    font-weight: 700;
}

.section-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.section-pagination .pagination {
    margin-bottom: 0;
}

.section-pagination .pagination > li:not(:last-child) {
    margin-right: 10px;
}

.section-pagination .pagination > li > a {
    padding: 4px 12px;
    border: 1px solid #CCCCCC;
    font-weight: 600;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 33px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    color: #CCCCCC;
    border-radius: 0 !important;
}

.section-pagination .pagination > li > a:hover,
.section-pagination .pagination > li > a:active {
    background-color: var(--color-body);
    color: #232323;
}

.section-pagination .pagination > li.pageactive > a, .section-pagination .pagination > li.active > a {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: transparent;
}

.page-article_detail .article-inner_title h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 40px;
}

.page-article_detail .article-inner_desc {
    color: #545454;
}

.page-article_detail .article-inner_meta {
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #e9e9e9;
}

.page-article_detail .article-inner_meta .meta-post {
    font-size: 1em;
    font-weight: 600;
    color: rgba(33, 37, 41, .9);
    text-transform: uppercase;
}

.page-article_detail .article-inner_meta ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.page-article_detail .article-inner_meta ul li {
    position: relative;
}

.page-article_detail .article-inner_meta ul li:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
}

.page-article_detail .article-inner_meta ul li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    height: 20px;
    width: 1px;
    background: #e9e9e9;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-article_detail .article-inner_meta ul li .fb-like {
    top: -2px;
}

.page-article_detail .article-inner_meta ul li .fb-like > span {
    height: 19px !important;
    width: 130px !important;
}

.page-article_detail .article-inner_meta ul li .fb-like > span > iframe {
    width: 130px !important;
}

@media screen and (max-width: 991px) {

    .page-article_detail .article-inner_title h1 {
        font-size: 1.6em;
                line-height: 28px;
    }

}

@media screen and (max-width: 575px) {

    .page-article_detail .article-inner_meta ul {
        justify-content: flex-start;
    }

}

.section-sidebar {
    position: sticky;
    z-index: 1;
    top: 15px;
}

.section-sidebar .section-sidebar_title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.section-sidebar .section-sidebar_list .section-sidebar_list__item {
    display: flex;
    align-items: flex-start;
}

.section-sidebar .section-sidebar_list .section-sidebar_list__item .item-thumb {
    width: 100px;
    flex-shrink: 0;
    margin-right: 10px;
}

.section-sidebar .section-sidebar_list .section-sidebar_list__item .item-thumb img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    max-width: 100%;
}

.section-sidebar .section-sidebar_list .section-sidebar_list__item .item-content .item-content_title > a {
    font-size: 1em;
    font-weight: 700;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: var(--color-dark);
}

.section-sidebar .section-sidebar_list .section-sidebar_list__item .item-content .item-content_meta {
    font-size: .85em;
    color: #797878;
    margin-top: 4px;
}

.section-sidebar .section-sidebar_list .section-sidebar_list__item + .section-sidebar_list__item {
    margin-top: 10px;
}

@media screen and (max-width: 767px) {

    .section-sidebar {
        position: relative;
                top: unset;
                margin-top: 30px;
    }

    .registration-card {
        overflow: hidden;
                position: relative;
                border-radius: 1em;
                padding: 15px;
                border-radius: 0;
                width: calc(100% + 30px);
                margin-left: -15px;
                margin-right: -15px;
                background-color: rgba(0, 0, 0, .4);
    }

}

.card-cart {
    position: -webkit-sticky;
    position: sticky;
    top: 65px;
}

.card-cart .card-header .card-title {
    font-weight: 600;
    font-size: 1.4em;
    color: var(--primary-color);
}

.card-cart .card-header .card-title span {
    height: 32px;
    width: 32px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: .9em;
    color: var(--primary-color);
    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;
}

.section-cart .item:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.section-cart .cart-name {
    font-size: 1.1em;
    font-weight: 600;
}

.section-cart .cart-name .cart-price {
    font-size: 1em;
    font-weight: 600;
}

.section-cart .cart-percent {
    font-size: 90%;
}

.section-cart .cart-price {
    font-size: 1.1em;
    font-weight: 600;
    text-align: right;
}

.section-cart .cart-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    position: relative;
}

.section-cart .cart-quantity .button-quantity {
    outline: none;
    cursor: pointer;
    font-size: 0.875em;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 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;
    -webkit-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    -o-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    border: 1px solid rgba(0, 0, 0, 0.19);
    background: transparent;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--white);
    position: absolute;
}

.section-cart .cart-quantity .button-quantity.button-quantity_up {
    top: 2.5px;
    right: 3px;
}

.section-cart .cart-quantity .button-quantity.button-quantity_down {
    bottom: 2.5px;
    right: 3px;
}

.section-cart .cart-quantity .button-quantity:disabled {
    background: #f5f6f6;
    cursor: not-allowed;
    color: var(--color-dark);
}

.section-cart .cart-quantity .input-quantity {
    min-width: 60px;
    max-width: 70px;
    outline: none;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 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;
    -webkit-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    -o-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    border: 1px solid rgba(0, 0, 0, 0.19);
    background: transparent;
    color: rgba(0, 0, 0, 0.8);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: text;
    width: 100%;
    border-radius: 2px;
    height: 36px;
    padding-left: 10px;
}

.section-cart .cart-delete {
    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;
    background: var(--danger);
    color: #fff;
    font-size: .8em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.section-cart .total {
    padding: 15px 0;
    margin-bottom: 10px;
}

.section-cart .total .cart-total {
    font-size: 1.3em;
    color: var(--color-dark);
    font-weight: 600;
}

.section-cart .total .card-total-value {
    text-align: right;
    font-weight: 600;
    color: var(--danger);
    font-size: 1.3em;
}

.section-cart .subtotal {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.section-cart .subtotal + .total {
    margin-bottom: 0;
    padding: 30px 0;
}

.section-cart .subtotal .card-subtotal {
    font-size: 1.3em;
    color: var(--color-dark);
    font-weight: 600;
}

.section-cart .subtotal .card-chietkhau {
    text-align: right;
    color: #767676;
    font-size: .9em;
}

@media screen and (max-width: 767px) {

    .card-cart {
        position: relative;
                top: unset;
                margin-top: 30px;
    }

    .registration-card {
        overflow: hidden;
                position: relative;
                border-radius: 1em;
                padding: 15px;
                border-radius: 0;
                width: calc(100% + 30px);
                margin-left: -15px;
                margin-right: -15px;
                background-color: rgba(0, 0, 0, .4);
    }

}

.card-change {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: .3s all ease;
    display: block;
    align-content: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

.card-change img {
    width: auto;
    height: 60px;
    max-width: 100%;
}

.card-change svg {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    top: 7px;
    left: 8px;
    opacity: 0;
}

.card-change.active {
    border-color: var(--primary-color);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .23));
}

.card-change.active svg {
    opacity: 1;
}

.card-price {
    border-radius: 10px;
    border: 1px solid var(--color-border);
    text-align: center;
    justify-content: center;
    align-content: center;
    display: flex;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 700;
    background: #e7e6e6;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    cursor: pointer;
}

.card-price svg {
    position: absolute;
    bottom: 7px;
    left: 8px;
    height: 25px;
    width: 25px;
    border-radius: 10px;
    transition: all linear .3s;
    opacity: 0;
}

.card-price.active {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.card-price.active svg {
    opacity: 1;
}

.fixedCart {
    display: none;
}

@media screen and (max-width: 767px) {

    .fixedCart {
        width: 100%;
                display: flex;
                position: fixed;
                bottom: -300px;
                transition: .3s all ease;
                z-index: 100;
                background: var(--white);
                padding: 10px 30px;
                box-shadow: 0 -0.125em 0.25em rgb(0 0 0 / 8%) !important;
    }

    .fixedCart.show {
        bottom: 0;
    }

    .fixedCart > a {
        width: 100%;
                border-radius: 20px;
                background-color: var(--primary-color);
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 8px 24px;
                border: 0;
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                font-size: 1.1em;
                transition: .3s all ease-in-out;
    }

    .registration-card {
        overflow: hidden;
                position: relative;
                border-radius: 1em;
                padding: 15px;
                border-radius: 0;
                width: calc(100% + 30px);
                margin-left: -15px;
                margin-right: -15px;
                background-color: rgba(0, 0, 0, .4);
    }

}

.table-filter .btn {
    font-size: .95em;
    white-space: nowrap;
    height: 35px;
}

.table-filter .btn.btn-pdf {
    color: var(--white);
    background: var(--danger);
}

.table-filter .btn.btn-excel {
    color: var(--white);
    background: var(--success);
}

.recharge-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.recharge-item .recharge-item_thumb {
    border-radius: 12px;
    box-shadow: rgb(0 0 0 / 10%) 0 0 0.5em, rgb(0 0 0 / 5%) 0 0 0 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 138px;
    transition: var(--transition);
}

.recharge-item .recharge-item_thumb img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.recharge-item .recharge-item_title {
    padding: 10px 15px 0;
    color: var(--color-dark);
    font-size: 1.1em;
    text-align: center;
    line-height: 20px;
    transition: var(--transition);
}

.recharge-item:hover {
    transform: translateY(-3px);
}

.recharge-item:hover .recharge-item_thumb {
    box-shadow: rgb(0 0 0 / 35%) 0 0 0.5em, rgb(0 0 0 / 25%) 0 0 0 1px;
}

.recharge-item:hover .recharge-item_title {
    color: var(--primary-color);
}

.card-recharge {
    position: relative;
    margin-bottom: 25px;
}

.card-recharge input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.card-recharge label {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 8px 15px;
    border: 1px solid #e9e9e9;
    position: relative;
    transition: var(--transition);
    margin-bottom: 0;
    cursor: pointer;
    background-color: #fafafa;
}

.card-recharge label .text {
    font-weight: 400;
    color: #767676;
    font-size: 1em;
}

.card-recharge label .text span {
    text-decoration: line-through;
}

.card-recharge label .image {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: var(--white);
    flex-shrink: 0;
}

.card-recharge label .image img {
    width: 35px;
    height: auto;
    object-fit: contain;
}

.card-recharge label .sub {
    font-weight: 700;
    color: #000000;
    font-size: 1.2em;
    margin-left: 10px;
}

.card-recharge label svg {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: var(--transition);
    opacity: 0;
    height: 20px;
    width: 20px;
}

.card-recharge input:checked + label {
    border-color: var(--success);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .23);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .23));
}

.card-recharge input:checked + label svg {
    opacity: 1;
}

.card-recharge input:checked + label .sub {
    color: var(--success);
}

.recharge-inner_form {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
}

.card-recharge_cart {
    border-radius: 8px;
}

.block-banner {
    position: relative;
}

.block-banner .banner-item {
    display: block;
    position: relative;
    padding-bottom: 450px;
    overflow: hidden;
}

.block-banner .banner-item .banner-item_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.badge {
    display: inline-block;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: 5px;
}

@media screen and (max-width: 991px) {

    .block-banner .banner-item {
        padding-bottom: 33.333%;
    }

}

@media (min-width: 576px) {

    .modal-dialog {
        max-width: 576px;
                margin: 1.75em auto;
    }

}

.template-1-service .service-list {
    margin-right: -10px;
}

.template-1-service .service-list .service-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 1em;
    color: #343a40;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: relative;
}

.template-1-service .service-list .service-item > a img {
    width: 20px;
    margin-right: 10px;
}

.template-1-service .service-list .service-item > a:hover {
    color: var(--primary-color);
}

.template-1-service .service-list .service-item + .service-item {
    margin-top: 13.5px;
    padding-top: 13.5px;
    border-top: 1px dotted rgba(125, 125, 125, .1);
}

.template-1-faq .faq-inner .faq-collapse > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    color: #454545;
    font-size: 1em;
    font-weight: 700;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.template-1-faq .faq-inner .faq-collapse > a:before {
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    background: #454545;
    border-radius: 2px;
    width: 10px;
    height: 2px;
    top: 50%;
    right: 13px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.template-1-faq .faq-inner .faq-collapse > a:after {
    position: absolute;
    content: "";
    display: block;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    background: #454545;
    border-radius: 2px;
    width: 2px;
    height: 10px;
    top: 50%;
    right: 17px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.template-1-faq .faq-inner .faq-collapse > a[aria-expanded=true] {
    color: var(--primary-color);
}

.template-1-faq .faq-inner .faq-collapse > a[aria-expanded=true]:before {
    background: var(--primary-color);
}

.template-1-faq .faq-inner .faq-collapse > a[aria-expanded=true]:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    background: var(--primary-color);
}

.template-1-faq .faq-inner .faq-collapse .faq-content {
    background: #FCFCFC;
    padding: 15px;
}

.template-1-contact .contact-inner .contact-item + .contact-item {
    margin-top: 13.5px;
    padding-top: 13.5px;
    border-top: 1px dotted rgba(125, 125, 125, .1);
}

.template-1-contact .contact-inner .contact-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 1em;
    color: #343a40;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: relative;
}

.template-1-contact .contact-inner .contact-item > a > span {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #f3f3f3;
}

.template-1-contact .contact-inner .contact-item > a > b {
    margin-left: auto;
}

.card-game {
    padding: 3px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-game .card-header {
    background: #fff;
    padding: 0;
    border-bottom: 0;
    border-radius: 5px;
    overflow: hidden;
}

.card-game .card-header a {
    position: relative;
    display: block;
}

.card-game .card-header a .badge {
    position: absolute;
    top: 10px;
    right: 0;
    background: var(--primary-color);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 2px solid #fff;
    border-right: 0;
    height: 30px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-game .card-header a .badge.badge-new {
    background: #db1818;
    font-size: .7em;
}

.card-game .card-header a .badge b {
    font-size: 1.3em;
}

.card-game .card-header a img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.card-game .card-body {
    text-align: center;
    padding: 10px;
}

.card-game .card-body .card-title {
    margin-bottom: 5px;
}

.card-game .card-body .card-title > a {
    font-size: 1.3em;
    color: var(--color-dark);
    font-weight: 700;
}

.card-game .card-body .card-text {
    font-size: 1em;
    color: #797979;
}

.card-game .card-button {
    margin-top: 30px;
}

.card-game .card-button .btn {
    font-size: .95em;
}

.detail-alert .title {
    font-size: 1.6em;
    font-weight: 700;
}

.detail-alert .desc {
    font-size: 1.1em;
}

.detail-alert .desc ul {
    padding-left: 15px;
}

.detail-alert .desc a {
    font-weight: 700;
}

.table-games .template-1-table {
    font-size: 14px;
    background: #fff;
}

.table-games .template-1-table tr th,
.table-games .template-1-table tr td {
    vertical-align: middle;
    border-bottom-width: 1px;
}

.table-games .template-1-table .bg-theme {
    background: #f8f9fa !important;
    color: #343434;
}

.table-games .template-1-table img {
    height: 70px;
    width: 70px;
}

.table-games .template-1-table .fa-check {
    color: #2F822F;
}

.table-games .template-1-table .price {
    color: #db1818;
    font-weight: 700;
    white-space: nowrap;
}

.table-games .template-1-table .btn {
    font-size: 12px;
    white-space: nowrap;
}

.search-games .form-group .form-control {
    font-size: 14px;
}

.table-filter .btn,
.search-games .btn {
    padding: 7.5px 10px;
}

.search-games .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
}

.template-1-heading {
    margin: 0 auto 30px;
    position: relative;
}

.template-1-heading h4 {
    position: relative;
    font-size: 1.6em;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.template-1-heading h4::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 6px;
    width: 80px;
    background-color: #c3c3c3;
    border-radius: 20px;
}

.template-1-heading h4::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 6px;
    width: 30px;
    background-color: var(--primary-color);
    border-radius: 20px;
}

.template-1-heading.text-center h4:before, .template-1-heading.text-center h4:after {
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 991px) {

    .template-1-heading h4 {
        font-size: 1.5em;
    }

}

.template-1-heading-small {
    font-size: 1.2em;
    font-weight: 600;
    position: relative;
    align-self: flex-end;
    display: flex;
    flex: 1;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

.card-tintuc.flex-row {
    border-radius: 0 !important;
    border: 0;
    overflow: hidden;
}

.card-tintuc .link-cover::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    content: "";
}

.card-tintuc .card-header {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 0;
    width: 37%;
    flex-shrink: 0;
    padding: 0;
}

.card-tintuc .card-header .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff center center/cover no-repeat;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.card-tintuc .card-body {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    position: relative;
}

.card-tintuc .card-meta {
    font-size: .9em;
}

.card-tintuc .card-title {
    padding-top: 4px;
    line-height: 1.3;
    min-height: unset;
    font-size: 1.05em;
    position: relative;
    width: 100%;
    display: block;
    color: #343a40;
    font-weight: 700;
    -webkit-transition: opacity 0.24s ease-in-out;
    -o-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.card-tintuc:hover .card-title {
    color: var(--primary-color);
}

.block-service .service-item {
    position: relative;
    width: 100%;
    background: center center/cover no-repeat;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    transition: .3s all ease;
    height: 200px;
}

.block-service .service-item > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.block-banner-games .swiper-container {
    height: 450px;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

.block-banner-games .swiper-container .swiper-wrapper .swiper-slide {
    overflow: hidden;
}

.block-banner-games .slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.block-banner-games .slide-item:before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    display: block;
    background: rgba(0, 0, 0, .125);
}

.block-banner-games .slide-item > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.block-banner-games .swiper-container [class*=swiper-button] {
    position: absolute;
    bottom: 14px;
    right: 15px;
    left: unset;
    top: unset;
    opacity: 1;
    visibility: visible;
    z-index: 30;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    cursor: pointer;
}

.block-banner-games .swiper-container .swiper-button-prev {
    right: 50px;
}

.block-banner-games .swiper-container [class*=swiper-button]:after {
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
    font-size: 2em;
}

.block-banner-games .swiper-container .swiper-button-next:after {
    content: "\f105";
}

.block-banner-games .swiper-container .swiper-button-prev:after {
    content: '\f104';
}

.block-banner-games .swiper-pagination {
    text-align: right;
    padding-right: 100px;
    bottom: 20px;
}

.block-banner-games .swiper-pagination-bullet {
    background: transparent !important;
    display: inline-block;
    width: auto !important;
    height: auto !important;
    color: #919191;
    font-size: 14px;
    padding-bottom: 2px;
    font-weight: 700;
    margin: 0 8px !important;
    border: 0 !important;
    border-bottom: 2px solid #919191 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-transition: .3s all ease !important;
    -o-transition: .3s all ease !important;
    transition: .3s all ease !important;
    overflow: hidden;
    opacity: 0.7;
    outline: none !important;
    position: relative;
}

.block-banner-games .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #fff !important;
    border-bottom: 2px solid #fff !important;
}

@media screen and (max-width: 768px) {

    .search-games .btn {
        width: 100%;
    }

    .table-games {
        margin-top: 15px;
    }

    .table-games .template-1-table tr th, .table-games .template-1-table tr td {
        min-width: 100px;
    }

    .block-service .service-item {
        height: unset;
                padding-bottom: 100%;
    }

    .block-banner-games .swiper-container {
        height: 200px;
    }

}

.account-game {
    padding-top: 50px;
}

.account-game_id {
    font-weight: 700;
    font-size: 2em;
    color: #000;
    margin-bottom: 10px;
}

.account-game_price {
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.account-game_price del {
    margin-left: 15px;
    font-size: 0.7em;
    color: #a9a9a9;
    font-weight: 400;
}

.account-game_description {
    font-size: 1.1em;
    color: #413d3d;
    line-height: 1.4;
    margin-top: 15px;
}

.account-game_description ul {
    padding-left: 16px;
    margin-bottom: 0;
}

.account-game_buttons {
    margin-top: 40px;
}

.account-game_buttons .btn {
    min-width: 180px;
    font-weight: 700;
    padding-top: .45em;
    padding-left: 1em;
    padding-right: 1em;
}

.account-game_header .account-game_image {
    background: #e9e9e9;
    border: 1px solid #e9e9e9;
    padding: 4px;
    margin: 30px 0 0;
}

.account-game_body {
    padding: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    position: relative;
    margin: 30px 0;
    background: #f3f1f1;
}

.account-game_body .account-game_body__desc {
    font-weight: 700;
    color: #666;
    font-size: 1.1em;
}

.account-game_body .account-game_body__desc span {
    color: var(--secondary-color);
}

.account-game_images .account-game_image {
    max-width: 70%;
    margin: 0 auto;
    background: #e9e9e9;
    border: 1px solid #e9e9e9;
    padding: 4px;
}

.account-game_images .account-game_image + .account-game_image {
    margin-top: 15px;
}

.form-inner .form-group .form-control {
    height: 33px !important;
}

@media screen and (max-width: 991px) {

    .account-game_images .account-game_image {
        max-width: 100%;
    }

}

@media screen and (max-width: 767px) {

    .account-game_id {
        text-align: center;
                font-size: 1.7em;
    }

    .account-game_price {
        text-align: center;
                font-size: 1.4em;
    }

    .account-game_mobile {
        margin-bottom: 30px;
    }

    .account-game_buttons {
        justify-content: center;
                margin-top: 30px;
    }

    .account-game_buttons .btn {
        width: calc(50% - 10px);
    }

    .registration-card {
        overflow: hidden;
                position: relative;
                border-radius: 1em;
                padding: 15px;
                border-radius: 0;
                width: calc(100% + 30px);
                margin-left: -15px;
                margin-right: -15px;
                background-color: rgba(0, 0, 0, .4);
    }

}

.card-change_new {
    transition: .3s all ease;
}

.card-change_new .card-change {
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
}

.card-change_new .card-change img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.card-change_new .card-change_title {
    text-align: center;
    padding: 8px 5px 5px;
}

.card-change_new .card-change_title > a {
    color: var(--color-dark);
    font-size: 1em;
}

.card-change_new:hover {
    transform: translateY(-3px);
}

.card-change_new:hover .card-change_title > a {
    color: var(--secondary-color);
}

.card-change_new:hover .card-change img {
    opacity: .9;
}

.section-tab .nav-tabs .nav-item .nav-link {
    border-radius: 4px;
}

@media screen and (max-width: 991px) {

    .section-tab .nav-tabs {
        display: flex;
                flex-direction: row;
                flex-wrap: wrap;
    }

    .section-tab .nav-tabs .nav-item {
        margin-right: 8px;
                margin-bottom: 5px;
                margin-left: 0 !important;
    }

    .section-tab .nav-tabs .nav-item .nav-link {
        display: inline-flex;
                width: auto;
                padding-left: 10px;
                padding-right: 10px;
    }

}

@media screen and (max-width: 991px) {

    .header .header-inner .header-inner_logo .header-inner_mobile__user > a {
        font-size: 1em;
                height: auto;
                width: auto;
                border-radius: 4px;
                padding: 8px 5px 8px 10px;
    }

    .header .header-inner .header-inner_logo .header-inner_mobile__user > a > i {
        margin-right: 5px;
                position: relative;
                top: -1px;
    }

}

.header-wrap {
    background: rgba(255, 255, 255, 1);
//height: 80px; position: fixed; z-index: 10;
    width: 100%;
    left: 0;
}

.header-wrap + .main {
    padding-top: 85px;
}

.header-wrap .logo {
    margin: 0;
    display: inline-block;
    max-width: 205px;
    padding-top: 15px;
}

.header-wrap .logo img {
    max-width: 100%;
    margin-top: 8px;
    height: 40px;
    margin-right: 25px;
}

.header-wrap .navigation {
    display: inline-block;
    z-index: 99;
    position: relative;
    vertical-align: top;
    padding-top: 15px;
}

.header-wrap .navigation > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.header-wrap .navigation > ul > li {
    display: inline-block;
}

.header-wrap .navigation > ul > li > a {
    text-decoration: none;
    display: block;
    padding: 15px 8px;
    letter-spacing: -0.8px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-dark) !important;
}

.header-wrap .navigation > ul > li > a:before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    margin: auto;
    height: 2px;
    background: var(--primary-color);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header-wrap .navigation ul > li > ul > li {
    display: block;
    float: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.header-wrap .navigation ul > li > ul > li:last-child {
    border-bottom: 0;
}

.header-wrap .navigation ul > li > ul > li > a {
    color: #666;
    display: block;
    padding: 5px 15px;
    text-decoration: none;
}

@media screen and (min-width: 768px) {

    .header-wrap .navigation > ul > li > ul {
        position: absolute;
                list-style: none;
                padding: 0;
                margin: 0;
                margin-top: -2px;
                min-width: 180px;
                text-align: left;
                background: #fff;
                box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
                border-radius: 0;
                display: block;
                visibility: hidden;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                opacity: 0;
                filter: alpha(opacity=0);
                -webkit-transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
                -webkit-transition: opacity 0.4s ease, visibility 0.4s linear 0s, -webkit-transform 0.4s ease;
                transition: opacity 0.4s ease, visibility 0.4s linear 0s, -webkit-transform 0.4s ease;
                -webkit-transition: opacity .4s ease, visibility .4s linear 0s, -webkit-transform .4s ease;
                transition: opacity .4s ease, visibility .4s linear 0s, -webkit-transform .4s ease;
                transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
                transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s, -webkit-transform .4s ease;
                transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s linear 0s, -webkit-transform 0.4s ease;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                -webkit-transform: translateY(20px);
                -ms-transform: translateY(20px);
                transform: translateY(20px);
                border: 0px solid transparent;
                border-top: 2px solid var(--primary-color);
                z-index: 1;
    }

    .header-wrap .navigation ul > li > ul:before {
        content: " ";
                border-bottom: 4px dashed var(--primary-color);
                border-right: 4px solid transparent;
                border-left: 4px solid transparent;
                position: absolute;
                left: 20px;
                top: -6px;
    }

    .header-wrap .navigation ul > li > ul > li > a:hover {
        background: var(--primary-color) !important;
                color: #f1f1f1;
    }

    .header-wrap .navigation > ul > li:hover > ul {
        -webkit-opacity: 1;
                -moz-opacity: 1;
                opacity: 1;
                filter: alpha(opacity=100);
                -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                transform: translateY(0);
                visibility: inherit;
    }

    .header-wrap .navigation > ul > li > a:hover::before {
        width: 100%;
    }

}

.header-wrap .navigation > ul > li > span {
    display: none;
}

.header-wrap .user-header {
    margin-top: 8px;
    padding-top: 15px;
    float: right;
    position: relative;
    z-index: 10;
}

.header-wrap .user-header .btn {
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0px 12px;
    margin-right: 8px;
}

.header-wrap .user-header .btn > i {
    margin-right: 6px;
    line-height: 30px;
    vertical-align: middle;
}

.header-wrap .user-header .btn.btn-second {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.header-wrap .user-header .btn.btn-third {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.header-wrap .user-header .btn.btn-third:hover {
    background-color: #6C757D;
    border-color: #6C757D;
}

.header-wrap .loginBox {
    color: var(--color-dark);
    padding-top: 15px;
    float: right;
    position: relative;
    z-index: 1;
}

.header-wrap .loginBox .navi-wrapper {
    margin-left: 25px;
}

.header-wrap .loginBox .navi-wrapper .navigation {
    zoom: 1;
    display: inline-block;
    z-index: 99;
    position: relative;
    vertical-align: middle;
    padding-top: 0;
}

@media screen and (max-width: 1024px) {

    .header-wrap .logo {
        max-width: 210px;
                padding: 0;
                border-radius: 4px;
                margin: 15px auto 0;
    }

}

@media screen and (max-width: 768px) {

    .header-wrap .logo {
        display: block;
                text-align: center;
    }

    .header-wrap .navigation .navigation_icon {
        -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
                display: block;
                position: absolute;
                background: transparent;
                z-index: 9999;
                width: 30px;
                height: 30px;
                text-align: center;
                top: -33px;
                left: 10px;
    }

    .header-wrap .navigation .navigation_icon:before,
    .header-wrap .navigation .navigation_icon:after,
    .header-wrap .navigation .navigation_icon > span {
        display: block;
                width: 20px;
                height: 1px;
                background-color: var(--color-dark);
                margin: 5px auto;
                -webkit-transition: all 0.6s ease;
                transition: all 0.6s ease;
                -webkit-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                transform: rotate(0deg);
                opacity: 1;
    }

    .header-wrap .navigation .navigation_icon:before,
    .header-wrap .navigation .navigation_icon:after {
        content: "";
    }

    .header-wrap .navigation.nav-open .navigation_icon > span {
        -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
                opacity: 0;
    }

    .header-wrap .navigation.nav-open .navigation_icon:after {
        -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
                margin-top: -12px;
    }

    .header-wrap .navigation.nav-open .navigation_icon:before {
        -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                margin-top: 10px;
    }

    .header-wrap .navigation > ul {
        display: block;
                position: fixed;
                top: 0;
                left: -220px;
                bottom: 0;
                height: 100%;
                width: 220px;
                background: #fff;
                box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
                padding-top: 70px;
    }

    .header-wrap .navigation > ul > li {
        position: relative;
                float: none;
                display: block;
                text-align: left;
    }

    .header-wrap .navigation > ul > li:first-child {
        border-top: 1px solid #eaeaea;
    }

    .header-wrap .navigation > ul > li > a {
        padding: 8px 4px;
                font-size: 14px;
                color: var(--color-dark) !important;
                text-transform: uppercase;
                font-weight: 500;
                border-bottom: 1px solid #eaeaea;
                display: block;
    }

    .header-wrap .navigation > ul > li > a > i {
        display: none;
    }

    .header-wrap .navigation > ul > li > span {
        color: var(--color-dark);
                text-transform: uppercase;
                font-weight: 500;
                padding: 8px 4px;
                font-size: 14px;
                position: absolute;
                top: 0px;
                right: 0px;
                padding-top: 8px;
                padding-left: 17px;
                width: 40px;
                height: 37px;
                background: transparent;
                border-left: 1px solid #eaeaea;
                border-bottom: none;
                display: block;
    }

    .header-wrap .navigation > ul > li > ul {
        padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;
    }

    .header-wrap .navigation > ul > li.hasSub > ul {
        display: none;
    }

    .header-wrap .navigation > ul > li.show > ul {
        display: block;
    }

    .header-wrap .navigation > ul > li > ul > li > a {
        padding-left: 20px;
                display: block;
                background: #e8e8e8;
                border-bottom: 1px solid #eaeaea;
                background-color: #fff;
    }

    .header-wrap .navigation .backdrop_nav {
        background: rgba(0, 0, 0, 0.3);
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 9999;
                display: none;
    }

    .header-wrap .navigation.nav-open .navigation_icon {
        left: 220px;
    }

    .header-wrap .navigation.nav-open .backdrop_nav {
        display: block;
    }

    .header-wrap .navigation.nav-open > ul {
        left: 0;
                z-index: 9999;
                overflow: auto;
    }

    .account-mobile {
        position: absolute;
                z-index: 1000;
                display: inline-block;
                margin: 5px 0;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                top: 25px;
                right: 10px;
                opacity: 1;
    }

    .account-mobile .btn {
        display: inline-block;
                margin-bottom: 0;
                font-weight: 400;
                text-align: center;
                white-space: nowrap;
                vertical-align: middle;
                -ms-touch-action: manipulation;
                touch-action: manipulation;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                background-image: none;
                border: 2px solid var(--primary-color);
                color: var(--primary-color);
                border-radius: 3px;
                padding: 2px 5px !important;
                font-size: 12px;
                line-height: 1.5;
                background: transparent;
    }

    .account-mobile_nav {
        background: #ffffff;
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                overflow: auto;
                width: 220px;
                z-index: 9999;
                -webkit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                -webkit-transform: translateX(-220px);
                -ms-transform: translateX(-220px);
                transform: translateX(-220px);
                box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
                color: #000;
    }

    .account-mobile_nav .brand-block {
        padding: 10px 40px;
                padding-bottom: 35px;
                border-radius: 0px 0px 0% 100%;
                margin-bottom: 20px;
    }

    .account-mobile_nav .brand-block .navbar-brand_logo {
        float: left;
                height: 50px;
                padding: 15px 15px;
                font-size: 18px;
                line-height: 20px;
                color: #fff;
    }

    .account-mobile_nav .brand-block .navbar-brand_logo img {
        max-width: 100%;
    }

    .account-mobile_nav .content-menu {
        padding: 15px 0;
    }

    .account-mobile_nav .content-menu ul.list-menu {
        margin: 0;
                padding: 0;
                list-style: none;
    }

    .account-mobile_nav .content-menu ul.list-menu > li {
        border-bottom: 1px solid #ffffff1a;
                border-top: 1px solid #0000000f;
    }

    .account-mobile_nav .content-menu ul.list-menu > li h4 {
        font-size: 18px;
                padding-left: 5px;
                margin: 10px 0;
                font-weight: 500;
    }

    .account-mobile_nav .content-menu ul.list-menu > li > a {
        display: inline-block;
                padding: 5px 10px;
                color: #000;
                font-size: 15px;
    }

    .account-mobile_nav.is-show {
        -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                transform: translateX(0);
    }

    .footer-bottom .footer-bottom_copyright,
    .footer-bottom .footer-dropdown .btn-dropdown {
        font-size: 13.5px;
    }

}

@media screen and (min-width: 768px) {

    .account-mobile {
        display: none !important;
    }

    .header-wrap .user-header {
        display: block !important;
                padding-top: 10px;
    }

    .header-sort > .container {
        display: flex;
                flex-wrap: wrap;
    }

    .header-sort > .container > * {
        -ms-flex: 0 0 auto;
                flex: 0 0 auto;
                width: auto;
                max-width: 100%;
    }

    .header-sort > .container > .logo {
        order: 1;
                margin-left: 0;
                margin-right: 0;
                margin-top: 5px;
    }

    .header-sort > .container > .user-header,
    .header-sort > .container > .loginBox {
        order: 2;
                margin-left: auto;
    }

    .header-sort > .container > .navigation {
        order: 3;
                padding-top: 5px;
    }

    .header-sort .navigation > ul > li > a {
        padding: 8px;
    }

}

@media screen and (min-width: 576px) and (max-width: 991px) {

    .header-wrap > .container {
        position: relative;
    }

    .container {
        max-width: 95%;
    }

    .account-mobile {
        top: 8px;
    }

}

@media screen and (max-width: 991px) {

    .row-mb-5 {
        margin-top: -5px;
                margin-left: -5px;
                margin-right: -5px;
    }

    .row-mb-5 > [class*=col] {
        padding: 5px;
    }

    .card-price {
        padding: 10px;
                margin-bottom: 0;
                line-height: 1.4;
    }

    .card-price svg {
        width: 18px;
                height: 18px;
                bottom: 6px;
                left: 7px;
    }

}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    padding: 0.75em 15px;
    border-radius: 0.75em;
    font-weight: 400;
    font-size: 1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(90deg, #bc0008 0%, #ff4d4d 70%, #ffffff 110%);
    color: white;
    border:0
}

.btn-primary:hover {
    background: linear-gradient(90deg, #bc0008 0%, #ff4d4d 70%, #ffffff 110%);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px);
}

.btn-link {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-link:hover {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.desktop-hidden {
    display: none;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: block;
    height: auto;
}

.header-top {
    background: #ffffff;
    padding: 10px 0;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-size: 1.625em;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.logo img {
    width: auto;
    height: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-info-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #133d70;
    font-size: 0.875em;
    font-weight: 600;
}

.info-item .material-symbols-outlined {
    font-size: 1.1em;
    color: var(--text-muted);
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-signup {
    background-color: #ffb822; 
    color: #000 !important;
    border-radius: 999px;
    padding: 8px 20px;
}

.btn-signup:hover {
    background-color: #e6a014;
}

.btn-login {
    background-color: var(--secondary-color); 
    color: #ffffff !important;
    border-radius: 999px;
    padding: 8px 20px;
}

.btn-login:hover {
    background-color: #0f3059;
}

.nav-menu {
    background-color: var(--primary-color);
}

.nav-menu .container-flex {
    height: 50px;
}

.nav-list {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    margin: 0;
}

.nav-menu .nav-link {
    color: #ffffff !important;
    font-size: 0.9375em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
}

.nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}

.header-search {
    display: flex;
    align-items: center;
    position: relative;
}

.search-toggle-btn {
    color: #ffffff;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-expand {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 999px;
    overflow: hidden;
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    z-index: 10;
}

.search-expand.active {
    width: 300px;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-expand-inner {
    display: flex;
    width: 100%;
    padding: 5px 15px;
    align-items: center;
    gap: 10px;
}

.search-expand-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875em;
    background: transparent;
    color: #0f172a;
}

.search-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    color: var(--primary-color);
}

.has-mega-menu {
    position: relative;
}

.mega-menu-v2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #f8fafc;
    box-shadow: 0 40px 100px -12px rgba(0, 0, 0, 0.2);
    border-radius: 1.5em;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 900px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.has-mega-menu:hover .mega-menu-v2 {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
}

@media (max-width: 991px) {

    .mega-menu-grid {
        grid-template-columns: 1fr;
                padding: 10px;
                gap: 10px;
    }

}

.mega-tabs {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 20px;
}

.mega-tab-btn {
    padding: 15px 20px;
    font-size: 0.75em;
    font-weight: 800;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-transform: uppercase;
}

.mega-tab-btn span {
    font-size: 1.25em;
}

.mega-tab-btn:hover {
    color: var(--primary-color);
}

.mega-tab-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #fff5f5;
}

.mega-tab-content {
    display: none;
    padding: 30px;
}

.mega-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 300px;
    gap: 30px;
}

.mega-column-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-service-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 1em;
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
}

.mega-service-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.ms-image {
    width: 80px;
    height: 80px;
    border-radius: 0.75em;
    overflow: hidden;
    flex-shrink: 0;
}

.ms-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-content {
    flex: 1;
}

.ms-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ms-badge.hot {
    background: #fee2e2; color: #ef4444;
}

.ms-badge.pemium {
    background: #fef3c7; color: #d97706;
}

.ms-title {
    font-size: 0.9375em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.ms-desc {
    font-size: 0.75em;
    color: var(--text-muted);
    line-height: 1.4;
}

.mega-promo {
    height: 100%;
}

.mega-promo-card {
    position: relative;
    height: 100%;
    border-radius: 1em;
    overflow: hidden;
}

.mega-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: white;
}

.mega-promo-overlay p {
    font-size: 0.75em; font-weight: 700; margin-bottom: 10px;
}

.mega-promo-overlay h3 {
    font-size: 1.5em; font-weight: 700; margin-bottom: 20px; line-height: 1.2;
}

.hero-v2 {
    position: relative;
    overflow: hidden;
    max-width: 1920px;
    margin: auto;
}

.hero-slider-v2 {
    width: 100%;
}

@media (max-width: 991px) {

}

.hero-slide-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fdf2d7;
    color: #b45309;
    border-radius: 999px;
    font-size: 0.8125em;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-badge-v2 i {
    color: #f59e0b;
}

.hero-heading-v2 {
    font-size: 3.5em;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-heading-v2 span {
    color: #f59e0b;
}

.hero-desc-v2 {
    font-size: 1.125em;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-btns-v2 {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-yellow {
    background: #ffb822;
    color: #000;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(255, 184, 34, 0.3);
}

.btn-yellow:hover {
    background: #f59e0b;
}

.btn-outline-v2 {
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid #e2e8f0;
}

.btn-outline-v2:hover {
    background: #f8fafc;
}

.hero-stats-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.stat-card-v2 {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-icon-v2 {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.stat-info-v2 h4 {
    font-size: 1em;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.stat-info-v2 p {
    font-size: 0.75em;
    color: var(--text-muted);
    margin: 0;
}

.hero-visual-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-main-banner-v2 {
    width: 100%;
}

.hero-note-v2 {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.hero-note-v2 h5 {
    font-size: 0.875em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.hero-note-v2 p {
    font-size: 0.75em;
    color: var(--text-muted);
    margin: 0;
}

.hero-slider-v2 .swiper-pagination {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider-v2 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
}

.hero-slider-v2 .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 4px;
    background: #f59e0b;
    opacity: 1;
}

.hero-slider-v2 .swiper-button-next,
.hero-slider-v2 .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: #0f172a;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
}

.hero-slider-v2 .swiper-button-next:after,
.hero-slider-v2 .swiper-button-prev:after {
    font-size: 1em;
    font-weight: 700;
}

.hero-slider-v2 .swiper-button-next:hover,
.hero-slider-v2 .swiper-button-prev:hover {
    background: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.hero-slider-v2 .swiper-button-prev {
    left: 10px;
}

@media (max-width: 1024px) {

    .hero-slider-v2 {
        padding-top: 0;
    }

    .hero-slider-v2 .swiper-button-next,
    .hero-slider-v2 .swiper-button-prev {
        display: none;
    }

}

@media (max-width: 1024px) {

    .hero-heading-v2 {
        font-size: 2.5em;
    }

    .hero-slide-item {
        grid-template-columns: 1fr; gap: 40px; text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-btns-v2 {
        justify-content: center;
    }

    .hero-stats-v2 {
        grid-template-columns: 1fr; gap: 10px;
    }

}

@media (max-width: 768px) {

    .hero-heading-v2 {
        font-size: 2em;
    }

}

.registration-container {
    margin-top: 40px; position: relative; z-index: 10;
}

.desktop-floating-cards {
    position: absolute;
    top: 0; left: 15px; right: 15px; bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fc-1 {
    animation:float 6s ease-in-out infinite; top: -20px; left: -30px; width: 140px; height: 90px; transform: rotate(-10deg);
}

.fc-2 {
    animation:float  8s ease-in-out infinite; bottom: -15px; left: 40px; width: 100px; height: 100px; transform: rotate(5deg);
}

.fc-3 {
    animation:float 10s ease-in-out infinite; top: -30px; right: 80px; width: 120px; height: 120px; transform: rotate(12deg);
}

.fc-4 {
    animation:float 12s ease-in-out infinite; top: 30%; right: -15px; width: 110px; height: 110px; transform: rotate(-8deg);
}

.fc-5 {
    animation:float 14s ease-in-out infinite; bottom: -50px; right: -20px; width: 150px; height: 80px; transform: rotate(-5deg);
}

@media (max-width: 991px) {

    .fc-1 {
        width: 100px; height: 60px;left: 0; top:20%
    }

    .fc-2 {
        width: 80px; height: 80px;left: 10px;
    }

    .fc-3 {
        width: 100px; height: 100px;right: 0; top:20%
    }

    .fc-4 {
        width: 90px; height: 90px;left: 10%;
    }

    .fc-5 {
        width: 120px; height: 60px;right: 30px;
    }

}

.registration-card {
    margin-top: 20px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    z-index: 12;
}

.registration-title {
    line-height: 1.2;
    font-weight: 600;
    font-size: 3.5em;
    background: linear-gradient(108deg, #e77c58 3.84%, #ff480f 22.43%, #d60326 60.36%, #7d289d 96.59%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.registration-desc {
    color: #222; font-size: 1.125em;
}

.registration-actions {
    display: flex; gap: 15px; align-items: center; justify-content: center;
}

.reg-btn {
    flex: 1; justify-content: center;
}

.registration-actions .btn {
    max-width: 200px;
    width: 100%;
    border-radius: 999px;
    font-size: 1.5em;
}

.trust-box {
    display: inline-flex;
  align-items: center;
  gap: 16px;
    width: fit-content;
    justify-content: center;
  background: #111;
  color: #fff;
    margin: 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  text-align: left;
}

.avatars {
    display: flex;
  align-items: center;
}

.avatars img {
    width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid #111;
  margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.trust-text {
    display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-text strong {
    font-size: 18px;
  font-weight: 700;
}

.trust-text span {
    font-size: 13px;
  color: #cfcfcf;
}

.faq-section {
    padding-bottom: 30px;
}

.faq-section .section-header {
    padding-top: 
35px;margin-top: 35px;border-top: 1px solid #e2e8f0;
}

.section-header {
    text-align: center;
}

.section-label {
    display: none;
}

.section-header .section-title {
    font-size: 1.75em; 
    font-weight: 500; 
    margin-bottom: 1em; 
    color: #0f172a;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: #e5e5e5;
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-desc {
    color: #222; margin: 0 auto; font-size: 1.125em; font-weight: 400;
}

.service-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 991px) {

    .service-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
                gap: 15px;
    }

}

.service-card-v3 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    text-decoration: none !important;
    color: white !important;
    min-height: 160px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card-v3:hover {
    transform: translateY(-5px);
}

.service-card-v3.text-dark {
    color: #475569 !important;
}

.service-card-v3.text-dark h3 {
    color: #0f172a !important;
}

.sc-v3-content {
    flex: 1;
    padding: 24px 20px;
    padding-right: 0;
    max-width: 60%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.sc-v3-content h3 {
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    color: white;
}

.sc-v3-content p {
    font-size: 0.8125em;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.9;
}

.sc-v3-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: white;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75em;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sc-v3-btn .material-symbols-outlined {
    font-size: 1em;
}

.text-red {
    color: var(--primary-color) !important;
}

.text-orange {
    color: #df6635 !important;
}

.text-purple {
    color: #9063d8 !important;
}

.text-brown {
    color: #b6724a !important;
}

.sc-v3-image {
    position: absolute;
    right: 0;
    top: 5%;
    width: 55%;
    height: 90%;
    z-index: 1;
    pointer-events: none;
}

.sc-v3-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sc-grad-1 {
    background: linear-gradient(135deg, #e16b57 0%, #d84534 100%);
}

.sc-grad-2 {
    background: linear-gradient(135deg, #f7ecd9 0%, #ebd4ba 100%);
}

.sc-grad-3 {
    background: linear-gradient(135deg, #dfecfa 0%, #bacced 100%);
}

.sc-grad-4 {
    background: linear-gradient(135deg, #f0a266 0%, #e36a39 100%);
}

.sc-grad-5 {
    background: linear-gradient(135deg, #bea2ee 0%, #906cdc 100%);
}

.sc-grad-6 {
    background: linear-gradient(135deg, #cd976e 0%, #bb744b 100%);
}

@media (max-width: 768px) {

    .service-card-v3 {
        min-height: 140px; flex-direction: column;
    }

    .sc-v3-content {
        max-width: 100%; padding: 15px;
    }

    .sc-v3-content h3 {
        font-size: 1.125em; margin-bottom: 4px;
    }

    .sc-v3-content p {
        font-size: 0.7em; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }

    .sc-v3-btn {
        font-size: 0.65em; padding: 4px 8px;
    }

    .sc-v3-btn .material-symbols-outlined {
        font-size: 0.8em;
    }

    .sc-v3-image {
        width: 100%; right: -5px; height: 100%; top: 0; position: static;
    }

}

.why-choose-section {
    position: relative;
}

.why-choose-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 4em;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon-box {
    width: 96px; 
    height: 96px; 
    background: #f1f5f9; 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.25em; 
    color: #475569; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.why-choose-icon-box span {
    font-size: 3em;
}

.why-choose-item:hover .why-choose-icon-box {
    background: var(--primary-color); 
    color: white; 
    transform: rotate(15deg);
}

.why-choose-item.item-reverse:hover .why-choose-icon-box {
    transform: rotate(-15deg);
}

.why-choose-title {
    font-size: 1.5em; font-weight: 600; margin-bottom: 0.75em; color: #0f172a;
}

.why-choose-desc {
    color: var(--text-muted); font-size: 0.875em; line-height: 1.625; max-width: 20em; margin: 0 auto;
}

.registration-box {
    position: relative;
    padding: 60px 0;
}

.process-section {
    position: relative; padding: 60px 0; color: #0f172a;
}

@media (max-width: 768px) {

    .process-section {
        padding:  0;
                overflow: hidden;
    }

    .registration-desc {
        color: #fff;
    }

    .process-grid {
        flex-direction: column;
                gap: 25px;
                align-items: center;    
                margin-top: 2em;
    }

    .process-grid::before {
        display: none;
    }

    .process-item {
        width: 100%;
                max-width: 340px;
                background: #ffffff;
                padding: 30px 20px;
                border-radius: 24px;
                position: relative;
                overflow: hidden; 
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
                border: none;
    }

    .process-item::before {
        content: "";
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: conic-gradient(
                    transparent, 
                    var(--primary-color), 
                    #006aff, 
                    #f59e0b, 
                    transparent 40%
                );
                animation: rotate-border 4s linear infinite;
                z-index: 1;
    }

    .process-item::after {
        content: "";
                position: absolute;
                inset: 3px;
                background: #ffffff;
                border-radius: 21px;
                z-index: 2;
    }

    @keyframes rotate-border {
        100% { transform: rotate(1turn); }
    }

    .process-step, .process-title, .process-desc {
        position: relative;
                z-index: 3;
    }

    .process-title {
        font-size: 1.3em;
                margin-bottom: 0.5em;
    }

    .process-desc {
        font-size: 1em;
                padding: 0;
    }

    .process-step {
        width: 50px;
                height: 50px;
                font-size: 1.1em;
                margin-bottom: 12px;
    }

}

.process-grid {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 4em auto 0;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.process-item {
    text-align: center; 
    position: relative; 
    z-index: 2;
    flex: 1;
}

.process-step {
    width: 64px; 
    height: 64px; 
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1em; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 15px; 
    font-size: 1.25em; 
    font-weight: 950; 
    color: #475569;
    transition: var(--transition);
}

.process-item:last-child .process-step {
    background: var(--primary-color);
    color:white;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4);
}

.process-item:hover .process-step {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color:white;
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-5px);
}

.process-title {
    font-size: 1.125em; font-weight: 700; margin-bottom: 0.75em; color: #1e293b;
}

.process-desc {
    color: var(--text-muted); font-size: 0.875em; line-height: 1.6; padding: 0 1em;
}

.process-section .section-title {
    color: #0f172a;
}

.process-section .section-desc {
    color: var(--text-muted); font-size: 1.125em;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4em;
}

.reviews-section .section-header {
    border-top: 1px solid #e2e8f0;
     padding-top: 35px;
}

.swiper-nav {
    display: flex; gap: 1em; margin-bottom: 1em;
}

.swiper-btn {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    transition: var(--transition);
}

.swiper-btn:hover {
    background: #e2e8f0; color: var(--primary-color);
}
@media (min-width: 768px) {
    .review-slider {
       margin-top: 20px;
    }
}
.review-card {
    position: relative;
    height: auto;
    transition: var(--transition);
}

.review-dark {
    background: #0f172a;
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.review-dark .reviewer-name {
    color: white;
}

.review-dark .review-text {
    color: #cbd5e1;
}

.quote-icon {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.reviewer-meta {
    display: flex; align-items: center; gap: 1em;
}

.review-dark .reviewer-meta {
    border-color: rgba(255,255,255,0.1);
}

.reviews-section .swiper-pagination {
    margin-top: 20px;position: static;
}

.reviews-section .swiper-pagination-bullet {
    width: 10px;
  height: 10px;
}

.reviews-section .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.reviewer-img {
    width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(45deg, #d3c7a1, #9c8e65);
}

.rating-stars {
    color: #fbbf24; margin-bottom: 15px; display: flex; gap: 2px;
}

.rating-stars span {
    font-size: 1em;
}

.review-text {
    font-size: 1em; color: #475569; font-style: italic; line-height: 1.7;
}

.reviewer-name {
    font-weight: 700; color: #0f172a; margin-bottom: 0.125em;
}

.reviewer-role {
    font-size: 0.75em; color: var(--primary-color); text-transform: uppercase; font-weight: 600;
}

.about-section {
    padding: 40px 0 0; background: #f8fafc;
}

@media (max-width: 768px) {

    .about-section {
        padding: 30px 0;
    }

}

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4em; align-items: center;
}

.about-visuals {
    position: relative;
}

.about-bento {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}

.bento-col {
    display: flex; flex-direction: column; gap: 15px;
}

.bento-col.spacer-top {
    margin-top: 20px;
}

.about-img {
    width: 100%; border-radius: 15px; object-fit: cover; box-shadow: 0 25px 50px rgba(0,0,0,0.1); transition: transform 0.5s; cursor: pointer; border: 4px solid white;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-stat-box {
    background: var(--primary-color); 
    padding: 20px; 
    border-radius: 15px; 
    color: white; 
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.3);
}

.stat-num {
    font-size: 3em; font-weight: 950; display: block; line-height: 1; margin-bottom: 0.25em;
}

.stat-label {
    font-size: 0.75em; text-transform: uppercase; font-weight: 700; opacity: 0.9; letter-spacing: 0.05em;
}

.about-card-dark {
    background: #0f172a; 
    padding: 20px; 
    border-radius: 15px; 
    color: white; 
    box-shadow:  0 25px 50px rgba(0,0,0,0.2);
}

.about-card-dark span {
    font-size: 3em; color: var(--primary-color); margin-bottom: 1em; display: block;
}

.about-card-dark h4 {
    margin-bottom: 0.5em; font-size: 1.25em; font-weight: 700;
}

.about-card-dark p {
    color: #94a3b8; font-size: 0.875em; line-height: 1.5;
}

.about-tag {
    color: var(--primary-color); 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.75em; 
    letter-spacing: 0.15em; 
    margin-bottom: 15px; 
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.about-tag::before {
    content: ""; width: 24px; height: 2px; background: var(--primary-color);
}

.about-heading {
    font-size: 3.5em; font-weight: 950; line-height: 1.1; margin-bottom: 20px; color: #0f172a; letter-spacing: -0.02em;
}

.about-summary {
    color: var(--text-muted); font-size: 1.125em; margin-bottom: 3.5em; line-height: 1.7;
}

.feature-list {
    display: grid; gap: 20px;
}

.feature-item {
    display: flex; gap: 15px;
}

.feature-icon {
    width: 64px; 
    height: 64px; 
    background: white; 
    border-radius: 1em; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary-color); 
    flex-shrink: 0; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon span {
    font-size: 2em;
}

.feature-text h5 {
    font-size: 1.25em; font-weight: 700; margin-bottom: 0.5em; color: #0f172a;
}

.feature-text p {
    color: var(--text-muted); font-size: 0.9375em; line-height: 1.6;
}

.review-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}

.rating-stars {
    color: #fbbf24; margin-bottom: 15px; display: flex; gap: 2px;
}

.rating-stars span {
    font-size: 1.25em;
}

.review-text {
    font-size: 1.125em; color: #1e293b; font-style: italic; margin-bottom: 20px; line-height: 1.7;
}

.reviewer-meta {
    display: flex; align-items: center; gap: 1em;
}

.reviewer-img, .reviewer-img img {
    width: 48px; height: 48px; background: #e2e8f0; border-radius: 50%;
}

.reviewer-name {
    font-weight: 700; color: #0f172a; margin-bottom: 0.125em;
}

.reviewer-role {
    font-size: 0.8125em; color: var(--secondary-color);
}

.why-choose-desc {
    color: var(--secondary-color); max-width: 300px; margin: 0 auto; line-height: 1.7;
}

.faq-list {
    margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1em;
}

.faq-item {
    height: fit-content; background: white; border-radius:4px; padding:10px 15px; border: 1px solid #e2e8f0; transition: var(--transition);
}

.faq-question {
    display: flex; justify-content: space-between; align-items: center; font-weight: 700; cursor: pointer; color: #1e293b;
}

.faq-question span:first-child {
    font-size: 1em;
}

.faq-answer {
    display: none; margin-top: 15px; color: var(--text-muted); line-height: 1.8; border-top: 1px solid #f1f5f9; padding-top: 1.25em; font-size: 0.875em;
}

.faq-item.active {
    border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .material-symbols-outlined {
    transform: rotate(180deg); color: var(--primary-color);
}

.bottom-nav {
    display: flex; justify-content: center; gap: 20px; margin-top: 4em; padding-top: 20px; border-top: 1px solid #e2e8f0;
}

.bottom-nav a {
    color: #94a3b8; font-weight: 700; font-size: 0.8125em; text-transform: uppercase; letter-spacing: 0.1em;
}

.bottom-nav a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {

    .faq-list {
        grid-template-columns: 1fr;
    }

}

.footer {
    padding: 40px 0 0; color: white;
    background: linear-gradient(-40deg, #0f132f 0%, #090c26 65%, #0f132f 65%, #090c26 100%);
}

.footer-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 4em; margin-bottom: 1em;
}

.footer-logo {
    margin-bottom: 15px; font-size: 1.5em; color: white !important;
}

.footer-desc {
    color: #fff; font-size: 0.875em; line-height: 1.7; margin-bottom: 20px;
}

.social-links {
    display: flex; gap: 1em;
}

.social-link {
    width: 36px; height: 36px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color); transform: translateY(-3px);
}

.footer-title {
    font-size: 1em; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 1.25em;
}

.footer-links a {
    color: #fff; font-size: 0.875em; font-weight: 600; transition: var(--transition);
}

.footer-links a:hover {
    color: white; padding-left: 5px;
}

.contact-item {
    display: flex; align-items: flex-start; gap: 1em; margin-bottom: 15px;  font-size: 0.875em; font-weight: 600; line-height: 1.5;
}

.contact-icon {
    width: 32px; height: 32px; background: var(--primary-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0;
}

.contact-icon span {
    font-size: 1.125em;
}

.footer-bottom {
    background: #050505; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    text-align: center; color: #fff; font-size: 0.75em; letter-spacing: 0.1em;
}

.uppercase {
    text-transform: uppercase;
}

.font-black {
    font-weight: 950;
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5em;
    z-index: 110;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.has-mega-menu > a .material-symbols-outlined {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-mega-menu > a .material-symbols-outlined.rotated {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {

    .container {
        padding: 0 15px;
    }

    .hero-container {
        grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 4em 0;
    }

    .hero-heading {
        font-size: 4em;
    }

    .hero-heading-accent {
        font-size: 4.5em;
    }

    .hero-summary {
        margin: 0 auto 20px;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-action-group {
        flex-direction: column; align-items: center; justify-content: center;
    }

    .hero-trust-box {
        width: 100%; justify-content: center;
    }

    .hero-visual-right {
        display: flex; justify-content: center;
    }

    .hero-main-img {
        max-width: 80%;
    }

    .service-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr); gap: 20px;
    }

    .process-grid::before {
        display: none;
    }

    .process-grid {
        flex-wrap: wrap; justify-content: center; gap: 20px;
    }

    .process-item {
        min-width: 45%;
    }

    .about-grid {
        grid-template-columns: 1fr; gap: 4em;
    }

}

@media (max-width: 991px) {

    .header {
        background: #ffffff; color: #0a0a0a; border-bottom: 1px solid #e2e8f0; padding: 0; display: block; height: auto;
    }

    .header-top {
        padding: 10px 0; display: flex; align-items: center; background: transparent;
    }

    .header .container-flex {
        padding: 0 1em;
    }

    .header .logo {
        font-size: 1.25em; gap: 0.5em;
    }

    .header .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        color: #0f172a; display: block; flex-shrink: 0; font-size: 1.25em; order: -1; margin-right: 15px; position: static; transform: none; background: none; border: none;
    }

    .header-right {
        gap: 15px; flex-direction: row-reverse;
    }

    .header-info-group {
        display: none;
    }

    .header-auth {
        display: flex; gap: 0.5em; flex-shrink: 0; align-items: center;
    }

    .btn-login {
        color: #0f172a !important; font-size: 0.8125em; font-weight: 700; white-space: nowrap; background: transparent; padding: 0;
    }

    .btn-login:hover {
        background: transparent; color: var(--primary-color) !important;
    }

    .btn-signup {
        padding: 0.5em 0.75em; font-size: 0.75em; white-space: nowrap; background: var(--primary-color); color: white !important; border-radius: 0.75em;
    }

    .btn-signup:hover {
        background: var(--primary-hover);
    }

    .nav-menu {
        position: fixed;
                left: -100%;
                width: 100%;
                height: calc(100vh - 85px);
                background: #ffffff;
                transition: var(--transition);
                overflow-y: auto;
                padding: 20px 15px;
                z-index: 99;
                color: #0f172a;
    }

    .nav-menu .container-flex {
        display: flex; flex-direction: column; align-items: flex-start; height: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column; align-items: flex-start; gap: 15px; width: 100%;
    }

    .nav-menu .nav-link {
        font-size: 1.125em; justify-content: space-between; color: #0f172a !important; display: flex; width: 100%;
    }

    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--primary-color) !important; text-decoration: none;
    }

    .desktop-hidden {
        display: block;
    }

    .header-search {
        display: none;
    }

    .has-mega-menu {
        position: static; width: 100%;
    }

    .mega-menu-v2 {
        position: static;
                transform: none !important;
                opacity: 1;
                pointer-events: auto;
                box-shadow: none;
                background: #f1f5f9;
                padding: 15px;
                display: none;
                width: 100%;
                border: none;
                border-radius: 0.75em;
                margin-top: 10px;
    }

    .mega-tabs {
        display: none;
    }

    .mega-tab-content {
        display: block; padding: 0;
    }

    .mega-content-inner {
        grid-template-columns: 1fr; gap: 15px;
    }

    .mega-promo {
        display: none;
    }

    .mega-column-v2 {
        gap: 10px;
    }

    .mega-service-item {
        padding: 8px; gap: 10px; background: white;
    }

    .ms-image {
        width: 50px; height: 50px; border-radius: 0.5em;
    }

    .ms-title {
        font-size: 0.85em;
    }

    .ms-desc {
        font-size: 0.7em;
    }

}

@media (max-width: 768px) {

    .section-title {
        font-size: 1.75em;
    }

    .hero-heading {
        font-size: 3em;
    }

    .hero-heading-accent {
        font-size: 3.5em;
    }

    .registration-title {
        font-size: 2em;
    }

    .about-heading {
        font-size: 1.75em;
    }

    .stat-num {
        font-size: 2.5em;
    }

    .hero-v2 {
        min-height: auto;
    }

    .hero-container {
        padding: 20px 0; gap: 20px;
    }

    .hero-summary {
        font-size: 0.9em; max-width: 90%;
    }

    .registration-actions {
        flex-direction: column; gap: 1em; border-top: 1px solid rgba(255,255,255,0.05);
    }

    .reg-btn {
        width: 100%; font-size: 0.8125em;
    }

    .registration-card {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr); gap: 1em; padding: 0 0.5em;
    }

    .service-card .card-body {
        padding: 1em;
    }

    .service-card .card-icon {
        width: 40px; height: 40px; margin-top: -20px; margin-bottom: 1em;
    }

    .service-card .card-icon span {
        font-size: 1.25em;
    }

    .service-card .card-title {
        font-size: 1em; margin-bottom: 0.5em;
    }

    .service-card .card-desc {
        font-size: 0.7em; margin-bottom: 1em;
    }

    .card-image {
        height: 120px;
    }

    .hot-label {
        font-size: 0.5em; padding: 0.20px 0.4em; top: 0.75em; left: 0.75em;
    }

    .card-link {
        font-size: 0.7em;
    }

    .about-bento {
        grid-template-columns: repeat(2, 1fr); gap: 1em;
    }

    .bento-col.spacer-top {
        margin-top: 0;
    }

    .about-img {
        border-radius: 1em; border-width: 2px;
    }

    .about-stat-box {
        padding: 1em; border-radius: 1em;
    }

    .about-card-dark {
        padding: 1em; border-radius: 1em;
    }

    .about-card-dark span {
        font-size: 2em;
    }

    .about-card-dark h4 {
        font-size: 1em;
    }

    .about-card-dark p {
        font-size: 0.75em;
    }

    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr); gap: 0.75em; overflow-x: auto; padding-bottom: 1em;
    }

    .why-choose-item {
        min-width: 100px;
    }

    .why-choose-icon-box {
        width: 48px; height: 48px; border-radius: 1em; margin-bottom: 0.75em;
    }

    .why-choose-icon-box span {
        font-size: 1.5em;
    }

    .why-choose-title {
        font-size: 0.85em; margin-bottom: 0.5em;
    }

    .why-choose-desc {
        font-size: 0.65em;
    }

    .process-grid {
        flex-direction: column;  gap: 1em;margin-top: 1em; justify-content: space-between; overflow: visible; padding-bottom: 0;
    }

    .process-grid::before {
        display: block; top: 16px; left: 10%; right: 10%; width: 80%;
    }

    .process-item {
        min-width: 0; flex: 1; padding: 10px;margin: auto;
    }

    .process-step {
        width: 50px; height: 50px; font-size: 1em; margin-bottom: 10px; border-radius: 0.5em; border-width: 1px;
    }

    .process-title {
        font-size:1.5em; margin-bottom: 10px;
    }

    .process-desc {
        font-size: 1em; padding: 0; line-height: 1.3; word-break: break-word;
    }

    .reviews-section {
        overflow: hidden;
    }

    .reviews-header {
        flex-direction: column; align-items: flex-start; gap: 1em; margin-bottom: 20px;
    }

    .review-card {
        padding: 15px;
    }

    .review-text {
        font-size: 0.8em; margin-bottom: 15px;
    }

    .reviewer-img, .reviewer-img img {
        width: 40px; height: 40px;
    }

    .reviewer-name {
        font-size: 0.85em;
    }

    .reviewer-role {
        font-size: 0.65em;
    }

    .bottom-nav {
        flex-wrap: wrap; gap: 0.75em; text-align: center; justify-content: center;
    }

}

@media (max-width: 400px) {

    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

.exchange-section {
    padding: 40px 0;
}

@media (max-width: 768px) {

    .exchange-section {
        padding: 30px 0;
    }

}

.exchange-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.card-v3 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
}

.card-v3-header {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-v3-header.orange {
    background: #f59e0b;
}

.card-v3-header.red {
    background: var(--primary-color);
}

.card-v3-header h3 {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.card-v3-body {
    padding: 25px;
}

.card-v3-divider {
    border-top: 1px dashed #e2e8f0;
    margin: 20px 0 0;
    padding-top: 20px;
}

.card-type-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.card-type-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.card-type-item:hover, .card-type-item.active {
    border-color: #f59e0b;
    background: #fffcf5;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.1);
}

.card-type-item img {
    height: 80px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {

    .card-type-item img {
        height: 60px;
    }

}

.card-type-item span {
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #475569;
}

.card-type-item.active span {
    color: #f59e0b;
}

.form-group-v2 {
    margin-bottom: 20px;
}

.form-group-v2 label {
    display: block;
    font-size: 0.875em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-group-v2 label span {
    color: var(--primary-color);
}

.form-select-v2, .form-control-v2 {
    width: 100%;
    height: 32px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #d7dee7;
    background-color: #fff;
    color: #111827;
    font-family: inherit;
    font-size: 13px;
    line-height: 30px;
    outline: none;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select-v2:focus, .form-control-v2:focus {
    border-color: rgba(var(--primary-rgb), 0.7);
    box-shadow: 0 0 0 3px rgba(188, 0, 8, 0.08) !important;
}

.btn-submit-v2 {
    width: 100%;
    min-height: 38px;
    padding: 8px 18px;
    background: linear-gradient(to right, var(--primary-color), rgba(var(--primary-rgb), 0.5));
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(188, 0, 8, 0.18);
    transition: all 0.2s;
}

.btn-submit-v2:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(188, 0, 8, 0.24);
}

.form-m1 .form-control-v2::placeholder {
    color: #94a3b8;
}

.form-m1 textarea.form-control-v2 {
    min-height: 88px;
    padding: 8px 10px;
    line-height: 1.5;
    resize: vertical;
}

.form-m1 form > .row + .row,
.form-inner form > .row + .row {
    margin-top: 10px;
}

.form-m1 .col-form-label {
    font-size: 13px;
    line-height: 1.4;
    color: #0f172a;
}

.form-m1 .select2-container {
    width: 100% !important;
}

.form-m1 .select2-container--default .select2-selection--single {
    height: 32px;
    border: 1px solid #d7dee7;
    border-radius: 6px;
    box-shadow: none !important;
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    padding-left: 10px;
    padding-right: 30px;
    font-size: 13px;
    color: #111827;
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    right: 6px;
}

.form-m1 .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: rgba(var(--primary-rgb), 0.7);
    box-shadow: 0 0 0 3px rgba(188, 0, 8, 0.08) !important;
}

.form-note-v2 {
    margin-top: 20px;
    padding: 15px;
    background: #fefce8;
    border-radius: 10px;
    border: 1px solid #fef08a;
}

.form-note-v2 p {
    font-size: 0.75em;
    color: #854d0e;
    line-height: 1.6;
    margin-bottom: 10px;
}

.form-note-v2 p:last-child {
    margin-bottom: 0;
}

.form-note-v2 b {
    color: var(--primary-color);
}

.info-box-v2 {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px;
    background: #ffffff;
}

.info-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item-v2 {
    display: flex;
    gap: 12px;
    font-size: 0.8125em;
    color: #475569;
    line-height: 1.6;
}

.info-item-v2 i {
    color: #f59e0b; margin-top: 3px;
}

.info-item-v2 b {
    color: #0f172a;
}

.fee-table-section {
    margin-top: 40px;
}

.exchange-table-title {
    font-size: 0.8125em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.table-v2-container {
    background: #ffffff;
    border-radius: 12px;
    overflow-y: auto;
    max-height: 400px;
    border: 1px solid #f1f5f9;
}

.table-v2-container::-webkit-scrollbar {
    width: 4px;
}

.table-v2-container::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 10px;
}

.table-v2-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.table-v2-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.table-v2 {
    width: 100%;
    border-collapse: collapse;
}

.table-v2 th {
    background: var(--secondary-color);
    color: #ffffff;
    text-align: left;
    padding: 10px 15px;
    font-size: 0.8125em;
    font-weight: 700;
    text-transform: uppercase;
}

.table-v2 td {
    padding: 10px 15px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875em;
    color: #475569;
}

.badge-v2 {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75em;
    font-weight: 700;
}

.badge-v2.success {
    background: #dcfce7; color: #15803d;
}

.buy-section {
    padding: 30px 0;
}

@media (max-width: 768px) {

    .buy-section {
        padding: 20px 0;
    }

}

.buy-grid {
    margin-top: 30px;
}

.denomination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.denom-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.denom-item:hover, .denom-item.active {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1);
}

.denom-item.active {
    background: #fffafa;
}

.denom-item h4 {
    font-size: 0.9375em;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.cart-v2 {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cart-header-v2 {
    color: var(--primary-color);
    font-size: 1.125em;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.cart-item-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
}

.cart-item-info h5 {
    font-size: 0.875em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 0.75em;
    color: var(--text-muted);
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-total-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-label {
    font-size: 1em;
    font-weight: 700;
    color: #0f172a;
}

.cart-total-price {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-method-v2 {
    margin-bottom: 20px;
}

.payment-method-v2 label {
    display: block;
    font-size: 0.875em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.btn-checkout-v2 {
    width: 100%;
    height: 48px;
    background: #15803d;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-checkout-v2:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 128, 61, 0.2);
}

@media (max-width: 991px) {

    .exchange-grid, .buy-grid {
        grid-template-columns: 1fr;
    }

    .card-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .denomination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.how-it-works-section {
    padding: 20px 0;
}

.video-section {
    padding: 20px 0;
}

.video-container {
    margin: 20px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #000;
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-container iframe, 
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.news-section {
    padding: 30px 0;
}

.news-section .section-header {
    border-top: 1px solid #e2e8f0;
   padding-top: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-body {
    padding: 25px;
}

.news-date {
    font-size: 0.75em;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.news-card-title {
    font-size: 1.125em;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-desc {
    font-size: 0.875em;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-section {
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom:20px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.25em;
    opacity: 0.9;
    margin-bottom: 3em;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {

    .cta-section {
        color: white;
                background: linear-gradient(135deg, var(--secondary-color) 0%, #1e1b4b 100%);
    }

}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.25em;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 2.25em;
    }

}

@media (max-width: 768px) {

    .news-grid {
        display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 15px;
                padding-bottom: 20px;
                -webkit-overflow-scrolling: touch;
    }

    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-card {
        flex: 0 0 85%;
                scroll-snap-align: start;
    }

    .cta-btns {
        flex-direction: column;
    }

}

.partners-clients-section {
    border-top: 1px solid #e2e8f0;
    padding: 30px 0;
    background: #fff;
}

.partners-clients-section .section-header {
    
}

.partners-clients-section .section-header .section-title {
    padding-bottom: 0;
    font-weight: 700;
    text-transform: none;
}

.partners-clients-section .section-header .section-title::before,
.partners-clients-section .section-header .section-title::after {
    display: none;
}

@media (max-width: 768px) {

    .partners-clients-section {
        padding: 30px 0;
    }

}

.partner-group, .client-group {
    margin-bottom: 40px;
}

.partner-group:last-child, .client-group:last-child {
    margin-bottom: 0;
}

.partner-item {
    background: #ffffff;
    padding:5px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.client-item {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: var(--transition);
}

.partner-item:hover, .client-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.partner-item img, .client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.partner-item:hover img, .client-item:hover img {
    opacity: 1;
}

.footer {
    color: #fff;
    padding: 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 0.9fr 0.8fr;
    gap: 40px;
}

.footer-title {
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-desc {
    font-size: 0.9em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.app-buttons {
    display: flex;
    gap: 12px;
}

.app-buttons img {
    height: 38px;
    background-color: #fff;
    border-radius: 6px;
    transition: transform 0.3s;
}

.app-buttons img:hover {
    transform: translateY(-3px);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    align-items: center;
}

.contact-list li i {
    width: 32px;
    height: 32px;
    background: #1e3bb3; 
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85em;
    color: #fff;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    margin-bottom: 12px;
}

.policy-list li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-list li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-circles {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-circles a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1a51;
    font-size: 1.1em;
    transition: all 0.3s;
}

.social-circles a:hover {
    transform: translateY(-5px);
    background: #007bff;
    color: #fff;
}

.trust-images {
    display: flex;
    gap: 10px;
}

.trust-images img {
    height: 50px;
    opacity: 0.9;
    object-fit: contain;
    object-position: left;
    transition: opacity 0.3s;
}

.trust-images img:hover {
    opacity: 1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
                gap: 30px;
    }

}

@media (max-width: 576px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

.exchange-container {
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.exchange-tabs .nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 5px;
    margin: 0 5px;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.exchange-tabs .nav-tabs .nav-link.active {
    background-color: #ff20d5; 
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 32, 213, 0.3);
}

.btn-primary-pink {
    background-color: #ff20d5;
    border: none;
    color: white;
    font-weight: 800;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary-pink:hover {
    background-color: #e61cb0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 32, 213, 0.4);
}

.copy-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 5;
}

.copy-btn:hover {
    color: #ff20d5;
}

.exchange-form-compact .form-control {
    height: 42px;
    font-size: 0.9em;
    border-radius: 5px;
    border: 1px solid #cbd5e1;
}

.exchange-form-compact .form-control:focus {
    border-color: #ff20d5;
    box-shadow: 0 0 0 2px rgba(255, 32, 213, 0.1);
}

.discount-comparison {
    background: #fdfdfd;
}

.fee-tabs button {
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 15px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #64748b;
}

.fee-tabs button.active {
    background: #ff20d5 !important;
    color: #fff !important;
    border-color: #ff20d5 !important;
}

.discount-comparison table {
    font-size: 0.8em;
}

.discount-comparison table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
}

.history-section {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.history-header {
    cursor: pointer;
    background: #198754;
    color: white;
    border-radius: 5px 5px 0 0;
    transition: background 0.3s ease;
}

.history-header.bg-success {
    background-color: #157347 !important;
}

.history-header:hover {
    background: #157347 !important;
}

.history-title {
    font-size: 1.1em;
}

.history-body {
    border-radius: 0 0 5px 5px;
}

.history-header[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    transition: transform 0.3s;
}

.history-filters label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
}

.history-filters .form-control-sm {
    height: 32px;
    font-size: 12px;
    border-radius: 4px;
}

.history-search-group {
    max-width: 350px;
}

.history-search-group .form-control {
    border-right: none;
}

.history-search-group .input-group-text {
    border-right: none;
}

.multi-box h6 {
    color: #1e293b;
    border-left: 3px solid #ff20d5;
    padding-left: 10px;
    font-size: 0.95em;
}

.telco-sm {
    height: 32px;
    font-size: 12px;
}

.announcement-list p {
    line-height: 1.6;
}

@media (max-width: 768px) {

    .exchange-form-compact .addRow {
        width: 100%;
                margin-top: 5px;
    }

    .history-filters .btn-block {
        margin-top: 10px;
    }

    .fee-tabs {
        justify-content: flex-start !important;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 5px;
    }

}

.custom-exchange .section-title::before, .custom-exchange .section-title::after{
    display: none;
}

.ex-header-wrap {
    margin-bottom: 16px;
}

@media (min-width: 768px) {

    .ex-header-wrap {
        flex-direction: row;
                align-items: center;
                justify-content: space-between;
    }

}

.ex-page-title {
    font-size: 1.875em;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.025em;
    margin: 0;
    text-transform: uppercase;
}

.ex-badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: rgb(255 187 190 / 10%);
    border: 1px solid rgba(188, 0, 8, 0.2);
    padding: 0.5em 1em;
    border-radius: 4px;
    width: fit-content;
    margin:auto;
}

.ex-badge-icon {
    color: #bc0008;
    font-size: 1.125em;
    animation: scale 1s infinite;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.ex-badge-text {
    font-size: 0.875em;
    font-weight: 600;
    color: #bc0008;
    margin: 0;
    display: flex;
    gap: 5px;
    align-items: center;
}

.ex-warning-box {
    background-color: #fff;
    border-radius: 0.75em;
    padding: 10px;
    margin-bottom: 16px;
}

.ex-warning-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75em;
}

.ex-warning-icon-main {
    color: #f59e0b;
    margin-top: 0.25em;
}

.ex-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #475569;
    font-size: 0.875em;
    line-height: 1.625;
}

@media (min-width: 768px) {

    .ex-warning-list {
        font-size: 1em;
    }

}

.ex-warning-list li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.75em;
}

.ex-warning-list li:last-child {
    margin-bottom: 0;
}

.ex-bullet {
    color: #bc0008;
    font-size: 0.5em;
}

.ex-tab-container {
    display: inline-flex;
    gap:10px;
    border-radius: 0.75em;
}

.ex-tab-btn {
    padding: 10px;
    font-weight: 600;
    border: none;
    background: rgba(188, 0, 8, 0.1);
    color: #222;
    border-radius: 0.5em;
    transition: all 0.2s;
    cursor: pointer;
}

.ex-tab-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ex-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding:10px;
    margin-bottom: 10px;
}

@media (min-width: 767px) {

    .ex-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.ex-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75em;
    margin-bottom: 1.5em;
}

.ex-card-icon {
    color: #bc0008;
}

.ex-tertiary-icon {
    color: #10b981;
}

.ex-card-title {
    font-size: 1.125em;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.ex-card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5em;
}

.ex-card-header-flex .ex-card-title-wrap {
    margin-bottom: 0;
}

.ex-link-btn {
    color: #bc0008;
    font-size: 0.75em;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.ex-link-btn:hover {
    text-decoration: underline;
}

.ex-form-body {
    display: flex;
    flex-direction: column;
    column-gap: 1em;
    row-gap: 0.5em;
}

.ex-form-body>.row {
    row-gap: 0.5em;
}

.ex-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.ex-label {
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin: 0;
}

.ex-select, .ex-textarea {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.5em;
    padding: 5px 10px;
    font-family: inherit;
    color: #222;
    transition: all 0.2s;
    outline: none;
    font-size: 1em;
}

.ex-select:focus, .ex-textarea:focus {
    box-shadow: 0 0 0 2px rgba(188, 0, 8, 0.2);
}

.ex-textarea {
    height: 50px;
    resize: none;
}

.ex-upload-area {
    display: flex;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(203, 213, 225, 0.8);
    border-radius: 0.75em;
    padding:5px 10px;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 0;
    transition: background-color 0.2s;
}

.ex-upload-area:hover {
    background-color: #f1f5f9;
}

.ex-upload-area:hover .ex-upload-icon {
    transform: scale(1.1);
}

.ex-upload-icon {
    font-size: 2.5em;
    color: #cbd5e1;
    margin-bottom: 0.5em;
    transition: transform 0.2s;
}

.ex-upload-prompt {
    font-size: 0.875em;
    font-weight: 500;
    color: #475569;
    margin: 0;
    text-align: center;
}

.ex-upload-hint {
    font-size: 0.75em;
    color: #94a3b8;
    margin: 0.25em 0 0 0;
}

.ex-submit-wrap {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.ex-submit-button {
    padding: 8px 20px;
    background: linear-gradient(to right, var(--primary-color), rgba(var(--primary-rgb), 0.5));
    color: white;
    font-weight: 700;
    font-size: 1eem;
    border-radius: 0.75em;
    border: none;
    box-shadow: 0px 8px 24px rgba(188, 0, 8, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
}

@media (max-width: 768px) {

    .ex-submit-button {
        width: 100%;
    }

}

.ex-submit-excel {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-hover));
}

.ex-submit-button:hover {
    transform: scale(1.05);
}

.ex-submit-button:active {
    transform: scale(0.95);
}

.ex-fee-wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ex-fee-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin: 0;
}

.ex-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ex-chip {
    padding:5px 10px;
    border-radius: 2px;
    font-weight: 400;
    cursor: pointer;
    background-color: #d8d8d8;
    color: #222;
    transition: all 0.2s;
}

.ex-chip:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ex-chip.active {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
}

.ex-chip.active-vinaphone {
    background-color: #cce5ff;
    color: #001d31;
}

.ex-chip.active-mobifone {
    background-color: #d3e4fe;
    color: #002d47;
}

.ex-fee-pane {
    display: none;
}

.ex-fee-pane.active {
    display: block;
}

.ex-table-container {
    overflow-x: auto;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-radius: 1em;
}

.ex-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.ex-table th {
    background-color: #f8fafc;
    padding: 8px;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #222;
    border: 1px solid #e2e8f0;
    border-top: none;
    text-align: center;
}

.ex-table th:first-child {
    text-align: center;
}

.ex-table td {
    padding: 8px;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 400;
}

.ex-table tr:last-child td {
    border-bottom: none;
}

.ex-table tr:hover {
    background-color: #f8fafc;
}

.ex-table td:first-child {
    text-align: center;
}

.ex-table-bold {
    font-weight: 700;
    color: #1e293b;
}

.ex-text-yellow {
    color: #f59e0b;
}

.ex-text-primary {
    color: #bc0008;
}

.custom-exchange .ex-history-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5em;
    overflow: hidden;
    margin-bottom: 1.5em;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.custom-exchange .ex-history-header {
    background-color: #ffb822;
    padding: 0.75em 1em;
    font-weight: 700;
    font-size: 1em;
}

.custom-exchange .ex-history-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0.5em 1em;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
    background-color: #f8fafc;
}

.custom-exchange .ex-history-filters .form-control {
    width: 20%;
    height: 40px;
}

@media (max-width: 768px) {

    .custom-exchange .ex-history-filters .form-control {
        width: calc(50% - 8px);
    }

}

.custom-exchange .ex-history-filters .btn {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.custom-exchange .ex-history-table {
    font-size: 0.85em;
}

.custom-exchange .ex-history-table thead th {
    background-color: #f8fafc;
    text-transform: uppercase;
    color: #475569;
    font-weight: 700;
    padding: 0.75em;
    vertical-align: middle;
}

.custom-exchange .ex-history-table td {
    vertical-align: middle;
}

.custom-exchange .ex-history-search-row {
    padding: 0.5em !important;
    text-align: left;
    background-color: #f8fafc;
    border-bottom: none;
}

.custom-exchange .ex-history-search-group {
    display: inline-flex;
    gap: 0.5em;
}

.custom-exchange .ex-history-search-group .form-control {
    width: 250px;
    height: 40px;
}

.custom-exchange .ex-history-search-group .btn {
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.custom-exchange .ex-history-empty {
    color: #64748b;
    padding: 1.5em !important;
}

.notification {
    margin: 0 0 10px !important;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    
    background-image: linear-gradient(90deg, #ff0000 50%, transparent 50%), 
                      linear-gradient(90deg, #ff0000 50%, transparent 50%), 
                      linear-gradient(0deg, #ff0000 50%, transparent 50%), 
                      linear-gradient(0deg, #ff0000 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
    background-position: left top, right bottom, left bottom, right top;
    animation: border-dance 1s infinite linear;
}

@keyframes border-dance {
    0% { background-position: left top, right bottom, left bottom, right top; }
    100% { background-position: left 15px top, right 15px bottom, left bottom 15px, right top 15px; }
}

.notification-content {
    color: #334155;
    line-height: 1.8;
    transition: max-height 0.5s ease;
}

.notification-content h1 {
    font-size: 1.15em;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bc0008;
}

.notification-content h1 img {
    width: 36px;
    height: 36px;
}

.notification-content .noti-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.notification-content .noti-item img {
    width: 24px;
    height: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

.notification-content strong {
    color: #0f172a;
}

.notification-content .text-blue {
    color: #0044cc;
}

.notification-content .text-red {
    color: #bc0008;
}

.notification-content .noti-contact {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content .noti-contact a {
    color: #0044cc;
    font-weight: 800;
}

@media (max-width: 991px) {

    .notification-content {
        max-height: 180px;
                overflow: hidden;
                position: relative;
    }

    .notification-content::after {
        content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 50px;
                background: linear-gradient(transparent, #ffffff);
                pointer-events: none;
    }

    .notification-content.expanded {
        max-height: 2000px;
    }

    .notification-content.expanded::after {
        display: none;
    }

}

.noti-more-button {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 0.85em;
    font-weight: 700;
    color: #bc0008;
    cursor: pointer;
}

.charging-note-wrap {
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.charging-note-wrap .notification {
    margin: 0 !important;
}

.charging-note-wrap .notification-content > :last-child {
    margin-bottom: 0;
}

.custom-exchange {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 15px;
}

.custom-exchange .section-title {
    background: linear-gradient(90deg, #bc0008 0%, #ff4d4d 70%, #ffffff 110%);
    color: #ffffff;
    margin: 0;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    display: block;
    width: 100%;
}

.custom-exchange .ex-tab-container-wrap {
    padding: 10px;
    background: #fdfdfd;
    border-bottom: 1px solid #f1f5f9;
  text-align: center;
}

@media (max-width: 991px) {

    .custom-exchange .ex-tab-container-wrap {
        border-bottom: none;
               padding-bottom: 0;
    }

}

.custom-exchange .ex-tab-container {
    margin: 0;
}

.custom-exchange .ex-tab-btn {
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
    font-size: 0.875em;
}

.custom-exchange .ex-single-card {
    padding: 10px;
}

.ex-single-row-wrap .ex-single-row {
    display: flex;
    gap: 0.75em;
    align-items: center;
}

.custom-exchange .ex-single-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75em;
    row-gap: 5px;
    margin-bottom: 10px;
}

.custom-exchange .ex-single-col {
    flex: 1 1 180px;
}

@media (max-width: 767px) {

    .custom-exchange .ex-single-col {
        flex: auto;
                width: 100%;
    }

    .custom-exchange .ex-single-actions {
        width: calc(100% - 120px);
    }

}

.custom-exchange .ex-single-col .form-control {
    height: 32px;
    font-size: 0.875em;
    padding: 0 10px;
}

.charging-page-v2 .btn.btn-small {
    height: 32px;
    max-height: 32px !important;
    min-height: 32px !important;
    padding: 0 10px;
    line-height: 20px;
    font-size: 12px;
    border-radius: 6px;
}

.charging-page-v2 .btn.btn-small i {
    margin-right: 4px;
}

.charging-page-v2 .charging-history-filter {
    margin: 10px;
}

.ex-discount-hint {
    font-size: 0.85em; padding-left: 5px; margin-top: 5px; margin-bottom: 5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-box {
    overflow: hidden;
    margin: 20px 0;
    line-height: 150%;
    display: block;
    text-align: center;
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 2px 2px 5px 0 rgba(0,0,0,.2);
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .2);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

@media (max-width: 991px) {

    .step-box {
        margin: 0;
    }

    .steps-grid {
        grid-template-columns: 1fr; gap: 20px;
    }

}

.step-card {
    inset: 2px;padding: 15px;z-index:1;position:relative;background-color:#fff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    margin-bottom: 4px;
}

.step-box:hover::before {
    content: '';
    z-index: 0;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    transform-origin: bottom right;
    background: linear-gradient(0deg, transparent, #bc0008, #bc0008);
    animation: animate 6s linear infinite;
}

.step-box:hover::after {
    content: '';
    z-index: 0;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    transform-origin: bottom right;
    background: linear-gradient(0deg, transparent, #bc0008, #bc0008);
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@-webkit-keyframes animate {
    0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}

.step-num {
    font-size: 1.125em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.step-title {
    font-size: 1.25em;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-card p {
    line-height: 1.6;
}

.wcu-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 20px;
    align-items: center;
}

@media (max-width: 991px) {

    .wcu-grid {
        gap:20px; grid-template-columns: 1fr; text-align: center;
    }

}

.wcu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wcu-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.wcu-item:hover {
    transform: translateX(10px);
}

@media (max-width: 991px) {

    .wcu-item {
        text-align: left;
    }

    .wcu-item:hover {
        transform: translateY(-5px);
    }

}

.wcu-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.wcu-item:hover .wcu-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.wcu-icon span {
    font-size: 32px;
}

.padding-y {
    padding: 80px 0;
}

.wcu-info h4 {
    font-size: 1.1em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.wcu-info p {
    font-size: 0.9375em;
    color: #475569;
    line-height: 1.5;
}

.wcu-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wcu-mockup::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(188, 0, 8, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.wcu-mockup img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {

    .padding-y {
        padding: 40px 0;
    }

    .wcu-mockup {
        display: none;
    }

}

.news-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 991px) {

    .news-grid-v2 {
        grid-template-columns: 1fr;
    }

}

.news-card-v2 {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.news-thumb {
    position: relative;
    padding-top: 56.25%; 
    overflow: hidden;
}

.news-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-meta-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    display: flex;
    justify-content: space-between;
    font-size: 0.75em;
    font-weight: 600;
}

.news-body-v2 {
    padding: 20px;
}

.news-title-v2 {
    font-size: 1.1em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
}

.news-desc-v2 {
    font-size: 0.875em;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-see-more {
    padding: 12px 35px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375em;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(188, 0, 8, 0.2);
}

.flash {
    position: relative;
    display: block
}

.flash img {
    transition: all .6s ease-out;
    -webkit-transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    -ms-transition: all .6s ease-out;
    -o-transition: all .6s ease-out
}

.flash::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out
}

.flash::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out
}

.news-card-v2:hover .flash img {
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.news-card-v2:hover .flash::before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255,255,255,.3)
}

.news-card-v2:hover .flash::after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255,255,255,.3)
}

@keyframes float {
    0% {
        transform: translatey(0)
    }

    50% {
        transform: translatey(-4em)
    }

    100% {
        transform: translatey(0)
    }
}

.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #ffffff;
    display: none;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.mobile-bottom-menu .menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #222;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-bottom-menu .menu-item i {
    font-size: 1.4em;
}

.mobile-bottom-menu .menu-item span {
    font-size: 0.7em;
    font-weight: 700;
}

.mobile-bottom-menu .menu-item.active {
    color: var(--primary-color);
}

@media (max-width: 991px) {

    .mobile-bottom-menu {
        display: flex;
    }

    body {
        padding-bottom: 65px;
    }

}

.star {
    font-variation-settings:
    'FILL' 1;
}

.breadcrumb{
padding: 0 !important;
margin-bottom: 15px;
text-align:left;
background-color: #fff;
border: 1px solid #eee;
box-shadow: none !important;
border-radius:3px;
}
.breadcrumb li{ display:inline-block; min-height:36px;padding: 8px}
.breadcrumb .fa-angle-right{ display:none;}
.breadcrumb a,.breadcrumb h1,.breadcrumb h2{font-size:14px; font-weight:normal;}
.breadcrumb a{ position:relative; display:block;margin-left: -5px;}
.breadcrumb li:first-child a{padding-left: 8px;padding-right: 15px;}
.breadcrumb a:after, .breadcrumb a:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -19px;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
}
.breadcrumb li i{
    margin-right: 5px;
}
.breadcrumb a:after {z-index: 2;border-left: 12px solid #fff;right: -9px;}
.breadcrumb a:before {z-index: 1;border-left: 12px solid #ddd;right: -10px;}
.breadcrumb a:hover{ background-color:#fafafa;}
.breadcrumb a:hover:after{border-left-color: #fafafa;}
.breadcrumb-item+.breadcrumb-item::before{
    display: none;
}
.news-vertical-footer {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9e9e9;
}

.news-vertical-footer div {
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-vertical-footer span {
    color: var(--primary-color);
    font-size: 14px;
}

.news-vertical-footer a {
    color: var(--primary-color);
    font-size: 14px;
     display: flex;
    align-items: center;
    gap: 5px;
}

.border-top-0 {
    border-top: none !important;
    padding-top: 0 !important;
}

.logo-ft {
    width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.pagination {
    justify-content: center;
}

.section-pagination .pagination .page-item .page-link {
    padding: 10px 15px;
    font-size: 14px;
}

.ex-input-copy {
    position: relative;
}

.news-detail-section {
    padding-bottom: 60px;
}

.news-detail-card {
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    color: #133d70;
}

.news-meta {
    font-size: 13px;
    gap:15px;
    color: #888;
    border-bottom: 1px dashed #ddd;
}

.news-meta span {
    gap:5px
}

.font-size-controls {
    gap:5px
}

.btn-fb {
    background: #1877f2;
    color: #fff !important;
    border-radius: 4px;
    font-size: 13px;
    padding: 6px 12px;
}

.btn-save-post {
    background: #f8f9fa;
    color: #666 !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    padding: 6px 10px;
}

.font-size-controls button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s;
}

.gap-2 {
    gap: 5px;
}

.font-size-controls button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.rating-section .stars {
    font-size: 1.25em;
}

.toc-wrapper {
    margin: 25px 0;
}

.toc-header {
    background: #fcfcf4;
    border: 1px solid #e9ecef;
    border-radius: 4px 4px 0 0;
    border-bottom: none;
    padding: 10px 15px;
    width: fit-content;
    min-width: 200px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.toc-header:hover {
    background: #eef1f4;
}

.toc-header>span {
    gap:5px
}

.toc-header.active {
    border-radius: 4px 4px 0 0;
    border-bottom: none;
}

.toc-header i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s;
}

.toc-header.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.toc-content {
    background: #fcfcf4;
    border: 1px solid #e9ecef;
    border-radius: 0 0 4px 4px;
    padding: 20px 30px;
}

.toc-content ol {
    margin: 0;
}

.toc-content li {
    margin-bottom: 8px;
}

.toc-content a {
    color: #333;
    font-weight: 500;
}

.toc-content a:hover {
    color: var(--primary-color);
}

.news-content-body {
    line-height: 1.8;
    color: #333;
}

.news-content-body h2 {
    color: #1a1a1a;
    font-size: 1.25em;
    font-weight: 700;
    margin: 30px 0 20px;
}

.tag-item {
    background: #007bff;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 5px;
}

.tag-item:hover {
    background: #0056b3;
}

.share-section {
    background: #f8f9fa;
    border: 1px solid #eee;
}

.social-icon-sm {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 11px;
}

.social-icon-sm.msn {
    background: #0084ff;
}

.social-icon-sm.twt {
    background: #55acee;
}

.social-icon-sm.tlg {
    background: #0088cc;
}

.social-icon-sm.pin {
    background: #bd081c;
}

.social-icon-sm.wts {
    background: #25d366;
}

.social-icon-sm.lnk {
    background: #0077b5;
}

.social-icon-sm.rdt {
    background: #ff4500;
}

.social-icon-sm.plus {
    background: #3b5998;
}

.section-subtitle {
    padding-bottom: 10px;
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 0;
     gap:5px;
}

.related-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-thumb {
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-item:hover .related-thumb img {
    transform: scale(1.1);
}

.extra-small {
    font-size: 11px;
}

.fw-600 {
    font-weight: 600;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.related-news .col-lg-6 {
    margin-bottom: 10px;
}
.service-description {
    position: relative;
    margin-top: 2rem;
}

.description-content {
    border-top: 1px solid #eee;
    padding-top: 20px;
    max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out;
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.95rem;
}

.description-content.expanded {
    max-height: 5000px;
}

.description-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.description-content.expanded::after {
    opacity: 0;
}

.description-content h3 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: block;
}

.description-toggle {
    position: relative;
    z-index: 2;
}
.description-toggle .btn{
    background:var(--primary-color);
    color:#fff;
}
#toggleBtn {
    border: none;
    border-radius: 6px;
    padding: 10px 40px;
    color: #fff;
    transition: all 0.3s ease;
}

#toggleBtn:hover {
    box-shadow: 0 4px 12px rgba(30, 91, 163, 0.3);
}

/* Unified breadcrumb and page title styles */
.section-breadcrumb {
    background: transparent;
    padding: 10px 0 0;
}

.page-breadcrumb {
    margin-bottom: 12px;
}

.section-breadcrumb .page-breadcrumb {
    margin-bottom: 0 !important;
}

.page-breadcrumb .breadcrumb,
.section-breadcrumb .page-breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 !important;
    margin-bottom: 0;
    text-align: left;
    background-color: transparent !important;
    border: 0;
    box-shadow: none !important;
    border-radius: 0;
}

.page-breadcrumb .breadcrumb .breadcrumb-item,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    position: relative;
    line-height: 1.4;
}

.page-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 8px;
    padding-left: 14px;
}

.page-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item:before,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    display: block;
    content: "\203A";
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0;
    color: #94a3b8;
    transform: translateY(-50%);
}

.page-breadcrumb .breadcrumb .breadcrumb-item a,
.page-breadcrumb .breadcrumb .breadcrumb-item.active,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item a,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item.active {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
}

.page-breadcrumb .breadcrumb .breadcrumb-item a,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item a {
    display: inline;
    margin: 0;
    padding: 0;
    color: #212529 !important;
}

.page-breadcrumb .breadcrumb .breadcrumb-item:first-child a,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item:first-child a {
    padding: 0;
}

.page-breadcrumb .breadcrumb .breadcrumb-item a:before,
.page-breadcrumb .breadcrumb .breadcrumb-item a:after,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item a:before,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item a:after {
    display: none;
    content: none;
}

.page-breadcrumb .breadcrumb .breadcrumb-item a:hover,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color) !important;
    background-color: transparent;
}

.page-breadcrumb .breadcrumb .breadcrumb-item i,
.section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item i {
    margin-right: 5px;
}

.section-gap > .container > .description:first-child,
.home-v2 > .description:first-child {
    margin-top: 18px;
}

.description .title,
.description h1.title {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.description .title.text-uppercase,
.description h1.title.text-uppercase {
    text-transform: none !important;
}

.description.d-flex.justify-content-between.align-items-center,
.description .charging-breadcrumbs {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start !important;
    gap: 12px;
}

.description.d-flex.justify-content-between.align-items-center > div,
.description .charging-breadcrumbs {
    width: 100%;
    margin-right: 0 !important;
}

.description.d-flex.justify-content-between.align-items-center .section-breadcrumb,
.description .charging-breadcrumbs .section-breadcrumb {
    width: 100%;
    padding: 0;
    margin: 0;
}

.description.d-flex.justify-content-between.align-items-center .section-breadcrumb .container,
.description .charging-breadcrumbs .section-breadcrumb .container {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .section-breadcrumb {
        padding-top: 10px;
    }

    .description .title,
    .description h1.title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .page-breadcrumb .breadcrumb .breadcrumb-item a,
    .page-breadcrumb .breadcrumb .breadcrumb-item.active,
    .section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item a,
    .section-breadcrumb .page-breadcrumb .breadcrumb .breadcrumb-item.active {
        font-size: 13px;
    }

    .description .title,
    .description h1.title {
        font-size: 22px;
    }
}

/* Global frontend form system */
#main .form-control,
#main select.form-control {
    height: 32px;
    min-height: 32px;
    padding: 0 10px;
    line-height: 30px;
    font-size: 13px !important;
    color: #111827;
    border: 1px solid #d7dee7;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: none !important;
}

#main textarea.form-control {
    min-height: 96px;
    padding: 8px 10px;
    line-height: 1.5;
    height: auto;
    resize: vertical;
}

#main .form-control::placeholder,
#main textarea.form-control::placeholder {
    color: #94a3b8;
}

#main .form-control:focus,
#main select.form-control:focus,
#main textarea.form-control:focus {
    border-color: rgba(var(--primary-rgb), 0.7);
    box-shadow: 0 0 0 3px rgba(188, 0, 8, 0.08) !important;
}

#main .select2-container {
    width: 100% !important;
}

#main .select2-container--default .select2-selection--single {
    height: 32px;
    border: 1px solid #d7dee7;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: none !important;
}

#main .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    padding-left: 10px;
    padding-right: 30px;
    font-size: 13px;
    color: #111827;
}

#main .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    right: 6px;
}

#main .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: rgba(var(--primary-rgb), 0.7);
    box-shadow: 0 0 0 3px rgba(188, 0, 8, 0.08) !important;
}

#main .form-inner.form-inner_border {
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

#main .form-inner .form-group > .row.form-group {
    margin-bottom: 12px !important;
}

#main .form-inner .form-group label,
#main .form-inner .col-form-label,
#main .col-form-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
}

#main .form-inner .btn-create_row,
#main .form-inner .btn-delete_row,
#main .btn-send_card,
#main form .btn.btn-primary:not(.btn-sm):not(.btn-xs),
#main form .btn.btn-success:not(.btn-sm):not(.btn-xs),
#main form .btn.btn-danger:not(.btn-sm):not(.btn-xs) {
    height: 32px;
    min-height: 32px !important;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: none !important;
}

#main .btn-send_card,
#main form .btn.btn-primary:not(.btn-sm):not(.btn-xs) {
    border: none;
    background: linear-gradient(to right, var(--primary-color), rgba(var(--primary-rgb), 0.5));
    color: #fff;
    box-shadow: 0 8px 24px rgba(188, 0, 8, 0.18) !important;
}

#main .btn-send_card:hover,
#main form .btn.btn-primary:not(.btn-sm):not(.btn-xs):hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(188, 0, 8, 0.24) !important;
}

#main .form-inner .btn-create_row i,
#main .form-inner .btn-delete_row i,
#main .btn-send_card i,
#main form .btn.btn-primary:not(.btn-sm):not(.btn-xs) i,
#main form .btn.btn-success:not(.btn-sm):not(.btn-xs) i,
#main form .btn.btn-danger:not(.btn-sm):not(.btn-xs) i {
    margin: 0;
}

@media (max-width: 991px) {
    #main .form-inner.form-inner_border {
        padding: 12px;
    }

    #main .form-inner .form-group label,
    #main .form-inner .col-form-label,
    #main .col-form-label {
        margin-bottom: 4px !important;
    }
}

/* Global frontend form spacing */
#main .form-m1 form > .row:first-child,
#main .form-m1 form > .form-group:first-child,
#main .form-inner form > .row:first-child,
#main .form-inner form > .form-group:first-child,
#main .information-form form > .row:first-child,
#main .information-form form > .form-group:first-child {
    margin-top: 0 !important;
}

#main .form-m1 form > .row:not(:first-child),
#main .form-m1 form > .form-group:not(:first-child),
#main .form-inner form > .row:not(:first-child),
#main .form-inner form > .form-group:not(:first-child),
#main .information-form form > .row:not(:first-child),
#main .information-form form > .form-group:not(:first-child) {
    margin-top: 10px !important;
}

#main .form-m1 .row.row5,
#main .form-m1 .row.rowmb3,
#main .form-inner .row.row5,
#main .form-inner .row.rowmb3,
#main .information-form .row.row5,
#main .information-form .row.rowmb3,
#main .table-filter .row.row5,
#main .table-filter .row.rowmb3 {
    margin-left: -5px;
    margin-right: -5px;
}

#main .form-m1 .row.row5,
#main .form-inner .row.row5,
#main .information-form .row.row5,
#main .table-filter .row.row5 {
    row-gap: 10px;
}

#main .form-m1 .row.row5 > [class*="col"],
#main .form-m1 .row.rowmb3 > [class*="col"],
#main .form-inner .row.row5 > [class*="col"],
#main .form-inner .row.rowmb3 > [class*="col"],
#main .information-form .row.row5 > [class*="col"],
#main .information-form .row.rowmb3 > [class*="col"],
#main .table-filter .row.row5 > [class*="col"],
#main .table-filter .row.rowmb3 > [class*="col"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

#main .btn.btn-small,
#main .btn.btn-sm,
#main .btn.btn-sm_table {
    height: 32px;
    min-height: 32px !important;
    max-height: 32px !important;
    padding: 0 10px;
    line-height: 20px;
    font-size: 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    vertical-align: middle;
}

#main .btn.btn-small i,
#main .btn.btn-sm i,
#main .btn.btn-sm_table i {
    margin: 0;
}

/* Global frontend table rhythm */
#main .table.table-module > thead > tr > th,
#main .table.table-module > tbody > tr > th,
#main .table.table-module > tbody > tr > td,
#main .table.table-module > tfoot > tr > td,
#main .table.table-module-white > thead > tr > th,
#main .table.table-module-white > tbody > tr > th,
#main .table.table-module-white > tbody > tr > td,
#main .table.table-module-white > tfoot > tr > td,
#main .section-table th,
#main .section-table td {
    height: 32px;
    padding: 6px 10px;
    line-height: 1.2;
    vertical-align: middle;
    font-size: 13px;
}

#main .table.table-module > thead > tr > th,
#main .table.table-module-white > thead > tr > th,
#main .section-table th {
    font-weight: 700;
}

/* News listing page */
#main .news-page-v2 .news-card-v2 > a {
    display: block;
    color: inherit;
    text-decoration: none;
}

#main .news-page-v2 .news-vertical-footer a {
    text-decoration: none;
}

#main .news-page-v2 .section-pagination {
    margin-top: 35px;
}

@media (max-width: 991px) {
    #main .news-page-v2 .news-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 575px) {
    #main .news-page-v2 .news-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* News detail page */
#main .news-detail-page .news-detail-card {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

#main .news-detail-page .news-content-body img,
#main .news-detail-page .news-content-body iframe,
#main .news-detail-page .news-content-body table {
    max-width: 100%;
}

#main .news-detail-page .news-content-body img {
    height: auto;
}

#main .news-detail-page .news-content-body p,
#main .news-detail-page .news-content-body ul,
#main .news-detail-page .news-content-body ol {
    margin-bottom: 1rem;
}

#main .news-detail-page .news-content-body h3 {
    color: #1a1a1a;
    font-size: 1.125em;
    font-weight: 700;
    margin: 24px 0 14px;
}

#main .news-detail-page .news-content-body ul,
#main .news-detail-page .news-content-body ol {
    padding-left: 1.25rem;
}

#main .news-detail-page .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#main .news-detail-page .share-section a,
#main .news-detail-page .tags-section a,
#main .news-detail-page .related-thumb a,
#main .news-detail-page .related-info a {
    text-decoration: none;
}

@media (max-width: 767px) {
    #main .news-detail-page .news-detail-card {
        padding: 16px !important;
    }

    #main .news-detail-page .related-item {
        flex-direction: column;
    }

    #main .news-detail-page .related-thumb {
        width: 100%;
        height: 180px;
    }
}

/* Header userpanel */
.header-auth-balance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.header-auth-balance i {
    color: var(--primary-color);
}

.header-userpanel {
    position: relative;
}

.header-userpanel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.header-userpanel .userpanel-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
}

.header-userpanel .userpanel-toggle .btn-arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.header-userpanel .userpanel-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 250px;
    margin: 0;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.header-userpanel:hover .userpanel-menu,
.header-userpanel:focus-within .userpanel-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-userpanel:hover .userpanel-toggle .btn-arrow,
.header-userpanel:focus-within .userpanel-toggle .btn-arrow {
    transform: rotate(180deg);
}

.header-userpanel .userpanel-menu > li + li {
    border-top: 1px solid #f1f5f9;
}

.header-userpanel .userpanel-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.4;
}

.header-userpanel .userpanel-menu > li > a strong {
    font-weight: 600;
}

.header-userpanel .userpanel-menu > li > a:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .header-auth {
        gap: 10px;
    }

    .header-auth-balance {
        display: none;
    }

    .header-userpanel .userpanel-menu {
        right: 0;
        min-width: 220px;
    }

    .header-userpanel .userpanel-toggle {
        padding: 0.5em 0.75em;
        font-size: 12px;
    }
}

/* Doithe child-page layout updates */
.doithe-panel {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.doithe-panel-title,
#main .description .title,
#main .description h1.title,
#main .description .sub-title,
#main .description .small-title,
.page-softcard-home .custom-exchange > .section-title,
.page-softcard-home .ex-fee-header .section-title,
.page-softcard-home .charging-history-wrap > .section-title,
.buy-section-page .section-header .section-title {
    display: flex;
    align-items: center;
    min-height: 42px;
    width: 100%;
    margin: 0;
    padding: 10px 16px;
    border: 1px solid #e3e8f0;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #161d2b;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.03);
}

.page-softcard-home .custom-exchange > .section-title::before,
.page-softcard-home .custom-exchange > .section-title::after,
.page-softcard-home .ex-fee-header .section-title::before,
.page-softcard-home .ex-fee-header .section-title::after,
.page-softcard-home .charging-history-wrap > .section-title::before,
.page-softcard-home .charging-history-wrap > .section-title::after,
.buy-section-page .section-header .section-title::before,
.buy-section-page .section-header .section-title::after {
    display: none;
}

.page-softcard-home .custom-exchange > .section-title,
.page-softcard-home .ex-fee-header .section-title,
.page-softcard-home .charging-history-wrap > .section-title,
.buy-section-page .section-header .section-title {
    justify-content: flex-start;
    text-align: left;
}

.doithe-panel-title {
    border-width: 0 0 1px 4px;
    border-radius: 0;
}

.doithe-panel-body {
    padding: 22px;
}

.doithe-auth-page {
    padding: 24px 0 8px;
}

.doithe-auth-panel .form-m1 {
    padding: 0;
}

.doithe-auth-panel .col-form-label {
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.doithe-auth-panel .btn-primary {
    min-height: 42px;
    border-radius: 7px;
    font-weight: 700;
}

.doithe-auth-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.doithe-auth-links a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.doithe-auth-links a:hover {
    text-decoration: underline;
}

.doithe-terms-check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding-left: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.doithe-terms-check .form-check-input {
    position: static;
    flex: 0 0 auto;
    margin: 2px 0 0;
}

.doithe-terms-check .form-check-label {
    flex: 1 1 auto;
    margin: 0;
}

.doithe-subpage-partners {
    margin-top: 28px;
}

.doithe-section-divider {
    margin: 20px 0;
    border-top: 1px dashed #d9e0ea;
}

.wallet-side-panel {
    border-left: 1px dashed #d9e0ea;
    padding-left: 24px;
}

.mobile-nav-backdrop {
    display: none;
}

.header-search-form {
    display: flex;
    align-items: center;
}

.search-submit-btn,
.search-close-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-submit-btn {
    background: var(--primary-color);
    color: #fff;
}

.search-submit-btn:hover {
    background: var(--primary-hover);
}

.buy-section-page #softcard-products-container,
.page-softcard-home .card-type-grid,
.page-softcard-home .page-card-grid {
    gap: 10px;
}

.buy-section-page .denomination-grid,
.page-softcard-home .denomination-grid {
    gap: 10px;
}

.buy-section-page .denom-item,
.page-softcard-home .denom-item {
    min-height: 72px;
    padding: 10px;
    border-radius: 8px;
}

.buy-section-page .denom-item h4,
.page-softcard-home .denom-item h4 {
    font-size: 16px;
    line-height: 1.2;
}

.recharge-service-description {
    margin-top: 24px;
}

.wallet-action-grid,
.bank-select-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-action-grid > *,
.bank-select-row .bank-select-control {
    flex: 1 1 auto;
    min-width: 0;
}

.quick-bank-btn {
    flex: 0 0 auto;
    min-height: 32px;
    white-space: nowrap;
}

.doithe-order-summary {
    margin-bottom: 15px;
    border: 1px solid #e7edf5;
    border-radius: 8px;
    box-shadow: none;
}

.doithe-order-summary .card-body {
    row-gap: 12px;
}

.order-payment-panel .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.order-payment-panel form .input-group {
    max-width: 520px;
    margin: 0 auto 16px;
}

.order-payment-panel .btn,
.order-detail-actions .btn,
#main .table-module td[style*="display: flex"] .btn {
    white-space: nowrap;
}

#main .table-module td[style*="display: flex"] {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.order-detail-actions {
    margin-top: 14px;
}

@media (max-width: 991px) {
    body.is-mobile-nav-open {
        overflow: hidden;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 57px 0 0;
        z-index: 98;
        background: rgba(15, 23, 42, 0.32);
        opacity: 0;
        visibility: hidden;
        display: block;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    body.is-mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        top: 57px;
        left: min(-84vw, -320px);
        width: min(84vw, 320px);
        height: calc(100vh - 57px);
        padding: 12px 0 18px;
        border-right: 1px solid #e5eaf1;
        box-shadow: 18px 0 40px rgba(15, 23, 42, 0.12);
        z-index: 100;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .container-flex {
        gap: 8px;
        padding: 0;
    }

    .nav-list {
        gap: 0;
        width: 100%;
    }

    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid #eef2f7;
    }

    .nav-menu .nav-link {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
    }

    .header-search {
        display: block;
        width: 100%;
        padding: 12px 14px 4px;
        order: -1;
    }

    .header-search-form,
    .search-expand,
    .search-expand.active,
    .search-expand-inner {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .search-toggle-btn,
    .search-close-btn {
        display: none;
    }

    .search-expand-input {
        width: 100%;
        height: 36px;
        font-size: 13px;
    }

    .search-expand-inner {
        display: flex;
        gap: 8px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .doithe-panel-body {
        padding: 16px;
    }

    .doithe-panel-title,
    #main .description .title,
    #main .description h1.title,
    #main .description .sub-title,
    #main .description .small-title,
    .page-softcard-home .custom-exchange > .section-title,
    .page-softcard-home .ex-fee-header .section-title,
    .page-softcard-home .charging-history-wrap > .section-title,
    .buy-section-page .section-header .section-title {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 15px;
    }

    .bank-select-row {
        align-items: stretch;
        flex-direction: column;
    }

    .quick-bank-btn {
        width: 100%;
    }

    .wallet-side-panel {
        border-left: 0;
        border-top: 1px dashed #d9e0ea;
        padding-top: 18px;
        padding-left: 15px;
    }

    .order-payment-panel .btn,
    .order-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .order-payment-panel form .input-group {
        max-width: 100%;
    }
}
