@font-face {
    font-family: 'Inter';
    src: url('../../../../fonts/inter/inter-variablefont_opsz,wght.ttf') format('truetype');
}
.material-symbols-outlined {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}



    .material-symbols-rounded.filled {
        font-variation-settings: 'FILL' 
    }

/*body {
    min-height: 100vh;
}*/

:root {
    --text: #33396D;
    --title: #F2726A;
    --text-content: #373737;
    --xanh-la: #68BC5B;
    --title-dam: #CC5952;
    --red-button: #FF847C;
    --yellow-text: #FFD600;
    --lightblue-background: #009AF1;
}

a,
a:hover,
a:visited,
a:focus {
    text-decoration: none;
    outline: 0px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    line-height: 1.4;
    font-size: 14px;
    color: var(--text);
    text-align: justify;
    min-height: 100vh;
}

h1 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

h2 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

h3 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
}

h4 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
}

h5 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
}

h6 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

ul, li {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

img {
    object-fit: contain;
    object-position: 50% 50%;
    max-width: 100%;
    height: auto;
}

/* *::-webkit-scrollbar {
    display: none;
} */

.main-btn .btn-special a {
    border-radius: 999px;
    border: none;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    box-sizing: border-box;
    transition: 0.5s;
    color: #fff;
}

.main-btn .btn-special > .btn-details:hover {
    color: #fff;
}

.main-btn .btn-special > a::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 50%;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.5s;
    transform-origin: 90% 10%;
    border-radius: 999px 999px 0 0;
    border-bottom: none !important;
}

.main-btn .btn-special span {
    position: relative;
    z-index: 2;
}

.main-btn .btn-special > a:hover::before {
    transform: scaleX(1);
    transition: transform 0.5s;
    transform-origin: 90% 10%;
}


.main-btn .btn-special > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.5s;
    transform-origin: 10% 90%;
    border-radius: 0 0 999px 999px;
    border-top: none !important;
}

.main-btn .btn-special > a:hover:after {
    transform: scaleX(1);
    transition: transform 0.5s;
    transform-origin: 10% 90%;
}

/* Btn Color */

.main-btn .btn-special.btn-red a {
    background: var(--red-button);
}

.main-btn .btn-special.btn-red > a::before,
.main-btn .btn-special.btn-red > a::after {
    border: 2px solid var(--title);
    background: var(--title);
}

.main-btn .btn-special.btn-green a {
    background: var(--xanh-la);
}

.main-btn .btn-special.btn-green > a::before,
.main-btn .btn-special.btn-green > a::after {
    border: 2px solid #3EAA63;
    background: #3EAA63;
}

.main-btn .btn-special.btn-green2 a {
    background: #71CD90;
}

.main-btn .btn-special.btn-green2 > a::before,
.main-btn .btn-special.btn-green2 > a::after {
    border: 2px solid #3EAA63;
    background: #3EAA63;
}

.main-btn .btn-special.btn-blue a {
    background: #4ACBF3;
}

.main-btn .btn-special.btn-blue > a::before,
.main-btn .btn-special.btn-blue > a::after {
    border: 2px solid #25a0c7;
    background: #25a0c7;
}

.main-btn .btn-special.btn-yellow a {
    background: #ED9E34;
}

.main-btn .btn-special.btn-yellow > a::before,
.main-btn .btn-special.btn-yellow > a::after {
    border: 2px solid #ED9E34;
    background: #ED9E34;
}

.main-btn .btn-special.btn-gray a {
    background: #ACAFC9;
}

.main-btn .btn-special.btn-gray > a::before,
.main-btn .btn-special.btn-gray > a::after {
    border: 2px solid #8f9099;
    background: #8f9099;
}

.main-btn .btn-special.btn-black a {
    background: #33396D;
}

.main-btn .btn-special.btn-black > a::before,
.main-btn .btn-special.btn-black > a::after {
    border: 2px solid #2a2e53;
    background: #2a2e53;
}

.text-center {
    text-align: center !important;
}

#Topbtn.show {
    opacity: 1;
    visibility: visible;
}

#Topbtn:hover {
    cursor: pointer;
    background-color: #A0D9F2;
    color: #fff
}

#Topbtn:focus {
    outline: none;
}

#Topbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #A0D9F2;
    color: #A0D9F2;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#botchat {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 85px;
    right: 25px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    z-index: 100;
}

.required:after {
    content: " *";
    color: red;
}

.full-btn {
    width: 100%;
    margin-top: 8px;
}

.container {
    width: 100%;
    max-width: 1170px;
}
@media screen and (max-width: 1024px) and (min-width: 871px) {
    .container {
        max-width: 900px;
    }
}
@media screen and (max-width: 870px) {
    .container {
        max-width: 750px;
    }
}

@media screen and (max-width: 800px) {
    .container {
        max-width: 640px;
    }
}

    .header.nonfixed-header {
        position: unset;
    }

    /* CSS Section Nav - Inner */

    /*.header.inner-header {
    height: 100px;
}*/

    .inner-header .overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 54.17%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }

    .nav-action .search-nav {
        margin-right: 30px;
    }

    /* CSS Section Breadcrumb */

    .breadcrumb {
        background: none;
    }

        .breadcrumb .breadcrumb-content {
            font-family: 'Mulish Bold', sans-serif;
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            color: var(--text);
        }

            .breadcrumb .breadcrumb-content > a.active {
                color: var(--title);
                pointer-events: none;
            }

            .breadcrumb .breadcrumb-content i {
                padding: 0 5px;
            }

    /* Sự kiện */

    .Coming-soon {
        color: #FFE600;
    }

    .On-going {
        color: #FFFFFF;
    }

    .Expired {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Cố định */

    .flex-start {
        align-items: flex-start !important;
    }

    .voted {
        color: #FFB24A;
    }

    .non-voted {
        color: #D2D2D2;
    }

    .title {
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        color: var(--title);
    }

    .red-text {
        color: var(--title);
    }

    .align-left {
        text-align: left !important;
    }

    .btn-sidebar,
    .btn-close {
        display: none;
    }

    .no-absolute {
        position: unset !important;
    }

    .user-nav.not-log,
    .user-avatar.logged {
        display: block;
    }

    .user-nav.logged,
    .user-avatar.not-log {
        display: none;
    }

    .no-border {
        border: 0 !important;
    }

    .weight700 {
        font-weight: 700;
        font-family: 'Mulish Bold', sans-serif;
    }

    .user-action-list ul li:has(.login-info) {
        border-bottom: 1px solid #EAEAEA;
    }

    .login-info {
        /*     position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer; */
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 15px;
        line-height: 24px;
        color: #60BE80;
        padding-bottom: 5px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 1;
        white-space: normal;
        text-align: left;
    }


        .login-info .login-name span {
            display: flex;
            align-items: center;
        }

    /***********BỔ SUNG CSS*********/
    /* Navigation bar đặc biệt của trang chủ */

    .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 999;
        height: 70px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .menu-bar {
        background: #FFFFFF;
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
        padding: 5px 0
    }

    .header .contra-nav {
        display: flex;
        justify-content: space-between;
        z-index: 100;
        position: relative;
    }

    .nav-brand {
        display: flex;
    }

        .nav-brand .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            width: auto !important;
            text-decoration: none;
            color: #007660;
            font-weight: 800;
            letter-spacing: 0.5px;
            font-size: 20px;
        }

    .logo svg {
        width: 36px;
        height: 36px;
        fill: #007660
    }

    .nav-brand .logo img {
        width: 60px;
        height: auto;
        object-fit: contain;
    }

    #main-menu-state:not(:checked) ~ #main-menu {
        display: flex;
        align-items: center
    }

    #main-menu {
        float: none;
        flex-grow: 1;
        justify-content: center;
    }

        #main-menu li {
            height: 100%;
        }

            #main-menu li a {
                font-weight: 600;
                font-size: 15px;
                padding: 8px 12px;
                border-radius: 8px;
                position: relative;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                gap: 6px;
                color: #475569;
            }

        #main-menu > li > a {
            line-height: 50px;
            margin-right: 35px;
            font-size: 15px;
        }

        #main-menu li a:hover, #main-menu li a:active {
            color: #007660;
            background: rgba(0, 118, 96, 0.05);
            outline: 0px;
        }

        #main-menu > li > a.current {
            color: #007660;
            background: rgba(0, 118, 96, 0.05);
            outline: 0px;
        }

        #main-menu > li > ul {
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 0px 0px 10px 10px;
            padding: 15px 25px 5px 15px;
        }

            #main-menu > li > ul > li {
                padding-bottom: 10px;
            }

                #main-menu > li > ul > li > a {
                    font-size: 15px;
                    line-height: 20px;
                }

    .nav-action {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    /* .nav-action .search-nav {
        padding-right: 50px;
    } */
    /* CSS Section Footer */

    .mainbackgroud-container {
        background: #008CDB;
        padding-top: 16px;
        padding-bottom: 22px;
    }

        .mainbackgroud-container .main-footer-container {
            display: flex;
            justify-content: space-between;
        }

        .mainbackgroud-container .footer-title {
            font-family: 'Mulish SemiBold', sans-serif;
            font-weight: 600;
            font-size: 20px;
            line-height: 25px;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 10px;
        }

        .mainbackgroud-container .information {
            font-weight: 400;
            font-size: 16px;
            line-height: 28px;
            color: #FFFFFF;
        }

            .mainbackgroud-container .information p {
                margin: 0;
            }

        .mainbackgroud-container .footer-list .list-access {
            font-weight: 600;
            font-size: 16px;
            line-height: 26px;
            color: #FFFFFF;
            font-family: 'Mulish SemiBold', sans-serif;
        }

        .mainbackgroud-container .footer-list .footer-inner-list {
            display: flex;
            margin-left: 20px;
        }

        .mainbackgroud-container .footer-list .list-access li {
            list-style-type: disc;
            padding-bottom: 5px;
        }

        .mainbackgroud-container .footer-list .list-access-left {
            padding-right: 60px;
        }

        .mainbackgroud-container .footer-extra {
            display: flex;
        }

            .mainbackgroud-container .footer-extra .download-app {
                display: flex;
                align-items: center;
                margin-bottom: 5px;
            }

                .mainbackgroud-container .footer-extra .download-app a {
                    margin-left: 10px;
                }

                .mainbackgroud-container .footer-extra .download-app .footer-title {
                    margin-bottom: 0;
                }

            .mainbackgroud-container .footer-extra .count {
                display: flex;
                align-items: flex-end;
                flex-direction: column;
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
                color: #FFFFFF;
            }

    .header .search-icon {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .header.show-icon .menu-bar .search-icon {
        opacity: 1;
        pointer-events: auto;
        position: absolute;
        top: 12px;
        right: 12%;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #FF7757;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 9999;
        transition: opacity 0.3s ease;
    }

    .header .menu-bar .search-box {
        position: absolute;
        top: 20%;
        left: 16%;
        width: 100%;
        display: flex;
        z-index: 9999;
        background: white;
    }

        .header .menu-bar .search-box input {
            flex: 1;
            max-width: 65%;
            height: 40px;
            border-radius: 10px;
            padding: 0 15px;
            font-size: 15px;
            border: 1px solid #FF7757;
        }

            .header .menu-bar .search-box input:focus {
                border-color: #FF7757; /* 🔥 màu cam của bạn */
                outline: none; /* bỏ viền mặc định đen/xanh */
            }
    /* Khi active */
    .header .search-box {
        opacity: 0;
        pointer-events: none;
    }

    /*.header.active-search .search-icon {
    opacity: 0;
    pointer-events: none;
}*/
    .header.active-search .search-box {
        opacity: 1;
        pointer-events: auto;
    }

    .mainbackgroud-container .footer-extra .count p {
        margin-bottom: 0;
    }

    .mainbackgroud-container .footer-extra .count .text-bold {
        font-weight: 600;
        font-family: 'Mulish SemiBold', sans-serif;
    }

    .subbackground-container {
        background: var(--lightblue-background);
    }

        .subbackground-container .sub-footer {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #fff;
            padding: 7px 0;
            display: flex;
            justify-content: space-between;
        }

            .subbackground-container .sub-footer p {
                margin: 0;
            }

            .subbackground-container .sub-footer .built-in {
                display: flex;
                justify-content: space-between;
            }

                .subbackground-container .sub-footer .built-in .tooltip_constrast {
                    margin-right: 10px;
                }

                .subbackground-container .sub-footer .built-in .Built .text-bold {
                    font-weight: 600;
                    font-family: 'Mulish SemiBold', sans-serif;
                }

            .subbackground-container .sub-footer .Copyright {
                display: flex;
                align-items: center;
            }

    /* CSS ô tìm kiesm */

    .home-search {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 41.666666666%;
        transform: translate(-50%, -50%);
        z-index: 10;
        height: 60px;
    }

        .home-search .search-group {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .home-search .search-group > span {
                width: 100%;
                height: 100%;
            }

        .home-search input {
            margin: 0;
            padding-left: 30px !important;
            padding-right: 100px !important;
            color: #262626;
            width: 100%;
            height: 100%;
            max-width: 100%;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 50px;
        }

            .home-search input::placeholder {
                font-weight: 500;
                font-family: 'Mulish', sans-serif;
                font-size: 16px;
                line-height: 22px;
                color: #262626;
            }

            .home-search input:focus {
                outline: none;
            }

        .home-search .search-group .icon-search {
            position: absolute;
            top: 10px;
            right: 11px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #FF7757;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .home-search .search-group .icon-search img {
                width: 24px;
                height: 24px;
            }

    /* Nút Nav */

    .main-menu-btn {
        float: right;
        margin: 10px;
        margin-top: 24.5px;
        position: relative;
        display: inline-block;
        width: 29px;
        height: 29px;
        text-indent: 29px;
        white-space: nowrap;
        overflow: hidden;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
        position: absolute;
        top: 50%;
        left: 2px;
        height: 2px;
        width: 24px;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        background: var(--title);
    }

        .main-menu-btn-icon:before {
            content: '';
            top: -7px;
            left: 0;
        }

        .main-menu-btn-icon:after {
            content: '';
            top: 7px;
            left: 0;
        }

    /*.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
    background: var(--title);
}*/

    #main-menu-state {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        border: 0;
        padding: 0;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    .header .contra-nav label {
        display: none;
    }

    .login-name {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 0px 0px 10px 10px;
        padding: 3.5px 10px;
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        color: #FFE600;
    }

    .login-info .login-name span {
        display: flex;
        align-items: center;
    }

        .login-info .login-name span::after {
            content: '';
            width: 14px;
            height: 14px;
            display: block;
            background: url(../icons/chevron_down.png) no-repeat center;
            margin-left: 10px;
        }


    .user-action {
        background: #FFFFFF;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 15px 20px;
        position: absolute;
        white-space: nowrap;
        top: 60px;
        width: 200px;
        display: none;
        z-index: 9999;
    }

        .user-action ul li {
            font-family: 'Mulish SemiBold', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            line-height: 24px;
            color: var(--text);
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

            .user-action ul li img {
                margin-right: 10px;
            }

            .user-action ul li.logout {
                padding-top: 5px;
                border-top: 1px solid #EAEAEA;
                margin-bottom: 0;
                color: var(--title)
            }

    .user-avatar a {
        border: 1px solid #FBC6BA;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 10px;
    }

    .user-expand-more {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .user-expand-more .material-icons-outlined {
            color: #9A9FCC;
            cursor: pointer;
        }

    .user-avatar img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }


    .personal-info .info-details .avatar {
        position: relative;
        margin-right: 100px;
        flex-shrink: 0;
        width: 150px;
        height: 150px;
    }

        .personal-info .info-details .avatar > img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
        }

        .personal-info .info-details .avatar .avatar-change {
            left: calc(50% - 18px);
            position: absolute;
            background: var(--text);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            justify-content: center;
            align-items: center;
            bottom: -15px;
            cursor: pointer;
        }

            .personal-info .info-details .avatar .avatar-change img {
                width: 18px;
                height: 100%;
            }

    .tooltip_constrast {
        display: none;
    }

    .footer-extra .extra {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-around;
    }

    /******************BỔ SUNG CSS CÒN THIẾU*******************/

    /*CSS language*/
    .header #language-system{
        margin-right: 10px;
        cursor: pointer;
    }

    #language-system .dropdown-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }

    #language-system .dropdown-menu {
        padding: 3px 4px;
        min-width: max-content !important;
        right: 0;
        left: auto;
        width: max-content;
    }

    .user-language-list ul li img {
        width: 30px;
        height: 30px;
    }

    .user-language-list a.actived, .user-language-list a.actived i {
        color: #ffc06a;
    }

    .user-language-list a i {
        color: #fff;
    }

    .user-language.user-action {
        padding-bottom: 0;
        width: auto;
        right: 65px;
    }

    .language-choice .material-icons-outlined {
        color: #9A9FCC;
        cursor: pointer;
    }

    .follow-us .follow-link ul {
        display: flex;
        gap: 6px;
    }

    .follow-us {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .follow-us .follow-header {
            font-family: 'Mulish Medium', sans-serif;
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 30px;
            color: #FFFFFF;
            padding-right: 10px;
        }

    /* CSS Section Tin tức */

    .section-news .news {
        margin-bottom: 60px;
    }

    .section-news .news-title {
        color: var(--title);
        margin-bottom: 35px;
        position: relative;
    }

        .section-news .news-title::before {
            content: '';
            background: url(../icons/Title-before.png);
            width: 120px;
            height: 110px;
            display: block;
            position: absolute;
            bottom: -58px;
            left: -28px;
        }

    .main-news-container .main-news-group .img-main-news {
        border-radius: 20px;
        overflow: hidden;
    }

        .main-news-container .main-news-group .img-main-news > a,
        .sub-news-container .sub-news-group .img-sub-news > a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .main-news-container .main-news-group .img-main-news img,
        .sub-news-container .sub-news-group .img-sub-news img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

    .main-news-container .main-news-group .content-main-news .main-news-title {
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        color: var(--title-dam);
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .news .news-date {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: #71CD90;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

        .news .news-date::before {
            content: '';
            display: block;
            width: 18px;
            height: 18px;
            margin-right: 5px;
            background: url(../icons/calendar.png) no-repeat center;
            background-size: contain;
        }

    .news .news-summary {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        text-align: justify;
        color: var(--text);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 3;
    }

    .section-news .sub-news-container ul {
        display: flex;
        flex-direction: column;
        margin: 0;
    }

        .section-news .sub-news-container ul li {
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }

            .section-news .sub-news-container ul li .sub-news-group {
                display: flex;
            }

    .sub-news-group .img-sub-news {
        flex: none;
        border-radius: 10px;
        overflow: hidden;
        width: 32.83582%;
    }

    .sub-news-group .content-sub-news {
        padding-left: 12px;
    }

        .sub-news-group .content-sub-news .sub-news-title {
            font-weight: 700;
            font-family: 'Mulish Bold', sans-serif;
            font-size: 16px;
            line-height: 22px;
            text-align: justify;
            color: var(--title-dam);
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 2;
            margin-bottom: 5px;
        }

        .sub-news-group .content-sub-news .sub-news-summary .news-summary {
            -webkit-line-clamp: 2;
        }

    /* CSS Section Tạo lịch trình */

    .section-tour .create-tour-container {
        background: url(../images/CreateTour.png) no-repeat center;
        background-size: contain;
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .section-tour .create-tour {
        padding: 30px;
        width: 47.757%;
        position: relative;
    }

        .section-tour .create-tour h2 {
            color: var(--white);
            padding-bottom: 19px;
        }

        .section-tour .create-tour .create-tour-summary {
            font-weight: 500;
            font-size: 16px;
            line-height: 22px;
            text-align: justify;
            color: #FFFFFF;
        }

        .section-tour .create-tour .btn-explore-now {
            display: flex;
            align-items: center;
            padding: 10px 10px 10px 30px;
            position: absolute;
            width: 208px;
            height: 50px;
            left: 900px;
            top: 59px;
            background: var(--red-button);
            border-radius: 200px;
        }

            .section-tour .create-tour .btn-explore-now span {
                font-family: 'Mulish SemiBold', sans-serif;
                font-weight: 600;
                font-size: 16px;
                line-height: 20px;
                color: #FFFFFF;
            }

            .section-tour .create-tour .btn-explore-now::after {
                content: '';
                background: url(../icons/right-icon.png) no-repeat center;
                width: 32px;
                height: 32px;
                background-color: #E85454;
                border-radius: 50%;
                margin-left: 15px;
            }

    /* CSS Section Địa điểm */

    .section-destination .destination-main {
        margin-bottom: 80px;
    }

    .destination-main .destination-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, minmax(180px, 330px));
        gap: 20px;
    }

        .destination-main .destination-grid .destination-content .destination-news {
            display: block;
            cursor: pointer;
            perspective: 500px;
            position: relative;
            height: 100%;
        }

        .destination-main .destination-grid .destination-content .destination-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% 50%;
            margin: 0;
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 78.1%, rgba(0, 0, 0, 0.8) 100%);
        }

        /*.destination-content .destination-news .destination-caption .btn-destination a {
                        padding: 9px 30px;
                    }*/

        .destination-main .destination-grid .destination-content .destination-description {
            border-radius: 20px;
            position: absolute;
            bottom: 0;
            padding: 10px;
            height: 100%;
            left: 0;
            right: 0;
            opacity: 1;
            transition: all 0.5s ease-out;
        }

    .destination-description .destination-link {
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        position: absolute;
        height: calc(100% - 20px);
        width: calc(100% - 20px);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .destination-content .destination-link {
        font-family: 'Mulish SemiBold', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #FFFFFF;
    }

    .destination-main .destination-grid .destination-content .destination-caption {
        width: calc(100% + 1px);
        height: calc(100% + 1px);
        padding: 30px;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        border-radius: 20px;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

    .destination-main .destination-grid .introdution {
        background: #FFFFFF;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        padding: 30px;
    }

        .destination-main .destination-grid .introdution h1 {
            color: var(--title);
            margin-bottom: 20px;
        }

        .destination-main .destination-grid .introdution .intro-summary {
            font-family: 'Mulish SemiBold', sans-serif;
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 22px;
            color: var(--text);
            margin-bottom: 34px;
        }

        .destination-main .destination-grid .introdution .btn-introdution a {
            padding: 14px 30px;
        }

    .destination-main .destination-grid .destination-content .destination-news:hover .destination-caption {
        opacity: 1;
        animation-timing-function: cubic-bezier(0.45, 1.45, 0.8, 1);
        animation-duration: 500ms;
    }

    .destination-content .destination-news .destination-caption .destination-link {
        padding-bottom: 15px;
    }

    .destination-content .destination-news .destination-caption .destination-summary {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #FFFFFF;
        text-align: justify;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 15;
        margin-bottom: 24px;
    }

    .destination-content:nth-child(4) .destination-news .destination-caption .destination-summary,
    .destination-content:nth-child(5) .destination-news .destination-caption .destination-summary {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 4;
    }

    .destination-content .destination-news .destination-caption .btn-destination a {
        padding: 9px 30px;
    }

    #intro-grid {
        grid-area: 1 / 1 / 2 / 2;
    }

    #destination-1 {
        grid-area: 2 / 1 / 4 / 2;
    }

    #destination-2 {
        grid-area: 1 / 2 / 3 / 3;
    }

    #destination-3 {
        grid-area: 3 / 2 / 4 / 3;
    }

    #destination-4 {
        grid-area: 1 / 3 / 2 / 4;
    }

    #destination-5 {
        grid-area: 2 / 3 / 4 / 4;
    }

    /* Owl Carousel Custom - tùy biến khu vực Event */
    .sub-event-container .owl-nav .owl-prev,
    .details-other-main .owl-nav .owl-prev {
        position: absolute;
        left: -20px;
        top: calc(50% - 60px);
        display: block !important;
        color: #fff !important;
        background: #FF8A8A !important;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-event-container .owl-nav .owl-next,
    .details-other-main .owl-nav .owl-next {
        position: absolute;
        right: -20px;
        top: calc(50% - 60px);
        display: block !important;
        color: #fff !important;
        background: #FF8A8A !important;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .details-other-main .owl-nav .owl-prev,
    .details-other-main .owl-nav .owl-next {
        top: calc(50% - 50px);
    }

        .sub-event-container .owl-nav .owl-next.disabled,
        .sub-event-container .owl-nav .owl-prev.disabled,
        .details-other-main .owl-nav .owl-next.disabled,
        .details-other-main .owl-nav .owl-prev.disabled {
            background: rgba(0, 0, 0, 0.6) !important;
            border-radius: 50px !important;
        }

    .sub-event-container .owl-theme .owl-nav [class*=owl-]:hover,
    .details-other-main .owl-theme .owl-nav [class*=owl-]:hover {
        color: #fff;
        text-decoration: none;
    }

    .sub-event-container .owl-theme .owl-nav [class*=owl-]:focus,
    .details-other-main .owl-theme .owl-nav [class*=owl-]:focus {
        outline: none;
    }

    #Tho_dia_du_lich .localtourism-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #Tho_dia_du_lich .localtourism-item {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    #Tho_dia_du_lich .localtourism-image {
        flex: 0 0 22%;
        max-width: 22%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #Tho_dia_du_lich .localtourism-image img {
            width: 100%;
            max-width: 160px;
            height: 100%;
            max-height: 160px;
            object-fit: cover;
            display: block;
            border-radius: 80px;
        }

    #Tho_dia_du_lich .localtourism-details {
        flex: 1; /* chiếm phần còn lại */
        min-width: 0; /* để text wrap đúng trong flex */
    }

        #Tho_dia_du_lich .localtourism-details h4 {
            font-size: 20px;
            font-weight: bold;
            margin: 0 0 8px 0;
            color: #FF7757
        }

        #Tho_dia_du_lich .localtourism-details p {
            font-size: 16px;
            margin: 0 0 8px 0;
        }

    .overlay {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 69.29%, rgba(0, 0, 0, 0.7) 100%);
        z-index: 0;
        top: 0;
    }

        .overlay.border-radius {
            border-radius: 20px;
        }

    .bootbox .modal-header {
        display: block;
    }

    /*Css login */

    .login-form-container {
        padding: 70px 100px;
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title-login h1 {
        font-family: 'Playfair Display Semi', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 40px;
        line-height: 40px;
        color: var(--title);
        margin-bottom: 35px;
    }

    .login-form {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .user-login,
    .pwd-login,
    .email-signup,
    .phone-signup,
    .pwd-repeat-signup {
        background: #E4EDF8;
        border-radius: 10px;
        padding: 20px 20px 20px 50px;
        border: none;
        margin: 15px 0;
        width: 100%;
        display: flex;
        align-items: center;
    }

        .user-login input,
        .pwd-login input,
        .email-signup input,
        .phone-signup input,
        .pwd-repeat-signup input {
            color: #33396D;
        }

        .user-login:focus,
        .pwd-login:focus,
        .email-signup:focus,
        .phone-signup:focus,
        .pwd-repeat-signup:focus {
            outline: none;
        }

    .login-form .user, .login-form .pwd, .login-form .email, .login-form .pwd-repeat, .login-form .input-signup {
        width: 100%;
        position: relative;
    }

        .login-form .user::before,
        .login-form .pwd::before,
        .login-form .email:before,
        .login-form .phone:before,
        .login-form .pwd-repeat:before,
        .login-form .name .first-name::before,
        .login-form .name .last-name::before,
        .login-form .input-signup .birthday::before,
        .login-form .input-signup .nation::before {
            content: '';
            width: 20px;
            height: 20px;
            display: block;
            margin-right: 8px;
            position: absolute;
            z-index: 10;
            top: calc(50% - 10px);
            left: 20px;
        }

        .login-form .user::before {
            background: url(../icons/userlogin.png);
        }

        .login-form .pwd::before {
            background: url(../icons/password.png);
        }

        .login-form .email:before {
            background: url(../icons/email.png);
        }

    .pwd-repeat:before {
        background: url(../icons/password.png);
    }

    .login-form .phone::before {
        background: url(../icons/phonelogin.png);
    }

    .login-form .name .first-name::before, .login-form .name .last-name::before {
        background: url(../icons/usercircle.png);
        left: 35px;
        background-size: cover;
    }

    .login-form .input-signup .birthday::before {
        background: url(../icons/birthday.png);
    }

    .login-form .input-signup .nation::before {
        background: url(../icons/webglobe.png);
        left: 30px;
    }


    .pwd .toggle-password,
    .pwd-repeat .toggle-password-repeat {
        position: absolute;
        top: calc(50% - 10px);
        right: 20px;
        cursor: pointer;
    }

    .login-form label input {
        background: #FFFFFF;
        border: 1.5px solid #E0E0E7;
    }

    .login-form .remember {
        display: block;
        position: relative;
        padding-left: 50px;
        margin-bottom: 12px;
        cursor: pointer;
        width: 100%;
    }

        .login-form .remember input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

    /* Create a custom radio button */
    .login-form .checkmark {
        position: absolute;
        top: 1px;
        left: 20px;
        height: 20px;
        width: 20px;
        background-color: #eee;
        border-radius: 50%;
    }

    /* On mouse-over, add a grey background color */
    .login-form .remember:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the radio button is checked, add a blue background */
    .login-form .remember input:checked ~ .checkmark {
        background-color: #7AD700;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .login-form .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .login-form .remember input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .login-form .remember .checkmark:after {
        content: '';
        background: url(../icons/check.png) no-repeat center;
        top: 5px;
        left: 5px;
        width: 10px;
        height: 10px;
    }

    .login-form .main-btn .btn-special button {
        border-radius: 999px;
        border: none;
        align-items: center;
        justify-content: center;
        position: relative;
        box-sizing: border-box;
        transition: 0.5s;
        color: #fff;
        padding: 20px 70px;
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .login-form .main-btn .btn-special > .btn-details:hover {
        color: #fff;
    }

    .login-form .main-btn .btn-special > button::before {
        content: '';
        position: absolute;
        inset: 0;
        height: 50%;
        z-index: 1;
        transform: scale(0);
        transition: transform 0.5s;
        transform-origin: 90% 10%;
        border-radius: 999px 999px 0 0;
        border-bottom: none !important;
    }

    .login-form .main-btn .btn-special span {
        position: relative;
        z-index: 2;
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 23px;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .login-form .main-btn .btn-special > button:hover::before {
        transform: scaleX(1);
        transition: transform 0.5s;
        transform-origin: 90% 10%;
    }


    .login-form .main-btn .btn-special > button::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        z-index: 1;
        transform: scale(0);
        transition: transform 0.5s;
        transform-origin: 10% 90%;
        border-radius: 0 0 999px 999px;
        border-top: none !important;
    }

    .login-form .main-btn .btn-special > button:hover:after {
        transform: scaleX(1);
        transition: transform 0.5s;
        transform-origin: 10% 90%;
    }

    .login-form .main-btn .btn-special.btn-red button {
        background: var(--title);
        cursor: pointer;
    }

        .login-form .main-btn .btn-special.btn-red button:focus,
        .main-btn .btn-special.btn-red button:focus-visible {
            outline: none;
        }

    .login-form .main-btn .btn-special.btn-red > button::before,
    .login-form .main-btn .btn-special.btn-red > button::after {
        border: 2px solid #CE3228;
        background: #CE3228;
    }

    .title-other-login {
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 23px;
        color: var(--text);
    }

    .other-login {
        width: 100%;
    }

    .title-other-login > span {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

        .title-other-login > span::before {
            background-color: #D0D0E3;
            content: "";
            display: inline-block;
            height: 1px;
            position: relative;
            vertical-align: middle;
            width: 50%;
            right: 0.5em;
            margin-left: -50%;
        }

        .title-other-login > span::after {
            background-color: #D0D0E3;
            content: "";
            display: inline-block;
            height: 1px;
            position: relative;
            vertical-align: middle;
            width: 50%;
            left: 0.5em;
            margin-right: -50%;
        }

    .other-login-link {
        margin-top: 30px;
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .other-login-link ul {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 -25px;
        }

            .other-login-link ul li {
                padding: 0 25px;
            }

    .action-login,
    .action-signup {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .action-signup {
        justify-content: center;
    }

    .have-account {
        font-family: 'Mulish SemiBold', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #2F80ED;
        padding-right: 10px;
    }

    .login-now {
        font-family: 'Mulish SemiBold', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        text-decoration-line: underline;
        color: #E7796F;
    }

    .signup-direct {
        font-family: 'Mulish SemiBold', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #2F80ED;
    }

    .forgot-pwd {
        font-family: 'Mulish SemiBold', sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #E7796F;
        cursor: pointer;
    }

    .action-login::before {
        content: '';
        border: 1px solid #D0D0E3;
        height: 100%;
        position: absolute;
        left: calc(50% - 10px);
    }

    .forgot-pwd-modal .modal-pwd-title {
        font-family: 'Mulish Bold', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 26px;
        line-height: 32px;
        text-align: center;
        color: #F2726A;
        margin-bottom: 15px;
    }

    .forgot-pwd-modal .modal-pwd-remind {
        font-family: 'Mulish Medium', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        color: var(--text);
        margin-bottom: 30px;
    }

    .forgot-pwd-modal .modal-email-input {
        margin-bottom: 30px;
    }

    .forgot-pwd-modal .modal-notes {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .warning-text {
        color: red !important;
    }

    .forgot-pwd-modal .modal-notes span {
        font-family: 'Mulish Medium', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: var(--text);
        margin-bottom: 15px;
    }

    .main-btn .btn-special .forgotpwd-details {
        color: #fff;
        padding: 15px 50px;
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .forgot-pwd-modal .modal-btn-confirm {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-btn .btn-special .forgotpwd-details span,
    .main-btn .btn-special .settingpwd-details span {
        font-size: 16px;
        text-transform: none;
    }

    .main-btn .btn-special .settingpwd-details {
        padding: 15px 50px;
    }

    /*Css login modal*/
    .login-modal .modal-content {
        padding: 14px 20px;
        border-radius: 15px;
        border: none;
        max-width: 600px;
    }

    .login-modal .login-form-container {
        padding: 20px 50px;
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-modal .other-login-link {
        margin-bottom: 50px;
    }

    .validation-summary-errors {
        font-style: italic;
        color: var(--red);
    }

    .inner-event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sub-event-container .other-event {
        font-family: 'Mulish Bold';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        color: var(--title);
        margin-bottom: 10px;
        text-transform: uppercase;
        margin-top: 15px;
    }

    .sub-event-container .sub-event .sub-event-banner {
        position: relative;
        font-family: 'Mulish SemiBold';
        font-weight: 600;
        font-size: 16px;
        line-height: 26px;
    }

    .sub-event-container .sub-event .sub-event-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sub-event-container .sub-event .sub-event-banner a {
        height: 100%;
    }

    .sub-event-container .sub-event .sub-event-banner img {
        border-radius: 20px;
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .sub-event-container .sub-event .sub-event-banner span {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        right: 0;
        bottom: 0;
        padding: 7px 0;
        border-radius: 0px 0px 20px 20px;
        display: flex;
        justify-content: center;
    }

    .sub-event-container .sub-event .sub-event-content .sub-event-title {
        font-family: 'Mulish Bold';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        color: var(--text);
        margin-top: 10px;
        margin-bottom: 5px;
        text-align: justify;
    }

    .sub-event-container .sub-event .sub-event-content .sub-event-date {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
        color: #60BE80;
        display: flex;
        align-items: center;
    }

        .sub-event-container .sub-event .sub-event-content .sub-event-date::before {
            content: '';
            display: block;
            width: 18px;
            height: 18px;
            margin-right: 5px;
            background: url(../icons/calendar.png) no-repeat center;
            background-size: contain;
        }

    /* Xử lý Scroll Bar */

    #exchange-rates-container::-webkit-scrollbar,
    .explore-content .tab-content .tab-content-container::-webkit-scrollbar,
    .maps .gm-style-iw-d::-webkit-scrollbar,
    .utilities-list ul li .utilities-news .utilities-caption .utilities-summary::-webkit-scrollbar,
    .explore-content .tab-content .tab-content-container .tab_pane_content::-webkit-scrollbar,
    .inner .slide-content .inner-slide-summary::-webkit-scrollbar {
        display: none;
    }

    .maps .modal-info .more-info::-webkit-scrollbar,
    .section-explore .tab-content .tab_pane_content ul::-webkit-scrollbar,
    .inner .slide-content .inner-slide-summary::-webkit-scrollbar,
    .filter-dropdown .dropdown-list::-webkit-scrollbar,
    .choose-list-details ul::-webkit-scrollbar,
    .room-container .room-modal-info::-webkit-scrollbar,
    .mytour-choice-place .details-other-main::-webkit-scrollbar {
        width: 4px;
    }

    .moving-list-details .nav-tabs::-webkit-scrollbar,
    .choose-list-details ul::-webkit-scrollbar {
        height: 4px;
    }

    .mytour-choice-place .ChiTiet-content-container .nav-tabs::-webkit-scrollbar {
        height: 2px;
    }

    .maps .modal-info .more-info::-webkit-scrollbar-track,
    .section-explore .tab-content .tab_pane_content ul::-webkit-scrollbar-track,
    .inner .slide-content .inner-slide-summary::-webkit-scrollbar-track,
    .filter-dropdown .dropdown-list::-webkit-scrollbar-track,
    .room-container .room-modal-info::-webkit-scrollbar-track,
    .moving-list-details .nav-tabs::-webkit-scrollbar-track,
    .mytour-choice-place .details-other-main::-webkit-scrollbar-track,
    .mytour-choice-place .ChiTiet-content-container .nav-tabs::-webkit-scrollbar-track,
    .choose-list-details ul::-webkit-scrollbar-track {
        background: #EBEBEB;
        border-radius: 20px;
    }

    .maps .modal-info .more-info::-webkit-scrollbar-thumb,
    .section-explore .tab-content .tab_pane_content ul::-webkit-scrollbar-thumb,
    .inner .slide-content .inner-slide-summary::-webkit-scrollbar-thumb,
    .filter-dropdown .dropdown-list::-webkit-scrollbar-thumb,
    .room-container .room-modal-info::-webkit-scrollbar-thumb,
    .moving-list-details .nav-tabs::-webkit-scrollbar-thumb,
    .mytour-choice-place .details-other-main::-webkit-scrollbar-thumb,
    .mytour-choice-place .ChiTiet-content-container .nav-tabs::-webkit-scrollbar-thumb,
    .choose-list-details ul::-webkit-scrollbar-thumb {
        background: #C9C9C9;
        border-radius: 20px;
    }
.contra-nav .nav-action .user-nav .login {
    color: #007660;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contra-nav .nav-action .specialty {
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    background: #007660;
    color: #fff
}
.tin-tuc-su-kien {
    padding: 120px 0 75px 0;
}
.discover .container .title-discover {
    margin-bottom: 40px;
}
.lich-trinh {
    margin-bottom: 60px;
}
.lich-trinh .title-hyn .view-all {
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lich-trinh .view-all:hover {
    text-decoration: underline;
}

.lich-trinh .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.lich-trinh .card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.3s ease;
}

.lich-trinh .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.lich-trinh .card-header {
    padding: 16px 20px 0;
}

.lich-trinh .location {
    font-weight: 600;
    color: #334155;
}

.lich-trinh .tags {
    padding: 25px 20px 0px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lich-trinh .tag {
    background: rgba(0, 118, 96, 0.1);
    color: #007660;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.lich-trinh .card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.lich-trinh .card-title {
    padding: 0 20px;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1e2937;
    font-weight: 700;
    height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lich-trinh .info {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lich-trinh .points {
    color: #64748b;
    font-size: 15px;
}

.lich-trinh .pin {
    margin-right: 6px;
}

.lich-trinh .price {
    font-weight: 600;
    color: #f28500;
    font-size: 15px;
}

.lich-trinh .price.free {
    color: #16a34a;
}
.app-download {
        background: linear-gradient(135deg, #007660, #005a49);
        border-radius: 16px;
        padding: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        margin-bottom: 80px;
        position: relative;
        overflow: hidden;
    }
    .app-download .app-content {
        position: relative;
        z-index: 2;
    }
    .app-download .app-content h2 {
        font-size: 44px;
        margin-bottom: 20px;
        font-weight: 800;
        color: white;
        line-height: 1.3
    }
    .app-download .app-content p {
        font-size: 17px;
        opacity: 0.9;
        margin-bottom: 35px;
        max-width: 550px;
        line-height: 1.2;
    }
    .app-download .app-buttons {
        display: flex;
        gap: 20px;
    }
    .app-download .app-btn {
        background: #0f172a;
        color: #fff;
        padding: 12px 25px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        font-size: 17px;
        transition: 0.3s;
    }
    .app-download .app-mockup {
        width: 320px;
        transform: rotate(-5deg);
        transition: 0.5s;
        position: relative;
        z-index: 2;
        border-radius: 24px;
        border: 6px solid #fff;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    .app-download .app-btn:hover, .app-btn:focus {
        color: white;
    }
/* Section Container */
.partner-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    text-align: center;
}

    .partner-section .partner-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Partner Card Style */
    .partner-section .partner-card {
        background-color: #FFFFFF;
        border: 1px solid #EEEEEE;
        border-radius: 12px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        cursor: pointer;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        transition: all 0.3s ease;
        padding: 10px;
    }

    /* Logo Image Style */
    .partner-section .partner-logo {
        width: 90%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(10%) opacity(0.9);
        transition: transform 0.3s ease-in-out;
    }

    /* Hover Interaction Effects */
    .partner-section .partner-card:hover {
        transform: translateY(-5px); /* Card nâng nhẹ lên */
        border-color: #E2E8F0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Bóng đổ mềm mại, hiện đại */
    }

        .partner-section .partner-card:hover .partner-logo {
            transform: scale(1.06); /* Logo phóng to nhẹ (nằm trong khoảng 1.05 - 1.1) */
            filter: grayscale(0%) opacity(1); /* Logo hiển thị rõ nét 100% khi tương tác */
        }
.map-section {
    margin-bottom: 60px;
}
    .map-section .smart-map-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a2d4f;
        margin-bottom: 6px;
    }

    .map-section .smart-map-title-underline {
        width: 48px;
        height: 3px;
        background: #e07b1a;
        border-radius: 2px;
        margin-bottom: 20px;
    }

/* Wrapper layout */
    .map-section .showmapLCI {
        display: flex;
        gap: 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
        overflow: hidden;
        min-height: 480px;
        padding: 0 !important;
    }

    /* Left panel */
        .map-section .showmapLCI .col-md-5 {
            width: 300px;
            min-width: 260px;
            max-width: 300px;
            background: #fff;
            padding: 20px 16px;
            border-right: 1px solid #eef0f3;
            flex-shrink: 0;
        }

    /* Right map panel */
        .map-section .showmapLCI .col-md-11 {
            flex: 1;
            background: #eef1f6;
            position: relative;
            min-height: 480px;
        }

    .map-section #map {
        width: 100%;
        height: 100%;
        min-height: 480px;
    }

/* Tab category label */
    .map-section .showitem_tab > .panel-label {
        font-size: 19px;
        font-weight: bold;
        color: #1e293b;
        letter-spacing: 0.4px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

/* Nav pills → vertical category list */
    .map-section .showitem_tab .nav-pills {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        margin: 0;
        list-style: none;
        border: none;
    }

    .map-section .showitem_tab .nav-pills > li {
        width: 100%;
    }

    .map-section .showitem_tab .nav-pills > li > a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border-radius: 8px;
        color: #2c3e55;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
        background: transparent;
        border: none;
    }

    .map-section .showitem_tab .nav-pills > li > a:hover {
        background: #f0f4fb;
        color: #1a2d4f;
    }

    .map-section .showitem_tab .nav-pills > li.active > a,
    .map-section .showitem_tab .nav-pills > li.active > a:focus {
        background: #eaf0fa;
        color: #1a4fa3;
        font-weight: 600;
    }

/* Category icon box */
    .map-section .map-cat-icon {
        width: 32px;
        height: 32px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .map-section .map-cat-icon.hotel, .map-section .map-cat-icon.food, .map-section .map-cat-icon.shop, .map-section .map-cat-icon.place, .map-section .map-cat-icon.entertain {
        background: #f8fafc;
    }

/* Category label + count */
    .map-section .map-cat-label {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .map-section .map-cat-name {
        font-size: 16px;
        font-weight: 500;
        color: #1e293b;
    }

    .map-section .map-cat-count {
        font-size: 16px;
        font-weight: 500;
        color: #1e293b;
    }

/* Active accent bar on left */
    .map-section .showitem_tab .nav-pills > li.active > a .map-cat-icon {
        box-shadow: 0 0 0 2px #1a4fa3;
    }

/* Tab content */
    .map-section .showitem_tab .tab-content {
        display: none; /* hide the list content; map fills right panel */
    }

/* Map placeholder when no API */
    .map-section .map-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        min-height: 480px;
        color: #9aaabf;
        gap: 12px;
    }

    .map-section .map-placeholder svg {
        opacity: 0.4;
    }

    .map-section .map-placeholder p {
        font-size: 14px;
        font-weight: 600;
        color: #7a8fa8;
        margin: 0;
    }

    .map-section .map-placeholder span {
        font-size: 12.5px;
        color: #aabac8;
    }