:root {
  --color-body: #fff;
  --color-text-primary: #212529;
  --color-text-description: #868E96;
  --color-text-light: #B8BDC1;
  --color-text-lighter: #CED4DA;
  --color-info: #E9ECEF;
  --color-info-dark: #DEE2E6;
  --color-info-light: #F1F3F5;
  --color-form-border: #CED4DA;
  --color-form-active-shadow: #ebedf0;
  --color-form-placeholder: #ADB5BD;
  --color-primary: #243675;
  --color-primary-dark: #111e4e;
  --color-primary-lighter: #f7d036;
  --color-secondary: #3BC9DB;
  --color-secondary-dark: #15AABF;
  --color-secondary-lighter: #E3FAFC;
  --color-success: #12B886;
  --color-success-dark: #099268;
  --color-success-lighter: #E6FCF5;
  /* --color-danger: #F03E3E;
  --color-danger-dark: #C92A2A;
  --color-danger-light: #FFF5F5; */

  --color-danger: #FCC900;
  --color-danger-dark: #e6b802;
  --color-danger-light: #f7d036;

  --color-warning: #FD7E14;
  --color-warning-dark: #E8590C;
  --color-warning-lighter: #FFF4E6;
  --color-review: #FFD43B;
  --color-review-dark: #FCC419;
  --color-review-lighter: #FFF9DB;
  --color-gradient-1: linear-gradient(45deg, rgb(239, 35, 60) 0%, rgb(244, 113, 3) 100%);
}

:root {
  --theme-primary-font: "Montserrat", sans-serif;
  --theme-secondary-font: "Montserrat", sans-serif;
  --theme-font-size: 1rem;
  --theme-font-weight: 400;
  --theme-letter-spacing: -0.03px;
  --theme-container: 1280px;
  --theme-gutter: 15px;
  --theme-theme-radius-xsmall: 6px;
  --theme-theme-radius-small: 8px;
  --theme-theme-radius-base: 12px;
  --theme-theme-radius-large: 18px;
  --theme-form-font-size: 15px;
  --theme-form-font-weight: 500;
  --theme-form-radius: 12px;
  --theme-form-height: 42px;
}

.quickview-product {
  border-radius: var(--theme-theme-radius-small);
}

@media screen and (min-width: 992px) {
  .quickview-product {
    border-radius: var(--theme-theme-radius-large);
  }
}

.quickview-product .quickview-product-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.quickview-product .product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

@media screen and (min-width: 992px) {
  .quickview-product .product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.quickview-product .product .cell {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .quickview-product .product .cell {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    max-width: 49%;
  }

  .quickview-product .product .cell.product-gallery {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 420px;
    flex: 0 0 420px;
    max-width: 420px;
  }
}

.quickview-product .product .product-gallery {
  position: relative;
}

@media screen and (min-width: 992px) {
  .quickview-product .product .product-title {
    font-size: 2.125rem;
  }
}

.quickview-product .mfp-close {
  background-color: var(--color-info-dark) !important;
}

.quickview-product .mfp-close::before {
  content: "\ea1c";
}

.quickview-product.loaded .klbth-loader {
  opacity: 0;
  visibility: hidden;
}

.quickview-product.loaded .product {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quickview-product .product-detail form.cart {
  display: none !important;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 10px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 10px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.proassist-order-widget {
  margin-top: 24px;
}

.proassist-order-widget__header {
  margin-bottom: 25px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.proassist-order-widget__help-button {
  background: #fff;
  border: 1px solid #233a89;
  border-radius: 999px;
  color: #233a89;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.proassist-order-widget__help-button:hover {
  background: #233a89;
  color: #fff;
}

.proassist-order-widget__note {
  background: rgb(236, 56, 56);
  border-radius: var(--theme-theme-radius-base);
  color: #fff;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.proassist-order-widget iframe {
  border: 0;
  display: block;
  width: 100%;
}

.proassist-order-widget__cta {
  background: #233a89;
  border: 1px solid #233a89;
  border-radius: var(--theme-theme-radius-base);
  color: #fff;
  display: inline-block;
  font-weight: 600;
  margin-top: 16px;
  padding: 12px 18px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.proassist-order-widget__cta:hover {
  background: #fff;
  color: #233a89;
}

.proassist-order-summary-cta {
  margin-top: 20px;
  text-align: center;
}

.proassist-modal {
  align-items: center;
  background: rgba(17, 24, 39, 0.62);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 99999;
}

.proassist-modal[hidden] {
  display: none !important;
}

.proassist-modal__content {
  background: #fff;
  border-radius: var(--theme-theme-radius-base);
  max-height: 90vh;
  max-width: 760px;
  overflow-y: auto;
  padding: 22px 24px;
  position: relative;
  width: 100%;
}

.proassist-modal__close {
  background: transparent;
  border: 0;
  color: #1f2937;
  cursor: pointer;
  font-size: 24px;
  line-height: 24px;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 6px;
  width: 42px;
}

.proassist-modal__title {
  font-size: 24px;
  margin: 0 26px 16px 0;
}

.proassist-modal__body>*:last-child {
  margin-bottom: 0;
}

@media(max-width:768px) {
  .proassist-modal__content {
    max-height: 85vh;
    padding: 18px;
  }

  .proassist-modal__title {
    font-size: 20px;
  }
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover>.ps__rail-x,
.ps:hover>.ps__rail-y,
.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 6px;
}

.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 6px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.select2-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 1.25rem;
  width: auto;
  max-width: 64rem;
  margin: 1.25rem auto;
  border-radius: getSize(border-radius);
}

@media screen and (min-width: 1024px) {
  .white-popup {
    padding: 2.5rem;
  }
}

.mfp-close {
  font-size: 0;
  opacity: 1 !important;
  background-color: var(--color-desc) !important;
  color: #fff !important;
  top: 0.625rem !important;
  right: 0.625rem !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 38px;
}

@media screen and (min-width: 1024px) {
  .mfp-close {
    top: 0.9375rem !important;
    right: 0.9375rem !important;
  }
}

.mfp-close:before {
  font-family: "klbtheme";
  font-size: 15px;
  content: "\e845";
}

/*------------------------------------
    06 - Form
------------------------------------*/
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea,
select,
.form-control,
.form-select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--theme-form-font-size);
  font-weight: var(--theme-form-font-weight);
  width: 100%;
  height: var(--theme-form-height);
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  color: var(--color-text-primary);
  border: 1px solid var(--color-form-border);
  -webkit-box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.09);
  box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.09);
  border-radius: var(--theme-form-radius);
}

input[type=color]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-form-placeholder);
}

input[type=color]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=week]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-form-placeholder);
}

input[type=color]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-form-placeholder);
}

input[type=color]::-ms-input-placeholder,
input[type=date]::-ms-input-placeholder,
input[type=datetime-local]::-ms-input-placeholder,
input[type=datetime]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=month]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=time]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
input[type=week]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-form-placeholder);
}

input[type=color]::placeholder,
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
input[type=datetime]::placeholder,
input[type=email]::placeholder,
input[type=month]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=time]::placeholder,
input[type=url]::placeholder,
input[type=week]::placeholder,
textarea::placeholder,
select::placeholder,
.form-control::placeholder,
.form-select::placeholder {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-form-placeholder);
}

input[type=color]:focus,
input[type=color]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=text]:focus,
input[type=text]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=week]:focus,
input[type=week]:active,
textarea:focus,
textarea:active,
select:focus,
select:active,
.form-control:focus,
.form-control:active,
.form-select:focus,
.form-select:active {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: 0 0 0 3px var(--color-form-active-shadow);
  box-shadow: 0 0 0 3px var(--color-form-active-shadow);
}

textarea {
  min-height: 150px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

label {
  font-size: 0.8125rem;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.select2.select2-container {
  width: 100% !important;
}

.select2 .select2-selection {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: var(--theme-form-height);
  color: var(--color-text-primary);
  border-color: var(--color-form-border);
  -webkit-box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.09);
  box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.09);
  border-radius: var(--theme-form-radius);
}

.select2 .select2-selection.select2-selection--single.select2-selection--clearable .select2-selection__clear {
  all: unset;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: auto;
  margin-right: 2.5rem;
}

.select2 .select2-selection.select2-selection--single .select2-selection__rendered {
  font-size: var(--theme-form-font-size);
  font-weight: var(--theme-form-font-weight);
  padding-left: 0.9375rem;
  padding-right: 1.875rem;
}

.select2 .select2-selection.select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  font-size: 92%;
  line-height: 1;
  color: var(--color-form-placeholder);
}

.select2 .select2-selection.select2-selection--single .select2-selection__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") calc(100% - 8px) 13px no-repeat;
  background-size: 22px 16px;
  width: 1.875rem;
  height: 100%;
  top: 0;
}

.select2 .select2-selection.select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  background-color: var(--color-body);
  border-color: var(--color-form-border);
  border-radius: var(--theme-form-radius);
}

.select2-dropdown .select2-search--dropdown {
  padding: 0;
  border-bottom: 1px solid var(--color-form-border);
}

.select2-dropdown .select2-search--dropdown input {
  width: 100%;
  height: 2.375rem;
  padding: 0 0.9375rem;
  border: 0 !important;
  border-radius: 0;
  background-color: var(--color-info-light);
}

.select2-dropdown .select2-search--dropdown input::-webkit-input-placeholder {
  font-weight: 400;
}

.select2-dropdown .select2-search--dropdown input::-moz-placeholder {
  font-weight: 400;
}

.select2-dropdown .select2-search--dropdown input:-ms-input-placeholder {
  font-weight: 400;
}

.select2-dropdown .select2-search--dropdown input::-ms-input-placeholder {
  font-weight: 400;
}

.select2-dropdown .select2-search--dropdown input::placeholder {
  font-weight: 400;
}

.select2-dropdown .select2-search--dropdown input:focus,
.select2-dropdown .select2-search--dropdown input:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.select2-dropdown .select2-results .select2-results__options .select2-results__option {
  font-size: 0.875rem;
  padding: 0.5rem 0.9375rem;
}

.select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
  color: var(--color-primary);
  background-color: var(--color-primary-lighter);
}

button,
.button,
input[type=submit],
.submit,
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--theme-primary-font);
  font-size: var(--theme-form-font-size);
  font-weight: 600;
  height: var(--theme-form-height);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: var(--theme-form-radius);
}

button:not(.link),
.button:not(.link),
input[type=submit]:not(.link),
.submit:not(.link),
.btn:not(.link) {
  color: var(--color-text-primary);
  background-color: var(--color-info);
}

button:not(.link):hover,
.button:not(.link):hover,
input[type=submit]:not(.link):hover,
.submit:not(.link):hover,
.btn:not(.link):hover {
  border-color: transparent;
  background-color: var(--color-info-dark);
}

button i,
.button i,
input[type=submit] i,
.submit i,
.btn i {
  font-size: 90%;
  margin-left: 0.625rem;
}

button.primary,
button.wpcf7-submit,
.button.primary,
.button.wpcf7-submit,
input[type=submit].primary,
input[type=submit].wpcf7-submit,
.submit.primary,
.submit.wpcf7-submit,
.btn.primary,
.btn.wpcf7-submit {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

button.primary:hover,
button.wpcf7-submit:hover,
.button.primary:hover,
.button.wpcf7-submit:hover,
input[type=submit].primary:hover,
input[type=submit].wpcf7-submit:hover,
.submit.primary:hover,
.submit.wpcf7-submit:hover,
.btn.primary:hover,
.btn.wpcf7-submit:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

button.secondary,
.button.secondary,
input[type=submit].secondary,
.submit.secondary,
.btn.secondary {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

button.secondary:hover,
.button.secondary:hover,
input[type=submit].secondary:hover,
.submit.secondary:hover,
.btn.secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

button.success,
.button.success,
input[type=submit].success,
.submit.success,
.btn.success {
  color: #fff;
  background-color: var(--color-success);
  border-color: var(--color-success);
}

button.success:hover,
.button.success:hover,
input[type=submit].success:hover,
.submit.success:hover,
.btn.success:hover {
  background-color: var(--color-success-dark);
  border-color: var(--color-success-dark);
}

button.danger,
.button.danger,
input[type=submit].danger,
.submit.danger,
.btn.danger {
  color: #fff;
  background-color: var(--color-danger);
  border-color: var(--color-danger);
}

button.danger:hover,
.button.danger:hover,
input[type=submit].danger:hover,
.submit.danger:hover,
.btn.danger:hover {
  background-color: var(--color-danger-dark);
  border-color: var(--color-danger-dark);
}

button.link,
.button.link,
input[type=submit].link,
.submit.link,
.btn.link {
  font-size: 0.8125rem;
  height: auto;
  padding: 0;
  border: 0;
}

button.link i,
.button.link i,
input[type=submit].link i,
.submit.link i,
.btn.link i {
  font-size: 0.75rem;
}

button.link:hover,
.button.link:hover,
input[type=submit].link:hover,
.submit.link:hover,
.btn.link:hover {
  color: var(--color-primary);
}

label.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0.9375rem;
}

.color-radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.color-radio label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-bottom: 0;
}

.color-radio input {
  display: none;
}

.color-radio input:checked+label {
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 2px var(--color-text-description);
  box-shadow: 0 0 0 2px var(--color-text-description);
}



.product .column-item>.tinv-wraper.tinv-wishlist {
  display: none;
}

.product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list:before {
  content: '\eb5d';
}

.product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
  margin-right: 0;
  font-family: "klbtheme" !important;
  font-style: normal;
  font-weight: normal;
  speak: never;
  content: "\eb5c";
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tinvwl_add_to_wishlist_button {
  text-decoration: none;
  color: currentColor;
  text-shadow: 0 0 0;
}

a.tinvwl_add_to_wishlist_button:hover {
  color: #F03E3E;
}

.product a.tinvwl_add_to_wishlist_button {
  font-size: 0;
}

.product-buttons .tinv-wraper:hover {
  color: #F03E3E;
  border-color: #ecd8d8;
  background-color: #FFF5F5;
}

a.woosc-btn {
  margin-right: 0;
  font-size: 0;
}

.product-buttons>*.woosc-btn {
  opacity: 0;
  -webkit-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
}

a.woosc-btn:before {
  content: '\ea58' !important;
  font-size: 1rem;
  text-shadow: 0 0 0;
  font-family: "klbtheme";
  margin-right: 0px !important;
}

.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-heart-o::before,
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-key::before,
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-times::before {
  top: 0px;
}

.tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button {
  background-color: var(--color-primary);
  color: #fff;
}

.tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button:hover {
  opacity: 0.8;
}

.site-header .quick-button.wishlist-button .count a:before {
  display: none;
}

table.tinvwl-table-manage-list .button {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  white-space: pre;
}

table.tinvwl-table-manage-list .button:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  white-space: pre;
}

table.tinvwl-table-manage-list .button:hover {
  opacity: 0.8;
}

table.tinvwl-table-manage-list td.product-name a {
  color: var(--color-text-primary);
}

table.tinvwl-table-manage-list .product-remove button i {
  margin-left: 0;
}

table.tinvwl-table-manage-list .product-remove button {
  padding-top: 0;
}

.tinvwl-input-group .form-control {
  height: 42px;
}

.tinv-wishlist .social-buttons li a.social {
  color: var(--color-text-primary);
}

table.tinvwl-table-manage-list th {
  font-size: 0.875rem;
  font-weight: 700;
}

table.tinvwl-table-manage-list .product-stock {
  display: table-cell;
}

.product-name dl.variation,
.cart-dropdown dl.variation {
  font-size: 0.875rem;
  margin-bottom: 7px;
}

.product-name dl.variation dt,
.cart-dropdown dl.variation dt {
  display: inline-block;
  font-weight: 600;
}

.product-name dl.variation dd,
.cart-dropdown dl.variation dd {
  display: inline-block;
  margin-left: 0;
  font-weight: 400;
}

.product-cart-form a.added_to_cart {
  font-size: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: currentColor;
  background-color: var(--color-info-light);
  padding: 0;
  margin-left: 5px;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  width: 2.375rem;
  height: 2.375rem;
  border-radius: var(--theme-theme-radius-base);
}

.product-cart-form a.added_to_cart:before {
  content: '\e99f';
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
}

.product-cart-form a.added_to_cart:hover {
  color: #fff;
  background-color: var(--color-primary);
}

span.wpcf7-not-valid-tip {
  margin-top: -5px;
  font-size: 0.875rem;
  margin-bottom: 5px;
}

.contact-form form .wpcf7-form-control {
  margin-bottom: 0.75rem;
}

.white-box {
  position: relative;
  margin-top: -5rem;
  z-index: 3;
}

@media screen and (min-width: 992px) {
  .white-box::before {
    content: "";
    position: absolute;
    top: -65px;
    left: -80px;
    right: -80px;
    height: 200px;
    background-color: var(--color-body);
    border-top-left-radius: var(--theme-theme-radius-large);
    border-top-right-radius: var(--theme-theme-radius-large);
  }
}

.site-header .discount-products-header .entry-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.site-header .discount-products-header p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.site-header .cart-dropdown .products .product .price .quantitysa .amount {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
}

p.woocommerce-mini-cart__buttons a.button.checkout {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

p.woocommerce-mini-cart__buttons a.button.checkout:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.products .column-item>.tinv-wraper.tinv-wishlist {
  display: none;
}

.secondary-column .widget .widget-checkbox-list ul li {
  display: inherit;
}

.widget.widget_klb_product_categories ul.children {
  margin-top: 0.5rem;
  padding-left: 30px;
}

@media screen and (min-width: 75rem) {

  .shop-wide .container,
  .shop-wide .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 100%;
    overflow: hidden;
  }
}

.quickview-product .product {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

nav.woocommerce-pagination.klb-load-more .button {
  cursor: pointer;
}

.product-detail .single_add_to_cart_button {
  height: 2.875rem;
  margin-right: 7px;
  color: #fff;
  background-color: var(--color-success);
  border: 1px solid var(--color-success);
  flex: 1;
}

@media screen and (min-width: 992px) {
  .product-detail .single_add_to_cart_button {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.product-detail .single_add_to_cart_button:hover {
  background-color: var(--color-success-dark);
  border-color: var(--color-success-dark);
}

.product-detail .single_add_to_cart_button:before {
  font-size: 1rem;
  margin-right: 0.625rem;
  margin-left: 0;
}

.product-detail .single_add_to_cart_button:before {
  content: "\ea29";
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgb(127 127 127 / 30%);
}

.product-detail .product-rating a.woocommerce-review-link {
  font-size: 0.8125rem;
  line-height: normal;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-left: 0.625rem;
}

.single-product .product-detail .product-stock {
  font-weight: 600;
}

.single-product .product-detail .product-stock::before {
  font-size: 0.875rem;
  line-height: normal;
  padding-right: 0.5rem;
}

.single-product .product-detail .product-stock::before {
  content: "\ea8f";
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgb(127 127 127 / 30%);
}

.product-detail .klb-single-stock .product-stock.stock.in-stock,
.product-detail .klb-single-stock .product-stock.stock.out-of-stock {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 0.625rem;
}

.product-detail .product-stock.stock.in-stock,
.product-detail .product-stock.stock.out-of-stock {
  display: none;
}

.single-product .woocommerce-product-details__short-description {
  font-size: 0.8125rem;
  line-height: 1.4375rem;
  color: var(--color-text-description);
}

.single-product .product-detail .product-tags a {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--color-text-primary) !important;
  border: 1px solid var(--color-info-dark);
  padding: 0.3125rem 0.625rem;
  border-radius: var(--theme-theme-radius-xsmall);
  -webkit-box-shadow: 0 1px 2px 0 rgb(33 37 41 / 5%);
  box-shadow: 0 1px 2px 0 rgb(33 37 41 / 5%);
}

.single-product .variations td,
.single-product .variations th {
  border: none;
  padding: 0;
}

.single-product-wrapper .product-detail .product-wishlist a {
  width: 2.25rem !important;
  height: 2.25rem !important;
}

.single-product-wrapper .product-detail .product-share.entry-social {
  margin-top: 1.875rem;
}

.single-product-wrapper .product-detail .product-meta .product-stock.out-of-stock {
  background: var(--color-danger-light);
  color: var(--color-danger-dark);
}

.product-stock.outof-stock {
  color: var(--color-danger-dark);
}

a.ajax_add_to_cart {
  position: relative;
}

.ajax_add_to_cart.loading i {
  opacity: 0;
}

.ajax_add_to_cart.loading:after {
  opacity: 1;
  /* animation: klb-rotate 450ms infinite linear; */
}

@keyframes klb-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.ajax_add_to_cart:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  opacity: 0;
  transition: opacity .2s ease;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgb(161 161 161 / 40%);
  border-left-color: #000;
  border-radius: 50%;
  vertical-align: middle;
}

.product-type-1 .ajax_add_to_cart.loading,
.product-type-3 .ajax_add_to_cart.loading {
  font-size: 0 !important;
}

.product-type-3 .ajax_add_to_cart:after,
.product-type-1 .ajax_add_to_cart:after {
  border-left-color: #fff;
}

.product .product-footer .button {
  margin-top: 1rem;
}

.product-type-1 .product-footer .button i,
.product-type-3 .product-footer .button i {
  display: none;
}

.product .product-type-2 .product-cart-form a.button {
  border: none;
}

h2.woocommerce-Reviews-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.woocommerce-Reviews p.meta {
  margin-bottom: 5px;
}

.woocommerce-Reviews .star-rating {
  margin-bottom: 5px;
}

.woocommerce-Reviews ol.commentlist {
  list-style: none;
  padding: 0;
}

.woocommerce-Reviews .comment_container {
  display: inline-flex;
  margin-top: 15px;
  margin-bottom: 15px;
}

.woocommerce-Reviews .avatar {
  margin-top: 0;
  margin-right: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.woocommerce-Reviews .comment-text {
  width: 90%;
}

.woocommerce-Reviews span#reply-title {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #333333;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}

.woocommerce-Reviews {
  font-size: .975rem;
}

strong.woocommerce-review__author {
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}

time.woocommerce-review__published-date {
  font-size: .75rem;
  color: #71778e;
  text-decoration: none;
}

.woocommerce-Reviews label {
  margin-bottom: .2rem;
}

.comment-form-rating {
  padding-right: 0.625rem;
}

input#wp-comment-cookies-consent {
  height: auto;
  margin-right: 5px;
}

.comment-respond .comment-form p.comment-form-cookies-consent label {
  display: inline-block;
  margin-bottom: 0 !important;
}

.woocommerce-Reviews .star-rating {
  overflow-wrap: initial;
}

p.stars a {
  border-right: 1px solid #e1e1e1;
}

p.stars a:last-child {
  border-right: 0;
}

p.stars a.star-1:after,
.woocommerce-page p.stars a.star-1:after {
  content: "\e854";
  font-family: "klbtheme";
  color: #666;
}

p.stars a.star-2:after,
.woocommerce-page p.stars a.star-2:after {
  content: "\e854\e854";
  font-family: "klbtheme";
  color: #666;
}

p.stars a.star-3:after,
.woocommerce-page p.stars a.star-3:after {
  content: "\e854\e854\e854";
  font-family: "klbtheme";
  color: #666;
}

p.stars a.star-4:after,
.woocommerce-page p.stars a.star-4:after {
  content: "\e854\e854\e854\e854";
  font-family: "klbtheme";
  color: #666;
}

p.stars a.star-5:after,
.woocommerce-page p.stars a.star-5:after {
  content: "\e854\e854\e854\e854\e854";
  font-family: "klbtheme";
  color: #666;
}

p.stars a,
.woocommerce-page p.stars a {
  display: inline-block;
  margin-right: 1em;
  text-indent: -9999px;
  position: relative;
  font-family: "klbtheme";
  font-size: .8rem;
}

p.stars a.star-1:after,
p.stars a.star-2:after,
p.stars a.star-3:after,
p.stars a.star-4:after,
p.stars a.star-5:after,
.woocommerce-page p.stars a.star-1:after,
.woocommerce-page p.stars a.star-2:after,
.woocommerce-page p.stars a.star-3:after,
.woocommerce-page p.stars a.star-4:after,
.woocommerce-page p.stars a.star-5:after {
  font-family: "klbtheme";
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 3px;
}

p.stars a.star-1,
.woocommerce-page p.stars a.star-1 {
  width: 2em;
}

p.stars a.star-2,
.woocommerce-page p.stars a.star-2 {
  width: 3em;
}

p.stars a.star-3,
.woocommerce-page p.stars a.star-3 {
  width: 4em;
}

p.stars a.star-4,
.woocommerce-page p.stars a.star-4 {
  width: 5em;
}

p.stars a.star-5,
.woocommerce-page p.stars a.star-5 {
  width: 6em;
}

.p.stars a.star-1.active:after,
p.stars a.star-1:hover:after,
p.stars a.star-1.active:after,
p.stars a.star-1:hover:after {
  content: "\e853";
  color: #ffcd00;
  font-weight: 900;
}

.p.stars a.star-2.active:after,
p.stars a.star-2:hover:after,
p.stars a.star-2.active:after,
p.stars a.star-2:hover:after {
  content: "\e853\e853";
  color: #ffcd00;
  font-weight: 900;
}

.p.stars a.star-3.active:after,
p.stars a.star-3:hover:after,
p.stars a.star-3.active:after,
p.stars a.star-3:hover:after {
  content: "\e853\e853\e853";
  color: #ffcd00;
  font-weight: 900;
}

.p.stars a.star-4.active:after,
p.stars a.star-4:hover:after,
p.stars a.star-4.active:after,
p.stars a.star-4:hover:after {
  content: "\e853\e853\e853\e853";
  color: #ffcd00;
  font-weight: 900;
}

.p.stars a.star-5.active:after,
p.stars a.star-5:hover:after,
p.stars a.star-5.active:after,
p.stars a.star-5:hover:after {
  content: "\e853\e853\e853\e853\e853";
  color: #ffcd00;
  font-weight: 900;
}

.woocommerce-Reviews form#commentform {
  flex-direction: column;
}

.comment-respond .comment-form textarea {
  min-height: 9.375rem;
}

.single-product-wrapper+.woocommerce-Reviews {
  margin-top: 1.875rem;
}

@media screen and (min-width: 64.0625rem) {
  .single-product-wrapper+.woocommerce-Reviews {
    margin-top: 3.875rem;
  }
}

#tab-additional_information table.shop_attributes p {
  margin-bottom: 0;
}

#tab-additional_information h2 {
  font-size: 1.125rem;
  font-weight: 600;
}

.single-product-wrapper .woocommerce-message,
.single-product-wrapper ul.woocommerce-error li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  justify-content: space-between;
}

.woocommerce-message {
  border: 1px solid #dee2e6;
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
  padding: 1rem;
  font-size: .875rem;
}

ul.woocommerce-error {
  list-style: none;
  padding: 0;
  border: 1px solid #dee2e6;
  margin-bottom: 1.875rem;
  padding: 1rem;
  font-size: .875rem;
}

.klb-notice-ajax .woocommerce-message a.button,
.klb-notice-ajax .woocommerce-error a.button {
  background: none;
  border: none;
  text-decoration: underline;
  margin-left: 0px;
}

.klb-notice-ajax .woocommerce-message a.button:hover,
.klb-notice-ajax .woocommerce-error a.button:hover {
  background: none;
  border: none;
  text-decoration: underline;

}

.single ul.woocommerce-error {
  margin-top: 1.875rem;
}

.single ul.woocommerce-error li {
  flex-direction: row;
  justify-content: start;
}

.single ul.woocommerce-error li a {
  margin-left: 10px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;

}

.single ul.woocommerce-error li a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

ul#shipping_method {
  list-style: none;
  padding: 0;
  font-size: 0.8125rem;
  margin: 0;

}

ul#shipping_method li {
  flex-direction: row-reverse;
}

#shipping_method input.shipping_method {
  position: relative;
  top: 4px;
  float: right;
  margin-right: 0;
  margin-left: 7px;
  vertical-align: middle;
}

ul#shipping_method label {
  margin-bottom: 0;
  vertical-align: middle;
  font-size: 0.8125rem;
}

ul#shipping_method span.woocommerce-Price-amount.amount {
  font-size: .875rem;
}

ul#shipping_method li {
  margin-bottom: 10px;
}

.woocommerce-cart-form table td {
  border: none;
}

.woocommerce-cart-form table th {
  border: none;
  border-bottom: 1px solid var(--color-form-border);
}

.cart-collaterals .shop_table .cart-subtotal th,
.cart-collaterals .shop_table .cart-subtotal td {
  border: none;
  border-bottom: 1px solid var(--color-form-border);
}

th .cart-collaterals .shop_table .order-total th,
.cart-collaterals .shop_table .order-total td {
  border: none;
}

.cart-collaterals .shop_table .order-total th,
.cart-collaterals .shop_table .order-total td {
  border: none;
}

.woocommerce-cart-form .table>:not(caption)>*>* {
  border-bottom: 1px solid var(--color-info-dark);
}

a.checkout-button {
  color: #fff !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary);
}

a.checkout-button:hover {
  color: #fff !important;
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark);
}

.order-review-wrapper .shop_table thead th {
  border: none;
  color: var(--color-text-light);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-info-dark);
  padding-left: 0;
  padding-right: 0;
}

.order-review-wrapper .shop_table tbody td {
  border: none;
}

.order-review-wrapper .shop_table tfoot tr th {
  border: none;
  border-top: 1px solid var(--color-info-dark);
}

.cart-wrapper .order-review-wrapper .shop_table tfoot tr th {
  border-top: 1px solid var(--color-info-dark);
  padding: 0;
}

.order-review-wrapper .shop_table tfoot tr td {
  border: none;
  border-top: 1px solid var(--color-info-dark);
}

.woocommerce-shipping-totals td,
.woocommerce-shipping-totals th {
  border: none;
  border-bottom: 1px solid var(--color-info-dark);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

p.woocommerce-shipping-destination {
  font-size: .775rem;
}

a.shipping-calculator-button {
  font-size: .825rem;
}

.woocommerce-form-coupon-toggle {
  padding: 20px;
  background-color: #F7F7F7;
  padding-left: 35px;
  position: relative;
  font-size: .895rem;
  margin-bottom: 1.875rem;
  border-radius: var(--theme-theme-radius-base);
}

.woocommerce-form-coupon-toggle:before {
  color: var(--color-primary);
  position: absolute;
  left: 15px;
  top: 48%;
  transform: translateY(-50%);
  text-rendering: auto;
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f097';
}

.woocommerce-form-coupon-toggle a.showcoupon {
  color: #212529;
  text-decoration: none;
}

form.checkout_coupon.woocommerce-form-coupon {
  margin-top: -1rem;
}

.my-account-page label.woocommerce-form-login__rememberme {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.my-account-wrapper .woocommerce-MyAccount-content a.button {
  color: var(--color-text-primary);
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2,
.woocommerce-account .col-1,
.woocommerce-account .col-2 {
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

.woocommerce-account .col2-set,
.woocommerce-checkout .col2-set {
  margin-left: -15px;
  margin-right: -15px;
}

.woocommerce-checkout .col2-set:before,
.woocommerce-checkout .col2-set:after,
.woocommerce-account .col2-set:before,
.woocommerce-account .col2-set:after {
  content: '';
  display: table;
  clear: both;
}

.my-account-page h2,
.my-account-page h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.orderon-whatsapp a {
  background-color: var(--color-success) !important;
  border: 1px solid var(--color-success);
  color: #fff !important;
  height: 2.875rem;
}

.orderon-whatsapp a:hover {
  background-color: var(--color-success-dark) !important;
  border-color: var(--color-success-dark);
}

.orderon-whatsapp {
  margin-bottom: 1.25rem;
}

.orderon-whatsapp i {
  margin-left: 0;
  margin-right: 0.625rem;
  font-size: 100%;
}

.product-detail .buy_now_button {
  height: 2.875rem;
}

@media screen and (max-width: 64.0625rem) {
  p.woocommerce-result-count {
    display: none !important;
  }
}

.before-shop-loop .sorting-products select {
  max-width: 130px;
  text-overflow: ellipsis;
}

.widget_popular_posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_popular_posts ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.widget_popular_posts ul li:last-child {
  margin-bottom: 0;
}

.widget_popular_posts ul li .entry-media {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4.125rem;
  flex: 0 0 4.125rem;
  max-width: 4.125rem;
  height: 4.125rem;
  margin-right: 0.9375rem;
  margin-bottom: 0;
}

.widget_popular_posts ul li .entry-media span {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  background-color: var(--color-secondary);
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.widget_popular_posts ul li .entry-media a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.widget_popular_posts ul li .entry-media a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.widget_popular_posts ul li .entry-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.widget_popular_posts ul li .entry-wrapper .entry-title {
  font-size: 0.875rem;
}

@media screen and (min-width: 64rem) {
  .klb-blog .content-wrapper.sidebar-left {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.widget_social_media .social-media a .social-text {
  text-transform: uppercase;
}

.post .meta-item.entry-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.post .meta-item.entry-tags a+a {
  margin-left: 3px;
}

.klb-readmore a.btn:hover {
  color: #212529;
}

.klb-blog .post .meta-item.entry-tags>span,
.post.single-post .meta-item.entry-tags>span {
  width: 100%;
}

.post.single-post .meta-item.entry-tags {
  gap: 0;
}

.post-comments {
  margin-top: 2.5rem;
}

.post-comments .comment-respond .comment-form .form-submit input {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.post-comments .comment-respond .comment-form .form-submit input:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.comment-respond h3#reply-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.post-comments p.logged-in-as a,
.post-comments p.logged-in-as {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-description);
}

a#cancel-comment-reply-link {
  margin-left: 1rem;
  color: #212529;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 0.9375rem;
}

.comment-respond h3#reply-title {
  font-size: 1rem;
}

ol.comment-list .comment-respond {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.site-footer .footer-row.custom-background-light .company-logo .logo-light,
.site-footer .footer-row.custom-background-dark .company-logo .logo-dark {
  display: none;
}

a.reset_variations {
  color: #212529;
}

form.grouped_form label a {
  font-weight: 600;
  color: currentColor;
}

form.grouped_form td {
  border-left: 0;
  border-right: 0;
  padding: 15px;
}

form.grouped_form tr td:first-child {
  padding-left: 0;
}

form.grouped_form tr td:last-child {
  padding-right: 0;
}

form.grouped_form tr td.woocommerce-grouped-product-list-item__price {
  text-align: right;
}

form.cart.grouped_form table {
  margin-bottom: 15px;
}

form.grouped_form td p.stock {
  margin-left: 10px;
}

.single-product-wrapper .product-detail form.cart.grouped_form {
  border-top: 0;
  padding-top: 0;
}

form.grouped_form label a:hover {
  color: var(--color-primary);
}

form.grouped_form table del {
  color: var(--color-text-description);
}

form.grouped_form table ins {
  color: var(--color-danger);
  text-decoration: none;
}

.single-product table.variations tr+tr {
  margin-top: 15px;
}

a.reset_variations:before {
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea1c";
  display: inline-block;
  font-size: 14px;
  margin-right: 3px;
}

.site-header .login-button .quick-text .sub-text {
  text-transform: capitalize;
}

/* Color Attribute */
ul.woocommerce-widget-layered-nav-list .type-color span.color-box {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

ul.woocommerce-widget-layered-nav-list .type-color {
  padding-bottom: 5px;
  text-transform: capitalize;
  vertical-align: middle;
}

ul.woocommerce-widget-layered-nav-list .type-color span.count {
  float: right;
  font-size: 0.8125rem;
  line-height: 25px;
  color: #9aa5b3;
}

ul.woocommerce-widget-layered-nav-list .type-color span.color-box:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .1);
  color: #FFF;
  font-weight: normal;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease;
  content: "✔";
}

ul.woocommerce-widget-layered-nav-list li.chosen .type-color span.color-box:after,
ul.woocommerce-widget-layered-nav-list li:hover .type-color span.color-box:after {
  opacity: 1;
}

/* Button Attribute */
ul.woocommerce-widget-layered-nav-list .type-button span.button-box {
  display: inline-block;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 3px;
  max-width: 1.125rem;
  width: 100%;
  height: 1.125rem;
  margin-right: 0.9375rem;
  border: 1px solid var(--color-form-border);
  border-radius: var(--theme-theme-radius-xsmall);
}

ul.woocommerce-widget-layered-nav-list .type-button a {
  padding-left: 33px;
  z-index: 1;
  position: relative;
}

ul.woocommerce-widget-layered-nav-list .type-button {
  text-transform: capitalize;
  position: relative;
}

ul.woocommerce-widget-layered-nav-list .type-button span.button-box:after {
  position: relative;
  content: "✔";
  font-size: 0.75rem;
  line-height: 1;
  left: 3.5px;
  bottom: 5px;
  text-shadow: 0px 0px 0px;
  opacity: 0;
}

ul.woocommerce-widget-layered-nav-list li.chosen .type-button span.button-box {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

ul.woocommerce-widget-layered-nav-list li.chosen .type-button span.button-box:after {
  opacity: 1;
}

ul.woocommerce-widget-layered-nav-list .type-button:hover span.button-box {
  background-color: #f2f3f5;
}

ul.woocommerce-widget-layered-nav-list .type-button a:before {
  display: none;
}

ul.woocommerce-widget-layered-nav-list .type-button span.count {
  float: right;
  font-size: 0.8125rem;
  line-height: 25px;
  color: #9aa5b3;
}

ul.woocommerce-widget-layered-nav-list li.chosen .type-button a {
  color: var(--color-primary);
  font-weight: 500;
}

.secondary-column .widget ul {
  list-style: none;
  padding-left: 0;
}

.secondary-column ul li a,
.filter-holder ul li a {
  line-height: normal;
  font-weight: 500;
  font-size: 0.875rem;
  color: #212529;
}

.product-detail .buy_now_button+.product-low-stock {
  margin-top: 0.9375rem;
}

.secondary-column ul li+li,
.filter-holder ul li+li {
  margin-top: 0.5rem;
}

.post-comments ul.children {
  list-style: none;
  padding-left: 40px;
}

.flex-control-thumbs li.slick-slide img {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
}

.flex-viewport img {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
  width: 100%;
}

.flex-control-thumbs li.slick-slide img.flex-active {
  border-color: var(--color-text-primary);
}

.flex-control-thumbs {
  padding: 0;
}

.thumbnails-bottom .flex-control-thumbs li.slick-slide {
  padding-left: 0.1875rem;
  padding-right: 0.2875rem;
  cursor: pointer;
}

a.added_to_cart {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: var(--theme-form-radius);
  font-weight: 600;
  justify-content: center;
  align-items: center;
  -webkit-box-pack: center;
  display: inline-flex;
  -webkit-box-align: center;
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  font-size: 0.875rem;
  width: 100%;
  height: 2.375rem;
  margin-top: 3px;
}

/* Disable add-to-cart loading spinner and hide "View cart" link */
.ajax_add_to_cart.loading:after {
  display: none;
}

.ajax_add_to_cart.loading i {
  opacity: 1;
}

.product-type-1 .ajax_add_to_cart.loading,
.product-type-3 .ajax_add_to_cart.loading {
  font-size: inherit !important;
}

a.added_to_cart {
  display: none !important;
}

.product-detail .klbth-countdown-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-detail .klbth-countdown-wrapper .countdown-description {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.625rem;
  color: var(--color-text-description);
  margin-bottom: 0;
  margin-left: 0.75rem;
}

.product-detail .klbth-countdown-wrapper .kblth-countdown {
  font-size: 0.75rem;
}

.product-detail .klbth-countdown-wrapper .kblth-countdown .count-item {
  width: 1.625rem;
  height: 1.75rem;
  background-color: var(--color-info-light);
}

.klbth-slider.products {
  display: block;
}

.klb-products-tab .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.elementor-column.sticky {
  align-self: flex-start;
}

.elementor-column-gap-extended>.elementor-column>.theiaStickySidebar>.elementor-element-populated {
  padding: 15px;
}

.theiaStickySidebar {
  width: 100%;
}

@media (max-width: 64rem) {
  .single-product-wrapper .product-gallery.thumbnails-left .product-thumbnails-wrapper {
    margin-top: 0.375rem;
  }

  .single-product-wrapper .product-gallery.thumbnails-left .product-thumbnails-wrapper .slick-list {
    margin-left: -0.1875rem;
    margin-right: -0.1875rem;
  }

  .single-product-wrapper .product-gallery.thumbnails-left .product-thumbnails-wrapper .slick-list .slick-track {
    margin: 0;
  }

  .thumbnails-left .flex-control-thumbs li.slick-slide {
    padding-left: 0.1875rem;
    padding-right: 0.2875rem;
    cursor: pointer;
  }
}

@media screen and (min-width: 64rem) {
  .thumbnails-left .woocommerce-product-gallery .slick-slider {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .thumbnails-left .product-thumbnails-wrapper {
    order: -1;
  }

  .thumbnails-left .product-thumbnails-wrapper .flex-control-nav>button {
    padding: 0;
    margin-top: 10px;
    width: 48%;
    height: 30px;
    border: none;
    border-radius: 0px;
    background-color: #f7f7f7;
    color: #333;
    font-size: 0;
    line-height: 30px;
  }

  .thumbnails-left .woocommerce-product-gallery .slick-slider .slick-prev,
  .thumbnails-left .woocommerce-product-gallery .slick-slider .slick-next {
    order: 2;
  }

  .thumbnails-left .product-thumbnails-wrapper .flex-control-nav.slick-slider>button.slick-prev {
    float: left;
  }

  .thumbnails-left .product-thumbnails-wrapper .flex-control-nav.slick-slider>button.slick-next {
    float: right;
  }
}

.thumbnails-bottom .product-thumbnails-wrapper .flex-control-nav>button {
  position: absolute;
  top: 55%;
  z-index: 250;
  align-items: center;
  height: 35px;
  width: 35px;
  margin-top: -25px;
  cursor: pointer;
  transition: all .25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  color: #a5a5a5;
  padding: 0;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .thumbnails-bottom .product-thumbnails-wrapper .flex-control-nav>button {
    width: 20px;
    height: 20px;
    top: 80%;
  }

  .thumbnails-bottom .product-thumbnails-wrapper .flex-control-nav.slick-slider>button.slick-next {
    right: 3px !important;
  }
}


.thumbnails-bottom .product-thumbnails-wrapper .flex-control-nav.slick-slider>button.slick-prev {
  left: 0px;
}

.thumbnails-bottom .product-thumbnails-wrapper .flex-control-nav.slick-slider>button.slick-next {
  right: -2px;
}

body .dgwt-wcas-search-form input[type=search].dgwt-wcas-search-input::-webkit-input-placeholder {
  font-style: normal;
  color: #ADB5BD;
  font-weight: 500;
}

body .dgwt-wcas-search-form input[type=search].dgwt-wcas-search-input::-moz-placeholder {
  font-style: normal;
  color: #ADB5BD;
  font-weight: 500;
}

body .dgwt-wcas-search-form input[type=search].dgwt-wcas-search-input:-ms-input-placeholder {
  font-style: normal;
  color: #ADB5BD;
  font-weight: 500;
}

body .dgwt-wcas-search-form input[type=search].dgwt-wcas-search-input::-ms-input-placeholder {
  font-style: normal;
  color: #ADB5BD;
  font-weight: 500;
}


body .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  height: 3.125rem;
  color: #212529;
  border-color: #CED4DA;
  background-color: #fff;
  display: inline-flex;
  -webkit-box-align: center;
  padding-left: 1.125rem;
  box-shadow: 0 1px 2px 0 rgb(33 37 41 / 9%);
  border-radius: var(--theme-form-radius);
  padding-right: 3.875rem;
  align-items: center;
  font-size: var(--theme-form-font-size);
  font-weight: var(--theme-form-font-weight);
  border: 1px solid var(--color-form-border);
}

button.dgwt-wcas-search-submit {
  all: unset;
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #212529;
  width: 3.875rem;
  background-color: var(--color-info);
  height: 3.125rem;
  top: 0;
  right: 0;
  cursor: pointer;
}

body .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  display: block;
}

body .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  font-size: 0;
  background: none;
  padding-right: 0;
  padding-left: 0;
  color: #333;
  text-align: center;
  opacity: 1;

}

.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:before {
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: block !important;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  content: "\ea38";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.3rem;
  border: none;
  position: static;
}

body .dgwt-wcas-search-wrapp {
  max-width: 100%;
}

body .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus,
body .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:active {
  border-color: #EF233C;
  -webkit-box-shadow: 0 0 0 1px #ef233c;
  box-shadow: 0 0 0 1px #ef233c;
}

body .dgwt-wcas-sp ins {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.no-more-products+.no-more-products {
  display: none;
}

.quickview-product .product-low-stock {
  margin-top: 0.9375rem;
}

.before-shop-loop .sorting-products select,
.before-shop-loop .per-page-products select {
  cursor: pointer;
}

.primary-column .before-shop-loop .per-page-products select {
  height: auto !important;
  width: 100% !important;
  clip: auto !important;
  clip-path: none !important;
  position: relative !important;
}

.woocommerce-cart-form .product-remove>* {
  /* position: absolute; */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-shadow: 0 0 0;
  width: 1rem;
  height: 1rem;
  top: 0.625rem;
  left: 0;
  color: #fff;
  background-color: red;
  border-radius: 50%;
  line-height: 2px;
}

@media screen and (max-width: 64.0625rem) {
  .woocommerce-cart-form .product-remove>* {
    top: 35px;
  }
}

.woocommerce-cart-form .product-remove {
  padding: 0;
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper .product-detail .product-wishlist p {
    padding-left: 0.9375rem !important;
  }
}

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

  .product-detail .klb-single-stock .product-stock.stock.in-stock,
  .product-detail .klb-single-stock .product-stock.stock.out-of-stock {
    margin-left: 0;
  }
}

.site-header .dropdown-cats .dropdown-menu .klbth-menu ul.sub-menu ul.sub-menu {
  position: relative;
  left: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.site-header .dropdown-cats .dropdown-menu .klbth-menu>li>ul.sub-menu>li.menu-item-has-children>a {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.9375rem 1.25rem 0.625rem;
  opacity: 0.3;
  pointer-events: none;
}

.klb-comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comment-right-side {
  width: 100%;
}

.entry-footer .post-comments .comment-content {
  padding-left: 0;
  margin-top: 16px;
}

.entry-footer .post-comments .reply {
  padding-left: 0;
}

.klb-comment-body .vcard {
  margin-right: 1.25rem;
}

@media screen and (min-width: 64.0625rem) {
  .klb-comment-body .vcard {
    margin-right: 2.5rem;
  }
}

.klb-comment-body img.avatar {
  border-radius: 50%;
}

.single-post .post-comments .comment-list .comment-body .comment-content {
  padding-left: 0;
}

.single-post .post-comments .comment-list .comment-body .reply {
  padding: 0;
}

.products.hover-opacity:hover .product:hover {
  z-index: 9;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

.comment-metadata time {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-left: 0.9375rem;
}

.site-login {
  margin-top: 2.5rem;
}

@media screen and (min-width: 64rem) {
  .site-login {
    margin-top: 5.5rem;
  }
}

.site-login .site-login-container {
  display: block;
  max-width: 560px;
  padding: 0 .9375rem;
  margin-left: auto;
  margin-right: auto;
}

.site-login .site-login-overflow {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 64rem) {
  .site-login .site-login-overflow {
    border: 1px solid #e5e8ec;
    border-radius: 7px;
    padding: 60px;
  }
}

.site-login .login-page-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.site-login .login-page-tab li+li {
  margin-left: 1.25rem;
}

@media screen and (min-width: 64rem) {
  .site-login .login-page-tab li+li {
    margin-left: 2.5rem;
  }
}

.site-login .login-page-tab li a {
  font-family: var(--theme-secondary-font);
  font-size: 1.065rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #212529;
  text-decoration: none;
}

.site-login .login-page-tab li a:not(.active) {
  color: #c2c2d3;
}

.site-login .login-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.4s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: all 0.4s cubic-bezier(0.17, 0.62, 0.44, 0.99);
}

.site-login.no-register .login-form-container {
  width: 100%;
}

.site-login .login-form-container>* {
  padding: 0 1px;
  width: 100%;
  will-change: opacity;
  margin-top: .9375rem;
  -webkit-transition: all 0.4s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: all 0.4s cubic-bezier(0.17, 0.62, 0.44, 0.99);
}

.site-login .login-form-container>*.register-form {
  opacity: 0;
}

.site-login .login-form-container .lost-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.site-login .login-form-container .woocommerce-button {
  width: 100%;
}

.site-login .login-form-container.show-register-form {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.site-login .login-form-container.show-register-form .login-form {
  opacity: 0;
}

.site-login .login-form-container.show-register-form .register-form {
  opacity: 1;
}

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

  .woocommerce-cart .shop-container,
  .woocommerce-checkout .shop-container,
  .woocommerce-account .shop-container {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

.woocommerce-cart .shop-container,
.woocommerce-checkout .shop-container,
.woocommerce-account .shop-container {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
  ;
}

@media screen and (min-width: 48rem) {
  .products.column-6 .product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 75rem) {
  .products.column-6 .product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666%;
    flex: 0 0 16.6666%;
  }
}

.cart-empty-page {
  text-align: center;
  max-width: 760px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.cart-empty-page .cart-empty {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-danger);
  margin-bottom: 1.25rem;
}

.cart-empty-page .empty-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  margin-bottom: 1.875rem;
}

@media(max-width: 600px) {
  .my-account-wrapper .my-account-user {
    margin-top: 15px;
  }

  .woocommerce-account .col-1,
  .woocommerce-account .col-2 {
    width: 100%;
  }

  .woocommerce-account .col-1+.col-2 {
    margin-top: 30px;
  }
}

section.woocommerce-order-details+section.woocommerce-customer-details {
  margin-top: 30px;
}

section.woocommerce-order-details td,
section.woocommerce-order-details th {
  padding: 10px;
}

.product .product-footer .product-footer-inner .button {
  font-size: 0.875rem;
  width: 100%;
  height: 2.375rem;

}

.product .product-footer .product-footer-inner .button.loading {
  transform: rotate(0) !important;
  border-radius: var(--theme-form-radius) !important;
}

.widget-checkbox-list ul li a label:hover span {
  background-color: #f2f3f5;
}

form#klb-attribute-filter {
  position: relative;
}

.attribute-filter-loader {
  width: 100%;
  height: 100%;
  background-color: rgb(243 97 15);
  animation: none;
  transform: none;
  position: absolute !important;
  top: -10px;
  left: 0;
  padding: 12px;
  opacity: 0.2;
}

.service-search-modal .attribute-filter-loader,
.widget_search_filter .attribute-filter-loader {
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  top: 0;
}

.meta-item.sticky-post {
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
}

.wp-block-button {
  margin-bottom: 15px;
}

.wp-block-cover.has-background-dim p.wp-block-cover-text {
  color: #fff;
}

.wp-block-cover {
  margin-bottom: 15px;
}

ul.blocks-gallery-grid {
  padding-left: 0;
}

figure.wp-block-gallery figcaption.blocks-gallery-caption {
  margin-bottom: 30px;
}

.klb-post .has-large-font-size {
  line-height: initial;
}

.klb-post p[style="font-size:46px"] {
  line-height: initial;
}

.klb-post span.catcount {
  font-size: 1rem;
  float: right;
}

.klb-post select,
.klb-post form.wp-block-search {
  margin-bottom: 1rem;
}

.klb-pagination a,
.klb-pagination span.current {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  width: 2.125rem;
  height: 2.125rem;
  border: 1px solid var(--color-form-border);
  border-radius: 3px;
  text-decoration: none;
  color: var(--color-text);
}

.klb-pagination span.current {
  background-color: var(--color-primary);
  border-color: transparent;
  color: #fff;
}

.klb-readmore.button+.klb-pagination {
  margin-top: 20px;
}

form.post-password-form input[type="submit"] {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

form.post-password-form input[type="submit"]:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  ol.comment-list ul.children {
    padding-left: 0;
  }

  .comment .klb-post td {
    padding: 4px;
  }
}

nav.comment-navigation h3 {
  font-size: 16px;
}

nav.comment-navigation a {
  font-size: 15px;
}

nav#comment-nav-above {
  margin-bottom: 20px;
  margin-top: 30px;
}

nav#comment-nav-below {
  margin-bottom: 30px;
}

.wp-block-gallery.alignleft {
  margin-right: 30px;
}

blockquote {
  border-left: 4px solid var(--color-form-border);
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
  margin-top: 0.9375rem;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 64.0625rem) {
  blockquote {
    padding-left: 3.125rem;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

iframe {
  max-width: 100%;
}

.post .entry-title {
  word-break: break-word;
}

span.catcount {
  float: right;
  font-size: 0.8125rem;
  color: var(--color-text-primary);
}

.blog-sidebar .widget ul li a,
.blog-sidebar .widget ol li a {
  color: var(--color-text-primary);
  text-decoration: none;
  display: inline-block;
}

.blog-sidebar .widget ul,
.blog-sidebar .widget ol {
  list-style: none;
  padding-left: 0;
  font-size: 0.875rem;
}

.blog-sidebar .widget ul>li+li {
  margin-top: 0.5rem;
}

.blog-sidebar ul li a:before {
  margin-right: 10px;
  text-rendering: auto;
  line-height: 1;
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e99e';
  font-size: 12px;
}

.widget_calendar caption {
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: var(--color-primary);
}

.widget_calendar table th {
  font-weight: 400;
  background: #ddd;
}

.widget_calendar table#wp-calendar {
  caption-side: top;
  text-align: center;
}

nav.wp-calendar-nav {
  padding-top: .75rem;
  text-align: center;
}

.widget_recent_comments ul li>a:before {
  display: none;
}

.widget_rss ul li a.rsswidget {
  display: block;
  font-weight: 500;
  margin-bottom: .625rem;
}

.widget_rss ul li {
  margin-bottom: 1rem;
}

.blog-sidebar .widget ul.children,
.blog-sidebar .widget ul.sub-menu {
  padding-left: 15px;
  margin-top: 0.5rem;
}

.widget.widget_popular_posts ul li a:before {
  display: none;
}

.tagcloud a {
  color: #021523;
  background-color: transparent;
  border: 1px solid var(--color-form-border);
  height: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .875rem !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
}

.search_form {
  width: 100%;
  position: relative;
}

.search_form button {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  outline: 0;
  color: #202435;
}

.search_form button i {
  font-size: 1rem;
}

.blog-sidebar .badge.large {
  background: none;
  color: inherit;
  font-weight: inherit;
  padding: 0;
  min-height: 0;
  text-transform: inherit;
  display: inline;
  line-height: inherit;
  white-space: inherit;
  font-size: 0.875rem;
}

.klb-page.page-content {
  margin-top: 1.875rem;
}

@media screen and (min-width: 64.0625rem) {
  .klb-page.page-content {
    margin-top: 3.75rem;
  }
}

h1.klb-page-title {
  margin-bottom: 1.2rem;
}

@media(max-width:991px) {
  .blog-sidebar {
    margin-top: 40px;
  }
}

h2.search-title {
  margin-bottom: 1.875rem;
  font-weight: 600;
  font-size: 2.5rem;
}

.single-product-wrapper .product-detail .product-meta .product-rating+.product-sku {
  border-left: 1px solid var(--color-info-dark);
  padding-left: 0.625rem;
  margin-left: 0.625rem;
}

.single-product-wrapper .product-detail .product-meta .product-sku {
  border: none;
  padding-left: 0;
  margin-left: 0;
}

#tab-additional_information h2 {
  font-weight: 400;
  font-size: 1.125rem;
}

.woocommerce-product-gallery__image img {
  width: 100%;
}

.single-product-wrapper .product-detail .product-meta.bottom .product-tags {
  align-items: center;
}

.single-product-wrapper .product-detail .product-meta.bottom .product-tags a+a {
  margin-left: 5px;
}

.quickview-product.single-product-wrapper .product-detail .product-iconboxes {
  display: none;
}

.widget_social_media .social-media a {
  display: flex !important;
}

.widget_social_media .social-media a:before {
  display: none;
}

.widget_search_filter .entry-description {
  font-size: 0.75rem;
  color: var(--color-text-description);
}

@media screen and (max-width:64rem) {
  .single-product-wrapper .product-detail form .product-low-stock {
    display: none;
  }

  .product-detail .buy_now_button {
    width: 100%;
    margin-top: 1.25rem;
  }

  .single .product-type-simple form.cart {
    display: flex;
    flex-flow: row wrap;
  }
}

.badge.trending {
  background-color: var(--color-danger);
}

.tab-ajax.preloader {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  animation: none;
  transform: none;
  position: absolute !important;
}

.tab-ajax.preloader .path {
  display: none;
}

.woocommerce-privacy-policy-text p {
  font-size: 0.8125rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  max-width: 50%;
  width: 50%;
}

#order_review .woocommerce-terms-and-conditions p:first-child {
  display: none;
}

.login-dropdown-wrapper ul.myaccount-navigation {
  list-style: none;
  padding: 0;
  text-align: left;
}

.login-dropdown-wrapper ul.myaccount-navigation li a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-radius: var(--theme-theme-radius-small);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: currentColor;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.login-dropdown-wrapper ul.myaccount-navigation li:last-child a {
  padding-bottom: 0;
}

.site-header .quick-button .login-dropdown.user-logged-in {
  min-width: 12rem;
}

.tinv-wishlist .tinv-modal.tinvwl_added_to_wishlist.tinv-modal i:before {
  top: 3px;
}

.tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button {
  align-items: baseline;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.woocommerce-thankyou-order-received {
  margin-bottom: 30px;
  padding: 3%;
  width: 100%;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
}


ul.woocommerce-thankyou-order-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

ul.woocommerce-thankyou-order-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 25px 20px;
  margin: 15px 0;
  box-sizing: border-box;
  box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%);
}

@media(max-width:768px) {
  ul.woocommerce-thankyou-order-details {
    flex-direction: column;
  }

  ul.woocommerce-thankyou-order-details li {
    margin-bottom: 10px;
  }
}

h2.woocommerce-order-details__title,
section.woocommerce-customer-details h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media(max-width:991px) {
  .products .product .product-footer .product-footer-details {
    display: none;
  }

  .products .product .product-footer .product-footer-inner {
    padding-top: 0;
  }

  .products .product .product-buttons>*,
  .elementor-widget-partdo-deals-product .product .product-buttons>*,
  .elementor-widget-partdo-special-product .product .product-buttons>* {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .quickview-product h1.product_title {
    margin-top: 30px;
  }
}

@media(max-width:767px) {
  .elementor-widget-partdo-deals-product .col-md-6+.col-md-6 {
    margin-top: 20px;
  }

  .single-product-wrapper .product-detail .product-meta.bottom>* {
    display: inline-block;
  }
}

.elementor-widget-partdo-deals-product .product:hover.custom-hover,
.elementor-widget-partdo-special-product .product:hover.custom-hover {
  z-index: 11;
}

.elementor-widget-partdo-deals-product .product:hover .product-buttons>*,
.elementor-widget-partdo-special-product .product:hover .product-buttons>* {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.elementor-widget-partdo-deals-product .product:hover .content-switcher .switcher-wrapper,
.elementor-widget-partdo-special-product .product:hover .content-switcher .switcher-wrapper {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (min-width: 992px) {

  .elementor-widget-partdo-deals-product .product:hover .product-footer,
  .elementor-widget-partdo-deals-product .product:hover .product-content-fade .elementor-widget-partdo-special-product .product:hover .product-footer,
  .elementor-widget-partdo-special-product .product:hover .product-content-fade {
    opacity: 1;
    visibility: visible;
  }
}

.product-wishlist span.tinvwl_add_to_wishlist-text {
  font-size: 0;
}

.product-detail form.cart .tinv-wishlist {
  display: none;
}

.shop-container.shop-page-wrapper .klbth-banner {
  margin-bottom: 10rem;
}

@media screen and (min-width: 992px) {
  .shop-container.shop-page-wrapper .klbth-banner {
    margin-bottom: 1.25rem;
  }
}

.woocommerce-cart-form table td.product-remove {
  position: relative;
}

@media screen and (max-width: 64.0625rem) {
  .theiaStickySidebar {
    width: 100%;
    height: 100%;
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
  }

  #sidebar .widget:last-child {
    margin-bottom: 1.25rem;
  }
}

.filter-holder .widget_search_filter .entry-description p {
  display: none;
}

.filter-holder .widget_search_filter .entry-description p {
  display: none;
}

.filter-holder ul {
  list-style: none;
  padding: 0;
}

.product .product-cart-form a.button:hover:after {
  border: 1px solid rgb(255 251 251 / 40%);
  border-left-color: #fff;
}

.post .entry-meta .meta-item {
  font-size: 0.85rem;
}

.post .entry-meta .meta-item>span {
  color: var(--color-text-description);
}

.sticky-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.single-product .woocommerce-product-details__short-description ul {
  padding-left: 15px;
}

.klbth-module-header.align-center .entry-description {
  color: var(--color-text-description);
  line-height: 1.4;
}

.mvx-dashboard.woocommerce .col-1,
.mvx-dashboard.woocommerce .col-2 {
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

.mvx-dashboard.woocommerce .col2-set {
  margin-left: -15px;
  margin-right: -15px;
}

.mvx-dashboard.woocommerce .col2-set:before,
.mvx-dashboard.woocommerce .col2-set:after {
  content: '';
  display: table;
  clear: both;
}

.mvx-dashboard.woocommerce h2 {
  font-size: 1.125rem;
  font-weight: 500;
}

.mvx-dashboard.woocommerce label.woocommerce-form-login__rememberme {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}


.mvx-main-section .mvx-tab-header {
  display: none;
}

body.tax-dc_vendor_shop {
  background-color: var(--color-background);
}

.vendor-store .woocommerce-products-header__title.page-title {
  display: none;
}

.vendor-store .woocommerce-products-header {
  margin-top: 0;
}

.vendor-store .column-class.mvx-middle-sec {
  margin-left: 0;
  margin-right: 0;
}

.vendor-store {
  margin-top: 30px;
}

.single section.woosc-quick-table {
  display: none;
}

@media (max-width: 600px) {
  .site-header .cart-button:hover .cart-dropdown.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
  }
}

input#rememberme {
  position: relative;
  top: 1px;
  margin-right: 6px;
}

.product-extra-details table tr td,
.product-extra-details table tr th {
  background-color: var(--bs-table-bg);
  border-width: 0;
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.product-extra-details table p {
  margin-bottom: 0;
}

.product-detail .klbth-countdown-wrapper {
  margin-bottom: 1.25rem;
}

.site-header .klbth-menu-wrapper.primary .menu-item-has-children.mega-menu>.sub-menu>.menu-item:hover>a {
  color: #c8cdd3 !important;
  background-color: transparent !important;
}

.site-header .klbth-menu-wrapper.primary .menu-item-has-children.mega-menu>.sub-menu>.menu-item>a {
  color: #c8cdd3 !important;
}

.quickview-product tr.product {
  display: table-row;
}

.quickview-product td.woocommerce-grouped-product-list-item__thumbnail {
  padding-right: 0;
  min-width: 40px;
}

.klb-title.module-header {
  margin-bottom: 15px;
}

.klb-title.module-header {
  width: 100%;
}

.klb-module {
  margin-top: 1.875rem;
}

@media screen and (min-width: 64rem) {
  .klb-module {
    margin-top: 3.75rem;
  }
}

.klb-title h2.entry-title {
  width: 100%;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid var(--color-info-dark);
  font-size: 1.125rem;
  line-height: var(--bs-body-line-height);
}

@media screen and (min-width: 64rem) {
  .klb-title h2.entry-title {
    font-size: 1.25rem;
  }
}

.product-categories.posted_in {
  flex-wrap: wrap;
  align-items: center;
}

.single-product-wrapper .product-categories.posted_in a+a {
  margin-left: 3px;
}

.select2-container--open .select2-dropdown {
  z-index: 99999;
}

.wpcf7 p br {
  display: none;
}

.wpcf7 p {
  margin-bottom: 0;
}

p.woocommerce-store-notice.demo_store {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--color-primary);
  margin: 0;
  padding: 15px;
  color: #fff;
  z-index: 999;
}

p.woocommerce-store-notice.demo_store a {
  color: #fff;
  font-weight: 500;
}

.mvx-dashboard ul.login-page-tab li {
  list-style: none;
}

.dokan-dashboard-wrap .select2 .select2-selection {
  height: auto;
}

.dokan-dashboard-wrap .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  position: static;
  border: none;
  height: auto;
}

.dokan-dashboard-wrap .select2-container .select2-search--inline .select2-search__field {
  height: auto;
}

.dokan-dashboard-wrap .select2-container .select2-search--inline {
  float: none;
}

.dokan-dashboard .select2 .select2-selection.select2-selection--single .select2-selection__rendered {
  height: var(--theme-form-height);
  line-height: var(--theme-form-height);
}

.dokan-dashboard .select2-container .select2-selection--single {
  height: var(--theme-form-height);
  border-radius: var(--theme-form-radius);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.site-header .header-mobile .header-inner {
  z-index: 9;
}

.site-header .header-main .site-brand img {
  height: auto;
}

.site-header .header-mobile .site-brand img {
  height: auto;
}

.site-drawer .site-brand img {
  height: auto;
}

section.upsells {
  margin-top: 30px;
}

section.up-sells>h2 {
  width: 100%;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid var(--color-info-dark);
  font-size: 1.125rem;
  line-height: var(--bs-body-line-height);
}

@media screen and (min-width: 64rem) {
  section.up-sells>h2 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1199.98px) {
  .hide-below-1200 {
    display: none !important;
  }
}


section#related-products {
  display: inherit;
  max-width: 100%;
}

section#related-products>.products {
  max-width: inherit;
}

.woocommerce-product-gallery {
  position: relative;
}

@media screen and (max-width: 1330px) {
  .product .product-content-fade {
    left: -0.9375rem;
    right: -0.9375rem;
  }

  .product .product-footer .product-footer-inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }

  .klbth-slider-wrapper .klbth-slider.klbth-carousel .slick-arrow {
    width: 22px;
    height: 28px;
  }

  .klbth-slider-wrapper .klbth-slider.klbth-carousel .slick-arrow.slick-next {
    right: -5px;
  }

  .klbth-slider-wrapper .klbth-slider.klbth-carousel .slick-arrow.slick-prev {
    left: -5px;
  }
}

@media(max-width: 769px) {
  .sub-menu .partdo-elementor-template {
    display: none;
  }
}

.sidebar-mega ul.sub-menu {
  min-width: 500px;
}

.elementor-editor-active .site-footer.sticky-footer {
  position: static;
}

@media(max-width: 480px) {
  .single-product .product-detail .product-tags a {
    margin-bottom: 5px;
    display: inline-block;
  }
}

.products h2.woocommerce-loop-category__title {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--color-text-primary);
}

a.detail-bnt.quickview {
  cursor: pointer;
}

.site-header .dropdown-cats .dropdown-menu .klbth-menu .sub-menu {
  bottom: inherit;
  min-height: 100%;
}

.woocommerce-cart-form table th.product-remove {
  display: table-cell !important;
}

span.password-input {
  position: relative;
}

.password-input .show-password-input {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-gray600);
  font-size: 1.3125rem;
  width: 2rem;
  height: 2.875rem;
  cursor: pointer;
  right: 0.3125rem;
}

.password-input .show-password-input::before {
  font-family: "klbtheme";
  content: "\ea53";
  line-height: 1;
}

.password-input .show-password-input.display-password::before {
  content: "\ea50";
}

.klb-single-video {
  z-index: 9;
}

a.woocommerce-product-gallery__trigger {
  z-index: 9;
}

.site-mask {
  opacity: 0 !important;
  visibility: hidden !important;
}

.site-mask.active {
  opacity: 1 !important;
  visibility: visible !important;
}

@media screen and (min-width: 992px) {
  .klbth-module-grid.grid-2 .post {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
  }
}

.klb-blog .klbth-module.klbth-module-grid .post .entry-title {
  font-size: 1.25rem;
}

.klb-blog .klbth-module.klbth-module-grid .post .entry-excerpt {
  font-size: 0.875rem;
}

.header-mobile .mobile-search-column {
  width: 100%;
}

.products .product .product-content .sku_wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
  color: #000;
  font-weight: 600;
}

.products .product .product-content .sku_wrapper>span.sku {
  font-weight: 500;
  color: #6b7280;
  margin-left: 3px;
}

.products .product .product-content .klb-product-attributes tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.products .product .product-content .klb-product-attributes tr td,
.products .product .klb-product-attributes tr th {
  border: 0;
  padding: 0;
  font-size: 0.75rem;
}

.products .product .product-content .klb-product-attributes tr th:after {
  content: ':';
  margin-right: 4px;
}

.products .product .product-content .klb-product-attributes {
  margin-top: 5px;
}

.products .product .product-content .klb-product-attributes tr th {
  color: #000;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.2;
}



.products .product .product-content .klb-product-attributes tr td {
  font-weight: 500;
  color: #6b7280;
}

.products .product .product-content .klb-product-attributes p {
  margin-bottom: 0;
  line-height: 1.2;
}

.products .product.product-type-variable table.variations tr:nth-child(2) {
  display: none;
}

.products .product.product-type-variable table.variations tr:nth-child(4) td {
  display: contents;
}

.products .product.product-type-variable .reset_variations {
  right: 0;
  bottom: 0;
  position: absolute;
  font-size: 0;
  line-height: 1;
}

.products .product.product-type-variable .reset_variations {
  color: #021523;
  font-size: 0;
  vertical-align: top;
  line-height: 37px;
  display: inline-block;
  margin-left: 10px;
  background: none;
  padding: 0;
  height: auto;
}

.products .product.product-type-variable .reset_variations:before {
  font-family: "klbtheme";
  font-size: 13px;
  line-height: 1;
  content: "\ea1c";
  margin-right: 3px;
}

.single-product-wrapper .woocommerce-product-gallery .product-badges {
  padding-left: inherit;
}

.single-gallery-carousel2columns a.woocommerce-product-gallery__trigger {
  top: 10px;
  right: 10px;
  left: auto;
}

.woocommerce-product-gallery>.flex-viewport {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
}

.woocommerce-product-gallery>.flex-viewport img {
  border: none;
}

.header-mobile .container+.container .header-inner {
  z-index: 8;
}

.password-input .show-password-input {
  background: none !important;
  font-weight: inherit;
  padding: 0 !important;
}

.quickview-product.white-popup {
  position: relative;
  background: #FFF;
  padding: 1.25rem;
  width: auto;
  max-width: 64rem;
  margin: 1.25rem auto;
  border-radius: getSize(border-radius);
}

@media screen and (min-width: 1024px) {
  .quickview-product.white-popup {
    padding: 2.5rem;
  }
}

.woocommerce-product-gallery>ul.flex-direction-nav li.flex-nav-next,
.woocommerce-product-gallery>ul.flex-direction-nav li.flex-nav-prev {
  position: absolute;
  top: 45% !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.875rem;
  height: 2.25rem;
  z-index: 1;
  font-size: 0;
}

.woocommerce-product-gallery>ul.flex-direction-nav li.flex-nav-next {
  right: 0.9375rem;
}

.woocommerce-product-gallery>ul.flex-direction-nav li.flex-nav-prev {
  left: 0.9375rem;
}

.woocommerce-product-gallery>ul.flex-direction-nav a:before {
  font-family: "klbtheme";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  font-size: 2.25rem !important;
  color: var(--color-text-primary);
}

.woocommerce-product-gallery>ul.flex-direction-nav a.flex-prev:before {
  content: "\e9aa";
}

.woocommerce-product-gallery>ul.flex-direction-nav a.flex-next:before {
  content: "\e9ab";
}

.woocommerce-product-gallery>ul.flex-direction-nav a button {
  display: none;
}

.site-header .header-nav {
  position: relative;
}

@media screen and (max-width: 769px) {
  .my-account-wrapper .woocommerce-MyAccount-content {
    margin-top: 20px;
  }
}

.shop-container,
main#primary {
  margin-top: 11rem;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.625rem;
}

.price del {
  font-size: 80%;
  color: var(--color-text-description);
}

.price ins {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
}

.product-rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.625rem;
}

.product-rating .rating-count {
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 600;
  margin-left: 0.625rem;
}

.star-rating {
  position: relative;
  font-size: 0.75rem;
  line-height: normal;
  width: 68px;
  overflow: hidden;
}

.star-rating::before {
  font-family: "klbtheme";
  content: "\e853\e853\e853\e853\e853";
  letter-spacing: 3px;
  color: var(--color-info);
}

.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.star-rating span::before {
  font-family: "klbtheme";
  content: "\e853\e853\e853\e853\e853";
  letter-spacing: 3px;
  color: var(--color-review);
}

.product-seller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  line-height: normal;
}

.product-seller span {
  font-weight: 500;
  margin-right: 3px;
  color: var(--color-text-light);
}

.product-seller a {
  font-weight: 600;
  color: var(--color-text-primary);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.product-seller a:hover {
  color: var(--color-primary);
}

.content-switcher {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 0.9375rem;
}

.content-switcher .switcher-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: transform 0.3s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: transform 0.3s cubic-bezier(0.17, 0.62, 0.44, 0.99), -webkit-transform 0.3s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  will-change: transform;
}

@media screen and (min-width: 992px) {
  .content-switcher .switcher-wrapper {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@media screen and (max-width: 991.98px) {
  .content-switcher .switcher-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 992px) {
  .content-switcher .switcher-wrapper>* {
    margin-bottom: 0;
  }

  .content-switcher .switcher-wrapper>*:nth-child(2) {
    position: absolute;
    bottom: -100%;
  }
}

.content-switcher .product-seller a {
  color: var(--color-primary);
}

.product-stock {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
  line-height: normal;
}

.product-stock i {
  font-size: 0.875rem;
  line-height: normal;
}

.product-stock span {
  font-weight: 600;
  margin-left: 0.5rem;
}

.product-stock.in-stock {
  color: var(--color-success-dark);
}

.product-stock.out-of-stock {
  color: var(--color-danger-dark);
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  pointer-events: none;
}

.product-badges .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 1.5rem;
}

.product-badges .badge:not(.sale) {
  font-size: 0.6875rem;
  line-height: 0;
  text-transform: uppercase;
}

.product-badges .badge.sale {
  background-color: var(--color-danger);
}

.product-badges .badge.feature {
  background-color: var(--color-text-description);
}

.product-badges.style-2 {
  left: -4px;
}

.product-badges.style-2>* {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.product-badges.style-3 {
  left: -0.625rem;
}

.product-badges.style-3>* {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.product-badges.style-3>*::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 5px 0;
  border-color: transparent rgba(0, 0, 0, 0.1) transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.product-badges.style-3>*::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 5px 0;
  border-color: transparent var(--color-info-dark) transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  pointer-events: none;
}

.product-badges.style-3>*.sale::after {
  border-right-color: var(--color-danger-dark);
}

.product-buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4375rem;
  top: 0.75rem;
  right: 0.75rem;
}

.product-buttons>* {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  color: currentColor;
  background-color: #fff;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--color-info);
  -webkit-box-shadow: 0 1px 3px 0 rgba(33, 37, 41, 0.1);
  box-shadow: 0 1px 3px 0 rgba(33, 37, 41, 0.1);
  -webkit-transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), background-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), border-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), -webkit-box-shadow 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), background-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), border-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), -webkit-box-shadow 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), background-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), border-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), box-shadow 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), background-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), border-color 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), box-shadow 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99), -webkit-box-shadow 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  will-change: opacity, transform;
}

@media screen and (min-width: 992px) {
  .product-buttons>* {
    font-size: 1.125rem;
    width: 2rem;
    height: 2rem;
  }
}

.product-buttons>* i {
  position: relative;
}

.product-buttons>* i.klbth-icon-heart-round {
  top: 1px;
  text-shadow: 0 0 0;
}

@media screen and (min-width: 992px) {
  .product-buttons>* i.klbth-icon-repeat {
    font-size: 1rem;
    text-shadow: 0 0 0;
  }
}

.product-buttons>* i.klbth-icon-eye-empty {
  font-size: 1.0625rem;
  text-shadow: 0 0 0;
}

@media screen and (min-width: 992px) {
  .product-buttons>* i.klbth-icon-eye-empty {
    font-size: 1.25rem;
  }
}

.product-buttons>* svg {
  width: 1.125rem;
}

.product-buttons>*.compare {
  opacity: 0;
  -webkit-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
}

.product-buttons>*.quickview {
  opacity: 0;
  -webkit-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}

.product-buttons>*:hover {
  color: currentColor;
  background-color: var(--color-info-light);
  border-color: var(--color-info-dark);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.product-buttons>*:hover.wishlist {
  color: #F03E3E;
  border-color: #ecd8d8;
  background-color: #FFF5F5;
}

.product-buttons>*:hover.snow {
  border-color: #cfe6e9;
  background-color: #e4f7f9;
}

.product-buttons>*:hover.sun {
  border-color: #f4e5ce;
  background-color: #fdf5e9;
}

.product-progress-wrapper {
  position: relative;
}

.product-progress-wrapper .product-progress {
  margin-bottom: 0.4375rem;
}

.product-progress-wrapper .product-progress-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.75rem;
  line-height: normal;
  color: var(--color-text-light);
}

.product-progress-wrapper .product-progress-count strong {
  color: var(--color-text-primary);
}

.product-progress {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 0.375rem;
  border-radius: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#F03E3E), color-stop(#F76028), color-stop(#FFD43B), to(#12B886));
  background: linear-gradient(to right, #F03E3E, #F76028, #FFD43B, #12B886);
  overflow: hidden;
}

.product-progress span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
}

.product-progress span.progress {
  background-color: transparent;
}

.product-progress span.not-progress {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--color-info);
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
}

.product {
  position: relative;
}

.product .product-wrapper {
  position: relative;
  z-index: 1;
}

.product .thumbnail-wrapper {
  border: 1px solid var(--color-info);
  margin-bottom: 1.25rem;
}

.product .thumbnail-wrapper .hover-slider-indicator {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  border-radius: var(--theme-theme-radius-xsmall);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.375rem;
  bottom: 0.375rem;
  left: 0.5rem;
}

.product .thumbnail-wrapper .hover-slider-indicator .hover-slider-indicator-dot {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background-color: var(--color-info-dark);
}

.product .thumbnail-wrapper .hover-slider-indicator .hover-slider-indicator-dot.active {
  background-color: var(--color-review-dark);
}

.product .thumbnail-wrapper .product-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
}

.product .product-title {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.product .product-title a {
  position: relative;
  color: currentColor;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.product .product-title a:hover {
  color: var(--color-primary);
}

.product .price {
  font-size: 1.125rem;
  line-height: normal;
  margin-bottom: 0.625rem;

}

.product .price {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
}

@media screen and (min-width: 992px) {
  .product .price {
    font-size: 1.25rem;
    line-height: normal;
  }
}

.product .product-cart-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.625rem;
}

.product .product-cart-form .price {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.125rem;
  padding-right: 0.75rem;
  margin-bottom: 0;
}

.product .product-cart-form a.button {
  font-size: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: currentColor;
  border-radius: var(--theme-theme-radius-small);
  background-color: var(--color-info-light);
  padding: 0;
  margin-left: auto;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

@media screen and (min-width: 992px) {
  .product .product-cart-form a.button {
    width: 2.375rem;
    height: 2.375rem;
    border-radius: var(--theme-theme-radius-base);
  }
}

.product .product-cart-form a.button i {
  font-size: 1.125rem;
  line-height: normal;
  margin-left: 0;
}

@media screen and (min-width: 992px) {
  .product .product-cart-form a.button i {
    font-size: 1.375rem;
    line-height: normal;
  }
}

.product .product-cart-form a.button:hover {
  color: #fff;
  background-color: var(--color-primary);
}

.product .product-footer {
  position: relative;
  left: 0;
  right: 0;
}

@media screen and (min-width: 992px) {
  .product .product-footer {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    -webkit-transition: all 0.15s cubic-bezier(0.17, 0.62, 0.44, 0.99);
    transition: all 0.15s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  }
}

.product .product-footer .product-footer-details {
  font-size: 0.75rem;
}

.product .product-footer .product-footer-details ul {
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
}

.product .product-footer .product-footer-details ul li {
  font-weight: 500;
}

.product .product-footer .add_to_cart_button {
  font-size: 0.875rem;
  width: 100%;
  height: 2.375rem;
}

.product .product-footer .product-footer-inner {
  padding-top: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .product .product-footer .product-footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 0.9375rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-top: 1px solid var(--color-info);
  }
}

.product .product-content-fade {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  background-color: var(--color-body);
  border: 1px solid var(--color-info);
  border-radius: var(--theme-theme-radius-base);
  -webkit-box-shadow: 0 25px 50px -12px rgba(33, 37, 41, 0.25);
  box-shadow: 0 25px 50px -12px rgba(33, 37, 41, 0.25);
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: all 0.15s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: all 0.15s cubic-bezier(0.17, 0.62, 0.44, 0.99);
}

@media screen and (max-width: 575.98px) {
  .product .product-content-fade {
    display: none;
  }
}

.products .product:hover.custom-hover {
  z-index: 11;
}

.products .product:hover .product-buttons>* {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.products .product:hover .content-switcher .switcher-wrapper {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (min-width: 992px) {

  .products .product:hover .product-footer,
  .products .product:hover .product-content-fade {
    opacity: 1;
    visibility: visible;
  }
}

.products {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.products:not(.klbth-slider) {
  margin-left: -5px;
  margin-right: -5px;
}

.products>*:not(.slick-list) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 1.875rem;
}

.products.strech {
  height: 100%;
}

.products.hover-opacity .product {
  -webkit-transition: opacity 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), -webkit-filter 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), -webkit-filter 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), filter 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), filter 0.1s cubic-bezier(0.28, 0.12, 0.22, 1), -webkit-filter 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  will-change: opacity, filter;
}

.products.hover-opacity:hover .product {
  opacity: 0.4;
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

.products.hover-opacity:hover .product:hover {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.products.featured-box {
  margin-left: 0;
  margin-right: 0;
  border: 1px solid var(--color-info);
  border-radius: var(--theme-theme-radius-small);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  padding: 1.5rem;
}

@media screen and (min-width: 992px) {
  .products.featured-box {
    border-radius: var(--theme-theme-radius-base);
  }
}

.products.featured-box .product {
  padding: 0;
  margin-bottom: 0;
}

.products.featured-box .product .product-progress-wrapper {
  margin-top: 0.5rem;
}

.products.featured-box .product .product-progress-wrapper .product-progress {
  height: 0.5rem;
}

.products.featured-box .feature-description {
  font-size: 0.75rem;
  color: var(--color-text-description);
  padding: 0;
  margin-top: 0.625rem;
  margin-bottom: 0;
}

.products.featured-box .feature-description p {
  margin-bottom: 0;
}

.products.list-style {
  margin-left: 0;
  margin-right: 0;
}

.products.list-style .product {
  padding-left: 0;
  padding-right: 0;
}

.products.list-style.small-list .product .product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.products.list-style.small-list .product .product-content .thumbnail-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 6rem;
  flex: 0 0 6rem;
  max-width: 6rem;
  margin-right: 1.25rem;
}

.products.list-style.small-list .product .product-content .content-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.products.list-style.small-list .product .product-content .content-wrapper .product-title {
  font-size: 0.8125rem;
  line-height: normal;
}

.products.list-style.small-list .product .product-content .content-wrapper .price {
  font-size: 1.0625rem;
  line-height: normal;
}

.products.list-style.small-list .product .product-content .product-details {
  font-size: 0.6875rem;
  line-height: normal;
  color: var(--color-text-description);
}

.products.list-style.small-list .product .product-content .product-details ul {
  padding-left: 0.9375rem;
}

.products.list-style.small-list .product .product-content .product-details ul li+li {
  margin-top: 0.3125rem;
}

.products.list-style.small-list .product .klbth-countdown-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.products.list-style.small-list .product .klbth-countdown-wrapper .kblth-countdown {
  font-size: 0.75rem;
}

.products.list-style.small-list .product .klbth-countdown-wrapper .kblth-countdown .count-item {
  width: 1.625rem;
  height: 1.75rem;
  background-color: var(--color-info-light);
}

.products.list-style.small-list .product .klbth-countdown-wrapper .countdown-description {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.625rem;
  color: var(--color-text-description);
  margin-bottom: 0;
  margin-left: 0.75rem;
}

.products.list-style.small-list.bordered .product {
  margin-bottom: 1.375rem;
}

.products.list-style.small-list.bordered .product+.product {
  padding-top: 1.375rem;
  border-top: 1px solid var(--color-info);
}

@media screen and (min-width: 992px) {
  .products.list-style.small-list.medium-image .thumbnail-wrapper {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 9.0625rem !important;
    flex: 0 0 9.0625rem !important;
    max-width: 9.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .products.list-style.small-list.medium-image .product-title {
    font-size: 0.875rem;
    line-height: normal;
  }
}

@media screen and (min-width: 992px) {
  .products.list-style.small-list.large-space.bordered .product {
    margin-bottom: 2.5rem;
  }

  .products.list-style.small-list.large-space.bordered .product+.product {
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-info);
  }
}

@media screen and (min-width: 768px) {
  .products.large-list>* {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 0.9375rem !important;
  }

  .products.large-list>*+*>* {
    padding-top: 1.875rem;
    border-top: 1px solid var(--color-info);
  }

  .products.large-list>* .product-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .products.large-list>* .product-wrapper .product-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }

  .products.large-list>* .product-wrapper .product-content .thumbnail-wrapper {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 35%;
    margin-right: 1.25rem;
  }

  .products.large-list>* .product-wrapper .product-content .content-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .products.large-list>* .product-wrapper .product-content .content-wrapper .product-title {
    font-size: 1.25rem;
  }

  .products.large-list>* .product-wrapper .product-content .content-wrapper .price {
    font-size: 1.375rem;
  }

  .products.large-list>* .product-wrapper .product-footer {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .products.large-list>* .product-wrapper .product-footer .product-footer-inner {
    margin: 0;
    padding: 0 0 0 1.875rem;
    border: 0;
  }

  .products.large-list>* .product-content-fade {
    display: none;
  }
}

@media screen and (min-width: 320px) {
  .products.mobile-2>* {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .products.column-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .products.column-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media screen and (min-width: 992px) {
  .products.column-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 992px) {
  .products.column-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 992px) {
  .products.gutter-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .products.gutter-0>* {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 576px) {
  .products.gutter-10 {
    margin-left: -0.3125rem;
    margin-right: -0.3125rem;
  }

  .products.gutter-10>* {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
}

@media screen and (min-width: 992px) {
  .products.gutter-20 {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .products.gutter-20>* {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

@media screen and (min-width: 1024px) {
  .products.gutter-30 {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }

  .products.gutter-30>* {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (min-width: 1024px) {
  .products.gutter-40 {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }

  .products.gutter-40>* {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (min-width: 1280px) {
  .products.gutter-40 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .products.gutter-40>* {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.offer-product-wrapper {
  border: 2px solid var(--color-danger);
  border-radius: var(--theme-theme-radius-small);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  padding: 1.25rem;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.offer-product-wrapper:hover {
  -webkit-box-shadow: 0 25px 50px -12px rgba(33, 37, 41, 0.25);
  box-shadow: 0 25px 50px -12px rgba(33, 37, 41, 0.25);
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper {
    border-width: 4px;
    border-radius: var(--theme-theme-radius-base);
    padding: 2.5rem;
  }
}

.offer-product-wrapper .offer-product-header {
  margin-bottom: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .offer-product-header {
    margin-bottom: 1.25rem;
  }
}

.offer-product-wrapper .offer-product-header .entry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-danger);
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .offer-product-header .entry-title {
    font-size: 1.375rem;
  }
}

.offer-product-wrapper .offer-product-header .entry-description {
  font-size: 0.75rem;
  line-height: normal;
  color: var(--color-text-description);
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .offer-product-header .klbth-countdown-wrapper .kblth-countdown {
    font-size: 1.125rem;
  }
}

.offer-product-wrapper .offer-product-header .klbth-countdown-wrapper .kblth-countdown .separator {
  color: var(--color-text-light);
}

.offer-product-wrapper .offer-product-header .klbth-countdown-wrapper .kblth-countdown .count-item {
  color: #fff;
  background: var(--color-gradient-1);
  width: 2rem;
  height: 2rem;
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .offer-product-header .klbth-countdown-wrapper .kblth-countdown .count-item {
    width: 2.375rem;
    height: 2.5rem;
  }
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .product .product-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.offer-product-wrapper .product .product-progress {
  margin-top: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .product .product-progress {
    height: 0.5rem;
  }
}

@media screen and (min-width: 992px) {
  .offer-product-wrapper .product .product-progress-count {
    font-size: 0.8125rem;
    line-height: normal;
  }
}

@media screen and (min-width: 768px) {
  .klbth-module-product-grid.boxed {
    border: 3px solid var(--color-danger);
    border-radius: var(--theme-theme-radius-base);
  }

  .klbth-module-product-grid.boxed .klbth-module-header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.9375rem;
    margin-bottom: 0;
  }

  .klbth-module-product-grid.boxed .column-item {
    padding: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  .klbth-module-product-grid.boxed .column-item+.column-item {
    border-left: 1px solid var(--color-info);
  }
}

.woocommerce-breadcrumb,
.site-breadcrumb {
  margin-bottom: 0.9375rem;
}

.woocommerce-breadcrumb ul,
.site-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-breadcrumb ul li,
.site-breadcrumb ul li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
}

.woocommerce-breadcrumb ul li::after,
.site-breadcrumb ul li::after {
  font-family: "klbtheme";
  font-size: 0.625rem;
  content: "\e9ab";
  color: var(--color-text-light);
  margin: 0 7px;
}

.woocommerce-breadcrumb ul li:last-child::after,
.site-breadcrumb ul li:last-child::after {
  display: none;
}

.woocommerce-breadcrumb ul li a,
.site-breadcrumb ul li a {
  color: var(--color-text-light);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.woocommerce-breadcrumb ul li a:hover,
.site-breadcrumb ul li a:hover {
  color: var(--color-text-description);
}

.site-breadcrumb {
  margin-top: 0.9375rem;
  margin-bottom: 1.875rem;
}

.quantity {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 32px;
  padding-right: 32px;
  margin-right: 7px !important;
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
}

.quantity .minus,
.quantity .plus {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  color: var(--color-text);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.quantity .minus:after,
.quantity .plus:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 13px;
}

.quantity .plus {
  left: auto;
  right: 0;
}

.quantity .plus::before {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background: currentColor;
  position: absolute;
  top: 19px;
  left: 13px;
}

.quantity .plus:after {
  left: auto;
  right: 13px;
}

.quantity .qty {
  width: 42px;
  border: 0;
  margin-bottom: 0;
  height: 2.875rem;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 0.9375rem;
  text-align: center;
}

.single-product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0;
  }

  .single-product-wrapper .product-gallery {
    padding-right: 6.875rem;
  }

  .single-product-wrapper .product-detail {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 0;
  }
}

.single-product-wrapper .product-gallery .entry-media {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
}

.single-product-wrapper .product-gallery .product-thumbnails-wrapper .slider-item {
  cursor: pointer;
}

.single-product-wrapper .product-gallery.thumbnails-bottom .product-thumbnails-wrapper {
  margin-top: 0.375rem;
}

.single-product-wrapper .product-gallery.thumbnails-bottom .product-thumbnails-wrapper .slick-list {
  margin-left: -0.1875rem;
  margin-right: -0.1875rem;
}

.single-product-wrapper .product-gallery.thumbnails-bottom .product-thumbnails-wrapper .slick-list .slick-track {
  margin: 0;
}

.single-product-wrapper .product-gallery.thumbnails-bottom .product-thumbnails-wrapper .slick-list .slick-track .slider-item {
  padding-left: 0.1875rem;
  padding-right: 0.1875rem;
}

.single-product-wrapper .product-gallery.thumbnails-bottom .product-thumbnails-wrapper .slick-list .slick-track .slider-item.slick-current .entry-media {
  border-color: var(--color-text-primary);
}

.single-product-wrapper .product-gallery.thumbnails-left {
  position: relative;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-gallery.thumbnails-left {
    padding-left: 5.375rem;
  }

  .single-product-wrapper .product-gallery.thumbnails-left .product-thumbnails-wrapper {
    position: absolute;
    max-width: 4.75rem;
    left: 0;
    top: 0;
  }

  .single-product-wrapper .product-gallery.thumbnails-left .product-thumbnails-wrapper .slider-item.slick-current .entry-media {
    border-color: var(--color-text-primary);
  }
}

.single-product-wrapper .product-gallery .product-extra-details {
  margin-top: 1.875rem;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-gallery .product-extra-details {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-detail .product_title {
    margin-bottom: 1.25rem;
  }
}

.single-product-wrapper .product-detail .product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.9375rem;
}

.single-product-wrapper .product-detail .product-meta .product-rating {
  margin-bottom: 0;
}

.single-product-wrapper .product-detail .product-meta .product-rating .star-rating {
  font-size: 0.8125rem;
  width: 72px;
}

.single-product-wrapper .product-detail .product-meta .product-rating .rating-count {
  font-size: 0.8125rem;
}

.single-product-wrapper .product-detail .product-meta .product-sku {
  padding-left: 0.625rem;
  margin-left: 0.625rem;
  border-left: 1px solid var(--color-info-dark);
  margin-right: 0.9375rem;
}

.single-product-wrapper .product-detail .product-meta .product-sku>span {
  font-size: 0.8125rem;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text-description);
}

.single-product-wrapper .product-detail .product-meta .product-stock {
  padding: 0.375rem 0.8125rem;
  border-radius: var(--theme-theme-radius-small);
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper .product-detail .product-meta .product-stock {
    margin-top: 0.625rem;
  }
}

.single-product-wrapper .product-detail .product-meta .product-stock.in-stock {
  background-color: var(--color-success-lighter);
}

.single-product-wrapper .product-detail .product-meta .product-stock.out-of-stock {
  background-color: var(--color-danger-lighter);
}

.single-product-wrapper .product-detail .product-meta.bottom {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid var(--color-info-dark);
  padding-top: 0.9375rem;
  margin-top: 0.625rem;
}

.single-product-wrapper .product-detail .product-meta.bottom>* {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-product-wrapper .product-detail .product-meta.bottom>*>span {
  font-size: 0.8125rem;
  color: var(--color-text-description);
  margin-right: 0.375rem;
}

.single-product-wrapper .product-detail .product-meta.bottom>* a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: currentColor;
}

.single-product-wrapper .product-detail .product-meta.bottom>*+* {
  margin-top: 0.9375rem;
}

.single-product-wrapper .product-detail .product-meta.bottom>*.product-tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-product-wrapper .product-detail .product-meta.bottom>*.product-tags ul li a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  border: 1px solid var(--color-info-dark);
  padding: 0.3125rem 0.625rem;
  border-radius: var(--theme-theme-radius-xsmall);
  -webkit-box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.05);
  box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.05);
}

.single-product-wrapper .product-detail .product-meta.bottom .entry-social {
  margin-top: 1.875rem;
}

.single-product-wrapper .product-detail .product-meta.bottom .entry-social a {
  color: #fff;
}

.single-product-wrapper .product-detail .price {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.single-product-wrapper .product-detail .product-description {
  font-size: 0.8125rem;
  line-height: 1.4375rem;
  color: var(--color-text-description);
}

.single-product-wrapper .product-detail .product-description p {
  line-height: inherit;
}

.single-product-wrapper .product-detail .product-delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.125rem;
  flex: 0 0 2.125rem;
  max-width: 2.125rem;
  height: 2.125rem;
  margin-right: 0.9375rem;
  color: #fff;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content .icon svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content .detail span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-description);
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content .detail p {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0;
}

.single-product-wrapper .product-detail .product-delivery .product-delivery-content .detail p a {
  font-size: 0.75rem;
  color: var(--color-secondary);
  margin-left: 0.9375rem;
}

.single-product-wrapper .product-detail form {
  margin-bottom: 0.9375rem;
}

.single-product-wrapper .product-detail form.cart {
  border-top: 1px solid var(--color-info-dark);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.single-product-wrapper .product-detail form.cart table.variations {
  width: 100%;
  margin-bottom: 0.9375rem;
}

.single-product-wrapper .product-detail form.cart table.variations tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-product-wrapper .product-detail form.cart table.variations .label {
  color: var(--color-text-description);
}

.single-product-wrapper .product-detail form.cart table.variations .label strong {
  color: var(--color-text-primary);
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-detail form.cart table.variations .label label {
    margin-bottom: 0;
  }
}

.single-product-wrapper .product-detail form.cart table.variations .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.625rem;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-detail form.cart table.variations .value {
    padding-left: 1.25rem;
  }
}

.single-product-wrapper .product-detail form .add_to_cart_button {
  height: 2.875rem;
  margin-right: 7px;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-detail form .add_to_cart_button {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.single-product-wrapper .product-detail form .add_to_cart_button i {
  font-size: 1.25rem;
  margin-right: 0.625rem;
  margin-left: 0;
}

.single-product-wrapper .product-detail form .add_to_cart_button span {
  line-height: 1;
}

.single-product-wrapper .product-detail form .product-low-stock {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  min-width: 170px;
  background-color: #F1F3F5;
  border-radius: var(--theme-theme-radius-base);
  padding: 6px 8px 6px 14px;
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper .product-detail form .product-low-stock {
    margin-top: 0.625rem;
  }
}

.single-product-wrapper .product-detail form .product-low-stock .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.125rem;
  flex: 0 0 1.125rem;
  max-width: 1.125rem;
  margin-right: 0.625rem;
}

.single-product-wrapper .product-detail form .product-low-stock .info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.single-product-wrapper .product-detail form .product-low-stock .info span {
  display: block;
  font-size: 0.625rem;
  color: var(--color-text-description);
}

.single-product-wrapper .product-detail form .product-low-stock .info p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-danger);
  margin-bottom: 0;
}

.single-product-wrapper .product-detail .product-wishlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper .product-detail .product-wishlist {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-
  }
}

.single-product-wrapper .product-detail .product-wishlist p {
  font-size: 0.75rem;
  padding-left: 0.9375rem;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 767.98px) {
  .single-product-wrapper .product-detail .product-wishlist p {
    padding-left: 0;
    padding-right: 0.9375rem;
  }
}

.single-product-wrapper .product-detail .product-wishlist a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.125rem;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--color-text-primary);
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.single-product-wrapper .product-detail .product-wishlist a i {
  text-shadow: 0 0 0;
}

.single-product-wrapper .product-detail .product-wishlist a:hover {
  color: var(--color-danger);
  background-color: var(--color-danger-light);
  border-color: transparent;
}

.single-product-wrapper .product-detail .product-assistant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1.25rem;
}

.single-product-wrapper .product-detail .product-assistant+.product-iconboxes {
  margin-top: 1.875rem;
}

.single-product-wrapper .product-detail .product-assistant .assistant-avatar {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3.375rem;
  flex: 0 0 3.375rem;
  max-width: 3.375rem;
  margin-right: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-detail .product-assistant .assistant-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 3.875rem;
    flex: 0 0 3.875rem;
    max-width: 3.875rem;
  }
}

.single-product-wrapper .product-detail .product-assistant .assistant-content {
  line-height: 1;
}

.single-product-wrapper .product-detail .product-assistant .assistant-content span {
  display: block;
  font-size: 0.8125rem;
  line-height: normal;
  color: var(--color-text-description);
  margin-bottom: 0.625rem;
}

.single-product-wrapper .product-detail .product-assistant .assistant-content p {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
  .single-product-wrapper .product-detail .product-assistant .assistant-content p {
    font-size: 1rem;
  }
}

.single-product-wrapper .product-detail .product-assistant .assistant-content p a {
  font-size: 0.875rem;
  color: var(--color-secondary);
  margin-left: 0.625rem;
}

@media screen and (max-width: 991.98px) {
  .single-product-wrapper .product-detail .product-assistant .assistant-content p a {
    font-size: 0.75rem;
  }
}

.single-product-wrapper .product-detail .product-iconboxes {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.single-product-wrapper .product-detail .product-iconboxes>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

@media screen and (min-width: 992px) {
  .single-product-wrapper .product-detail .product-iconboxes>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.single-product-wrapper .product-detail .product-iconboxes .iconbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-bottom: 0.9375rem;
}

.single-product-wrapper .product-detail .product-iconboxes .iconbox .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.9375rem;
  border: 1px solid var(--color-info);
  border-radius: 50%;
}

.single-product-wrapper .product-detail .product-iconboxes .iconbox .entry-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.single-product-wrapper .product-detail .product-iconboxes .iconbox p {
  font-size: 0.75rem;
  color: var(--color-text-description);
}

.single-product-wrapper .product-detail .product-extra-details {
  margin-bottom: 1.875rem;
}

.product-extra-details {
  position: relative;
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  overflow: hidden;
}

.product-extra-details table {
  font-size: 0.875rem;
  margin: 0;
}

.product-extra-details table tr th {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.25rem;
}

.product-extra-details table tr td {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.25rem;
}

.product-extra-details table tr:nth-of-type(even)>* {
  background-color: #f6f6f8;
}

.product-extra-details table tr:last-child>* {
  border-bottom: 0;
}

.woocommerce-tabs {
  margin-top: 1.875rem;
}

@media screen and (min-width: 992px) {
  .woocommerce-tabs {
    margin-top: 3.75rem;
  }
}

.woocommerce-tabs ul.wc-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 0 0.9375rem;
  list-style: none;
  border-bottom: 1px solid var(--color-info-dark);
}

@media screen and (min-width: 992px) {
  .woocommerce-tabs ul.wc-tabs {
    padding-bottom: 1.5rem;
  }
}

.woocommerce-tabs ul.wc-tabs li {
  margin-right: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .woocommerce-tabs ul.wc-tabs li {
    margin-right: 1.875rem;
  }
}

.woocommerce-tabs ul.wc-tabs li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
}

@media screen and (min-width: 992px) {
  .woocommerce-tabs ul.wc-tabs li a {
    font-size: 1.125rem;
  }
}

.woocommerce-tabs ul.wc-tabs li.active>a {
  color: var(--color-text-primary);
}

.woocommerce-tabs .woocommerce-Tabs-panel {
  margin-top: 1.25rem;
}

.woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--description {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}

.woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--description>h2 {
  display: none;
}

@media screen and (min-width: 992px) {
  .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--description {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.shop-page-wrapper .woocommerce-breadcrumb+.klbth-banner {
  margin-bottom: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .shop-page-wrapper .woocommerce-breadcrumb+.klbth-banner {
    margin-bottom: 1.25rem;
  }
}

.before-shop-loop {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0.9375rem;
  background-color: rgba(241, 243, 245, 0.5);
  border-radius: var(--theme-theme-radius-base);
  margin-bottom: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .before-shop-loop {
    padding: 1.25rem 1.875rem;
  }
}

.before-shop-loop .filter-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-right: auto;
}

.before-shop-loop .filter-button a {
  color: currentColor;
}

.before-shop-loop .woocommerce-result-count {
  font-size: 0.8125rem;
  margin-bottom: 0;
  margin-right: auto;
}

.before-shop-loop .sorting-products,
.before-shop-loop .per-page-products {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.before-shop-loop .sorting-products>span,
.before-shop-loop .per-page-products>span {
  font-size: 0.8125rem;
  color: var(--color-text-description);
  margin-right: 0.375rem;
}

.before-shop-loop .sorting-products select,
.before-shop-loop .per-page-products select {
  font-size: 0.8125rem;
  font-weight: 600;
  padding-left: 0;
  height: auto;
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.before-shop-loop .sorting-products .select2-container,
.before-shop-loop .per-page-products .select2-container {
  top: 1px;
}

.before-shop-loop .sorting-products .select2-selection,
.before-shop-loop .per-page-products .select2-selection {
  height: auto;
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.before-shop-loop .sorting-products .select2-selection .select2-selection__clear,
.before-shop-loop .per-page-products .select2-selection .select2-selection__clear {
  opacity: 0 !important;
  pointer-events: none !important;
}

.before-shop-loop .sorting-products .select2-selection .select2-selection__rendered,
.before-shop-loop .per-page-products .select2-selection .select2-selection__rendered {
  font-size: 0.8125rem;
  font-weight: 600;
  padding-left: 0;
}

.before-shop-loop .sorting-products .select2-selection .select2-selection__arrow,
.before-shop-loop .per-page-products .select2-selection .select2-selection__arrow {
  top: -0.5rem;
}

.before-shop-loop .per-page-products {
  margin-left: 0.9375rem;
  padding-left: 0.9375rem;
  border-left: 1px solid var(--color-info-dark);
}

@media screen and (max-width: 767.98px) {
  .before-shop-loop .per-page-products {
    display: none;
  }
}

.before-shop-loop .product-views-buttons {
  margin-left: 0.9375rem;
}

.before-shop-loop .product-views-buttons>* {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--color-text-description);
  background-color: var(--color-body);
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-small);
  -webkit-box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.05);
  box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.05);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.before-shop-loop .product-views-buttons>*:hover {
  color: var(--color-text-primary);
}

.before-shop-loop .product-views-buttons>*+* {
  margin-left: 3px;
}

.before-shop-loop .product-views-buttons>*.active {
  color: var(--color-text-primary);
  background-color: var(--color-info);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.before-shop-loop .product-views-type {
  margin-left: 0.9375rem;
}

@media screen and (max-width: 767.98px) {
  .before-shop-loop .product-views-type {
    display: none;
  }
}

.before-shop-loop .product-views-type span {
  display: block;
  font-size: 0.625rem;
  color: var(--color-text-light);
  margin-bottom: -2px;
}

.before-shop-loop .product-views-type p {
  font-size: 0.6875rem;
  color: var(--color-text-description);
  margin-bottom: 0;
}

.before-shop-loop .filter-wide-button {
  position: static;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--color-info-dark);
  max-height: 1.5rem;
}

.before-shop-loop .filter-wide-button>a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: currentColor;
}

.before-shop-loop .filter-wide-button>a::after {
  margin-left: 0.375rem;
}

.before-shop-loop .filter-wide-button>a svg {
  position: relative;
  width: 1.375rem;
  margin-right: 0.375rem;
  top: -2px;
}

.before-shop-loop .filter-wide-button .filter-holder {
  width: 100%;
  top: 1.25rem !important;
  right: -1.875rem !important;
  border-radius: var(--theme-theme-radius-base);
  border-color: var(--color-info);
  -webkit-box-shadow: 0 25px 50px -12px rgba(33, 37, 41, 0.25);
  box-shadow: 0 25px 50px -12px rgba(33, 37, 41, 0.25);
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.875rem 2.5rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 0;
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget.widget_price_filter {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-top: -0.625rem;
  margin-bottom: 1.875rem;
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget.widget_price_filter .widget-body {
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid var(--color-info-dark);
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget.widget_price_filter .price_slider_amount {
  margin-bottom: 0.9375rem;
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget.widget_price_filter .widget-title {
  display: none;
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget.widget_price_filter .button {
  font-size: 0.875rem;
  font-weight: 700;
  background-color: transparent;
  height: auto;
  padding: 0;
}

.before-shop-loop .filter-wide-button .filter-holder .filter-holder-wrapper .widget.widget_price_filter .price_label {
  font-weight: 700;
}

.cart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1200px) {
  .cart-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .cart-wrapper .woocommerce-cart-form,
  .cart-wrapper #customer_details {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .cart-wrapper .cart-collaterals {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20rem;
    flex: 0 0 20rem;
    max-width: 20rem;
    margin-left: 1.875rem;
  }

  .cart-wrapper .order-review-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25rem;
    flex: 0 0 25rem;
    max-width: 25rem;
    margin-left: 1.875rem;
  }
}

.woocommerce-cart-form {
  position: relative;
}

.woocommerce-cart-form table th {
  font-size: 0.75rem;
  font-weight: 600;
  border-top: 0;
  border-bottom: 1px solid var(--color-info-dark);
  color: var(--color-text-light);
}

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

  .woocommerce-cart-form table th.product-price,
  .woocommerce-cart-form table th.product-subtotal,
  .woocommerce-cart-form table th.product-remove {
    display: none !important;
  }
}

.woocommerce-cart-form table td {
  font-size: 0.875rem;
  vertical-align: middle;
}

.woocommerce-cart-form table td a {
  color: currentColor;
  text-decoration: none;
}

@media screen and (max-width: 575.98px) {
  .woocommerce-cart-form table td.product-remove {
    padding: 0 !important;
    width: 0 !important;
  }

  .woocommerce-cart-form table td.product-remove a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    color: #fff;
    background-color: red;
    font-size: 0.625rem;
    left: 0;
  }
}

.woocommerce-cart-form table td.product-thumbnail img {
  max-width: 4.375rem;
  max-height: 4.375rem;
}

.woocommerce-cart-form table td .amount {
  font-weight: 500;
}

.woocommerce-cart-form table td.product-price .amount {
  color: var(--color-text-light);
}

@media screen and (max-width: 575.98px) {
  .woocommerce-cart-form table td.product-price {
    display: none !important;
  }
}

@media screen and (max-width: 575.98px) {
  .woocommerce-cart-form table td.product-subtotal {
    display: none !important;
  }
}

.woocommerce-cart-form table td .quantity {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

.woocommerce-cart-form table td .quantity .minus:after {
  left: 10px;
}

.woocommerce-cart-form table td .quantity .plus::before {
  top: 11px;
  left: 14px;
}

.woocommerce-cart-form table td .quantity .plus:after {
  right: 10px;
}

.woocommerce-cart-form table td .quantity-button {
  width: 1.875rem;
  height: 1.875rem;
}

.woocommerce-cart-form table td .qty {
  font-size: 0.875rem;
  width: 1.875rem;
  height: 1.875rem;
}

.woocommerce-cart-form table td.actions {
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-cart-form table tbody {
  position: relative;
}

.woocommerce-cart-form table tbody tr {
  position: relative;
}

.woocommerce-cart-form table tbody td:first-child {
  padding-left: 0;
}

.woocommerce-cart-form table tbody td:last-child {
  padding-right: 0;
}

.woocommerce-cart-form .actions-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .woocommerce-cart-form .actions-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.woocommerce-cart-form .actions-wrapper .empty-cart-button {
  display: none;
}

.woocommerce-cart-form .actions-wrapper .coupon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce-cart-form .actions-wrapper .coupon label {
  display: none;
}

.woocommerce-cart-form .actions-wrapper .coupon #coupon_code {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 576px) {
  .woocommerce-cart-form .actions-wrapper .coupon #coupon_code {
    min-width: 17.5rem;
  }
}

.woocommerce-cart-form .actions-wrapper .coupon .button {
  white-space: nowrap;
  margin-left: 0.625rem;
  border: 0;
}

.woocommerce-cart-form .actions-wrapper input {
  height: 2.75rem;
}

.woocommerce-cart-form .actions-wrapper .button {
  font-size: 0.75rem;
  height: 2.75rem;
}

.woocommerce-cart-form .actions-wrapper .button[name=update_cart] {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: transparent;
}

.woocommerce-cart-form .actions-wrapper .button[name=update_cart]:disabled {
  color: var(--color-text-light);
  background-color: transparent;
  opacity: 0.6;
}

@media screen and (max-width: 575.98px) {
  .woocommerce-cart-form .actions-wrapper .button[name=update_cart] {
    margin-top: 0.625rem;
    text-align: center;
  }
}

.cart-collaterals {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-small);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  padding: 1.25rem;
}

.cart-collaterals .cart_totals>h2 {
  font-family: getFont(secondary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.9375rem;
  border-bottom: 0.9375rem;
  border-bottom: 1px solid var(--color-info);
}

.cart-collaterals .shop_table {
  width: 100%;
}

.cart-collaterals .shop_table th {
  font-size: 0.8125rem;
  font-weight: 600;
}

.cart-collaterals .shop_table td {
  text-align: right;
}

.cart-collaterals .shop_table .amount {
  font-size: 0.9375rem;
}

.cart-collaterals .shop_table .cart-subtotal th,
.cart-collaterals .shop_table .cart-subtotal td {
  padding-top: 0.4375rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--color-info-dark);
}

.cart-collaterals .shop_table .order-total th,
.cart-collaterals .shop_table .order-total td {
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}

.cart-collaterals .shop_table .order-total th strong,
.cart-collaterals .shop_table .order-total td strong {
  font-weight: 600;
}

.cart-collaterals .shop_table .order-total .amount {
  font-size: 1.25rem;
}

.cart-collaterals .checkout-button {
  width: 100%;
}

.wc-proceed-to-checkout {
  padding-top: 0.9375rem;
  border-top: 1px solid var(--color-info-dark);
}

.wc-proceed-to-checkout .checkout-button {
  height: 3rem;
}

@media screen and (min-width: 1024px) {
  #customer_details {
    padding-right: 1.875rem;
  }
}

#customer_details .col-1,
#customer_details .col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

#customer_details h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-info-dark);
}

#customer_details .woocommerce-billing-fields__field-wrapper,
#customer_details .woocommerce-additional-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-left: -10px;
  margin-right: -10px;
}

#customer_details .woocommerce-billing-fields__field-wrapper .form-row,
#customer_details .woocommerce-additional-fields__field-wrapper .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 0;
  margin-right: 0;
}

#customer_details .woocommerce-billing-fields__field-wrapper .form-row label,
#customer_details .woocommerce-additional-fields__field-wrapper .form-row label {
  font-size: 0.8125rem;
}

#customer_details .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper>input,
#customer_details .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper>input {
  height: 2.875rem;
}

#customer_details .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper>textarea,
#customer_details .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper>textarea {
  min-height: 120px;
  resize: none;
}

@media screen and (min-width: 768px) {

  #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_first_name_field,
  #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field,
  #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_phone_field,
  #customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_email_field,
  #customer_details .woocommerce-additional-fields__field-wrapper .form-row#billing_first_name_field,
  #customer_details .woocommerce-additional-fields__field-wrapper .form-row#billing_last_name_field,
  #customer_details .woocommerce-additional-fields__field-wrapper .form-row#billing_phone_field,
  #customer_details .woocommerce-additional-fields__field-wrapper .form-row#billing_email_field {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.order-review-wrapper {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  padding: 0.9375rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (min-width: 1024px) {
  .order-review-wrapper {
    padding: 1.875rem;
  }
}

@media screen and (max-width: 767.98px) {
  .order-review-wrapper {
    margin-top: 1.25rem;
  }
}

.order-review-wrapper h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-info-dark);
}

.order-review-wrapper .shop_table {
  width: 100%;
  font-size: 0.8125rem;
}

.order-review-wrapper .shop_table .amount {
  font-size: 0.9375rem;
}

.order-review-wrapper .shop_table th {
  font-weight: 600;
}

.order-review-wrapper .shop_table thead th {
  color: var(--color-text-light);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-info-dark);
}

.order-review-wrapper .shop_table thead th:last-child {
  text-align: right;
}

.order-review-wrapper .shop_table tbody td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.order-review-wrapper .shop_table tbody td.product-name {
  font-size: 0.8125rem;
  padding-right: 1.25rem;
}

.order-review-wrapper .shop_table tbody td:last-child {
  text-align: right;
}

.order-review-wrapper .shop_table tfoot tr th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-info-dark);
}

.order-review-wrapper .shop_table tfoot tr td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: right;
  border-top: 1px solid var(--color-info-dark);
}

.order-review-wrapper .shop_table tfoot tr.order-total .amount {
  font-size: 1.25rem;
  font-weight: 600;
}

.order-review-wrapper .woocommerce-checkout-payment {
  padding-top: 0.9375rem;
  border-top: 1px solid var(--color-info-dark);
}

.order-review-wrapper .woocommerce-checkout-payment ul.payment_methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-review-wrapper .woocommerce-checkout-payment ul.payment_methods label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 1.25rem;
  color: var(--color-primary);
}

.order-review-wrapper .woocommerce-checkout-payment ul.payment_methods .payment_box p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.order-review-wrapper .woocommerce-checkout-payment .woocommerce-privacy-policy-text {
  margin-top: 0.9375rem;
}

.order-review-wrapper .woocommerce-checkout-payment .woocommerce-privacy-policy-text p {
  font-size: 0.75rem;
  line-height: 1.6;
}

.order-review-wrapper .woocommerce-checkout-payment .woocommerce-privacy-policy-text p a {
  color: var(--color-danger);
  font-weight: 500;
  text-decoration: underline;
}

.order-review-wrapper .woocommerce-checkout-payment .validate-required {
  margin-left: 0;
  margin-right: 0;
}

.order-review-wrapper .woocommerce-checkout-payment .validate-required .woocommerce-form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.75rem;
}

.order-review-wrapper .woocommerce-checkout-payment .validate-required .woocommerce-form__label input {
  position: relative;
}

.order-review-wrapper .woocommerce-checkout-payment .validate-required .woocommerce-form__label span {
  position: relative;
  line-height: 1.5;
  padding-left: 0.625rem;
}

.order-review-wrapper .woocommerce-checkout-payment .validate-required .woocommerce-form__label span a {
  font-weight: 500;
  color: var(--color-danger);
  text-decoration: underline;
}

.order-review-wrapper .woocommerce-checkout-payment #place_order {
  width: 100%;
  height: 3rem;
  color: #fff;
  background-color: var(--color-danger);
  border-color: transparent;
}

.order-review-wrapper .woocommerce-checkout-payment #place_order:hover {
  background-color: var(--color-danger-dark);
}

.my-account-wrapper .my-account-title {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-info-dark);
}

.my-account-wrapper .my-account-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 1.25rem;
}

@media screen and (min-width: 992px) {
  .my-account-wrapper .my-account-inner {
    padding-top: 1.875rem;
  }
}

.my-account-wrapper .my-account-navigation {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  border: 1px solid var(--color-info-dark);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  border-radius: var(--theme-theme-radius-base);
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .my-account-wrapper .my-account-navigation {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
  }
}

.my-account-wrapper .my-account-navigation .account-toggle-menu {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--color-info-dark);
  height: 36px;
  padding: 4px 15px;
  margin-top: 0.625rem;
}

.my-account-wrapper .my-account-navigation .account-toggle-menu svg {
  margin-right: 8px;
}

@media screen and (min-width: 1024px) {
  .my-account-wrapper .my-account-navigation .account-toggle-menu {
    display: none;
  }
}

.my-account-wrapper .my-account-navigation .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-account-wrapper .my-account-navigation .woocommerce-MyAccount-navigation ul li+li {
  border-top: 1px solid var(--color-info-dark);
}

.my-account-wrapper .my-account-navigation .woocommerce-MyAccount-navigation ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  color: var(--color-text-primary);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.my-account-wrapper .my-account-navigation .woocommerce-MyAccount-navigation ul li a:hover {
  background-color: var(--color-info-light);
}

.my-account-wrapper .my-account-navigation .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #fff;
  background-color: var(--color-primary);
}

.my-account-wrapper .woocommerce-MyAccount-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (min-width: 992px) {
  .my-account-wrapper .woocommerce-MyAccount-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
    margin-left: auto;
  }
}

.my-account-wrapper .woocommerce-MyAccount-content a {
  font-weight: 500;
  text-decoration: none;
  color: var(--color-primary);
}

.my-account-wrapper .my-account-user {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.my-account-wrapper .my-account-user .user-avatar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3.25rem;
  flex: 0 0 3.25rem;
  max-width: 3.25rem;
  height: 3.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--theme-theme-radius-small);
  background-color: var(--color-info);
  margin-right: 0.9375rem;
}

.my-account-wrapper .my-account-user .user-detail span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: -2px;
}

.my-account-wrapper .my-account-user .user-detail p {
  font-weight: 600;
  margin-bottom: 0;
}

.my-account-wrapper .my-account-content {
  padding-top: 1.875rem;
  margin-top: 1.875rem;
  border-top: 1px solid var(--color-info-dark);
}

/*------------------------------------
    12 - Sidebar
------------------------------------*/
.widget {
  margin-bottom: 2.5rem;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget .widget-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_nav_menu ul li {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.widget_nav_menu ul li a {
  font-size: 0.875rem;
  color: currentColor;
}

.widget_nav_menu ul li a:hover {
  text-decoration: underline;
}

.widget_contact .company-phone {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

@media screen and (min-width: 992px) {
  .widget_contact .company-phone {
    font-size: 1.5rem;
  }
}

.widget_contact .company-works {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
}

.widget_contact .company-works p {
  margin-bottom: 0;
  opacity: 0.6;
}

.widget_contact .company-mail {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.widget_contact .company-mail:hover {
  text-decoration: underline;
}

.widget_about_company .company-logo {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
  .widget_about_company .company-logo {
    margin-bottom: 1.875rem;
  }
}

.widget_about_company .company-logo img {
  height: 2.375rem;
}

.widget_about_company .company-content .entry-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 992px) {
  .widget_about_company .company-content .entry-title {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}

.widget_about_company .company-content .entry-description {
  font-size: 0.875rem;
}

.widget_about_company .company-content .entry-description p {
  opacity: 0.6;
}

.widget_about_company .company-content a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.widget_about_company .company-content a:hover {
  text-decoration: underline;
}

.widget_iconbox ul {
  border: 1px solid var(--color-info-dark);
  border-radius: var(--theme-theme-radius-base);
  -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_iconbox ul li {
  padding: 1.375rem 1.25rem;
}

.widget_iconbox ul li+li {
  border-top: 1px solid var(--color-info);
}

.widget_testimonial .widget-body {
  background-color: var(--color-review-lighter);
  border-radius: var(--theme-theme-radius-base);
  padding: 1.25rem;
}

@media screen and (min-width: 992px) {
  .widget_testimonial .widget-body {
    padding: 1.875rem;
  }
}

.widget_testimonial .widget-body .slick-dots {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 0;
}

.widget_testimonial .widget-body .testimonial-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.widget_testimonial .widget-body .testimonial-inner .customer-avatar {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5.375rem;
  flex: 0 0 5.375rem;
  max-width: 5.375rem;
  margin-right: 0.9375rem;
  border-radius: 50%;
  margin-bottom: 0.9375rem;
  overflow: hidden;
}

.widget_testimonial .widget-body .testimonial-inner .customer-detail .stars {
  font-size: 0.8125rem;
  line-height: normal;
  color: var(--color-review-dark);
  margin-bottom: 0.1875rem;
}

.widget_testimonial .widget-body .testimonial-inner .customer-detail .customer-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: -3px;
}

.widget_testimonial .widget-body .testimonial-inner .customer-detail .customer-mission {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.widget_testimonial .widget-body .testimonial-inner .customer-detail .customer-description {
  font-size: 0.8125rem;
  line-height: 1.6153846154;
}

.widget_posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_posts ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.widget_posts ul li:last-child {
  margin-bottom: 0;
}

.widget_posts ul li .entry-media {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4.125rem;
  flex: 0 0 4.125rem;
  max-width: 4.125rem;
  height: 4.125rem;
  margin-right: 0.9375rem;
  margin-bottom: 0;
}

.widget_posts ul li .entry-media span {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  background-color: var(--color-secondary);
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.widget_posts ul li .entry-media a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.widget_posts ul li .entry-media a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.widget_posts ul li .entry-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.widget_posts ul li .entry-wrapper .entry-title {
  font-size: 0.875rem;
}

.widget_social_media .social-media li+li {
  margin-top: 0.1875rem;
}

.widget_social_media .social-media a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0.9375rem;
  border-radius: var(--theme-theme-radius-small);
}

.widget_social_media .social-media a .social-icon {
  width: 1.25rem;
  margin-right: 0.625rem;
}

.widget_social_media .social-media a .social-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
}

.sidebar-mobile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.875rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-info-dark);
}

@media screen and (min-width: 1024px) {
  .sidebar-mobile-header {
    display: none;
  }
}

.sidebar-mobile-header .entry-title {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.sidebar-mobile-header .close-sidebar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--color-text-primary);
  border: 1px solid var(--color-info-dark);
  border-radius: 50%;
}

.widget-checkbox-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-checkbox-list ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.widget-checkbox-list ul li+li {
  margin-top: 0.5rem;
}

.widget-checkbox-list ul li a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.8125rem;
  color: var(--color-text);
  text-decoration: none;
}

.widget-checkbox-list ul li a input[type=checkbox] {
  display: none;
}

.widget-checkbox-list ul li a input[type=checkbox]:checked+label {
  color: var(--color-primary);
  font-weight: 500;
}

.widget-checkbox-list ul li a input[type=checkbox]:checked+label span {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.widget-checkbox-list ul li a input[type=checkbox]:checked+label span::before {
  opacity: 1;
}

.widget-checkbox-list ul li a label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 0.875rem;
  cursor: pointer;
  margin-bottom: 0;
}

.widget-checkbox-list ul li a label span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.125rem;
  flex: 0 0 1.125rem;
  max-width: 1.125rem;
  width: 100%;
  height: 1.125rem;
  margin-right: 0.9375rem;
  top: -1px;
  border-radius: var(--theme-theme-radius-xsmall);
  border: 1px solid var(--color-form-border);
  -webkit-box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.05);
  box-shadow: 0 1px 2px 0 rgba(33, 37, 41, 0.05);
}

.widget-checkbox-list ul li a label span::before {
  position: relative;
  content: "✔";
  font-size: 0.75rem;
  line-height: 1;
  left: 0.5px;
  text-shadow: 0px 0px 0px;
  opacity: 0;
}

.widget-checkbox-list ul li a::after {
  display: none;
}

.price_slider_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.price_slider_wrapper .price_slider_amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms- margin-bottom: 1.25rem;
}

.price_slider_wrapper .price_slider_amount .price_label {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  margin-right: auto;
}

.price_slider_wrapper .price_slider_amount .price_label span {
  color: var(--color-text-primary);
}

.price_slider_wrapper .price_slider_amount button {
  font-size: 0.6875rem;
  text-transform: uppercase;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  height: 2.125rem;
  background-color: #f2f3f5;
  border-color: transparent;
  color: var(--color-text-primary);
}

.ui-widget-content {
  position: relative;
  height: 2px;
  background-color: var(--color-info-light);
  margin-bottom: 1.5625rem;
  border-radius: 2px;
}

.ui-widget-content .ui-slider-range {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border: 0;
  background-color: var(--color-primary);
  border-radius: 8px;
  z-index: 1;
}

.ui-widget-content .ui-slider-handle {
  left: 0%;
  position: absolute;
  z-index: 2;
  outline: 0;
  cursor: pointer;
  background-color: var(--color-primary);
  border-radius: 100%;
  border: 0;
  height: 14px;
  top: -6px;
  width: 14px;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.ui-widget-content .ui-slider-handle:last-child {
  left: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

/* filtered sidebar */
@media screen and (max-width: 1023.98px) {
  .filtered-sidebar {
    position: fixed !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    margin-top: 0;
    padding: 1.25rem 1.25rem 0;
    background-color: #fff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 10001;
  }

  .filtered-sidebar::before {
    display: none;
  }
}

.widget_search_service .entry-description {
  font-size: 0.75rem;
  color: var(--color-text-description);
}




.single-product .site-content {
  background-color: ;
}

.single-product-wrapper .product-detail .product_title {
  color: ;
}

.single-product-wrapper .product-gallery .flex-control-thumbs li.slick-slide img.flex-active {
  border-color: ;
}

.single-product-wrapper .product-detail .product-meta .product-stock.in-stock {
  background-color: ;
  color: ;
}

.single-product-wrapper .product-detail .product-meta .product-stock.out-of-stock {
  background-color: ;
  color: ;
}

.single-product-wrapper .cell.product-detail .price ins {
  color: ;
}

.single-product-wrapper .cell.product-detail .price del {
  color: ;
}

.single-product-wrapper .single-product .woocommerce-product-details__short-description {
  color: ;
}

.single-product-wrapper .product-detail .single_add_to_cart_button,
.site .button:not(:hover):not(:active):not(.has-background),
button:not(:hover):not(:active):not(.has-background),
input[type=submit]:not(:hover):not(:active):not(.has-background),
input[type=reset]:not(:hover):not(:active):not(.has-background),
.wp-block-search .wp-block-search__button:not(:hover):not(:active):not(.has-background),
.wp-block-button .wp-block-button__link:not(:hover):not(:active):not(.has-background),
.wp-block-file a.wp-block-file__button:not(:hover):not(:active):not(.has-background) {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.single-product-wrapper .product-detail .single_add_to_cart_button:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.easypack_show_geowidget {
  color: #000000 !important;
  font-weight: 600;
  width: 100% !important;
  font-size: 14px !important;
  border-radius: 12px;
  padding: 10px 20px !important;
}

.cart-wrapper .order-review-wrapper .shop_table tfoot tr th.easypack-parcel-machine-label {
  width: 0;
}

.easypack-parcel-machine {
  display: flex;
}

.easypack-parcel-machine-select {
  flex-basis: 100%;
  min-width: 200%;
  text-align: left !important;
}

.easypack-shipping-method-logo {
  display: none;
}

ul#shipping_method li {
  display: flex;

  align-items: center;
}

#shipping_method input.shipping_method {
  top: 0;
}

.product-sku {
  display: none;
}


/* Product table layout (shop/archive) */
.products-table-wrapper {
  overflow-x: auto;
}

.products-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.products-table th,
.products-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ededed;
  vertical-align: middle;
  text-align: left;
}

.products-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: #f6f7f9;
  color: #4a4a4a;
}

.products-table .product-link {
  color: inherit;
  text-decoration: none;
}

.products-table .product-link:hover {
  text-decoration: underline;
}

.products-table .product-actions .button {
  white-space: nowrap;
  font-size: 0;
}

.products-table .product-actions .button i {
  font-size: 16px;
  margin-right: 0;
  margin-left: 0;
}

/* Zebra rows */
.products-table tbody tr:nth-child(odd) {
  background-color: #fcfcfd;
}

.products-table tbody tr:nth-child(even) {
  background-color: #f4f6f8;
}

.products-table tbody tr:hover {
  background-color: #eef5ff;
}

.products-table td.product-price {
  font-weight: 600;
  color: #1f2a37;
}

.products-table td.product-actions .button {
  padding: 8px 14px;
  border-radius: 6px;
}

.products-table .product-actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.products-table td.product-actions {
  text-align: right;
}

.products-table .product-view-button i {
  margin-right: 6px;
  font-size: 0.95em;
}

@media (max-width: 767px) {
  .products-table td.product-actions {
    text-align: right;
  }

  .products-table .product-actions .button {
    font-size: 0;
    padding: 8px 10px;
  }

  .products-table .product-actions .button i {
    font-size: 16px;
    margin-right: 0;
    margin-left: 0;
  }

  .products-table td.product-name a {
    font-size: .9rem;
  }

  .products-table td.product-price .price {
    font-size: .9rem;
  }
}

@media only screen and (max-width: 821.98px) {
  nav.woocommerce-pagination .pagination .page-numbers {
    display: inline-flex !important;
  }
}

.page-link {
  color: var(--color-primary);
}

.active>.page-link,
.page-link.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

form.product-search-form {
  margin-bottom: 15px;
  display: flex;
}

form.product-search-form button {
  padding-left: .5rem;
  padding-right: .5rem;
}

form.product-search-form button i {
  margin-left: 0;
}

.woocommerce-cart-form table thead,
.woocommerce-checkout-review-order table thead,
.cart-wrapper .order-review-wrapper .shop_table tfoot tr th,
section.woocommerce-order-details td,
section.woocommerce-order-details th,
section.woocommerce-order-details td,
section.woocommerce-order-details th {
  text-align: left;
}

.form-row,
.woocommerce-privacy-policy-text {
  margin-bottom: 1rem;
}

.order-review-wrapper .shop_table .amount {
  color: var(--color-primary);
}

.order-review-wrapper .woocommerce-checkout-payment #place_order {
  background-color: var(--color-primary);
}

.order-review-wrapper .woocommerce-checkout-payment #place_order:hover {
  background-color: var(--color-primary-dark);
}

form.checkout_coupon.woocommerce-form-coupon {
  display: flex;
  column-gap: .5rem;
}

#payment ul.wc_payment_methods .payment_method_bluemedia img {
  height: auto;
}

input[type=checkbox],
input[type=radio] {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-primary)
}

input[type=radio]:checked {
  border: 1px solid var(--color-primary)
}

input[type=radio]:after {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
}

#payment ul.wc_payment_methods>li.wc_payment_method.payment_method_bluemedia>.payment_box.payment_method_bluemedia .payment_box.payment_method_bacs>.bm-payment-channels-wrapper ul.woocommerce-shipping-methods>div>li>ul li.bm-payment-channel-item,
#payment ul.wc_payment_methods>li.wc_payment_method.payment_method_bluemedia>.payment_box.payment_method_bluemedia .payment_box.payment_method_bacs>.bm-payment-channels-wrapper ul.woocommerce-shipping-methods>div>li>ul li.bm-payment-channel-group-item {
  justify-content: flex-end;
}

#payment ul.wc_payment_methods>li.wc_payment_method.payment_method_bluemedia>.payment_box.payment_method_bluemedia .payment_box.payment_method_bacs>.bm-payment-channels-wrapper ul.woocommerce-shipping-methods>div>li>ul {
  padding-left: 0;
}

.quick-product-wrapper,
.quickview-product .product {
  width: 100%;
}

.quickview-product .product .cell {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
