/*Nice Select CSS*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  height: 42px;
  line-height: 40px;
  outline: 0;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select.open, .nice-select:active, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #ccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: 0;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option.focus, .nice-select .option.selected.focus, .nice-select .option:hover {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 700;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .list {
  margin-top: 5px;
  top: 100%;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  max-height: 210px;
  overflow-y: scroll;
  padding: 52px 0 0;
}

/* WooCommerce password strength labels */
.woocommerce-password-strength {
  color: #000;
}

.nice-select.has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}

.nice-select.has-multiple span.current {
  border: 1px solid #CCC;
  background: #EEE;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}

.nice-select.has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}

.nice-select .nice-select-search-box {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  margin-top: 5px;
  top: 100%;
  left: 0;
  z-index: 8;
  padding: 5px;
  background: #FFF;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}

.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: none;
  color: #333;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100% !important;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
}

.nice-select.open .nice-select-search-box {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

/* SPLIDE */
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
  opacity: 0.7;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #00bfff;
  opacity: 1;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2.5em;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #fff;
  height: 2.5em;
  transition: fill 0.2s linear;
  width: 2.5em;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: var(--theme-link-hover-color);
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: background-color 0.2s linear, transform 0.2s linear;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: var(--theme-link-hover-color);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  background: #66d9ff;
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #00bfff;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #00bfff;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #00bfff;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #00bfff;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #00bfff;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #00bfff;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.home .splide-wrap .splide__arrow svg {
  height: 1.5em;
  width: 1.5em;
}
.home .splide-wrap .splide__arrow--next {
  right: 0.25em;
}
.home .splide-wrap .splide__arrow--prev {
  left: 0.25em;
}

#header [data-row*=top],
#header [data-row*=middle],
#header [data-row*=bottom] {
  --theme-border-bottom: 1px solid #3d3d3d;
}
#header .ct-search-form[data-form-controls=inside] input {
  font-size: 14px;
}
#header [data-row*=top] .ct-container-fluid {
  --theme-container-edge-spacing: 0;
}
#header [data-row*=top] [data-id=widget-area-1] {
  width: 100%;
  margin: auto;
}
#header [data-row*=top] [data-id=widget-area-1] .marquee {
  width: 100%;
  overflow: hidden;
  letter-spacing: 1px;
  position: relative;
  contain: paint;
  isolation: isolate;
  padding: 6px 0;
  border-top: 1px solid rgba(0, 240, 255, 0.35);
  border-bottom: 1px solid rgba(255, 61, 242, 0.35);
  box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.18), inset 0 0 18px rgba(255, 61, 242, 0.16);
}
#header [data-row*=top] [data-id=widget-area-1] .marquee::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), rgba(255, 61, 242, 0.85), transparent);
  opacity: 0.65;
  filter: none;
  animation: marquee-scan 4.5s linear infinite;
  pointer-events: none;
}
#header [data-row*=top] [data-id=widget-area-1] .marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 4px);
  opacity: 0.24;
  pointer-events: none;
}
#header [data-row*=top] [data-id=widget-area-1] .marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  text-shadow: 0 0 4px rgba(0, 240, 255, 0.62), 0 0 10px rgba(255, 61, 242, 0.5);
  animation: marquee-right 15s linear infinite;
}
@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes marquee-scan {
  0% {
    transform: translate3d(-30%, 0, 0);
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(30%, 0, 0);
    opacity: 0.4;
  }
}
@keyframes marquee-glow {
  0%,
  100% {
    text-shadow: 0 0 6px rgba(0, 240, 255, 0.7), 0 0 14px rgba(255, 61, 242, 0.6);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.95), 0 0 20px rgba(255, 61, 242, 0.85);
  }
}
@media (prefers-reduced-motion: reduce) {
  #header [data-row*=top] [data-id=widget-area-1] .marquee-content {
    animation: marquee-right 15s linear infinite;
  }
  #header [data-row*=top] [data-id=widget-area-1] .marquee::before {
    animation: none;
  }
}


.vape-taxonomy-filter button {
  cursor: pointer;
  transition: var(--theme-transition);
}

.woocommerce-archive {
  --sidebar-width: 23%;
}
.woocommerce-archive [data-sidebar] {
  gap: 0;
}
.woocommerce-archive [data-products] {
  --grid-columns-gap: 0;
  --grid-row-gap: 24px;
}
.woocommerce-archive ul.products li.product {
  padding: 10px;
  border-radius: 8px;
  transition: var(--theme-transition);
}
.woocommerce-archive ul.products li.product:hover {
  box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.8);
}
.woocommerce-archive ul.products li.product .woocommerce-loop-product__title {
  display: block;
  line-height: 1.5;
  padding-bottom: 0.8rem;
  margin-bottom: 0.35rem;
  background: url(../img/line.webp) no-repeat center bottom;
}

#block-3.ct-widget {
  margin-bottom: 12px;
}

.ct-widget {
  --sidebar-widgets-spacing: 12px;
}

.widget-title {
  font-weight: normal;
  --theme-font-weight: normal;
}

.product-terms-widget {
  --theme-content-spacing: 6px;
}
.product-terms-widget .wp-block-term {
  line-height: 1.2;
  --wp--preset--font-size--medium: 15px;
}
.product-terms-widget .wp-block-term a {
  color: #afafaf;
}

.product-ordering-widget {
  display: flex;
  align-items: center;
}
.product-ordering-widget label {
  margin-bottom: 0;
  margin-right: 1rem;
}
.product-ordering-widget .nice-select {
  width: 7.6rem;
  border-radius: 0;
  border: none;
  height: 2.5em;
  line-height: 2.5em;
  background: #333333;
  color: #d5d5d5;
  z-index: 999;
}
.product-ordering-widget .nice-select .list {
  width: 7.6rem;
  border-radius: 0;
  left: auto;
  right: 0;
  padding-top: 0;
  background: #333333;
  color: #afafaf;
}
.product-ordering-widget .nice-select .nice-select-search-box {
  display: none;
}

.product-view-mode {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.product-view-mode a {
  display: inline-block;
  width: 28px;
  height: 18px;
  margin-right: 10px;
  text-indent: -999999px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: auto;
  background-position: center;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.product-view-mode a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
.product-view-mode a.grid-3 {
  background-image: url(../img/bkg_grid3.png);
  display: inline-block;
}
.product-view-mode a.grid-3:hover, .product-view-mode a.grid-3.active {
  background-image: url(../img/bkg_grid3_hover.png);
}
.product-view-mode a.grid-4 {
  background-image: url(../img/bkg_grid4.png);
  display: inline-block;
}
.product-view-mode a.grid-4:hover, .product-view-mode a.grid-4.active {
  background-image: url(../img/bkg_grid4_hover.png);
}
.product-view-mode a.grid-5 {
  background-image: url(../img/bkg_grid5.png);
  display: inline-block;
}
.product-view-mode a.grid-5:hover, .product-view-mode a.grid-5.active {
  background-image: url(../img/bkg_grid5_hover.png);
}

.entry.entry-product .price {
  margin: 0;
}
.entry.entry-product form.cart {
  width: 100%;
}
.entry.entry-product form.cart .button {
  width: 100%;
}
.entry.entry-product .product-thumbnail {
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
}
.entry.entry-product .product-thumbnail a {
  width: 100%;
  height: 100%;
  display: block;
}
.entry.entry-product .product-thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entry.entry-product h3.product_title.entry-title {
  display: block;
  padding-bottom: 16px;
  margin-bottom: 14px;
  background: url(../img/line.webp) no-repeat center bottom;
}

.woocommerce.elementor-widget-loop-grid.elementor-grid-4 h3.product_title.entry-title {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 2px;
}
.woocommerce.elementor-widget-loop-grid.elementor-grid-5 h3.product_title.entry-title {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.promo-block {
  overflow: hidden;
}
.promo-block .label {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.promo-block:hover .label {
  -webkit-animation: fadeInUp 400ms ease-in-out;
  -moz-animation: fadeInUp 400ms ease-in-out;
  -ms-animation: fadeInUp 400ms ease-in-out;
  -o-animation: fadeInUp 400ms ease-in-out;
  animation: fadeInUp 400ms ease-in-out;
}
.promo-block:before {
  -webkit-transition: all 0.5s ease !important;
  -moz-transition: all 0.5s ease !important;
  -ms-transition: all 0.5s ease !important;
  -o-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
}
.promo-block:hover:before {
  transform: scale(1.08);
}

.section-title {
  position: relative;
}
.section-title:after {
  content: "";
  position: absolute;
  width: calc(100% - 70px);
  height: 2px;
  background: #2d2d2d;
  left: 0;
  right: 0;
  top: 50%;
}
.section-title .elementor-widget-container {
  background-color: #131313;
}
.section-title h3 {
  position: relative;
  padding-right: 1em;
  z-index: 9;
}

.products-swiper .elementor-swiper-button {
  position: absolute;
  top: -30px !important;
  left: unset !important;
}
.products-swiper .elementor-swiper-button.elementor-swiper-button-prev {
  right: 32px !important;
}
.products-swiper .elementor-swiper-button.elementor-swiper-button-next {
  right: 0 !important;
}

.single-product .ct-icon-container svg {
  --theme-icon-transition: fill 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.2s ease;
}
.single-product .ct-adding .ct-icon-container svg {
  --theme-icon-color: #e76a6a;
  transform: scale(1.53);
}
.single-product [data-swatches-type=button] .ct-swatch {
  border-width: 1px;
}
.single-product .timer-meta {
  margin-bottom: 12px;
}
.single-product .timer-meta p {
  margin: 0;
}
.single-product .timer-meta .deliver {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.single-product .entry-content .splide {
  max-width: 820px;
  margin: auto;
}
.single-product .entry-content .splide__slide img {
  width: 100%;
}
.single-product .acc-added-content {
  padding-top: 40px;
}
.single-product .acc-added-content ul {
  list-style: none;
  padding: 0;
}
.single-product .acc-added-content ul li:not(.answer li) {
  border-bottom: 1px solid #999999;
}
.single-product .acc-added-content ul li:not(.answer li).active .answer {
  max-height: unset !important;
  padding-bottom: 15px;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}
.single-product .acc-added-content ul li:not(.answer li).active .question {
  transition: color 0.5s ease;
}
.single-product .acc-added-content ul .answer {
  padding-left: 1em;
  font-size: 16px;
  line-height: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}
.single-product .acc-added-content ul .answer ul, .single-product .acc-added-content ul .answer ol {
  padding: 5px 0 5px 2em;
}
.single-product .acc-added-content ul .answer ul {
  list-style: disc;
}
.single-product .acc-added-content ul .plus-minus-toggle {
  cursor: pointer;
  height: 21px;
  position: absolute;
  width: 21px;
  right: 10px;
  top: 50%;
  z-index: 2;
}
.single-product .acc-added-content ul .plus-minus-toggle:before, .single-product .acc-added-content ul .plus-minus-toggle:after {
  background: #000;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 21px;
  transition: transform 500ms ease;
}
.single-product .acc-added-content ul .plus-minus-toggle:after {
  transform-origin: center;
}
.single-product .acc-added-content ul .plus-minus-toggle.collapsed:after {
  transform: rotate(90deg);
}
.single-product .acc-added-content ul .plus-minus-toggle.collapsed:before {
  transform: rotate(180deg);
}
.single-product .acc-added-content ul .question {
  font-size: 20px;
  position: relative;
  cursor: pointer;
  padding: 10px 0;
  margin: 0;
  transition: color 0.5s ease;
}

.single.single-post {
  --sidebar-gap: 24px;
}
.single.single-post article {
  padding: 12px 12px 24px;
  background-color: #343434;
}
.single.single-post article .hero-section .entry-meta {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .entry.entry-product h3.product_title.entry-title {
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
  [data-products] .woocommerce-loop-product__title {
    --theme-font-size: 16px;
  }
}

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