/* Hero Section CSS */
.hero {
  background: #eaf6f7;
  padding: 40px 0;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 24px;
  color: #1b1f23;
}

.hero h1 .highlight {
  color: #6da8ac;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #3d4852;
  text-align: justify;
}

.hero p strong {
  color: #1b1f23;
  font-weight: 700;
}

.hero p em {
  color: #6da8ac;
  font-style: italic;
  font-weight: 500;
}

/* Stats List */
.hero ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.hero ul li {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #6da8ac;
  box-shadow: 0 3px 12px rgba(109, 168, 172, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #3d4852;
}

.hero ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(109, 168, 172, 0.25);
}

.hero ul li strong {
  display: block;
  color: #6da8ac;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* CTA Section */
.cta {
  text-align: center;
  margin-top: 40px;
}

.cta br {
  display: block;
  margin: 8px 0;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 8px;
  min-width: 200px;
}

.btn-primary {
  background: #6da8ac;
  color: #fff;
  box-shadow: 0 4px 12px rgba(109, 168, 172, 0.3);
}

.btn-primary:hover {
  background: #5c9498;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(109, 168, 172, 0.4);
}

.btn-outline {
  border: 2px solid #6da8ac;
  color: #6da8ac;
  background: transparent;
}

.btn-outline:hover {
  background: #6da8ac;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 168, 172, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .hero ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .cta br {
    display: none;
  }
  
  .btn {
    margin: 0 12px;
  }
}

@media (max-width: 767px) {
  .hero ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .hero ul li {
    padding: 16px;
    min-height: auto;
  }
  
  .hero ul li strong {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 15px;
    text-align: left;
  }
  
  .hero ul {
    grid-template-columns: 1fr;
  }
  
  .btn {
    display: block;
    margin: 8px auto;
    max-width: 300px;
  }
  
  .cta br {
    display: none;
  }
}
/* WooCommerce Product Description Tab */
.woocommerce-Tabs-panel--description {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
}

/* Product Title and Headings */
.woocommerce-Tabs-panel h2 {
    font-size: 24px;
    color: #2c3e50;
    padding: 15px 0;
    margin: 30px 0 20px;
    border-bottom: 2px solid #f0f0f0;
    clear: both;
}

/* Main Product Description */
.woocommerce-Tabs-panel p {
  
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

/* Product Feature Lists */
.woocommerce-Tabs-panel ul {
    margin: 20px 0;
    padding-left: 20px;
}

.woocommerce-Tabs-panel ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

/* Product Feature Highlights */
.woocommerce-Tabs-panel ul li strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Product Specifications Table */
.woocommerce-Tabs-panel table {
    width: 100%;
    margin: 25px 0;
    border: 1px solid #e1e1e1;
    border-collapse: collapse;
}

.woocommerce-Tabs-panel table td {
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
}

/* Table Header Cells */
.woocommerce-Tabs-panel table td[style*="text-align: left"] strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Product Additional Information Tab */
.woocommerce-product-attributes {
    width: 100%;
    margin-top: 20px;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    padding: 15px;
    border: 1px solid #e1e1e1;
}

.woocommerce-product-attributes th {
    background: #f7f7f7;
    width: 25%;
    font-weight: 600;
}

.woocommerce-product-attributes td p {
    margin: 0;
}

/* Product Links */
.woocommerce-Tabs-panel a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce-Tabs-panel a:hover {
    color: #004c99;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .woocommerce-Tabs-panel {
        padding: 15px;
    }

    .woocommerce-Tabs-panel h2 {
        font-size: 20px;
    }

    .woocommerce-product-attributes th,
    .woocommerce-product-attributes td {
        padding: 10px;
    }
    
    .woocommerce-Tabs-panel table td {
        padding: 8px;
    }
}
.solution {
           display: flex
;
    align-items: flex-start;
    gap: 12px;
    background-color: #0c6468cc;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
        }
/* Blog Post Headers */
.homepage-title {
    display: none;
}
.blog-wrapper .entry-content h2 {
    color: #2F4858;
    font-size: 28px;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    font-weight: 600;
    line-height: 1.4;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.entry-header h1  {
    color: #2F4858;
    font-size: 28px;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    font-weight: 600;
    line-height: 1.4;
   
    text-align: center;
    margin-top: 25px;
}

.blog-wrapper .entry-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #6BB4AC;
}

/* Blog Content */
.blog-wrapper .entry-content p {
    color: #2F4858;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Blog Lists */
.blog-wrapper .entry-content ul,
.blog-wrapper .entry-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-wrapper .entry-content ul li,
.blog-wrapper .entry-content ol li {
    color: #2F4858;
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

.blog-wrapper .entry-content ul li::before {
    content: '•';
    color: #6BB4AC;
    position: absolute;
    left: -15px;
    font-size: 1.2em;
}

/* Blog Strong Text */
.blog-wrapper .entry-content strong,
.blog-wrapper .entry-content b {
    color: #2F4858;
    font-weight: 600;
}

/* Blog Tables */
.blog-wrapper .entry-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(47, 72, 88, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.blog-wrapper .entry-content table td,
.blog-wrapper .entry-content table th {
    padding: 15px;
    border: 1px solid #E5E7EB;
    line-height: 1.6;
}

.blog-wrapper .entry-content table tr:first-child {
    background: #6BB4AC;
    color: #FFFFFF;
    font-weight: 500;
}

.blog-wrapper .entry-content table tr:nth-child(even) {
    background: #F8FAFC;
}

/* Blog Links */
.blog-wrapper .entry-content a {
    color: #6BB4AC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-wrapper .entry-content a:hover {
    color: #5A9D96;
    text-decoration: underline;
}

/* Blog Images and Captions */
.blog-wrapper .entry-content .wp-caption {
    margin: 25px auto;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(47, 72, 88, 0.08);
}

.blog-wrapper .entry-content .wp-caption img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-wrapper .entry-content .wp-caption img:hover {
    transform: scale(1.02);
}

.blog-wrapper .entry-content .wp-caption-text {
    padding: 12px 15px;
    text-align: center;
    font-size: 0.9em;
    color: #637381;
    background: #F8FAFC;
}

/* Blog Meta */
.blog-wrapper .entry-meta {
    color: #637381;
	    text-transform: inherit;
}

.blog-wrapper .entry-category a {
    color: #6BB4AC;
    text-transform: uppercase;
    font-size: 0.85em;
    font-weight: 500;
}

.blog-wrapper .entry-category a:hover {
    color: #5A9D96;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .blog-wrapper .entry-header h1,
    .blog-wrapper .entry-content h2 {
        font-size: 24px;
    }
    
    .blog-wrapper .entry-content p {
        font-size: 15px;
    }

    .blog-wrapper .entry-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }

    .blog-wrapper .entry-content table td,
    .blog-wrapper .entry-content table th {
        padding: 12px;
        font-size: 15px;
        white-space: nowrap;
    }
}

.term-description h2 {
  font-size: 1.75rem;
  color: #1a1a1a;
  border-bottom: 2px solid #f0f0f0;
}

.term-description h2 strong {
  font-weight: 600;
}

.term-description p {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #444;
}

.term-description ul ,.term-description  ol {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  list-style-type: none;
}

.term-description ul li ,.term-description ol li {
  position: relative;
  padding-left: 1.5rem;
 
}

.term-description ul li::before ,.term-description ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background-color: #2c5282;
  border-radius: 50%;
}

.term-description ul li strong ,.term-description ol li strong{
  color: #2c5282;
  font-weight: 600;
}





.quicksearch_item_wrap .price-tooltip{display:none;}
.isures-cate--filter:not(.isures_type_image) .isures-item--attribute.active>a:after{left: 46px;}
#uu-tien .row-small>.col, #demote .row-small>.col{padding: 0 5.8px 19.6px;}
#uu-tien{border-radius:15px}
#uu-tien > div{margin-left: 0px; 
    margin-right: 0px;
    padding-top: 15px;}
.chat-lieu-home .col-inner{padding: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
}



.Blog-home {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
/*     background-color: var(--light-gray); */
    padding: 20px 0;
}

.Blog-home .col.post-item {
    padding: 10px;
}

.Blog-home .box {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.Blog-home .box:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.Blog-home .box-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.Blog-home .image-cover {
    padding-top: 66.67% !important;
}

.Blog-home .box-text {
    padding: 15px;
}

.Blog-home .post-title.is-large {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.Blog-home .post-title a {
    color: var(--main-color);
    text-decoration: none;
}

.Blog-home .post-title a:hover {
    color: var(--text-color);
}

.Blog-home .post-meta {
    font-size: 12px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    opacity: 0.8;
}

.Blog-home .from_the_blog_excerpt {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}
.has-hover:hover .tag-label{background-color:#06646d;}
.Blog-home .cat-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #47a9aa;
    margin-bottom: 5px;
    font-weight: bold;
    opacity: 0.7;
    padding: 6px;
    border-radius: 20px;
}

.Blog-home .is-divider {
    height: 2px;
    background-color: var(--main-color);
    margin: 10px auto;
    max-width: 150px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .Blog-home.large-columns-4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .Blog-home .col.post-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 549px) {
    .Blog-home .col.post-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .Blog-home .box {
        display: flex;
        flex-direction: row;
			background-color: #eff4f5;
    }

    .Blog-home .box-image {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .Blog-home .image-cover {
        padding-top: 100% !important;
    }

    .Blog-home .box-text {
        flex: 0 0 60%;
        max-width: 60%;
        padding: 10px;
    }

    .Blog-home .post-title.is-large {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .Blog-home .from_the_blog_excerpt {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .Blog-home .is-divider {
        display: none;
    }
}
.button.primary:not(.is-outline) ,.nav-dropdown.nav-dropdown-bold > li > a:hover ,.is-outline:hover{background-color: #5e9095;    border-color: #ffffff;} 
.is-outline {
    color: #fff;
}
/* CSS cho bài viết đơn Hướng dẫn */
.single-post.category-huong-dan .row-divided > .col+.col:not(.large-12) {
    border-left: 1px solid #ececec;
}

.huong-dan-sidebar {
    padding: 15px;
    background-color:#e8f4f5b8;
    border-radius: 5px;
    margin-bottom: 20px;
}

.huong-dan-sidebar .widget-title {
    font-size: 1.1em;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.huong-dan-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.huong-dan-sidebar ul li {
    margin-bottom: 10px;
}

.huong-dan-sidebar .post-date {
    font-size: 0.9em;
    color: #777;
}

.huong-dan-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.huong-dan-meta .post-meta {
    font-size: 0.9em;
    color: #777;
}

/* Đảm bảo responsive cho layout 2 sidebar */
@media screen and (max-width: 849px) {
    .single-post.category-huong-dan .row-three-columns {
        flex-wrap: wrap;
    }
    .single-post.category-huong-dan .row-three-columns > .col {
        max-width: 100%;
        flex-basis: 100%;
    }
    .single-post.category-huong-dan .content-area {
        order: 1;
    }
    .single-post.category-huong-dan .col-sidebar {
        order: 2;
    }
}
.left-thong-tin p{margin-bottom: 10px!important;}
.left-thong-tin i {color: #5a8f94;
    padding-right: 5px;}
.woocommerce-breadcrumb.breadcrumbs{    background-color: #eff4f5!important;
    padding-bottom: 10px;} 
.product-thumbnails a {
    background-color: #fff;
    border: 1px solid transparent;
    display: block;
    overflow: hidden;
	    border-radius: 8px;
    transform: translateY(0);
}
.anh-sp .col-inner{    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
}
.product-sp{    background-color: #5a8f941a;}
.thu-mua{display:none;}	.khoqua-style-container h2{color:#5a9c9e}

small > a.register-to-see-price,small > a.login-link{    color: #ff0c0c;}

.isures-cate--filter:not(.isures_type_image) .isures-item--attribute.active>a:after, .isures-filter--rating_inner .chosen a[data-key="rating_filter"]::after{    left: auto;}
.isures-cate--filter:not(.isures_type_image) .isures-item--attribute.active>a:after, .isures-filter--rating_inner .chosen a[data-key="rating_filter"]::after{    aleft: auto;}
.isures-cate--filter:not(.isures_type_image) .isures-item--attribute.active>a:after, .isures-filter--rating_inner .chosen a[data-key="rating_filter"]::after{    left: auto;}
.isures-cate--filter:not(.isures_type_image) .isures-item--attribute.active>a:after{    top: calc(50% - 25px / 2);}
.box-text-products{padding-left:5px;    text-align: left;}
.isures-before--loop{background-color: #ffffff;

    padding: 9px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s, color 0.3s;}
  

.quy-trinh-qt{background-color: #FFF;
    padding: 20px;
    padding-top: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;}
.product-type-simple > div{border: 1px solid rgb(235, 235, 240); border-radius: 8px;    background-color: #fff;}
.personalized-products-section{background-color: #fff;
    padding: 10px;
    padding-top: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;}
.header-bottom {
	  background-color: #5a8f94; padding: 10px 0; 
}
.button i, button i {
    top: -6.5px;
    color: #6ca6ab;
    vertical-align: middle;
}
.pc-menu__title {
		font-size: 26px!important;}.viewed1{font-size: 30px;
    background-color: #6da7ab;
    color: #fff;
    padding-left: 18px;}

.khoqua-style-container{
    display: flex;
    max-width: 1490px;
    margin-left: auto;
    margin-right: auto;
}
.left-column {
  width: 25%;
  position: sticky;
  top: 5px; /* Điều chỉnh theo chiều cao của header */
  height: calc(100vh - 0px);
  overflow-y: auto;
 

}
.right-column {
  width: 75%;

}
@media (max-width: 849px) {
  .khoqua-style-container{
    flex-direction: column;
  }
  .left-column, .right-column {
    width: 100%;
    height: auto;
    position: static;
    overflow-y: visible;
    padding: 0;
  }
}
.left-column::-webkit-scrollbar {
  width: 6px;
}
.left-column::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.2);
  border-radius: 3px;
}

.flickity-viewport{border-radius:10px;}
.flickity-slider > a{border-radius:5px;}
.b2b-my-orders, .b2b-order-products {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        .b2b-my-orders th, .b2b-my-orders td,
        .b2b-order-products th, .b2b-order-products td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        .b2b-my-orders th, .b2b-order-products th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .b2b-my-orders .button, .b2b-order-products .button {
            display: inline-block;
            padding: 5px 10px;
            background-color: #ebe9eb;
            color: #515151;
            text-decoration: none;
            border-radius: 3px;
        }
        .b2b-my-orders .button:hover, .b2b-order-products .button:hover {
            background-color: #dfdcde;
            color: #515151;
        }
        .b2b-my-orders td:nth-child(3) { /* Cột hàng hóa */
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        } .order-timeline {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        position: relative;
    }
    .order-timeline::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 0;
        right: 0;
        height: 4px;
        background-color: #ddd;
        z-index: 1;
    }
    .timeline-step {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }
    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #fff;
        border: 2px solid #ddd;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        font-size: 20px;
        color: #555;
        transition: all 0.3s ease;
    }
    .timeline-step.completed .step-icon {
        background-color: #4CAF50;
        border-color: #4CAF50;
        color: #fff;
    }
    .timeline-step.current .step-icon {
        background-color: #2196F3;
        border-color: #2196F3;
        color: #fff;
        transform: scale(1.2);
    }
   

    .timeline-step.completed .step-label,
    .timeline-step.current .step-label {
        font-weight: bold;
    }
.wishlist-group .large-columns-4>.col {
		flex-basis: 24%;}
:root {
        --primary-gradient: linear-gradient(135deg, #6da7ac, #40a9aa);
        --secondary-color: #2ecc71;
        --accent-color: #e74c3c;
        --text-color: #333;
        --light-bg: #f8f9fa;
    }
.support-section-container {
       
        margin: 0 auto;
        padding: 20px;
        background-color: var(--light-bg);
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .support-section-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        background: var(--primary-gradient);
        padding: 20px;
        border-radius: 8px;
        color: white;
    }

    .support-section-header h2 {
        font-size: 2.5em;
color:#fff;
        margin-bottom: 20px;
    }

    .support-section-header h2::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background-color: white;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .support-section-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .support-section-grid-item {
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .support-section-grid-item:hover {
        transform: translateY(-5px);
    }

    .support-section-grid-item i {
        font-size: 3em;
        color: var(--primary-gradient);
        margin-bottom: 15px;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .support-section-grid-item h3 {
        font-size: 1.5em;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .support-section-grid-item p {
        color: var(--text-color);
    }

    .support-section-button {
        display: inline-block;
        background-color: var(--primary-gradient);
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s, transform 0.3s;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 20px;
        text-align: center;
    }

    .support-section-button:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .support-section-container {
            padding: 10px;
        }
    .grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        .support-section-header h2 {
            font-size: 2em;
        }

        .support-section-grid-item {
            padding: 15px;
        }
    }



.Home-product .product-small.box{background-color: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;}

.Home-product .box-text-products{font-size: 18px;
    color: #333;
    text-align: center;
    margin: 10px 0;
    padding: 0 10px;}


.price-wrapper > span > span > small > a.register-to-see-price ,.price-wrapper > span > span > small > a.login-link{color:#920c0c;}

.remaining-products-message {
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff4500;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.remaining-products-message a {
    color: #4CAF50;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    margin-left: 5px;
}

.remaining-products-count {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 0 5px;
    font-size: 20px;
    animation: pulse 2s infinite;
}

.view-product-btn {
    background-color: #61a7ac;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

.view-product-btn a:hover {
    background-color: #61a7ac;
color:#fff;
}


.auth-buttons {
            display: flex;
            gap: 10px;
        }
        .auth-button {
           background-color: #ffffff;
    color: #5bbfba;
    border: none;
    padding: 11px 12px;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
        }
        .auth-button:hover {
            background-color: #f0f0f0;
        }
.off-canvas:not(.off-canvas-center) li.html {
    padding: 2px;
}
.col-inner ul li{margin-left:0px;!important}
.nav-center > li.active > a {
       background: #ffffff;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
}
.product-name{overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    font-weight: 700;
    /* margin-bottom: 10px; */
    height: 44px;
}
.form-group1{display:none;}

.active>ul.children, .active>ul.sub-menu:not(.nav-dropdown) {
    display: block!important;
    background: #40a9aa36;
    color: #fff;
}
.icon-angle-down:before {
    content: "";
    color: #000;
}
.doi-tuong{display:none;}
input[type=number]{box-shadow: none;}
.cato{width:200px;}
.gia-min {width:100px;}
.gia-max {width:100px;}
.filter-form p {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Cho phép nội dung xuống dòng */
}

/* Đối với lời chào */

.filter-form p {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
	    justify-content: center;
}

/* Cho các form */
.filter-form select,
.filter-form input[type="number"],
.filter-form input[type="submit"] {
    margin: 0;
    height: 45px;
    width: 200px;
	
    padding: 2px 5px;
    border: none; /* Xóa border */
    border-bottom: 1px dashed #000; /* Thêm border-bottom kiểu gạch đứt */
    outline: none; /* Xóa outline khi focus */
}

.filter-form input[type="number"]::placeholder {
    opacity: 0;
}

.filter-form input[type="number"]:placeholder-shown {
        width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-form input[type="number"]:focus::placeholder {
    opacity: 1;
    width: auto;
    overflow: visible;
}









.custom-google-sheet iframe {
    width: 100%;
    height: 500px; /* Bạn có thể thay đổi kích thước này */
}.box_type-template-default .content-area {max-width: 1100px;
    /* text-align: center; */
    margin-left: auto;
    margin-right: auto;}
.box_type-template-default  h2{text-align:center;}
.adnote{
    color: #de0404;
;}
.priority-button {
            background-color: #bfd4f2;
           color: #fff !important;
font-size:12px;
            padding: 3px 5px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .priority-button:hover {
            background-color: #ff7b7b;
		  color: #fff;
        }
.supplier-details p:nth-child(8){color:#e71717;}


.postbox .inside {
    padding: 0 12px 12px;
    line-height: 1.4;
	font-size: 16px;}

.text-long{font-size:12px;}
button[type="submit"]{border-radius: 12px;
    color: #FFF;}
.pdf-yeu-thich{border-radius: 12px;
    color: #FFF;
    background: #40a9aa !important;}
.show-quantity-form{font-size: 18px;
    background: #40a9aa;
    border: 1px;
    padding: 3px;
    border-radius: 8px;
    color: #fff;}
.success {
    background-color: #1d6e6e!important;
	    color: #fff;
}
#export_pdf_button{background: #649a9f;
    border-radius: 11px;
    color: #fff;}
.note-van-chuyen{font-size: 12px;
    font-style: italic;}

.total-price {font-size:15px; color:red;}


body.user-role-nhomtruong .nhom-truong {
    display: none;
}


.product-printing-type {
   width: 20%;
}
.thong-tin-in{margin-bottom: 0px;background-color: #e6f3f4;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;}
.thong-tin-in  td:nth-child(1){color: #000;    font-weight: 700;}
.combo-gift{float:left;
padding-left:12px;}

.typing-animation {
  display: inline-block;
  overflow: hidden;
  border-right: .15em solid orange; /* thay màu theo ý muốn */
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: typing 3.5s steps(30, end), blink .75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink {
  from, to {
    border-color: transparent
  }

  50% {
    border-color: orange;
  }
}



.wishlist-group-products {
    display: none;
}
#products-table {
    width: 100%;
    border-collapse: collapse;
}

#products-table th,
#products-table td {
    border: 1px solid #ccc;
    padding:
10px;
text-align: left;
}

#products-table th {
background-color: #f2f2f2;
font-weight: bold;
}

#products-table img {
max-width: 50px;
height: auto;
}

#products-table input[type="number"] {
width: 60px;
}

#products-table .sale-price {
font-weight: bold;
color: #c0392b;
}
/* Container của wishlist */
.wishlist-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Placeholder cho nhóm chưa có tên */
.group-name-placeholder {
    font-style: italic;
    color: #e74c3c;
}
/* Tiêu đề wishlist */
.wishlist-container h2, .group-name {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Nhóm sản phẩm */
.wishlist-group {
    margin-bottom: 30px;
}

/* Tiêu đề nhóm sản phẩm */
.wishlist-group .woocommerce-loop-category__title {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sản phẩm trong wishlist */
.wishlist-group .products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Mỗi sản phẩm */
.wishlist-group .product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.wishlist-group .product:hover {
    transform: translateY(-5px);
}

.wishlist-group .product .product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.wishlist-group .product .product-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.wishlist-group .product:hover .product-image img {
    transform: scale(1.1);
}

.wishlist-group .product .woocommerce-loop-product__title {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin: 10px 0;
    padding: 0 10px;
}

.wishlist-group .product .price {
    text-align: center;
    font-size: 16px;
    color: #888;
}

.wishlist-group .product .remove-from-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    color: #e74c3c;
    transition: background 0.3s ease, color 0.3s ease;
}

.wishlist-group .product .remove-from-wishlist:hover {
    background: #e74c3c;
    color: #fff;
}

/* Form đổi tên nhóm */
.rename-group-form {
    display: none;
    margin-top: 10px;
}

.rename-group-form input[type="text"] {
    width: calc(100% - 120px);
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.rename-group-form button.rename-group {
    padding: 5px 10px;
    border: none;
    background: #3498db;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rename-group-form button.rename-group:hover {
    background: #2980b9;
}

/* Nút chia sẻ danh sách */
.share-wishlist {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: #27ae60;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.share-wishlist:hover {
    background: #219150;
}

/* Nút xóa nhóm */
.remove-group {
    display: inline-block;
    margin-left: 20px;
    padding: 5px 10px;
    background: #e74c3c;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.remove-group:hover {
    background: #c0392b;
}
.image-tools {
	padding: 3px;}
.wishlist-form-container form {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.wishlist-form-container input[type="text"] {
  height: 30px;
  padding: 8px;

  border-radius: 5px;
  font-size: 13px;
  margin-right: 10px;
}

button.add-to-wishlist {
  height: 30px;
  padding: 0 1px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button.add-to-wishlist:hover {
  background-color: #3e8e41;
}

.copy-button {
/*     position: absolute; */
    top: 5px;
    right: 5px;
    background: #fff;
    color: #000;
    padding: 5px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button.clicked {
    background: #000;
    color: #fff;
}

.notice-info {
    display: none;
}
.products.columns-4 .product {
  display: inline-block;
  width: 24%;
  vertical-align: top;
  text-align: center;
  margin-bottom: 20px;
  margin-right: -4px; /* fix lỗi khoảng trắng giữa các sản phẩm */
}





.supplier-details{border: 1px solid #dbdbdb;
    padding: 10px;
    background: #f5f5f5bf;
    border-radius: 9px;}
.supplier-details p a{font-size: 110%;
    font-weight: 600;
    color: #659a9f;}
.supplier-details p{margin-bottom:5px;}
.product_info td{color:#000;}
.list-group-item{list-style:none;}
.thong-tin-ncc{margin-left: 10px;
    padding: 0px;
	width:930px
} 
.supplier-info{border: 1px solid #3faaaa6e;
    padding: 10px;
    background: #6ca7aa1c;
    border-radius: 10px;}
.options_group {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
    .form-field.supplier_field label {
        display: block;
        margin-bottom: 5px;
    }
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltipgia {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltipgia {
  visibility: visible;
}
/* Tooltip */
.woocommerce-Price-amount {
    position: relative;
}

.woocommerce-Price-amount:hover::after {
    content: attr(data-ngay-cap-nhat);
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    white-space: nowrap;
}

/* Updated days ago */
.updated-days-ago {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

.thu-mua-right {
    display: inline-block; /* hiển thị phần tử trên cùng một hàng */
    margin-left: 10px; /* tạo khoảng cách với phần tử bên trái */
    float: right; /* di chuyển phần tử sang phía bên phải */
}
._tax_status_field{display:none;
}
.form-group {
    display: flex;
    align-items: center;
}

.form-group label {
    margin-right: 10px;
	padding: 6px;
}

#selling-price {
    font-weight: bold;
}

.post-sidebar,.tai-lieu{
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 0 8px rgb(0 0 0 / 20%);
    padding: 13px 6px;
}
.upw-posts article{ padding-bottom: 0px;}
.tai-lieu .accordion-inner {
    padding: 2px 2px;
}
.accordion-title.active{color: #40a9aa;
	border-color: #40a9aa;
}
.tai-lieu li a {
    display: block;
    overflow: hidden;
    padding: 10px;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    background: #f3e5e5;
    border-radius: 4px;
    position: relative;
    padding-right: 20px;
}
#isures-recently--wrap .box{    border: 1px solid #e6e6e673;
    border-radius: 7px;
    padding: 3px;
    background: #f3f3f33d;}
div.relevanssi-live-search-results {left: 0px;
    width: 517.406px;}
/* .image-tools.top.right{
    right:unset;
    left:0;
    padding: 0;
}
.exc-custom{
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    padding:10px;
}
.exc-custom *{
    color:#fff!important;
} */
.title-custom {
    font-size: 15px;
    font-weight: bold;
}

.page-title-inner{display:none;}
#banner-quang-cao ul{  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;}
#banner-quang-cao .product-title,#banner-quang-cao .amount {display:none;}
#masthead{background-image: linear-gradient(to right, rgb(110 169 173), rgb(93 142 147));
}
.banner-ngang1 ,banner-ngang2{    padding: 0 15px 18px !important;}
.banner-2{margin-top:-100px;}
.banner-2 .col-inner,.banner-3 .col-inner
{background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 1px 4px rgb(10 10 10 / 15%);}
#mega-menu-title {
	padding: 10px 0 14px 15px;}
.banner-pc-header .col-inner {
    background: #fff;
    padding: 10px;
	border-radius:10px;
    box-shadow: 0px 1px 4px rgb(10 10 10 / 15%);
}
.dam-bao-1 .col-inner {
    background-color: rgb(255,255,255);
    box-shadow: 0px 1px 4px rgb(10 10 10 / 15%);
    border-radius: 12px;
    padding: 4px;
}
.dam-bao-1 span{    color: #014f9a;}
.image-cover img{padding:10px;
border-radius:20px;}
/* .col-inner{background:#fff;} */
.tip3 {
    background: #fdedef99;
    border: 0.5px dashed #4a90e2;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 10px 0 0 30px;
    margin: 0 5px 20px 0;
    position: relative;
}
.tip1{
     background-color: #f0f7fb;
     background-image: url(https://sangom.vn/wp-content/uploads/2021/09/css-box-icon-1.webp);
     background-position: 3px 0px;
     background-repeat: no-repeat;
     border-left: solid 4px #3498db;
     line-height: 24px;
     overflow: hidden;
     padding: 6px 7px 11px 48px;
}
.tip {
    background: #f1f7ff;
    border: .5px dashed #4a90e2;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 10px 10px 0 15px;
    margin: 0 5px 20px 0;
    position: relative;
}
.box-common__title {
    float: left;
    width: 60%;
    border-bottom: 1px solid #a0c4c5;
    padding-bottom: 8px;
}
.xem-them {
    float: right;
    width: 28%;
    text-align: right;
    margin-right: 12px;
}
.so1{font-family: "Oswald", sans-serif;
    color: rgba(211, 211, 211, 0.4);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
	   padding-right: 3px;
    line-height: 1.2;}
.namduong_header_right {
    float: left;
}
.nd_menu_header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nd_menu_header ul li {
    float: left;
    list-style: none;
}
.menu-item a.menu-image-title-below {
    text-align: center;
    display: block;
}
.nd_menu_header ul li a {
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    display: block;
    padding: 9px 15px;
    transition: all 0.25s ease-in-out 0s;
}
.menu-image-title-below.menu-image-not-hovered > img, .menu-image-hovered.menu-image-title-below .menu-image-hover-wrapper, .menu-image-title-below .menu-image-hover-wrapper {
    display: block;
    padding-bottom: 0px;
    margin: 0 auto !important;
}
span.menu-image-hover-wrapper img {
    height: 45px;
    width: auto;
}
.header-main .flex-right ul.header-nav.header-nav-main.nav.nav-right.nav-uppercase > li > a {
    padding: 10px 15px;
    font-size: 15px;
    color: #fff;
}

#table_filter{display:none;}
.banenrpc .row-full-width {
    margin-left:1px;
}
.nav-dropdown-has-border .nav-dropdown {
    border: none;
}
.nav-dropdown-default {
    padding: 0px;
}
.nav-dropdown>li>a{color:#000;}
.nav-dropdown{min-width: 300px;}
/* .row.row-large{max-width:1280px!important;} */
.variations .label{display:none;}
.type__categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
/*     border: 1px solid #dadbd9; */
    border-radius: 4px;
    margin-bottom: 20px;
}
.type__category {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 12px 0 0;
    border: 0 solid #dadbd9;
    box-sizing: border-box;
    text-align: center;
    background: 0 0;
}
.type__category .category__image {
    align-self: auto;
    margin: 0;
}

.type__category .category__image:hover{opacity: 0.3;}
.type__category:nth-child(odd) {
    border-right-width: 1px;
    margin: 0;
}
.type__category {
    border-bottom-width: 1px;
}
.iconyoutube{
    margin-left: 93px;
    margin-top: 10px;
}
.product-short-description .tooltip {
    margin-left: 10px;   
}
#sp-lien-quan .price{
    display: block;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;  
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;}
/* .related-products-wrapper .price-wrapper{display: -webkit-box;} */
/* .related-products-wrapper .price-wrapper  span{font-size:12px;} */
.accordion-title:active .entry-content{background:#999;}
.entry-content .wpcf7-form-control-wrap {
    position: unset!important;
}
.tai-ve a{display: flex;
    justify-content: flex-end;}
.tai-ve img{max-width: 150px;
    padding-bottom: 10px;}
.product-bbd a{font-size: 15px;
    border-bottom: 1px dotted;
    color: #009df9;}
.product-bbd a img	{width:45px;}

.steps {
    background-color: #cc836f;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    margin-right: 5px;
}
.tip1{
     background-color: #f0f7fb;
     background-image: url(https://khoqua.vn/wp-content/uploads/2021/09/css-box-icon-1.webp);
     background-position: 9px 0px;
     background-repeat: no-repeat;
     border-left: solid 4px #3498db;
     line-height: 18px;
     overflow: hidden;
     padding: 15px 60px;
}
.tip {
    background: #f1f7ff;
    border: .5px dashed #4a90e2;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 10px 0 0 30px;
    margin: 0 5px 20px 0;
    position: relative;
}
.qua-tang-dn-left{
background: #fff;
    border-radius: 9px;
    box-shadow: 0 0 8px rgb(0 0 0 / 20%);
    padding: 13px 6px;}
.pt-title .t{
    font-size: 18px;
    font-weight: bold;
    color: red;
}

.binh-hoa img {
    filter: grayscale(82%) opacity(43%);
	padding: 4px;
}
.binh-hoa a{min-width:50px!important;}
.wpcf7 span.wpcf7-list-item{float:left;}
.aa-dropdown-menu .autocomplete-header-title,
.aa-dropdown-menu .autocomplete-header-more
{
	letter-spacing: 1px;
	text-transform: none!important;

    font-size: 13px;
    color: #666;
}
#customer_details{padding: 0!important; 
	border:none!important;
    }
.tax-product_tag .woocommerce-breadcrumb {display:none;}
.showcoupon{color:#3e9fe9;}
.woocommerce-checkout3  .woocommerce-checkout-payment, .woocommerce-checkout3 .order-total,#order_review > table > tbody,.woocommerce-checkout3 tbody,.sg-checkout thead ,.sg-cart .woocommerce-info{display:none;}

.sg{
	max-width: 600px;
	background: #fff;
    box-shadow: 0px 0px 18px rgb(0 0 0 / 12%);
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
}
.tax-product_cat .banner-qc p {height:1px;}
.print-logo .accordion-inner {
    padding: 0px!important;
}
.widget_shopping_cart ul.product_list_widget li {
    padding-right: 30px;
}
ul.product_list_widget li {
    list-style: none;
    padding: 10px 0 5px 75px;
    min-height: 80px;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    line-height: 1.33;
	font-size:13px;
}
.wc-forward{width:100%;}
ul.product_list_widget li a.remove {
    position: absolute;
    right: 0px;
    z-index: 9;
}
a.remove, a.icon-remove {
    display: block;
    width: 100px;
    font-size: 15px !important;
    border: none; 
}
.form-row.place-order button#place_order {
    background: linear-gradient(
180deg
, #F79429 0%, #F7712E 100%) !important;
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 5px;
    max-width: 250px;
    font-weight: 400;
    border: 0;
    float: none;
    display: block;
}
ul.product_list_widget li a:not(.remove) {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    line-height: 1.3;
}
ul.product_list_widget li img {
    top: 10px;
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}
/* end minicart */
.stickyback {
    bottom: 67px;
    position: fixed;
    left: 10px;
    z-index: 111;
    border: 1px solid #f9800e;
    display: block;
    background: #fff;
    font-size: 12px;
    border-radius: 6px;
    width: auto;
    height: auto;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    font-family: Arial;
    padding: 0 5px;
    box-shadow: 0 4px 7px 0 rgb(0 0 0 / 20%), 0 2px 22px 0 rgb(0 0 0 / 19%);
}
.quay-ve{background: #fd6e1d;
    color: #fff;
    padding: 3px;
    cursor: pointer;
    border-radius: 4px;
}
.quay-ve:hover {
    background-color: #dfdcde;
    text-decoration: none;
    background-image: none;
    color: #515151;
}
.page-title-inner {
    min-height: 0!important;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color:#23263b;
  color: #fff;
	font-size:12px;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  margin-left: -142px;
}
.tooltip .tooltiptext a{color:#fff; }
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 55%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #23263b transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.am-chen-pd {
    background: #e8c9a447;
    border: 1px dotted #bdc3c7;
    margin: 0px 0px 10px 0px;
    padding: 15px;
    border-radius: 5px;
}
.am-chen-pd .wpcf7-submit {border-radius: 20px;}
.product-short-description li{margin-bottom:0px!important;
    font-size: 90%;}
.slider3d-class img{margin-top: 300px;
    margin-left: 200px;}
.kmsg p{ margin-left: 25px;} 
.kmsg p:before {
    content: "";
    background-image: url(https://khoqua.vn/wp-content/uploads/2021/08/pulse.gif);
    width: 25px;
    height: 25px;
    background-size: contain;
    position: absolute;
    left: 0;
	margin-top: 5px;
	
}
#theh1 {
display: none;
}
.binh-phong-thuy img {
    filter: grayscale(82%) opacity(43%)!important;
}
.binh-phong-thuy a:hover img {
    filter: none !important;
}
.flash-sale-process-isures{
    width: 100%;
    height: 16px;
    background: url(https://khoqua.vn/wp-content/uploads/2021/05/sale-2.png) 0 100% no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 8px;
    margin: 5px 0;
}
.flash-sale-process_bought{
    background: #002bff73;
    overflow: hidden;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    height: 16px;
    border-radius: 8px;
}
.flash-sale-process_fire{
    background: url(https://khoqua.vn/wp-content/uploads/2021/05/sale-1.png) 0 no-repeat;
    width: 18px;
    height: 21px;
    background-size: contain;
    position: absolute;
    left: 3px;
    top: -6px;
}
.flash-sale-process-bar_text.stock{
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}
.flash-sale-complete-wapper{
    width: 100%;
    background: transparent;
    overflow: hidden;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    height: 16px;
    border-radius: 8px;
}
.flash-sale-bought-size{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffbda6;
}
.flash-sale-sizer-stock{
    background: #fff;
    float: right;
    position: relative;
    height: 18px;
}
.bottom-img a{
    color: #fff!important;
}
.bottom-img {
    position: relative;
    height: 45px;
    background: #fff;
    z-index: 12;
    border-radius: 0 0 5px 5px;
}
.bao-gia-san-gom {
    background-color: #7dcda3;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 3px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    float: right;
}
.mepuzz-suggestion-footer {
line-height: 1.23 !important;
text-align: center;
padding: 5px 0 7px 0 !important;
}
.mepuzz-suggestion-element-wrapper {
position: fixed;
left: 17px;
bottom: 95px;
display: block;
z-index: 99999;
}
.mepuzz-suggestion-element-button-wrapper {
bottom: 0;
display: flex;
background: none !important;
left: 0;
}
.mepuzz-suggestion-element {
width: 70px;
height: 70px;
border-radius: 50% !important;
position: relative;
cursor: pointer;
box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.45);
animation: uptocallmini_offline 2s 0s ease-out infinite;
}
.mepuzz-suggestion-element:hover~.mepuzz-suggestion-tooltip {
opacity: 1;
visibility: unset;
}
.mepuzz-suggestion-element-button-img {
display: block;
margin: 0 auto;
width: 100%;
height: 100%;
opacity: 1;
}
.mepuzz-suggestion-element-button-count {
color: #ffffff;
background: none !important;
position: absolute;
top: 10px;
right: 10px;
line-height: 0 !important;
font-size: 15px;
font-weight: bold;
text-align: center;
border-radius: 100% !important;
}
.mepuzz-suggestion-tooltip {
position: relative;
color: #ffffff;
background: #243876;
visibility: hidden;
opacity: 0;
margin: auto 0 auto 10px;
transition: opacity .5s;
font-size: 12px !important;
line-height: 16px !important;
font-weight: 400 !important;
padding: 8px;
border-radius: 4px;
text-align: center;
white-space: nowrap;
}
.mepuzz-suggestion-tooltip::after {
border-color: transparent #243876 transparent transparent;
right: 100%;
content: "";
position: absolute;
top: 50%;
margin-top: -5px;
border-width: 5px;
border-style: solid;
}
@keyframes uptocallmini_offline {
0% {
box-shadow: 0 0 0px 0px rgba(41, 157, 218, 0.5);
}
75% {
box-shadow: 0 0 0px 20px rgba(41, 157, 218, 0);
}
100% {
box-shadow: 0 0 0px 0px rgba(41, 157, 218, 0);
}
}
/*
Author: levantoan.com
*/
.suggestion-post-title{
    color: #1a1a1a;
}
.aa-dropdown-menu .aa-suggestion em {
    background: transparent;
}
.suggestion-post-price {
    font-size: 15px;
}
.suggestion-post-price > .amount,
.suggestion-post-price > ins .amount {
    color: red;
    text-decoration: none
}
.suggestion-post-price > ins{
    text-decoration: none
}
.suggestion-post-price del {
    font-size: 12px;
    color: grey
}
.aa-dropdown-menu .suggestion-post-thumbnail {
    width:100px;
	height:auto;
}

.product-short-description  {line-height: 2.2;}
.product-short-description p{    margin-bottom: 0px!important;}

.an-toan-bep{border: 1px solid;
    box-shadow: 0 1px 3px rgb(0 0 0 / 15%);}
#powerTip {
	max-width: 347px;}
#sp-lien-quan .badge-container {
    margin: 29px 0 0 0;
	 font-size: 11px;
}
#sp-lien-quan .cart-icon strong {
    margin: -4px 0;
}
.cart-icon strong {
	margin: 1.3em 0;
}
.cart-icon strong, .cart-icon strong:after{    border-color: #fff;}
.sp-product .product-small.col {
    width: 17%!important;
    max-width: 17%!important;
   }

.isures-global--prod_resp .badge-inner.secondary.on-sale span.onsale:before {
    width: 15px;
    height: 15px;
    top: -1px;
}
.accordion-title{background: #fbf3f4;
    color: #fff;}
#tab-description a, .term-description a{color: #2695ea;}
#nd-van-khan   {background: url(https://khoqua.vn/wp-content/uploads/2021/07/testbg-min.jpg);
}
#nd-van-khan{
    /*background: #fae9dd;*/
    margin: 5px 8px 16px 0;
    padding: 8px 12px 2px;
    quotes: none;
    border-color: #b20000;
    border-style: solid;
    border-width: 0px 1px 1px 5px;
    clear: both; 
}
.breadcrumb_last{display:none;}
.title-wrapper{ white-space: pre-line;}
.isures-brands--wrap::-webkit-scrollbar,.multi-price--range::-webkit-scrollbar,.isures-inner--wrap::-webkit-scrollbar,.isures-global--prod_resp::-webkit-scrollbar, .menu-tacego::-webkit-scrollbar {
 display: none; 
}
.autocomplete-footer-branding{display:none!important;}
.title-sp-lien-quan{margin-bottom: 0!important;}
.single-product .isures-variation--wrap .quantity.buttons_added.form-normal {
    display: inline-flex!important;
}
.nn-gom{text-align:center;}
.box-text-inner h4{margin-top:20px;}
.row.isures-row--scroll {
    display: block;
	text-align:center;
    white-space: nowrap;
    overflow: auto; 	
}
.row.isures-row--scroll > .col {
    display: inline-block;
    width: 45%;
    max-width: 40%;
	padding:1px!important;
}
.icon-th{border: 1px solid rgba(0,0,0,.125);}
.icon-th:hover{box-shadow: 0 7px 19px -8px #000;}
.th-min img{position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 60px;
    top: -34px;
    left: 50px;
    padding: 7px;
    background-color: #fff;
    border-radius: 7px; 
    box-shadow: 1px 1px 10px -4px #000;}
.th-min2 img{position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 100px;
    top: -78px;
    left: 25px;
    padding: 7px;
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 1px 1px 10px -4px #000;}

.th-min2 h4 {
    margin-top: -70px;
}
.isures-global--prod_resp {
    display: block;
    white-space: nowrap;
    overflow: auto;
   /* padding: 10px 15px;*/
}
.isures-global--prod_resp .product-small.col {
    width: 45%!important;
    max-width: 40%!important;
    display: inline-block;
	padding:1px!important;
}



.isures-brands--wrap img{width:100px}
.tagcloud a {
    border: 1px solid #d4d4d4;
    color: #fff;
    display: inline-block;
    font-size: 13px !important;
    height: 28px;
    line-height: 28px;
    margin: 2px 2px 2px 3px;
    padding: 0 10px;
    border-radius: 20px;
}
.isures-inner--wrap
{ 
    overflow: auto;
white-space: nowrap;}
.youtube {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.blog-trang-chu .post-item{    padding: 0 15px 1px!important;}

.post-sidebar{padding: 0 10px 10px!important;}
.single-page a{color:#0065b3;}
#isures-recently--wrap .price-wrapper > span{font-size:18px;}
.term-description a
.woocommerce-order-details ,.woocommerce-bacs-bank-details{padding:30px;}

.upw-content .post-title{font-size:15px;}
.entry-content p a:hover{border-bottom:1px dotted;}
.mfp-close{display:none;}
h2>b, h2>strong, h3>b, h3>strong, h4>b, h4>strong{font-weight:700;}
.mfp-close{width: 13%!important;}
#wrapper>.message-wrapper{margin-bottom:1px;
padding-bottom: 5px;
}



/**/
.product-page-price {margin-bottom: 14px!important;}
.woocommerce-variation-price{font-size:30px;     color: #b41f1b!important;}
.single_add_to_cart_button{color:#fff!important;}
.category-page-row{ padding-top:0px!important;}
.title-nav-cat{margin-left:10px!important;
    margin-bottom: 2px!important;}
a.back-to-top#top-link {
    background: #b20000b8!important;
    border: 1px solid!important;
    color: #fff!important;
}
blockquote {
    background: #f3f3f3;
    color: #05090c;
    display: block;
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 20px;
    padding: 15px 20px 15px 45px;
    position: relative;
    text-align: justify;
}
blockquote:before {
    color: #2171af;
    content: "\201C";
    font-family: Georgia,serif;
    font-size: 60px;
    font-weight: 700;
    left: 6px;
    position: absolute;
    top: 15px;
}
.woocommerce{    background: #fff;}
.txt-freeship {
    vertical-align: top;
    display: inline-block;
    width: 80%;
    margin-left:10px;
}
.isures-prod--scroll{max-width:1270px!important;}
p.isures-label--combo{color: rgb(181 41 41);}
#isures-combo--wrap {
    background: #eaeaeac4;
    border-radius: 10px;
}
.banner-san-pham h3 {
    color: #20315c;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 0 10px;
    line-height: 18px;
    margin-top: 10px;
}
.banner-san-pham  {
    background: #e0e0e0fa;
    padding-left: 15px;
	padding-top: 7px;
	    border-radius: 10px;
    padding-right: 15px;
}
.product_cs li{list-style:none;}
.detail-block-right-top p span.text {
    width: calc(100% - 36px);
    padding-left: 15px;
}
.battrang-bannermini .img{    margin-bottom: 2px!important;}
.box-quicklink {
    display: flex;
overflow:auto;
	justify-content: center;
}
.box-quicklink__item.bd-radius {
    border-radius: 52px;
}
.box-quicklink__item {
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    display: flex;
    font-size: 14px;
    line-height: 1px;
    margin-right: 8px;
    margin-bottom: 10px;
    min-height: 36px;
    max-height: 36px;
    padding: 6px 13px;
    vertical-align: top;
}

.box_view_html a{color:#fff;}
.right-tin-tuc .box-text{
    padding-top: 2px!important;
    padding-bottom: 2px!important;
}
.tag-label{text-transform: lowercase;}
.right-tin-tuc .is-divider{display:none;}
.breadcrumbs {
    color: #222;
    font-weight: 700;
    letter-spacing: 0;
    padding: 0;
}
#breadcrumbs {
    margin-bottom: 10px;
    font-size: 14px;
    color: gray;
    text-transform: none;
}
.breadcrumbs a {
    color: #69a1a6;
    margin-left:0 !important;
    font-weight: 400;
}
.page-wrapper{padding-top: 3px;}
.cate-trang-tin-tuc .box{min-height:396px;}
.single-msp {
    font-size: 18px;
    color: #FF7800;
    text-transform: uppercase;
    border: 1px dotted #FF7800;
    width: 90%;
    padding: 10px;
}
.Service-freeship {
    padding: 0 5px;
    background-color: #fff;
}
.freeship-wrap-pc {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px;
}
.freeship-wrap-pc {
    display: block;
	margin-top: 36px;
}
#text-2127777715 {
    font-size: 12px;
    line-height: 1.5;
}
.view-freeship {
    color: #0071c4 !important;
    text-align: right;
    display: block;
}

.single_add_to_cart_button span{display:none;}
.icon-zalo-circle3 {
    background: url(https://khoqua.vn/wp-content/uploads/2021/05/icon-zalo.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: inline-block;
}
.icon-call {
    background: url(https://khoqua.vn/wp-content/uploads/2021/05/icon-call.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: inline-block;
}
.product_contact .share_social_btn.call_btn .hotline {
    position: absolute;
    height: 100%;
    top: 5px;
    left: 35px;
    line-height: 1px;
    text-align: center;
}

.share_social_btn {
    float: left;
    width: 48%;
    height: 34px;
    margin-right: 2%;
    border: 1px solid #bf020242;
    border-radius: 27px;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    margin-top: -30px;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.product_contact .share_social_btn i {
    display: block;
    height: 33px;
    width: 33px;
    margin-left: -1px;
}
.share_text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-left: 37px;
    line-height: 33px;
}


#pic360box{padding:10px!important;}
#pic360box{max-width:500px!important}
#pic360box > div > div{height:500px!important;}
#pic360box > div{    background: #db5f32;}
#pic360{
margin-top: -50px;
}

#pic360 > p > a> img{margin-top:19px;}
.slideer {
  -webkit-appearance: none;
  width: 80%;
     margin-top: 8px;
  height: 15px;
  border-radius: 5px;
  background: #fff;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slideer:hover {
  opacity: 1;
}

.slideer::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
.boxleft li{list-style:none;}
.boxleft li a:hover {
    background: #288ad6;
    color: #fff;
    border-radius: 4px;
}
.boxleft li a {
    display: block;
    overflow: hidden;
    padding: 10px;
    color: #333;
    font-size: 16px;
    line-height: 20px;
    background: #f3e5e5;
    border-radius: 4px;
    position: relative;
    padding-right: 20px;
}

.menu-cate{display: flex;}
.menu-cate a
{text-align: center;
    display: inline-block;
    text-align: center;
    vertical-align: top;
	background: linear-gradient(180deg,#fff 0%,#f1f1f1 100%);
    color: #333;
	max-height:100px;
    white-space: nowrap;
    position: unset;
    max-width: 100px;
	min-width:100px;
    margin-right: 5px;
    box-sizing: border-box;
	border-radius: 4px;} 
.menu-cate a img{width: 140px;
}
.sidebar-sg ul>li{height:95px;}
.isures-cate {padding-top: 10px;
}
.banner-qc, .isures-nav--wrap{
margin-left: auto;
    max-width: 1270px;	
    margin-right: auto;}
#banner-quang-cao > div > p{    margin-bottom: 0px;}

.upw-image  img{width: 90px;
    height: auto;
    float: left;
	margin-right:10px;
    border-radius: 6px;}
.badge-container {
    margin: 3px 0 0 0;
}
.row-collapse .badge-circle {
    margin-left: 2px;
}
.nav:not(.nav-slide) .active>.children {   
    left: 40px;
     padding-bottom: none!important;
}
.searchform .button.icon i {
    font-size: 22px;
}
#logo > a > img.header-logo-dark{margin-top:-15px;}
.header-button .icon-shopping-basket{font-size:24px !important;}

#mega_menu>li>a{font-size:16px;}
.header:not(.transparent) .header-bottom-nav.nav > li > a {
    color: #fff;
	text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}
.icon-shopping-basket{font-size:17px;}
/* hotline*/
.header-main .hotline_number {
    display: inline-block;
	margin-top:10px;
    vertical-align: middle;
    padding-right: 0.35714em;
    text-align: center;
}
.header-main .hotline_number .hotline-link {
    font-size: 23px;
    font-weight: bold;
    color: #d05640;
    line-height: 0.66667em;
}
/* hotline*/
#mega-menu-wrap {
    width: 78%;
	background: #014f9a;}
/* reset */
.container-width, .full-width 
.row.row-small{
	max-width: 1300px
}
.flickity-prev-next-button{width: auto}
/* global */
.star-rating{font-size: 12px}
.star-rating:before{
	color: #c5c5c6!important
}
.isures-props--wrap {
    padding: 5px 0 10px 0;
}
.isures-props--wrap span.dotted {
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    color: #777;
    border-radius: 5px;
    position: relative;
    margin: 5px 0 0;
    border: 1px solid #eee;
    padding: 1px 6px !important;
}
.isures-col--pd0 > .col {
    padding-bottom: 0;
}
body:not(.home) .isures-banner--ads{display: none}
.isures-banner--ads{
	transition: all 0.25s ease-in-out
}
.section.isures-global--pd0 {
    padding-bottom: 0!important;
	 
}
.home #content{position: relative; z-index: 2}
.home #main{background-color: #5a8f941a;}

.row.isures-row--tgdd{max-width: 1185px}
.row.isures-row--tgdd > .col > .col-inner{padding: 0}
/* .row.isures-row--tgdd > .col > .col-inner .product-small .col-inner {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #cccc;
} */
.row.isures-row--tgdd.row-solid .col:after{
    position: absolute;
    content: " ";
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: 0px;
    border-bottom: 1px solid #ddd;
}
.isures-col--product  > .col-inner .col:after{display: none}
.isures-col--pd0 .col > .col-inner{
	padding: 0
}
.isures-row--tgdd .row.isures-prod--slider {
    margin-left: 0;
    margin-right: 0;
}
/* search */
form.searchform{
    background: #fff;
    border-radius: 20px;
}
form.searchform input[type="search"]{
    height: 40px;
    /*width: 200px;*/
    background: transparent;
    border: none;
    box-shadow: none;
}
form.searchform button[type="submit"]{
    height: 30px;
    min-height: 30px;
    background-color: transparent!important;
    color: #999;
    border: none;
}
/* header main */
.header-main .logo a {
    font-size: 20px;
	color: var(--isures-primary-color)
}
.header-main .flex-right ul.header-nav.header-nav-main.nav.nav-right.nav-uppercase > li{margin: 0}

.header-main .flex-right ul.header-nav.header-nav-main.nav.nav-right.nav-uppercase > li:last-child > a{border-right: none}
.header-main .flex-right ul.header-nav.header-nav-main.nav.nav-right.nav-uppercase > li:not(.isures-post--features) > a:hover {
       background: #ffffff;
    color: #5a8f94;
    border-radius: 20px;
}
.header-main .menu-title:hover, .header-main .social-icons a:hover, .header-main .header-button > .button.is-outline:hover, .header-main .nav > li > a:hover > i:not(.icon-angle-down) {
    color: #5a8f94 !important;
}
.isures-post--features a {
    text-transform: none!important;
    position: relative;
	
}
 .isures-post--features:before{
	content: '';
    border: 1px solid var(--isures-primary-color);
    position: absolute;
    width: 10px;
    height: 10px;
    left: 1px;
    top: calc( 50% - 4px );
    opacity: 1;
    background-color: rgba(238,46,36,.2);
    border-radius: 100%;
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
    -webkit-animation-name: sonar;
    animation-name: sonar;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: block;
    margin: -1px 0 0 -1px;
}
.isures-post--features:after{
	content: "";
    width: 10px;
    height: 10px;
    background-color: var(--isures-primary-color);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
    display: block;
}
 @keyframes sonar {
	 0% {
		 opacity: 1;
		 -webkit-transform: scale(1);
		 transform: scale(1)
	 }

	 100% {
		 -webkit-transform: scale(3);
		 transform: scale(3);
		 opacity: 0
	 }
}
.header-main a.header-cart-link.icon.button.round.is-outline.is-small {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-transform: none;
    font-weight: normal;
    border-radius: 3px;
    border-color: #8F8F8F!important;
    transition: all 0s;
	padding: 0 20px
}

.header-bottom .flex-col.hide-for-medium.flex-center ul.nav.header-nav.header-bottom-nav.nav-center{
	justify-content: space-between;
	  
    text-transform: uppercase;
}
.header-bottom .flex-col.hide-for-medium.flex-center ul.nav.header-nav.header-bottom-nav.nav-center > li{
	margin: 0;
	min-width: 105px;
}
.header-bottom .flex-col.hide-for-medium.flex-center ul.nav.header-nav.header-bottom-nav.nav-center > li > a{
    padding: 10px 15px;
    font-size: 14px;
    font-weight: normal;
    width: 100%;
    text-align: center;
    display: inline-block;
}
.header-bottom .flex-col.hide-for-medium.flex-center ul.nav.header-nav.header-bottom-nav.nav-center > li > a:hover , .header-bottom .flex-col.hide-for-medium.flex-center ul.nav.header-nav.header-bottom-nav.nav-center > li.active > a{
	background: #f5f5f5
}
/* title cate */
.isures-nav--wrap .isures-inner--wrap{
    display: flex;
	justify-content: flex-end;
	margin-bottom: 0;
/*     background-size: auto auto; */
    background-repeat: no-repeat;
}
.isures-inner--wrap
{ 
 overflow: auto;
white-space: nowrap;}
.isures-nav--wrap .col.large-12{
	padding-bottom: 0
}
.isures-nav--wrap .title-nav-cat {
	text-transform: uppercase;
    font-size: 24px;
	    padding-top: 6px;
}
.isures-nav--wrap .viewallcat {
    flex-basis: calc(100% - 300px);
	margin-right:20px;
    height: 100%;
    line-height: 44px;
    display: flex;
	align-items: center;
}
.isures-nav--wrap .viewallcat a{
	color: #000; 
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    color: #333;
    display: inline-block;
    font-size: 13px;
    line-height: 10px;
    margin-left: 10px;
    padding: 10px 11px;

}
.isures-nav--wrap .viewallcat a:hover{
	color: #288ad6;
}
/* product slider global */

.isures-slider--wrap .slider-nav-light .flickity-prev-next-button {
    border-radius: 5px;
    background: rgba(0,0,0,.3);
    width: 48px;
    height: 48px;
    color: #fff;
    top: calc(50% - 24px)
}

.isures-slider--wrap .flickity-page-dots .dot {
    width: 4px;
    height: 4px;
    border: none;
	background: #fff;
	border: 1px solid #fff
}
.isures-slider--wrap .flickity-page-dots .dot.is-selected{
	background: var(--isures-primary-color);
	border: 1px solid 1px var(--isures-primary-color)
}
.isures-slider--wrap .flickity-prev-next-button.next svg,.isures-slider--wrap .flickity-prev-next-button.previous svg {
    display: none
}

.isures-slider--wrap .flickity-prev-next-button.previous::after {
    content: "‹";
    position: absolute;
    font-size: 46px;
    display: inline-block;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    font-family: initial
}

.isures-slider--wrap .flickity-prev-next-button.next::after {
    content: "›";
    position: absolute;
    font-size: 46px;
    display: inline-block;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    font-family: initial
}
.isures-caption--wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
	font-size: 12px;
    line-height: 1.3;
}
.isures-slider--captions .item.is-selected .isures-caption--wrap *{
	font-weight: bold
}
.isures-caption--wrap:after {
    content: '';
    height: 30px;
    border-right: 1px solid #e5e5e5;
    position: absolute;
    top: 0;
    right: 0;
	display: block;
}
.isures-slider--captions .item:last-child .isures-caption--wrap:after {display: none}


.isures-prod--slider .flickity-button.flickity-prev-next-button.next {
    right: 0;
	border-radius: 5px 0 0 5px;
}

.isures-prod--slider .flickity-button.flickity-prev-next-button.previous {
	left: 0;
	border-radius: 0 5px 5px 0;
}

.isures-prod--slider .flickity-prev-next-button {
    top: auto;
    bottom: calc(50% - 25px)!important;
	margin: 0;
	background-color: #fff!important;
	width: 34px!important;
	min-height: 70px;
	padding: 0!important;
	text-align: center;
	font-size: 46px;
	color: #999;
	font-family: -webkit-body;
	-webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.15);
	box-shadow: 0 0 4px 2px rgba(0,0,0,.15)!important;
	 -webkit-transform: translateX(0)!important;
    transform: translateX(0)!important;
	opacity: 1;
}

.isures-prod--slider .flickity-prev-next-button.next svg, .isures-prod--slider .flickity-prev-next-button.previous svg {
    display: none
}

.isures-prod--slider .flickity-prev-next-button.previous::after {
    content: "‹";
    position: absolute;
    font-size: 46px;
    display: block;
    top: -24px;
    color: #999;
    margin: auto;
    left: 6px;
    font-family: initial
}

.isures-prod--slider .flickity-prev-next-button.next::after {
    content: "›";
    position: absolute;
    font-size: 46px;
    display: block;
    top: -24px;
    color: #999;
    margin: auto;
    right: 6px;
    font-family: initial
}

/* blog in home */
.isures-blog--home .col.post-item{
    padding-bottom: 15px;
}
.isures-blog--home .box.box-vertical{
    background: #fff;
    padding: 4px 8px;
}
.isures-blog--home .box-text.text-left{
    padding: 0 10px;
}
.isures-blog--home .is-divider{
    display: none;
}
.isures-blog--home h5.post-title.is-large{
    display: block;
      height: 36px;
    line-height: 1.3em;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}


/* menu image */
.header-bottom .menu-item i {
    font-size: 14px;
}
.header-bottom .menu-item img{
	min-width: 10px;
	width: auto;
	height: 15px;
}
/* single template */
p.name.product-title a{
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	font-size: 14px;
	font-weight: 700;
/* 	margin-bottom: 10px; */
	height: 35px;
    line-height: 1.3;
}
a.button.btn-tra-gop , .single_add_to_cart_button {
	align-items: center;
    width: 48%;
    height: 45px;
    padding: 5px 0;
    line-height: 1.1;
    margin-right: 3px!important;
	background: #288ad6;
	border-radius: 4px;
}
a.button.btn-tra-gop strong{
    text-transform: uppercase;
}
a.button.btn-tra-gop span , .single_add_to_cart_button  span{font-size: 12px; font-weight: 300; text-transform: none}
.add-to-cart-container.form-normal.is-normal .single_add_to_cart_button{
	background: -webkit-gradient(linear,0% 0%,0% 100%,from(#fd6e1d),to(#f59000));
    background: -webkit-linear-gradient(top,#f59000,#fd6e1d);
}
.temner-title .col-inner{line-height:1.2}
.temner-title h1.product-title.product_title.entry-title{
	font-size: 24px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;
}
.temner-title .product-breadcrumb-container.is-small{font-size: 12px;}
.isures-global--pd0 .price-wrapper .price {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;}
.price-wrapper .price span.woocommerce-Price-amount.amount{color: #e10c00}
.price-wrapper del span.woocommerce-Price-amount.amount {color: #d24949!important; font-size: 10px!important}

.single-product .quantity.buttons_added.form-normal {
    display: none!important;
}

.isures-section--content div#reviews > div {
    flex-basis: 100%!important;
    -ms-flex-preferred-size: 100%;
    max-width: 100%;
}
.single-product .custom-product-page .row.wrapper-content .row > .col {
    padding-bottom: 0;
}
.wrapper-content{margin-top: 0px!important;}
.breacum1{padding-bottom:0px!important;}
/*box gift*/

.khuyenmai-info{padding: 10px 10px 0;}
.khuyenmai-info span{position: relative; padding-left:15px; padding-right:10px; font-size: 14px;    display: inline-block;
    margin-bottom: 5px;}
.khuyenmai-info span a{ border-bottom:1px dotted;}
.khuyenmai-info span:before {
	content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    position: absolute;
    left: -5px;
    top: 0;
    color: #3fb846;
}
.promotion_wrapper{
	overflow: hidden;
	border: 1px solid #ddd;
	border-radius: 4px;
	position: relative;
	margin: 15px 0;
	background: #fff;
	padding-bottom: 10px;
	padding: 0;
}
b#promotion_header{
    display: block;
    font-size: 15px;
    color: #333;
    padding: 10px 15px 8px 15px;
    text-transform: uppercase;
    background-color: #f6f6f6;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
/* ưu đãi thêm */
aside.promotion_wrapper-2{
    margin: 20px 0 10px;
    padding: 20px 10px 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ddd;
    position: relative;
}
aside.promotion_wrapper-2 b{
    display: block;
    padding: 2px 8px;
    position: absolute;
    background: #fff9b4;
    border: solid 1px #e8dd58;
    text-align: center;
    top: -10px;
    left: 10px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    border-radius: 2px;
}
/*param product & style box*/

/*in box*/
.in-box{
	list-style:none;
  display: flex;
  overflow: auto;
}
.in-box li{border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #333;
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    margin-right: 5px;
    padding: 4px 5px;
    white-space: nowrap;}
/* product hover */
.product-small:hover .box-image img {
    transform: translateY(-10px);
}
.product-small .box-image img {
    transition: 0.15s ease-in;
}
.archive .products.row.row-small {
    margin-bottom: 25px;
/*     border-top: 1px solid #eee;
    border-left: 1px solid #eee; */
    background: #fff;
    margin-left: 0;
    margin-right: 0;
}
.archive .product-small.col {
    background: #fff;
    
/*     padding: 10px; */
}
.archive .product-small.col .box-text.box-text-products{
	padding: 4px;
}
.product-small span.amount {
    white-space: nowrap;
    color: #bf081f;
    font-weight: bold;
}
.form-row {
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}
.woocommerce-billing-fields__field-wrapper p.form-row label {
   
   
    margin-right: 25px;
}
.woocommerce-billing-fields__field-wrapper p.form-row span.woocommerce-input-wrapper {
    flex-grow: 1;
}
.woocommerce-billing-fields__field-wrapper p.form-row span.woocommerce-input-wrapper input {
    box-shadow: none;
    border-radius: 4px;
}

.checkout .large-5.col .col-inner.has-border{
	background: #fff;
	border: 2px solid #ee4d2d
}
.checkout.woocommerce-checkout h3{color: #ee4d2d}
.checkout.woocommerce-checkout .product-name , .checkout.woocommerce-checkout .product-total{color: #000; border: none;}
.checkout.woocommerce-checkout span.woocommerce-Price-amount.amount, .checkout.woocommerce-checkout span.woocommerce-Price-amount.amount a{font-size: 15px;}
.woocommerce-billing-fields{border: none;}
#customer_details{
	padding: 0 15px;
    border: 1px solid #ececec;
	background: #fff
}

/*footer  */
.footer-wrapper ul li{margin-left:0;}
.footer-wrapper ul li a, .footer-wrapper ul li, .footer-wrapper p {
    font-size: 14px;
    margin-bottom: 3px;
    padding-top: 5px;
}
.footer-wrapper .social-icons.follow-icons a{color: #fff}
.footer-wrapper a:hover{color: #666!important}
.copyright-footer p{
    font-size: 10px;
    color: #999;
}
.footer-wrapper ul.isures-list-post li a {
    color: #288ad6;
}
.footer-wrapper ul.isures-list-post li {
    list-style: none;
}
a.back-to-top#top-link{
    background: var(--isures-primary-color);
    border: none;
    color: #333;
}
/* label sale */
.badge-inner.secondary.on-sale{
	background-color: transparent;
    border-radius: 0px!important;
}
.badge-inner.secondary.on-sale span.onsale{
    background-image: linear-gradient(-90deg,#ec1f1f 0%,#ff9c00 100%);
    border-radius: 10px;
    padding: 1px 7px;
    padding-left: 0;
    padding-right: 10px;
    position: relative;
}
.badge-inner.secondary.on-sale span.onsale:before {
    content: ' ';
    display: inline-block;
    background-size: 50% 50%;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #f13500;
    border-radius: 50%;
    vertical-align: middle;
    position: relative;
    top: 0;
    margin-right: 5px;
}
/* style in tablet */
@media screen and (max-width: 1024px){
	.row.isures-row--tgdd {
		padding-left: 10px;
		padding-right: 10px;
	}
	.isures-details--chosen_wrap {
    bottom: 60px;
}
	.category__image {
    align-self: center;
    /* width: 30%; */
    max-width: 37px;
    min-width: 55px;
}
	#isures-combo--wrap .isures-thumb {
		max-width: 80px;}
	.row.isures-prod--scroll{
		justify-content: space-between;
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		overflow-x: scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		height: 290px;
	}
	.home #main{background-color: #fff}
	/*.isures-nav--wrap .viewallcat{display: none}*/
}
.row.isures-prod--scroll::-webkit-scrollbar{
	width: 0px;
	height: 0px;
}
/* description */
.single-product div#tab-description {
	overflow: hidden;
	position: relative;
}

.single-product .tab-panels div#tab-description.panel:not(.active) {
	height: 0 !important;
}

.temner_readmore_des {
	text-align: center;
	cursor: pointer;
	position: absolute;
	z-index: 2;
	bottom: 0;
	width: 100%;
	background: #fff;
}

.temner_readmore_des:before {
	height: 55px;
	margin-top: -45px;
	content: -webkit-gradient(linear, 0% 100%, 0% 0%, from(#fff), color-stop(.2, #fff), to(rgba(255, 255, 255, 0)));
	display: block;
}

.temner_readmore_des a {
    display: inline-block;
    font-size: 14px;
    color: #288ad6;
    margin: 10px auto;
    cursor: pointer;
    border: 1px solid #288ad6;
    border-radius: 4px;
    text-align: center;
    width: 240px;
    position: relative;
    line-height: 40px;
}

.temner_readmore_des a:after {
	content: '';
	width: 0;
	right: 0;
	border-top: 6px solid #349fe2;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 0 0 5px;
}
ul.tabs.wc-tabs.product-tabs.small-nav-collapse.nav.nav-uppercase.nav-line.nav-left {
    display: none;
}
.image-tools.bottom.left {
    display: none;
}



/* filter */
.isures-brands--wrap {    
	display: flex;
    flex-wrap: wrap;
    padding: 0 0 11px 1px;
}
.isures-brands--wrap label {
	border: 1px solid #eee;
	cursor: pointer;
	text-align: center;
	max-width: 100px;
	display: inline-block;
	line-height: 28px;
	position: relative;
	flex-basis: calc(10.5% + 1px);
}
label.isures-showmore--brands a {
    font-weight: normal;
    color: #288ad6;
}
.isures-brands--wrap label input {
	display: none
}
.isures-brands--wrap label.active{
	border-color: #52a2e1;
	z-index: 1
}
.isures-brands--wrap label.active:after{
    content: "";
    width: 23px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 0;
    background-size: cover;
    z-index: 2;
}
.isures-choosen--wrap{
    margin: 10px auto;
    border-top: 1px solid #eee;
	text-align: left;
}
.isures-choosen--wrap a {
    display: inline-block;
    vertical-align: text-bottom;
    padding: 6px;
    background: #288ad6;
	font-weight: bold;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    margin-right: 5px;
	cursor: pointer
}
.isures-choosen--wrap a:hover{
	color: #fff
}
.isures-choosen--wrap svg {
    display: inline-block;
    margin-left: 5px;
}
a.remove-all--choosen{
	background: #c10017;
}
.isures-action {
    flex-basis: 100%;
}
#filter > div.isures-filter--wrap{ border-bottom: none;}
.isures-filter--wrap {
    display: flex;
	  

    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
	padding: 1px 0;
}
.isures-fl--price {
    flex-basis: 80%;
    display: flex;
}
.multi-price--range label {
    display: inline-block;
    vertical-align: top;
    padding-right: 10px;
	color: #288ad6;
    margin-left: 10px;
}
.multi-price--range label{
	margin: 0;
	font-weight: normal;
	cursor: pointer;
	font-size: 15px
}
label.range-price input {
    display: none;
}
label.range-price.active {
    font-weight: bold;
}
span.isures-fl--label {
    color: #288ad4;
	cursor: pointer;
	font-weight:600;
	margin-left:10px;
		
}
span.isures-fl--label:before{content:'Hot';
display: inline-block;
font-size: 9px;
line-height: 9px;
text-transform: uppercase;
letter-spacing: -0.1px;
margin-left: -2px;
background-color: #cf2a26; /* thay đổi màu sắc - Copy mã màu nào bạn cần */
font-weight: bolder;
border-radius: 2px;
color: #fff;
padding: 2px 3px 3px;
position: relative;
top: -2px;} 



span.isures-fl--label:after {
    content: '' ;
    width: 0;
    height: 0;
    border-top: 6px solid #288ad6;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.isures-barpage--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.isures-barpage--wrap label {
	position: relative;
    margin: 0;
    font-weight: normal;
    color: #4197da;
	font-size: 16px;
	margin-right: 10px;
	cursor: pointer
}
.isures-barpage--wrap label .label-new{
    position: absolute;
    right: -25px;
    top: 5px;
    color: #fff;
    background-color: #f00;
    font-size: 10px;
    border-radius: 3px;
    padding: 0 3px;
    line-height: 1.3;
	font-weight: bold;
}
.isures-barpage--wrap label input{
	margin: 0
}


.isures-cat--child , .isures-property--wrap , .isures-orderby--wrap{
    position: relative;
}
.isures-catechild--drop {
    position: absolute;
    top: 45px;
  
    min-width: 200px;
    padding: 10px 15px 0 15px;
    border: 1px solid #d5d5d5;
    background-color: #fff;
    z-index: 22;
    border-radius: 4px;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,.1);
	display: none
}
a.close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    line-height: 15px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 50%;
    display: inline-block;
	cursor: pointer
}
.isures-catechild--drop:after,.isures-catechild--drop:before  {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 413px;
    border-bottom: 10px solid #d9d9d9;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.isures-catechild--drop:after{
	border-width: 9px;
	border-bottom-color: #fff;
	margin-left: 1px;
}

.isures-catechild--drop label {
    font-weight: normal;
    cursor: pointer;
}


.multi-child--wrap {
    display: flex;
    flex-wrap: wrap;
}
.multi-child--wrap  strong.param-title {
    text-transform: uppercase;
    margin-bottom: 5px;
    display: inline-block;
}
.multi-child--wrap .param-col {
    flex-basis: 33%;
    border-bottom: 1px solid #eee;
    padding-top: 10px;
}
.multi-child--wrap .param-col input {
    margin: 0;
}
.multi-child--wrap label {
    text-transform: capitalize;
    font-size: 14px;
}

.isures-orderby--drop.isures-catechild--drop a.orderby-check {
    display: block;
    position: relative;
    font-size: 15px;
    padding-left: 20px;
}
a.active.orderby-check:before {
	content: "\f00c";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 2px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	color: #288ad6;
	font-size: 12px;
}


/*  */
/*  */

/* loading */

.loading-snip {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .6);
    border-radius: 4px;
    display: none;
	z-index: 22
}

.nav-pagination.active .loading-snip,
.loading-snip.active {
    display: block;
}

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

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -16px;
    margin-left: -10px;
    border-radius: 50%;
    border-top: 2px solid #07d;
    border-right: 2px solid transparent;
    animation: spinner .6s linear infinite;
}

/* vip service */
.isures-vipservice {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px 12px 5px 12px;
	margin-top: 15px;
	margin-bottom: 15px
}
.isures-vipservice p{
	margin-bottom: 10px;
	font-weight: bold;
	letter-spacing: 1px;
}
.isures-vipservice p span{
	color: #f01;
}
.isures-vipservice input {
    margin: 0;
	vertical-align: middle;
	font-size: 14px;
}
.isures-vipservice label {
    font-weight: 400!important;
	font-size: 14px;
	cursor: pointer
}
.name-other-items {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    position: relative;
    margin-bottom: 20px;
}
.name-other-items:before , .name-other-items:after{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50px;
    width: 0;
    height: 0;
    border-bottom: 10px solid #ccc;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.name-other-items:after{
    border-width: 9px;
    margin-left: 1px;
    border-bottom-color: #fff;
}
input#name_prod_other {
    display: block;
    width: 96%;
    height: 35px;
    line-height: 35px;
    border: none;
    padding: 0 2%;
	box-shadow: none
}
.name-other-items i{
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 11px;
    font-style: normal;
}
.isures-service{
	margin-bottom: 2px;
}
dl.variation * {
    text-transform: capitalize;
}



/* Cart Steps */

.isures-tab--wrap {
    max-width: 650px;
    padding: 15px;
    background: #fff;
    -webkit-box-shadow: 3px 3px 6px 0 #e5e5e5;
    box-shadow: 3px 3px 6px 0 #e5e5e5;
    border-radius: 5px;
}

.isures-tab--wrap ul.nav-steps--wrap {
	display: flex;
	justify-content: space-between;
    border: 3px solid var(--isures-secondary-color);
    margin-bottom: 25px!important;
}

.isures-tab--wrap ul.nav-steps--wrap li {
    width: 33%;
    display: inline-block;
    margin: 0;
    height: 53px;
    line-height: 53px;
    position: relative;
    text-align: center;
}

.isures-tab--wrap .nav-steps--wrap li.active {
    background: #eaeaea;
}

.isures-tab--wrap ul.nav-steps--wrap li a {
    display: block;
}

.isures-tab--wrap ul.nav-steps--wrap li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 53px;
    height: 53px;
    -webkit-transform: scale(0.707) rotate(45deg);
    -ms-transform: scale(0.707) rotate(45deg);
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    border-radius: 0 2px 0 2px;
    -webkit-box-shadow: 3px -3px 0 1px var(--isures-secondary-color);
	box-shadow: 3px -3px 0 1px var(--isures-secondary-color);
    background: #fff;
}

.isures-tab--wrap ul.nav-steps--wrap li.active:not(:last-child):after {
    background: #eaeaea;
}

.isures-tab--wrap ul.nav-steps--wrap span.step-number {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: var(--isures-secondary-color);
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    margin-right: 8px;
}


/* tab cart */

.isures-tab--wrap .cart-discount {
    background: #fff
}

.isures-tab--wrap .product-image {
    width: 85px;
    text-align: center;
    margin-right: 15px;
}

.isures-tab--wrap .product-remove {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.isures-tab--wrap a.remove {
	position: relative!important;
    display: inline-block;
    border: none;
    background: #999;
    width: 20px;
    height: 20px;
    line-height: 20px!important;
    color: #fff;
	top: 0!important;
	margin-right: 5px;
}

.isures-tab--wrap .product-information a.product-title {
    font-size: 14px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-weight: bold;
}

.isures-tab--wrap .product-information span.amount {
    font-weight: normal;
    font-size: 14px;
    color: #c10017;
    float: right;
}

.isures-tab--wrapth,
.isures-tab--wrap td {
    border: none
}

.isures-tab--wrap .product-information .isures-description {
    padding: 5px 0;
    color: #333;
    margin-bottom: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.isures-tab--wrap .quantity .minus,
.isures-tab--wrap .quantity .plus {
    padding-left: 10px;
    padding-right: 10px;
    background: #fff;
}

.isures-tab--wrap .quantity .minus:hover,
.isures-tab--wrap .quantity .plus:hover {
    box-shadow: none
}

.isures-tab--wrap .product-quantity.text-right {
    margin-left: 15px
}

.isures-tab--wrap th,
.isures-tab--wrap td {
    border-bottom: none;
    text-transform: none;
    padding: 5px 0;
    color: #333;
    font-weight: normal;
}

.isures-tab--wrap .subtotal-wrap tr.cart-subtotal th,
.isures-tab--wrap .subtotal-wrap .cart-subtotal td,
.isures-tab--wrap .subtotal-wrap .cart-subtotal td span.amount {
    text-transform: none;
    color: #333;
    font-size: 16px;
    font-weight: normal;
}

.isures-tab--wrap .subtotal-wrap tr.order-total th {
    font-weight: bold!important;
    color: #333;
}

.isures-tab--wrap .subtotal-wrap tr.order-total td span.amount {
    font-size: 16px;
    color: #c10017;
}

.textcode {
    color: var(--isures-secondary-color);
    margin-bottom: 10px;
    cursor: pointer
}

.coupon input.coupon-btn {
    background: var(--isures-secondary-color);
    border-radius: 4px;
    margin: 0!important;
    height: 40px;
    font-size: 14px;
    color: #fff;
    width: 90px!important;
    text-align: center;
    cursor: pointer;
}

.coupon .isures-coupon {
    flex-basis: 80%;
    max-width: 80%;
    margin: 0
}

.coupon-hidden {
    display: none
}

/* tab order */

.isures-tab--wrap .woocommerce-billing-fields__field-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.isures-tab--wrap .woocommerce-billing-fields__field-wrapper #billing_first_name_field {
    flex-basis: 48%;
}

.isures-tab--wrap .woocommerce-billing-fields__field-wrapper #billing_phone_field {
    flex-basis: 48%;
}

.isures-tab--wrap .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
.isures-tab--wrap .woocommerce-billing-fields__field-wrapper #billing_email_field {
    flex-basis: 100%;
    margin-right: 0
}

.isures-order--wrap {
    max-width: 400px;
    margin: 15 auto
}

.isures-tab--wrap .place-order {
    display: flex
}

.isures-tab--wrap button#place_order {
    outline: none;
    border: none;
    width: 66%;
    padding: 15px 0px;
    margin: 15px auto;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    background: #fd6e1d;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fd6e1d), to(#f59000));
    background: -webkit-linear-gradient(top, #f59000, #fd6e1d);
}


/* notices */

.isures-tab--wrap ul.woocommerce-error.message-wrapper {
    padding: 8px 25px!important;
    background: var(--isures-primary-color);
    border-left: 5px solid #000;
    margin-bottom: 15px!important;
}

.isures-tab--wrap ul.woocommerce-error.message-wrapper .message-container.container.alert-color.medium-text-center {
    color: #fff;
}
/* loading  */

.wrap-load {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    display: none;
    background: rgba(255, 255, 255, .8);
    z-index: 1;
}

.loader {
    position: absolute;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #000000;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
    z-index: 1;
    left: calc( 50% - 15px);
    top: calc( 50% - 15px);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.woocommerce-cart #content {
    min-height: 100vh
}

.isures-tab--wrap ul,
.isures-tab--wrap li {
    margin: 0!important;
    padding: 0!important
}



.isures-content.active {
    display: block;
}

.isures-flex-col {
    display: flex;
    padding: 15px 0;
    justify-content: space-between;
}

.btn-step {
    margin: 0;
    border: 1px solid var(--isures-secondary-color);
    color: var(--isures-secondary-color);
    border-radius: 4px;
    padding: 5px 15px;
    line-height: 1;
    text-transform: none;
}

.prev-step--cart.btn-step {
    color: #333;
    border: 1px solid #333;
}

.isures-content--wrap input {
    box-shadow: none;
    border-radius: 4px;
}

.isures-content--wrap .woocommerce-billing-fields {
    border-top: none;
    padding: 0
}


/* param */
.isures-parameter table{
	width: 100%!important
}
.isures-parameter table tbody tr td:first-child {
    width: 40%;
}
.isures-parameter table tbody tr td {
    padding: 10px 5px;
    font-size: 14px;
    color: #666;
}
.isures-parameter table tbody tr:last-child td {
    border-bottom: none;
}
.isures-parameter a {
    color: var(--isures-secondary-color);
}
.isures-parameter a:hover{
	color: #e67e22
}
a.isures-viewmore--param {
    display: block;
    width: 100%;
    padding: 6px 0;
    margin: 20px auto;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    background-color: #288ad6;
    color: #fff!important;
    border: 1px solid #288ad6;
    border-radius: 4px;
	transition: 0.25s ease-in-out
}
a.isures-viewmore--param:hover{
	background: #fff;
	color: var(--isures-secondary-color)!important
}
.mfp-container.mfp-s-ready.mfp-inline-holder{
	padding: 0
}
.mfp-close {
	width: 75px;
	height: 75px;
	background: #f4f4f4;
	opacity: 1;
	right: 15px;
}

.mfp-close svg {
	color: #bbb;
	width: 35px;
	height: 35px;
}

/* variation radio */
/* .isures-radio-variable {
    margin-right: 15px;
    margin-left: 15px;
} */
.isures-option {
    display: inline-block;
    text-align: center;
    padding: 10px 7px 10px 7px;
    margin-right: 10px;
    background: #fff;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .15);
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #f2f3f7;
    min-width: 100px;
    max-width: 45%;
	max-width: calc(45% - 5px);
}
.isures-option.active {
    border: 1px solid #f89008
}

.variations select {
    display: none
}

span.option-child {
    padding: 5px 5px 5px 25px;
    display: block;
    position: relative;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.1;
    text-transform: uppercase;
}

.isures-option span {
    font-weight: normal;
}

.isures-option.active span {
    font-weight: bold
}

.isures-option span.woocommerce-Price-amount.amount {
    font-size: 15px;
    display: block;
    color: #e10c00;
    text-align: center;
    font-weight: bold
}

.isures-option input[type='radio'], td.label {
    display: none
}

.isures-option .option-child:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
    position: absolute;
    left: 0;
    top: 4px;
    color: #fff;
    cursor: pointer;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 8px;
    border-radius: 99px;
}
.isures-option.active .option-child:before {
    content: "\f00c";
    background: #3fb846;
}

/* style in mobile */
@media screen and (max-width: 767px){
	.isures-slider--captions .item {
		height: 0!important;
	}
		.banner-2 {
    margin-top: -22px;
}
	.banner-ngang1,.banner-ngang2 {
    padding: 0 3px 1px !important;
}
	.banner-2 .col-inner, .banner-3 .col-inner {
    background: #fff;
    padding: 1px;
    border-radius: 6px;
    box-shadow: 0px 1px 4px rgb(10 10 10 / 15%);
}
	.header-main {
    height: 55px!important;
}
	.banner-3-1-1{padding: 0px 1px 1px;}
	#logo img {
    padding: 3px 0;
}
 .header-main .menu-title, .header-main .nav > li > a > i:not(.icon-angle-down) {
    color:#fff!important;
}
	.type__category {
    display: flex;
		width: 33%;
		padding: 0px 0 0;
		border:none !important;
/* 	border-right-width: 1px; */}
#pic360{
	margin-left: 145px;}	
.iconyoutube {
   margin-left: 65px;}
	.category__image {
    max-width: 37px;
    min-width: 65px;
}
.print-logo .wpcf7-list-item-label{font-size:12px;}
input[type='checkbox']{margin-right: 6px;}
	.title-sp-lien-quan h4{font-size:13px;}
	.isures-catechild--drop:after, .isures-catechild--drop:before{left: 81px!important;}
	.banner-thuong-hieu .image-cover{padding-top: 120px!important;}
	.box-text {
    padding-right: 3px;
    padding-left: 3px;
}
	.thuong-hieu-nn-row .col{padding:0px!important;}
	.header-main .header-button > .header-cart-link{
		border: none;
		margin-top: 5px;
		margin-left: 15px;
		padding: 0;
	}
	.th-min2{margin-left:130px!important;
font-size:14px;}
	.gioi-thieu-nn ul {
    margin-top: -35px;
    margin-left: 40px;
}
		.isures-global--prod_resp .title-wrapper{ white-space: pre-line;text-align:left!important;}
.isures-global--prod_resp .price{ 
	text-align:left;
/* 	font-size:10px!important; */
	overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
	}
	
	.nn-gom{text-align:none;}
	.nn-gom .product-small.col {
    width: 28%!important;
    max-width: 28%!important;}
	form.searchform input[type="search"]{width: 100%;}
	.header-main  #logo{width: 250px;}
	.searchform .button.icon i {
    font-size: 16px;
}
	.header-main img.header-logo-dark {
		display: none!important;
	}
	.header-main img.header_logo.header-logo{
		display: block!important;
		padding: 5px;
	}
	.header-main div#logo{
		margin-right: 20px;
	}
	.header-main a.header-cart-link.icon.button.round.is-outline.is-small {padding: 0}
	.isures-brands--wrap {
		display: block;
		white-space: nowrap;
		overflow-y: auto;
		/* overflow-x: hidden; */
	}
	.isures-blog--home{margin-left:-9px!important;
	margin-right:-10px!important;}
	.isures-filter--wrap > div {
		margin-bottom: 10px;
	}
	.isures-brands--wrap label {
		display: inline-block;
		margin: 0 5px;
		vertical-align: middle;
		border-radius: 5px;
		overflow: hidden;
	}
	.isures-brands--wrap label:first-child{margin-left: 0}
	.isures-brands--wrap label img {
		width: 100%;
		height: auto;
		max-width: 80px;
	}
	.isures-filter--wrap {
		display: block;
	}
	.isures-fl--price {
		flex-basis: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.multi-price--range {
		white-space: nowrap;
		display: block!important;
		overflow: auto;
	}
	.isures-barpage--wrap > label {
		display: inline-block;
		margin-right: 8px;
	}
	.isures-filter--wrap > div {
		margin-bottom: 10px;
		display: block;
		text-align: left;
	}
	.multi-child--wrap .param-col{flex-basis: 50%}
	.isures-catechild--drop{top: 30px}
	span.choosedfilter {
		display: block;
		white-space: nowrap;
		overflow: auto;
		text-align: left;
	}
	.nav-vertical .menu-item i {
		color: #000;
		font-size: 16px!important;
		min-width: 25px;
		opacity: 1;
	}
	.nav-vertical .menu-item img {
		max-width: 25px;
		padding: 0 2px;
	}
	/* mobile menu */
	div#main-menu.mobile-sidebar li:not(.header-social-icons) a {
		text-transform: capitalize;
		color: #000;
		padding: 10px 15px;
		font-size: 16px;
	}
	div#main-menu.mobile-sidebar li {
		border: none;
	}
	div#main-menu.mobile-sidebar .sidebar-menu > ul > li.has-child {
		border-bottom: 1px solid #e0e6e65e;

	}
	div#main-menu.mobile-sidebar .nav-slide-header .toggle {
		color: #111;
		opacity: 1;
	}
	div#main-menu.mobile-sidebar li.nav-slide-header{    border-bottom: 5px solid #d5dbdb;}
	div#main-menu.mobile-sidebar button.toggle i{font-size: 1em}
	.off-canvas-right .mfp-content, .off-canvas-left .mfp-content{opacity: 1; background: #fff; box-shadow: none; width: 99%}

	.mobile-nav > li.nav-icon > a{
		padding: 0!important;
	}
	.mobile-nav > li.nav-icon > a .menu-title{
		display: inline-block!important;
		font-size: 9px;
		margin: 0;
	}
	.row.category-page-row{padding-top: 0}
/* 	.loading-snip{top: 48px} */
	.isures-prod--slider .flickity-prev-next-button{width: 34px!important}
	.isures-prod--slider .flickity-button.flickity-prev-next-button.previous{
		left: -10px
	}
	.isures-prod--slider .flickity-button.flickity-prev-next-button.next{right: -10px}
	.isures-tab--wrap ul.nav-steps--wrap {
		display: flex;
	}
	.isures-tab--wrap ul.nav-steps--wrap li:not(:last-child):after {
		width: 50px;
		height: 50px;
	}
	.isures-tab--wrap ul.nav-steps--wrap li {
		height: 50px;
		line-height: 50px;
	}
	.isures-tab--wrap .step-label , .nav-steps--wrap li:after{
        display: none;
    }
}
/* style only PC */
@media screen and (min-width: 1023px){
	#pic360{
	margin-left: 225px;}	
.iconyoutube {
   margin-left: 145px;}
	.entry-content{font-size:18px;}
	.menu-cate1{flex-wrap:wrap;}
	.menu-cate a{ margin-left: 14px;}
	.isures-slider--captions .item{
		max-width: 20%;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
	}
	.right-column .col.small-12.large-12{    padding: 0 15px 0px;
}
	.banner-pc-right .img{    margin-bottom: 7px!important;}
	.header-main .logo a{    margin-top: 13px;}
	.category__image {
    align-self: center;
    width: 30%;
    max-width: 100px;
    min-width: 100px;
}

	.isures-global--prod_resp .box-text{font-size:12px;}
	.isures-global--prod_resp .product-small.col {
    width: 19%!important;
    max-width: 19%!important;
    display: inline-block;
    padding: 6px!important;
}
	.th-min img{
    width: 70px;
    height: 70px;
    top: -46px;
    left: 80px;
  }
	.price-wrapper del span.woocommerce-Price-amount.amount {color: #d24949!important; font-size: 14px!important}
	.row.isures-row--scroll > .col {
    display: inline-block;
    width: 19%;
    max-width: 19%;
    padding: 6px!important;
}
	.th-min2 img{width: 204px;
    height: 204px;
    left: 50px;
		    margin-top: -82px;
    border: 1px solid #b9b9b9;
    border-radius: 4px;
    overflow: hidden;}
	.isures-gift--promo_title {
    font-size: 14px!important;
    font-weight: 700;   
}
	.gioi-thieu-nn{margin-top: -60px;
    font-size: 20px;}
	.th-min2{margin-left:250px!important;
font-size:19px;}
	.isures-get--pa{    margin-left: 10px;}
.isures-nav--wrap .viewallcat{justify-content: flex-end!important;}
	.product-small .price-wrapper>.price{font-size:15px;}
	#isures-combo--wrap .isures-thumb {
		max-width: 150px;}
	.isures-slider .flickity-page-dots{display: none}
	.isures-global--pdright{padding-right: 0!important}
	.isures-property--wrap .isures-catechild--drop {
		min-width: 600px;
			left: -344px;
	}
}
