﻿body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

#lightSlider li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor: pointer;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

header {
    background-color: #87CEEB;
    height: 70px;
}

.container {
    width: 100%;
    max-width: 1690px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.navigation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    color: #fff !important;
}

    .navigation-bar .item a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navigation-bar .logo img {
        width: 100px;
    }

.search-input {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

    .search-input .icon {
        position: absolute;
        left: calc(50% - 250px);
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
    }

    .search-input input {
        width: 540px;
        padding: 8px 40px;
        border: none;
        border-radius: 20px;
        background-color: #fff;
    }

.navigation-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
}

    .navigation-bar a img {
        width: 20px;
        margin: 0 5px;
    }

.user {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between user actions */
}

    .user .icon {
        width: 20px;
    }

    .user .user-name,
    .user .phone-number {
        color: #fff;
        font-size: 15px;
    }

/* Additional button styles */
button.n-btn {
    background: none;
    border: none;
    cursor: pointer;
}

    button.n-btn img {
        width: 20px;
    }

.navigation-bar .action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.navigation-bar .user .hotline {
    border: 1px solid #fff;
    border-radius: 40px;
    color: #fff;
    height: 38px;
    line-height: 39px;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
    flex-wrap: nowrap;
    text-overflow: ellipsis;
    max-width: 220px;
}


.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    color: #fff;
    height: 280px;
}

.row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.col-1 {
    flex: 1;
    margin-right: 40px;
}

.title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
}

.list-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list-link ul li {
        margin-bottom: 5px;
    }

        .list-link ul li a {
            color: #333;
            text-decoration: none;
        }

            .list-link ul li a:hover {
                color: #ff5a5f;
                text-decoration: underline;
            }

.app-link a {
    display: block;
    margin-bottom: 10px;
}

.logo-elip {
    align-items: center;
}

.copyright {
    line-height: 1.6;
    color: #fff;
}

    .copyright b {
        font-weight: bold;
    }

    .copyright span {
        color: #ff5a5f;
    }

.left {
    float: left;
}

.display-block {
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}


    .footer-bottom .footer-logo {
        width: 20%;
    }

        .footer-bottom .footer-logo img {
            width: 100px;
            height: 100px;
        }

    .footer-bottom .copyright {
        width: 30%;
    }

.menu-mobile {
    display: none;
}

.tabs-product {
    padding-bottom: 300px;
}

.tabs {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 2px solid #ddd;
    justify-content: space-around;
    padding: 10px 0;
}

.tablinks {
    background-color: #e9ecef;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 20px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    color: #555;
    border-radius: 5px 5px 0 0;
}

    .tablinks.active {
        background-color: #fff;
        color: #000;
        border-bottom: 2px solid #008cba;
    }

.tabcontent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #F4EFDF;
    animation: fadeEffect 0.5s;
    width: 100%;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tabcontent .item {
    background-color: #FFFDF0;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 20px;
}

    .tabcontent .item .icon-sale {
        position: absolute;
        top: 0;
        right: 0;
        width: 70px;
    }

        .tabcontent .item .icon-sale img {
            width: 100%;
        }

    .tabcontent .item a {
        color: #333;
    }

    .tabcontent .item:hover {
        transform: scale(1.05);
    }

    .tabcontent .item .img-prd {
        margin-bottom: 10px;
    }

        .tabcontent .item .img-prd img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: contain;
        }

    .tabcontent .item .text-prd del {
        font-size: 14px;
        color: #acacac;
    }

    .tabcontent .item .text-prd p {
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tabcontent .item .text-prd b {
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.detail-product {
    padding-bottom: 300px;
}

.form-cart {
    padding-bottom: 300px;
}

.product-common {
    display: flex;
    gap: 30px;
}

    .product-common .photo-container {
        width: 450px;
    }

        .product-common .photo-container img {
            width: 100%;
            object-fit: cover;
        }


.package-info {
    padding: 0 0 0 25px;
    overflow: hidden;
    width: 80%;
}

    .package-info .name {
        color: #111;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        padding-bottom: 10px;
        margin: 0
    }

        .package-info .name .preparing-time {
            color: #2197dc
        }

    .package-info .stat {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

        .package-info .stat .type {
            color: #626262;
            font-size: 14px;
            max-width: 75%;
            line-height: 17px;
            margin-right: 20px;
            text-transform: uppercase
        }

        .package-info .stat .stat-info {
            font-size: 14px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: center;
        }

            .package-info .stat .stat-info img {
                margin-top: -1px;
                width: 18px
            }

    .package-info .price-x .price {
        color: #000;
        font-size: 20px;
        font-weight: 600;
        line-height: 35px;
        padding: 0 10px 0 0
    }

        .package-info .price-x .price .unit-price {
            font-weight: 500;
            margin-left: 0;
            font-size: 20px
        }

        .package-info .price-x .price .per-weight {
            color: #7c7c7c;
            font-size: 16px;
            font-weight: 400
        }

        .package-info .price-x .price .coin {
            color: #0a8dd8;
            display: inline-block;
            margin-left: 30px;
            font-size: 16px
        }

        .package-info .price-x .price .sale-info {
            color: #f22726
        }

.price .unit-price {
    font-size: 12px;
    line-height: 20px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #acacac;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    margin-bottom: 5px;
}

.btn-cart-box {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    text-align: center;
}

.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    .btn-cart:hover {
        background-color: #2980b9;
    }

    .btn-cart img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .btn-cart span {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .btn-cart > * {
        margin: 0 5px;
    }

.brand-info-box {
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border: 1px solid red;
    padding: 15px;
    margin-bottom: 15px;
}

.overview .container {
    font-size: 14px;
    margin: 5px 0 15px;
    background: #f0f0f0;
    padding: 10px;
}

.product-desc .title-box {
    display: flex;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 10px;
}

    .product-desc .title-box .tab {
        padding: 10px;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

        .product-desc .title-box .tab.active {
            font-weight: bold;
            border-bottom: 2px solid #000;
        }

.product-desc .content-box {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
}

.product-desc .content-x {
    display: none;
}

    .product-desc .content-x.active {
        display: block;
    }

.product-desc .preservation-box {
    list-style-type: none;
    padding-left: 0;
}

    .product-desc .preservation-box li {
        margin-bottom: 5px;
    }

.product-desc .popup-promo-app {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.product-desc .popup-header {
    text-align: right;
}

    .product-desc .popup-header .btn-close-popup {
        background: none;
        border: none;
        cursor: pointer;
    }

.product-desc .popup-body p {
    margin: 10px 0;
    text-align: justify;
}

.related-package {
    margin: 20px 0;
}

    .related-package .title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
        display: block;
    }

    .related-package .package-list {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .related-package .package {
        width: 200px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
    }

    .related-package .cover-photo {
        position: relative;
    }

    .related-package .package-default img {
        width: 100%;
        height: auto;
        display: block;
    }

    .related-package .img-flash-sale {
        position: absolute;
        width: 50px;
        height: auto;
        z-index: 2;
    }

    .related-package .link-absolute {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .related-package .overview {
        padding: 10px;
    }

.name {
    font-size: 16px;
    margin-bottom: 10px;
}

    .name a {
        text-decoration: none;
        color: #000;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.related-package .d-flex-center-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-package .price-container {
    display: flex;
    gap: 5px;
}

.related-package .sale-price {
    font-size: 16px;
    font-weight: bold;
    color: #e74c3c;
}

.unit-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #7f8c8d;
}

.related-package .weight-serving {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.btn-add-to-cart {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

    .btn-add-to-cart img {
        width: 24px;
        height: auto;
    }

.ralated-product .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.slide-product .item {
    background-color: #FFFDF0;
    margin: 10px 0;
    padding: 15px;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 20px;
}

    .slide-product .item:hover {
        transform: scale(1.05);
    }

    .slide-product .item .img-prd {
        margin-bottom: 10px;
    }

        .slide-product .item .img-prd img {
            width: 100%;
        }

    .slide-product .item .text-prd del {
        font-size: 14px;
        color: #acacac;
    }

.slide-product a .item .text-prd p {
    margin: 0;
    color: #333;
}

.alrt-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex !important;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0
}

    .alrt-popup.show {
        opacity: 1;
        pointer-events: all
    }

    .alrt-popup .wapper {
        background: #fff;
        width: 320px;
        border-radius: 10px;
        overflow: hidden
    }

        .alrt-popup .wapper .main {
            padding: 15px;
            text-align: center
        }

        .alrt-popup .wapper .title {
            background: #bf2929;
            color: #fff;
            text-align: center;
            font-weight: 400;
            padding: 15px 10px;
            margin-bottom: 0
        }

        .alrt-popup .wapper .close-alrt {
            text-align: center;
            margin: 0 auto 10px auto;
            border: 2px solid #bf2929;
            padding: 5px 15px;
            cursor: pointer;
            width: 205px;
            height: 38px;
            border-radius: 20px;
            color: #bf2929;
            display: flex;
            justify-content: center
        }

    .alrt-popup.success .wapper .title {
        background: #09e493
    }

    .alrt-popup.success .wapper .close-alrt {
        display: none
    }

.icon-cart {
    background: url(../image/cart-shopping-solid.svg) no-repeat;
    width: 30px !important;
    height: 30px;
    display: block;
}



.breadcrumb {
    padding: 25px 0
}

    .breadcrumb .container ul {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 0;
    }

        .breadcrumb .container ul li {
            display: flex;
            align-items: center;
        }

            .breadcrumb .container ul li a {
                margin-right: 15px;
                font-size: 15px;
                color: #000
            }

            .breadcrumb .container ul li p {
                font-size: 15px;
                color: #0479c9
            }

            .breadcrumb .container ul li img {
                width: 10px;
            }

@media only screen and (max-width: 1025px) {
    .menu-web {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .tabcontent {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slide-menu-product {
    display: none !important;
}

@media only screen and (max-width: 769px) {
    .slide-menu-product {
        display: block !important;
    }

    .tabs-product {
        margin-top: 0px !important;
    }

    .list-module {
        display: none !important;
    }

    .module-product-index .list-module {
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .product-common {
        display: grid;
        gap: 30px;
    }

    .detail-product .container .aside-right {
        width: 100%;
        display: inline-block;
    }

    .slide-check {
        color: #fff;
    }

    .menu-mobile {
        width: 100%;
        position: relative;
        display: block;
    }

        .menu-mobile .menu-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin-bottom: 10px;
        }

        .menu-mobile .logo {
            width: 70px;
            text-align: center;
        }

        .menu-mobile .menu-toggle {
            display: block;
            cursor: pointer;
            position: absolute;
            right: 10px;
            top: 10px;
            width: 35px;
        }

        .menu-mobile .navigation-bar-mobile {
            display: none;
            flex-direction: column;
            align-items: flex-start;
            background-color: #444;
            padding: 10px;
            position: relative;
            z-index: 100;
        }

        .menu-mobile .item {
            width: 100%;
            margin: 5px 0;
        }

        .menu-mobile .user {
            display: flex;
            width: 100%;
            justify-content: space-between;
        }

            .menu-mobile .user .action {
                margin: 5px 0;
                display: flex;
                align-items: center;
            }

            .menu-mobile .user .cart-icon {
                align-self: flex-end;
            }

            .menu-mobile .user .login,
            .menu-mobile .user .register {
                justify-content: flex-start;
            }

        .menu-mobile .icon {
            margin-right: 8px;
        }

        .menu-mobile .navigation-bar-mobile.open {
            display: flex;
        }

    .tabcontent {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .navigation-bar-mobile .menu-top .item a {
        display: flex;
        align-items: center;
    }

    .menu-mobile .navigation-bar-mobile {
        padding: 15px;
        border-radius: 5px;
    }

    .menu-mobile .item a span {
        color: #ecf0f1;
        font-weight: bold;
    }

    .menu-mobile .user .action {
        color: #ecf0f1;
    }

    .product-common .photo-container {
        width: 100%;
    }

    .product-common .package-info {
        width: 100%;
    }

    .tabs {
        display: -webkit-box;
        display: flex;
        overflow-x: scroll;
        white-space: nowrap;
    }

    .tablinks {
        flex-shrink: 0;
        padding: 10px 15px;
        text-align: center;
        display: inline-block;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .count_shopping_cart {
        color: red;
    }

    .cart {
        display: flex;
    }
}

@media only screen and (max-width: 500px) {
    .wrapper-login-2 {
        margin-top: 50px !important;
    }

    .wrapper-login {
        width: 100% !important;
        margin-top: 50px !important;
        margin-bottom: 0px !important;
    }

    .price_sale {
        padding: 0 !important;
    }

    .page-wrapper {
        flex-direction: column;
    }

        .page-wrapper .item {
            width: 100% !important;
        }

        .page-wrapper .item-2 {
            width: 100% !important;
            text-align: left !important;
        }

            .page-wrapper .item-2 .social {
                justify-content: left !important;
            }

    .wrapper-login-2 .checkbox label {
        width: 100% !important;
        float: unset !important;
        gap: 10px;
    }

    .from-login button {
        float: unset !important;
        width: 100% !important;
    }

    .from-login .form-group.form-radio {
        display: flex !important;
        width: 100% !important;
    }

    .from-login .form-group > label:not(.error) {
        margin-bottom: 5px !important;
    }

    .from-login .form-group > ._input {
        margin-bottom: 10px !important;
    }

    .wrapper-login-2 {
        margin-top: 35px;
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .from-login .form-group {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        display: block !important;
        margin-bottom: 40px !important;
    }

        .from-login .form-group > ._input {
            width: 100%;
            position: relative;
        }

    .footer {
        height: 100%;
    }

    .footer-bottom {
        display: block;
    }

        .footer-bottom .footer-logo {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .footer-bottom .copyright {
            width: 100%;
            margin-left: 0;
        }

    .tabcontent {
        display: block !important;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom {
        width: 100%;
        margin-bottom: 10px;
    }

    .tabcontent {
        padding: 5px;
    }

    .container {
        padding: 0 10px;
    }

    .food-option-content {
        display: block !important;
    }

    .product-common {
        display: block;
    }

        .product-common .photo-container {
            width: 100%;
            margin-bottom: 10px;
        }

    .package-info {
        width: 100%;
        padding: 0;
    }

    .product-desc .title-box {
        overflow-x: scroll;
        display: -webkit-box;
    }

    .related-package .package {
        width: 100%;
    }

    .package-info .btn-cart-box {
        display: block;
    }

        .package-info .btn-cart-box .item {
            width: 100%;
            margin-bottom: 10px;
        }

    .brand-info-box .brand-info-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.33333% - 20px);
        flex: 1 1 calc(33.33333% - 20px);
        text-align: center;
        padding: 0 5px;
    }

    .brand-info-box .brand-into-title {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .brand-info-box .brand-into-content {
        font-size: 13px;
        font-weight: 700;
    }

    .brand-info-box {
        padding: 5px;
    }

    .menu-mobile .menu-top {
        display: block;
    }

    .search-input input {
        max-width: 100%;
    }

    .menu-mobile .user {
        display: block;
    }

        .menu-mobile .user .action {
            padding: 0;
        }

    .flex-mb {
        display: flex;
        justify-content: space-around;
    }

    .menu-mobile .item {
        width: auto;
    }

    .sub-login .item {
        background: unset !important;
    }

    .menu-mobile .menu-top {
        margin-bottom: 0px;
    }

    .title-box::-webkit-scrollbar {
        display: none;
    }

    .search-input form {
        width: 100%;
    }

    .infaccc-ct {
        flex-direction: column-reverse !important;
    }

        .infaccc-ct .infac-rght {
            width: 100% !important;
            padding: 0;
        }

        .infaccc-ct .infac-lft {
            width: 100% !important;
        }

    .purg-lft {
        padding-left: 0px !important;
    }

    .from-login .form-group label:not(.error) {
        width: 50% !important;
    }

    .footer {
        position: unset;
        font-size: 15px;
    }

    .infac-rght .form-group {
        display: block !important;
    }

    .from-login .form-group > ._input {
        width: 100% !important;
    }

    .gt-norn {
        display: inline-block;
    }

    .purg-lft.infacr-lft .action {
        display: block !important;
        margin-top: 10px;
    }

    .from-login.frm-edit .form-group label.checkbox_acc {
        width: 100% !important;
    }

    .from-login button {
        margin-top: 20px;
    }

    .form-login {
        min-height: 0 !important;
    }
}

/*login*/
.wrapper-login {
    width: 558px;
    background: #f1f1f1;
    margin: 30px auto;
}

    .wrapper-login .tab-content {
        padding: 30px;
        overflow: hidden;
    }

        .wrapper-login .tab-content > div {
            display: none;
        }

            .wrapper-login .tab-content > div.active {
                display: block;
            }

    .wrapper-login .nav-tab {
        overflow: hidden;
    }

        .wrapper-login .nav-tab a {
            background: #fff;
            line-height: 58px;
            font-size: 18px;
            text-align: center;
            display: block;
            width: 50%;
            float: left;
        }

            .wrapper-login .nav-tab a:nth-child(2).active {
                border-right: 0;
                border-left: 1px solid #dadada;
            }

            .wrapper-login .nav-tab a.active {
                color: #1c348e;
                border-bottom: 2px solid #1c348e;
                border-right: 1px solid #dadada;
            }

        .wrapper-login .nav-tab.nav-tab-full a {
            width: 100%;
        }

    .wrapper-login .checkbox label {
        width: 80%;
        float: right;
        display: flex;
        margin-bottom: 20px;
    }

    .wrapper-login .checkbox input {
        border: 1px solid #a7a7a7;
        width: 22px;
        height: 22px;
        border-radius: 1px;
        margin-right: 10px;
    }

.popup-login {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.from-login > span {
    width: 80%;
    float: right;
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
}

    .from-login > span a {
        color: #006abf;
    }

.from-login button {
    background: #05b1f1;
    height: 41px;
    border-radius: 3px;
    border: initial;
    color: #fff;
    width: 80%;
    float: right;
    margin-bottom: 10px;
}

.from-login .form-group.form-date input {
    background: #fff url(../images/bg-select.jpg) no-repeat;
    background-position: center right;
    width: calc(26.6666666667% - 7px);
}

    .from-login .form-group.form-date input:nth-child(3) {
        margin: 0 10px;
    }

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.sub-login a {
    display: block;
    line-height: 42px;
    background: #05b1f1;
    color: #fff;
    text-align: center;
    margin-bottom: 9px !important;
    border-radius: 5px;
    cursor: pointer;
    min-width: 150px;
}


    .sub-login a:last-child {
        margin-bottom: 0;
    }


.sub-login .item {
    background: #fff;
    display: flex;
    align-items: center;
}

    .sub-login .item i {
        color: #000;
        margin-left: 10px;
    }

    .sub-login .item a {
        color: #000 !important;
    }

        .sub-login .item a:hover {
            color: red !important;
        }

.login-taget {
    width: 80%;
    float: right;
}

.radio-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 24px;
    margin-right: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
    text-transform: uppercase;
    font-size: 14px;
}

.close-login {
    cursor: pointer;
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff url(../image/icondetaildesktop.png) no-repeat;
    top: -17px;
    right: -15px;
    background-position: -70px -52px;
    box-shadow: 0 0 7px rgb(0, 0, 0);
}

.log-popup {
    color: #fff;
    cursor: pointer;
}

.alrt-regis {
    clear: both;
    text-align: center;
    color: red;
    margin-bottom: 10px;
    display: none;
}

.alrt-login {
    clear: both;
    text-align: center;
    color: red;
    margin-bottom: 10px;
    display: none;
}

.pop_sub-login {
    position: absolute;
    top: calc(100% + 17px);
    z-index: 99;
    padding: 20px;
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: none;
}

.a {
    position: relative;
}

.sub-logined {
    background: #fff;
}

    .sub-logined a {
        display: block;
        border-bottom: 1px solid rgba(205, 205, 205, 0.8039215686);
        position: relative;
        color: #333333 !important;
        font-size: 14px;
    }

        .sub-logined a:first-child {
            padding-top: 0;
        }

        .sub-logined a:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .sub-logined a.information:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: 1px -72px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.noti:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background: url(../images/icondetailprd.png);
            background-position: -21px -66px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.orders:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -47px -66px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.viewed:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -76px -66px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.favourite:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -128px -65px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.bought:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -105px -67px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.rate:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -152px -65px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.voucher:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -181px -66px;
            width: 25px;
            height: 27px;
        }

        .sub-logined a.out:before {
            content: "";
            position: absolute;
            top: 0;
            left: 2px;
            background-position: -210px -66px;
            width: 25px;
            height: 27px;
        }

    .sub-logined:before {
        border-bottom-color: #fff;
    }

.infaccc .title-h2 h2 {
    font-weight: 500;
}

.w-100 {
    width: 100% !important;
}

.from-login .form-group {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

    .from-login .form-group a {
        position: absolute;
        top: 0;
        right: 0;
        line-height: 38px;
        background: #05b1f1;
        color: #fff;
        padding: 0 10px;
        border-radius: 0 3px 3px 0;
    }

    .from-login .form-group label:not(.error) {
        width: 20%;
        margin: 0;
    }

        .from-login .form-group label:not(.error) > span.text {
            color: silver;
            font-size: 11px;
        }

    .from-login .form-group label.error {
        font-size: 14px;
        color: red;
        margin-bottom: 0;
        font-weight: 400;
    }

    .from-login .form-group > ._input {
        width: 80%;
        float: left;
        font-size: 14px;
    }

        .from-login .form-group > ._input._select {
            display: flex;
        }

            .from-login .form-group > ._input._select select {
                width: calc(33.3333333333% - 6px);
                margin-right: 9px;
                font-size: 14px;
            }

                .from-login .form-group > ._input._select select:last-child {
                    margin-right: 0;
                }

    .from-login .form-group input {
        width: 100%;
        height: 38px;
        font-size: 14px;
    }

        .from-login .form-group input::placeholder {
            font-size: 14px;
        }

    .from-login .form-group label.checkbox_acc {
        margin-left: 20%;
        width: 80%;
    }

    .from-login .form-group.form-radio input {
        width: 20px;
        height: 20px;
        margin-right: 5px;
        opacity: 1;
    }

        .from-login .form-group.form-radio input + span {
            display: block;
            margin-left: 7px;
        }

.from-login > span {
    width: 80%;
    float: right;
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
}

    .from-login > span a {
        color: #006abf;
    }

.from-login .form-group.form-date input {
    background: #fff url(../images/bg-select.jpg) no-repeat;
    background-position: center right;
    width: calc(26.6666666667% - 7px);
}

    .from-login .form-group.form-date input:nth-child(3) {
        margin: 0 10px;
    }

.grid-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 23px;
}

    .grid-contact .img img {
        width: 100%;
        height: 345px;
        object-fit: cover;
    }

    .grid-contact .img iframe {
        width: 100%;
        height: 345px;
        object-fit: cover;
    }

    .grid-contact .desc > a {
        display: block;
        margin-bottom: 30px;
        width: 70%;
    }

    .grid-contact .desc a img {
        width: 100%;
    }

    .grid-contact .desc p {
        margin-bottom: 10px;
    }

        .grid-contact .desc p img {
            max-width: 100%;
            height: auto !important;
        }

    .grid-contact .desc .form-group > input {
        height: 40px;
        border-radius: 3px;
        font-size: 14px;
        border: 1px solid #e4e4e4;
    }

    .grid-contact .desc .form-group textarea {
        width: 100%;
        height: 88px;
        padding: 8px 12px;
        border: 1px solid #e4e4e4;
    }

        .grid-contact .desc .form-group textarea::placeholder {
            color: #333;
        }

    .grid-contact .desc .form-group input::placeholder {
        color: #333;
    }

    .grid-contact .desc .form-group .radio {
        display: inline-block;
        line-height: 16px;
        margin: 10px 15px 0 0;
    }

        .grid-contact .desc .form-group .radio label {
            margin-bottom: 0;
        }

    .grid-contact .desc button {
        width: 132px;
        height: 36px;
        border: initial;
        background: #e51e21;
        color: #fff;
        font-weight: 700;
        float: right;
        border: 1px solid #e51e21;
        transition: 0.3s linear;
    }

        .grid-contact .desc button:hover {
            background: #fff;
            color: #e51e21;
        }

    .grid-contact h3 {
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .grid-contact p {
        margin-bottom: 5px;
        line-height: 24px;
        font-size: 14px;
    }

        .grid-contact p a {
            color: #e51e21;
            font-size: 16px;
            font-weight: 700;
        }

    .grid-contact .purg-lft p {
        font-style: italic;
    }

    .grid-contact .purg-lft .form-group .gt-norn .radio-inline .checkmark:after {
        width: 11px;
        height: 11px;
        background: #da2032;
        border-radius: 15px;
        top: 5px;
        left: 5px;
    }

    .grid-contact .grid-contact .radio-inline {
        margin: 10px 0;
    }

.purg-lft .from-login .form-group .gt-norn .radio-inline {
    gap: 10px;
}

    .purg-lft .from-login .form-group .gt-norn .radio-inline input {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

/*Cart*/
.listing-cart .product-item {
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

    .listing-cart .product-item .imgsp {
        width: 20%;
        text-align: center;
    }


    .listing-cart .product-item .infosp .gift-promotion {
        border: 1px solid #eee;
        margin-bottom: 10px;
        border-radius: 5px;
        clear: both;
        padding: 10px;
    }

.listing-cart .name-price a {
    float: left;
    width: 70%;
    font-size: 14px;
    color: #333;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.listing-cart .name-price span {
    float: right;
    color: #f30c28;
    font-size: 14px;
    text-align: right;
    margin-bottom: 0;
    clear: both;
    position: relative;
}

    .listing-cart .name-price span .strike {
        display: block;
        overflow: hidden;
        color: #666;
    }

    .listing-cart .name-price span.line {
        color: #585858;
        text-decoration: line-through;
    }

    .listing-cart .name-price span.vat {
        color: #585858;
        font-size: 13px;
        text-align: right;
        clear: both;
    }

.listing-cart .promo {
    display: block;
    overflow: hidden;
    width: 69%;
    margin-bottom: 5px;
}

    .listing-cart .promo ol {
        padding-left: 25px;
        padding-top: 5px;
        margin-bottom: 5px;
    }

        .listing-cart .promo ol li {
            font-size: 13px;
        }

            .listing-cart .promo ol li a {
                font-size: 13px;
                color: #006abf;
            }

    .listing-cart .promo > a {
        display: block;
        padding-left: 10px;
        font-size: 13px;
        color: #006abf;
    }

    .listing-cart .promo small {
        overflow: hidden;
        font-size: 12px;
        color: #666;
        padding: 6px 0 0 10px;
    }

        .listing-cart .promo small a {
            color: #006abf;
        }

        .listing-cart .promo small:before {
            content: "•";
            color: #d8d8d8;
            display: inline-block;
            vertical-align: middle;
            margin: 0 3px 0 -7px;
        }

.infor-customer {
    border-top: 1px solid #d1d1d1;
    padding: 10px 20px;
    width: 100%;
    display: table;
}

    .infor-customer h4 {
        display: block;
        overflow: hidden;
        font-size: 14px;
        text-transform: uppercase;
        color: #333;
    }

.finaltotal {
    text-align: center;
    padding: 20px 30px;
    border-top: 1px solid #e9e9e9;
}

input {
    border: 0;
    outline: 0;
    background: 0 0;
    font-size: 14px;
    color: #333;
    padding-left: 10px;
}

/*form-cart*/

.box_cart {
    width: 100%;
    margin: 30px auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.bg-while {
    background-color: #fff;
}

.purg-lft {
    padding-left: 20px;
}

/* Danh sách sản phẩm */
.listing-cart {
    margin-bottom: 20px;
}

.product-item {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

    .product-item:last-child {
        border-bottom: none;
    }

.imgsp {
    margin-right: 15px;
    position: relative;
}

    .imgsp img {
        width: 80px;
        height: auto;
        border-radius: 5px;
    }

    .imgsp button {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: #ff4d4f;
        color: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        padding: 5px 10px;
        font-size: 14px;
        transition: background-color 0.3s;
    }

        .imgsp button:hover {
            background-color: #ff7875;
        }

.name-container a {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

    .name-container a:hover {
        color: #007bff;
    }

.name-price span {
    font-size: 14px;
    color: #666;
}

.choose-color {
    margin-top: 10px;
}

.pickamct {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pickamct li {
        margin: 0 5px;
    }

    .pickamct input {
        width: 40px;
        text-align: center;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .pickamct .dw-am,
    .pickamct .up-am {
        cursor: pointer;
        padding: 5px 10px;
        background-color: #007bff;
        color: #fff;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

        .pickamct .dw-am:hover,
        .pickamct .up-am:hover {
            background-color: #0056b3;
        }

/* Tổng tiền */
.area-total {
    padding: 20px 0;
    text-align: right;
}

    .area-total .total-provisional span {
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }

/* Biểu mẫu khách hàng */
.infor-customer h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group input,
    .form-group select {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

        .form-group input::placeholder {
            color: #888;
        }

    .form-group .radio-inline {
        margin-right: 10px;
        font-size: 14px;
        color: #333;
    }

.radio-inline input {
    margin-right: 5px;
}

.radio-inline .checkmark {
    border-radius: 50%;
}

.finaltotal {
    text-align: center;
    margin-top: 20px;
}

    .finaltotal button {
        background-color: #28a745;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        .finaltotal button:hover {
            background-color: #218838;
        }


.title-cart {
    display: flex;
    justify-content: space-between;
}

.toll-right {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

    .toll-right a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #006abf;
    }

    .toll-right img {
        width: 10px;
        margin-right: 10px;
    }

/*KM sản phẩm*/
.price_sale {
    width: 100%;
    float: left;
    padding: 0 20px;
    margin-bottom: 20px;
}

.promotion-event .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8e71c;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

    .promotion-event .top .title-promo {
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .promotion-event .top .right {
        display: flex;
        align-items: center;
        width: unset;
        gap: 5px;
    }

        .promotion-event .top .right .countdown {
            display: flex;
            align-items: center;
            width: unset;
            gap: 5px;
        }

            .promotion-event .top .right .countdown span {
                background: #333;
                color: #fff;
                width: 35px;
                border-radius: 4px;
            }


.promotion-event .bot {
    background: #fff6dd;
    padding: 10px;
    border-radius: 0 0 10px 10px;
}

    .promotion-event .bot .price {
        margin-bottom: 5px;
        display: flex;
        column-gap: 10px;
        flex-wrap: wrap;
    }

    .promotion-event .bot .price-sale {
        font-size: 20px;
        font-weight: bold;
        color: #ff0000;
        margin-bottom: 0;
    }

.check-sold-out {
    margin-top: 5px;
}

    .check-sold-out .sold {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 5px;
    }

        .check-sold-out .sold p {
            font-size: 18px;
        }

    .check-sold-out .line-sold {
        width: 100%;
        height: 10px;
        border-radius: 10px;
        position: relative;
        background: #ffaaaf;
    }

        .check-sold-out .line-sold .line-sold-active {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            background: #ff424e;
            z-index: 10;
        }

.description-event {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

    .description-event .buy-now-sale:hover {
        background: #fff;
        color: #db291d;
        border-color: #db291d;
    }

    .description-event .buy-now-sale {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        background: #db291d;
        padding: 7.5px;
        border-radius: 10px;
        color: #fff;
        border: 1px solid #db291d;
        cursor: pointer;
        transition: background 0.3s linear;
    }

.countdown span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    font-weight: 600;
    line-height: 1;
    border-radius: 5px;
    gap: 5px;
}

/*form login, register*/
.wrapper-login-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 680px;
    margin: 30px auto;
    border: 1px solid #cccccc;
    padding: 30px 20px;
    background-color: #ededed;
}

    .wrapper-login-2 .nav-tab h1 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
    }

    .wrapper-login-2 .tab-content {
        width: 100%;
    }

    .wrapper-login-2 .form-group {
        margin-bottom: 15px;
    }

        .wrapper-login-2 .form-group label {
            display: block;
            font-size: 14px;
            color: #555;
            margin-bottom: 5px;
        }

        .wrapper-login-2 .form-group ._input {
            position: relative;
        }

        .wrapper-login-2 .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

            .wrapper-login-2 .form-group input:focus {
                border-color: #007bff;
                outline: none;
                box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
            }

    .wrapper-login-2 button {
        background-color: #4285f4;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        gap: 5px;
        border-radius: 6px;
        border: 1px solid #4285f4;
        transition: background-color 0.3s;
        display: flex;
        justify-content: center;
    }

        .wrapper-login-2 button:hover {
            background-color: #fff;
            color: #4285f4;
        }

    .wrapper-login-2 .load {
        margin-top: 15px;
    }

        .wrapper-login-2 .load .loadingio-spinner-spinner-uzlublexfob {
            width: 40px;
            height: 40px;
            display: inline-block;
            overflow: hidden;
            background: transparent;
        }

        .wrapper-login-2 .load .ldio-c4d59ljt0jh {
            width: 100%;
            height: 100%;
            position: relative;
            transform: version: 0.2s;
        }

            .wrapper-login-2 .load .ldio-c4d59ljt0jh div {
                position: absolute;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #007bff;
                animation: ldio-c4d59ljt0jh 1.2s infinite ease-in-out;
            }

                .wrapper-login-2 .load .ldio-c4d59ljt0jh div:nth-child(1) {
                    left: 0;
                    top: 0;
                    animation-delay: 0s;
                }

                .wrapper-login-2 .load .ldio-c4d59ljt0jh div:nth-child(2) {
                    left: 0;
                    top: 50%;
                    animation-delay: -0.4s;
                }

                .wrapper-login-2 .load .ldio-c4d59ljt0jh div:nth-child(3) {
                    left: 50%;
                    top: 100%;
                    animation-delay: -0.8s;
                }

                .wrapper-login-2 .load .ldio-c4d59ljt0jh div:nth-child(4) {
                    left: 100%;
                    top: 50%;
                    animation-delay: -1.2s;
                }

    .wrapper-login-2 .alrt-login {
        margin-top: 15px;
        color: #ff0000;
        font-size: 14px;
        text-align: center;
    }

.pop_sub-login.show {
    display: block; /* Hiển thị phần tử khi có lớp show */
}

/*view thong tin can nhan*/
.infaccc-ct {
    display: flex;
    overflow: hidden;
    padding: 0;
    margin: 20px;
    gap: 20px;
    flex-direction: row-reverse;
}

    .infaccc-ct .infac-lft {
        width: 30%;
        background: #eeeeee;
        min-height: auto;
    }

    .infaccc-ct .infac-rght {
        width: 70%;
        display: block;
        float: right;
    }

        .infaccc-ct .infac-rght > p {
            font-size: 14px
        }

.infaccc .title-h2 h2 {
    font-weight: 500;
}

.infac-lft ._tk2 .iteminacc {
    padding: 6px 12px;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
}

    .infac-lft ._tk2 .iteminacc.active {
        background: #dfdfdf;
        font-weight: 700
    }

    .infac-lft ._tk2 .iteminacc:nth-child(n + 1):before {
        content: '';
        position: absolute;
        top: 0;
        left: 2px;
        background: url(../images/icondetailprd.png);
        background-position: -2px -66px;
        width: 22px;
        height: 25px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(2):before {
        background-position: -25px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(3):before {
        background-position: -53px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(4):before {
        background-position: -81px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(5):before {
        background-position: -108px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(6):before {
        background-position: -131px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(7):before {
        background-position: -157px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(8):before {
        background-position: -186px -66px;
    }

    .infac-lft ._tk2 .iteminacc:nth-child(9):before {
        background-position: -210px -66px;
    }

.iteminacc_user {
    padding: 15px 2px 10px;
    overflow: hidden;
}

.infac-lft ._tk2 .iteminacc_user .img-itemacc {
    width: 40px;
    height: 40px;
    float: left;
}

.infac-lft ._tk2 .iteminacc_user .txt-itemacc {
    width: calc(100% - 40px);
    height: auto;
    float: left;
    padding-left: 10px;
}

    .infac-lft ._tk2 .iteminacc_user .txt-itemacc p {
        margin-bottom: 2px;
        font-size: 13px;
        line-height: initial
    }

    .infac-lft ._tk2 .iteminacc_user .txt-itemacc span {
        text-transform: uppercase
    }

.infac-rght .infacr-lft {
    width: 62%;
    float: left
}

.infac-rght .infacr-rght {
    width: 38%;
    float: left;
    padding-left: 30px
}

.infacr-rght p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #333
}

.infacr-rght ul {
    padding: 0
}

    .infacr-rght ul li {
        list-style-type: none;
        padding-left: 15px;
        margin-bottom: 10px;
        font-size: 14px;
        position: relative
    }

.infac-rght .cn-social {
    width: 100%;
    float: left;
    margin-top: 0;
    margin-bottom: 40px;
}

    .infac-rght .cn-social p:first-child {
        font-weight: 500;
        font-size: 18px;
        color: #333;
        margin-bottom: 0;
        padding-bottom: 10px;
        border-bottom: #dddddd;
    }

.infacr-rght ul li:before {
    width: 6px;
    height: 6px;
    background: #000;
    content: '';
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: 8px
}

.infac-rght .infacr-lft form {
    background: #fff;
    padding: 17px;
    border-radius: 4px;
}

.infac-rght .infacr-lft form {
    overflow: hidden
}

.purg-lft.infacr-lft .form-group p {
    font-size: 14px;
    float: left;
    margin-bottom: 0
}

.purg-lft.infacr-lft .form-group a {
    font-size: 14px;
    float: left;
    margin-left: 11px;
    position: relative;
    text-decoration: none;
}

.purg-lft.infacr-lft .form-group:nth-of-type(8) p {
    padding-left: 12px
}

.purg-lft.infacr-lft .action {
    width: 49%;
    display: flex;
    margin: 0 auto;
}

.cn-social .itcnsc {
    display: block;
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 1px solid #ddd
}

.itcnsc .img-itcnsc {
    width: 40px;
    height: 40px;
    float: left
}

.img-itcnsc img {
    max-width: 100%;
    min-height: 100%;
    object-fit: cover
}

.txt-itcnsc {
    width: calc(100% - 40px);
    float: left;
    padding-left: 10px;
    line-height: 40px
}

    .txt-itcnsc a:nth-of-type(1) {
        font-size: 14px;
        color: #333;
        font-weight: 700;
        text-decoration: none;
        transition: .2s linear;
        float: left
    }

    .txt-itcnsc a:nth-of-type(2) {
        font-size: 14px;
        color: #3e7fbc;
        float: right;
        text-decoration: none;
        transition: .2s linear
    }

        .txt-itcnsc a:nth-of-type(2):hover {
            color: #da2032
        }

.itcnsc .txt-itcnsc a.cancel {
    color: #da2032
}

.itcnsc .txt-itcnsc a i {
    color: #26bc4e;
    padding-left: 1px
}

.cn-social .itcnsc:last-child {
    border-bottom: initial
}

.title-h2 h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px
}

.cn-social .desc {
    background: #fff;
    padding: 17px;
    border-radius: 5px;
}

.cn-social > p {
    font-size: 18px;
    display: block;
    margin: 15px 0
}

.from-login.frm-edit .form-group label.checkbox_acc {
    margin-left: 16%;
    width: 49%;
}

.lst_evaluate.lst_comment .desc p:not(.prRating) {
    margin-bottom: 0;
}

.lst_evaluate.lst_comment .desc > span {
    color: #666666;
    font-size: 14px;
    padding: 3px 0;
    display: block;
}

.lst_evaluate .page a.hidden,
.page a.hidden {
    display: none;
}

.accept {
    color: #47c156;
    padding-left: 0;
    font-size: 16px;
}

.noaccept {
    color: #e51e21;
    padding-left: 0;
    font-size: 16px;
}

.box-sale {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    min-height: 330px
}

    .box-sale .item {
        width: 50%;
        float: left;
        padding: 10px;
        background: url(../images/bg-sale.png)no-repeat;
        background-size: 100% 100%
    }

    .box-sale .bg-padding {
        display: flex;
        align-items: center;
        padding: 10px
    }

    .box-sale .box-left {
        width: 72%;
        float: left
    }

        .box-sale .box-left h3 {
            font-size: 26px;
            color: #ec2327
        }

        .box-sale .box-left p {
            margin-bottom: 15px;
            font-size: 14px
        }

        .box-sale .box-left span {
            color: #ccc
        }

    .box-sale .box-right {
        width: 28%;
        float: left;
        margin: 0;
        text-align: center
    }

        .box-sale .box-right a {
            font-size: 15px;
            color: #006abf;
            text-transform: uppercase;
            font-weight: 700
        }

.my_order {
    background: #fff;
    padding: 15px 0;
    border-radius: 5px
}

    .my_order table {
        width: 100%;
        margin-bottom: 30px
    }

        .my_order table tr {
            border-bottom: 1px solid #eeeeee;
        }

        .my_order table thead tr {
            border-bottom: 1px solid #dcdcdc;
        }

        .my_order table th,
        .my_order table td {
            padding: 5px;
            font-weight: 400
        }

            .my_order table td:nth-child(3) {
                width: 45%
            }

            .my_order table td:first-child {
                color: #275cab
            }

            .my_order table td:last-child,
            .my_order table th:last-child {
                text-align: right
            }

            .my_order table td a.detail-order {
                color: #275cab;
            }

.new-order {
    color: #05b1f0;
}

.cancel-order {
    color: #333333;
}

.success-order {
    color: #e51e21;
}

.suppend-order {
    color: #ffe528;
}

.fis-order {
    color: #e51e21
}

.close-order {
    width: 19px;
    height: 19px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer
}

    .close-order:before {
        content: '';
        width: 3px;
        height: 20px;
        background: #999;
        position: absolute;
        transform: translate(8px, 0px) rotate(45deg)
    }

    .close-order:after {
        content: '';
        width: 3px;
        height: 20px;
        background: #999;
        position: absolute;
        transform: translate(8px, 0px) rotate(-45deg)
    }

.lst_purchased_prd {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0
}

    .lst_purchased_prd .item {
        padding: 35px 0 10px 0;
        margin: 0px 0 15px 0;
    }

        .lst_purchased_prd .item .txt {
            padding-left: 10px;
            padding-right: 10px;
        }

            .lst_purchased_prd .item .txt > span {
                font-size: 12px;
                color: #006abf;
                display: block;
            }

        .lst_purchased_prd .item:hover {
            box-shadow: 0 0 10px rgba(0, 0, 0, .3)
        }

    .lst_purchased_prd .img {
        height: 205px;
        line-height: 205px;
        text-align: center;
        margin-bottom: 15px;
        position: relative;
    }

        .lst_purchased_prd .img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain
        }

            .lst_purchased_prd .img img.frame {
                position: absolute;
                top: -35px;
                left: 0;
                width: 100%;
                max-height: initial;
            }

        .lst_purchased_prd .img > a {
            display: block;
            overflow: hidden;
        }

        .lst_purchased_prd .img > span {
            position: absolute;
            top: -23px;
            left: 10px;
            color: #ec2327;
            border: 1px solid #ec2327;
            border-radius: 3px;
            padding: 0 5px;
            line-height: 22px;
            display: inline-block;
            background: #fff;
        }

    .lst_purchased_prd .txt h3 {
        font-size: 14px;
        line-height: 20px;
        max-height: 40px;
        overflow: hidden
    }

        .lst_purchased_prd .txt h3 a span {
            color: #ec2327;
        }

    .lst_purchased_prd .page a.hidden {
        display: none;
    }

    .lst_purchased_prd .page {
        grid-column: 1/5
    }

.listing-cart .imgsp a img {
    width: 75px;
    margin: auto
}

.listing-cart .imgsp button {
    display: block;
    overflow: hidden;
    margin: 15px auto 0;
    border: 0;
    color: #ccc;
    font-size: 15px;
    cursor: pointer;
    width: initial;
    float: initial
}

    .listing-cart .imgsp button span {
        float: left;
        background: #ccc;
        border-radius: 50%;
        width: 12px;
        height: 12px;
        position: relative;
        margin: 2px 3px 0 0
    }

        .listing-cart .imgsp button span:after,
        .listing-cart .imgsp button span:before {
            content: "";
            width: 2px;
            height: 8px;
            background: #fff;
            position: absolute;
            transform: rotate(45deg);
            top: 2px;
            left: 5px
        }

        .listing-cart .imgsp button span:after {
            transform: rotate(-45deg)
        }

.listing-cart .product-item .infosp .gift-promotion {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 5px;
    clear: both;
    padding: 10px;
}

.listing-cart .name-price span.line {
    color: #585858;
    text-decoration: line-through;
}

.listing-cart .name-price span.vat {
    color: #585858;
    font-size: 13px;
    text-align: right;
    clear: both;
}

.listing-cart .name-price span .strike {
    display: block;
    overflow: hidden;
    color: #666
}

.listing-cart .promo {
    display: block;
    overflow: hidden;
    width: 69%;
    margin-bottom: 5px;
}

    .listing-cart .promo ol {
        padding-left: 25px;
        padding-top: 5px;
        margin-bottom: 5px;
    }

    .listing-cart .promo > a {
        display: block;
        padding-left: 10px;
        font-size: 13px;
        color: #006abf;
    }

    .listing-cart .promo ol li {
        font-size: 13px;
    }

        .listing-cart .promo ol li a {
            font-size: 13px;
            color: #006abf;
        }

    .listing-cart .promo small {
        overflow: hidden;
        font-size: 12px;
        color: #666;
        padding: 6px 0 0 10px
    }

        .listing-cart .promo small a {
            color: #006abf;
        }

        .listing-cart .promo small:before {
            content: "\2022";
            color: #d8d8d8;
            display: inline-block;
            vertical-align: middle;
            margin: 0 3px 0 -7px
        }

.listing-cart .choose-color {
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%
}

    .listing-cart .choose-color span {
        width: initial
    }

.title-cart {
    display: flex;
    justify-content: space-between;
    padding: 10px 0
}

    .title-cart a {
        color: #006abf
    }

        .title-cart a i {
            margin-right: 5px
        }

.container_v2 {
    max-width: 610px;
    margin: 0 auto
}

    .container_v2 > span {
        text-align: center;
        display: block;
        font-size: 13px;
        padding-bottom: 20px;
        color: #666
    }

.box_cart {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.area-total .discountcode .usecode {
    display: block;
    overflow: hidden;
    padding-bottom: 10px;
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

    .area-total .discountcode .usecode span {
        overflow: hidden;
        color: #006abf;
        font-size: 14px
    }

.area-total .total-provisional {
    display: flex;
    overflow: hidden;
    justify-content: space-between
}

    .area-total .total-provisional strong:nth-child(2) {
        color: #ec2327
    }

.area-total {
    padding: 10px 20px;
    border-top: 1px solid #ececec;
    display: block;
    overflow: hidden
}

.vat {
    float: right;
    font-size: 13px
}

.tab_notification {
    background: #fff;
    border-bottom: 1px solid #e9e9e9
}

    .tab_notification a {
        display: inline-block;
        padding: 15px 10px;
        position: relative;
        margin: 0 35px
    }

        .tab_notification a.current {
            border-bottom: 3px solid #1c348d
        }

        .tab_notification a.active:before {
            content: '';
            width: 11px;
            height: 11px;
            background: #ec2327;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            right: -5px;
        }

.tab-content_notification .tab-pane {
    display: none
}

    .tab-content_notification .tab-pane.current {
        display: block
    }

.notification {
    border-radius: 10px;
    overflow: hidden;
    background: #fff
}

.lst-thbao table {
    width: 100%
}

.lst-thbao tr td {
    padding: 25px 0;
    vertical-align: central;
    font-size: 14px;
    color: #333
}

.lst-thbao tr:nth-child(odd) {
    background: #f6fcff
}

.lst-thbao tr td:first-child {
    padding-left: 22px;
    width: 12%
}

.lst-thbao tr td:nth-of-type(2) {
    width: 9%;
    text-align: center;
    padding-right: 15px
}

.lst-thbao tr td:nth-of-type(3) {
    width: 58%
}

.lst-thbao tr td:nth-of-type(4) {
    width: 15%;
    padding-right: 15px;
    text-align: right
}

.lst-thbao tr td:last-child {
    padding-right: 18px;
    width: 6%;
    text-align: right
}

    .lst-thbao tr td:last-child a {
        color: #da2032
    }

.lst-thbao tr td a {
    color: #2061a7;
    transition: .2s linear
}

.lst-thbao tr:last-child td {
    border-bottom: initial
}

.liststorenx a,
.liststorenx span {
    width: 32px;
    height: 32px;
    background: #eaeaea;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    color: #333;
    margin-right: 4px;
    transition: .2s linear;
    text-decoration: none
}

    .liststorenx a:last-child {
        margin-right: 0
    }

.detailbil {
    display: block;
    overflow: hidden;
    margin-bottom: 15px
}

    .detailbil h1 {
        font-size: 18px;
        margin: 0;
        float: left
    }

        .detailbil h1 span {
            font-weight: 700
        }

        .detailbil h1 p {
            display: inline-block;
            color: #da2032;
            margin-bottom: 0
        }

        .detailbil h1 a {
            display: block;
            color: #006abf;
            font-size: 14px;
            margin-top: 10px
        }

    .detailbil .timebil {
        margin: 0;
        float: right;
        font-size: 14px
    }

.lst-inftran {
    display: grid;
    grid-template-columns: calc(100%/2) calc(100%/2);
    margin: 0 -6px;
    margin-bottom: 12px;
}

    .lst-inftran .itemtransb {
        margin: 0 6px;
        background: #fff;
        padding: 12px;
        border-radius: 5px
    }

.itemtransb .h3-ittransb {
    padding: 10px 0;
    border-bottom: 1px solid #dbdbdb;
    position: relative
}

    .itemtransb .h3-ittransb h3 {
        font-size: 14px;
        font-weight: 700;
        color: #333;
        margin-bottom: 0;
        text-transform: uppercase;
        position: relative;
        padding-left: 41px;
        line-height: 24px
    }

        .itemtransb .h3-ittransb h3:before {
            content: '';
            width: 35px;
            height: 24px;
            background: url(../images/ic-map.png)no-repeat;
            position: absolute;
            top: 0;
            left: 0
        }

.itemtransb:nth-child(2) .h3-ittransb h3:before {
    background: url(../images/ic-ship.png)no-repeat
}

.itemtransb:nth-child(3) .h3-ittransb h3:before {
    background: url(../images/ic-v.png)no-repeat
}

.itemtransb .txt-ittransb {
    padding: 15px 0
}

.txt-ittransb p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333
}

.itemtransb:first-child .txt-ittransb p:first-child {
    font-weight: 700;
    text-transform: uppercase
}

.tabitem {
    padding: 0 10px;
    background: #fff;
    border-radius: 5px 5px 0 0
}

    .tabitem table {
        width: 100%
    }

        .tabitem table th {
            border-bottom: 1px solid #dbdbdb;
            height: 45px;
            text-align: center;
            font-weight: 400
        }

            .tabitem table th:first-child,
            .tabitem table td:first-child {
                padding-left: 10px;
                text-align: left
            }

            .tabitem table th:last-child,
            .tabitem table td:last-child {
                padding-right: 25px;
                text-align: right
            }

        .tabitem table td:first-child {
            display: block;
            overflow: hidden
        }

        .tabitem table td {
            padding-top: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #dbdbdb;
            text-align: center;
            font-size: 14px;
            color: #333
        }

            .tabitem table td .img-ittable {
                width: 72px;
                float: left;
                height: 72px;
                overflow: hidden
            }

                .tabitem table td .img-ittable img {
                    max-width: 100%;
                    max-height: 100%;
                    object-fit: cover
                }

            .tabitem table td .txt-ittable {
                width: calc(100% - 77px);
                float: left;
                font-size: 14px;
                color: #333;
                padding-left: 15px
            }

                .tabitem table td .txt-ittable a {
                    color: #006abf
                }

.txt-ittable p {
    font-weight: 700;
    margin-bottom: 5px
}

.txt-ittable span {
    display: block
}


.gtittb {
    display: block;
    overflow: hidden;
    padding: 20px 25px;
    background: #fff;
    border-radius: 0 0 5px 5px
}

    .gtittb p {
        font-size: 14px;
        width: 100%;
        text-align: right;
        color: #5e5e5e;
        margin-bottom: 10px
    }

        .gtittb p span {
            width: 160px;
            display: inline-block;
            color: #333
        }

        .gtittb p:last-child span {
            font-size: 16px;
            color: #da2032;
            font-weight: 700;
        }

.infaccc-ct .gobbil {
    font-size: 14px;
    color: #333;
    font-weight: 300;
    padding-left: 29px;
    background: url(../images/ic-leftb.png) no-repeat;
    background-position-x: 2px;
    background-position-y: 3px;
    text-decoration: none;
    transition: .2s linear;
    color: #006abf
}

    .infaccc-ct .gobbil:hover {
        color: #da2032
    }

.tablinks:hover,
.tablinks.active {
    background-color: #87CEEB;
    color: #fff;
}

/*menu mobile*/
@media only screen and (max-width: 1025px) {
    .search-input .icon {
        left: 25px;
    }

    .index {
        padding-bottom: 0px !important;
        margin-top: 70px;
    }

    .wrapper-login {
        margin-top: 70px;
    }

    .footer {
        height: auto;
    }

    .menu-mobile .logo {
        width: 70px;
        text-align: center;
    }

    .search-input input {
        width: 100%;
    }

    .touch-onmb {
        top: 15px;
        left: 10px;
        display: block;
        width: 38px;
        height: 32px;
        background: transparent;
        width: 10%;
    }

        .touch-onmb span {
            width: 22px;
            height: 2px;
            background: #19328c;
            display: block;
            position: absolute;
            top: calc((100% - 2px) / 2);
            border-radius: 10px;
            transition: .3s linear;
        }

        .touch-onmb.active span {
            transform: rotate(45deg);
        }

            .touch-onmb.active span:before, .touch-onmb.active span:after {
                transform: rotate(90deg);
                top: 0;
            }

        .touch-onmb span:before {
            width: 22px;
            height: 2px;
            background: #19328c;
            display: block;
            position: absolute;
            content: '';
            left: 0;
            top: -8px;
            transition: .3s linear;
        }

        .touch-onmb span:after {
            width: 22px;
            height: 2px;
            background: #19328c;
            display: block;
            position: absolute;
            content: '';
            left: 0;
            top: 7px;
            transition: .3s linear;
        }

    .flex-header {
        position: relative;
        justify-content: space-between;
        display: flex;
        align-items: center;
        height: 50px;
        padding: 12px 11px;
    }

    .search-input {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #19328c;
        padding: 7px 11px;
        display: block;
    }

    .footer-bottom {
        display: block;
    }

        .footer-bottom .footer-logo {
            margin: 0 auto;
        }

        .footer-bottom .copyright {
            width: 100%;
            margin-left: 0px;
        }

    .item_footer {
        width: 60% !important;
        margin: 0 auto;
    }

    .wrapper-login-2 {
        margin-top: 60px;
    }

    .header {
        position: relative;
        z-index: 9999;
        margin-bottom: 48px;
    }

    header {
        height: 50px;
    }

        header .container {
            padding: 0;
        }

    .header-right span {
        position: absolute;
        display: block;
        top: -10px;
        right: 5px;
        width: 18px;
        height: 18px;
        font-size: 10px;
        line-height: 18px;
        background: #e52023;
        color: #fff;
        text-align: center;
        border-radius: 50%;
    }

    .cart-icon {
        position: relative;
    }

    .header-right {
        width: 25%;
        padding-left: 10px;
        justify-content: flex-end;
        display: flex;
    }

        .header-right > a, .header-right .slide-check {
            display: flex;
            font-size: 12px;
            color: #6e6e6e;
            margin: 0 5px 0 16px;
            align-items: center;
            position: relative;
            cursor: pointer;
        }

            .header-right .slide-check .icon {
                height: 30px;
                background-position-y: -48px;
                width: 30px;
                margin-right: 9px;
                position: relative;
            }

    .pop_sub-login {
        position: absolute;
        top: calc(100% + 12px);
        background: #f1f1f1;
        z-index: 99;
        padding: 11px;
        width: 200px;
        right: 0;
        transform: initial;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        border-radius: 5px;
        display: none;
    }

    .tabs-product {
        margin-bottom: 10px;
        padding-bottom: 0px;
    }

    .sticker-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 0;
        overflow-y: auto;
        top: 100%;
        left: 0;
        box-shadow: 0 0 10px #33333326;
        background: #fff;
    }

    .sticker-prd {
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
        flex-direction: column;
    }

    .sticker-menu .sticker {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 10000;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 9px 15px rgba(0, 0, 0, .2);
        display: none;
    }

    body.mobile .sticker-menu .sticker {
        max-width: 640px;
        right: 0;
        margin: auto;
    }

    .span-text {
        width: 100%;
        padding: 5px 15px;
        background: #19328c;
        overflow: hidden;
        line-height: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 14px;
        cursor: pointer;
        color: #fff;
    }

    .sticker-wrapper {
        display: block;
        padding: 0 20px;
        background-color: #f8f8f8;
    }

    .list-prd-cate {
        padding-right: 10px;
        overflow-y: auto;
        max-height: calc(100vh - 138px);
    }

    .item-menu {
        width: 100%; /* Mỗi mục chiếm toàn bộ chiều rộng trong trường hợp cuộn */
        margin-bottom: 10px;
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

        .item-menu div {
            text-align: center;
        }

        .item-menu p {
            margin: 0;
            font-size: 16px;
        }

        .item-menu a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
        }

            .item-menu a:hover {
                color: #007bff;
            }

    .list-prd-cate::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }

    .list-prd-cate {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .breadcrumb {
        margin-top: 50px;
        padding: 15px 0;
    }

    #lightSlider {
        margin-top: 0;
    }

    .form-cart {
        padding-bottom: 0;
        margin: 20px 0;
    }

    .box_cart {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .listing-cart .product-item .imgsp {
        width: 22%;
    }

    .imgsp button {
        bottom: 0;
        top: unset;
        right: unset;
    }

    .detail-product {
        padding-bottom: 10px;
    }
}

.overflow {
    overflow: hidden;
}

.wrapper-login-2 .checkbox label {
    width: 80%;
    float: right;
    display: flex;
    margin-bottom: 20px;
}

.btn-login {
    max-width: 200px;
    margin: 0 auto;
}

.btn-register {
    max-width: 250px;
    margin: 0 auto;
}

.form-discount input {
    border: 1px solid #000;
}

.detail-product .container .aside-right {
    width: 360px;
}

    .detail-product .container .aside-right .service-detail-product .services-index {
        padding: 30px 20px;
        background: #f5f5f5;
        border-radius: 10px;
    }

        .detail-product .container .aside-right .service-detail-product .services-index .item {
            padding: 15px 0;
            border-bottom: 1px solid #e7e1e1;
        }

            .detail-product .container .aside-right .service-detail-product .services-index .item:first-child {
                padding-top: 0;
            }

.item-service-index .icon {
    width: 50px;
    height: auto;
}

    .item-service-index .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.item-service-index .info {
    width: calc(100% - 50px);
    padding-left: 15px;
}

    .item-service-index .info h2 {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        color: #333;
        margin: 0;
    }

    .item-service-index .info p {
        font-size: 14px;
        font-weight: 400;
        color: #333;
        margin: 0;
    }

.detail-product .container .aside-right .service-detail-product .services-index .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.index {
    padding-bottom: 280px;
}

.services-index {
    padding: 30px 0;
}

    .services-index .container {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

.item-service-index {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .item-service-index .icon {
        width: 50px;
        height: auto;
    }

        .item-service-index .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .item-service-index .info {
        width: calc(100% - 50px);
        padding-left: 15px;
    }

.footer .container form {
    background-color: #fff;
    height: 48px;
    position: relative;
    margin-bottom: 15px;
}

    .footer .container form input {
        width: 100%;
        height: 100%;
        padding-left: 15px;
    }

    .footer .container form button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }

.item_footer {
    width: 30%;
}

/*Danh mục sản phẩm index*/

.module-product-index .title-module {
    margin-bottom: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
}

    .module-product-index .title-module .title {
        color: #333;
        font-size: 31px;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 0;
    }

.module-product-index .list-module {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

    .module-product-index .list-module .item {
        width: calc((100% - 300px) / 6);
    }

.item-module-product-circle .img {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

    .item-module-product-circle .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.item-module-product-circle a {
    display: block;
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.tabs-product .title-module {
    margin-bottom: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
}

    .tabs-product .title-module h2 {
        color: #333;
        font-size: 31px;
        font-weight: 600;
        text-transform: uppercase;
    }

.item-module-product-circle a:hover {
    color: #4285f4;
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.group-single {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.account {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 0 25px;
}

    .account .account-left a {
        font-size: 12px;
    }

.elementor-divider-separator {
    border: 1px solid #E6E1D2;
    width: 100%;
    display: block;
    margin: 10px 0;
}

.ralated-product .item a {
    color: #333;
}

@media (max-width: 991px) {
    .item-service-index {
        flex-direction: column;
        gap: 10px;
    }

        .item-service-index .info {
            width: 100%;
            text-align: center;
            padding-left: 0;
        }
}

@media (max-width: 1200px) {
    .services-index .container .item {
        width: calc((100% - 15px) / 4);
    }
}

@media (max-width: 767px) {
    .services-index .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

        .services-index .container .item {
            width: 100%;
        }

    .title {
        font-size: 15px !important;
    }

    .title-module {
        margin-bottom: 15px !important;
    }

    .item-service-index {
        justify-content: unset;
    }
}

.social-fixed a, .social-fixed div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 15px 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

    .social-fixed a.phone, .social-fixed div.phone {
        background-color: #ff182b;
    }

.social-fixed .coccoc-alo-phone {
    background-color: transparent;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
    transition: visibility 0.5s;
}

.social-fixed .coccoc-alo-ph-circle {
    width: 60px;
    height: 60px;
    top: -22px;
    left: -7px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid red;
    opacity: 0.1;
    -webkit-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.social-fixed .coccoc-alo-ph-circle-fill {
    width: 38px;
    height: 38px;
    top: -15px;
    left: 0;
    display: none;
    position: absolute;
    background-color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.social-fixed .coccoc-alo-ph-img-circle {
    width: 40px;
    height: 40px;
    top: -8px;
    left: 8px;
    position: absolute;
    z-index: 10;
    background: url(/html/style/image/phone.png) no-repeat center center;
    background-size: 100% 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
}

@-moz-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-webkit-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-o-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-moz-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

@-o-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

.social-fixed a.zalo, .social-fixed div.zalo {
    background: #0090f3;
}

    .social-fixed a.zalo img, .social-fixed div.zalo img {
        margin-left: -4px;
    }

.social-fixed a img, .social-fixed div img {
    object-fit: contain;
    width: initial;
}

.social-fixed .scroll-top svg {
    width: 30px;
    height: 30px;
}

.index .tabs-product {
    padding-bottom: 20px;
}

.social-fixed {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 20;
}

.page-wrapper {
    display: flex;
    gap: 20px;
}

    .page-wrapper .item {
        width: 70%;
        text-align: center;
    }

    .page-wrapper .item-2 {
        width: 30%;
        text-align: right;
    }

    .page-wrapper .item .logo img {
        max-width: 100px;
        padding-bottom: 10px;
    }

    .page-wrapper .item .footer-description {
        padding-bottom: 10px;
    }

    .page-wrapper .item h3 {
        font-size: 20px;
        font-weight: 500;
        margin-top: 0;
    }

    .page-wrapper .item p {
        margin: unset;
    }

    .page-wrapper .item span {
        display: block;
    }

    .page-wrapper .item a {
        font-size: 24px;
        font-weight: 600;
        margin: unset;
        color: #fff;
    }

    .page-wrapper .item-2 .social {
        display: flex;
        justify-content: right;
    }

        .page-wrapper .item-2 .social .item {
            width: 40px !important;
            height: 40px;
        }

@media (min-width:1200px) {
    .container {
        max-width: 1265px;
        margin: 0 auto
    }

    .container-2 {
        max-width: 1400px;
    }
}

.food-option-title p {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 2.5rem;
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity));
    margin: 0;
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
    font-size: 16px;
    line-height: 1.25rem;
}

.food-option-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 20px;
}

    .total .item {
        flex: 1;
        text-align: center;
    }

        .total .item p {
            font-size: 16px;
            font-weight: bold;
            margin: 0;
            color: #333;
        }

#total-price, #total-kcal {
    color: #e74c3c;
    font-size: 18px;
}

#total-price {
    float: none;
}

#Cart table tr td {
    text-align: center;
    padding: 10px;
}

.infac-lft {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 20px auto;
}

.txt-itemacc {
    margin-bottom: 20px;
    text-align: center;
}

    .txt-itemacc p {
        font-size: 14px;
        color: #555;
    }

    .txt-itemacc span {
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }

.user-info {
    display: flex;
    flex-direction: column;
}

.iteminacc {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .iteminacc:not(:last-child) {
        margin-bottom: 10px;
    }

    .iteminacc a {
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .iteminacc.active a {
        color: #da2032;
    }

    .iteminacc i {
        font-size: 18px;
        color: #555;
    }

    .iteminacc:hover {
        background-color: #f0f0f0;
    }

        .iteminacc:hover a {
            color: #da2032;
        }

        .iteminacc:hover i {
            color: #da2032;
        }

.infaccc {
    padding-bottom: 270px;
}

.infac-rght {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

.title-h2 h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.my_order {
    width: 100%;
    overflow-x: auto;
}

    .my_order table {
        width: 100%;
        border-collapse: collapse;
        table-layout: auto;
    }

    .my_order th, .my_order td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .my_order th {
        background-color: #f7f7f7;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .my_order td {
        font-size: 14px;
        color: #555;
    }

    .my_order a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .my_order a:hover {
            color: #da2032;
        }

    .my_order .suppend-order {
        color: #e67e22;
        font-weight: bold;
    }

    .my_order tbody tr:hover {
        background-color: #f9f9f9;
        transition: background-color 0.3s ease;
    }

    .my_order td a.detail-order {
        font-weight: 600;
        color: #2c3e50;
    }

@media (max-width: 768px) {
    .pd-bt170 {
        padding: 0 !important;
    }

    .my_order th, .my_order td {
        padding: 10px;
        font-size: 13px;
    }

    .title-h2 h2 {
        font-size: 20px;
    }

    .infaccc {
        padding-bottom: 0;
    }
}

.page {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

    .page a {
        text-decoration: none;
        color: #da2032;
        font-size: 16px;
    }

        .page a.disabled {
            color: #aaa;
            pointer-events: none;
        }

        .page a.active-page {
            font-weight: bold;
            color: #333;
        }

    .page i {
        margin-right: 5px;
    }

.lst_evaluate.purchased_prd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Các mục sản phẩm */
.purg-lft .item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

    /* Flexbox layout to push .price to the bottom */
    .purg-lft .item .img {
        padding: 10px;
        flex: 1;
    }

        .purg-lft .item .img img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            aspect-ratio: 1;
            object-fit: cover;
        }

    .purg-lft .item .desc {
        padding: 10px;
        flex: 0;
    }

        .purg-lft .item .desc h3 {
            font-size: 16px;
            margin: 0;
        }

        .purg-lft .item .desc a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

    .purg-lft .item .price.price_order {
        background-color: #f1f1f1;
        padding: 10px;
        border-top: 1px solid #ddd;
        /* Ensure .price stays at the bottom */
        flex-shrink: 0;
    }

    .purg-lft .item .price .prPrice {
        color: #333;
        font-size: 18px;
        font-weight: bold;
    }

.product-item {
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
}

    .product-item:hover {
        background-color: #f9f9f9;
    }

    .product-item .imgsp img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .product-item .infosp {
        flex: 1;
        padding-left: 20px;
        text-align: left !important;
    }

        .product-item .infosp a {
            color: #333;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
        }

            .product-item .infosp a:hover {
                color: #007bff;
            }

        .product-item .infosp p {
            font-size: 14px;
            color: #666;
            margin: 5px 0;
        }

        .product-item .infosp div p {
            font-size: 13px;
            margin-left: 15px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .product-item .infosp div p img {
                width: 20px;
                height: 20px;
            }

    .product-item .number {
        width: 50px;
        text-align: center;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 5px;
    }

    .product-item .name-price {
        text-align: center;
        font-size: 16px;
        color: #333;
        display: flex;
        justify-content: center;
    }

    .product-item button {
        background-color: #ff4d4d;
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

        .product-item button:hover {
            background-color: #ff1a1a;
        }

.purg-lft .product-item .item {
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: unset !important;
    border: none !important;
    box-shadow: unset;
    display: table-cell;
}

#Cart-mobile {
    display: none;
}

@media (max-width: 768px) {
    #Cart-mobile {
        display: block !important;
    }

    #Cart {
        display: none;
    }

    .product-item button {
        padding: 3px 5px;
    }

    .listing-cart .product-item .imgsp {
        width: 100%;
        display: flex;
        margin-bottom: 10px;
        gap: 30px;
    }

    .listing-cart .name-price a {
        width: 100%;
    }

    .product-item .infosp {
        display: flex;
    }

        .product-item .infosp .item-price {
            width: 100%;
        }

    .from-login.frm-edit .form-group label.checkbox_acc {
        margin-left: 0;
    }

    #fixpass {
        width: 50px;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative; /* Đặt position relative để các phần tử bên trong có thể căn chỉnh */
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    max-height: 80%; /* Thiết lập chiều cao tối đa */
    overflow-y: auto; /* Bật cuộn dọc */
}

.close-popup {
    position: absolute;
    top: 0px; /* Khoảng cách từ phía trên của popup */
    right: 10px; /* Khoảng cách từ phía bên phải của popup */
    font-size: 40px;
    cursor: pointer;
    background: none; /* Không có nền */
    border: none; /* Loại bỏ đường viền */
    color: #333; /* Màu của dấu 'x' */
}

    .close-popup:hover {
        color: #ff0000; /* Đổi màu khi hover để hiển thị hiệu ứng */
    }

.product-checkbox {
    width: 20px;
    height: 20px;
}

.gt-norn {
    display: flex;
    gap: 40px;
}

thead tr td {
    font-weight: bold;
}

.pd-bt170 {
    padding-bottom: 270px;
}

#app {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin: 100px auto;
}

    #app section {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 300px;
        width: 100%;
    }

        #app section img {
            width: 100%;
            margin-bottom: 20px;
        }

.lst-itped {
    font-size: 1.2em;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

.conti a {
    display: inline-block;
    font-size: 1em;
    color: #007BFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

    .conti a:hover {
        background-color: #007BFF;
        color: white;
    }

@media (max-width: 375px) {

    #app {
        width: 100%;
    }

        #app section {
            max-width: 250px;
        }
}

.checkbox_acc input {
    position: relative;
    z-index: 9999999;
}

@media (max-width: 768px) {
    .infac-rght {
        padding: 10px;
    }

    .detailbil h1 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .lst-inftran {
        display: block;
    }

    .itemtransb .txt-ittransb {
        padding: 0;
    }

    .lst-inftran .itemtransb {
        padding: 0 12px;
    }

    .itemtransb .h3-ittransb h3 {
        padding-left: 0;
    }

    .tabitem table td .img-ittable {
        float: none;
    }

    .tabitem table td .txt-ittable {
        width: 100%;
        float: none;
        padding-left: 0;
    }

    .tabitem table th:last-child, .tabitem table td:last-child {
        padding-right: 0;
        text-align: center;
    }

    .remember-box {
        display: block !important;
    }
}

.grecaptcha-badge {
    display: none !important;
}

.ldio-c4d59ljt0jh {
    display: none;
}

#js-home-slider {
    margin: 20px auto;
}

.remember-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-login {
    min-height: 700px;
}

.forgot_password {
    color: red;
}

