@font-face {
    font-family: "1FTV VIP Archiga";
    src: url("../fonts/custom/UVFAphroditePro.woff2") format("woff2"), url("../fonts/custom/UVFAphroditePro.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "UVN Bai Sau";
    src: url("../fonts/custom/UVNBaiSau.woff2") format("woff2"), url("../fonts/custom/UVNBaiSau.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "UVN Bai Sau";
    src: url("../fonts/custom/UVNBaiSauBold.woff2") format("woff2"), url("../fonts/custom/UVNBaiSauBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "UVN Bai Sau Nang";
    src: url("../fonts/custom/UVNBaiSauNang.woff2") format("woff2"), url("../fonts/custom/UVNBaiSauNang.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "UVN Bai Sau Nhe";
    src: url("../fonts/custom/UVNBaiSauNhe.woff2") format("woff2"), url("../fonts/custom/UVNBaiSauNhe.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0
    }

    10% {
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1
    }

    100% {
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0
    }
}

@keyframes border-animation {
    0% {
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0
    }

    20% {
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1
    }

    100% {
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0
    }
}

@keyframes skeleton {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .1
    }
}

.loader {
    --cell-size: 52px;
    --cell-spacing: 1px;
    --cells: 3;
    --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
    display: flex;
    flex-wrap: wrap;
    width: var(--total-size);
    height: var(--total-size)
}

.cell {
    flex: 0 0 var(--cell-size);
    margin: var(--cell-spacing);
    background-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    border-radius: 4px;
    animation: 1.5s ripple ease infinite
}

.cell.d-1 {
    animation-delay: 100ms
}

.cell.d-2 {
    animation-delay: 200ms
}

.cell.d-3 {
    animation-delay: 300ms
}

.cell.d-4 {
    animation-delay: 400ms
}

.cell:nth-child(1) {
    --cell-color: #00FF87
}

.cell:nth-child(2) {
    --cell-color: #0CFD95
}

.cell:nth-child(3) {
    --cell-color: #17FBA2
}

.cell:nth-child(4) {
    --cell-color: #23F9B2
}

.cell:nth-child(5) {
    --cell-color: #30F7C3
}

.cell:nth-child(6) {
    --cell-color: #3DF5D4
}

.cell:nth-child(7) {
    --cell-color: #45F4DE
}

.cell:nth-child(8) {
    --cell-color: #53F1F0
}

.cell:nth-child(9) {
    --cell-color: #60EFFF
}

@keyframes ripple {
    0% {
        background-color: rgba(0, 0, 0, 0)
    }

    30% {
        background-color: var(--cell-color)
    }

    60% {
        background-color: rgba(0, 0, 0, 0)
    }

    100% {
        background-color: rgba(0, 0, 0, 0)
    }
}

.inset-0 {
    inset: 0
}

.pointer {
    cursor: pointer
}

.z--1 {
    z-index: -1
}

.z-1 {
    z-index: 1
}

.z-2 {
    z-index: 2
}

.z-3 {
    z-index: 3
}

.isolate {
    isolation: isolate
}

.ovf-hidden {
    overflow: hidden
}

.square {
    aspect-ratio: 1/1
}

:root {
    --max-width: min(1200px, calc(100% - 30px));
    --max-padding: 1fr;
    --line: 3;
    --primary-color: #e90707;
    --secondary-color: #f9d6d6;
    --dark-color: #333;
    --white-color: #fff;
    --font-family: "Cabin", sans-serif;
    --second-family: "UVN Bai Sau", sans-serif;
    --third-family: "Nunito", sans-serif;
    --font3: "1FTV VIP Archiga", sans-serif
}

::-webkit-scrollbar {
    width: 7px;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .5
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px
}

body {
    top: 0 !important;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-family: var(--font-family);
    font-size: 14px
}

button {
    all: unset;
    box-sizing: border-box
}

img {
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block
}

img.lazy {
    display: block;
    opacity: 0
}

img:not(.initial) {
    transition: opacity 1s
}

img:not([src]) {
    visibility: hidden
}

img:is(.loaded, .error) {
    opacity: 1
}

a,
input,
textarea {
    outline: none;
    padding: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.wrap-content {
    display: grid;
    width: 100% !important;
    grid-column: main;
    grid-template-columns: [main-start] var(--max-padding) [content-start] var(--max-width) [content-end] var(--max-padding) [main-end]
}

.wrap-content>*:not(.fw, .wrap-content) {
    grid-column: content
}

.wrap-content>.fw {
    grid-column: main
}

.pagination {
    margin: 20px 0 0 0 !important;
    --bs-pagination-color: var(--primary-color);
    --bs-pagination-hover-color: var(--primary-color);
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color)
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

:is(.title-main, .title-detail) {
    text-align: center;
    margin-bottom: clamp(15px, 3.2520325203vw, 40px)
}

:is(.title-main, .title-detail) :is(span, h1, h2, h3, h4, h5) {
    font: 700 clamp(18px, 2.9268292683vw, 36px)/1.3888888889 var(--second-family);
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0
}

:is(.title-main, .title-detail) p {
    font: 400 15px var(--font-family);
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 0;
    margin-top: 8px
}

:is(.title-main, .title-detail) svg {
    margin-top: clamp(8px, 1.3008130081vw, 16px)
}

.time-main {
    color: #999;
    margin-bottom: .75rem
}

.time-main i {
    margin: 3px 7px 0 0;
    vertical-align: top
}

.time-main span {
    display: inline-block;
    vertical-align: top
}

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

.share b {
    display: block;
    margin-bottom: 5px
}

footer {
    background: #680000;
    padding-top: clamp(20px, 4.8780487805vw, 60px)
}

.slogan-footer {
    font: 400 clamp(20px, 2.8455284553vw, 35px)/0.69231 var(--font3);
    color: var(--white-color)
}

@media(max-width: 991.92px) {
    .slogan-footer {
        line-height: 3.2
    }
}

.footer-title {
    font: 700 15px/1.46667 var(--font-family);
    color: var(--white-color);
    margin-bottom: 10px
}

.footer-listview_item {
    font: 400 14px/2.57143 var(--font-family);
    color: var(--white-color)
}

.footer-listview_item:hover {
    color: var(--secondary-color)
}

.footer-powered {
    padding: 13px 0
}

#footer-map {
    height: 500px;
    position: relative
}

#footer-map iframe {
    height: 100% !important;
    left: 0 !important;
    position: absolute !important;
    top: 0 !important;
    width: 100% !important
}

.text-split {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line);
    box-orient: vertical;
    line-clamp: var(--line);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: calc(var(--line)*1lh)
}

.scale-img {
    display: block;
    overflow: hidden
}

.scale-img img {
    transition: all .3s;
    transform: scale(1)
}

:is([class*=_item]:hover .scale-img, .scale-img:hover)>img,
:is([class*=_item]:hover .scale-img, .scale-img:hover) picture>img {
    transition: all .3s;
    transform: scale(1.1)
}

[class*=-xemthem] {
    transition: all .6s;
    position: relative;
    overflow: hidden
}

[class*=-xemthem]::before {
    transition: all .6s;
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background-image: linear-gradient(20deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
    background-size: 600%
}

[class*=-xemthem]:hover {
    color: #fff;
    transform: translateX(0.5rem)
}

[class*=-xemthem]:hover::before {
    background-position: 100%
}

.transition {
    transition: all .3s
}

.cart-fixed {
    color: #fff !important;
    z-index: 10
}

.cart-fixed i {
    font-size: 20px
}

.cart-fixed span {
    background: var(--primary-color);
    border-radius: 100%;
    color: #fff;
    font-size: 11px;
    height: 25px;
    line-height: 25px;
    position: absolute;
    right: -5px;
    text-align: center;
    top: 0;
    width: 25px
}

.a2a_kit .a2a_svg {
    height: 30px;
    line-height: 30px;
    width: 30px
}

.qty-pro {
    flex: 0 0 100px !important
}

.skeleton :is([class*="-pic "], [class*="-title "], [class*="-desc "], [class*="-content "], [class*="-price "]) {
    background: #e4e4e4;
    border-radius: 5px;
    animation: skeleton 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.skeleton .pagination-ajax {
    filter: grayscale(1);
    position: relative
}

.skeleton .pagination-ajax::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3
}

.skeleton img {
    opacity: 0
}

.htmx-indicator:not(.htmx-request) {
    display: none !important
}

.aos-overflow {
    overflow: hidden !important;
    overflow: clip visible !important
}

.search-form {
    width: 37.5%
}

.search-form input:is(:focus, :focus-visible, :focus-within) {
    border: unset !important;
    outline: unset;
    box-shadow: unset
}

.search-form button {
    border-radius: 100%;
    width: 42px;
    color: #fff;
    font-size: 16px
}

.menu-res {
    background: var(--primary-color);
    z-index: 100;
    display: none
}

.menu-res .header-cart img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(353deg) brightness(104%) contrast(104%)
}

.search-res {
    position: relative
}

.search-res input[type=checkbox]:checked+label {
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color)
}

.search-res input[type=checkbox]:checked+label+.search-grid {
    opacity: 1;
    grid-template-columns: 1fr
}

.search-res .search-grid {
    display: grid;
    grid-template-columns: 0fr;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 2;
    width: -moz-max-content;
    width: max-content
}

.sp-info {
    margin-top: clamp(6px, .9756097561vw, 12px);
    font: 400 15px/1.86667 var(--font-family);
    text-align: center;
    color: var(--dark-color)
}

.sp-info strong {
    font: 700 17px/1.64706 var(--font-family)
}

.grid-sp {
    display: grid;
    --gap: clamp(8px, calc(20 / 1230 * 100vw), 20px);
    gap: var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(max(175px, (100% - var(--gap) * 3) / 4), 1fr))
}

header {
    position: relative;
    z-index: 101;
    background: #ffcece
}

header .logo {
    width: min(120px, 25.8799171843%)
}

header .banner {
    width: min(355px, 73.4989648033%)
}

.header-hotline {
    padding: 7px 21px 7px 0
}

.header-hotline span {
    font: 700 22px/1.13636 var(--second-family);
    text-align: center;
    color: var(--primary-color)
}

.header-hotline p {
    position: absolute;
    top: 0;
    left: 50px;
    font: 400 15px var(--font-family);
    color: var(--dark-color)
}

.header-hotline::before {
    content: "";
    position: absolute;
    width: calc(100% - 21px);
    height: calc(100% - 9px);
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    -webkit-clip-path: polygon(0 0, 10px 0, 10px 10%, calc(100% - 34px) 10%, calc(100% - 34px) 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 10px 0, 10px 10%, calc(100% - 34px) 10%, calc(100% - 34px) 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1
}

@media(min-width: 1280px) {
    header .logo {
        width: 155px
    }
}

.wrap-spnb {
    padding: clamp(20px, 3.7398373984vw, 46px) 0 clamp(20px, 6.6666666667vw, 82px);
    background: linear-gradient(0deg, var(--secondary-color) 0%, rgba(255, 255, 255, 0) 100%)
}

.wrap-splistnb {
    margin: clamp(20px, 3.6585365854vw, 45px) 0
}

.wrap-splistnb:nth-child(odd) {
    background-image: unset !important
}

.wrap-splistnb:nth-child(even) {
    padding: clamp(20px, 3.8211382114vw, 47px) 0 clamp(20px, 5.1219512195vw, 63px);
    background-color: #fef8f8
}

@media(min-width: 992px) {
    .wrap-splistnb:nth-child(even) {
        background-color: rgba(0, 0, 0, 0)
    }
}

.wrap-feedback {
    padding: clamp(20px, 3.6585365854vw, 45px) 0 clamp(20px, 4.8780487805vw, 60px)
}

.feedback-slide .embla__slide {
    padding: 26px 0 0 13px
}

.feedback-desc {
    font: 400 15px/1.66667 var(--font-family);
    text-align: justify;
    color: var(--dark-color);
    margin-bottom: 0;
    padding-left: clamp(13px, 2.1138211382vw, 26px);
    padding-right: clamp(16px, 2.6016260163vw, 32px)
}

.feedback-title {
    font: 700 18px var(--second-family);
    color: var(--primary-color);
    text-transform: capitalize
}

@media (max-width: 767px) {
    .feedback-slide .embla__slide {
        background-image: unset !important;
    }
}

.wrap-tintuc {
    margin: clamp(20px, 3.5772357724vw, 44px) 0 clamp(20px, 4.8780487805vw, 60px)
}

.tintuc-pic {
    margin-bottom: clamp(7px, 1.1382113821vw, 14px)
}

.tintuc-title {
    font: 400 16px/1.375 var(--font-family);
    text-align: justify;
    color: #0a0a0a
}

.tintuc-date {
    font: 400 13px/1.53846 var(--font-family);
    color: var(--primary-color)
}

.tintuc-desc {
    font: 400 16px/1.5625 var(--font-family);
    text-align: justify;
    color: var(--dark-color);
    margin: 10px 0 clamp(10px, 1.6260162602vw, 20px)
}

.tintuc-desc+button {
    font: 400 16px/1.5625 var(--font-family);
    text-align: center;
    color: var(--primary-color);
    transition: .3s;
    margin: 0 auto
}

.tintuc-desc+button:hover {
    background-color: var(--primary-color, #e90707);
    color: #fff
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}


@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}
