:root {
    --fz-tiny: 11px;
    --fz-small: 12px;
    --fz-small-x: 13px;
    --fz-base: 14px;
    --fz-normal: 16px;
    --fz-large: 18px;
    --fz-large-x: 20px;
    --fz-xl: 25px;
    --fz-xxl: 30px;
    --fz-icon: 20px;
    --white: #fff;
    --black: #000;
    --green: #009901;
    --red: #dd1c1a;
    --cl-primary: #fecd08;
    --cl-secondary: #f9b115;
    --cl-third: #fb6e2e;
    --cl-discount: #ffd839;
    --cl-btn: #32cb00;
    --cl-btn-2: #80ba26;
    --cl-btn-buy: #fb6e2e;
    --cl-grey: #dadada;
    --cl-gray: #e8e8e8;
    --cl-text: #333;
    --cl-text-2: #f9b115;
    --cl-text-3: #232323;
    --cl-text-4: #f1f1f1;
    --cl-text-5: rgba(255, 255, 255, .4);
    --cl-text-6: #e0e0e0;
    --cl-border: whitesmoke;
    --cl-hd-cata: #1687e0;
    --cl-bg: #f6f8fa;
    --cl-bg-pd: #efefef;
    --cl-text-ft: rgba(0, 0, 0, 0.54);
    --cl-cart: rgba(0, 0, 0, 0.7);
    --cl-hd-dropdown: #f5f5f5;
    --cl-text-detail: #232323;
    --cl-text-heading: #050748;
    --cl-als: #2eb85c;
    --cl-alw: #f9b115;
    --cl-ale: #e55353;
    --cl-viber: #784f98;
    --cl-linkedin: #0a63bc;
    --cl-behance: #0054f7;
    --cl-zalo: #0065f7;
    --cl-facebook: #4064ac;
    --cl-twitter: #009deb;
    --cl-skype: #00aae9;
    --cl-vimeo: #00a8e8;
    --cl-telegram: #1296ca;
    --cl-pinterest: #e20017;
    --cl-youtube: #f60000;
    --cl-email: #e34133;
    --cl-flickr: #f70080;
    --cl-dribbble: #e34a85;
    --cl-whatsapp: #28a219;
    --cl-phone: #e62117;
    --cl-gradient-1: linear-gradient(to right, #ef3006, #c60004);
    --cl-shadown-1: rgba(149, 157, 165, 0.2) 0 4px 14px;
    --cl-shadown-2: 0 0 4px rgb(0 0 0 / 25%);
    --cl-shadown-3: 0 2px 12px rgb(0 0 0 / 12%);
    --black-rgb: 0, 0, 0;
    --white-rgb: 255, 255, 255;
    --cl-primary-rgb: 1, 123, 218;
    --cl-secondary-rgb: 243, 127, 58;
    --cl-rgb-1: rgba(27, 27, 27, 0.17);
    --cl-rgb-2: rgb(70, 99, 142, 0.27);
    --cl-skeleton: hsl(200, 20%, 70%);
    --cl-skeleton2: hsl(200, 20%, 95%);
    --cl-star: #fecd08;
    --gutter-x: 10px;
    --bg-section-color-1: #F5F0F2;
    --font-family: "Helvetica Neue", Helvetica, Arial, 文泉驛正黑, "WenQuanYi Zen Hei", "Hiragino Sans GB", "儷黑 Pro", "LiHei Pro", "Heiti TC", 微軟正黑體, "Microsoft JhengHei UI", "Microsoft JhengHei", sans-serif;
}

.line-1,
.products-flex-item .box-content h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-2,
.home-blog .blog-home-item h4,
.home-blog .blog-home-item p,
.aside-item h4,
.aside-home-blog h4,
.blog-item .box-content h4 a,
.blog-item .box-content p,
.blog-cat-item h4 a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.primary-btn {
    background-color: var(--cl-primary);
    color: var(--black);
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: var(--fz-base);
    text-align: center;
    height: 38px;
    line-height: 38px;
    border-radius: 2px;
    outline: none;
    padding: 0 20px;
    overflow: hidden;
    border: 1px solid var(--cl-primary);
    cursor: pointer;
    transition: .4s all;
    text-transform: uppercase;
}

.primary-btn:hover {
    color: var(--cl-text-2);
    background-color: var(--white);
    border: 1px solid var(--cl-text-2);
}

.underline {
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    padding-bottom: 0px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: var(--fz-normal);
    border-bottom: 2px solid var(--cl-text-4);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.underline a {
    color: #000;
}

.underline a:hover {
    color: var(--cl-text-2);
}

.underline span {
    position: relative;
}

.underline span::before {
    content: '';
    background-color: var(--cl-primary);
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.5;
    color: var(--cl-text);
    font-family: var(--font-family);
}

a {
    transition: all ease 0.4s;
}

i g {
    transition: all ease 0.4s;
}

.home-cat,
.first,
.box-promotion,
.second {
    padding-top: 40px;
}

@media screen and (max-width: 1200px) {
    .home-cat,
    .first,
    .box-promotion,
    .second {
        padding-top: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .home-cat {
        padding-top: 10px;
    }
}

ul {
    padding: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

figure {
    margin: 0;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.box-products-sale .seemore-btn a {
    font-weight: bold;
    font-size: var(--fz-base);
}

.box-title h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: var(--fz-xl);
    color: var(--black);
    display: block;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.box-title h2 {
    /* font-family: "icoibco" !important; */
    font-size: 28px;
}

.home-service .box-title h2,
.promotion .box-title h2 {
    font-family: "icoibco" !important;
}

.home-blog {
    padding: 40px 0 20px;
}

.box-title h2 .icon-badge {
    margin-right: 8px;
}

.box-promotion .option ul li a.active {
    color: #000;
    background-color: var(--cl-primary);
    opacity: 1;
    border: 1px solid transparent;
}

@media screen and (max-width: 1200px) {
    .box-title h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

.box-home-cat {
    padding: 20px;
    background-color: var(--bg-section-color-1);
}

.box-home-cat .home-cat-slider h2 {
    font-size: 14px;
    text-transform: capitalize;
}

@media screen and (max-width: 1200px) {
    .box-home-cat {
        padding: 10px;
    }
}

.slick-arrow {
    background: rgba(45, 45, 45, 0.62) !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 60px;
    width: 30px;
    line-height: 60px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    border: 0;
    border-radius: 0;
    outline: none;
    opacity: .2;
}

.slick-arrow::before {
    font-size: 20px;
}

.slick-arrow-hover:hover .slick-arrow {
    opacity: 1;
}

.slick-arrow.slick-disabled {
    cursor: default;
}

.slick-arrow.slick-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.slick-arrow.slick-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.home-cat-slider {
    background: #fff;
}

.home-cat-slider .item {
    padding: 10px;
    text-align: center;
    margin: 10px;
}

@media screen and (max-width: 1200px) {
    .home-cat-slider .item {
        padding: 0;
    }
}

.aside-blog-item .box-img {
    overflow: hidden;
}

.home-cat-slider .item img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.home-cat-slider .item h2 {
    padding-top: .7em;
    font-weight: 600;
    letter-spacing: .05em;
    font-size: var(--fz-base);
    color: #000;
}

.first .box-title i {
    margin-right: 5px;
}

.first .first-slider .slick-arrow {
    opacity: 0;
}

.products-top-slider .vuta-col {
    margin-left: -5px;
    margin-right: -5px;
}


/* .products-top-slider [class^="vuta-col-"] {
    padding-left: 5px;
    padding-right: 5px;
} */

.second .products-feature {
    background-color: var(--bg-section-color-1);
    padding: 20px;
}

@media screen and (max-width: 1200px) {
    .second .products-feature {
        padding: 10px;
    }
}

.second .products-feature .box-title {
    background-color: var(--white);
    padding: 9px 17px;
    font-weight: 700;
    font-size: 19px;
    color: var(--cl-text);
    font-family: var(--font-base);
    line-height: 1.7;
}

.second .products-feature .box-title h3 {
    font-size: 19px;
}

.second .products-feature .products-feature-box {
    background: #fff;
    padding: 15px;
    height: 100%;
}

@media screen and (max-width: 996px) {
    .second .products-feature .products-feature-box {
        margin-bottom: 10px;
    }
}

.second .products-feature .feature-slider .slick-prev {
    left: -15px;
}

.second .products-feature .feature-slider .slick-next {
    right: -15px;
}

.second .products-feature #tab .user-nav-tabs {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

@media screen and (max-width: 996px) {
    .second .products-feature #tab .user-nav-tabs {
        justify-content: start;
    }
}

.second .products-feature #tab .user-nav-tabs li.active a {
    color: var(--cl-text-2);
}

.second .products-feature #tab .user-nav-tabs li.active a::before {
    width: 100%;
}

.second .products-feature #tab .user-nav-tabs li a {
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin: 0 10px;
    padding: 10px 0 7px 0;
    text-align: center;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    color: #000;
    font-weight: 500;
}

.second .products-feature #tab .user-nav-tabs li a::before {
    content: '';
    background-color: var(--cl-primary);
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    transition: .3s;
}

.second .products-feature .products-feature-center .box-content {
    text-align: center;
    padding-top: 15px;
}

.second .products-feature .products-feature-center .box-content h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.second .products-feature .products-feature-center .box-content p {
    font-size: 16px;
    padding: 0 10px;
}

.second .products-feature .top {
    margin-bottom: 10px;
}

.products-flex-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.products-flex-item .box-content {
    width: calc(100% - 90px);
    padding-left: 15px;
}

.products-flex-item .box-content h4 {
    font-weight: 500;
}

.products-flex-item .box-content h4 a {
    color: var(--cl-text);
}

.products-flex-item .box-content h4 a:hover {
    color: var(--cl-text-2);
}

.products-flex-item .box-content .products-price {
    display: flex;
    align-items: end;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    color: var(--cl-text-2);
}

.products-flex-item .box-content .products-rating {
    display: flex;
    gap: 5px;
}

.products-flex-item .box-content .products-rating span {
    font-size: 12px;
}

.products-flex-item .box-img {
    max-width: 90px;
    min-width: 90px;
    aspect-ratio: 1/1;
}

.products-flex-item .box-img img {
    object-fit: cover;
}

.cat-btn {
    display: flex;
    justify-content: center;
}

.promotion .option .user-nav-tabs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.promotion .option .user-nav-tabs li.active a {
    background: var(--cl-primary);
    border: 1px solid var(--cl-primary);
    color: var(--black);
    opacity: 1;
}

.promotion .option .user-nav-tabs li a {
    background: rgba(45, 45, 45, 0.62);
    border: 1px solid rgba(45, 45, 45, 0.62);
    color: var(--white);
    position: relative;
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    font-size: var(--fz-base);
    text-align: center;
    height: 38px;
    line-height: 38px;
    border-radius: 2px;
    outline: none;
    padding: 0 10px;
    cursor: pointer;
    transition: .4s all;
    text-transform: capitalize;
    opacity: .35;
    font-size: 15px;
}

.about-bg {
    margin: 40px 0;
    padding: 20px 0;
    background: #f6f6f6;
}

@media screen and (max-width: 996px) {
    .about-bg {
        margin: 0;
    }
}

.about-bg .vuta-row {
    justify-content: space-around;
}

.about-bg .about-item {
    text-align: center;
    border: 1px solid var(--cl-primary);
    padding: 15px 15px;
    display: flex;
    max-width: fit-content;
    margin: 0 auto;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
}

@media screen and (max-width: 996px) {
    .about-bg .about-item {
        border: 0;
        padding: 0;
    }
}

.about-bg .box-icon {
    width: 60px;
    height: 60px;
    color: var(--black);
    background-color: var(--cl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s all;
    text-align: center;
    margin: 0 auto;
    box-shadow: var(--cl-shadown-1);
}

@media screen and (max-width: 996px) {
    .about-bg .box-icon {
        width: 45px;
        height: 45px;
    }
}

.about-bg .box-content {
    font-size: var(--fz-normal);
    text-align: center;
    margin-left: 15px;
    font-weight: 600;
}

.about-bg .box-content p {
    margin-bottom: 4px;
}

@media screen and (max-width: 575px) {
    .about-bg .box-content {
        font-size: 7px;
        margin-top: 8px;
        line-height: 1.3;
        margin-left: 0;
        width: 100%;
        padding: 0;
    }
}

.desktop {
    display: block;
}

@media screen and (max-width: 1200px) {
    .desktop {
        display: none;
    }
}

.home-blog {
    padding-bottom: 40px;
}

@media screen and (max-width: 996px) {
    .home-blog {
        padding-bottom: 15px;
    }
}

.home-blog .box-title h2 {
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    padding-bottom: 0px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: var(--fz-normal);
    border-bottom: 2px solid var(--cl-text-4);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.home-blog .box-title h2 span {
    position: relative;
}

.home-blog .box-title h2 span::before {
    content: '';
    background-color: var(--cl-primary);
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 3px;
}

.home-blog .box-btn a {
    padding-right: 40px;
    position: relative;
}

.home-blog .box-btn a:hover i {
    transition: all ease 0.4s;
}

.home-blog .box-btn a:hover i g {
    fill: var(--cl-text-2);
}

.home-blog .box-btn a i {
    position: absolute;
    top: 5px;
    right: 10px;
}

.home-blog .blog-home-item {
    border-bottom: 1px solid #efefef;
    margin-bottom: 15px;
}

.home-blog .blog-home-item .box-content {
    padding: 10px;
}

.home-blog .blog-home-item h4 {
    margin-bottom: 7px;
    display: -webkit-box;
    line-height: 24px;
    font-size: 16px;
}

.home-blog .blog-home-item h4:hover a {
    color: var(--cl-text-2);
}

.home-blog .blog-home-item h4 a {
    color: #222;
}

.home-blog .blog-home-item p {
    font-size: var(--fz-base);
    color: var(--cl-text);
    font-family: var(--font-base);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 8px;
}

.home-blog .blog-home-item .time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-blog .blog-home-item .time i {
    line-height: 16px;
    margin-top: 2px;
}

.home-blog .blog-home-item .time i g {
    fill: #6dcbff;
}

.home-blog .blog-home-item .time span {
    font-weight: 500;
}

.aside-item .aside-blog-item,
.aside-home-blog .aside-blog-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cl-gray);
}

.aside-item .aside-blog-item:last-child,
.aside-home-blog .aside-blog-item:last-child {
    border-bottom: 0;
    margin: 0;
    padding: 0;
}

.aside-item h4,
.aside-home-blog h4 {
    margin-bottom: 10px;
    font-weight: 400;
}

.aside-item h4:hover a,
.aside-home-blog h4:hover a {
    color: var(--cl-text-2);
}

.aside-item h4 a,
.aside-home-blog h4 a {
    color: #000;
    font-weight: 500;
}

.aside-item .box-time i,
.aside-home-blog .box-time i {
    color: var(--cl-primary);
    margin-right: 5px;
}

.aside-home-blog .box-time span {
    font-weight: 500;
}

.products-sale {
    padding-top: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 996px) {
    .products-sale {
        padding-top: 20px;
        margin-bottom: 20px;
    }
}

.products-sale .box-products-sale {
    background-color: var(--bg-section-color-1);
    padding: 10px;
    border-radius: 4px;
}

.products-sale .box-products-sale .box-title a {
    background: var(--cl-primary);
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #000;
    text-align: left;
    font-size: var(--fz-large);
}

.products-sale .box-products-sale .products-sale-slider {
    margin: 10px -10px;
}

@media screen and (max-width: 996px) {
    .products-sale .box-products-sale .products-sale-slider {
        margin: 0 -5px;
    }
}

.products-sale .box-products-sale .item {
    margin: 10px;
}

@media screen and (max-width: 996px) {
    .products-sale .box-products-sale .item {
        margin: 5px;
    }
}

.products-sale .box-products-sale .products-item {
    margin-bottom: 0;
}

.products-sale .seemore-btn {
    text-align: center;
}

.products-sale .seemore-btn a {
    color: var(--cl-text);
    position: relative;
    padding-right: 20px;
}

.products-sale .seemore-btn a:hover {
    color: var(--cl-star);
}

.products-sale .seemore-btn a:hover i g {
    transition: all ease 0.4s;
    fill: var(--cl-star);
}

.products-sale .seemore-btn a i {
    position: absolute;
    top: 0;
    right: -8px;
}

.aside-products .aside-item {
    background: #f2f2f2;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.aside-products .aside-item h4 {
    text-transform: capitalize;
    font-size: var(--fz-icon);
    font-weight: 500;
    line-height: 1.7;
    color: var(--cl-text);
    margin-bottom: 5px;
    font-family: var(--font-base);
}

.aside-products .aside-item ul {
    max-height: 235px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.aside-products .aside-item ul li {
    color: #222;
    line-height: 2.5;
}

.aside-products .aside-item ul li a {
    color: #222;
}

.aside-products .aside-item ul li a:hover {
    color: var(--cl-text-2);
}

.aside-products .aside-item ul li label {
    padding-left: 20px;
    position: relative;
    cursor: pointer;
}

.aside-products .aside-item ul li label input {
    position: absolute;
    left: 0;
    top: 3px;
}

.aside-products .aside-item .list-filter-size,
.aside-products .aside-item .list-filter-color {
    display: flex;
    flex-wrap: wrap;
}

.aside-products .aside-item .list-filter-size li,
.aside-products .aside-item .list-filter-color li {
    width: 50%;
}

.main-products .box-title h2 {
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    padding-bottom: 0px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: var(--fz-normal);
    border-bottom: 2px solid var(--cl-text-4);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.main-products .box-title h2 span {
    position: relative;
}

.main-products .box-title h2 span::before {
    content: '';
    background-color: var(--cl-primary);
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 3px;
}

.breadcrumb {
    padding: 20px 0;
}

@media screen and (max-width: 575px) {
    .breadcrumb {
        padding: 10px 0;
    }
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 996px) {
    .breadcrumb ul {
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

.breadcrumb ul li {
    position: relative;
}

.breadcrumb ul li:last-child a {
    color: var(--cl-text-2);
}

.breadcrumb ul li:last-child::before {
    display: none;
}

.breadcrumb ul li::before {
    font-family: FontAwesome;
    position: absolute;
    content: "\f105";
    right: -18px;
}

@media screen and (max-width: 575px) {
    .breadcrumb ul li::before {
        right: -10px;
        font-size: 11px;
    }
}

.breadcrumb ul li a {
    color: #222;
    text-transform: capitalize;
}

@media screen and (max-width: 575px) {
    .breadcrumb ul li a {
        font-size: 12px;
    }
}

.filter-order {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

@media screen and (max-width: 996px) {
    .filter-order {
        align-items: center;
        justify-content: space-between;
    }
}

.filter-order .count-view {
    font-weight: 700;
    font-size: 18px;
}

@media screen and (max-width: 996px) {
    .filter-order .count-view {
        font-size: 16px;
    }
}

.filter-order .filter-order-mobile {
    display: none;
}

@media screen and (max-width: 996px) {
    .filter-order .filter-order-mobile {
        display: block;
    }
}

.filter-order .filter-order-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media screen and (max-width: 996px) {
    .filter-order .filter-order-content {
        display: none;
    }
}

.filter-order .filter-order-content .list-filter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-order .filter-order-content .list-filter li a {
    color: var(--cl-text);
    border: 1px solid var(--cl-text-2);
    padding: 5px 8px;
}

.filter-order .filter-order-content .list-filter li a.active,
.filter-order .filter-order-content .list-filter li a:hover {
    background: var(--cl-text-2);
    color: #fff;
}

.box-desc-products {
    padding-top: 40px;
}

.box-desc-products h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}

.box-desc-products .short-desc p {
    font-style: italic;
    font-size: 13px;
}

.box-desc-products .color {
    color: var(--cl-text-2);
    font-weight: 700;
}

.box-desc-products h2,
.box-desc-products h3 {
    font-family: var(--font-base) !important;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0;
}

.box-desc-products p {
    line-height: 1.7;
}

.pagination ul {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    justify-content: center;
}

.pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    border: 1px solid #ccc;
    color: var(--cl-text);
}

.pagination ul li a:hover,
.pagination ul li a.active {
    color: #fff;
    background: var(--cl-primary);
    border: var(--cl-primary);
}

.more_less_action {
    text-decoration: none;
    z-index: 1;
    border: 1px solid var(--cl-text-2);
    color: var(--cl-text-2) !important;
    bottom: 0;
}

.data_more_less_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, #fff);
}

.data_more_less_body {
    padding-bottom: 50px;
}

.box-desc-products {
    margin-bottom: 20px;
}

.box-desc-products.less_active .data_more_less_inner::before {
    display: none;
}

.box-desc-products .img-center {
    text-align: center;
}

.box-desc-products .img-center img {
    width: auto;
}

.gallery-slider {
    position: relative;
}

@media screen and (max-width: 996px) {
    .gallery-slider {
        margin-bottom: 20px;
    }
}

.gallery-slider .box-content:hover h4 a {
    color: var(--cl-text-2);
}

.gallery-slider .box-content h4 {
    text-align: center;
    padding: 10px;
    font-size: var(--fz-large);
    border: 1px solid var(--cl-gray);
    font-weight: 400;
}

.gallery-slider .box-content h4 a {
    color: var(--cl-text);
}

.gallery-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-slide__bg-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    margin-top: -26px;
}

.gallery-slider .swiper-button-next {
    right: 0;
}

.gallery-slider .swiper-button-prev {
    left: 0;
}

.swiper-pagination {
    width: 100%;
    font-size: 0;
    bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
    z-index: 1;
    transition: border-color 0.3s;
    background: rgba(45, 45, 45, 0.62) !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 60px;
    width: 30px;
    line-height: 60px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    border: 0;
    border-radius: 0;
    outline: none;
    opacity: .1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    position: absolute;
    font-family: FontAwesome;
    content: '\f054';
    font-size: 30px;
    color: #fff;
}

.swiper-button-next {
    border-radius: 4px 0 0 4px;
}

.swiper-button-prev {
    border-radius: 0 4px 4px 0;
}

.swiper-button-prev::before {
    content: '\f053';
}

.video {
    margin-top: 40px;
}

.box-bg-title {
    text-align: center;
    margin-bottom: 30px;
}

.box-bg-title h2 {
    text-align: center;
    justify-content: center;
    background-color: var(--cl-primary);
    color: var(--black);
    line-height: 40px;
    padding: 0 20px;
    position: relative;
    text-align: center;
    display: inline-block;
    min-width: 280px;
    font-weight: 600;
    font-size: var(--fz-large);
    text-transform: uppercase;
    z-index: 2;
    line-height: 45px;
    font-size: var(--fz-xl);
}

.box-bg-title h2::before {
    content: "";
    position: absolute;
    right: -15px;
    border-width: 0;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    bottom: 0;
    border-style: solid;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-color: var(--cl-primary) transparent;
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid var(--cl-primary);
    border-top: 23px solid transparent;
    border-bottom: 22px solid transparent;
}

.box-bg-title h2::after {
    content: "";
    position: absolute;
    left: -15px;
    border-width: 0;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    bottom: 0;
    border-style: solid;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-color: var(--cl-primary) transparent;
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 15px solid var(--cl-primary);
    border-top: 23px solid transparent;
    border-bottom: 22px solid transparent;
}

.feedback {
    margin-bottom: 30px;
}

@media screen and (max-width: 996px) {
    .feedback {
        padding-top: 15px;
    }
}

.feedback p {
    font-size: 16px;
    line-height: 28px;
}

.feedback .box-title h2 {
    color: var(--black);
    display: block;
    position: relative;
    margin-top: -5px;
    margin-bottom: 5px;
    line-height: 35px;
    font-weight: 700;
    font-size: var(--fz-large);
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: var(--fz-xl);
}

@media screen and (max-width: 996px) {
    .feedback .box-title h2 {
        font-size: 18px;
        margin-bottom: 0;
    }
}

.feedback .box-content {
    font-size: var(--fz-normal);
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 0px;
}

.feedback .box-content span {
    font-style: italic;
}

.why-us {
    text-align: center;
    margin: 40px 0;
}

.why-us p {
    font-size: 16px;
    line-height: 28px;
}

@media screen and (max-width: 996px) {
    .why-us {
        margin-bottom: 0;
    }
}

.why-us .box-title {
    text-align: center;
}

.why-us .box-title h2 {
    text-align: center;
    justify-content: center;
}

.why-us .wcu-item {
    text-align: center;
}

@media screen and (max-width: 996px) {
    .why-us .wcu-item {
        padding: 10px;
    }
}

.why-us i svg {
    width: 45px !important;
    height: 45px !important;
}

.why-us .wcu-number {
    font-size: 50px;
    color: var(--cl-third);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

@media screen and (max-width: 996px) {
    .why-us .wcu-number {
        margin-bottom: 0;
    }
}

.why-us .wcu-number p {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}

@media screen and (max-width: 996px) {
    .why-us .wcu-number p {
        font-size: 30px;
        line-height: 30px;
    }
}

.why-us .wcu-number span {
    color: var(--black);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.why-us .wcu-number .wcu-title {
    font-size: var(--fz-normal);
}

.blog .underline {
    font-family: var(--font-base);
    line-height: 1.7;
    font-size: 16px;
}

.blog .seemore {
    text-align: right;
}

.blog-item .box-img {
    position: relative;
    overflow: hidden;
}


/* .blog-item .box-img:hover img {
    transform: scale(1.1);
    transition: scale ease .3s;
    -webkit-transition: scale ease .3s;
    -moz-transition: scale ease .3s;
} */

.blog-item .news-overlay-heading {
    background-color: var(--white);
    color: var(--cl-primary);
    position: absolute;
    top: 7%;
    left: -10px;
    width: 45px;
    text-align: center;
    padding: 5px 0px 1px 0px;
    font-size: var(--fz-normal);
    border: 2px solid var(--cl-primary);
    font-weight: 600;
}

.blog-item .news-days {
    font-size: var(--fz-normal);
    line-height: 1;
}

.blog-item .news-months {
    font-size: var(--fz-small);
}

.blog-item .box-content {
    text-align: center;
    padding: 12px 15px 0px 0px;
}

.blog-item .box-content h4 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.blog-item .box-content h4:hover a {
    color: var(--cl-text-2);
}

.blog-item .box-content h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.1);
    height: 2px;
    width: 30px;
}

.blog-item .box-content h4 a {
    font-size: var(--fz-normal);
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
}

.blog-item .box-content p {
    line-height: 1.5;
}

.blog-cata-log .underline {
    margin-top: 0;
}

.box-cata-log {
    border-radius: 2px;
    border: 1px solid var(--cl-text-4);
    padding: 0 10px;
}

.box-cata-log li {
    position: relative;
    font-weight: bold;
    font-size: var(--fz-base);
    text-transform: capitalize;
}

.box-cata-log li a {
    border-bottom: 1px solid var(--cl-text-4);
    position: relative;
    display: block;
    line-height: 30px;
    padding-top: 10px;
    padding-left: 20px;
    color: var(--cl-text);
    padding-bottom: 10px;
}

.box-cata-log li a:hover {
    color: var(--cl-text-2);
}

.box-cata-log li a::before {
    font-family: FontAwesome;
    content: "\f105";
    left: 5px;
    position: absolute;
    top: 12px;
}

.blog-cat-item {
    position: relative;
    margin-bottom: 20px;
    margin-left: 10px;
    border-bottom: 1px solid #dddddd;
}

.blog-cat-item .box-btn {
    margin-bottom: 10px;
}

.blog-cat-item h4 {
    text-align: center;
    font-size: var(--fz-large-x);
    color: var(--cl-text);
    font-family: var(--font-base);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-cat-item h4:hover a {
    color: var(--cl-text-2);
}

.blog-cat-item h4 a {
    color: var(--cl-text);
}

.blog-item.blog-cat-item .box-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-align: left;
    line-height: 1.7;
}

.box-blog-detail h1 {
    font-size: 26px;
    line-height: 46px;
    margin-bottom: 8px;
}

.box-blog-detail .box-img {
    margin-bottom: 10px;
}

.box-blog-detail .box-img figcaption {
    text-align: center;
    font-style: italic;
}

.box-blog-detail .box-detail-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.box-blog-detail .box-detail-content p {
    line-height: 1.7;
}

.box-blog-detail .short-desc {
    background-color: #fafafa;
    border-left: 4px solid var(--cl-third);
    color: var(--cl-text-heading);
    position: relative;
    font-size: var(--fz-normal);
    font-style: italic;
    line-height: 28px;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.box-blog-detail .table-of-contents {
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.box-blog-detail .table-of-contents h2 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.box-blog-detail .table-of-contents h2::before {
    font-family: FontAwesome;
    content: "\f0ca";
    position: absolute;
    left: 0;
}

.box-blog-detail .table-of-contents ul {
    padding-left: 30px;
}

.box-blog-detail .table-of-contents ul li {
    line-height: 2.3;
}

.box-blog-detail .table-of-contents ul li a {
    color: var(--cl-text-2);
    font-weight: 600;
}

.box-blog-detail .news-detail-author {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vuta-container .box-blog-detail .box-detail-content .image-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vuta-container .box-blog-detail .box-detail-content figure.image {
    max-width: 666px;
    padding: 8px 8px 0;
    background-color: var(--cl-secondary);
    margin: 24px 0;
}

.vuta-container .box-blog-detail .box-detail-content figure.image img {
    width: 100%;
    height: 100%;
}

.vuta-container .box-blog-detail .box-detail-content figure.image figcaption,
.vuta-container .products-desc .data_more_less figure.image figcaption {
    margin: 0;
    padding: 10px 0;
    color: var(--white);
    background-color: var(--cl-secondary);
    text-align: center !important;
}

.vuta-container .box-blog-detail .box-detail-content p,
.vuta-container .box-blog-detail .box-detail-content h1,
.vuta-container .box-blog-detail .box-detail-content h2,
.vuta-container .box-blog-detail .box-detail-content h3,
.vuta-container .box-blog-detail .box-detail-content h4 {
    margin: 0;
}

.vuta-container .box-blog-detail .box-detail-content a {
    color: var(--cl-text-2);
    text-decoration: underline;
}

.vuta-container .box-blog-detail .box-detail-content a:hover {
    color: #fecd08;
}

.vuta-container .box-blog-detail .box-detail-content ul {
    margin: 10px 0 10px 30px;
    padding-left: 5px;
}

.vuta-container .box-blog-detail .box-detail-content ul li {
    list-style: disc;
}

.vuta-container .products-desc .data_more_less table {
    border-collapse: collapse;
}

.vuta-container .products-desc .data_more_less p,
.vuta-container .products-desc .data_more_less h1,
.vuta-container .products-desc .data_more_less h2,
.vuta-container .products-desc .data_more_less h3,
.vuta-container .products-desc .data_more_less h4 {
    margin: 0;
}

.vuta-container .products-desc .data_more_less .image-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vuta-container .products-desc .data_more_less figure.image {
    max-width: 666px;
    padding: 8px 8px 0;
    background-color: var(--cl-secondary);
    margin: 24px 0;
}

.vuta-container .products-desc .data_more_less figure.image img {
    width: 100%;
    height: 100%;
}

.vuta-container .products-desc .data_more_less a {
    color: var(--cl-text-2);
    text-decoration: underline;
}

.vuta-container .products-desc .data_more_less a:hover {
    color: #fecd08;
}

.vuta-container .products-desc .data_more_less ul {
    margin: 10px 0 10px 30px;
    padding-left: 5px;
}

.vuta-container .products-desc .data_more_less ul li {
    list-style: disc;
}

.vuta-container .products-desc .data_more_less p {
    line-height: 1.7;
}

@media screen and (max-width: 996px) {
    .box-blog-detail .news-detail-author {
        gap: 10px;
    }
    .box-blog-detail .news-detail-author span {
        font-size: 12px;
    }
}

.box-blog-detail .news-detail-author .time {
    position: relative;
    padding-left: 20px;
}

.box-blog-detail .news-detail-author .time i {
    position: absolute;
    left: 0;
}

.box-blog-detail .news-detail-author .time i svg {
    width: 18px;
    height: 18px;
}

.box-blog-detail .news-detail-author .view i {
    margin-right: 3px;
}

.box-blog-detail .news-detail-author .cmt {
    position: relative;
}

.box-blog-detail .news-detail-author .cmt i {
    margin-right: 3px;
}

.box-blog-detail .news-detail-author .cmt::before {
    position: absolute;
    height: 14px;
    width: 1px;
    background: var(--cl-text);
    content: "";
    right: -12px;
    top: 3px;
}

.box-blog-detail .news-detail-author .social {
    display: flex;
    gap: 15px;
}

.box-blog-detail .news-detail-author .social ul {
    margin-top: -5px;
}

.box-blog-detail .news-detail-author .rating {
    display: flex;
    gap: 10px;
}

.box-blog-detail .news-detail-author .rating i svg {
    width: 18px;
    height: 18px;
}

.related-products-slider,
.related-news-slider {
    margin: -10px;
}

.related-products-slider .item,
.related-news-slider .item {
    margin: 0 10px;
}

@media screen and (max-width: 996px) {
    .related-products-slider,
    .related-news-slider {
        margin: -5px;
    }
    .related-products-slider .item,
    .related-news-slider .item {
        margin: 0 5px;
    }
}

#product-image-gallery-view .lslide img {
    width: 100%;
}

.lSPager li img {
    border: 2px solid var(--cl-text-4);
    width: 100%;
    border-radius: 2px;
    cursor: pointer;
    max-width: 110px;
}

.lSPager li.active {
    border: 2px solid var(--cl-primary);
}

.lSPrev,
.lSNext {
    background: rgba(45, 45, 45, 0.62) !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 60px !important;
    width: 30px !important;
    line-height: 60px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    outline: none;
    opacity: .1;
}

.lSPrev:hover,
.lSNext:hover {
    color: #fff !important;
}

.lSPrev {
    border-radius: 0 4px 4px 0 !important;
}

.lSNext {
    border-radius: 4px 0 0 4px !important;
}

.box-info-products h1 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.box-info-products .box-total {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.box-info-products .box-total .total {
    display: flex;
    gap: 10px;
    position: relative;
}

.box-info-products .box-total span {
    font-weight: 500;
}

.box-info-products .box-total .total::before {
    content: "";
    height: 17px;
    width: 1px;
    background: #ddd;
    position: absolute;
    right: -12px;
    top: 3px;
}

.box-info-products .box-total .total .total-rating {
    color: var(--cl-third);
    border-bottom: 1px solid var(--cl-third);
    padding-bottom: 1px;
    font-size: var(--fz-normal);
}

.box-info-products .box-total .total .total-count {
    font-size: var(--fz-normal);
    border-bottom: 1px solid #555;
    padding-bottom: 1px;
    font-weight: 400;
}

.box-info-products .box-total .status {
    padding-left: 5px;
    font-size: var(--fz-base);
    color: var(--green);
}

.box-info-products .products-detail-price {
    background-color: #fafafa;
    color: var(--cl-third);
    font-weight: 500;
    line-height: 1;
    padding: 15px 20px;
    margin: 15px 0;
}

.box-info-products .products-detail-price .gr-price {
    display: flex;
    gap: 5px;
    /* align-items: end; */
}

.box-info-products .products-detail-price .gr-price .new-price {
    font-size: 30px;
}

@media screen and (max-width: 996px) {
    .box-info-products .products-detail-price .gr-price .new-price {
        font-size: 18px;
    }
}

.box-info-products .products-detail-price .gr-price .old-price {
    color: #ccc;
    font-size: var(--fz-normal);
    text-decoration: line-through;
}

@media screen and (max-width: 996px) {
    .box-info-products .products-detail-price .gr-price .old-price {
        font-size: 14px;
    }
}

.box-info-products .products-detail-price .short-desc {
    padding-top: 10px;
}

.box-info-products .products-detail-price .short-desc ul {
    /* padding-left: 25px; */
}

.box-info-products .products-detail-price .short-desc li {
    line-height: 2.5;
    position: relative;
    color: #757575;
}

.box-info-products .products-detail-price .short-desc li:nth-child(2) i svg {
    width: 26px;
}

.box-info-products .products-detail-price .short-desc li:first-child i {
    top: 4px;
}

.box-info-products .products-detail-price .short-desc li:last-child i {
    top: -3px;
}

.box-info-products .products-detail-price .short-desc li i {
    position: absolute;
    left: -25px;
}

.box-info-products .products-detail-price .short-desc li i svg {
    width: 18px;
}

.box-info-products .products-detail-price .short-desc li i svg g {
    fill: var(--cl-text-2);
}

.box-info-products .products-text-box p {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 996px) {
    .box-info-products .products-text-box p {
        margin-bottom: 5px;
    }
}

.box-info-products .products-text-box i {
    color: var(--cl-hd-cata);
    font-size: var(--fz-xl);
    margin-right: 5px;
}

.box-info-products .products-stock {
    margin-bottom: 8px;
}

@media screen and (max-width: 996px) {
    .box-info-products .products-stock {
        display: none;
    }
}

.box-info-products .products-stock span {
    font-weight: 700;
    color: red;
    font-size: 16px;
}

.box-info-products .products-detail-choose-type {
    display: none;
}

@media screen and (max-width: 996px) {
    .box-info-products .products-detail-choose-type {
        display: flex;
        margin-bottom: 10px;
        cursor: pointer;
        align-items: center;
        gap: 5px;
    }
    .box-info-products .products-detail-choose-type i {
        margin-left: auto;
    }
}

.box-info-products .products-detail-right {
    color: #05a;
    cursor: pointer;
    margin-bottom: 8px;
    text-transform: capitalize;
}

@media screen and (max-width: 996px) {
    .box-info-products .products-detail-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.box-info-products .products-detail-right i {
    margin-left: 5px;
}

.box-info-products .sl {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 996px) {
    .box-info-products .sl {
        display: none;
    }
}

.box-info-products .add-to-cart {
    position: relative;
    padding-left: 50px;
}

.box-info-products .add-to-cart:hover i svg g {
    fill: var(--cl-text-2);
}

.box-info-products .add-to-cart i {
    position: absolute;
    left: 15px;
    top: 5px;
}

.box-info-products .add-to-cart i svg g {
    fill: #000;
}

.box-info-products .box-btn {
    gap: 15px;
    display: flex;
    margin-bottom: 20px;
}

@media screen and (max-width: 996px) {
    .box-info-products .box-btn {
        display: none;
    }
}

.box-info-products .detail-guaranteed {
    position: relative;
    padding-left: 20px;
}

.box-info-products .detail-guaranteed i svg {
    width: 18px;
    position: absolute;
    left: 0;
    height: 18px;
}

.box-info-products .detail-guaranteed i svg g {
    fill: var(--cl-text-2);
}

.products-size {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

@media screen and (max-width: 996px) {
    .products-size {
        display: none;
    }
}

.products-size span {
    color: #757575;
    text-transform: capitalize;
}

.products-size .option-size {
    display: flex;
    gap: 4px;
}

.products-size .option-size input {
    display: none;
}

.products-size .option-size input:checked~span {
    border: 1px solid var(--cl-text-2);
    color: var(--cl-text-2);
}

.products-size .option-size span {
    border: 1px solid rgba(0, 0, 0, 0.09);
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    padding: 5px 13px 5px 13px;
    margin-bottom: 8px;
    text-align: center;
    font-size: var(--fz-base);
    transition: .3s all;
}

.products-size .option-size span:hover {
    border: 1px solid var(--cl-text-2);
    color: var(--cl-text-2);
}

.detail-social-bottom {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-social-bottom .detail-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 996px) {
    .detail-social-bottom .detail-social strong {
        display: none;
    }
}

.detail-social-bottom .product-detail-heart {
    display: flex;
    gap: 10px;
}


/* .detail-social-bottom .product-detail-heart i svg g {
    fill: var(--cl-text-2);
} */

.second-btn {
    background-color: var(--cl-text-2);
    color: #fff;
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: var(--fz-base);
    text-align: center;
    height: 38px;
    line-height: 38px;
    border-radius: 2px;
    outline: none;
    padding: 0 20px;
    padding-left: 20px;
    overflow: hidden;
    border: 1px solid var(--cl-text-2);
    cursor: pointer;
    transition: .4s all;
    text-transform: uppercase;
}

.second-btn:hover {
    color: var(--cl-text-2);
    background: #fff;
}

.less_active .data_more_less_inner::before {
    display: none;
}

.product-eval {
    border: 1px solid var(--cl-text-6);
    border-radius: 5px;
    padding: 15px 15px 20px;
    margin: 0 0 30px 0;
    margin-top: 30px;
}

@media screen and (max-width: 996px) {
    .product-eval {
        padding: 0;
        border: 0;
    }
}

.product-eval h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: var(--fz-xl);
}

@media screen and (max-width: 996px) {
    .product-eval h3 {
        font-size: 18px;
    }
}

.product-eval .box-btn {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.product-eval .box-btn a {
    width: 50%;
}

.eval {
    display: flex;
    margin: 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--cl-text-4);
}

@media screen and (max-width: 996px) {
    .eval {
        display: block;
    }
}

.eval .eval-top {
    width: 130px;
    border-right: 1px solid var(--cl-text-4);
    padding: 10px 0;
    text-align: center;
}

@media screen and (max-width: 996px) {
    .eval .eval-top {
        width: 100%;
        border-right: 0;
        margin-bottom: 8px;
    }
}

.eval .eval-top span {
    color: var(--cl-btn-buy);
    display: block;
    font-weight: bold;
    font-size: var(--fz-xl);
    line-height: 27px;
    margin-top: 2px;
    margin-bottom: 5px;
}

.eval .eval-bottom-data {
    width: calc(100% - 130px);
    padding-right: 7px;
    padding-left: 20px;
    text-align: center;
}

@media screen and (max-width: 996px) {
    .eval .eval-bottom-data {
        width: 100%;
        padding: 0;
    }
}

.eval .eval-bottom-data .eval-star-line {
    align-items: center;
    display: flex;
    margin-bottom: 7px;
}

.eval .eval-bottom-data .eval-star-point {
    display: flex;
    align-items: center;
    font-size: var(--fz-small);
    line-height: 14px;
    text-align: left;
    width: 25px;
}

.eval .eval-bottom-data .eval-star-percent_bar {
    background-color: var(--cl-grey);
    height: 4px;
    position: relative;
    width: calc(100% - 60px);
}

.eval .eval-bottom-data .eval-star-percent_bar span {
    background-color: var(--cl-btn-buy);
    left: 0;
    height: 4px;
    position: absolute;
    top: 0;
}

.eval .eval-star-percent {
    color: var(--cl-text-2);
    font-size: var(--fz-small);
    font-weight: bold;
    line-height: 15px;
    padding-left: 10px;
    text-align: left;
    width: 200px;
    cursor: pointer;
}

.eval-item {
    border-bottom: 1px solid var(--cl-text-4);
    padding: 14px 0;
}

.eval-item .eval-name {
    display: flex;
    align-items: center;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.eval-item .eval-stars {
    margin-bottom: 6px;
    display: flex;
}

.eval-item .eval-tickbuy {
    color: #2ba832;
    font-size: var(--fz-small);
    line-height: 14px;
    margin-left: 8px;
    font-weight: 400;
}

.eval-item .eval-tickbuy i {
    margin-right: 3px;
}

.eval-action {
    color: var(--cl-text-2);
    font-size: var(--fz-small-x);
    display: flex;
    margin-top: 10px;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
}

.eval-action i {
    margin-right: 3px;
}

.eval-timeago {
    color: #999;
    border-left: 1px solid var(--cl-text-6);
    font-size: var(--fz-small);
    padding-left: 10px;
    position: relative;
    line-height: 14px;
    cursor: inherit !important;
}

@media screen and (max-width: 996px) {
    .related-products {
        margin-top: 20px;
    }
}

.products-bottom {
    margin-top: 20px;
    position: relative;
}

@media screen and (max-width: 996px) {
    .products-bottom {
        border-top: 7px solid var(--cl-text-4);
        padding-top: 20px;
    }
}

.products-bottom .underline {
    font-size: 18px;
}

@media screen and (max-width: 996px) {
    .products-bottom .underline {
        font-weight: 600;
    }
}

@media screen and (max-width: 996px) {
    .products-bottom .more_less_action {
        width: 100%;
        border-radius: 0;
    }
}

.aside-products {
    position: sticky;
    top: 120px;
}

.aside-products .underline {
    margin-top: 0;
}

.contact h2 {
    margin-bottom: 20px;
    line-height: 44px;
}

.contact form .gr-input {
    margin-bottom: 15px;
}

.contact form .gr-input textarea {
    min-height: 100px;
}

.contact form .box-btn button {
    width: 100%;
}

.list-contact {
    padding-left: 30px;
    font-size: 16px;
}

.list-contact li {
    margin-bottom: 20px;
    position: relative;
}

.list-contact span {
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.list-contact span a {
    color: var(--cl-text);
}

.list-contact i {
    font-size: 25px;
    position: absolute;
    left: -30px;
    color: var(--cl-text-2);
}

.list-contact i svg {
    height: 25px;
    width: 25px;
}

.list-contact i svg g {
    fill: var(--cl-text-2);
}

.popup {
    position: fixed;
    overflow-x: hidden;
    display: none;
    overflow-y: scroll;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    width: 100vw;
    top: 0;
}

.popup .popup-content {
    position: relative;
}

.popup .popup-content .form-login,
.popup .popup-content .form-regist {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 400px;
    border-radius: 20px;
    padding: 30px 25px 20px 25px;
    background: #fff;
    width: 100%;
}

@media screen and (max-width: 575px) {
    .popup .popup-content .form-login,
    .popup .popup-content .form-regist {
        max-width: calc(100% - 20px);
    }
}

.popup .popup-content .form-login .close,
.popup .popup-content .form-regist .close {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 10px;
}

.popup .popup-content .form-login .close i,
.popup .popup-content .form-regist .close i {
    font-size: 18px;
}

.popup .popup-content .form-login .policy,
.popup .popup-content .form-regist .policy {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.popup .popup-content .form-login .policy label,
.popup .popup-content .form-regist .policy label {
    cursor: pointer;
}

.popup .popup-content .form-login .policy label a,
.popup .popup-content .form-regist .policy label a {
    font-weight: 500;
    color: var(--cl-primary);
}

.popup .popup-content .form-login .policy input,
.popup .popup-content .form-regist .policy input {
    position: absolute;
    left: 0;
    top: 4px;
}

.popup .popup-content .form-login h2,
.popup .popup-content .form-regist h2 {
    text-align: center;
    margin-bottom: 20px;
}

.popup .popup-content .form-login h2 img,
.popup .popup-content .form-regist h2 img {
    width: 180px;
    margin: 0 auto;
}

.popup .popup-content .form-login .box-btn,
.popup .popup-content .form-regist .box-btn {
    margin-bottom: 20px;
}

.popup .popup-content .form-login .box-btn button,
.popup .popup-content .form-regist .box-btn button {
    width: 100%;
    border-radius: 30px;
}

.popup .popup-content .form-login .d-flex,
.popup .popup-content .form-regist .d-flex {
    justify-content: space-between;
}

.popup .popup-content .form-login .d-flex a,
.popup .popup-content .form-regist .d-flex a {
    color: var(--cl-text);
}

.popup .popup-content .form-login .d-flex a:hover,
.popup .popup-content .form-regist .d-flex a:hover {
    color: var(--cl-text-2);
}

.popup .popup-content .form-login .gr-input,
.popup .popup-content .form-regist .gr-input {
    position: relative;
}

.popup .popup-content .form-login .gr-input input,
.popup .popup-content .form-regist .gr-input input {
    border: 1px solid var(--cl-gray);
    font-size: var(--fz-base);
    display: block;
    width: 100%;
    height: 45px;
    padding: 10px 15px 10px 42px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 20px;
    border-radius: 30px;
}

.popup .popup-content .form-login .gr-input input:focus,
.popup .popup-content .form-regist .gr-input input:focus {
    box-shadow: 0.5px 0.866px 5px 0 rgba(179, 179, 179, 0.5);
}

.popup .popup-content .form-login .gr-input i,
.popup .popup-content .form-regist .gr-input i {
    position: absolute;
    top: 12px;
    left: 15px;
}

.popup .popup-content .form-login .gr-input i svg,
.popup .popup-content .form-regist .gr-input i svg {
    height: 21px;
    width: 21px;
}

.popup .popup-content .form-login .gr-input i svg g,
.popup .popup-content .form-regist .gr-input i svg g {
    fill: var(--cl-text);
}

@media screen and (max-width: 996px) {
    .lg-mb {
        margin-bottom: 15px;
    }
}

.form-checkout .sex {
    margin: 10px 0;
}

.form-checkout .sex ul {
    display: flex;
    gap: 10px;
}

.form-checkout .sex ul label {
    position: relative;
    padding-left: 20px;
}

.form-checkout .sex ul label input {
    position: absolute;
    left: 0;
    top: 4px;
}

.form-checkout .gr-input {
    margin-bottom: 15px;
}

.form-checkout .gr-input input {
    height: 38px;
}

.form-checkout .box-address {
    padding: 10px 15px;
    background: var(--cl-hd-dropdown);
}

.form-checkout .box-address .gr-input {
    margin-bottom: 0;
}

.form-checkout .box-address .gr-input .vuta-input {
    margin-bottom: 10px;
}

.form-checkout .box-address h4 {
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.form-checkout .product-checkout-heading-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

@media screen and (max-width: 575px) {
    .form-checkout .product-checkout-heading-payment {
        gap: 10px;
        margin: 10px 0;
    }
}

.form-checkout ._item_Payment-heading {
    flex: 1;
    text-align: center;
    font-size: var(--fz-base);
    font-weight: 600;
}

@media screen and (max-width: 575px) {
    .form-checkout ._item_Payment-heading {
        flex: unset;
        font-size: 12px;
    }
}

.form-checkout ._item_Payment-heading._item_Payment-name {
    border: 1px solid var(--cl-text-2);
    margin-top: 10px;
    font-weight: 200;
    padding: 5px 10px;
    color: var(--cl-text-2);
    margin-top: 0;
    display: inline;
    border: 0;
    padding: 0;
}

.form-checkout ._payment_method.product-cart-payment {
    border: 1px solid var(--cl-gray);
    margin-top: 15px;
    position: absolute;
    top: 15px;
    bottom: auto;
    right: 0;
    margin: 0 auto;
    width: 300px;
    display: none;
}

.form-checkout textarea {
    min-height: 100px;
    margin-bottom: 15px;
}

.form-checkout .note-order {
    font-size: var(--fz-normal);
    color: var(--red);
}

.form-checkout .note-order li {
    margin-bottom: 5px;
    line-height: 2;
}

.form-checkout .note-order li i {
    margin-right: 5px;
}

.form-checkout .note-order li a {
    color: #000;
}

.form-checkout .note-order li a:hover {
    color: var(--cl-text-2);
}

.form-checkout .note-order .note-order-title {
    font-weight: 700;
}

.product-cart-right-box {
    padding: 30px 20px;
    background: #f8f7ff;
}

.product-cart-right-box .product-cart-left-name {
    width: 70%;
    line-height: 2;
    padding-left: 10px;
}

.product-cart-right-box .product-cart-left-name a {
    font-weight: 700;
}

.product-cart-right-box .product-cart-list ul {
    display: flex;
    align-items: start;
    font-weight: 400;
}

.product-cart-right-box .product-cart-list ul img {
    padding-top: 0;
    padding-left: 0;
}

.product-cart-right-box .product-cart-list ul li {
    font-weight: 400;
}

.product-cart-right-box .product-cart-left-info {
    width: calc(100% - 90px);
    display: flex;
    justify-content: space-between;
}

.product-cart-right-box .discount-code-title {
    margin-bottom: 10px;
    font-style: italic;
}

.product-cart-right-box .product-cart-left-count {
    font-weight: 500;
    color: #a7a5a5;
}

.product-cart-right-box .product-cart-left-btn {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.product-cart-right-box .product-cart-left-btn i {
    color: var(--white);
    background-color: var(--cl-grey);
    line-height: 13px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
}

.product-cart-right-box .discount-code {
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--cl-gray);
    border-bottom: 1px solid var(--cl-gray);
}

.product-cart-right-box .discount-code-input {
    display: flex;
}

.product-cart-right-box .discount-code-input input {
    border-radius: 0;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
    min-width: calc(100% - 130px);
    width: 53%;
    margin-right: 20px;
}

.product-cart-right-box .product-cart-total-wrapper {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

._hidden {
    display: none;
}

.product-cart-right-bottom a {
    width: 100%;
    border-radius: 0;
}

.payment {
    padding-bottom: 50px;
}

.page {
    padding: 30px 0;
}

.page .form-order {
    max-width: 490px;
    margin: 0 auto;
}

.page .form-order .form-header {
    background: var(--cl-text-2);
    color: var(--white);
    font-size: var(--fz-normal);
    text-align: center;
    padding: 15px;
}

.page .form-order .form-body {
    padding: 20px;
    border: 1px solid var(--cl-grey);
    text-align: center;
}

.page .form-order .form-body input {
    border-radius: 30px;
    margin-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.page .form-order .form-body span {
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

#popup-rating .form-rating {
    background: var(--white);
    max-width: 540px;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    position: absolute;
    transform: translate(0, -50%);
    padding: 20px;
    border-radius: 8px;
}

@media screen and (max-width: 575px) {
    #popup-rating .form-rating {
        max-width: calc(100% - 20px);
    }
}

#popup-rating .form-rating input,
#popup-rating .form-rating textarea {
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

#popup-rating .form-rating textarea {
    min-height: 100px;
}

#popup-rating .form-rating button {
    width: 100%;
    border-radius: 30px;
}

#popup-rating .form-rating .close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--cl-text-2);
    font-weight: 700;
    cursor: pointer;
}

#popup-rating .form-rating .check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

#popup-rating .form-rating .check label {
    position: relative;
    padding-left: 20px;
}

#popup-rating .form-rating .check label input {
    position: absolute;
    left: 0;
    top: 5px;
}

.mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .mobile {
        display: block;
    }
}

#popup-choose-type .form-choose-type {
    background: var(--white);
    max-width: 540px;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    position: absolute;
    transform: translate(0, -50%);
    border-radius: 8px;
}

@media screen and (max-width: 575px) {
    #popup-choose-type .form-choose-type {
        max-width: calc(100% - 20px);
    }
}

#popup-choose-type .form-choose-type .products-size {
    display: block;
    margin: 0;
}

#popup-choose-type .form-choose-type .products-size span {
    display: block;
    margin-bottom: 10px;
}

#popup-choose-type .form-choose-type .close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--cl-text-2);
    font-weight: 700;
    cursor: pointer;
}

#popup-choose-type .form-choose-type .box-btn {
    padding: 12px;
    display: flex;
    gap: 10px;
}

#popup-choose-type .form-choose-type .box-btn a {
    width: 50%;
    margin-bottom: 10px;
}

#popup-choose-type .form-choose-type .box-btn a:hover i g {
    fill: var(--cl-text-2);
}

#popup-choose-type .form-choose-type .box-btn a i {
    position: absolute;
    top: 6px;
    left: 7px;
}

#popup-choose-type .form-choose-type .box-btn a i svg g {
    fill: #000;
}

#popup-choose-type .form-choose-type .form-item {
    display: flex;
    padding: 12px;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09) !important;
    align-items: center;
}

#popup-choose-type .form-choose-type .form-item:nth-child(3) {
    justify-content: space-between;
}

#popup-choose-type .form-choose-type .form-item .box-img {
    width: 100px;
    height: 100px;
}

#popup-choose-type .form-choose-type .form-item .gr-price .new-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--cl-text-2);
}

#popup-choose-type .form-choose-type .form-item .gr-price .old-price {
    color: #757575;
    text-decoration: line-through;
}

#popup-choose-type .form-choose-type .check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

#popup-choose-type .form-choose-type .check label {
    position: relative;
    padding-left: 20px;
}

#popup-choose-type .form-choose-type .check label input {
    position: absolute;
    left: 0;
    top: 5px;
}

#popup-handleSize {
    line-height: 1.7;
}

#popup-handleSize .size-bg {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: flex;
}

#popup-handleSize .size-bg .size-content {
    background-color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    padding: 17px 20px;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
}

#popup-handleSize .size-bg .size-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fz-large);
}

#popup-handleSize .size-bg h5 {
    line-height: 1.7;
}

#popup-handleSize .size-bg .table-responsive {
    width: 100%;
    overflow: auto;
}

#popup-handleSize .size-bg p {
    line-height: 1.7;
    margin-bottom: 0;
}

#popup-handleSize .close {
    cursor: pointer;
}

.cat-item .product-cart-left-info {
    display: block;
}

.cart-page {
    margin-bottom: 40px;
}

.cart-page .cat-item {
    border-bottom: 1px solid #f0f0f0;
}

.cart-page .cat-item:last-child {
    border-bottom: 0;
}

.cart-page .product-cart-left-image {
    min-width: 90px;
}

.cart-page .product-cart-right-box {
    background-color: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    padding: 0;
    /* overflow-x: auto; */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 996px) {
    .cart-page .product-cart-right-box {
        padding-right: 10px;
    }
}

@media screen and (max-width: 996px) {
    .cart-page .product-cart-right-box {
        margin-bottom: 15px;
    }
}

.cart-page .product-cart-list ul {
    padding: 12px 0;
    align-items: center;
    gap: 10px;
    display: flex;
}

.cart-page .product-cart-list ul li {
    font-weight: 700;
}

.cart-page .product-cart-left-image {
    width: 100px;
    padding: 0;
}

.cart-page .product-cart-left-image img {
    padding: 10px !important;
    padding-bottom: 0 !important;
}

.cart-page .product-cart-left-info {
    width: calc(100% - 550px);
    padding: 0 !important;
}

@media screen and (max-width: 996px) {
    .cart-page .product-cart-left-info {
        width: 100%;
    }
}

.cart-page .product-cart-left-price,
.cart-page .product-cart-left-sl,
.cart-page .product-cart-left-total {
    width: 150px;
    text-align: center;
}

.cart-page .product-cart-right-box li {
    position: relative;
}

@media screen and (max-width: 996px) {
    .cart-page .product-cart-right-box li {
        padding-right: 3px;
    }
    .cart-page .product-cart-right-box li::last-child {
        padding-right: 0;
    }
}

.cart-page .product-cart-left-name a {
    font-weight: 400;
    color: var(--cl-text);
}

.cart-page .product-cart-size-bg {
    position: relative;
}

.cart-page .product-cart-size-title {
    color: var(--cl-third);
    border: 1px solid rgba(0, 0, 0, 0.09);
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    padding: 5px 13px 5px 13px;
    margin-top: 4px;
    display: inline-block;
    text-align: center;
    font-size: var(--fz-base);
    transition: .3s all;
}

.cart-page .product-cart-size-title span {
    padding: 0 3px;
}

.cart-page .product-cart-size-bg .deal-detail-bg {
    min-width: 320px;
    top: 48px;
    bottom: auto;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 18px 18px;
    margin: 0 auto;
    z-index: 2;
    background-color: var(--white);
    position: absolute;
    display: none;
}

.cart-page .deal-detail-title {
    color: rgba(0, 0, 0, 0.54);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.cart-page .option_custom {
    border: 1px solid rgba(0, 0, 0, 0.09);
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    padding: 5px 13px 5px 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: auto;
    text-align: center;
    font-size: var(--fz-base);
    transition: .3s all;
}

.cart-page .option_custom.active {
    border: 1px solid var(--cl-text-2);
    color: var(--cl-text-2);
}

.cart-page .deal-detail-desc {
    display: flex;
    margin-bottom: 7px;
}

.cart-page .product-detail-quality-bg {
    display: flex;
    justify-content: end;
    gap: 8px;
}

.cart-page .deail-detail-btn {
    display: flex;
    gap: 8px;
    margin-bottom: -6px;
}

.cart-page .deal-detail-bg:before {
    content: '';
    position: absolute;
    left: 45px;
    width: 0;
    margin: 0 auto;
    height: 0;
    border-bottom: 7px solid rgba(0, 0, 0, 0.09);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    top: -7px;
    display: block;
}

.cart-page .product-cart-left-trash {
    margin-top: 4px;
}

.cart-page .product-cart-left-trash a {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.cart-page .product-cart-left-trash i {
    color: var(--white);
    background-color: var(--cl-grey);
    line-height: 13px;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    margin-right: 3px;
}

.cart-page .product-cart-list-first {
    border-bottom: 1px solid #f0f0f0;
}

.product-cart-total-wrapper {
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    padding: 18px 15px;
    margin-bottom: 50px;
}

.product-cart-total-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.product-cart-total-title {
    text-transform: uppercase;
}

.product-cart-sum {
    display: flex;
    position: relative;
    padding-top: 8px;
}

.product-cart-sum-left {
    text-align: left;
    flex: 1;
}

.product-cart-sum:last-child .product-cart-sum-right {
    font-weight: 700;
    color: var(--red);
}

.product-cart-sum:last-child .product-cart-sum-left {
    font-weight: 600;
}

@media screen and (max-width: 996px) {
    .box-bg-title {
        margin-bottom: 20px;
    }
    .box-bg-title h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 996px) {
    .gr-input .vuta-row [class^="vuta-col-"]:last-child .vuta-input {
        margin-top: 15px;
    }
}

@media screen and (max-width: 996px) {
    .form-checkout .gr-input .vuta-row [class^="vuta-col-"]:last-child .vuta-input {
        margin-top: 0px;
    }
}

@media screen and (max-width: 996px) {
    .related-news {
        margin-top: 20px;
    }
}

@media screen and (max-width: 996px) {
    .payment {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 996px) {
    .payment .product-cart-right-box {
        padding: 15px;
    }
    .payment .product-cart-right-box .product-cart-left-image {
        padding-right: 20px;
    }
    .payment .product-cart-right-box .product-cart-total-wrapper {
        padding: 0;
    }
}

.about h2 {
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid var(--cl-gray);
    font-size: var(--fz-xl);
    color: var(--black);
    display: block;
    line-height: 35px;
    font-weight: 700;
    position: relative;
    margin-top: 12px;
}

@media screen and (max-width: 996px) {
    .about h2 {
        font-size: 18px;
        padding-bottom: 0 !important;
        padding-top: 0;
        margin-top: 0;
    }
}

.about .box-img {
    margin-bottom: 10px;
}

.about figcaption {
    padding: .4em;
    font-size: .9em;
    background: rgba(0, 0, 0, 0.05);
    font-style: italic;
    text-align: center;
}

.about p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.header.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 6px 0 rgba(var(--black-rgb), 0.09);
    z-index: 9999;
}

.header .header-mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .header .header-mobile {
        display: block;
    }
}

.header .header-top {
    background-color: var(--black);
    padding: 15px 0;
}

@media screen and (max-width: 1200px) {
    .header .header-top {
        padding: 5px 0;
    }
}

.header .header-top .vuta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1200px) {
    .header .header-top .vuta-container {
        gap: 10px;
    }
}

.header .header-top .vuta-container .header-mobile ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header .header-top .vuta-container .header-mobile ul li a {
    color: #fff;
    font-size: 26px;
}

.header .header-top .vuta-container .header-mobile ul li span {
    height: 2px;
    width: 26px;
    display: block;
    margin-bottom: 8px;
    background: #fff;
}

.header .header-top .vuta-container .header-mobile ul li span:last-child {
    margin-bottom: 0;
}

.header .header-top .vuta-container .logo-mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .header .header-top .vuta-container .logo-mobile {
        display: block;
        width: 30px;
    }
}

.header .header-top .vuta-container .logo-desktop {
    width: 150px;
}

.header .header-top .vuta-container .logo-desktop img {
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .header .header-top .vuta-container .logo-desktop {
        display: none;
    }
}

.header .header-top .vuta-container .header-search {
    max-width: 500px;
    width: 100%;
}

.header .header-top .vuta-container .header-search form {
    position: relative;
}

.header .header-top .vuta-container .header-search input {
    width: 100%;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    padding: 0 47px 0 20px;
    height: 36px;
    caret-color: var(--cl-secondary);
}

.header .header-top .vuta-container .header-search button {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    height: 36px;
}

.header .header-top .vuta-container .header-search button svg g {
    fill: var(--cl-secondary);
}

.header .header-top .vuta-container .header-search button:hover svg {
    opacity: 0.8;
}

.header .header-top .vuta-container .header-right {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
}

@media screen and (max-width: 1200px) {
    .header .header-top .vuta-container .header-right {
        display: none;
    }
}

.header .header-top .vuta-container .header-right a {
    color: #fff;
}

.header .header-top .vuta-container .header-right .header-user {
    display: flex;
    gap: 20px;
}

.header .header-top .vuta-container .header-right .header-user a {
    text-transform: capitalize;
    position: relative;
}

.header .header-top .vuta-container .header-right .header-user a::before {
    content: "/";
    position: absolute;
    right: -12px;
    line-height: 21px;
}

.header .header-top .vuta-container .header-right .header-user a:last-child::before {
    display: none;
}

.header .header-top .vuta-container .header-right ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .header-top .vuta-container .header-right ul li a {
    position: relative;
}

.header .header-top .vuta-container .header-right ul li a .count {
    position: absolute;
    background-color: var(--cl-primary);
    display: inline-block;
    position: absolute;
    top: -17px;
    left: 14px;
    font-size: 11px;
    font-style: normal;
    text-align: center;
    width: 18px;
    height: 18px;
    line-height: 16px;
    padding: 0;
    border-radius: 50%;
}

.header .header-bottom {
    background-color: var(--cl-primary);
}

@media screen and (max-width: 1200px) {
    .header .header-bottom {
        display: none;
    }
}

.header .header-bottom .header-menu .navbar>ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .header-bottom .header-menu .navbar>ul .dropdown {
    position: relative;
}

.header .header-bottom .header-menu .navbar>ul .dropdown.active .link {
    background: #fff;
}

.header .header-bottom .header-menu .navbar>ul .dropdown:hover .sub-menu {
    display: flex;
    z-index: 9;
}

.header .header-bottom .header-menu .navbar>ul .dropdown:hover .link {
    background: #fff;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .link {
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .link i {
    margin-right: 10px;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .link>a {
    color: #000;
    display: flex;
    align-items: center;
    height: 44px;
    padding: 10px;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 460px;
    max-height: 251px;
    border-radius: 0 0px 4px 4px;
    border: 1px solid var(--cl-text-4);
    left: 0;
    box-shadow: var(--cl-shadown-1);
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu li {
    width: 50%;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu a {
    background-color: var(--white);
    padding: 10px 9px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--cl-text);
    border-bottom: 1px solid rgba(var(--black-rgb), 0.03);
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu a:hover {
    color: var(--cl-text-2);
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu .hot {
    font-size: var(--fz-tiny);
    background: var(--red);
    color: var(--white);
    text-transform: uppercase;
    line-height: initial;
    padding: 3px 10px;
    margin-left: 10px;
    border-radius: 50px;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu .new {
    font-size: var(--fz-tiny);
    background: var(--cl-primary);
    color: var(--white);
    text-transform: uppercase;
    line-height: initial;
    padding: 3px 10px;
    margin-left: 10px;
    border-radius: 50px;
}

.header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu .hight-light {
    font-weight: 700;
    color: var(--cl-text-2);
}

#menu #list_menu .dropdown .link>a {
    font-size: 16px;
}

.overlay .close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #fff;
    z-index: 999;
    cursor: pointer;
    font-weight: 700;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    justify-content: center;
}

#menu {
    position: fixed;
    z-index: 99999;
    display: none;
}

@media screen and (max-width: 1200px) {
    .fadeindown {
        animation: unset;
    }
    #menu {
        display: block;
    }
}

#menu #list_menu .sub-menu>li>a {
    display: block;
    padding: 8px 15px;
    color: var(--cl-text);
    border-bottom: 1px solid #ccc;
}

.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 70px;
    height: 40px;
    width: 40px;
    background: var(--cl-text-2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: all ease 0.4s;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.back-to-top.active {
    display: flex;
}

.mobile-cart {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--cl-text);
    border-radius: 50%;
    width: 40px;
    position: fixed;
    right: 10px;
    bottom: 120px;
    height: 40px;
}

@media screen and (max-width: 1200px) {
    .mobile-cart {
        display: flex;
    }
}

.mobile-cart i {
    position: absolute;
    top: 8px;
    left: 8px;
}

.mobile-cart .count {
    position: absolute;
    top: -2px;
    background: #f9b115;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    right: 3px;
    height: 12px;
    width: 12px;
}

#button-contact-vr {
    position: fixed;
    bottom: 50px;
    z-index: 99999;
}


/*phone*/

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -15px;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility 0.5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-bar a {
    position: fixed;
    bottom: 25px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
    background: #f44336;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(0.9);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.9);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

.phone-bar a:hover {
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 736px) {
    .phone-bar {
        display: none;
    }
}

#mess img {
    /* width: 35px; */
    border-radius: 50%;
    /* height: 32px; */
}

#mess .phone-vr-circle-fill,
#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#mess .phone-vr-img-circle,
#zalo-vr .phone-vr-img-circle {
    background-color: #2196f3;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113, 68, 151, 0.8);
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497;
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196f3;
}

#whatsapp-vr .phone-vr .phone-vr-img-circle img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}


/*css all in one*/

#gom-all-in-one #phone-vr {
    transition: 0.7s all;
    -moz-transition: 0.7s all;
    -webkit-transition: 0.7s all;
}

#gom-all-in-one #zalo-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

.box-bottom {
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    display: none;
}

@media screen and (max-width: 996px) {
    .box-bottom {
        display: flex;
    }
}

.box-bottom a {
    width: 100%;
    position: relative;
    border-radius: 0;
}

.box-bottom a:hover i g {
    fill: var(--cl-text-2);
}

.box-bottom .add-to-cart {
    padding-left: 48px !important;
}

.box-bottom i {
    position: absolute;
    left: 15px;
    top: 6px;
}

.box-bottom i g {
    fill: #000;
}

.footer {
    position: relative;
    border-top: 1px solid var(--cl-text-4);
}

.footer-top {
    padding-top: 20px;
}

.footer-top h2,
.footer-top h3 {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-top ul {
    padding-left: 18px;
}

.footer-top ul li {
    line-height: 2;
    margin-bottom: 5px;
    position: relative;
}

.footer-top ul li i {
    position: absolute;
    left: -18px;
    top: 3px;
}

.footer .list-info {
    padding-left: 18px;
}

@media screen and (max-width: 1200px) {
    .footer .list-info {
        margin-bottom: 0;
    }
}

.footer .list-info li {
    line-height: 2;
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer .list-info li a {
    color: var(--cl-text);
}

.footer .list-info li i {
    position: absolute;
    left: -18px;
    top: 5px;
}

.footer .list-info li:nth-child(2) i {
    top: 3px;
}

.footer .list-info li:nth-child(3) i,
.footer .list-info li:nth-child(4) i,
.footer .list-info li:nth-child(5) i {
    top: 6px;
}

.footer .list-info li:last-child i {
    top: 3px;
}

.footer ul {
    margin-bottom: 15px;
}

.footer ul li a {
    color: var(--cl-text);
    font-weight: 500;
}

.footer ul li a:hover {
    color: var(--cl-text-2);
}

.footer .list-social {
    margin-bottom: 0;
}

.footer .list-social a {
    color: #fff;
}

.footer .list-social a:hover {
    background: #000;
    transition: all ease 0.4s;
    color: #fff;
}

.footer .list-cn ul {
    padding-left: 0;
    display: flex;
    gap: 5px;
}

.footer .list-payment {
    padding-left: 0;
    display: flex;
    gap: 5px;
}

.footer .list-sv {
    padding-left: 0;
}

.footer .dt {
    width: 100px;
    height: 100px;
    aspect-ratio: 1/1;
}

.footer .dt img {
    object-fit: cover;
}

.footer-bottom {
    background-color: #f6f6f6;
    padding: 5px 0;
}

.footer-bottom .vuta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1200px) {
    .footer-bottom .vuta-container {
        display: block;
    }
}

@media screen and (max-width: 1200px) {
    .footer-bottom .copyright {
        width: 100%;
    }
}

.footer-bottom .copyright p {
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .footer-bottom .copyright p {
        text-align: center;
        margin-bottom: 10px;
    }
}

.footer-bottom .copyright a {
    color: var(--cl-text-2);
    font-weight: 600;
}

.footer-bottom .footer-menu .list-menu-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.footer-bottom .footer-menu .list-menu-footer li {
    width: 33%;
    margin-bottom: 3px;
}

.footer-bottom .footer-menu .list-menu-footer li a {
    color: #44b1c3;
    font-size: var(--fz-small);
    position: relative;
    margin: 0 4px;
}

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

.list-social a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.list-social li:first-child a {
    background-color: var(--cl-facebook);
}

.list-social li:nth-child(2) a {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

.list-social li:nth-child(3) a {
    background: #111;
}

.list-social li:nth-child(4) a {
    background-color: var(--cl-twitter);
}

.list-social li:nth-child(5) a {
    background-color: var(--cl-pinterest);
}

.list-social li:last-child a {
    background-color: var(--cl-youtube);
}

.footer-social.mobile {
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--cl-grey);
}

.footer-social.mobile ul {
    justify-content: center;
}

.list-cn.mobile {
    padding-left: 10px;
    border-top: 1px solid var(--cl-grey);
}

.list-cn.mobile ul {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-height: 55px;
    margin-bottom: 0;
    justify-content: center;
}

.rate {
    float: left;
    height: 46px;
    padding-left: 20px;
}

.rate:not(:checked)>input {
    display: none;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    /* overflow: hidden; */
    white-space: nowrap;
    cursor: pointer;
    font-size: 24px;
    color: #ccc;
}

.rate:not(:checked)>label:before {
    content: '★ ';
}

.rate>input:checked~label {
    color: #ffc814;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #ffc814;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #ffc814;
}


/*# sourceMappingURL=vuta.css.map */


/* CUSTOM TABLE */

table {
    width: 100%;
    caption-side: bottom;
}

table caption {
    padding: 5px;
    text-align: center;
    color: var(--white);
    background-color: var(--cl-secondary);
    margin-bottom: 10px;
    font-style: italic;
}

table th,
table td {
    padding: 10px;
    /* text-align: center; */
    border: 1px solid #ddd
}

table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    .table table {
        border: 0;
    }
    .table table thead {
        display: none;
    }
    .table table tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 1px solid #ddd;
    }
    .table table th,
    .table table td {
        padding: 10px;
        /* text-align: center; */
        border: 0;
    }
    .table table td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
    }
    .table table td:last-child {
        border-bottom: 0;
    }
    .table table td:before {
        content: attr(data-th);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}

@media (max-width: 575px) {
    .vuta-container {
        padding: 0 15px;
    }
    .box-promotion .box-title h2 {
        font-size: var(--fz-large);
        margin-bottom: 10px;
    }
    .first .vuta-container .box-title {
        display: none;
    }
    .products-feature [class^="vuta-col-"]:nth-child(2) {
        display: none;
    }
    .home-cat-slider .item h2 {
        font-weight: 500;
        font-size: var(--fz-small-x);
    }
    .home-cat-slider .item img {
        width: 91px;
        height: 91px;
    }
    .products-item .box-content,
    .products-item .box-content-2 {
        min-height: unset;
    }
    .products-item .box-content .price {
        font-size: var(--fz-base);
    }
    .about-bg .about-item {
        margin-bottom: 15px;
    }
    .products-sale .box-products-sale .box-title h2 a {
        font-size: var(--fz-base);
    }
    .aside-home-blog .aside-blog-item .box-content h4 a {
        font-weight: 500;
        font-size: var(--fz-normal);
    }
    .products-flex-item .box-content h4 a .aside-home-blog .aside-blog-item .box-content .box-time span {
        font-weight: 500;
    }
    .feature-slider .products-flex-item .box-content .products-price {
        font-size: var(--fz-base);
    }
    .slick-arrow {
        opacity: 0;
    }
}

.products-feature-box .products-top-slider .list-images {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.products-feature-box .products-top-slider .list-images figure {
    max-width: 127px;
    height: 127px;
    object-fit: contain;
}