@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/Inter-Black.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Inter-Bold.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/Inter-ExtraBold.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Inter-Medium.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
    font-family: "Main";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Inter-SemiBold.ttf");
}

:root {
    --color-main: #BC1B2B;
    --color-hover: #FFBC3C;
    --color-text: #333;
    --menu-border: rgb(255 255 255 / 20%);
    --menu-color-text: #fff;
    --menu-color-background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
    --font-main: "Main";
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    top: 0 !important;
    max-width: 1920px;
    min-width: 320px;
    position: relative;
    margin: auto
}

.🐷 {
    padding: 80px 0;

    @media (width < 768px) {
        padding: 40px 0;
    }
}

[x-cloak] {
    display: none !important
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cf-turnstile iframe {
    max-width: 300px;
    width: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%)
}

::-webkit-scrollbar-thumb {
    background: var(--color-main)
}

img {
    max-width: 100%;
    height: auto !important;
    vertical-align: top;
    display: inline-block
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none !important
}

.h-card,
.hidden-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.scale-img {
    overflow: hidden;
    -webkit-transition: width 2s, height 2s, -webkit-transform 2s;
    transition: width 2s, height 2s, transform 2s;
    position: relative;

    &:before {
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
        -o-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
        transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
        z-index: 1;
        border: 100px double rgba(0, 0, 0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
        visibility: visible;
        box-sizing: border-box;
    }

    &:hover:before {
        opacity: 0;
        filter: alpha(opacity=0);
        border: 0 double rgba(255, 255, 255, 0.7);
        visibility: hidden;
    }

    & img {
        transition: all 0.5s;
    }

    & picture {
        transition: all 0.5s;
    }

    &:hover {
        & img {
            transform: scale(1.2, 1.2);
        }

        & picture {
            transform: scale(1.2, 1.2);
        }
    }
}

.hvr-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;

    &:active,
    &:focus,
    &:hover {
        -webkit-animation-name: hvr-bob-float, hvr-bob;
        animation-name: hvr-bob-float, hvr-bob;
        -webkit-animation-duration: 0.3s, 1.5s;
        animation-duration: 0.3s, 1.5s;
        -webkit-animation-delay: 0s, 0.3s;
        animation-delay: 0s, 0.3s;
        -webkit-animation-timing-function: ease-out, ease-in-out;
        animation-timing-function: ease-out, ease-in-out;
        -webkit-animation-iteration-count: 1, infinite;
        animation-iteration-count: 1, infinite;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-direction: normal, alternate;
        animation-direction: normal, alternate;
    }
}

.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3
}

/* Scroll */
.scroll-maded {
    overflow-y: scroll;
    overflow-x: hidden;

    &::-webkit-scrollbar {
        width: 2px;
    }

    &::-webkit-scrollbar-thumb {
        width: 2px;
        background: var(--color-main);

        &:hover,
        &:active {
            width: 2px;
        }
    }
}

.transition {
    transition: .3s all
}

.swiper-wrapper {
    width: inherit;
    height: inherit;

    .swiper-initialized & {
        margin: 0;
        width: 100%;
        height: 100%;

        .swiper-slide {
            padding: 0;
            margin: 0px;
            overflow: hidden;
        }
    }
}


.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, .15);
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    & li {

        & a,
        & span {
            cursor: pointer;
            border-radius: 5px !important;
            border: 1px solid #cacaca;
            background: #ffff;
            min-width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4d4d4d;
            font-size: 14px;
            padding: 5px
        }

        a:hover {
            color: var(--color-main);
            border-color: var(--color-main)
        }
    }
}

.pagination .page-item.active .page-link {
    background: var(--color-main);
    border-color: var(--color-main);
    color: #fff
}

.wrap-main {
    margin: 30px 0
}

.wrap-content {
    margin: 0px auto;
    max-width: 1190px;
}

.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 10px
}

.social li {
    display: inline-block
}

.social li:hover img {
    transform: rotateY(360deg);
    transition: all .5s linear
}

.notify-phone {
    animation: notifyPhone 1s infinite ease-in-out
}

.header {
    background: linear-gradient(180deg, #bc1b2b 0%, #A70B1B 100%);
}

.header-top {
    padding-top: 10px;
}

.header-slogan {
    font-size: 15px;
    color: #ffffff;
    text-transform: capitalize;
}

.header-hotline {
    padding: 6px 16px 6px 6px;
    background: #8c000e;
    border-radius: 50px;

    & span {
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        text-transform: capitalize;
    }
}

.header-main {
    padding: 8px 0px;
}

.header-search {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 7px;

    & p {
        cursor: pointer;
        text-align: center;
        margin: 0;
        color: var(--color-main);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    & input {
        flex: 1 1 0;
        height: 50px;
        outline: 0;
        padding: 0;
        border: 0;
        background: 0;
        text-indent: 16px;
        font-size: 15px;

        &::-webkit-input-placeholder {
            color: #2d2d2d
        }

        &:-moz-placeholder {
            color: #2d2d2d
        }

        &::-moz-placeholder {
            color: #2d2d2d
        }

        &:-ms-input-placeholder {
            color: #2d2d2d
        }
    }
}

.header-btn a {
    width: 114px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    transition: .3s;

    &:hover {
        background: #8c000e;
    }
}

.tintuc-popup {
    position: absolute;
    background: #fff;
    width: 400px;
    right: 0px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px #0005;
    top: 100%;
    display: grid;
    z-index: -1;
    padding: 10px;
    gap: 10px;
    opacity: 0;
    transition: 0.3s all;

    @media (width < 992px) {
        max-width: calc(100vw - 45px);
        right: -40px;
        left: unset;
    }
}

.tintuc-popup.active {
    z-index: 9999;
    opacity: 1;
}

.tintuc-bell-item {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    gap: 15px;
}

.tintuc-bell-img {
    max-width: 100px;
}

.tintuc-bell-txt {
    flex: 1;

    &:hover {
        color: var(--color-main);
    }
}

.tintuc-more {
    background: var(--color-main);
    color: #fff !important;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    transition: 0.2s all;
}

.menu {
    background: linear-gradient(180deg, #A70B1B 0%, #9e0413 100%);
    position: sticky;
    z-index: 999;
    top: 0;

    .wrap-content {
        border-top: 1px solid #8f0210;
        box-shadow: 0 -1px 0 #cc0014;
        padding-top: 4px;
    }

    & ul {
        padding: 0px;
        margin: 0;
        list-style: none;

        & li {
            position: relative;
            z-index: 99;

            & a {
                font-size: 17px;
                font-weight: 600;
                color: #ffffff;
                text-transform: capitalize;
                margin: 0px;
                padding: 0;
                position: relative;
                z-index: 1;
                text-align: center;
                text-decoration: none !important;
                display: block;
                line-height: 45px;
                height: 45px;
                border-radius: 10px 10px 0 0;

                &:hover,
                &.active {
                    background-color: #8c000e;
                }
            }

            &:not(.menu-search) {
                flex: auto;
            }

            &.line {
                width: 1px;
                height: 15px;
                background-color: rgba(255, 255, 255, 0.5);
                flex: none;
            }

            & ul {
                transition: 0.3s all;
                position: absolute;
                min-width: 250px;
                left: 0;
                background: #9e0413;
                box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
                -webkit-transform: perspective(600px) rotateX(-90deg);
                transform: perspective(600px) rotateX(-90deg);
                -webkit-transform-origin: 0 0 0;
                transform-origin: 0 0 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s;

                & li {
                    text-align: left;
                    border-bottom: 1px solid rgb(173 173 173 / 32%);

                    &:last-child {
                        border-bottom: 0px;
                    }

                    & a {
                        padding: 10px;
                        display: block;
                        text-decoration: none !important;
                        line-height: 1.5;
                        text-align: left;
                        text-transform: capitalize;
                        height: auto;
                        border-radius: 0;
                    }

                    & ul {
                        top: 0px;
                        left: 100%;
                    }
                }
            }

            &:hover {
                >ul {
                    transition: 0.3s all;
                    -webkit-transform: perspective(600px) rotateX(0);
                    transform: perspective(600px) rotateX(0);
                    -webkit-transform-origin: 0 0 0;
                    opacity: 1;
                    visibility: visible;
                    transition: all 0.7s;
                }
            }
        }
    }
}

.slideshow-slogan {
    padding: 12px 0;
    background: var(--color-main);

    & marquee {
        font-size: 17px;
        font-weight: 700;
        color: #ffffff;
        text-transform: capitalize;
    }
}

.menu-res {
    display: none;
}

.icon_menu_mobi {
    font-size: 28px;
    color: #fff;
}

.menu_baophu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 999;
}

.menu_mobi {
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu_mobi_add {
    position: fixed;
    flex-direction: column;
    left: -100%;
    top: 0;
    background: var(--menu-color-background);
    z-index: 99999;
    color: var(--menu-color-text);
    height: 100vh;
    overflow-y: scroll;
    line-height: 1.5;
    padding-top: 40px;
    padding-bottom: 20px;
    width: 85%;
    min-width: 140px;
    max-width: 440px;
    transition: 0.5s;
    border-right: 1px solid var(--menu-border);

    .load-menu {
        flex: 1 1 0;

        & ul {
            list-style: none;
            padding: 0;
            margin: 0;

            & li {
                position: relative;
                left: -100%;
                transition: 0.5s;

                & a {
                    color: var(--menu-color-text);
                    display: block;
                    border: 1px solid var(--menu-border);
                    padding: 10px 40px 10px 20px;
                    position: relative;
                    font-size: 16px;
                    margin-bottom: 10px;
                    border-radius: 5px;
                    transition: 0.5s !important;

                    & i {
                        position: absolute;
                        right: 12px;
                        transform: rotate(90deg);
                        width: 20px;
                        height: 20px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 10px;
                        background: var(--color-main);
                        color: #fff;
                        border-radius: 50%;
                        top: 12px;
                    }

                    &.active2 {
                        color: #fff;
                        box-shadow: 0 0 0 25px var(--color-main) inset;

                        i {
                            transform: rotate(0deg);
                            border-left: 1px solid rgba(255, 255, 255, 0.2);
                            background: #fff;
                            color: var(--color-main);
                        }
                    }
                }

                & ul {
                    display: none;
                    padding-left: 15px;
                    margin-bottom: 10px;
                }
            }
        }
    }

    .close_menu {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 15px;
        background: var(--color-main);
        color: #fff;
        width: 25px;
        text-align: center;
        line-height: 25px;
        cursor: pointer;
        border-radius: 5px;
    }

    &.menu_mobi_active {
        left: 0;
        transition: 0.5s;

        .load-menu {
            & ul {
                & li {
                    &:nth-child(2n+1) {
                        left: 0%;
                        transition-delay: 0.1s;
                    }

                    &:nth-child(2n) {
                        left: 0%;
                        transition-delay: 0.3s;
                    }
                }
            }
        }
    }
}

.logo-mb {
    padding: 0 20px;
    display: block;
    text-align: center;
    margin: 10px 0 20px 0;
}

.thongtin-mb ul {
    padding: 0 10px !important;
}

.thongtin-mb ul li {
    list-style: none;
    color: var(--menu-color-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.thongtin-mb ul li i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--menu-color-text);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--menu-color-text);
    border-radius: 5px;
    flex-shrink: 0;
}

.load-menu {
    padding: 0 10px;
}

.title-main {
    text-align: center;
    margin-bottom: 30px;

    & h1,
    & h2 {
        margin-bottom: 0;
        font-size: 40px;
        font-weight: 700;
        color: #252f3f;
        text-transform: capitalize;
        position: relative;
        padding-bottom: 0.5rem;

        &:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 49px;
            height: 3px;
            background-color: var(--color-main);
        }

        @media (width < 768px) {
            font-size: 24px;
        }
    }

    & p {
        margin: 24px auto 0;
        max-width: 900px;
        font-size: 15px;
        color: #2d2d2d;
        line-height: 26px;

        @media (width < 768px) {
            font-size: 13px;
            line-height: 22px;
        }
    }
}

.title-main-2 {
    margin-bottom: 24px;

    & p {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 17px;
        font-weight: 700;
        color: var(--color-main);
        letter-spacing: 1.7px;
        text-transform: uppercase;
        margin-bottom: 0;

        &:before {
            content: '';
            width: 31px;
            height: 2px;
            background-color: var(--color-main);
        }
    }

    & h2 {
        margin-bottom: 0;
        font-size: 40px;
        font-weight: 700;
        color: #252f3f;
        text-transform: capitalize;

        @media (width < 768px) {
            font-size: 24px;
        }
    }

    & a {
        font-size: 17px;
        font-style: italic;
        font-weight: 700;
        background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 8px;
    }
}

.title-detail {
    margin-bottom: 20px;

    & h1 {
        font-size: clamp(22px, calc(30/1200*100vw), 30px);
        font-weight: 700;
        color: var(--color-main);
        margin-bottom: 0
    }
}

.search-popup {
    position: relative;

    .icon-search {
        width: 40px;
        height: 40px;
        border-radius: 40px;
        cursor: pointer;
        text-align: center;
        color: #fff;
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0
    }

    &.active {
        background: var(--color-main);
        color: var(--color-main);
        border: solid 1px var(--color-main);
    }

    .search-grid {
        position: absolute;
        top: 50px;
        right: 0;
        width: 0;
        height: 40px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--color-main);
        z-index: 2;
        opacity: 0;
        border-radius: 25px;
        display: flex;
        align-items: center;

        & p {
            width: 35px;
            height: 35px;
            cursor: pointer;
            outline: 0;
            border: none;
            margin: 0;
            font-size: 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-main)
        }

        & input {
            width: calc(100% - 35px);
            float: right;
            line-height: 35px;
            outline: 0;
            border: none;
            color: #000;
            font-size: 14px;

            &::placeholder {
                color: #ccc
            }
        }
    }
}

.product-item a {
    display: block;
    position: relative;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    height: 100%;
}

.product-item__pic {
    background: #eee;
    overflow: hidden;
    border-radius: 10px;
}

.product-item__info {
    margin-top: 1rem
}

.product-item__name {
    font-weight: 600;
    color: #151515;
    line-height: 22px;
    font-size: 14px;
    height: 44px;
}

.product-item a:hover .product-item__name {
    color: var(--color-main)
}

.product-item__price {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 1rem;
}

.product-item__price--new {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-main);
}

.product-item__price--old {
    font-size: 13px;
    color: #2d2d2d;
    text-decoration: line-through;
}

.product-item__hotline {
    background: var(--color-main);
    border-radius: 50px;
    padding: 6px;

    & span {
        font-weight: 600;
        color: #ffffff;

        @media (width < 768px) {
            font-size: 10px;
        }
    }
}

.splide.procategory:not(.is-overflow) .splide__list {
    justify-content: center
}

.category-nav {
    margin-bottom: 30px
}

.category-nav__item {
    font-size: clamp(14px, calc(16 / 1200 * 100vw), 16px);
    text-transform: uppercase;
    color: inherit;
    display: inline-block;
    vertical-align: top;
    padding-block: 7px;
    padding-inline: clamp(10px, calc(20 / 1200 * 100vw), 20px);
    transition: .2s;
    border: 1px solid #1a1918;
    background-color: #fff
}

.category-nav__item.active {
    background: #1a1918;
    color: #fff
}

.main-widget {
    position: fixed;
    right: 14px;
    bottom: 20px;
    z-index: 99;
    top: auto !important;

    .img {
        width: 25px;
        height: 25px;

        & svg {
            width: 100%;
            height: 100%
        }
    }

    @media (max-width: 767px) {
        bottom: 85px
    }
}

.main-icon {
    line-height: 0;
    color: #fff;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    & svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        margin-bottom: 5px;
    }

    & p {
        font-size: 10px;
        color: #fff;
        margin: 0
    }

    & i {
        width: 26px;
        height: 26px;
        transform: translateX(2px)
    }
}

.out-circle {
    overflow: hidden;
    padding: 17px;
    border-radius: 100%;
    background: var(--color-main);
    width: 60px;
    height: 60px
}

.ser-icon {
    display: inline-flex;
    position: absolute;
    font-size: 30px;
    top: 0;
    left: 0;
    padding: 10%;
    background: #fff;
    max-width: 100%;
    overflow: hidden;
    border-radius: 100%;
    color: var(--color-main);
    width: 70%;
    height: 70%;
    margin: 15%;
    transition: .2s all
}

.unsee {
    opacity: 0;
    transform: scale(0)
}

.process {
    display: inline-flex;
    transform: translateX(0);
    transition: .15s linear transform;
    line-height: 0
}

.ser-icon {
    .item {
        margin-right: 40px;
        width: 30px;
        height: 30px;
        color: var(--color-main);
        display: flex;
        justify-content: center;
        align-items: center;

        & svg {
            width: 25px;
            height: 25px;
            color: var(--color-main)
        }
    }

    i:nth-child(2n) {
        color: #000
    }
}

.def-content {
    position: absolute;
    bottom: 62px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    transition: .2s all;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    width: 300px;
    z-index: 1;

    &:before {
        position: absolute;
        bottom: -8px;
        right: 22px;
        left: auto;
        display: inline-block !important;
        border-right: 8px solid transparent;
        border-top: 8px solid #fff;
        border-left: 8px solid transparent;
        content: ''
    }

    .def-header {
        background: var(--color-main);
        padding: 10px;
        border-radius: 8px 8px 0 0;
        color: #fff;
        position: relative;
        font-size: 16px;
        font-weight: 700;

        .close-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: 10px;
            top: 10px;
            left: initial;
            padding: 0;
            margin: 0;
            border: 0 none;
            background: 0 0;
            line-height: 1;
            width: 26px;
            height: 26px;
            cursor: pointer;
            color: #fff;
            background: var(--color-main);
            border-radius: 50%;
            text-align: center
        }
    }

    .item>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 5px 10px;
        transition: .3s linear all;

        .img {
            flex-grow: 0;
            flex: none;
            height: 34px;
            width: 34px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
            border-radius: 50%;
            color: #fff !important;

            & svg {
                height: 20px;
                width: 20px
            }
        }

        .detail {
            flex-grow: 1;
            line-height: normal;

            .arcu-item-title {
                font-weight: 700;
                font-size: 15px;
                display: block;
                line-height: normal;
                color: #000
            }

            .arcu-item-subtitle {
                font-size: 14px;
                color: #787878
            }
        }
    }

    .item.phone>a .img {
        background: #4eb625
    }

    .item.mess>a .img {
        background: #31adff
    }

    .item.zalo>a .img {
        background: #0165f8
    }

    .item.map>a .img {
        background: #d94234
    }

    .item:last-child {
        margin-bottom: 0
    }
}

.main-widget .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 25px;
    top: 0;
    padding: 10px;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: var(--color-main);
    border-radius: 100%;
    transition: .2s all;
    transform: rotate(0);
    cursor: pointer
}

.main-widget .close-icon svg {
    width: 25px;
    height: 25px
}

.close-icon.unsee {
    transform: rotate(180deg)
}

.pregan {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #e53b16;
    z-index: -2;
    border-radius: 100%;
    opacity: .6;
    animation: zoomzoom 3s linear .2s infinite
}

.pregan:nth-child(1) {
    animation-delay: .5s
}

.main-widget .item svg {
    fill: var(--color-main)
}

.def-content .item svg {
    fill: #fff
}

.def-content .item:hover {
    background: #f1f1f1
}

.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 98;
    top: auto;
    width: 40px;
    height: 40px;
    display: flex;
    background: 0 0;
    text-decoration: none;
    transition: all .3s ease-out 0s;
    transform: translateY(-20px);
    background-color: color-mix(in srgb, var(--color-main) 10%, #fff);
    border-radius: 7px;
    cursor: pointer;

    @media (max-width: 870px) {
        bottom: 140px;
    }
}

.scrollToTop svg {
    width: 100%;
    height: 100%;
    transform: rotate(270deg)
}

.scrollToTop svg path {
    stroke: var(--color-main)
}

.scrollToTop:hover {
    background: var(--color-main)
}

.scrollToTop:hover svg path {
    stroke: color-mix(in srgb, var(--color-main) 10%, #fff)
}

.news-item a {
    display: block;
    position: relative
}

.news-item__pic {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 15px;
}

.news-item__date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color-main);
    padding: 8px 15px;
    border-radius: 0 10px 0 0;
    color: #fff;
}

.news-item__info {
    margin-top: 15px
}

.news-item__name {
    font-size: 15px;
    font-weight: 700;
    color: #252f3f;
    line-height: 22px;
}

.news-item a:hover .news-item__name {
    color: var(--color-main)
}

.news-item__desc {
    color: #2d2d2d;
    line-height: 22px;
}

.news-item__next {
    font-weight: 600;
    color: var(--color-text);
    transition: .2s
}

.news-item a:hover .news-item__next {
    color: var(--color-main)
}

.splide__arrow {
    background: color-mix(in srgb, var(--color-main) 10%, #fff) !important;
    opacity: 1 !important;
    border-radius: 5px !important;
    transition: .2s;
    width: 35px !important;
    height: 35px !important
}

.splide__arrow--prev {
    left: -30px
}

.splide__arrow--next {
    right: -30px
}

.splide__arrow svg {
    fill: var(--color-main) !important;
    width: 24px;
    height: 24px;
    transition: .2s
}

.splide__arrow:hover {
    background: var(--color-main) !important
}

.splide__arrow:hover svg {
    fill: color-mix(in srgb, var(--color-main) 10%, #fff) !important
}

.footer {
    background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
}

.footer-article {
    padding: 45px 0 55px;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px
}

.footer-ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    & li {
        & a {
            color: #ffffff;
            transition: .2s;

            &:hover {
                color: var(--color-hover)
            }
        }
    }
}

.footer-support {
    list-style: none;
    padding-left: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    & li {
        & p {
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        & span {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
        }
    }
}

.footer-powered .wrap-content {
    padding: 20px 0;
    border-top: 1px solid #da0015;

    @media (width < 768px) {
        padding: 20px 10px;
    }
}

.footer-copyright p {
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 0;
}

.footer-map {
    overflow: hidden;
    position: relative;
    height: 350px;

    & iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
}

.form-group,
.form-group-select {
    position: relative;
    margin-bottom: 15px
}

.form-group {
    position: relative;
    margin-bottom: 15px;

    & input,
    & textarea {
        width: 100%;
        font-size: 14px;
        transition: .1s ease;
        resize: vertical;
        background: #fff !important;
        box-shadow: none !important;
        border-radius: 5px;
        border: 1px solid #cacaca;

        .novalidate & {
            border: 1px solid #e2e2e2 !important
        }

        &:hover {
            border-color: #7799d0 !important
        }

        &:focus {
            border-color: var(--main-color);
            outline: 0
        }
    }

    & input {
        height: 45px;

        &.date-picker {
            padding-right: 35px
        }
    }

    &>span {
        position: absolute;
        right: 12px;
        top: 12px;
        transition: .1s ease;
        pointer-events: none;
        display: inline-block;
        max-width: 20px;
    }
}

.form-group label,
.form-group-select>label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 14px;
    color: #777;
    transition: .1s ease;
    pointer-events: none;
    background-color: transparent;
    margin: 0;
    line-height: 1.5
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group-select>label {
    top: -10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    left: 8px;
    transform: none
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    content: attr(title);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.modal {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.7);
}

.modal-header {
    border-bottom: 1px solid #d1d5db;
    background: rgba(249, 250, 251, .6)
}

.modal-title {
    font-weight: 600;
    letter-spacing: .05em;
    color: #111827
}

.modal-footer {
    border-top: 1px solid #d1d5db;
    background: rgba(249, 250, 251, .6)
}

.modal-btn--close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    background: red;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%
}

.invalid-feedback {
    font-size: 13px
}

.form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.form-btn--submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: clamp(14px, calc(16/1200*100vw), 16px)
}

.breadCrumbs {
    background: color-mix(in srgb, var(--color-main) 10%, #fff);
    margin-bottom: 30px
}

.breadcrumb {
    gap: 10px;
    padding: 10px 0 !important;

    & li {
        display: flex;
        align-items: center;
        gap: 15px;

        & a {
            flex: 1 1 0%;
            color: #666;
            transition: .2s;

            &:hover {
                color: var(--color-main)
            }
        }

        &.active a {
            font-weight: 500;
            color: var(--color-main);
        }

        & svg {
            width: 7px;
            color: #666;
            margin-top: 2px
        }
    }
}

.box-toc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)
}

.box-toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #f8fafc;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    user-select: none
}

.box-toc__header:hover {
    background: #f1f5f9
}

.box-toc__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px
}

.box-toc__title i {
    font-size: 20px
}

.box-toc__toggle-icon {
    color: #64748b
}

.box-toc__body {
    max-height: 0;
    overflow: hidden
}

.box-toc--open .box-toc__body {
    max-height: 1000px;
    border-top: 1px solid #e2e8f0
}

.box-toc--open .box-toc__toggle-icon {
    transform: rotate(180deg)
}

.box-toc__list {
    list-style: none;
    padding: 12px 0;
    margin: 0
}

.box-toc__item {
    margin: 0;
    position: relative
}

.box-toc__link {
    display: block;
    padding: 8px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.5;
    border-left: 3px solid transparent
}

.box-toc__link:hover {
    color: var(--color-main) !important;
    background: #eff6ff !important
}

.box-toc__link--active {
    color: var(--color-main);
    font-weight: 600;
    background: #eff6ff;
    border-left-color: var(--color-main)
}

.box-toc__item--h2 .box-toc__link {
    padding-left: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 15px
}

.box-toc__item--h3 .box-toc__link {
    padding-left: 20px;
    font-size: 14px
}

.box-toc__item--h4 .box-toc__link {
    padding-left: 30px;
    font-size: 13px;
    font-style: italic
}

.content-main {
    line-height: 26px
}

.content-main h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px
}

.content-main h2 {
    margin: 20px 0;
    font-size: 19px
}

.content-main h3 {
    margin: 15px 0 20px;
    font-size: 17px
}

.content-main h4 {
    margin: 10px 0 20px;
    font-size: 15px
}

.content-main table {
    width: 100%;
    margin: 10px 0 20px;
    font-size: 13px
}

.content-main table th {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 12px 7px
}

.content-main table tr td {
    padding: 10px 7px
}

.content-main tr:nth-child(even) {
    background: #f4f4f4
}

.content-main tr:nth-child(odd) {
    background: #fff
}

/* .content-main ol,
.content-main ul {
    list-style-type: disc;
    margin: 10px 0
} */

.content-main ol li,
.content-main ul li {
    margin-bottom: 10px
}

.content-main a {
    color: #05f;
    font-weight: 700;
    display: contents
}

.content-main iframe {
    width: 100% !important;
    display: block;
    margin: 10px auto 20px
}

.content-main tr:nth-child(even) {
    background-color: #f2f2f2
}

.content-main tr:hover {
    background-color: #ddd
}

.content-main th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--color-main);
    color: #fff
}

.content-main td,
.content-main th {
    border: 1px solid #ddd;
    padding: 8px
}

.content-main figcaption {
    text-align: center
}

.content-main a img {
    max-width: 100%;
    height: auto !important
}

.content-main blockquote {
    border-left: solid 3px #ccc;
    padding-left: 20px;
    margin-left: 20px;
    font-style: italic
}

.skeleton-item {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05)
}

.skeleton-box {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    border-radius: 4px
}

.skeleton-img {
    width: 100%;
    margin-bottom: 10px
}

.skeleton-title {
    height: 20px;
    width: 80%;
    margin-bottom: 8px
}

.skeleton-price {
    height: 20px;
    width: 50%
}

.sidebox-group {
    position: sticky;
    top: 60px;
    border: 1px solid #dee2e6;
    border-radius: clamp(5px, calc(10/1200*100vw), 10px);
    padding: clamp(10px, calc(15/1200*100vw), 15px)
}

.sidebox-group__header {
    display: flex;
    font-size: clamp(15px, calc(16/1200*100vw), 16px);
    font-weight: 700;
    text-transform: uppercase;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    padding: 0 0 8px;
    border-bottom: .5px dashed #ebe0e0;
    margin-bottom: 10px
}

.sidebox-group__icon {
    font-size: 22px
}

.sidebox-group__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebox-group__item {
    position: relative
}

.sidebox-group__link {
    color: #252a2b;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    transition: .3s;
    padding: 5px 0
}

.sidebox-group__item--has-child>.sidebox-group__link {
    padding-right: 30px
}

.sidebox-group__link--active,
.sidebox-group__link:hover {
    color: var(--color-main) !important
}

.sidebox-group__toggle {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid transparent;
    display: none
}

.sidebox-group__item--has-child .sidebox-group__toggle {
    display: block
}

.sidebox-group__toggle:hover {
    border: 1px solid #e7e7e7
}

.sidebox-group__toggle::after,
.sidebox-group__toggle::before {
    background: rgba(9, 9, 9, .6);
    content: '';
    display: block;
    position: absolute;
    margin-right: 7px;
    top: 50%;
    right: 0;
    transition: all .25s linear
}

.sidebox-group__toggle::before {
    width: 9px;
    height: 1px;
    transform: translateY(-50%)
}

.sidebox-group__toggle::after {
    width: 1px;
    height: 9px;
    right: 4px;
    transform: translateY(-50%) scale(1, 1)
}

.sidebox-group__item.opened>.sidebox-group__link .sidebox-group__toggle::after {
    transform: translateY(-50%) scale(1, 0)
}

.sidebox-group__sublist {
    margin: 0;
    padding-left: 10px;
    list-style: none;
    display: none
}

.prodetail {
    display: block;
    width: 100%
}

.prodetail__header {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 15px
}

.prodetail__gallery {
    position: relative
}

.prodetail__info {
    position: relative
}

.prodetail__thumb {
    margin-bottom: 10px;
    border: solid 1px #eee;
    background: #fff;
    border-radius: 10px;
    overflow: hidden
}

.prodetail__nav .splide__slide {
    opacity: .6;
    transition: opacity .3s;
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
}

.prodetail__nav .splide__slide.is-active {
    opacity: 1;
    border: solid 1px var(--color-main) !important;
    overflow: hidden;
}

.prodetail__title {
    font-size: clamp(20px, calc(25/1200*100vw), 25px);
    font-weight: 700;
    margin-bottom: 10px
}

.prodetail__option {
    margin: 15px 0;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.prodetail__option li span {
    color: var(--color-main)
}

.prodetail__social {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px
}

.prodetail__social-title {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.prodetail__price {
    margin: 15px 0;
    font-size: clamp(14px, calc(15/1200*100vw), 15px)
}

.prodetail__price-new {
    font-size: clamp(18px, calc(24/1200*100vw), 24px);
    font-weight: 700;
    color: #d0021b
}

.prodetail__price-old {
    text-decoration: line-through;
    color: #888;
    margin: 0 10px
}

.prodetail__price-discount {
    background: #d0021b;
    color: #fff;
    padding: 2px 3px;
    border-radius: 5px;
    font-size: 11px;
    position: relative
}

.prodetail__price-discount::before {
    content: "";
    border-right: 6px solid #d0021b;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translate(0, -50%)
}

.prodetail__qty-group {
    margin: 20px 0;
    display: flex;
    align-items: center
}

.prodetail__qty-group label {
    font-weight: 600;
    margin-right: 15px
}

.prodetail__qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #dadada;
    border-radius: 4px;
    overflow: hidden
}

.prodetail__qty-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f3f3f3;
    transition: .2s
}

.prodetail__qty-btn:hover {
    background: #eee
}

.prodetail__qty-btn svg {
    width: 14px;
    height: 14px
}

.prodetail__qty-input {
    width: 60px;
    height: 35px;
    border: none;
    text-align: center;
    outline: 0;
    -moz-appearance: textfield;
    border-left: solid 1px #dadada;
    border-right: solid 1px #dadada
}

.prodetail__qty-input::-webkit-inner-spin-button,
.prodetail__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.prodetail__desc {
    margin: 20px 0
}

.prodetail__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0
}

.prodetail__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-block: clamp(7px, calc(10/1200*100vw), 10px);
    border: solid 1px #333;
    border-radius: 4px;
    font-size: clamp(14px, calc(15/1200*100vw), 15px);
    transition: all .3s;
    text-decoration: none;
    min-height: 45px;
    cursor: pointer
}

.prodetail__btn:hover {
    color: #fff !important;
    background: color-mix(in srgb, var(--color-main) 70%, #000) !important
}

.prodetail__btn--add {
    color: #d0021b;
    background: #fff;
    border-color: #d0021b
}

.prodetail__btn--buy {
    color: #fff;
    background: #d0021b;
    border-color: #d0021b
}

.prodetail__btn--hotline {
    color: #fff !important;
    background: var(--color-main);
    border-color: var(--color-main)
}

.prodetail__btn--zalo {
    color: #fff !important;
    background: #0068ff;
    border-color: #0068ff;
    padding: 5px 10px;
    text-align: left;
    justify-content: flex-start
}

.prodetail__btn-text {
    font-weight: 500;
    text-transform: uppercase
}

.prodetail__btn-subtext {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-transform: none
}

.prodetail__tab-header {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    padding: 0;
    list-style: none
}

.prodetail__tab-header li {
    padding: 10px 0;
    font-size: clamp(14px, calc(18/1200*100vw), 18px);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: color .3s
}

.prodetail__tab-header li:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-main);
    transition: width .3s
}

.prodetail__tab-header li.active {
    color: var(--color-main)
}

.prodetail__tab-header li.active:after {
    width: 100%
}

.prodetail__tab-body {
    display: none
}

.prodetail__tab-body[x-show] {
    display: block
}

.prodetail__related {
    margin-top: 40px
}

.prodetail__related-title h2 {
    font-size: clamp(18px, calc(24/1200*100vw), 24px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-main);
    padding-left: 10px
}

.prodetail__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px
}

.prodetail__attribute {
    margin-bottom: 20px
}

.prodetail__attribute-label {
    display: block;
    font-size: clamp(14px, calc(16/1200*100vw), 16px);
    font-weight: 700;
    margin-bottom: 10px
}

.prodetail__attribute-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px
}

.prodetail__attribute-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 5px 12px;
    border: 1px solid #dadada;
    border-radius: 2px;
    background: #fff;
    color: #111;
    font-size: clamp(12px, 1.5vw, 14px);
    cursor: pointer;
    overflow: hidden
}

.prodetail__attribute-btn:hover {
    border-color: var(--color-main)
}

.prodetail__attribute-btn.active {
    border-color: var(--color-main);
    color: var(--color-main)
}

.prodetail__attribute-check {
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    color: #fff;
    background-color: var(--color-main)
}

.prodetail__attribute-btn.active .prodetail__attribute-check {
    display: flex
}

.contact-flex {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px
}

.contact-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px
}

.contact-form {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px
}

.contact-input {
    margin-bottom: 10px
}

.contact-input input,
.contact-input textarea {
    border-radius: 7px;
    border: 1px solid #e1e1e1;
    text-indent: 0;
    color: #000;
    font-size: 13px;
    min-height: 40px
}

/* Sort */
.sort-select {
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    position: relative;
}

.sort-select .click-sort {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px 6px 8px;
    margin: 0px;
}

.sort-select-main {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
    position: absolute;
    padding: 0 7px;
    top: 30px;
    right: 0;
    width: 160px;
    z-index: 2;
}

.sort-select-main p {
    border-bottom: 1px solid #f1f1f1;
    margin: 0px;
    order: 2;
}

.sort-select-main p:has(.check) {
    order: 1;
}

.sort a {
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer;
}

.sort a.check i {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    vertical-align: middle;
}

.sort a.check i::after {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.sort-select .sort-show {
    padding-right: 12px;
    position: relative;
}

.sort-select .sort-show::before {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
    content: '';
    height: 0;
    position: absolute;
    top: 6px;
    right: 0;
    width: 0;
}

@keyframes notifyPhone {
    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 zoomzoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1.2)
    }
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}

@keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes notifyPhone {
    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)
    }
}

.view-all {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

    & a {
        padding: 10px 20px;
        display: inline-flex;
        gap: 14px;
        align-items: center;
        background: var(--color-main);
        border-radius: 5px;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        line-height: 25px;
        transition: .3s;

        &:hover {
            background: var(--color-hover);
        }
    }
}

.chi-nhanh {
    position: relative;
}

.chi-nhanh .box-map {
    padding: 20px;
    box-shadow: 0px 0px 4px #0005;
}

.chi-nhanh .load-map {
    height: 500px;
    position: relative;
}

.chi-nhanh .load-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

.chi-nhanh .items-map {
    padding: 20px 0px 20px 20px;
    box-shadow: 0px 0px 4px #0005;
}

.chi-nhanh .items-map .scroll-maded {
    max-height: 500px;
    padding-right: 20px
}

.chi-nhanh .item-map {
    border: var(--color-main) solid 2px;
    border-radius: 10px;
    padding: 10px;
    transition: 0.2s all;
    margin-bottom: 10px;
    cursor: pointer;
}

.chi-nhanh .item-map.active {
    background-color: var(--color-main);

    .name-map {
        color: #fff;
    }

    .content-main {
        color: #fff;
    }
}

.chi-nhanh .item-map .name-map {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}


.section-1 {
    background-color: #fff;

    .pic-1 {
        display: inline-block;
        border-radius: 20px;
    }

    .pic-2 {
        position: absolute;
        right: 0;
        top: 70px;
        border: 5px solid #ffffff;
        border-radius: 20px;
    }

    .title {
        margin-bottom: 4px;

        & h2 {
            margin-bottom: -50px;
            font-size: 100px;
            font-weight: 800;
            color: #f5f5f5;
            text-transform: uppercase;

            @media (width < 768px) {
                font-size: 60px;
                margin-bottom: -35px;
            }
        }

        & p {
            margin-bottom: -10px;
            font-size: clamp(18px, calc(22/1200*100vw), 22px);
            font-weight: 700;
            color: #252f3f;
            text-transform: uppercase;
        }

        & span {
            margin-bottom: 0;
            font-size: 50px;
            font-style: italic;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    .desc {
        margin-bottom: 20px;
        font-size: 15px;
        color: #151515;
        line-height: 26px;
    }

    .view {
        & span {
            font-size: 17px;
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    .criterion .item {
        margin-bottom: 1rem;

        .pic {
            transition: .5s;

            .item:hover & {
                transform: scaleX(-1);
            }
        }

        .name {
            font-size: 17px;
            font-weight: 600;
            color: #252f3f;
            margin-bottom: 4px;
        }

        .desc {
            margin-bottom: 0;
            font-size: 15px;
            color: #2d2d2d;
            line-height: 25px;
        }
    }
}

.section-2 {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .title {
        margin-bottom: 24px;

        & p {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 17px;
            font-weight: 700;
            color: var(--color-main);
            letter-spacing: 1.7px;
            text-transform: uppercase;
            margin-bottom: 0;

            &:before {
                content: '';
                width: 31px;
                height: 2px;
                background-color: var(--color-main);
            }
        }

        & h2 {
            margin-bottom: 0;
            font-size: 40px;
            font-weight: 700;
            color: #252f3f;
            text-transform: capitalize;
        }

        & a {
            font-size: 17px;
            font-style: italic;
            font-weight: 700;
            background: linear-gradient(180deg, #bc1b2b 0%, #9e0413 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
    }
}

.section-3 {
    .right {
        background: linear-gradient(118deg, #ea6d7a 0%, #9e0413 100%);
        border-radius: 15px;
        padding: 20px;

        .item {
            background: #ffffff;
            border-radius: 15px;
            padding: 20px 22px 32px;

            .number {
                font-size: 40px;
                font-weight: 700;
                color: #252f3f;
                display: flex;
                align-items: center;
                flex-wrap: wrap;

                @media (width < 768px) {
                    font-size: 20px;
                }
            }

            .desc {
                margin-bottom: 0;
                font-size: 15px;
                color: #2d2d2d;
                line-height: 24px;
            }
        }
    }
}

.section-4 {
    background: #f5f5f5;

    .item .pic {
        border: 1px solid #e2e2e2;
        border-radius: 5px;
        cursor: pointer;
    }
}

.section-5 {

    .main {
        .swiper-auto {
            padding: 40px 0;

            .swiper-slide {
                transition: transform .5s;
            }

            .swiper-slide-active {
                transform: scale(1.2);
            }
        }

        .item {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
        }
    }

}

.section-6 {
    background: #f5f5f5;
}