﻿
@keyframes gentle-shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.iphone-17-icon {
    position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 22;
}

    .iphone-17-icon img {
        width: 70px;
        animation: gentle-shake 2s ease-in-out infinite;
        transform-origin: center bottom;
    }

.remind_location {
    z-index: 10 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 8px;
    padding: 16px 8px;
    z-index: 1;
    position: absolute;
    top: 45px;
    width: 300px;
    left: 0;
    line-height: 20px;
    transition: opacity 2s ease;
    opacity: 1;
    color: #333333
}

.remind_location.hide {display:none}

.remind_location.fade-out {
    opacity: 0;
}

    .remind_location::after {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        top: -8px;
        left: 20%;
        border-bottom: 10px solid #d9d9d9;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom-color: #fff;
        z-index: 12;
    }

    .remind_location::before {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        bottom: -1px;
        left: 20%;
        border-bottom: 10px solid #d9d9d9;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom-color: #fff;
        z-index: 12;
    }

.remind_change {
    display: inline;
    color: #2377E8;
    margin-left: 4px;
}

.remind_content {
    font-size: 12px
}

.remind_btn-close {
    position: absolute;
    content: "";
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #98a2b3;
    z-index: 2;
    cursor: pointer;
}

    .remind_btn-close::before {
        position: absolute;
        content: "";
        top: 9px;
        right: 4px;
        width: 10px;
        border-radius: 8px;
        height: 1px;
        transform: rotate(45deg);
        background-color: #fff;
    }

    .remind_btn-close::after {
        position: absolute;
        content: "";
        top: 9px;
        right: 4px;
        width: 10px;
        border-radius: 8px;
        height: 1px;
        transform: rotate(-45deg);
        background-color: #fff;
    }

@media (max-width: 640px) {
    .remind_location {
        right: 5px;
        left:unset;
    }

        .remind_location::after {
            top: 5px;
        }

        .remind_location::before {
            right:10%;
            left:unset;
            top:-8px;
            bottom:unset;
        }
}

#boxFAQ {
    margin: 20px auto 24px
}

    #boxFAQ .title {
        color: #1d1d20;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px
    }

    #boxFAQ .accordion {
        display: flex;
        flex-direction: column;
        gap: 8px
    }

        #boxFAQ .accordion .accordion-item {
            background-color: #f7f7f8;
            border-radius: 8px;
            cursor: pointer;
            padding: 3px 16px;
            transition: .3s
        }

            #boxFAQ .accordion .accordion-item:hover {
                background-color: #eaeaea
            }

            #boxFAQ .accordion .accordion-item .accordion-label {
                align-items: center;
                color: #1d1d20;
                display: flex;
                font-size: 14px;
                justify-content: space-between;
                padding: 8px 0
            }

                #boxFAQ .accordion .accordion-item .accordion-label h3, #boxFAQ .accordion .accordion-item .accordion-label p {
                    font-weight: 600;
                    margin: 0;
                    font-size: 14px;
                }

                #boxFAQ .accordion .accordion-item .accordion-label .icon {
                    transition: transform .2s ease
                }

                    #boxFAQ .accordion .accordion-item .accordion-label .icon.active {
                        transform: rotate(180deg)
                    }

            #boxFAQ .accordion .accordion-item .accordion-content {
                font-size: 13px;
                line-height: 1.5;
                overflow: hidden;
                text-align: justify;
                height: 0;
                transition: all .3s ease
            }

                #boxFAQ .accordion .accordion-item .accordion-content.active {
                    height: auto !important;
                }

                #boxFAQ .accordion .accordion-item .accordion-content p {
                    margin-bottom: 10px;
                    line-height: 20px;
                }

                #boxFAQ .accordion .accordion-item .accordion-content ul {
                    margin-bottom: 10px;
                    padding-left: 40px
                }

                    #boxFAQ .accordion .accordion-item .accordion-content ul li {
                        list-style: disc
                    }

@media screen and (max-width: 768px) {
    #boxFAQ {
        margin: 12px auto
    }

        #boxFAQ .title {
            font-size: 16px
        }

    .iphone-17-icon {
        right: unset;
        left: 10px;
        bottom: 80px;
    }
}


#toc_container {
    background: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
    padding: 15px 10px;
    position: relative;
    width: 100%;
}

.toc_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.toc_list li a {
    color: #4a4a4a;
    cursor: pointer;
    display: block;
}

.toc_list a {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.toc_list ul {
    padding-left: 20px;
}

    .toc_list ul li {
        list-style: disc
    }

        .toc_list ul li ul li {
            list-style: circle
        }

.search .clear-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    background: #6B7280;
    color: #fff;
    font-size: 12px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    border-radius: 50%;
    text-align: center;
    z-index: 9999;
}

.search input {
    padding-right: 60px !important
}

.area {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin: 0 auto 15px;
    overflow: hidden;
    text-align: justify;
}

.jquery-modal .area {
    border: none !important;
    padding: 10px 0 !important;
}

.area.show .area-map {
    top: 30px
}

.area-container {
    padding: 15px;
}


.area-title {
    text-align: center;
    background: #f4f4f4;
}

    .area-title p {
        color: #444;
        font-size: 15px;
        font-weight: 700;
        border-bottom: 1px solid #ededed;
        padding: 4px 0;
    }

.area-select {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    font-size: 14px;
    height: 36px;
    margin: 0 0 10px 0;
    position: relative;
    transition: box-shadow .3s ease-in;
    width: 100%;
}

    .area-select select {
        background-color: transparent;
        border: 0;
        height: 100%;
        padding: 5px 10px;
        text-transform: capitalize;
        width: 100%
    }

.area-list {
    display: none;
    margin-bottom: 5px;
}

    .area-list.show {
        display: block;
        max-height: 300px;
        overflow: auto;
    }

.jquery-modal .area-list.show {
    min-height: 480px;
    max-height: inherit;
}

.area-list__item {
    cursor: pointer;
    font-size: 13px;
    padding: 8px 5px 8px 10px;
    position: relative
}

    .area-list__item:nth-child(odd) {
        background-color: #f2f2f2
    }


    .area-list__item .svg-icon-zalo {
        vertical-align: middle;
        width: 25px;
        height: auto;
    }

    .area-list__item .svg-icon-map {
        vertical-align: middle;
        width: 15px;
        margin: 0 3px;
    }

        .area-list__item .svg-icon-map path {
            fill: #007eaf
        }

    .area-list__item span.phone-number {
        color: #d00;
        font-weight: 700;
        width: 90px;
        display: inline-block;
        vertical-align: middle;
    }

    .area-list__item p {
        line-height: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.area-map {
    background-color: #fff;
    border-radius: 8px;
    left: 50%;
    max-width: 700px;
    overflow: hidden;
    padding: 15px;
    position: fixed;
    top: -100%;
    transform: translateX(-50%);
    transition: all .5s;
    width: 100%;
    z-index: 99999
}

    .area-map iframe {
        max-width: 100%;
        width: 100%
    }


.suggestion-product_title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    max-width: 80%;
    margin: 0 auto 15px;
}

.suggestion-product_list .list-products__item {
    margin: 10px 2px;
}


@media (max-width:800px) {
    .area-list {
        max-height: unset;
        overflow-x: auto;
    }

    .area-list__item .svg-icon-zalo {
        width: 22px;
    }

    .area-list__item div:first-child {
        margin-bottom: 5px;
    }

    .area-list__item div:last-child {
        display: flex;
        gap: 4px;
    }
}

@media (max-width:414px) {
    .area-list {
        margin-bottom: 10px
    }
}

/* table */

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

    .table th,
    .table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #eceeef;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #eceeef;
        border-top: none !important
    }

    .table tbody + tbody {
        border-top: 2px solid #eceeef;
    }

    .table .table {
        background-color: #fff;
    }

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #eceeef;
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #eceeef;
        border-bottom: 0;
    }

    .table-bordered thead th,
    .table-bordered thead td {
        border-bottom-width: 2px;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

    .table-hover .table-active:hover > td,
    .table-hover .table-active:hover > th {
        background-color: rgba(0, 0, 0, 0.075);
    }

.table-success,
.table-success > th,
.table-success > td {
    background-color: #dff0d8;
}

.table-hover .table-success:hover {
    background-color: #d0e9c6;
}

    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
        background-color: #d0e9c6;
    }

.table-info,
.table-info > th,
.table-info > td {
    background-color: #d9edf7;
}

.table-hover .table-info:hover {
    background-color: #c4e3f3;
}

    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
        background-color: #c4e3f3;
    }

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
    background-color: #faf2cc;
}

    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
        background-color: #faf2cc;
    }

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f2dede;
}

.table-hover .table-danger:hover {
    background-color: #ebcccc;
}

    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
        background-color: #ebcccc;
    }

.thead-inverse th {
    color: #fff;
    background-color: #292b2c;
}

.thead-default th {
    color: #464a4c;
    background-color: #eceeef;
}

.table-inverse {
    color: #fff;
    background-color: #292b2c;
}

    .table-inverse th,
    .table-inverse td,
    .table-inverse thead th {
        border-color: #fff;
    }

    .table-inverse.table-bordered {
        border: 0;
    }

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .table-responsive.table-bordered {
        border: 0;
    }

.product-selected_content {
    position: relative;
}

    .product-selected_content .view-more {
        display: none;
        background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .91) 50%, #fff 55%);
        bottom: 0;
        margin: 10px auto 0;
        max-width: 100%;
        padding-top: 50px;
        position: absolute;
        width: 100%;
    }

        .product-selected_content .view-more span {
            display: flex;
            align-items: center;
            background: #fff;
            color: #212529;
            cursor: pointer;
            display: flex;
            font-size: 14px;
            height: 34px;
            justify-content: center;
            margin: 0 auto 15px;
            max-width: 335px;
            transition: all .3s;
            position: relative;
        }

            .product-selected_content .view-more span::after {
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-top: 5px solid #333;
                content: '';
                position: relative;
                right: -5px;
                top: 1px;
            }

            .product-selected_content .view-more span:hover {
                color: #d70018
            }

    .product-selected_content .hidden-row {
        display: none;
    }

.listing-timeline {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    flex-direction: row;
    white-space: nowrap;
    overflow: auto;
}

    .listing-timeline .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #f5f5f5;
        padding: 0.25rem 1rem;
        border-radius: 8px;
        margin: 0 0 1rem 0;
        cursor: pointer;
        font-size: clamp(12px, 2.5vw, 14px);
    }

        .listing-timeline .timeline-item.isactive {
            background: #DE0000;
            color: #fff;
        }

        .listing-timeline .timeline-item strong {
            font-size: clamp(14px, 2.5vw, 16px);
            margin-bottom: 5px;
        }


.flash-sale #countdown {
    display: flex;
    justify-content: space-between;
}

    .flash-sale #countdown span {
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 2px 3px 0 rgba(0,0,0,.2),inset 1px 3px 0 0 hsla(0,0%,100%,.078);
        color: #de4848;
        display: flex;
        line-height: 18px;
        font-size: clamp(12px, 2.5vw, 14px);
        font-weight: 700;
        height: 18px;
        justify-content: center;
        margin-right: 5px;
        width: 25px
    }

.flash-sale .loadmore-btn {
    border: 0;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
    height: 36px;
    padding: 0 20px;
    line-height: 36px;
    background-color: #fff;
    border-radius: 4px;
    display: block;
    margin: 5px auto 0;
    font-weight: 500;
}

    .flash-sale .loadmore-btn span {
        position: relative;
        padding-right: 12px;
    }

        .flash-sale .loadmore-btn span::before {
            border-top: 2px solid #000;
            border-left: 2px solid #000;
            content: '';
            position: absolute;
            height: 5px;
            width: 5px;
            right: 0;
            top: 5px;
            transform: rotate(135deg);
        }

.flash-sale .container {
    position: relative;
}

.flash-sale .preloader {
    background: hsla(0,0%,100%,.75);
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 100000
}

    .flash-sale .preloader .loader {
        background: url(/assets/img/loadding.gif?v=nowebp) no-repeat 50%;
        background-size: 100px;
        height: 100%;
        width: 100%
    }

@media (max-width:1023px) {
    .listing-timeline {
        display: flex;
        justify-content: start;
        width: 100%;
        gap: 10px;
        flex-direction: row;
        white-space: nowrap;
        overflow: auto;
        padding: 0 15px;
    }
}
