
* {
    box-sizing: border-box;
}

:root {
    --font-medium: "Roboto Medium", sans-serif;
    --font-regular: "Roboto Regular", sans-serif;
    --font-bold: "Roboto Bold", sans-serif;

    --primary-color: #000000;
    --second-color: rgb(47 74 156);
    --third-color: rgb(132 198 236);
    --fourth-color: #FFFFFF;
    --fifth-color: #84c6ec;;
}

@font-face {
    font-family: Roboto Medium;
    src: url('fonts/Roboto-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: Roboto Regular;
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: Roboto Bold;
    src: url('fonts/Roboto-Bold.ttf') format('truetype');
    font-display: swap;
}

body {
    font-family: var(--font-regular);
    color: var(--primary-color);
    line-height: inherit;
    top: 0px !important;
}

.adm-glyphicon span {
    background: url('img/setting.png');
    background-size: cover;
    width: 12px;
    height: 12px;
    display: inline-block !important;
    position: relative;
    z-index: 9;
}

.wrap {
    max-width: 1805px;
    width: 100%;
    margin: 0 auto;
}

.wrap-2 {
    max-width: 1236px;
    width: 100%;
    margin: 0 auto;
}

.wrap-3 {
    max-width: 1424px;
    width: 100%;
    margin: 0 auto;
}

/* a{
    transition: 0.3s ease;
} */

a:hover, a:focus {
    text-decoration: none;
    color: var(--primary-color);
}

input, button, textarea, select{
    outline: none;  
}

input{
    -webkit-appearance: none;
}

ol,
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.img-404{
    max-width: 100%;
}

.img-100 {
    position: relative;
    height: 0;
    overflow: hidden;
    display: block;
}

.img-100>img {
    object-fit: cover;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s linear;
}

/* .img-100:hover img {
    transform: scale(1.05);
} */

h1, h2, h3, h4, h5, h6, p{
    font-size: unset;
    font-weight: unset;
    margin: 0px;
    padding: 0px;
}

h1, h2, h3, h4, h5, h6{
    line-height: 1.3;
}

.site-title {
    width: 0px;
    height: 0px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.skiptranslate{
    display: none !important;
}

#swal2-content,
.swal2-html-container{
    font-size: 18px !important;
    text-align: center;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel{
    font-size: 13px;
}

.wrap-img{
    display: block;
}

.stop-scroll{
    height: 100%;
    overflow: hidden;
}

.no-data{
    font-size: 34px;
    margin-top: 30px;
}

.button-yellow{
    transition: .15s cubic-bezier(.4,0,.2,1);
    background-color: #f6ee5d;
    color: var(--primary-color);
    font-size: 16px;
    border: none;
}

.button-yellow:hover{
    background-color: rgba(246, 238, 93, .5);
}

/* Navbar  */
.navbar-wrap{
    padding: 4px 0;
    background-color: rgb(243, 244, 246);
}

.navbar-l{
    text-align: right;
}

.navbar-l .item{
    display: inline-block;
    color: var(--primary-color);
}

.navbar-l .login{
    padding-left: 28px;
    position: relative;
    line-height: 26px;
    margin-right: 20px;
    height: 24px;
}

.navbar-l .login:hover{
    color: var(--second-color);
}

.navbar-l .login svg{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.navbar-l .language img{
    max-height: 22px;
    transform: translateY(-1px);
}

.navbar-r a{
    color: var(--second-color);
    font-family: var(--font-bold);
    line-height: 24px;
}

.navbar-r a:hover{
    color: var(--third-color);
}

.language {
    position: relative;
    cursor: pointer;
}

.country-list {
    position: absolute;
    top: 100%;
    padding-top: 12px;
    right: 0px;
    z-index: 999;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

.country-list .country-wrap {
    text-align: center;
    width: 60px;
    background-color: var(--fourth-color);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 0;
}

.country-list .country:not(:last-child) {
    margin-bottom: 10px;
}

.language.open .country-list {
    visibility: visible;
    opacity: 1;
} 
/* Header */
.header-wrap{
    background-color: var(--fourth-color);
    height: 84px;
}

.header-wrap.affix {
    width: 100%;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0 , 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 10;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo{
    position: relative;
    height: 84px;
    /* margin-right: 70px; */
}

.logo a{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    max-width: 189px;
}

.logo a img{
    max-height: 60px;
}

.menu{
    text-align: center;    
    margin-right: -100px;
    /* margin-left: -100px; */
}

.menu .item-level-1{
    display: inline-block;
}

.menu .name-level-1{
    font-size: 15px;
    color: var(--primary-color);
    font-family: var(--font-bold);
    padding: 32px 16px;
    letter-spacing: 0.375px;
    line-height: 20px;
    display: inline-block;
    position: relative;
}

.menu .item-level-1:hover .name-level-1{
    background-color: var(--fifth-color);
}

.menu .item-level-1.has-child:hover .name-level-1::after{
    content: '';
    width: 13px;
    height: 13px;
    position: absolute;
    z-index: 10;
    background-color: #f9fafb;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.menu .item-level-1:hover .level-2{
    display: block;
}

.menu .level-2{
    position: absolute;
    width: calc(100vw - 17px);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    z-index: 30;
    padding: 48px 0;
    display: none;
}

.menu .level-2-inner{
    max-width: 1495px;
    margin: 0 auto;
    text-align: left;
}

/* .level-2-wrap{
    margin-right: -70px;
} */

.menu .name-level-2{
    font-size: 15px;
    color: var(--primary-color);
    font-family: var(--font-bold);
    display: inline-block;
    margin-bottom: 24px;
}

.menu .item-level-3{
    margin-bottom: 8px;
}

.menu .name-level-3{
    color: var(--primary-color);
    font-size: 15px;
}

.menu .name-level-3:hover{
    text-decoration: underline;
}

.img-menu{
    margin-left: 70px;
}

.img-menu .wrap-img{
    padding-bottom: 66%;
}

.header-r{
    height: 84px;
    position: relative;
    margin-left: 70px;
}

.header-r-inner{
    position: absolute;
    top: calc(50% + 4px);
    right: 0;
    transform: translateY(-50%);
}

.header-r .item{
    display: inline-block;
    color: var(--primary-color);
    position: relative;
}

.header-r .item:hover{
    color: var(--third-color);
}

.header-r .item:not(:last-child){
    margin-right: 20px;
}

.cart-num{
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--fourth-color);
    font-family: var(--font-bold);
    font-size: 11.5px;
}

/* Look */
.look .item{
    display: block;
    width: 50%;
    float: left;
    text-align: center;
    color: var(--fourth-color);
    font-family: var(--font-bold);
    padding: 14px 15px;
    background-color: #87C7EC;
    line-height: 20px;
}

.look .item:hover{
    color: rgba(255,255,255,.8);
}

.look .item.second{
    background-color: #FDC2CB;
}

/* sec 1 */
.space-sec{
    margin-top: 64px;
}

.h2-title{
    font-size: 48px;
    text-align: center;
    font-family: var(--font-bold);
    line-height: 1;
    position: relative;
    margin-bottom: 16px;
}

.h2-title::after{
    content: '';
    position: absolute;
    width: 128px;
    height: 8px;
    background-color: #e5e7eb;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.best-seller{
    margin-top: 22px;
    padding: 0 12px;
}

.item-product .wrap-img {
    padding-bottom: 100%;
    margin-bottom: 12px;
}

.item-product .wrap-img .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .2s linear;
    z-index: 1;
}

.item-product:hover .img-hover{
    opacity: 1;
}

.item-product .new-arrival{
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    color: var(--fourth-color);
    background-color: #1fdfc2;
    padding: 4px 12px;
    font-size: 12px;
    font-family: var(--font-medium);
}

.item-product .font{
    font-size: 16px;
    color: var(--primary-color);
    line-height: 24px;
}

.item-product .name{
    font-family: var(--font-bold);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 48px;
    margin: 5px 0 10px;
}

.item-product .name:hover{
    text-decoration: underline;
}

.item-product .price{
    display: inline-block;
}

.item-product .old-price{
    margin-left: 5px;
    font-size: 14px;
}

.item-product .new-price{
    font-family: var(--font-medium);
    color: #1fdfc2;
}

.owl-chung .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.owl-chung .owl-nav button:hover{
    background-color: #e5e7eb !important;
}

.owl-chung .owl-nav button svg{
    width: 32px;
    height: 32px;
}

.owl-chung .owl-nav .owl-prev {
    left: -13px;
}

.owl-chung .owl-nav .owl-next {
    right: -13px;
}

.owl-chung .owl-nav .owl-next svg{
    transform: translateX(2px);
}

.owl-chung .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.owl-chung .owl-dots button:not(:last-child) {
    margin-right: 6px;
}

.owl-chung .owl-dots button{
    width: 12px;
    height: 12px;
}

.owl-chung .owl-dots button span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.owl-chung .owl-dots button:not(.active) span{
    transform: scale(.66);
    background-color: #ebedef;
}

/* sec-2 */
.product-pd .item-product{
    padding: 16px 0;
}

.sp-l{
    margin-right: 16px;
}

.sp-r{
    margin-left: 16px;
}

.img-banner{
    margin-top: 16px;
}

.sec-2-wrap{
    margin-top: 8px;
}

/* sec-3 */
.sec-3 .wrap{
    max-width: 1424px;
}

.sec-3 .danh-muc{
    margin: 64px 7px 0;
}

.sec-3 .danh-muc .wrap-img{
    padding-bottom: 104.3%;
    margin: 0 -7px;
}

.sec-4 .item img{
    max-width: 200px;
    height: 200px;
    margin: 0 auto;
}

.cam-ket .item{
    width: calc(100% / 3);
    float: left;
    position: relative;
}

.cam-ket .item img{
    max-width: 35%;
}

.cam-ket .item .content{
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translateY(-50%);
}

.cam-ket .item .title{
    font-family: var(--font-bold);
    font-size: 24px;
}

.cam-ket .item .des{
    font-size: 18px;
}

/* sec-6  */
.sec-6{
    margin-bottom: 32px;
}

.sec-6 h2.title{
    font-family: var(--font-bold);
    font-size: 30px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 40px;
}

.sec-6 h2.title svg{
    height: 40px;
    width: auto;
    display: inline-block;
    transform: translateY(10px);
    margin-left: 10px;
}

.instagram-wrap{
    margin: 0 -8px;
}

.instagram-wrap .item{
    width: calc(100% / 5);
    float: left;
    padding: 0 8px;
}

.instagram-wrap .wrap-img{
    padding-bottom: 100%;
}

/* Footer  */
.footer-wrap{
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

.logo-footer{
    display: flex;
    gap: 48px;
    margin-right: 100px;
    align-items: center;
}

.logo-footer img,
.logo-footer svg{
    height: 40px;
    width: auto;
    display: block;
}

.footer-center{
    margin-left: -100px;
}

.footer-col .title{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
    font-family: var(--font-bold);
}

.footer-col .item a{
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
}

.footer-col .item a:hover{
    text-decoration: underline;
}

.footer-col .item:not(:last-child){
    margin-bottom: 4px;
}

.footer-r{
    width: 83.3%;
    margin: 0 0 0 auto;
}

.footer-r .title{
    font-size: 32px;
    font-family: var(--font-bold);
    margin-bottom: 24px;
}

.form-contact-mail {
    position: relative;
}

.form-contact-mail input {
    padding: 12px 16px;
    width: 100%;
    border: 2px solid var(--primary-color);
    height: 56px;
    border-radius: 4px;
    background-color: var(--fourth-color);
    font-size: 16px;
}

.form-contact-mail input::placeholder {
    color: #aaa;
}

.form-contact-mail button {
    height: 52px;
    border: none;
    padding: 0 16px;
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #f6ee5d;
    font-family: var(--font-medium);
    font-size: 16px;
    transition: .15s cubic-bezier(.4,0,.2,1);
}

.form-contact-mail button:hover{
    background-color: rgba(246, 238, 93, .5);
}

.footer-r .note{
    font-family: var(--font-medium);
    margin-top: 10px;
    line-height: 20px;
}

.footer-r .note a{
    color: var(--primary-color);
    text-decoration: underline;
    font-family: var(--font-regular);
}

.copyright > div{
    display: inline-block;
    color: #1f2937;
    margin-right: 10px;
    line-height: 24px;
}

.copyright > div a{
    color: #1f2937;
    text-decoration: underline;
    line-height: 24px;
}

.payment{
    text-align: right;
    line-height: 24px;
}

.payment img{
    height: 24px;
    margin-left: 10px;
}

.copyright-wrap{
    padding: 16px 0;
    background-color: #f3f4f6;
}

/* boxpage */
.boxpage {
    background-color: var(--fourth-color);
    width: 500px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    transition: all .3s ease-in-out;
    z-index: 101;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    transform: translateX(100%);
}

.boxpage.active {
    transform: translateX(0);
}

.overlay-boxpage{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.overlay-boxpage.active{
    visibility: visible;
    opacity: 1;
}

.block-head{
    padding: 8px 16px;
    background-color: #f6ee5d;
    height: 56px;
    position: relative;
}

.block-head .title{
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
}

.close-boxpage{
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    cursor: pointer;
}

.product-shopping .item{
    padding: 16px 20px;
}

.product-shopping .item .wrap-img{
    padding-bottom: 105.5%;
    margin-right: -5px;
}

.product-shopping .item .wrap-img:hover{
    opacity: .5;
}

.product-shopping .item .name{
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
}

.product-shopping .item .group-price{
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.product-shopping .item .group-price .price{
    font-family: var(--font-bold);
}

.product-shopping .item .remove{
    text-align: right;
    margin-top: 4px;
}

.delete-pr-cart{
    color: #374151;
    display: inline-block;
    padding: 4px;
}

.product-shopping .item:not(:last-child){
    border-bottom: 1px solid #e5e7eb;
}

.boxpage .total{
    font-size: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.view-cart{
    padding: 16px;
    border-top: 1px solid #e5e7eb;
}

.view-cart .tong-cong,
.view-cart .price-tong-cong{
    font-size: 16px;
    font-family: var(--font-bold);
}

.view-cart .go-to-cart {
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--fourth-color);
    font-family: var(--font-bold);
    transition: .15s cubic-bezier(.4,0,.2,1);
    font-size: 16px;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 32px;
    padding: 10px 15px;
}

.view-cart .go-to-cart:hover{
    background-color: rgba(0, 0, 0, .5);
}

.product-shopping {
    max-height: calc(100vh - 260px);
    overflow-y: auto;
}

.product-shopping::-webkit-scrollbar{
    width: 5px;
}

.product-shopping::-webkit-scrollbar-thumb{
    background: rgb(0 ,0 ,0 , .5);
    border-radius: 10px;
}

.boxpage .title-search{
    font-size: 30px;
    font-family: var(--font-bold);
    text-align: center;
    margin-top: 32px;
}

.form-search{
    max-width: 310px;
    background-color: var(--fourth-color);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    margin-left: 16px;
}

.form-search input {
    width: 100%;
    border: none;
    height: 40px;
    line-height: 40px;
    padding: 0px 20px 0 60px;
    font-size: 18px;
    font-family: var(--font-medium);
}

.form-search .submit-search {
    border: none;
    background-color: transparent;
    position: absolute;
    height: 40px;
    width: 50px;
    top: 0;
    left: 0;
    padding: 0;
}

.form-search .submit-search svg{
    transform: translateY(2px);
}

.boxpage .no-product{
    text-align: center;
    padding: 40px 20px 0px;
}

.boxpage .no-product p{
    font-size: 16px;
    margin-bottom: 20px;
}

.boxpage .no-product .back {
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    color: var(--fourth-color);
    background-color: var(--primary-color);
    transition: all .2s ease-out;
    padding: 8px 30px;
}

/* Btn-fixed  */
.btn-fixed-wrap{
    position: fixed;
    right: 20px;
    bottom: 50px;
    transform: translate(150%, 0);
    visibility: hidden;
    transition: all ease .5s;
    opacity: 0; 
    z-index: 8;
}

.btn-fixed{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.btn-fixed.phone-1:hover{
    color: var(--fourth-color);
}

.btn-fixed:not(:last-child){
    margin-bottom: 10px;
}

#back-to-top{
    background-color: #f6ee5d;
    color: var(--primary-color);
}

.phone-1{
    background-color: var(--second-color); 
    color: var(--fourth-color);
}

.btn-fixed-wrap.show {
    opacity: 1;
    transform: translate(0,0);
    visibility: visible;
}

#back-to-top svg{
    position: absolute;
    top: 47%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.btn-fixed svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* breadcrumb */
.breadcrumb-build{
    height: 43px;
    line-height: 43px;
    background-color: #f3f4f6;
}

.breadcrumb-build ol li{
    display: inline-block;
    position: relative;
}

.breadcrumb-build ol li:last-child a{
    pointer-events: none;
}

.breadcrumb-build ol li:not(:first-child){
    margin-left: 24px;
}

.breadcrumb-build li a{
    font-size: 14px;
    font-weight: 400;
    line-height: 20.44px;
    color: var(--primary-color);  
}

.breadcrumb-build li a:hover{
    text-decoration: underline;
}

.breadcrumb-build li:not(:first-child)::before{
    content: url(img/icon-breadcrumb.svg);
    position: absolute;
    top: 0px;
    left: -12px;
}

/* --------Cart page-------- */
.cart-page{
    padding: 64px 0;
}

.cart-items{
    border: 1px solid var(--fifth-color);
    padding: 24px 24px 8px;
}

.cart-items .title-pr-cart{
    font-size: 16px;
    padding-bottom: 14px;
    text-transform: uppercase;
    font-family: var(--font-medium);
}

.cart-items .underline{
    border-bottom: 1px solid var(--fifth-color);
}

.cart-items .cart-item {
    padding: 16px 0;
}

.cart-items .cart-item:not(:last-child){
    border-bottom: 1px solid var(--fifth-color);
}

.cart-items .cart-item .wrap-img{
    padding-bottom: 100%;
}

.cart-items .cart-item .product-name{
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 24px;
    font-family: var(--font-medium);
}

.cart-items .cart-item .delete-cart{
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

.cart-items .cart-item .product-price {
    font-size: 14px;
    color: #c62828;
    font-family: var(--font-medium);
}

.cart-items .cart-item .product-info{
    margin-top: 10px;
}

.cart-items .input-qty{
    text-align: center;
    width: 46%;
    height: 36px;
    padding: 2px 10px;
    border: 1px solid #e5e7eb;
    color: var(--primary-color);
    display: block;
    margin-right: 0px;
    float: left;
    border-radius: 0px;
}

/* Chrome, Safari, Edge, Opera */
.cart-items .input-qty::-webkit-outer-spin-button,
.cart-items .input-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-items .minus,.cart-items .plus{
    width: 27%;
    height: 36px;
    display: block;
    border: 1px solid #e5e7eb;
    text-align: center;
    font-size: 20px;
    padding: 0;
    cursor: pointer;
    background: var(--fourth-color);
    float: left;
}

.cart-items .minus{
    border-right: 0px;
    border-radius: 3px 0px 0px 3px;
}

.cart-items .plus{
    border-left: 0px;
    border-radius: 0px 3px 3px 0px;
}

.cart-items .minus span{
    display: inline-block;
    transform: translateY(-1px);
}

.cart-items .plus span{
    display: inline-block;
}

.cart-items .cart-item .product-price.total{
    font-size: 16px;
    font-family: var(--font-medium);
    margin-top: 7px;
}

.cart-summary{
    border: 1px solid var(--fifth-color);
    padding: 20px;
}

.cart-summary .title{
    font-size: 16px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--fifth-color);
    text-transform: uppercase;
    font-family: var(--font-medium);
}

.cart-summary .underline{
    border-bottom: 1px solid var(--fifth-color);
    padding: 15px 0px;
    font-size: 14px;
}

.cart-summary .tong-cong{
    font-size: 20px;
    padding: 16px 0px;
    font-family: var(--font-bold);
}

.form-cart input{
    margin-bottom: 10px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    border: 1px solid var(--fifth-color);
}

.form-cart .submit-cart,
.shopping-continue{
    width: 100%;
    border: none;
    font-size: 16px;
    font-family: var(--font-bold);
    padding: 12px 32px;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--fourth-color);
    margin-top: 5px;
    line-height: 18px;
    transition: .2s ease-in-out;
}

.form-cart .submit-cart:hover{
    background-color: rgba(0, 0, 0, .5);
}

.shopping-continue{
    display: block;
    margin-top: 15px;
    background-color: #f6ee5d;
    text-align: center;
    color: var(--primary-color);
}

.shopping-continue:hover{
    background-color: rgba(246, 238, 93, .5);
}

/* Contact page  */
.contact-page{
    padding: 64px 0;
}

.contact-title h2{
    font-size: 48px;
    font-family: var(--font-bold);
}

.contact-item{
    position: relative;
    padding-left: 70px;
    margin-top: 48px;
}

.contact-item svg{
    position: absolute;
    top: 0;
    left: 0;
}

.contact-item .des{
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-item .info{
    font-size: 18px;
    font-family: var(--font-bold);
}

.contact-item .info a{
    color: var(--primary-color);
}

.form-contact-page{
    padding: 60px;
    background-color: #f3f4f6;
}

.contact-form-title{
    font-family: var(--font-bold);
    font-size: 28px;
    margin-bottom: 24px;
}

.form-contact-page .input-wrap-contact {
    margin-bottom: 15px;
}

.form-contact-page .labe {
    font-size: 16px;
    margin-bottom: 10px;
}

.form-contact-page input {
    width: 100%;
    line-height: 43px;
    border: 1px solid #E0E0E0;
    padding: 0px 15px;
    border-radius: 10px;
}

.form-contact-page textarea {
    width: 100%;
    border: 1px solid #E0E0E0;
    padding: 15px 15px;
    border-radius: 10px;
    height: 100px;
    resize: none;
}

.form-contact-page .submit-contact {
    padding: 10px 30px;
    border-radius: 10px;
    color: var(--fourth-color);
    transition: .15s cubic-bezier(.4,0,.2,1);
    background-color: var(--primary-color);
    font-size: 16px;
    border: none;
    outline: none;
    font-family: var(--font-bold);
    line-height: 24px;
    width: 100%;
}

.form-contact-page .submit-contact:hover{
    background-color: rgba(0 , 0, 0, .5);
}

.google-map iframe{
    width: 100%;
    height: 680px;
}

/* News list  */
.space-page{
    padding: 48px 0;
}

.news-title {
    font-size: 21px;
    text-transform: uppercase;
    font-family: var(--font-bold);
    padding-bottom: 21px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.news-title:after {
    display: inline-block;
    width: 50px;
    height: 3px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background-color: var(--fifth-color);
}

.item-news{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.item-news .wrap-img{
    padding-bottom: 66.5%;
}

.item-news .title{
    font-size: 21px;
    font-family: var(--font-bold);
    margin-bottom: 10px;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 55px;
}

.item-news .des{
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 120px;
}

.item-news.first .des{
    -webkit-line-clamp: 10;
    max-height: 240px;
}

.item-news-sidebar .wrap-img{
    padding-bottom: 70%;
    margin-bottom: 12px;
}

.item-news-sidebar .title{
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-bold);
    margin-bottom: 4px;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 48px;
}

.item-news-sidebar .des{
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 72px;
}

.item-news-sidebar{
    margin-bottom: 15px;
}

.banner-sidebar-news img{
    margin-bottom: 15px;
    width: 100%;
}

/* Pagination */
.pagination-build{
    text-align: center;
    margin-top: 40px;
}

.pagination-build li{
    display: inline-block;
}

.pagination-build li:not(:last-child){
    margin-right: 10px;
}

.pagination-build li a{
    width: 35px;
    height: 35px;
    border: 1px solid #DCE0E0;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    color: var(--primary-color);
    border-radius: 50%;
    transition: .3s ease;
}

.pagination-build li.active a,
.pagination-build li a:hover{
    background: var(--primary-color);
    color: var(--fourth-color);
    border: 1px solid var(--primary-color);
}

.pagination-build li.last a svg,
.pagination-build li.first a svg{
    width: 22px;
    height: 22px;
    transform: translateY(5px);
}

/* News detail  */
.news-detail .post-title{
    font-size: 30px;
    margin-bottom: 20px;
    font-family: var(--font-bold);
}

.news-detail .content-news h2{
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-bold);
    margin: 0 0 15px 0;
}

.news-detail .content-news h3{
    font-size: 18px;
    line-height: 26px;
    font-family: var(--font-bold);
    margin: 0 0 10px 0;
}

.news-detail .content-news p{
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
}

.news-detail .content-news img{
    margin: 15px auto 10px;
    max-width: 100%;
}

.news-detail .content-news ul{
    margin-bottom: 12px;
    padding-left: 35px;
}

.news-detail .content-news ul li{
    list-style: disc;
    font-size: 16px;
    line-height: 24px;
}

.social-share{
    margin-top: 40px;
    text-align: center;
}

.social-share .item{
    display: inline-block;
    padding: 10px 10px 10px 35px;
    font-size: 12px;
    line-height: 1;
    border: 1px solid var(--fifth-color);
    position: relative;
    color: var(--primary-color);
    margin: 0 3px;
    text-transform: uppercase;
}

.social-share .item svg{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.social-share .item.fb svg{
    color: #3b5998;
}

.social-share .item.twitter svg{
    color: #00aced;
}

.social-share .item.pinterest svg{
    color: #cb2027;
}

.comments-news{
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.comments-news .title{
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 20px;
    padding: 15px 0;
}

.form-rate input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 20px;
    line-height: 35px;
    margin-bottom: 15px;
}

.form-rate textarea {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    width: 100%;
    margin-bottom: 15px;
    height: 170px;
}

.form-rate .submit{
    color: var(--primary-color);
    border-radius: 8px;
    padding: 9px 31px;
    font-size: 16px;
    border: none;
    font-family: var(--font-bold);
}

.list-comment .item {
    position: relative;
    padding: 24px 0 0 75px;
    min-height: 80px;
}

.list-comment .item .avt-img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 24px;
    left: 0;
}

.list-comment .item .avt-img img{
    object-fit: cover;
}

.list-comment .item .avt {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    top: 24px;
    left: 0;
}

.list-comment .item .avt .avt-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: var(--fourth-color);
}

.list-comment .item .name {
    font-size: 18px;
    line-height: 26px;
    font-family: var(--font-bold);
}

.list-comment .item .content-cmt {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
}

.related-post{
    margin-top: 64px;
}

.related-post > .title{
    font-size: 21px;
    margin-bottom: 25px;
    font-family: var(--font-bold);
    text-transform: uppercase;
}

.owl-chung.related .owl-nav button{
    background-color: #e5e7eb !important;
}

.related .item-news-sidebar{
    margin-bottom: 0px;
}

/* Login  */
.login-page .wrap-3{
    max-width: 560px;
}

.form-account{
    text-align: center;
}

.login-page .form-account-title {
    font-size: 24px;
    font-family: var(--font-bold);
    margin-bottom: 30px;
}

.form-account .input-wrap {
    margin-bottom: 20px;
    text-align: left;
}

.form-account .input-wrap .title {
    font-size: 16px;
    margin-bottom: 10px;
}

.form-account .input-wrap input {
    width: 100%;
    line-height: 37px;
    padding: 0 17px;
    border: 1px solid var(--fifth-color);
    border-radius: 8px;
    font-size: 16px;
}

.password-wrap {
    position: relative;
}

.password-wrap svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    cursor: pointer;
}

.form-account .forgot-pass{
    text-align: center;
}

.form-account .forgot-pass a,
.form-account .create a {
    font-size: 16px;
    color: var(--primary-color);
    transition: all .2s ease-out;
}

.form-account .forgot-pass a:hover,
.form-account .create a:hover {
    opacity: .7;
}

.form-account .submit {
    border-radius: 8px;
    padding: 10px 30px;
    font-family: var(--font-medium);
}

.create{
    margin-top: 20px;
}

#submit-register{
    margin-top: 15px;
}

.kq-search{
    font-family: var(--font-bold);
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

/* Product list  */
.products-sort-order #type {
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.sidebar-product .block .title-block {
    font-family: var(--font-bold);
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
}

.sidebar-product .block .cate-child li {
    padding: 5px 0px 5px 0px;
    position: relative;
}

.sidebar-product .block .cate-child a {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.5;
}

.sidebar-product .block .cate-child a.active {
    font-family: var(--font-bold);
}

.sidebar-product .block .cate-child .level-2, .sidebar-product .block .cate-child .level-3 {
    margin-left: 10px;
    padding-left: 10px;
    margin-top: 10px;
    border-left: 1px solid #e5e7eb;
    display: none;
}

.sidebar-product .block .cate-child li.item-level-2, .sidebar-product .block .cate-child li.item-level-3 {
    padding: 3px 0px;
}

.sidebar-product .cate-child .item-level-2 a {
    font-size: 16px;
}

.sidebar-product .block .cate-child li svg{
    position: absolute;
    top: 8px;
    right: 0;
    cursor: pointer;
    transition: .2s;
    /* rotate: 90deg; */
}

.open_menu_product.active {
    rotate: 90deg !important;
}

.sidebar-product .block .cate-child li.item-level-2 svg {
    top: 5px;
}

.sidebar-product .block .cate-child .level-3 {
    margin-bottom: 10px;
}

.sidebar-product .cate-child .item-level-3 a{
    font-size: 14px;
}

.sidebar-product .block .cate-child li.item-level-1.show .level-2 {
    display: block;
}

.sidebar-product .block .cate-child li.item-level-2.show .level-3{
    display: block;
}

/* Product detail  */
.slider-container{
    position: relative;
    background-position: 50% 50%;
    overflow: hidden;
    cursor: zoom-in;
}

.slider-container:hover img{
    opacity: 0;
}

.slider-container .wrap-img{
    padding-bottom: 100%;
}

.thumbnail-wrap{
    margin-top: 10px;
}

.thumbnail-wrap .img-thumb{
    padding-bottom: 100%;
}

.thumbnail-wrap .img-thumb.active{
    border: 2px solid var(--primary-color);
}

.product-detail-right .product-name {
    font-size: 32px;
    font-family: var(--font-bold);
    margin-bottom: 10px;
}

.product-detail-right .cate a{
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
}

.product-detail-right .cate{
    margin-bottom: 15px;
}

.product-detail-right .price-wrap .i-b{
    display: inline-block;
}

.product-detail-right .price-wrap .i-b:not(:last-child){
    margin-right: 15px;
}

.product-detail-right .price-wrap .price{
    font-size: 20px;
    font-family: var(--font-medium);
}

.product-detail-right .price-wrap .new-price{
    color: #c62828;
}

.product-detail-right .price-wrap .sale{
    background-color: #1fdfc2;
    color: var(--fourth-color);
    font-size: 12px;
    padding: 3px 15px;
    transform: translateY(-3px);
}

.product-detail-right .thue{
    margin: 7px 0 16px;
}

.product-detail-right .thue a{
    color: var(--primary-color);
    text-decoration: underline;
}

.product-detail-right .option{
    margin-bottom: 10px;
}

.size-color{
    display: flex;
    justify-content: space-between;
}

.size-color .option{
    width: 49%;
}

.size-color .option select{
    width: 100%;
}

.product-detail-right .select-wrap{
    position: relative;
}

.product-detail-right .select-wrap svg{
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%) rotate(90deg);
}

.product-detail-right .option .labe{
    font-size: 15px;
    margin-bottom: 10px;
}

.product-detail-right .option select,
.product-detail-right .option input{
    height: 44px;
    border: 1px solid #1fdfc2;
    padding: 8px 35px 8px 15px;
    background-color: var(--fourth-color);
    border-radius: 4px;
    appearance: none;
}

.product-detail-right .option input{
    width: 80px;
    padding: 8px;
}

.btn-cart{
    display: block;
    height: 44px;
    border: 1px solid #1fdfc2;
    margin-top: 10px;
    line-height: 44px;
    text-align: center;
    color: #1fdfc2;
    font-family: var(--font-medium);
    text-transform: uppercase;
    transition: all 0.2s ease-out
}

.btn-cart.add-cart:hover{
    color: var(--fifth-color);
}

.btn-cart.buy-now{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--fourth-color);
}

.btn-cart:hover{
    opacity: .7;
}

.btn-cart-wrap{
    padding: 32px 0 48px;
}

.product-detail-right .social-share{
    text-align: left;
}

/* user.css */
.space-list{
    padding: 60px 0px;
}

.clear{
    clear: both;
}

.btn-register{
    position: relative;
}

.dashboard .sibar-dashboard {
    margin-right: -23px;
    border: 1px solid var(--fifth-color);
    padding: 30px 0 50px;
}

.dashboard .sibar-dashboard .user{
    padding-left: 20px;
}

.dashboard .sibar-dashboard .user .avatar{
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 20px;
    background-color: #87C7EC;
    border-radius: 50%;
    position: relative;
}

.dashboard .sibar-dashboard .user .avatar .avt-name{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.dashboard .sibar-dashboard .user .info{
    float: left;
    margin-top: 9px;
}

.dashboard .sibar-dashboard .user .info .name{
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--sixth-color);
    margin-bottom: 15px;
}  

.dashboard .sibar-dashboard .user .info .point{
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--sixth-color);
}

.dashboard .sibar-dashboard ul{
    margin-top: 30px;
}

.dashboard .sibar-dashboard ul li {
    padding: 12px 0 12px 45px;
    position: relative;
}

.dashboard .sibar-dashboard ul li svg{
    margin-right: 5px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.dashboard .sibar-dashboard ul li a{
    color: var(--primary-color);
}

.dashboard .sibar-dashboard ul li.active{
    background: #f3f4f6;
}

.dashboard .sibar-dashboard ul li:hover{
    background: #f3f4f6;
}

.dashboard .tab-info{
    margin-left: 33px;
}

.dashboard .dashboard-button{
    border: none;
    background: var(--primary-color);
    color: var(--fourth-color);
    padding: 7px 15px;
    transition: .3s linear;
    font-family: var(--font-medium);
}

.dashboard .tab-info h2.title {
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: left;
}

.dashboard .tab-info .info-inner:not(:first-child){
    margin-top: 40px;
}

.dashboard .tab-info table {
    border: 1px solid var(--fifth-color);
    width: 100%;
}

.dashboard .tab-info table th {
    padding: 16px 20px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
}

.dashboard .tab-info table td{
    padding: 12px 10px 12px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
}

.dashboard .tab-info table .price,
.dashboard .tab-info table .point {
    color: #c62828;
}

.dashboard .tab-info table .watch-now {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--primary-color);
    color: var(--fourth-color);
    font-size: 12px;
    line-height: 14px;
}

.dashboard .tab-info table tr:nth-child(even) {
    background-color: #f3f4f6;
}

.dashboard .tab-info table th:first-child,
.dashboard .tab-info table td:first-child {
    text-align: left;
}

table.type-1 th{
    width: 13%;
}

table.type-1 th:nth-child(3){
    width: 15%;
}

table.type-1 th:first-child {
    width: 46%;
}

table.type-2 th {
    width: 13%;
}

table.type-2 th:first-child {
    width: 74%;
}

.dashboard .tab-info .info-inner .see-more{
    padding: 20px;
}

.dashboard .tab-info .info-inner .see-more a{
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: var(--sixth-color);
}

table.type-3 th.stt{
    width: 5%;
    text-align: center;
}

table.type-3 th {
    width: 10%;
}

table.type-3 th.account{
    width: 30%;
    text-align: left;
}

.dashboard .tab-info table.type-3 td.stt{
    text-align: center;
    padding: 12px 20px;
}

.dashboard .tab-info table.type-3 td.name {
    text-align: left;
}

#ref_link_text{
    color: var(--primary-color);
}

#form-change-pass .add-item:not(:last-child){
    margin-bottom: 20px;
}

#recoverrr .modal-dialog{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#recoverrr .modal-content{
    text-align: center;
    padding: 20px;
}

.user-img img{
    width: 80px;
    margin: 15px 0;
}

#recoverrr .input-wrap input{
    width: 80%;
    margin: 20px auto;
    border-radius: 8px;
    background: #f3f4f6;
    padding: 0 20px;
    height: 40px;
    border: none
}

.quenmk-btn{
    width: 80%;
    border-radius: 8px;
    padding: 0 20px;
    height: 40px;
    border: none;
    font-size: 16px;
    font-family: var(--font-medium);
}

.title-page-recover {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--fourteenth-color);
    padding: 30px 0px;
    margin-bottom: 30px;
}

#form-recover-pass .add-item{
    margin-bottom: 15px;
}

#form-recover-pass .add-item-label{
    font-size: 16px;
    color: var(--sixth-color);
    margin-bottom: 5px;
}

#form-recover-pass .add-item-body input{
    border: 1px solid var(--sixth-color);
    height: 34px;
    line-height: 34px;
    width: 100%;
    padding: 0 15px;
}

#form-recover-pass .add-item-body button{
    font-size: 16px;
    background-color: var(--second-color);
    border: none;
    color: var(--fourth-color);
    display: inline-block;
    padding: 7px 35px;
}

@media only screen and (max-width: 1400px) {
    .logo-footer {
        gap: 24px;
    }
    
    .logo-footer img,
    .logo-footer svg{
        height: 36px;
    }
}

/* Tối ưu */
.banner-wrap{
    min-height: 600px;
}

#banner.owl-carousel {
    display: block;
  }
  
#banner.owl-carousel .item {
    display: none;
  }
  
#banner.owl-carousel .item:first-child {
    display: block !important;
}

@media only screen and (max-width: 767px) {   
    .navbar-wrap{
        text-align: center;
        /* background-color: var(--fourth-color); */
    }

    .logo{
        height: 48px;
        margin-right: 0px;
    }

    .logo a img {
        max-height: 40px;
    }

    .header-r{
        height: 48px;
        margin-left: 0px;
    }

    .header-r-inner{
        top: calc(50% + 2px);
        right: 10px;
    }

    .header-r .item:not(:last-child) {
        margin-right: 8px;
    }

    .icon-menu-m{
        margin-right: -15px;
        height: 48px;
        position: relative;
    }

    .icon-menu-m a{
        color: var(--primary-color);
        position: absolute;
        top: calc(50% + 2px);
        left: 10px;
        transform: translateY(-50%);
    }

    .boxpage{
        width: 80vw;
        max-width: 500px;
    }

    #box-search.boxpage{
        width: 100vw;
    }

    .product-shopping .item .wrap-img {
        padding-bottom: 124.5%;
        margin-right: -10px;
    }

    .product-shopping .item .name,
    .product-shopping .item .group-price{
        font-size: 14px;
    }

    .form-search{
        margin-left: 0px;
        max-width: 300px;
    }

    .overlay-menu-mobile{
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .25);
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
    }

    .overlay-menu-mobile.active{
        visibility: visible;
        opacity: 1;
    }

    .menu-mobile,
    .menu-mobile .level-2,
    .menu-mobile .level-3 {
        background-color: var(--fourth-color);
        width: 100vw;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 101;
        transform: translateX(-100%);
        height: calc(100% - 120px);
        opacity: 0;
        visibility: hidden;
    }

    .menu-mobile.active{
        border-top: 1px solid #e5e7eb;
    }

    .menu-mobile .level-2,
    .menu-mobile .level-3{
        height: calc(100%);
        transition: all .2s ease-in-out;
    }

    .menu-bottom{
        position: absolute;
        left: 16px;
        bottom: 20px;
    }

    .country-list{
        bottom: 100%;
        padding-bottom: 12px;
        left: 0px;
        right: unset;
        top: unset;
        padding-top: 0;
    }

    .menu-mobile.active,
    .menu-mobile .level-2.active,
    .menu-mobile .level-3.active{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-mobile.active-affix{
        height: calc(100% - 48px);
    }

    .menu-mobile .level-2{
        z-index: 102;
    }

    .menu-mobile .level-3{
        z-index: 103;
    }

    .menu-head{
        padding: 12px 16px;
        background-color: #2f4a9c;
    }

    .close-menu-m a,
    .back-menu-m a{
        display: inline-block;
        height: 24px;
        color: var(--fourth-color);
    }

    .back-menu-m a svg{
        transform: translateY(3px);
    }

    /* .navbar-l .login,
    .navbar-l .login:focus{
        color: var(--fourth-color);
    } */

    .menu-m .name-level{
        font-size: 16px;
        color: var(--primary-color);
        font-family: var(--font-bold);
        line-height: 24px;
    }

    .menu-m .item-level{
        padding: 14px 50px 14px 16px;
        /* border-bottom: 1px solid #e5e7eb; */
        position: relative;
    }

    .next-menu{
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        color: var(--primary-color);
        height: 30px;
        width: 30px;
        display: block;
    }

    .next-menu svg{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(180deg);
    }

    .menu-head .title{
        margin: 0 -20px;
        text-align: center;
    }

    .menu-head .title a{
        color: var(--fourth-color);
        font-family: var(--font-bold);
        line-height: 24px;
        font-size: 16px;
    }

    .menu-m .name-level-2,
    .menu-m .name-level-3{
        font-family: var(--font-regular);
    }

    .img-menu{
        margin-left: 0px;
        padding: 16px;
        margin-top: 32px;
    }

    .footer-r{
        width: 100%;
        padding: 16px 0;
    }

    .footer-r .title{
        font-size: 24px;
        padding: 0 16px;
        text-align: center;
    }

    .footer-r .note{
        padding: 0 16px;
        text-align: center;
        margin-top: 0px;
        margin-bottom: 24px;
    }

    .logo-footer{
        margin: 32px 0;
        justify-content: center;
        padding-bottom: 16px;
    }

    .logo-footer svg{
        height: 20px;
    }

    .logo-footer {
        gap: 24px;
    }

    .footer-center{
        margin-left: 0px;
    }

    .footer-col{
        margin: 0 -15px;
        border-bottom: 2px solid #e5e7eb;
        text-align: center;
    }

    .footer-col .content{
        display: none;
        padding: 16px;
    }

    .footer-col .content.active{
        display: block;
    }

    .footer-col .title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
        padding: 8px;
        position: relative;
    }

    .footer-col.first{
        border-top: 2px solid #e5e7eb;
    }

    .footer-col .title svg{
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        transition: .2s;
    }

    .footer-col .title.active svg{
        transform: translateY(-50%) rotate(45deg);
    }

    .footer-col .item a{
        font-size: 14px;
        line-height: 20px;
    }

    .footer-col .item:not(:last-child) {
        margin-bottom: 16px;
    }

    .copyright-wrap{
        padding: 0;
        background-color: var(--fourth-color);
        text-align: center;
    }

    .payment{
        margin-bottom: 24px;
        text-align: center;
    }

    .payment img{
        margin-left: 0px;
        margin-top: 16px;
    }

    .copyright > div{
        margin-right: 0px;
        font-size: 12px;
    }

    .copyright{
        padding: 16px;
    }

    /* home  */
    .look{
        position: relative;
        height: 40px;
        overflow: hidden;
    }

    .look .item{
        width: 100%;
        padding: 10px 15px;
        animation-delay: 0s;
        animation-duration: 8s;
        animation-fill-mode: forward;
        animation-iteration-count: infinite;
        animation-name: callouts;
        position: absolute;
        top: 0;
        left: 0;
    }

    .look .item.second{
        animation-delay: -4s;
    }

    @keyframes callouts {
        0%, 46.25%, 100% {
            transform: translate(0);
        }
        50% {
            transform: translateY(-100%);
        }
        50.0001% {
            display: none;
            transform: translateY(-100%);
        }
        50.0002%, 96.25% {
            transform: translateY(100%);
        }
    }

    .space-sec {
        margin-top: 32px;
    }

    .h2-title{
        font-size: 30px;
    }

    .h2-title::after{
        height: 5px;
    }

    .item-product .new-arrival{
        font-size: 12px;
    }

    .item-product .old-price{
        margin-left: 0px;
    }

    .item-product .font{
        font-size: 14px;
        line-height: 22px;
    }

    .item-product .name{
        font-size: 16px;
    }

    .owl-chung .owl-dots{
        margin-top: 30px;
    }

    .sp-l{
        margin-right: 0px;
    }

    .sp-r {
        margin-left: 0px;
    }

    .sec-3 .danh-muc .wrap-img{
        margin: 8px -7px;
    }

    .sec-3 .danh-muc {
        margin: 32px 7px 0;
    }

    .cam-ket .item .content{
        position: unset;
        transform: unset;
    }

    .cam-ket .item .title{
        font-size: 14px;
        height: 34px;
        overflow: hidden;
        margin-top: 5px;
    }

    .cam-ket .item .des {
        font-size: 12px;
        height: 28px;
        overflow: hidden;
    }

    .cam-ket .item{
        margin: 0 4px;
        text-align: center;
        background-color: rgb(234 245 245);
        width: calc(100% / 3 - 8px);
        padding: 10px 5px;
    }

    .cam-ket{
        margin: 0 -4px;
    }

    .cam-ket .item img {
        max-width: 60%;
    }

    .instagram-wrap .item{
        width: 100%;
        padding: 8px;
    }

    .instagram-wrap{
        margin: 0;
    }

    /* Cart  */
    .cart-items .underline{
        display: none;
    }

    .cart-items{
        padding: 5px 16px;
    }

    .cart-item .buttons_added,
    .cart-item .product-price.total {
        margin-top: 15px !important;
    }

    .cart-page {
        padding: 32px 0px;
    }

    .cart-summary .tong-cong{
        font-size: 18px;
    }

    .cart-items .cart-item .product-price.total{
        line-height: 36px;
    }

    .cart-summary{
        margin-top: 32px;
    }

    /* Contact page  */
    .img-page img{
        min-height: 150px;
        object-fit: cover;
    }

    .contact-page {
        padding: 32px 0;
    }

    .contact-title h2{
        font-size: 30px;
    }

    .contact-item{
        margin-top: 32px;
    }

    .contact-item .des{
        font-size: 14px;
    }

    .contact-item .info{
        font-size: 16px;
    }

    .form-contact-page{
        padding: 25px 20px;
        margin-top: 32px;
    }

    .contact-form-title{
        font-size: 24px;
        margin-bottom: 20px;
    }

    .google-map iframe{
        height: 300px;
    }

    .space-page {
        padding: 32px 0;
    }

    .item-news .wrap-img{
        margin-bottom: 15px;
    }

    /* .item-news .title,
    .item-news .des,
    .item-news-sidebar .title,
    .item-news-sidebar .des{
        display: block;
        max-height: unset !important;
    } */

    .sidebar-news{
        margin-top: 40px;
    }

    .news-detail .post-title{
        font-size: 26px;
    }

    .related-post {
        margin-top: 48px;
    }

    .kq-search {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .slidethumb{
        padding: 0 40px;
    }

    .product-detail-right{
        margin-top: 48px;
    }

    .product-detail-right .product-name{
        font-size: 30px;
    }

    #filter-m {
        width: 85vw;
        background-color: var(--fourth-color);
        transition: all .3s ease-in-out;
        padding: 20px 10px 20px 20px;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 10;
        transform: translateX(-100%);
    }

    #filter-m.active{
        transform: translateX(0%);
    }

    .overlay-sidebar-product{
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0,0,0, .3);
        z-index: 9;
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    .overlay-sidebar-product.active{
        visibility: visible;
        opacity: 1;
    }

    #filter-m .filter-wrap-m {
        height: 95vh;
        overflow: auto;
        padding-right: 15px;
    }

    .sidebar-product .block .cate-child a{
        font-size: 17px;
    }

    .sidebar-product .cate-child .item-level-2 a{
        font-size: 15px;
    }

    .icon-filter {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        border-radius: 0 50% 50% 0;
        border: 1px solid #e5e7eb;
        border-left: none;
        width: 50px;
        height: 50px;
        line-height: 57px;
        text-align: center;
        background-color: var(--fourth-color);
        transition: .3s linear;
    }

    .fade-fade {
        opacity: 0;
    }
    
    .breadcrumb-build{
        display: none;
    }

    .size-color{
        display: block;
    }

    .size-color .option {
        width: 100%;
    }

    .slider-container:hover img {
        opacity: 1;
    }

    /* Tối ưu */

    .banner-wrap{
        min-height: 500px;
    }

    .header-wrap{
        height: 48px;
    }
}

