    /**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */
    /* Các tùy chỉnh CSS của giao diện nên để vào đây */
    
    .products-item {
        position: relative;
        padding: 10px;
        box-shadow: rgb(60 64 67 / 10%) 0 1px 2px 0, rgb(60 64 67 / 15%) 0 2px 6px 2px;
        transition: 0.3s;
        border-radius: 10px;
        transition: all ease 0.4s;
        margin-bottom: 20px;
    }
    
    .products-item:hover {
        transform: scale(1.02);
        box-shadow: 0 2px 12px 0 rgb(0 0 0 / 30%);
    }
    
    .products-item .box-img {
        aspect-ratio: 1/1;
        padding: 5px;
    }
    
    .products-item .box-content h4 {
        overflow: hidden;
        display: -webkit-box;
        line-height: 1.25;
        min-height: 40px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical
    }
    
    .products-item .box-content h4 a {
        color: var(--text-color);
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
    }
    
    .products-item .box-content .box-price {
        display: flex;
        gap: 2px;
    }
    
    .products-item .box-content .price {
        display: flex;
        align-items: center;
        font-size: 16px;
        color: red;
        font-weight: 600;
        gap: 3px;
    }
    
    .products-item .box-price {
        margin: 0;
    }
    
    .related-products {
        margin-bottom: 20px;
    }
    
    .products-rating .icon i svg g {
        fill: #fecd08 !important;
    }
    
    .products-item .price-discount {
        font-size: 12px;
        color: #888;
        text-decoration: line-through;
        align-items: center;
        display: flex;
        gap: 3px;
    }
    
    .products-item .label-item {
        position: absolute;
        margin-left: -12px;
        margin-top: -10px;
    }
    
    .products-item .label-item .label-inner {
        font-size: 13px;
        position: relative;
        height: 30px;
        width: 70px;
        border-radius: 8px 30px 30px 0;
        background-color: var(--background-main);
        padding: 10px 14px;
    }
    
    .products-item .label-item .label-inner::after {
        position: absolute;
        content: "";
        width: 3px;
        height: 15px;
        background: #8b0018;
        bottom: -5px;
        left: 0;
        z-index: -1;
        border-radius: 0 0 0 15px;
    }
    
    .products-item .label-item .label-inner .onsale {
        font-weight: 600;
    }
    
    .products-item .products-rating {
        display: flex;
        gap: 4px;
        align-items: center;
    }
    
    .products-item .products-rating .total {
        font-size: 12.6px;
        color: var(--text-color);
    }
    
     :root {
        --category-bg-1: #8f6161;
        --category-bg-2: #d02e41;
        --category-bg-3: #d9549d;
        --category-bg-4: #9683e3;
        --category-bg-5: #5c72de;
        --category-bg-6: #186ccb;
        --category-bg-7: #138256;
        --category-bg-8: #fcd34d;
        --category-bg-9: #fdba74;
        --category-bg-10: #5e6167;
        --category-bg-11: #3e3f41;
        --category-bg-12: #202123;
        --category-bg-13: #573a62;
        --category-bg-14: #610f12;
        --category-bg-15: #514e20;
        --category-bg-16: #0d1933;
        --category-bg-17: #1750c1;
        --category-bg-18: #572d52;
        --box-shadow-item: rgb(60 64 67 / 10%) 0 1px 2px 0, rgb(60 64 67 / 15%) 0 2px 6px 2px;
    }
    
    @media screen and (max-width: 575px) {
        [class^="vuta-col-"] {
            padding: 0 10px;
        }
    }
    
    .header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu a {
        font-size: 13px;
    }
    
    .category-list {
        display: flex;
        align-items: center;
        overflow-x: scroll;
    }
    
    .category-item {
        flex: 0 0 auto;
        min-width: 80px;
        padding: 0 5px;
    }
    
    @media (max-width: 768px) {
        .category-item {
            min-width: 100px;
            width: auto;
        }
    }
    
    @media (max-width: 576px) {
        .category-item {
            min-width: 90px;
            width: auto;
        }
    }
    
    .category-item:nth-child(1) .icon-box .icon-inner {
        background: var(--category-bg-1);
    }
    
    .category-item:nth-child(2) .icon-box .icon-inner {
        background: var(--category-bg-2);
    }
    
    .category-item:nth-child(3) .icon-box .icon-inner {
        background: var(--category-bg-3);
    }
    
    .category-item:nth-child(4) .icon-box .icon-inner {
        background: var(--category-bg-4);
    }
    
    .category-item:nth-child(5) .icon-box .icon-inner {
        background: var(--category-bg-5);
    }
    
    .category-item:nth-child(6) .icon-box .icon-inner {
        background: var(--category-bg-6);
    }
    
    .category-item:nth-child(7) .icon-box .icon-inner {
        background: var(--category-bg-7);
    }
    
    .category-item:nth-child(8) .icon-box .icon-inner {
        background: var(--category-bg-8);
    }
    
    .category-item:nth-child(9) .icon-box .icon-inner {
        background: var(--category-bg-9);
    }
    
    .category-item:nth-child(10) .icon-box .icon-inner {
        background: var(--category-bg-10);
    }
    
    .category-item:nth-child(11) .icon-box .icon-inner {
        background: var(--category-bg-11);
    }
    
    .category-item:nth-child(12) .icon-box .icon-inner {
        background: var(--category-bg-12);
    }
    
    .category-item:nth-child(13) .icon-box .icon-inner {
        background: var(--category-bg-13);
    }
    
    .category-item:nth-child(14) .icon-box .icon-inner {
        background: var(--category-bg-14);
    }
    
    .category-item:nth-child(15) .icon-box .icon-inner {
        background: var(--category-bg-15);
    }
    
    .category-item:nth-child(16) .icon-box .icon-inner {
        background: var(--category-bg-16);
    }
    
    .category-item:nth-child(17) .icon-box .icon-inner {
        background: var(--category-bg-17);
    }
    
    .category-item:nth-child(18) .icon-box .icon-inner {
        background: var(--category-bg-18);
    }
    
    .category-item .icon-box .icon-box-text {
        position: absolute;
        top: 10px;
        width: 95px;
        left: 12px;
        color: #fff;
        text-align: left;
        font-weight: 700;
    }
    
    .category-item .icon-box .icon-box-text p {
        font-size: 13px;
    }
    
    .category-item .icon-box .icon-box-img {
        aspect-ratio: 1/1;
        height: 110px;
    }
    
    .category-item .icon-box .icon-box-img img {
        object-fit: cover;
        height: 100%;
    }
    
    .category-item .icon-inner {
        border-radius: 0.5rem;
        -webkit-box-shadow: var(--box-shadow-item);
        overflow: hidden;
        height: 120px;
        box-shadow: var(--box-shadow-item);
    }
    
    .category-item .plain {
        text-align: center;
        padding: 0 5px;
        width: 10%;
    }
    
    .icon-box {
        position: relative;
    }
    
    .icon-box .icon-box-img {
        border-radius: 5px;
    }
    
    .icon-box .icon-box-img img {
        padding-top: 0;
        width: 100%;
        object-fit: contain;
    }
    
    .gallery {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .gallery a {
        width: calc(20% - 8px);
    }
    
    .products-content {
        line-height: 2;
    }
    
    .aside-products {
        position: sticky;
        top: 55px;
    }
    
    .activities .box-title h2 {
        margin-bottom: 20px;
        text-align: center;
        font-family: "icoibco" !important;
        font-size: 28px;
        justify-content: center;
    }
    
    .activities .gallery .box-img {
        aspect-ratio: 1/1;
        overflow: hidden;
    }
    
    .activities .gallery .box-img img {
        transition: all ease 0.4s;
    }
    
    .activities .gallery .box-img:hover img {
        transform: scale(1.1);
    }
    
    .home-service {
        padding: 40px 0 0;
    }
    
    .products-sale {
        padding-top: 30px;
        margin-bottom: 0px;
    }
    
    .home-service .service-item {
        border-radius: 15px;
        box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        overflow: hidden;
        transition: all ease 0.4s;
    }
    
    .home-service .service-item .box-content {
        text-align: center;
        background: #fff;
        padding: 10px;
        transition: all ease 0.4s;
    }
    
    .home-service .service-item:hover {
        box-shadow: 0 2px 12px 0 rgb(0 0 0 / 30%);
    }
    
    .home-service .service-item:hover .box-content {
        background: var(--cl-primary);
    }
    
    .home-service .service-item .box-content h4 a {
        color: #000;
    }
    
    .home-service .service-item .head-service {
        padding: 20px;
        position: relative;
        text-align: center;
        background: var(--cl-primary);
        transition: all ease 0.4s;
    }
    
    .home-service .service-item:hover .head-service {
        background: var(--cl-primary);
    }
    
    .home-service .service-item .head-service a {
        position: absolute;
        inset: 0;
        z-index: 2;
    }
    
    .home-service .service-item .head-service h4 {
        font-size: 18px;
        color: #fff;
        line-height: 1.5;
        transition: all ease 0.4s;
    }
    
    .home-service .service-item:hover .head-service h4 {
        color: #000;
    }
    
    .home-service .service-item .icon {
        text-align: center;
        height: 90px;
        display: flex;
        width: 90px;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 50%;
        background: #fff;
    }
    
    .home-service .service-item .content {
        padding: 20px;
    }
    
    .home-service .service-item .content ul li {
        margin-bottom: 10px;
    }
    
    .home-service .service-item .icon svg {
        height: 50px !important;
        width: 50px !important;
    }
    
    .home-service .box-content p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .home-service .box-title {
        padding-top: 20px;
        border-top: 2px solid var(--cl-primary);
    }
    
    .fixed-top {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
    }
    
    .slick-track {
        margin-left: 0;
    }
    
    .feedback-slider {
        padding: 40px 0 20px;
    }
    
    .feedback-slider .item {
        padding: 10px;
    }
    
    .feedback-slider .feedback-item {
        text-align: center;
        max-width: 767px;
        border-radius: 15px;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0 2px 12px 0 rgb(0 0 0 / 30%);
    }
    
    .feedback-slider .feedback-item .avatar {
        height: 90px;
        width: 90px;
        margin: 0 auto;
        margin-bottom: 20px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .feedback-slider .feedback-item .avatar img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .box-info-products .products-detail-price .short-desc {
        color: #000;
        line-height: 2;
    }
    
    .blog .seemore {
        text-align: center;
        margin-top: 20px;
    }
    
    .mobile-logo img {
        height: 60px;
        margin: 0 auto;
    }
    
    .mobile-logo {
        text-align: center;
        margin-bottom: 40px;
    }
    
    #mobile-btn span {
        background: var(--cl-primary);
        margin-bottom: 5px;
    }
    
    #mobile-btn span:last-child {
        margin-bottom: 0;
    }
    
    .products-item .box-content .price {
        height: auto;
        margin: 0;
    }
    
    .box-blog-detail h1 {
        font-size: 26px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .box-blog-detail .table-of-contents {
        margin-top: 15px;
    }
    
    .breadcrumb ul li:last-child a {
        color: var(--cl-primary);
    }
    
    .vuta-container .box-blog-detail .box-detail-content a {
        color: var(--cl-primary);
    }
    
    .tabs {
        max-height: 606px;
        padding-left: 20px;
        overflow-y: scroll;
    }
    
    @media (max-width:767px) {
        .gallery a {
            width: calc(50% - 8px);
        }
        .gallery {
            justify-content: center;
        }
    }
    
    @media (max-width:996px) {
        .activities {
            padding: 20px 0 0;
        }
        .box-blog-detail h1 {
            font-size: 24px;
        }
        .activities .box-title h2 {
            font-size: 18px;
            text-transform: uppercase;
        }
        .breadcrumb ul li::before {
            right: -10px;
            font-size: 11px;
            top: 6px;
        }
    }
    
    .home-blog .box-title h2 {
        font-size: 18px !important;
    }
    
    .home-blog .box-btn {
        display: flex;
        justify-content: center;
    }
    
    .about {
        padding: 60px 0 40px;
    }
    
    .about .box-title h2 {
        font-family: "icoibco" !important;
        font-size: 36px;
    }
    
    .about .box-title h2 span {
        font-family: var(--font-family) !important;
        font-weight: 500;
    }
    
    .about .about-item {
        margin-bottom: 40px;
    }
    
    .about .about-item .gallery {
        margin-top: 40px;
    }
    
    .about .about-item .gallery {
        gap: 0;
        border: 2px solid #000;
    }
    
    .about .about-item .gallery a {
        margin-bottom: 0;
        overflow: hidden;
    }
    
    .about .about-item .gallery img {
        transition: all ease 0.4s;
    }
    
    .about .about-item .gallery a:hover img {
        transform: scale(1.05);
    }
    
    .about .about-item .gallery a {
        width: calc(25%);
        border: 2px solid #000;
    }
    
    .about .about-item:nth-child(odd) [class^="vuta-col-"]:nth-child(1) {
        order: 2;
    }
    
    .about .about-item:nth-child(odd) [class^="vuta-col-"]:nth-child(2) {
        order: 1;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .map .tabs .map-info-item {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        line-height: 1.375;
        margin-bottom: 20px;
        position: relative;
        background: #f9f9f9
    }
    
    .map .tabs .map-info-item .title img {
        width: 40px;
    }
    
    .map .tabs .map-info-item .title {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .footer .list-info li i {
        line-height: 1.5;
    }
    
    .footer .list-info li i svg {
        line-height: 1.5;
    }
    
    .blog-home-item .box-img {
        aspect-ratio: 3/2;
    }
    
    .blog-home-item .box-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .box-newscenter .blog-home-item:first-child .box-img {
        aspect-ratio: 4/3;
    }
    
    .aside-blog-item .box-img {
        aspect-ratio: 16/9;
    }
    
    .aside-blog-item .box-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .home-blog .box-btn a i {
        position: absolute;
        right: 10px;
    }
    
    .map .tabs .map-info-item .title h4 {
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: 18px;
        color: #d02e41;
    }
    
    .map .tabs .map-info-item .title {
        margin-bottom: 10px;
    }
    
    .map .tabs .map-info-item .title a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 14px;
        padding: 0 10px;
        height: 30px;
        background: var(--cl-primary);
        border-radius: 6px;
        color: #fff;
    }
    
    .map .tabs .map-info-item ul {
        margin: 0 0 5px;
        margin-left: 0px;
        margin-left: 0px;
        padding: 0;
        list-style: none;
        position: relative;
        margin-left: -25px;
    }
    
    .map .tabs .map-info-item ul::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 24px;
        height: 100%;
        background: #98999A;
        border-radius: 5px
    }
    
    .map .tabs .map-info-item ul li i {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 24px;
        height: 30px;
        background: #98999A;
        border-radius: 5px;
        color: #fff;
        margin-right: 5px;
        font-size: 14px;
        position: absolute;
        left: 0px;
        top: -6px;
    }
    
    .map .tabs .tab .map-info-item ul li {
        margin-bottom: 5px;
        position: relative;
        padding-left: 33px;
        text-align: left;
    }
    
    .map {
        padding: 40px 0 20px;
    }
    
    .header .header-bottom .header-menu .navbar>ul .dropdown .sub-menu {
        flex-direction: row;
    }
    
    .map .box-title h2 {
        text-align: center;
        font-family: "icoibco" !important;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .map .tabs .tab {
        width: 100%;
        cursor: pointer;
    }
    
    .map .tabs .tab .map-info-item ul li a {
        color: #000;
    }
    
    .map .tabs .tab.active .map-info-item {
        border: 1px solid var(--cl-primary);
        background: #fff;
    }
    
    .underline {
        padding-bottom: 3px;
    }
    
    .box-info-products .detail-guaranteed {
        position: relative;
        padding-left: 20px;
        line-height: 1.25;
    }
    
    .products-flex-item .box-img {
        aspect-ratio: 1/1;
    }
    
    .products-flex-item .box-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .header .header-bottom.fixed-top {
        box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    }
    
    .products-item .box-img img {
        height: 100%;
    }
    
    .service .main-img {
        max-width: 767px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    
    blockquote {
        border-left: 3px solid var(--cl-primary);
        -webkit-box-shadow: 0 5px 10px rgb(234, 232, 102, 0.84);
        box-shadow: 0 5px 10px rgb(234, 232, 102, 0.84);
        border-radius: 10px;
        overflow: hidden;
        font-style: italic;
        max-width: 767px;
        margin: 0 auto;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    
    .service .box-title h2 {
        text-align: center;
        justify-content: center;
    }
    
    .service .wrap-img {
        display: flex;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .service h3 {
        margin-bottom: 15px;
    }
    
    .service .box-content ul li {
        margin-bottom: 10px;
    }
    
    .service .service-item {
        margin-bottom: 30px;
    }
    
    .service .service-item video {
        max-height: 500px !important;
    }
    
    .service .service-item .box-content {
        padding-top: 10px;
    }
    
    .service .service-item:nth-child(even) [class^="vuta-col-"]:first-child {
        order: 2;
    }
    
    .service .service-item:nth-child(even) [class^="vuta-col-"]:last-child {
        order: 1;
    }
    
    .service .service-item .min-wraper {
        max-width: 996px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    
    .service .service-item .min-wraper h3 {
        font-size: 28px;
        text-align: center;
    }
    
    .service .service-item .min-wraper .gallery a {
        width: calc(25%);
        border: 2px solid #000;
        overflow: hidden;
    }
    
    .service .service-item .gallery img {
        transition: all ease 0.4s;
    }
    
    .blog-item .box-img {
        aspect-ratio: 3/2;
        overflow: unset;
    }
    
    .blog-item .box-img img {
        height: 100%;
        object-fit: cover;
    }
    
    .popup .popup-content .form-regist .policy input {
        position: inherit;
    }
    
    .filter-order .filter-order-content .list-filter li a {
        border-radius: 6px;
    }
    
    .box-cata-log li a::before {
        top: 9px;
    }
    
    .service .service-item .gallery a:hover img {
        transform: scale(1.05);
    }
    
    .service .service-item .gallery {
        gap: 0;
        border: 2px solid #000;
    }
    
    .service {
        padding: 40px 0 20px;
    }
    
    .service .box-title {
        margin-bottom: 40px;
    }
    
    .service .box-btn a {
        position: relative;
    }
    
    .cart-page .product-cart-size-bg {
        display: none;
    }
    
    .product-cart-right-box .product-cart-list ul img {
        aspect-ratio: 1/1;
    }
    
    @media (max-width:996px) {
        .service .box-btn {
            justify-content: center;
            display: flex;
        }
        .service .box-title h1 {
            font-size: 24px;
        }
        .service .box-title {
            margin-bottom: 20px;
        }
        .service .service-item .min-wraper h3 {
            font-size: 24px;
        }
        .category-item .icon-box .icon-box-text {
            width: 80px;
        }
        .home-service .box-title h2,
        .promotion .box-title h2 {
            font-family: var(--font-family) !important;
        }
    }
    
    @media screen and (max-width: 600px) {
        .service-item .table table tbody:first-child {
            display: none;
        }
    }
    
    .service .box-btn a i {
        position: absolute;
        top: 5px;
        right: 10px;
        display: none;
    }
    
    .table table th,
    .table table td {
        text-align: center;
    }
    
    .table table th:first-child,
    .table table td:first-child {
        text-align: left;
    }
    
    .table table th:last-child,
    .table table td:last-child {
        text-align: right;
    }
    
    .mobile-cart {
        align-items: center;
        justify-content: center;
        background: var(--cl-text);
        border-radius: 50%;
        width: 40px;
        position: fixed;
        right: 25px;
        bottom: 330px;
        height: 40px;
    }
    
    .cart-page .table table img {
        width: 90px !important;
        height: 90px !important;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
    
    .cart-page .table table h3 a {
        color: var(--cl-secondary);
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .cart-page .table table h3 {
        margin-bottom: 10px;
        white-space: normal;
        word-wrap: break-word
    }
    
    .cart-page .table table .remove_cart {
        display: inline-flex;
        height: 25px;
        border-radius: 4px;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        background: red;
        color: #fff;
    }
    
    .cart-page .table table td:nth-child(2) {
        text-align: left;
    }
    
    .cart-page .table table td:nth-child(3) {
        font-weight: 700;
    }
    
    .cart-page .table table td:nth-child(5) {
        font-weight: 700;
        color: red;
    }
    
    @media (max-width:600px) {
        .table table th,
        .table table td {
            text-align: right !important;
        }
    }
    
    @media (max-width:996px) {
        .service .service-item:nth-child(even) [class^="vuta-col-"]:first-child {
            order: 1;
        }
        .service .service-item:nth-child(even) [class^="vuta-col-"]:last-child {
            order: 2;
        }
        .home-service .service-item .box-content h4 a {
            font-size: 16px;
        }
        .products-item .products-rating .total {
            font-size: 11px;
            color: var(--text-color);
        }
        .map {
            border-top: 1px solid var(--cl-text-4);
        }
    }
    
    .product-cart-right-box .product-cart-left-name a {
        color: red;
        font-weight: 500;
    }
    
    .product-cart-right-box .product-cart-list ul {
        margin-bottom: 10px;
    }
    
    .activities .gallery .box-img {
        aspect-ratio: 1/1;
        border-radius: 6px;
    }
    
    .activities .gallery .box-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 6px;
    }
    
    .activities .gallery a {
        box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    }
    
    .about-bg .about-item {
        border-radius: 10px;
    }
    
    .primary-btn {
        border-radius: 6px;
    }
    
    @media (max-width:996px) {
        .activities .gallery a,
        .about .about-item .gallery a {
            width: calc(50% - 8px);
        }
        .about .about-item .gallery {
            margin-top: 0;
        }
    }
    
    .products-item .box-img img {
        height: 100%;
        border-radius: 6px;
    }
    
    .header-logo a img {
        height: 60px;
    }
    
    .header .header-top .vuta-container .search-mobile {
        display: none;
    }
    
    .header .header-top .vuta-container .search-mobile svg g {
        fill: var(--cl-primary);
    }
    
    .box-newscenter {
        display: grid;
        grid-template-columns: 65% 35%;
        gap: 10px;
    }
    
    .box-newscenter .blog-home-item:first-child {
        grid-column: 1/span 1;
        grid-row: 1/span 2;
    }
    
    .popup-search {
        position: fixed;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 99999;
        background: rgba(0, 0, 0, 0.9);
        top: 0;
        transition: transform 0.7s ease;
        display: none;
    }
    
    .popup-search .popup-content {
        position: absolute;
        z-index: 9999;
        width: 100%;
        height: 100%;
        max-width: calc(100% - 20px);
        text-align: center;
        position: relative;
        display: flex;
        width: 100%;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }
    
    .popup-search .popup-content form {
        width: 100%;
        position: relative;
    }
    
    .popup-search .popup-content form button {
        position: absolute;
        background: var(--cl-primary);
        right: 0;
        top: 0;
    }
    
    .popup-search .popup-content form .vuta-input {
        height: 41px;
    }
    
    .popup-search .close-btn {
        position: absolute;
        color: #fff;
        right: 30px;
        font-weight: 700;
        padding: 0px 8px;
        border-radius: 50%;
        border: 2px #fff solid;
        top: 15px;
        font-size: 15px;
        cursor: pointer;
    }
    
    .popup-search .form-search {
        top: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        max-width: 600px;
    }
    
    .popup-search .form-search input {
        background: #fff;
        border: none;
        outline: none;
        height: 60px;
        line-height: 30px;
        font-size: 16px;
        color: #272727;
        padding: 15px 30px;
        width: 100%;
    }
    
    .popup-search .form-search button {
        position: absolute;
        background: #000;
        border: none;
        height: 60px;
        width: 60px;
        color: #fff;
        top: 50%;
        transform: translateY(-50%);
        transition: all ease 0.4s;
    }
    
    .popup-search .form-search button:hover {
        opacity: 0.8;
    }
    
    .home-blog .box-btn {
        margin-top: 20px;
    }
    
    .service .box-title h1 {
        text-align: center;
    }
    
    .service .wrap-img .box-img img {
        height: 100%;
    }
    
    .about .box-title h2 span {
        font-size: 24px;
    }
    
    .footer-bottom .footer-menu .list-menu-footer li a {
        color: var(--cl-text-2);
    }
    
    #button-contact-vr {
        position: fixed;
        bottom: 120px;
        z-index: 99999;
        right: 0;
    }
    /*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: zoom2 1.3s infinite;
        animation: zoom2 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 zoom2 {
        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 zoom2 {
        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;
    }
    
    #mess img {
        /* width: 35px; */
        border-radius: 50%;
        /* height: 32px; */
    }
    
    #mess .phone-vr-circle-fill,
    #zalo-vr .phone-vr-circle-fill {
        box-shadow: none;
        background-color: transparent;
    }
    
    #mess,
    #zalo-vr {
        text-align: center;
        margin-bottom: 20px;
    }
    
    #mess img,
    #zalo-vr img {
        height: 40px !important;
        width: 40px !important;
        box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    }
    
    #top-ads {
        width: 100%;
        max-height: 53px;
        height: 100%;
        overflow: hidden;
        transition: all ease 0.5s;
    }
    
    @media (max-width:1200px) {
        .header .header-top .vuta-container .header-search {
            display: none;
        }
        .header-logo a img {
            height: 40px;
        }
        .header .header-top .vuta-container .search-mobile {
            display: block;
        }
        .header-logo {
            order: 2;
        }
        .header-mobile {
            order: 1;
        }
        .search-mobile {
            order: 3;
        }
    }
    
    @media (max-width:996px) {
        .home-service {
            padding: 0;
        }
        .about {
            padding: 20px 0 0;
        }
        .about .box-title h2 {
            font-family: "icoibco" !important;
            font-size: 26px;
        }
        .map .tabs .map-info-item .title h4 {
            font-size: 16px;
        }
        .map .tabs .map-info-item .title h4 span {
            display: block;
        }
        .map .tabs .map-info-item .title a {
            margin-left: auto;
        }
        iframe {
            height: 200px !important;
        }
        .home-blog .box-title h2 span {
            font-family: "icoibco" !important;
        }
        .box-newscenter {
            display: flex;
            flex-wrap: wrap;
        }
        .box-newscenter .blog-home-item {
            width: calc(50% - 8px);
        }
        .box-newscenter .blog-home-item:first-child {
            width: 100%;
            margin-bottom: 0;
        }
        .about .about-item:nth-child(2n+1) [class^="vuta-col-"]:nth-child(1) {
            order: 1;
        }
        .about .about-item:nth-child(2n+1) [class^="vuta-col-"]:nth-child(2) {
            order: 2;
        }
        .category-list {
            justify-content: left;
        }
        .category-list .icon-box-img {
            width: 90px !important;
        }
        .home-cat {
            padding-top: 0px;
        }
        .home-service .service-item {
            height: 100%;
        }
        .products-sale {
            padding-top: 0;
        }
        .about-bg {
            margin-top: 20px;
        }
        .about-bg .box-content {
            font-size: 14px;
            margin-top: 8px;
            line-height: 1.3;
            margin-left: 0;
            width: 100%;
            padding: 0;
        }
        .home-blog {
            padding-top: 0;
        }
        .footer-bottom .footer-menu .list-menu-footer li {
            width: calc(50%);
            margin-bottom: 3px;
        }
        .footer-bottom .copyright p {
            font-size: 14px;
        }
    }
    
    .form-login .policy,
    .form-regist .policy {
        margin-bottom: 20px;
        padding-left: 20px;
        position: relative;
    }
    
    .form-login .policy label,
    .form-regist .policy label {
        cursor: pointer;
    }
    
    .form-login .policy label a,
    .form-regist .policy label a {
        font-weight: 500;
        color: var(--cl-primary);
    }
    
    .form-login .policy input,
    .form-regist .policy input {
        position: absolute;
        left: 0;
        top: 4px;
    }
    
    .form-login h2,
    .form-regist h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .form-login h2 img,
    .form-regist h2 img {
        width: 180px;
        margin: 0 auto;
    }
    
    .form-login .box-btn,
    .form-regist .box-btn {
        margin-bottom: 20px;
    }
    
    .form-login .box-btn button,
    .form-regist .box-btn button {
        width: 100%;
        border-radius: 30px;
    }
    
    .form-login .d-flex,
    .form-regist .d-flex {
        justify-content: space-between;
    }
    
    .form-login .d-flex a,
    .form-regist .d-flex a {
        color: var(--cl-text);
    }
    
    .form-login .d-flex a:hover,
    .form-regist .d-flex a:hover {
        color: var(--cl-text-2);
    }
    
    .form-login .gr-input,
    .form-regist .gr-input {
        position: relative;
    }
    
    .form-login .gr-input input,
    .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;
    }
    
    .form-login .gr-input input:focus,
    .form-regist .gr-input input:focus {
        box-shadow: 0.5px 0.866px 5px 0 rgba(179, 179, 179, 0.5);
    }
    
    .form-login .gr-input i,
    .form-regist .gr-input i {
        position: absolute;
        top: 12px;
        left: 15px;
    }
    
    .products-item .label-item .label-inner {
        background: var(--cl-primary);
        height: auto;
        padding: 5px 10px;
        width: auto;
    }
    
    blockquote {
        font-weight: 600;
    }
    
    .form-post h2 {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .aside-products .aside-item ul li {
        line-height: 1.5;
        font-size: 14px;
        margin-bottom: 15px;
        border-bottom: 1px dashed #ccc;
        padding-bottom: 15px;
    }
    
    .aside-products .aside-item ul li a {
        font-weight: 600;
    }
    
    .aside-products .aside-item h4 {
        border-bottom: 2px solid var(--cl-primary);
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    
    .gr-input label {
        display: block;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .header .header-bottom .header-menu .navbar>ul .dropdown .link>a {
        padding: 10px 12px;
    }
    
    .gr-input .vuta-input {
        height: 37px;
    }
    
    .header .header-bottom .header-menu .navbar>ul {
        gap: 0;
    }
    
    .form-login .gr-input i svg,
    .form-regist .gr-input i svg {
        height: 21px;
        width: 21px;
    }
    
    .form-login .gr-input i svg g,
    .form-regist .gr-input i svg g {
        fill: var(--cl-text);
    }
    
    #popup-rating .form-rating #fcode_iavim {
        height: 40px;
        margin: 0;
    }
    
    #popup-rating .form-rating .pull-left {
        margin: 0 !important;
    }
    
    #popup-rating .form-rating .form-group {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }
    
    #fanback .popup_content {
        width: 100% !important;
    }
    
    #fanback .popup_content h2 {
        text-align: center;
        margin-bottom: 10px;
    }
    
    #fanback .remove-borda {
        background: transparent;
    }
    
    #MorganAndMen {
        height: auto !important;
    }
    
    #TheBlogWidgets {
        background: url(/themes/vutashop/assets/images/fanclose-2.png) !important;
    }
    
    #button-contact-vr {
        z-index: 9;
    }
    
    .about-item:last-child .box-title {
        text-align: center;
    }
    
    .about-item:last-child .gallery-2 {
        display: flex;
        flex-wrap: wrap;
    }
    
    .about-item:last-child .gallery-2 a {
        width: calc(25%);
        overflow: hidden;
        border: 1px solid #f5f5f5;
    }
    
    .about-item:last-child .gallery-2 a img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: all ease 0.4s;
    }
    
    .about-item:last-child .gallery-2 a:hover img {
        transform: scale(1.1);
    }
    
    .about-item:last-child .gallery-2 a:nth-child(5),
    .about-item:last-child .gallery-2 a:nth-child(6),
    .about-item:last-child .gallery-2 a:nth-child(7) {
        width: calc(100%/3);
    }
    
    .products-rating{
        display:none !important;
    }