/**
 * Theme Name: Cardina 2024
 * Description: This is a child theme for Cardina 2024
 * Author: MuaTheme
 * Template: flatsome
 * Version: 1.0.0
 */
/**
 * Global
 */
p {
  margin-bottom: 10px;
  font-size: 14px;
}

a {
  text-decoration: none;
  outline: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.row-dashed .col:before,
.row-solid .col:before,
.row-dashed .col:after,
.row-solid .col:after {
  border-color: #f3f3f3;
}

/* Form */
select, input, textarea,
.mh-input {
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
}

input::placeholder,
textarea::placeholder,
select.mh-input::placeholder,
input.mh-input::placeholder,
input.mh-input[type='date']::placeholder {
  font-weight: 300;
}

.nav-dark .is-outline,
.dark .nav>li>a,
.dark .nav>li.html,
.dark .nav-vertical li li.menu-item-has-children>a,
.dark .nav-vertical>li>ul li a,
.nav-dropdown.dark>li>a,
.nav-dropdown.dark .nav-column>li>a,
.nav-dark .nav>li>a,
.nav-dark .nav>li>button,
.dark, .dark p, .dark td,
.absolute-footer.dark {
  color: #fff;
}

.wpcf7-form {
  margin-bottom: 0;
}

.wpcf7-response-output {
  font-size: 14px;
  line-height: 1.3;
  padding: 5px 10px !important;
  margin: 2em 0 0 !important;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 14px;
}

.wpcf7-spinner {
  display: none;
}

.has-dropdown .icon-angle-down {
  opacity: 1;
}

[data-icon-label]::after {
  top: -2px;
}

/* UX Theme */
.mh-col-no-divider .is-divider {
  display: none;
}

.icon-box-img svg, .icon-box-img img {
  padding: 0;
}

/* Title */
.mh-title-simple {
  padding: 0;
}

.mh-title-simple b {
  display: none;
}

.mh-title-simple .section-title,
.mh-title-simple .section-title-main {
  border: 0;
  padding: 0;
  margin: 0;
}

.mh-title-simple.center .section-title {
  justify-content: center;
}

.mh-title-simple.right .section-title {
  justify-content: flex-end;
}

.mh-title-simple.bold .section-title,
.mh-title-simple.bold .section-title-main {
  font-weight: 700;
}

.mh-title-simple.initial .section-title-main {
  text-transform: initial;
  position: relative;
  font-weight: normal;
}

/* Breadcrumbs */
.mh-breadcrumbs .page-title {
  background-color: transparent !important;
  font-size: 14px;
}

.mh-breadcrumbs .page-title-bg {
  display: none;
}

.mh-breadcrumbs .page-title-inner,
.mh-breadcrumbs .title-breadcrumbs {
  padding: 0;
}

.mh-breadcrumbs .woocommerce-breadcrumb,
.mh-breadcrumbs .woocommerce-breadcrumb span,
.mh-breadcrumbs .woocommerce-breadcrumb a {
  color: #252a2b;
  text-shadow: none;
  -moz-text-shadow: none;
  -webkit-text-shadow: none;
  -o-text-shadow: none;
  font-weight: 400;
  font-size: 13px;
  opacity: 1;
  text-align: left;
  line-height: 1.3;
  text-transform: initial;
}

.mh-breadcrumbs .woocommerce-breadcrumb,
.mh-breadcrumbs .woocommerce-breadcrumb a:hover {
  color: #777;
  opacity: 1;
}

/* Pagination */
.nav-pagination>li {
  margin: 0 2px !important;
}

.nav-pagination>li>span.current,
.nav-pagination>li>a:hover,
.nav-pagination>li>span,
.nav-pagination>li>a {
  border: 0;
  line-height: 32px;
  min-height: 35px;
  min-width: 35px;
  font-size: 15px;
  opacity: 0.4;
  background-color: transparent !important;
  color: #252a2b;
}

.nav-pagination>li>a:hover,
.nav-pagination>li>span.current {
  opacity: 1;
}

/* Slide */
.flickity-page-dots .dot,
.slider-nav-dots-simple .flickity-page-dots .dot {
  border-color: #d6d6d6;
  background-color: #d6d6d6;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.flickity-page-dots .dot.is-selected {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

/**
 * Ajax loading
 */
 .before-ajax {
  display: none !important;
}

.pl {
  width: 6em;
  height: 6em;
}

.pl__ring {
  animation: ringA 2s linear infinite;
}

.pl__ring--a {
  stroke: #f42f25;
}

.pl__ring--b {
  animation-name: ringB;
  stroke: #f49725;
}

.pl__ring--c {
  animation-name: ringC;
  stroke: #255ff4;
}

.pl__ring--d {
  animation-name: ringD;
  stroke: #f42582;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  body {
    background: #17181c;
  }
}

/* Animations */
@keyframes ringA {
  from, 4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%, 54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%, to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}

@keyframes ringB {
  from, 12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%, 62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%, to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%, 58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringD {
  from, 8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%, 50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

/**
 * Header
 */
/* Layout */
#masthead>.header-inner>#logo {
  width: 15%;
  margin: 0;
}

#masthead>.header-inner>.flex-left.hide-for-medium {
  max-width: 60%;
  margin: 0;
}

#masthead>.header-inner>.flex-right.hide-for-medium {
  width: 25%;
  margin: 0;
}

#masthead>.header-inner>.flex-left.hide-for-medium>.header-nav {
  justify-content: center;
}

#masthead>.header-inner>.flex-right.hide-for-medium>.header-nav {
  justify-content: space-between;
}

/* Logo */
#logo img {
  max-height: 65px !important;
}

/* Cart */
.cart-item>.header-cart-link {
  flex-direction: column-reverse;
  line-height: initial !important;
}

.cart-item>.header-cart-link .header-cart-icon {
  margin: 0;
}

.cart-item>.header-cart-link .header-cart-title {
  letter-spacing: initial;
  text-transform: initial;
  font-weight: 500;
  font-size: 12px;
  color: #1f1f1f;
}

.woocommerce-mini-cart__empty-message {
  font-size: 14px;
}

ul.product_list_widget li a:not(.remove),
ul.product_list_widget li dl,
ul.product_list_widget li .quantity {
  font-size: 14px;
  line-height: 1.3;
  text-transform: initial;
  opacity: 1;
}

.widget_shopping_cart .button {
  font-weight: normal;
}

a.remove, a.icon-remove {
  border-width: 1px;
  line-height: 21px !important;
}

/* Search */
.header-search-form-wrapper .form-flat input:not([type=submit]) {
  border-color: #ececec;
  background-color: #fff;
  font-size: 14px;
  height: 40px;
  padding-left: 40px;
}

.header-search-form-wrapper .form-flat .flex-col:last-of-type {
  margin-left: 0;
  padding: 0;
  position: absolute;
  left: 6px;
  top: 5px;
}

.header-search-form-wrapper .form-flat .flex-col:last-of-type .button i {
  color: #c5cee0;
  font-size: 15px;
}

/* Menu */
#masthead .header-nav>li {
  margin: 0 8px;
}

#masthead .header-nav>li>a {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  border-bottom: 2px solid #ffffff;
}

#masthead .header-nav>li:hover>a {
  border-bottom: 2px solid #000000;
}

/* Dropdown */
.nav-dropdown {
  color: #252a2b;
}

/**
 * Footer
 */
/* Main */
.footer-title * {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}

.mh_col-footer a,
.mh_col-footer .text {
  font-size: 14px !important;
}

.mh_col-footer a:hover,
.mh_col-footer a:focus {
  color: #6ec7b3 !important;
}

.mh_col-footer p i {
  font-size: 14px;
  margin-right: 7px;
  position: relative;
  top: 1px;
}

.mh_col-footer .icon-box-img {
  margin-bottom: 10px;
}

.mh_col-footer .ux-menu .ux-menu-link__link {
  padding: 0 0 8px 15px;
  min-height: auto;
  position: relative;
}

.mh_col-footer .ux-menu .ux-menu-link__link::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  left: 0;
  opacity: 1;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  top: 10px;
  margin: auto;
}

.absolute-footer {
  padding: 12px 0;
}

.copyright-footer {
  font-size: 13px;
}

.mh_col-footer .wpcf7-form input[type="email"] {
  height: 45px;
  font-size: 14px;
  border: 1px solid #e7e7e7;
  padding: 0 15px;
  color: #5c5c5c;
}

.mh_col-footer .wpcf7-form .wpcf7-submit {
  height: 45px;
  font-size: 14px;
  border: 0;
  margin: 0 !important;
  text-transform: initial;
  min-width: 60px;
  background-color: #000;
}

.mh_col-footer .social-icons {
  display: block;
  text-align: right;
}

.mh_col-footer .social-icons>span {
  font-size: 18px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  padding: 0;
}

.mh_col-footer .social-icons>a {
  margin: 0 0 8px 8px;
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.mh_col-footer .social-icons>a i {
  font-size: 13px;
  top: 0;
}

.mh_block-sales>.col-inner>.icon-box {
  display: inline-flex;
}

.mh_block-sales>.col-inner>.icon-box .icon-box-img {
  margin-bottom: 0;
}

/**
 * Blog
 */
/* Global */
.blog-wrapper .is-divider {
  display: none;
}

.blog-wrapper>.row {
  max-width: 1760px !important;
}

.blog-wrapper>.row>.col {
  padding: 0 15px 30px;
}

.entry-meta::before,
.post-meta::before {
  content: "";
  font-family: "fl-icons" !important;
  font-display: block;
  speak: none !important;
  margin: 0;
  padding: 0;
  display: inline-block;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  position: relative;
  color: #757575;
  font-size: 12px;
  margin-right: 3px;
}

/* Archive */
.blog-archive {
  padding-top: 0;
}

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

.blog-archive .archive-page-header .page-title {
  margin: 0;
  text-align: left;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: initial;
  text-transform: initial;
}

.blog-archive .archive-page-header .col {
  padding-bottom: 20px;
}

.blog-archive .large-9.col .post-item,
.blog-archive .large-9.col .post-item>.col-inner {
  padding-bottom: 20px;
}

.blog-archive .large-9.col .post-item>.col-inner {
  border-bottom: 1px solid #ebecf0;
}

.blog-archive .large-9.col .post-item:last-child>.col-inner {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-archive .large-9.col .post-item .box-image {
  width: 32% !important;
}

.blog-archive .large-9.col .post-item .box-image img {
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
}

.blog-archive .large-9.col .post-item:hover .box-image img {
  transform: scale(1.26);
  -webkit-transform: scale(1.26);
  -ms-transform: scale(1.26);
  -o-transform: scale(1.26);
  -moz-transform: scale(1.26);
  opacity: 0.8;
}

.blog-archive .large-9.col .post-item .box-text {
  vertical-align: middle;
  padding: 0 0 0 30px;
}

.blog-archive .large-9.col .post-item .box-text .box-text-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.blog-archive .large-9.col .post-item .post-title {
  font-size: 18px;
  color: #000;
  line-height: 1.45;
  margin: 0 0 10px;
  order: 1;
}

.blog-archive .large-9.col .post-item .from_the_blog_excerpt {
  margin: 0 0 10px;
  font-size: 16px;
  order: 2;
}

.blog-archive .large-9.col .post-item .post-meta {
  margin: 0;
  color: #757575;
  font-size: 13px;
  order: 3;
}

.blog-archive .large-9.col .post-item .post-meta::before {
  font-size: 11px;
}

/* Sidebar */
.post-sidebar .widget-area aside.widget {
  margin-bottom: 40px;
}

.post-sidebar .widget-area aside.widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.post-sidebar .widget-title span {
  line-height: 1.2;
  font-size: 18px;
  padding: 0 0 12px;
  margin: 0 0 15px;
  text-transform: initial;
  display: block;
  letter-spacing: initial;
  border-bottom: 1px solid #e7e7e7;
}

.widget_product_search .searchform {
  margin-bottom: 0;
}

.widget_product_search .searchform>.flex-row {
  border: 1px solid #ebebeb;
  border-radius: 20px;
  -o-border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  overflow: hidden;
}

.widget_product_search .widget-title {
  display: none;
}

.widget_product_search input,
.widget_product_search .ux-search-submit {
  border: 0;
  font-size: 14px;
}

.widget_product_search .ux-search-submit {
  background-color: var(--primary-color) !important;
  min-width: 31px;
  min-height: 31px;
  font-size: 12px;
  border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  right: 2px;
}

.widget_product_search .searchform .autocomplete-suggestion img+.search-name {
  font-size: 13px;
}

ul.menu>li ul,
.widget>ul>li ul {
  border-color: #e7e7e7;
}

.widget_nav_menu ul>li>a {
  display: block;
  line-height: 1.3;
  padding: 12px 0;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}

.widget_nav_menu ul>li:first-child>a {
  padding-top: 0;
}

.widget_nav_menu ul>li+li {
  border-top: 1px dashed #e7e7e7;
}

.widget_nav_menu ul>li>a {
  font-size: 15px;
  position: relative;
}

.widget_nav_menu ul>li.active>a {
  font-weight: normal;
  color: #ffb901;
}

.widget_nav_menu .sub-menu>li>a {
  font-size: 13px;
  text-transform: initial;
  display: block;
  line-height: 1.16;
  padding: 10px 0;
}

.flatsome_recent_posts .recent-blog-posts-li {
  border: 0;
  margin: 0 0 15px;
  border-bottom: 1px #efefef dotted;
  padding: 0 0 15px;
}

.flatsome_recent_posts .recent-blog-posts-li:last-child {
  margin-bottom: 0;
  border: 0;
  padding: 0;
}

.flatsome_recent_posts .recent-blog-posts {
  padding: 0;
}

.flatsome_recent_posts .recent-blog-posts>.flex-col.mr-half {
  margin-right: 10px;
}

.flatsome_recent_posts .recent-blog-posts a {
  color: #252a2b;
  font-size: 14px;
  margin: 0;
  max-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.3;
}

.flatsome_recent_posts .recent-blog-posts .badge {
  height: 4em;
  width: 8em;
  overflow: hidden;
}

.flatsome_recent_posts .recent-blog-posts .badge .badge-inner {
  border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

/* Single */
.blog-single {
  padding-top: 0;
}

.blog-single .post-sidebar .widget-area {
  border: 0;
}

.blog-single article.post {
  margin: 0;
}

.blog-single .entry-header .entry-header-text {
  padding-bottom: 0;
}

.blog-single .entry-header .entry-category {
  display: none;
}

.blog-single .entry-header .entry-meta {
  font-size: 13px;
  color: #757575;
  line-height: 1.3;
}

.blog-wrapper.blog-single .entry-image,
.blog-single .entry-content {
  padding: 30px 0 0;
  max-width: 840px;
  margin: auto;
}

.blog-wrapper.blog-single .entry-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 500;
}

.blog-wrapper.blog-single .entry-meta span,
.blog-wrapper.blog-single .entry-meta a {
  font-size: 13px;
  color: #757575;
  opacity: 1;
  text-transform: capitalize;
}

.blog-wrapper.blog-single .entry-meta a:hover {
  color: #FBDA00;
}

.blog-wrapper.blog-single .entry-content * {
  font-size: 14px;
}

.blog-wrapper.blog-single .entry-content h1,
.blog-wrapper.blog-single .entry-content h2,
.blog-wrapper.blog-single .entry-content h3,
.blog-wrapper.blog-single .entry-content h4,
.blog-wrapper.blog-single .entry-content h5,
.blog-wrapper.blog-single .entry-content h6 {
  margin: 0 0 5px;
}

.blog-wrapper.blog-single .entry-content h1 {
  font-size: 20px;
}

.blog-wrapper.blog-single .entry-content h2 {
  font-size: 18px;
}

.blog-wrapper.blog-single .entry-content h3,
.blog-wrapper.blog-single .entry-content h4,
.blog-wrapper.blog-single .entry-content h5,
.blog-wrapper.blog-single .entry-content h6 {
  font-size: 16px;
}

.blog-wrapper.blog-single .blog-share {
  margin: 20px 0;
}

.blog-wrapper.blog-single .blog-share a {
  margin-bottom: 0;
}

.blog-wrapper.blog-single .navigation-post .next-prev-nav {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.next-prev-nav .flex-col+.flex-col {
  border-left: 1px solid #e7e7e7;
}

.blog-wrapper.blog-single .navigation-post .next-prev-nav .flex-col {
  padding: 25px 0;
}

.blog-wrapper.blog-single .navigation-post a {
  font-size: 13px;
}

.blog-wrapper.blog-single .navigation-post a i {
  font-size: 20px;
  margin: 0 5px !important;
}

.blog-wrapper.blog-single .html-before-comments {
  margin-bottom: 0;
}

.related-title {
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin: 0 0 25px;
}

.related-title * {
  display: inline-block;
  color: #fff;
  background-color: #a70707;
  margin: auto;
  text-transform: uppercase;
  position: relative;
  padding: 8px 15px;
  font-size: 16px;
  line-height: 1.2;
}

.related-title *::after {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #a70707;
  position: absolute;
  bottom: -5px;
  right: 45%;
}

/* TOC */
#toc_container {
  border-radius: 6px;
  -o-border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 16px 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  width: 100% !important;
}

#toc_container p.toc_title {
  text-align: left;
  font-size: 15px;
}

#toc_container span.toc_toggle,
#toc_container span.toc_toggle a {
  font-size: 13px;
  color: #bcbdc1;
  font-weight: 600;
}

#toc_container span.toc_toggle a {
  color: #c00113 !important;
}

#toc_container p.toc_title+ul.toc_list {
  margin-top: 10px;
}

#toc_container ul li a {
  display: block;
  line-height: 1.45;
  padding: 4px 0;
}

#toc_container ul li a::before {
  content: '';
  display: inline-block;
  background-color: #c00113;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  position: relative;
  margin-right: 10px;
  bottom: 2px;
}

/* Grid blog */
.mh-grid-blog .post-title {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: normal;
}

.mh-grid-blog .post-title:hover {
  color: var(--primary-color);
}

.mh-grid-blog .post-meta i {
  font-size: 12px;
}

.mh-grid-blog .post-meta {
  margin: 0;
  font-size: 13px;
  color: #848484;
}

/**
 * WooCommerce
 */
/* Global */
del span.amount {
  opacity: 1;
}

.price>span.amount,
span.amount,
ins span.amount {
  font-weight: normal;
  color: #ff0000;
}

.price {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
}

.price ins span {
  margin-right: 2px;
}

.woocommerce-no-products-found {
  font-size: 16px;
}

.message-wrapper {
  margin-bottom: 0 !important;
}

.message-container {
  background-color: #f7f7f7;
  padding: 10px 15px !important;
  font-size: 14px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  max-width: 1730px !important;
}

.message-container.success-color {
  color: var(--primary-color);
}

.message-container i {
  font-size: 13px;
  margin-right: 7px;
}

.badge-container {
  margin: 0;
  right: 5px;
  left: auto;
  top: 5px;
}

.badge-inner.on-sale {
  font-size: 12px;
  padding: 0;
  border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
  max-width: 40px;
  letter-spacing: 0.5px;
}

.badge-inner.on-sale span {
  white-space: normal;
  line-height: 1.45;
  font-weight: 600;
  display: inline-block;
}

ul.menu>li>a,
ul.menu>li>span:first-child,
.widget>ul>li>a,
.widget>ul>li>span:first-child {
  position: relative;
}

.product-categories>li>a::before,
.woocommerce-widget-layered-nav-list>li>a::before {
  content: "" !important;
  margin-right: 7px !important;
  font-size: 18px;
  border: solid 1px #cedadd !important;
  line-height: 40px !important;
  position: absolute !important;
  top: 5px !important;
  height: 16px !important;
  width: 16px !important;
  left: 0;
  opacity: 1 !important;
  background-color: #fff;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}

.woocommerce-widget-layered-nav-list>li.chosen>a,
.woocommerce-widget-layered-nav-list>li.chosen>.count {
  color: var(--primary-color);
  font-weight: normal;
}

.product-categories>li:hover>a::before,
.woocommerce-widget-layered-nav-list>li:hover>a::before {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color);
  color: #fff;
}

.product-categories>li.active>a::before,
.woocommerce-widget-layered-nav-list>li.chosen>a::before {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color);
}

.product-categories>li:hover>a::after,
.product-categories>li.active>a::after,
.woocommerce-widget-layered-nav-list>li:hover>a::after,
.woocommerce-widget-layered-nav-list>li.chosen>a::after {
  content: "";
  font-family: "fl-icons" !important;
  font-display: block;
  speak: none !important;
  margin: 0;
  padding: 0;
  display: inline-block;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  font-size: 11px;
  line-height: 1.2;
  color: #fff;
  left: 2px;
  position: absolute;
  top: 6px;
}

.boder-vocher {
  width: 10px;
  height: auto;
  overflow: hidden;
  margin-left: -1px;
}

.boder-vocher .dost {
  border: 1px solid #d3cecf;
  height: 9px;
  width: 12px;
  margin: 1px;
  border-radius: 44%;
  -webkit-border-radius: 44%;
  -moz-border-radius: 44%;
  -o-border-radius: 44%;
  margin-left: -8px;
  background: #f5f5f5;
  display: block;
}

/* Archive */
.shop-page-title {
  display: none;
}

.mh_head-product-cat > .img {
  margin-bottom: 30px !important;
}

.mh_head-product-cat > h1 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.mh_filter-box {
  margin: 15px 0 0;
  align-items: center;
}

.mh_filter-icon {
  max-width: 30%;
}

.mh_filter-icon p img {
  max-width: 18px;
}

.mh_filter-icon p::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #e7e7e7;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

.mh_filter-shop {
  margin-left: -10px;
  margin-right: -10px;
  align-items: flex-start;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  flex-wrap: wrap;
}

.mh_filter-shop > aside.widget {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 0;
  padding: 0 9.8px;
  position: relative;
}
.mh_filter-shop.filter_col_2 > aside.widget, .mh_filter-shop.filter_col_5 > aside.widget {
	
	 width: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}
.mh_filter-shop.filter_col_4 > aside.widget {
	
	 width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.mh_filter-shop.filter_col_3 > aside.widget {
	
	 width: 33.3333%;
  -ms-flex-preferred-size: 33.3333%;
  flex-basis: 33.3333%;
}
.mh_filter-shop .widget_product_categories .widget-title,
.mh_filter-shop .woocommerce-widget-layered-nav .widget-title,
.mh_filter-shop .devvn_woocommerce_price_list_filter .widget-title,
.mh_filter-shop .woocommerce-widget-order-nav .widget-title {
  display: block;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 15px;
  border: 1px solid #e7e7e7;
  cursor: pointer;
  line-height: 1.4;
  letter-spacing: initial;
  text-transform: inherit;
}

.mh_filter-shop .widget_product_categories .widget-title::after,
.mh_filter-shop .woocommerce-widget-layered-nav .widget-title::after,
.mh_filter-shop .devvn_woocommerce_price_list_filter .widget-title::after,
.mh_filter-shop .woocommerce-widget-order-nav .widget-title::after {
  content: "";
  font-family: "fl-icons" !important;
  font-display: block;
  speak: none !important;
  margin: 0;
  padding: 0;
  display: inline-block;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1.2;
  color: #252a2b;
  font-size: 17px;
  position: absolute;
  right: 10px;
}

.mh_filter-shop .widget-title img {
  margin-right: 6px;
}

.mh_filter-shop .woocommerce-widget-layered-nav-list,
.mh_filter-shop .woocommerce-widget-order-nav-list,
.mh_filter-shop .product-categories {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  top: calc(100% + 10px);
  z-index: 100;
  border: 1px solid #e7e7e7;
  border-top: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px 15px;
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
}

.mh_filter-shop > aside.devvn_woocommerce_price_list_filter:hover .woocommerce-widget-layered-nav-list,
.mh_filter-shop > aside.woocommerce-widget-layered-nav:hover .woocommerce-widget-layered-nav-list,
.mh_filter-shop > aside.widget_product_categories:hover .product-categories,
.mh_filter-shop > aside.woocommerce-widget-order-nav:hover .woocommerce-widget-order-nav-list {
  pointer-events: auto;
  visibility: visible;
  top: 100%;
  opacity: 1;
}

.mh_filter-shop > aside.woocommerce-widget-order-nav .woocommerce-result-count {
  display: none;
}

.mh_filter-shop > aside.woocommerce-widget-order-nav form,
.mh_filter-shop > aside.woocommerce-widget-order-nav select {
  margin: 0;
  width: 100%;
  border-color: #e7e7e7;
  font-size: 13px;
  font-weight: 600;
}

.mh_filter-shop > aside.woocommerce-widget-order-nav select {
  padding: 10px 15px 10px 35px;
  line-height: 1.3;
  min-height: 40.19px;
  background-repeat: no-repeat;
  background-position: 10px 11px;
  background-image: url('assets/img/from-a-to-z.png');
}

.mh_filter-shop > aside.widget ul li {
  border: 0;
}

.mh_filter-shop > aside.widget ul li a {
  font-size: 14px;
  padding: 3px 0;
  position: relative;
  font-weight: normal;
}

.mh_filter-shop > aside.widget ul li:hover a ,
.mh_filter-shop > aside.widget ul li:hover span {
  color: var(--primary-color);
}

.mh_filter-shop > aside.widget ul li .count {
  font-size: 13px;
  opacity: 1;
  line-height: 1;
}

.mh_filter-shop > aside.widget > ul:not(.woocommerce-widget-order-nav-list) > li > a {
  padding-left: 25px;
}

.mh_active-filter ul li {
  margin: 10px 10px 0px 0;
}

.mh_active-filter ul li a {
  border: 1px solid #dadada !important;
  padding: 2px 32px 3px 10px !important;
  font-size: 13px !important;
  color: #5d5d5d;
  border-radius: 12px !important;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  -o-border-radius: 12px !important;
  position: relative;
  background-color: #fff !important;
  opacity: 1 !important;
}

.mh_active-filter ul li a:hover {
  color: #5d5d5d;
}

.mh_active-filter ul li span {
  color: #5d5d5d;
  font-weight: 600;
}

.mh_active-filter ul li.chosen a:before {
  opacity: 1;
  color: #5d5d5d;
  position: absolute;
  right: 12px;
  font-size: 15px;
  margin: 0;
}

.mh_cat-child {
  margin-bottom: 30px;
}

.mh_cat-child li {
  margin: 0 3px 3px;
}

.mh_cat-child li a,
.mh_cat-child li a:hover {
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 5px 5px 4px;
  background-color: #cf2027;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
  white-space: nowrap;
  font-weight: normal !important;
  line-height: 1.3;
}

.mh_counpon-box {
  background-color: #f5f5f5;
  padding: 15px 5px !important;
  margin: 0 0 30px !important;
}

.counpon_item {
  background: #fff4f4;
  justify-content: flex-start;
  border: 1px solid #f8d0d3;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  border-left: none;
  align-items: center;
  box-shadow: 0.125rem 0.125rem 0.3125rem rgb(0 0 0 / 7%);
  -webkit-box-shadow: 0.125rem 0.125rem 0.3125rem rgb(0 0 0 / 7%);
  -moz-box-shadow: 0.125rem 0.125rem 0.3125rem rgb(0 0 0 / 7%);
  -o-box-shadow: 0.125rem 0.125rem 0.3125rem rgb(0 0 0 / 7%);
}

.counpon_item .dost {
  border-color: #f8d0d3;
}

.counpon_item .counpon-content {
  padding: 15px 20px;
  border-right: 1px dotted #ccc;
  min-width: 75%;
  margin-left: -5px;
}

.counpon_item .counpon-save {
  min-width: 25%;
}

.counpon_item .counpon-content p {
  line-height: 1.36;
}

.counpon_item .counpon-content .title {
  font-weight: 600;
  font-size: 17px;
  color: #c00113;
  line-height: 1.45;
  letter-spacing: initial;
}

.counpon_item .counpon-content .note {
  color: #ff0000;
}

.counpon_item .counpon-content .out-date {
  font-size: 9px;
  margin: 10px 0 0;
}

.counpon_item .button {
  border: 0;
  padding: 0;
  margin: 0;
  min-height: auto;
  line-height: initial;
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

.counpon_item .button span {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: initial;
  line-height: 1.3;
  min-height: 28.3px;
  background-color: #ff0000;
  margin: 0;
  text-transform: initial;
  border: 1px solid #ff0000;
  z-index: 1000;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counpon_item .button.copied {
  min-height: 28.03px;
  line-height: 28.03px;
  height: 28.03px;
}

.counpon_item .button.copied span {
  background-color: #fff;
  color: #ff0000;
  border-color: #ff0000;
  font-size: 11px;
  bottom: 1px;
}

.counpon_item .button b {
  bottom: -15px;
  position: relative;
  display: none;
}

.counpon_item .button b img {
  width: 24px;
  height: 26px;
  margin-bottom: 1px;
}

.counpon_item .button.copied b {
  bottom: 32px;
  position: relative;
  display: block;
  animation: mymove 1s;
  color: #c00113;
  font-size: 13px;
}

@keyframes mymove {
  0% {
    bottom: -15px;
  }

  100% {
    bottom: 15px;
  }
}

.category-page-row {
  padding-top: 15px;
}

/* Box product */
.product-small.box {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.product-small.box:hover {
  -o-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}

.product-small .box-text-products {
  padding: 12px 10px 5px;
  display: flex;
  flex-direction: column;
}

.product-small .box-text-products .title-wrapper {
  order: 1;
}

.product-small .box-text-products .price-wrapper {
  order: 2;
}

.product-small .box-text-products .ux-swatches {
  order: 3;
  margin: 6px 0 0;
}

.product-small .box-text-products .name.product-title {
  margin: 0 0 8px;
}

.product-small .box-text-products .name.product-title a {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  min-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-small .box-text-products .price>span.amount,
.product-small .box-text-products ins span.amount {
  color: #c70000;
  font-weight: 500;
}

.product-small .box-text-products del span.amount {
  font-size: 13px;
}

.product-small .box-text-products .ux-swatches-in-loop .ux-swatch {
  overflow: hidden;
  padding: 0;
}

.product-small .box-text-products .ux-swatches .ux-swatch--image,
.product-small .box-text-products .ux-swatches .ux-swatch--color {
  width: 24px;
  height: 24px;
}

.product-small .box-text-products .ux-swatches .ux-swatch:not(.selected) {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

/* Sinlge */
.mh_product-gallery .badge {
  height: 42px;
  width: 40px;
}

.mh_product-gallery .badge-inner.on-sale {
  background-color: #a70f07;
}

.mh_product-gallery .vertical-thumbnails {
  max-width: 60px;
  -ms-flex-preferred-size: 60px;
  flex-basis: 60px;
  padding: 0;
  position: absolute;
  height: 100%;
  left: 10px;
  top: 50px;
}

.mh_product-gallery .product-thumbnails .flickity-slider {
  max-width: 60px;
  left: 10px !important;
}

.mh_product-gallery .product-thumbnails a {
  border-color: #e7e7e7;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  overflow: hidden;
}

.mh_product-gallery .product-thumbnails img {
  opacity: 1;
}

.mh_product-gallery .zoom-button {
  border: 0;
  background-color: #fff;
  box-shadow: 0 1px 5px rgb(54 54 54 / 15%);
  -webkit-box-shadow: 0 1px 5px rgb(54 54 54 / 15%);
  -o-box-shadow: 0 1px 5px rgb(54 54 54 / 15%);
  -moz-box-shadow: 0 1px 5px rgb(54 54 54 / 15%);
  min-width: 35px;
  min-height: 35px;
}

.mh_product-gallery .zoom-button i {
  font-size: 14px;
  top: 0;
}

.mh_product-gallery .large-10 {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.mh_product-info .product-title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 500;
  color: #000000;
}

.mh_product-meta .woocommerce-product-rating,
.mh_product-meta .product_meta,
.mh_product-meta .product_meta span {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  position: relative;
}

.mh_product-meta .woocommerce-product-rating,
.mh_product-meta .product_meta span:not(:last-child) {
  margin-right: 18px;
}

.mh_product-meta .woocommerce-product-rating::after,
.mh_product-meta .product_meta span:not(:last-child)::before {
  border-left: 1px solid #888;
  content: "";
  height: 13px;
  right: -10px;
  position: absolute;
  top: 2px;
  width: 1px;
}

.mh_product-meta .product_meta a,
.mh_product-meta .product_meta .sku {
  color: var(--primary-color);
}

.mh_product-meta .star-rating {
  margin: 0;
  top: 1px;
  font-size: 14px;
}

.mh_product-meta .star-rating span {
  padding-top: 1em;
}

.mh_product-info .product-price-container {
  background-color: #f7f7f7;
  padding: 15px 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -moz-border-radius: 4px;
}

.mh_product-info .product-price-container .price {
  margin: 0;
}

.mh_product-info .product-price-container .price > span,
.mh_product-info .product-price-container .price ins span,
.mh_product-info .woocommerce-variation-price .price ins span {
  font-size: 25px;
  font-weight: 600;
  margin-right: 5px;
}

.mh_product-info .woocommerce-variation-price,
.mh_product-info .product-price-container .price del,
.mh_product-info .product-price-container .price del span,
.mh_product-info .woocommerce-variation-price .price del span {
  font-size: 18px;
}

.mh_product-info .icon-shipping {
  align-items: center;
  font-weight: bold;
}

.mh_product-info .icon-shipping p {
  margin: 0;
}

.mh_product-info .icon-shipping .icon-box-text {
  padding-left: 10px;
  position: relative;
  top: 1px;
}

.mh_product-info .variations {
  margin: 0;
}

.mh_product-info .variations tbody tr {
  display: block;
  padding: 10px 0;
}

.mh_product-info .variations tbody tr:not(:last-child) {
  border-bottom: 1px dotted #dfe0e1;
}

.mh_product-info .variations tbody tr th {
  padding: 0;
}

.mh_product-info .variations tbody tr th label,
.mh_product-info .variations tbody tr th .ux-swatch-selected-value {
  margin: 0 0 8px;
  font-size: 13px;
}

.mh_product-info .variations tbody tr th .ux-swatch-selected-value {
  color: var(--primary-color);
  font-weight: bold;
}

.mh_product-info .variations .ux-swatch--image,
.mh_product-info .variations .ux-swatch--color,
.mh_product-info .variations .ux-swatch--label {
  min-width: 40px;
  min-height: 40px;
  line-height: 40px;
  font-size: 12px;
  margin: 10px 8px 0 0;
  overflow: hidden;
  padding: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

.mh_product-info .variations .ux-swatch--label {
  border: 1px solid #e5e5e5;
}

.mh_product-info .variations .ux-swatch--image,
.mh_product-info .variations .ux-swatch--color {
  border: 3px solid #fff !important;
}

.mh_product-info .variations .ux-swatch--label.selected {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

.mh_product-info .variations .ux-swatch--image:hover,
.mh_product-info .variations .ux-swatch--color:hover,
.mh_product-info .variations .ux-swatch--image.selected,
.mh_product-info .variations .ux-swatch--color.selected {
  box-shadow: 0 0 0 0.1rem #808284 !important;
}

.mh_product-info .woocommerce-variation-price {
  /* border-top: 1px dotted #dfe0e1;
  padding: 10px 0; */
  border: 0;
  padding: 0;
}

.mh_product-info .quantity {
  margin: 10px 0;
}

.mh_product-info .quantity .button {
  background-color: #f3f4f4;
  border-color: #f3f4f4;
  color: #252a2b;
  min-width: 45px;
  min-height: 45px;
  line-height: 43px;
}

.mh_product-info .quantity .qty {
  min-height: 45px;
  border-color: #f3f4f4;
  line-height: 43px;
  min-width: 60px;
  font-size: 14px;
  color: #252a2b;
  font-weight: bold;
}

.mh_product-info .single_add_to_cart_button,
.mh_product-info .single_add_to_cart_button_quick {
  opacity: 1;
  display: block;
  font-size: 15px;
  line-height: 43px;
  min-height: 45px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -moz-border-radius: 2px;
  letter-spacing: 1px;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  border: 0;
  overflow: hidden;
  min-width: 340px;
  margin-bottom: 0;
  margin-right: 10px;
}

.mh_product-info .single_add_to_cart_button_quick {
  min-width: 170px;
  margin-right: 0;
}

.mh_product-info .single_add_to_cart_button i,
.mh_product-info .single_add_to_cart_button span,
.mh_product-info .single_add_to_cart_button_quick span {
  position: relative;
  z-index: 1;
}

.mh_product-info .single_add_to_cart_button:not(.loading)::after,
.mh_product-info .single_add_to_cart_button_quick::after {
  content: '';
  display: block;
  background-color: #c00113;
  position: absolute;
  left: -2px;
  top: 0;
  right: -2px;
  bottom: 0;
  z-index: 0;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -moz-border-radius: 2px;
}

/* .mh_product-info .single_add_to_cart_button:hover {
  border-color: #6ec7b3;
  background-color: #6ec7b3 !important;
} */

.mh_product-info .single_add_to_cart_button:not(.loading):hover::after,
.mh_product-info .single_add_to_cart_button_quick:hover::after {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.mh_product-content .product-tabs {
  border-bottom: 2px solid var(--primary-color);
}

.mh_product-content .product-tabs > li {
  margin: 0;
  min-width: 33.33333%
}

.mh_product-content .product-tabs > li > a {
  border: 0;
  padding: 8px 12px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #000000;
  background-color: #fff;
  line-height: 1.43;
}

.mh_product-content .product-tabs > li.active > a,
.mh_product-content .product-tabs > li > a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.mh_product-content .tab-panels {
  padding: 15px 10px 10px;
  border: 0;
}

.mh_product-content *:not(.star-rating) {
  font-size: 14px;
}

.mh_product-content h1,
.mh_product-content h2,
.mh_product-content h3 {
  margin: 0 0 5px;
}

.mh_product-content h1 {
  font-size: 26px;
}

.mh_product-content h2 {
  font-size: 22px;
}

.mh_product-content h3 {
  font-size: 18px;
}

.mh_product-content h4,
.mh_product-content h5,
.mh_product-content h6 {
  font-size: 16px;
}

.mh_product-content img {
  margin-bottom: 10px;
}

.mh_product-content .review-form-inner {
  padding: 15px 20px;
}

.mh_product-content .comment-form p {
  margin-bottom: 0;
}

.mh_product-content .form-submit .submit,
.mh_product-content .woocommerce-noreviews {
  margin: 0;
}

.mh_product-content .form-submit .submit {
  font-weight: normal;
}

.mh_product-content .commentlist li .comment-text,
.mh_product-content .comment-list li .comment-text {
    padding: 0 1em;
}

.mh_product-content .star-rating,
.mh_product-content .star-rating span {
  margin: 0;
  font-size: 12px;
}

.mh_product-related .related {
  border: 0;
}

.mh_product-related .product-section-title-related {
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  padding: 0;
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: initial;
  color: #000000;
}

.mh_product-related .slider-nav-reveal .flickity-prev-next-button {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  background-color: transparent;
  width: 38px !important;
}

.mh_product-related .slider-nav-reveal .flickity-prev-next-button.next {
  right: 0 !important;
}

.mh_product-related .slider-nav-reveal .flickity-prev-next-button.previous {
  left: 0 !important;
}

.mh_product-related .slider-nav-reveal .flickity-prev-next-button svg {
  background-color: #fff;
  padding: 12px !important;
  border: 1px solid #e7e7e7 !important;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0.8) translateY(-50%);
  -ms-transform: scale(0.8) translateY(-50%);
  transform: scale(0.8) translateY(-50%);
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  left: 0;
}

.mh_product-related .slider-nav-reveal .flickity-prev-next-button:hover svg {
  -webkit-transform: scale(1) translateY(-50%);
  -ms-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
}

.mh_block-counpon .head-promotion {
  align-items: center;
  padding: 15px 0 0;
  border-top: 1px dotted #dfe0e1;
}

.mh_block-counpon .heading-promotion {
  font-size: 14px;
  line-height: 1.36;
  font-weight: bold;
  width: 30%;
}

.mh_block-counpon .list-promotion li {
  background-color: rgba(208, 1, 27, 0.08);
  padding: 4px 8px;
  margin: 0 3px 5px 3px;
  line-height: 1.1;
}

.mh_block-counpon .list-promotion li span {
  color: #d0011b;
  font-weight: 600;
  font-size: 12px;
}

.mh_block-counpon .list-promotion li::before,
.mh_block-counpon .list-promotion li::after {
  content: "";
  width: 6px;
  position: absolute;
  background-image: radial-gradient(#fff 2px, transparent 0);
  background-size: 6px 6px;
  background-position-x: -6px;
}

.mh_block-counpon .list-promotion li::before {
  left: -3px;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

.mh_block-counpon .list-promotion li::after {
  right: -3px;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

.mh_block-counpon .accordion {
  margin: 7px 0 0;
}

.mh_block-counpon .accordion-title,
.mh_block-counpon .accordion-title.active {
  padding: 0;
  font-size: 14px;
  border: 0;
  color: var(--primary-color);
  line-height: 1.6;
  background-color: transparent;
  font-weight: normal;
}

.mh_block-counpon .accordion-title .toggle {
  position: static;
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 1;
  font-size: 10px;
}

.mh_block-counpon .accordion-title .toggle i {
  top: 0;
}

#promotion_accordion-content {
  border-top: 1px solid #e7e7e7;
  padding: 10px;
  margin: 10px 0 0;
}

#promotion_accordion-content > p {
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 9px;
}

.list-promotion_save .promotion_item {
  border: 1px solid #ccc;
  margin: 0 0 10px;
}

.list-promotion_save .icon-box {
  align-items: center;
}

.list-promotion_save .icon-box-img .icon {
  max-width: 60px;
  border: 1px solid #ccc;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  margin: auto;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.list-promotion_save .icon-box-text {
  padding: 10px 20px;
  border-left: 1px solid #ccc;
}

.list-promotion_save .icon-box-text p {
  line-height: 1.36;
}

.list-promotion_save .icon-box-text .title {
  font-weight: bold;
  font-size: 16px;
  color: #000;
  line-height: 1.45;
}

.list-promotion_save .icon-box-text .out-date {
  color: #d80505;
  font-size: 12px;
  margin-top: 10px;
}

.list-promotion_save .icon-box-text .button {
  padding: 4px 12px;
  font-size: 14px;
  text-transform: initial;
  font-weight: normal;
  letter-spacing: initial;
  line-height: 1;
  min-height: 28.3px;
  min-width: 74px;
  background-color: #d20505;
  top: 35px;
  margin: 0;
  right: 20px;
}

.mh_product-content .review-form-inner {
  padding: 15px 20px;
}

.mh_product-content .comment-form p {
  margin-bottom: 0;
}

.mh_product-content .form-submit .submit,
.mh_product-content .woocommerce-noreviews {
  margin: 0;
}

.mh_product-content .form-submit .submit {
  font-weight: normal;
}

.mh_product-content .commentlist li .comment-text,
.mh_product-content .comment-list li .comment-text {
    padding: 0 1em;
}

.mh_product-content .star-rating,
.mh_product-content .star-rating span {
  margin: 0;
  font-size: 12px;
}

.mh_product-content #tab-description {
  overflow: hidden;
}

.mh_product-content #tab-description .read-more {
  z-index: 10;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding-bottom: 20px;
}

.mh_product-content #tab-description .read-less {
  padding: 20px 0;
}

.mh_product-content #tab-description .read-more .button,
.mh_product-content #tab-description .read-less .button {
  margin: 0;
  border-width: 1px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -o-border-radius: 50px;
  min-height: 46px;
  line-height: 44px;
  font-size: 14px;
  text-transform: initial;
  font-weight: normal;
}

.mh_product-content #tab-description .read-more .button i,
.mh_product-content #tab-description .read-less .button i {
  margin-left: 0;
  margin-right: 8px;
}

.mh_product-content #tab-description .read-more::before {
  height: 55px;
  margin-top: -55px;
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4) 15%, #fff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff00',endColorstr='#ffffff',GradientType=0);
  display: block;
}

/* Cart */
.cart_totals .product-name {
  border: 0;
  border-bottom: 1px solid #ececec;
}

/* ===== Page ===== */
.page-wrapper {
  padding-top: 0;
}

/**
 * Page: Homepage
 */
.mh_title-image .icon-box {
  align-items: center;
}

.mh_title-image .icon-box-img,
.mh_title-image .icon-box-text * {
  margin-bottom: 0;
}

.mh_title-image .icon-box-text {
  font-weight: bold;
}

/* Product category */
.mh_grid-product-cat {
  border: 1px solid #f3f3f3;
  overflow: visible;
}

.mh_grid-product-cat > .col:hover {
  box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px;
  -webkit-box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px;
  -moz-box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px;
  -o-box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px;
  cursor: pointer;
}

.mh_grid-product-cat .icon-box-text * {
  color: #11006f;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: initial;
}

.mh_grid-product-cat .icon-box:hover .icon-box-text * {
  color: var(--primary-color);
}

/* Product */
.mh-nav-product {
  margin: 0 0 6px;
}

.mh-nav-product li {
  margin: 0 7px 14px !important;
}

.mh-nav-product a.button {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  padding: 5px 10px;
  margin: 0;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 14px;
  text-transform: initial;
  font-weight: normal;
  letter-spacing: initial;
  line-height: 1;
  justify-content: center;
  min-height: 33px;
}

.mh-nav-product li.active a {
  color: #fff;
  background-color: var(--primary-color);
}

.no-product {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  margin: 0 0 20px;
  padding: 10px;
  background-color: #f9f9f9;
  color: #6ec7b3;
}

.mh_more-cat {
  margin: 15px 0 35px;
}

.mh_more-cat a {
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  padding: 11px 28px;
  line-height: normal;
  color: #fff;
  background-color: #6ec7b3;
  border: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  outline: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.mh_more-cat a::before {
  content: '';
  display: block;
  background-color: var(--primary-color);
  position: absolute;
  left: -2px;
  top: 0;
  right: -2px;
  bottom: 0;
  z-index: -1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.mh_more-cat a:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

.mh_more-cat a:hover::before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.mh_more-cat a span {
  font-weight: bold;
}

/* Blog */
.mh_blog-vertical .post-title {
  margin: 0 0 5px;
  font-weight: normal;
  font-size: 14px;
}

.mh_blog-vertical .post-meta {
  font-size: 12px;
  opacity: 1;
  color: #999;
}

.mh_blog-vertical .post-meta::before {
  font-size: 11px;
}

.mh_blog-vertical .is-link {
  font-weight: normal;
  border: 0;
  padding: 0;
  margin: 0;
}

/**
 * Page: Contact
 */
.mh_map p {
  margin-bottom: 0;
}

.mh_col-contact .contact-title h3,
.mh_col-contact .contact-title h4,
.mh_col-contact .contact-title h5,
.mh_col-contact .contact-title h6 {
  font-size: 25px;
  margin: 0 0 30px;
  line-height: 1.2;
}

.mh_col-contact .icon-box {
  align-items: center;
}

.mh_col-contact .icon-box .icon-box-text h3,
.mh_col-contact .icon-box .icon-box-text h4,
.mh_col-contact .icon-box .icon-box-text h5,
.mh_col-contact .icon-box .icon-box-text h6 {
  font-size: 14px;
  text-transform: initial;
  letter-spacing: initial;
  margin: 0;
  line-height: 1.36;
}

.mh_col-contact .icon-box .icon-box-text {
  padding-left: 15px;
}

.mh_col-contact .icon-box .icon-box-text p {
  margin: 0;
}

.mh_col-contact .icon-box .icon-box-text p a {
  color: var(--primary-color);
  font-weight: 500;
}

.mh_col-contact .icon-box-img .icon,
.mh_col-contact .icon-box-img .icon-inner {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 35px;
}

.mh_col-contact .icon-box-img .icon-inner {
    border: 1px solid #ddd;
}

.mh_col-contact .icon-box-img .icon-inner img {
  max-width: 12px;
}

.mh_col-contact .wpcf7-form input,
.mh_col-contact .wpcf7-form label,
.mh_col-contact .wpcf7-form textarea {
  margin: 0;
}

.mh_col-contact .wpcf7-form input,
.mh_col-contact .wpcf7-form textarea {
  color: #5c5c5c;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid #e7e7e7;
  font-size: 14px;
  line-height: 1;
}

.mh_col-contact .wpcf7-form input {
  height: 45px
}

.mh_col-contact .wpcf7-form input.wpcf7-submit {
  border: 0;
  color: #fff;
}

/* ===== Responsive ==== */
/**
 * Tablet + Mobile
 */
@media only screen and (min-width: 320px) and (max-width: 860px) {
  /* Global */
  .off-canvas-right .mfp-content,
  .off-canvas-left .mfp-content {
    width: 80%;
  }

  .widget {
    margin-bottom: 15px;
  }

  /* Header */
  .header-main {
    height: 70px !important;
  }

  #masthead > .header-inner > #logo {
    width: auto;
  }

  #wide-nav .header-search-form {
    padding: 0;
  }

  .header-search-form-wrapper .form-flat input:not([type=submit]) {
    height: 36px;
  }

  .header-search-form-wrapper .form-flat .flex-col:last-of-type {
    top: 3px;
  }

  /* Footer */
  .footer-title * {
    font-size: 16px;
  }

  .mh_col-footer p {
    margin: 0 0 8px
  }

  .mh_col-footer .wpcf7-form p {
    margin: 0;
  }

  .mh_col-footer .social-icons {
    text-align: left;
  }

  .mh_col-footer .social-icons > span {
    position: relative;
    font-size: 16px;
  }

  .mh_col-contact .wpcf7-form input,
  .mh_col-footer .wpcf7-form input[type="email"],
  .mh_col-footer .wpcf7-form .wpcf7-submit {
    height: 40px;
  }

  /* Page: Contact */
  .mh_col-contact .contact-title h3,
  .mh_col-contact .contact-title h4,
  .mh_col-contact .contact-title h5,
  .mh_col-contact .contact-title h6 {
    font-size: 16px;
    margin: 0 0 15px;
  }

  .mh_col-contact .wpcf7-form input,
  .mh_col-contact .wpcf7-form textarea {
    color: #5c5c5c;
    padding: 10px;
  }

  /* Blog */
  /* Archive */
  .blog-archive {
    padding-bottom: 0;
  }

  .mh_banner-blog {
    padding-bottom: 20px;
  }

  .blog-archive .archive-page-header .page-title {
    font-size: 20px;
  }

  .blog-archive .large-9.col .post-item .box-text {
    padding: 0 0 0 15px;
  }

  .blog-archive .large-9.col .post-item .post-title {
    font-size: 16px;
    margin: 0 0 5px;
  }

  .blog-archive .large-9.col .post-item .from_the_blog_excerpt {
    margin: 0 0 5px;
    font-size: 14px;
    order: 2;
  }

  /* Sidebar */
  .post-sidebar .widget-area aside.widget {
    margin-bottom: 30px;
  }

  .flatsome_recent_posts .recent-blog-posts a {
    font-size: 15px;
  }

  .post-sidebar .widget-title span {
    padding: 0 0 10px;
  }

  .widget_nav_menu ul > li > a {
    padding: 10px 0;
  }

  .widget_nav_menu .sub-menu > li > a {
    padding: 5px 0;
  }

  /* Single */
  .blog-wrapper.blog-single .entry-title {
    font-size: 22px;
  }

  .blog-wrapper.blog-single .entry-image,
  .blog-single .entry-content {
    padding: 15px 0 0;
    width: 100%;
  }

  .blog-wrapper.blog-single .blog-share {
    margin: 15px 0 20px;
  }

  #toc_container {
    padding: 10px 15px;
  }

  .blog-wrapper.blog-single .navigation-post .next-prev-nav .flex-col {
    padding: 15px 0;
    line-height: 1;
  }

  .related-title {
    margin: 0 0 20px;
  }

  .blog-wrapper > .row > .col {
    padding-bottom: 0;
  }

/* WooCommerce */
  /* Box product */
  .product-small .box-text-products {
    padding: 12px 0 0;
  }

  /* Archive */
  .mh_counpon-box {
    overflow-x: auto;
    flex-flow: unset;
  }

  .mh_counpon-box {
    margin: 0 0 20px !important;
  }

  .mh_counpon-box  > .col {
    min-width: 50%;
  }

  .counpon_item .counpon-content .title {
    font-size: 15px;
  }

  .counpon_item .counpon-content p {
    line-height: 1.5;
    font-size: 13px;
  }

  .counpon_item .counpon-content .out-date {
    font-size: 11px;
    margin: 5px 0 0;
  }

  .mh_head-product-cat > h1 {
    font-size: 22px;
  }

  #shop-sidebar .is-divider,
  .mh_head-product-cat > .is-large,
  .mh_head-product-cat .category-filtering a strong,
  .mh_head-product-cat .category-filtering .inline-block {
    display: none;
  }

  .mh_head-product-cat .category-filtering,
  .mh_head-product-cat .category-filtering a {
    padding: 0;
    margin: 0;
  }

  .mh_head-product-cat .category-filtering a {
    font-size: 15px;
    letter-spacing: initial;
  }

  .mh_head-product-cat .category-filtering a i {
    color: #909097;
    font-size: 16px;
  }

  .mh_head-product-cat .category-filtering {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  #shop-sidebar .widget-title {
    display: block;
    line-height: 1.3;
    letter-spacing: initial;
    margin: 0 0 10px;
    font-size: 16px;
  }

  #shop-sidebar .widget>ul>li>a {
    font-size: 15px;
    padding: 0 0 0 25px;
  }

  /* Single */
  .mh_product-gallery > .col-inner > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .mh_product-gallery .vertical-thumbnails {
    position: relative;
    max-width: initial;
    height: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    padding: 0 9.8px 19.6px;
    top: 0;
    left: 0;
  }

  .mh_product-gallery .product-thumbnails .flickity-slider {
    max-width: initial;
    left: 0 !important;
  }

  .mh_product-gallery .large-10 {
    max-width: 87%;
    -ms-flex-preferred-size: 87%;
    flex-basis: 87%;
    order: 2;
    padding-right: 0;
  }

  .mh_product-gallery .vertical-thumbnails {
    max-width:13%;
    -ms-flex-preferred-size:13%;
    flex-basis:13%;
    order: 1;
  }

  .mh_product-gallery .vertical-thumbnails {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .mh_product-gallery .vertical-thumbnails .flickity-slider,
  .mh_product-gallery .vertical-thumbnails .flickity-viewport {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    overflow: visible !important;
    height: auto !important;
  }

  .mh_product-gallery .vertical-thumbnails .col {
    position: relative !important;
    left: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin-left: 1px;
    width: 95% !important;
    right: 0 !important;
    padding: 0 0 15px !important;
  }

  .mh_product-gallery .product-thumbnails a:hover,
  .mh_product-gallery .product-thumbnails .is-nav-selected a {
    border-color: var(--primary-color);
  }

  .mh_product-info .product-title {
    font-size: 20px;
    margin: 0 0 5px;
  }

  .mh_product-info .product-price-container {
    padding: 10px;
  }

  .mh_product-info .product-price-container .price > span,
  .mh_product-info .product-price-container .price ins span,
  .mh_product-info .woocommerce-variation-price .price ins span {
    font-size: 20px;
  }

  .mh_product-info form.cart {
    margin-bottom: 15px;
  }

  .mh_product-info .variations tbody tr th label,
  .mh_product-info .variations tbody tr th .ux-swatch-selected-value {
    margin: 0 0 5px;
  }

  .mh_product-info .variations tbody tr:first-child {
    padding-top: 0;
  }

  .mh_product-info .variations .ux-swatch--image,
  .mh_product-info .variations .ux-swatch--color,
  .mh_product-info .variations .ux-swatch--label {
    margin: 5px 5px 0 0;
  }

  .mh_product-content .tab-panels {
    padding: 15px 0 10px;
  }

  .mh_product-content #tab-description .read-more {
    padding-bottom: 5px;
  }

  .mh_product-content #tab-description .read-less {
    padding: 10px 0 0;
  }

  .mh_product-content #tab-description .read-more .button,
  .mh_product-content #tab-description .read-less .button {
    min-height: 35px;
    line-height: 33px;
    font-size: 13px;
  }

  #promotion_accordion-content {
    padding: 10px 0;
  }

/* Homepage */
  .mh_grid-product-cat {
    overflow-x: auto;
    flex-flow: unset;
    padding: 0 0 15px;
    padding-bottom: 0;
  }

  .mh_grid-product-cat>.col {
    min-width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }

  .mh_grid-product-cat .icon-box-img {
    width: 110px !important;
  }

  .mh_blog-vertical .box-image {
    width: 30% !important;
  }

  .mh_more-cat {
    margin: 0 0 30px;
  }

}

/**
 * Tablet
 */
@media only screen and (min-width: 560px) and (max-width: 860px) {

}

/**
 * Mobile
 */
@media only screen and (min-width: 320px) and (max-width: 559px) {
/* Homepage */
  .mh_blog-vertical .box-vertical {
    flex-direction: row !important;
    flex-wrap: nowrap;
    display: flex;
  }

  .mh_blog-vertical .box-image {
    width: 35% !important;
  }

  .mh_blog-vertical .box-text {
    padding-left: 10px !important;
  }

  .mh_blog-vertical .section-title {
    font-size: 18px;
  }

/* Blog */
  /* Archive */
  .blog-archive .archive-page-header .page-title {
    font-size: 18px;
  }

  .blog-archive .large-9.col .post-item > .col-inner {
    padding-bottom: 15px;
  }

  .blog-archive .large-9.col .post-item .box-image {
    width: 100% !important;
  }

  .blog-archive .large-9.col .post-item .box-text {
    padding: 15px 0 0;
  }

  .blog-archive .large-9.col .post-item .post-title {
    font-size: 16px;
    margin: 0 0 5px;
  }

  .post-sidebar .widget-area aside.widget {
    margin-bottom: 25px;
  }

  .flatsome_recent_posts .recent-blog-posts-li {
    margin: 0 0 10px;
    padding: 0 0 10px;
  }

  .flatsome_recent_posts .recent-blog-posts .badge {
    height: 4em;
    width: 5em;
  }

  .flatsome_recent_posts .recent-blog-posts a {
    font-size: 14px;
  }

  /* Single */
  .blog-wrapper.blog-single .entry-title {
    font-size: 18px;
    margin-top: 10px;
  }

/* WooCommerce */
  /* Archive */
  .mh_counpon-box > .col {
    min-width: 93%;
  }

  .mh_counpon-box {
    padding: 10px 0 10px !important;
  }

  .counpon_item .counpon-save {
    min-width: 30%;
  }

  .counpon_item .counpon-content {
    padding: 10px 15px;
    min-width: 70%;
  }

  .counpon_item .counpon-content p {
    line-height: 1.4;
    font-size: 12px;
  }

  .mh_active-filter ul li a {
    padding: 2px 27px 2px 10px !important;
  }

  /* Single */
  .mh_product-gallery .vertical-thumbnails .col {
    padding: 0 0 10px !important;
  }

  .mh_product-info .woocommerce-variation-price,
  .mh_product-info .product-price-container .price del,
  .mh_product-info .product-price-container .price del span,
  .mh_product-info .woocommerce-variation-price .price del span {
    font-size: 15px;
  }

  .mh_block-counpon .head-promotion {
    flex-direction: column;
    padding: 10px 0 0;
  }

  .mh_block-counpon .list-promotion,
  .mh_block-counpon .heading-promotion {
    width: 100%;
  }

  .mh_block-counpon .heading-promotion {
      padding: 0 0 7px;
  }

  .mh_product-info .quantity .button,
  .mh_product-info .quantity .qty {
    min-width: 40px;
    min-height: 40px;
    line-height: 38px;
    max-height: 40px;
  }

  .mh_product-info .block_cart-button {
    justify-content: space-between;
  }

  .mh_product-info .single_add_to_cart_button,
  .mh_product-info .single_add_to_cart_button_quick {
    width: 49%;
    min-width: 49%;
    margin: 0;
    line-height: 1.5;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mh_product-info .single_add_to_cart_button i {
    display: none;
  }

  .mh_product-info .single_add_to_cart_button span,
  .mh_product-info .single_add_to_cart_button_quick span {
    font-size: 12px;
    line-height: 1.5;
  }

  #promotion_accordion-content {
    padding: 10px 0 0;
  }

  #promotion_accordion-content .icon-box-left .icon-box-img {
    width: 90px !important;
  }

  .list-promotion_save .icon-box-img .icon {
    left: -3px;
    position: relative;
    max-width: 75px;
    min-height: 75px;
  }

  .list-promotion_save .icon-box-text {
    padding: 10px !important;
  }

  .list-promotion_save .icon-box-text .out-date,
  .list-promotion_save .icon-box-text .button {
    margin: 5px 0 0;
  }

  .list-promotion_save .icon-box-text .button {
    position: relative !important;
    top: 0;
    left: 0;
  }

  .mh_product-content .product-tabs > li {
    max-width: 33.3333%;
    height: 100%;
  }

  .mh_product-content .product-tabs > li > a {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .mh_product-related .product-section-title-related {
    font-size: 18px;
    margin: 0 0 15px;
  }

  .mh_product-content #tab-description .read-more {
    padding-bottom: 0;
  }

  /* Homepage */
  .mh_grid-product-cat>.col {
    min-width: 48%;
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }

  .mh-nav-product {
    overflow-x: auto;
    flex-flow: unset;
    padding: 0 0 15px;
    margin-bottom: 5px;
  }

  .mh-nav-product li {
    min-width: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    margin: 0 3px !important;
  }

  .mh-nav-product li a {
    width: 100%;
    line-height: 1.2;
    min-height: 35px;
  }

  .mh_more-cat {
    margin: 0 0 20px;
  }

}

@media only screen and (max-width: 320px) {

}
