/* 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;
}

:root {
  --color-base: #1D1D1E;
}

#main-container .site-main {
  min-height: 80vh;
}

.ct-container-full {
  min-height: 65vh;
}

#jetpack_protect_answer {
  min-width: 60px;
  height: 32px;
  padding-right: 0;
}

.home .elementor-swiper {
  overflow: hidden;
  max-width: 2000px;
  margin: auto;
}

.btn-line-footer {
  position: fixed;
  z-index: 110;
  right: calc(var(--theme-frame-size, 0px) + var(--back-top-side-offset, 20px));
  bottom: calc(var(--theme-frame-size, 0px) + 70px + var(--back-top-bottom-offset, 25px));
  transform: var(--transform, translate3d(0, 15px, 0));
  border-radius: var(--theme-border-radius, 2px);
  transition: opacity 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.btn-line-footer img {
  width: 50px;
}

.footer-wrap {
  position: relative;
  overflow: hidden;
}
.footer-wrap .elementor-background-video-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0.3;
  pointer-events: none;
}

footer [data-column*=widget-area-1] * {
  color: #fff;
}

footer [data-column*=widget-area-2] h3 {
  color: #fff;
}

footer [data-column*=widget-area-2] img {
  max-width: 250px;
}

footer [data-column*=menu] {
  color: #fff;
}

footer [data-column*=menu] #menu-footer-menu {
  color: #fff;
  display: flex;
  flex-direction: column;
}

.acc-image-menu-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.acc-image-menu-item img {
  height: 100%;
  max-height: 50px;
}

#offcanvas .ct-panel-content-inner {
  padding-bottom: 60px;
}

.product_categories_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.product_categories_list .cat-item {
  font-size: 16px;
  line-height: 16px;
  margin: 0 0.5em 10px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
}

.product_categories_list .cat-item a {
  display: block;
  padding: 6px 10px 8px;
  color: #212121;
  -webkit-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}

.product_categories_list .cat-item a:hover {
  color: #e71c24;
}

/* PRODUCT */
aside .widget_nav_menu {
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
aside .widget-menu {
  margin-bottom: 12px;
  padding: 0;
}
aside .menu-item {
  padding: 8px 10px 8px 22px;
  font-size: 15px;
  transition: all 0.3s;
}
aside .menu-item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
@media (hover: hover) {
  aside .menu-item:hover a {
    transition: all 0.3s 0.1s ease-in-out;
    display: block;
  }
  aside .menu-item:hover a {
    transform: translateX(10px);
  }
  aside .menu-item:hover {
    background-color: rgba(0, 0, 0, 0.045);
  }
}
aside .widget-title {
  padding: 8px 25px;
  background-color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  margin-bottom: 0;
  pointer-events: none;
  font-size: 15px;
  font-style: italic;
  color: #fff;
}

.woocommerce-ordering select {
  border-radius: 40px;
  border-color: var(--color-base);
  font-weight: bold;
}

.wp-element-button.ct-load-more {
  border-radius: 40px;
  overflow: hidden;
  padding: 5px 50px;
}

.wp-element-button.ct-load-more {
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}

.wp-element-button.ct-load-more:hover {
  background-color: var(--theme-button-background-hover-color);
}

.products .product.purchasable:not(.outofstock) .ct-woo-card-actions .button:before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--color-base);
  top: -6%;
  left: 0;
  height: 112%;
  width: 10px;
  transform: skewX(-20deg);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
  border-left: 5px solid #fff;
  opacity: 1;
  filter: unset;
}
.products .product figure {
  margin-bottom: 15px;
}
.products .product .ct-woo-card-actions {
  background-color: var(--color-base);
}
.products .product .ct-woo-card-actions {
  position: relative;
  border: 0;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  gap: 5px;
}
.products .product .ct-woo-card-actions .add_to_cart_button.added {
  display: flex;
}
.products .product .ct-woo-card-actions .added_to_cart {
  display: none;
  visibility: hidden;
}
.products .product .ct-woo-card-actions .button {
  position: relative;
  min-height: 45px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  z-index: 9;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
@media (max-width: 600px) {
  .products .product .ct-woo-card-actions .button {
    font-size: 10px !important;
  }
}
@media (hover: hover) {
  .products .product .ct-woo-card-actions .button:hover {
    background-color: transparent !important;
    color: #ccc;
    font-size: 16px;
    letter-spacing: 1px;
    flex: 1.3;
  }
  .products .product .ct-woo-card-actions .button:hover:before {
    left: -8%;
  }
}
.products .product .ct-woo-card-actions span.price {
  position: relative;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  flex: 1;
  border-radius: 99px;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}

.single-product {
  --wvs-selected-item-background-color: var(--color-base);
  --wvs-selected-item-text-color: #fff;
}
.single-product .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-product .product_title,
.single-product label, .single-product p.stock {
  font-weight: bold;
}
.single-product .variations_form .timer-meta {
  padding: 18px 0 20px;
  border-width: 1px 0 1px;
}
.single-product .stock.out-of-stock {
  color: var(--theme-palette-color-2);
}
.single-product .timer-meta {
  margin: 0 0 35px;
  padding: 0 0 25px;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: var(--theme-border-color);
}
.single-product .timer-meta p, .single-product .timer-meta span {
  margin: 0;
  line-height: 20px;
  color: var(--theme-text-color);
  font-weight: bold;
}
.single-product .timer-meta svg {
  fill: #318fff;
  margin-right: 1em;
}
.single-product .timer-meta i {
  font-weight: bold;
  font-style: normal;
  color: #318fff;
  margin: 0 2px;
}
.single-product .timer-meta .deliver {
  display: flex;
}
.single-product .timer-meta .deliver:not(:last-child) {
  margin-bottom: 1em;
}
.single-product form.variations_form table.variations {
  margin-bottom: 5px;
}
.single-product .acc-add_to_card {
  position: relative;
}
.single-product .acc-add_to_card .ct-cart-actions {
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  --theme-button-padding: 5px 10px;
  max-height: 55px;
  overflow: hidden;
}
.single-product .acc-add_to_card .ct-cart-actions .quantity {
  min-width: 125px;
  --theme-form-field-border-radius: 50px ;
}
.single-product .acc-add_to_card .ct-cart-actions .added_to_cart {
  position: absolute;
  bottom: -30px;
  left: 47%;
  transform: translateX(-50%);
  background-color: transparent;
  color: #f23c2e;
  min-height: 1.5em;
  width: 7em;
  padding: 0;
  line-height: 1;
}
.single-product .acc-add_to_card .ct-cart-actions .single_add_to_cart_button {
  width: 40%;
  height: 100%;
  max-height: 55px;
  background-color: var(--color-base);
  border-radius: 50px;
  flex: auto;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
.single-product .acc-add_to_card .ct-cart-actions .single_add_to_cart_button span {
  pointer-events: none;
  position: relative;
  z-index: 9;
}
@media (hover: hover) {
  .single-product .acc-add_to_card .ct-cart-actions .single_add_to_cart_button:hover {
    width: 55%;
  }
}
.single-product .acc-add_to_card .ct-cart-actions .single_add_to_cart_button:before {
  opacity: 1;
  filter: unset;
  border-radius: 0;
  left: unset;
}
.single-product .acc-add_to_card .ct-cart-actions .single_add_to_cart_button:before {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  display: block;
  background-color: var(--color-base);
  height: 100%;
  max-height: 55px;
  width: 44px;
  transform: skewX(-20deg);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
.single-product .acc-add_to_card .ct-cart-actions .btn-comment {
  position: relative;
  width: 35%;
  height: 100%;
  max-height: 55px;
  background-color: var(--color-base);
  border-radius: 50px;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
.single-product .acc-add_to_card .ct-cart-actions .btn-comment span {
  position: relative;
  z-index: 9;
}
@media (hover: hover) {
  .single-product .acc-add_to_card .ct-cart-actions .btn-comment:hover {
    width: 43%;
  }
}
.single-product .acc-add_to_card .ct-cart-actions .btn-comment:after {
  content: "";
  position: absolute;
  left: -2px;
  display: block;
  background-color: var(--color-base);
  height: 100%;
  max-height: 55px;
  width: 44px;
  transform: skewX(-20deg);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
}
.single-product .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  padding: 2px 8px;
}

.woocommerce-mini-cart__buttons .button.wc-forward,
.wc-block-components-button:not(.is-link) {
  border-radius: 50px;
  background-color: var(--color-base);
}

.acc-product-comment .woocommerce-Reviews-title {
  display: none;
}
.acc-product-comment .woocommerce-Tabs-panel .submit {
  border-radius: 50px;
  background-color: var(--color-base);
  min-width: 150px;
}
.acc-product-comment .woocommerce-Tabs-panel .woocommerce-Reviews {
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--tab-border-color, var(--theme-border-color));
  max-width: var(--theme-default-editor, var(--theme-block-max-width));
  width: var(--theme-default-editor, var(--theme-block-width));
}
.acc-product-comment .woocommerce-Tabs-panel .woocommerce-Reviews .review .comment_container {
  padding-top: 20px;
  padding-bottom: 30px;
}
.acc-product-comment .woocommerce-Tabs-panel .woocommerce-Reviews .commentlist li {
  border-bottom: 1px solid var(--theme-border-color);
  border-top: 0;
}

body.woocommerce-checkout .woocommerce.wp-block-group.alignwide,
body.woocommerce-cart .woocommerce.wp-block-group.alignwide {
  max-width: 1000px;
}

body.woocommerce-cart .ct-woocommerce-cart-form .cart_totals {
  border: 0;
}
body.woocommerce-cart .checkout-button {
  border-radius: 50px;
}
body.woocommerce-cart .checkout-button:hover {
  background-color: #454545;
}

body.woocommerce-checkout #place_order {
  border-radius: 50px;
}
body.woocommerce-checkout #place_order:hover {
  background-color: #454545;
}
body.woocommerce-checkout form.woocommerce-checkout .form-row label {
  line-height: 1;
  margin: 0;
}
body.woocommerce-checkout form.woocommerce-checkout .form-row-first {
  width: 100%;
}
body.woocommerce-checkout .ct-customer-details {
  box-sizing: border-box;
  margin: 0;
  align-self: flex-start;
}
body.woocommerce-checkout .ct-customer-details .input-text {
  background-color: #fff;
  color: #000;
  width: 100%;
  height: auto;
  padding: 9px 20px;
  outline: 0;
  border: 1px solid #8f8f8f;
  border-radius: 5px;
  margin: 10px 0 0;
}
body.woocommerce-checkout .ct-order-review {
  border: 0;
  padding-top: 0;
}
body.woocommerce-checkout .ct-order-review div.quantity input[type=number] {
  border: 1px solid #8f8f8f;
}
body.woocommerce-checkout .ct-order-review div.quantity .ct-increase:hover,
body.woocommerce-checkout .ct-order-review div.quantity .ct-decrease:hover {
  background: var(--color-base);
}
body.woocommerce-checkout .ct-order-review .acc-coupon {
  width: 100%;
}
body.woocommerce-checkout .ct-order-review .acc-coupon .checkout_coupon {
  border: 0;
  margin-bottom: 0;
  display: none;
}
body.woocommerce-checkout .ct-order-review .acc-coupon .checkout_coupon .form-row {
  position: relative;
  margin-bottom: 0;
}
body.woocommerce-checkout .ct-order-review .acc-coupon th {
  display: none;
}
body.woocommerce-checkout .ct-order-review .acc-coupon td {
  padding-left: 0;
  padding-inline-end: 0;
}
body.woocommerce-checkout .ct-order-review .acc-coupon button[name=apply_coupon] {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
  height: 8px;
  min-height: 35px;
}
body.woocommerce-checkout .ct-order-review .acc-coupon .checkout_coupon[style="display: block;"] input, body.woocommerce-checkout .ct-order-review .acc-coupon .checkout_coupon[style="display: block;"] button {
  display: block !important;
}

.woocommerce-account .woocommerce-button {
  min-width: 120px;
}

.woocommerce-cart .coupon button {
  border-radius: 5px;
}

.pick-cvs-wrap #pick-store {
  max-width: 250px;
  width: 100%;
  background-color: #6f6f6f;
  border: 0;
  border-radius: 50px;
}
.pick-cvs-wrap #pick-store.loaded {
  background-color: var(--color-base);
}
.pick-cvs-wrap #pick-store:hover {
  background-color: #454545;
}
.pick-cvs-wrap #cvs-info {
  margin-bottom: 1.5em;
}
.pick-cvs-wrap .acc-field {
  margin: 0;
}

@media only screen and (min-width: 1024px) {
  .ct-customer-details {
    box-sizing: border-box;
    margin: 0;
    align-self: flex-start;
    position: sticky;
    top: calc(50px + var(--admin-bar, 0px) + var(--header-sticky-height, 0px) * var(--sticky-shrink, 100) / 100);
  }
}
@media only screen and (max-width: 480px) {
  .single-product article > .related .flexy-container [data-products] .flexy-item,
  .single-product article > .up-sells .flexy-container [data-products] .flexy-item {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
  .single-product .acc-add_to_card .ct-cart-actions .quantity {
    min-width: 100px;
  }
  .single-product .acc-add_to_card .ct-cart-actions .btn-comment:after,
  .single-product .acc-add_to_card .ct-cart-actions .single_add_to_cart_button:before {
    height: 100%;
    max-height: 52px;
  }
  .single-product .acc-add_to_card .ct-cart-actions {
    max-height: 50px;
  }
}
@media only screen and (max-width: 330px) {
  .single-product .acc-add_to_card .ct-cart-actions {
    --theme-button-padding: 5px 0;
  }
}
.woocommerce-MyAccount-navigation {
  --theme-palette-color-1: var(--color-base);
}

.woocommerce-error, .wc-block-components-notice-banner.is-error {
  --background-color: rgb(255, 91, 91) !important;
  --theme-button-background-initial-color: #f34242 !important;
  --theme-button-background-hover-color: #ce1111 !important;
}

.fly-logo {
  width: 4%;
  position: fixed;
  z-index: 999;
  top: var(--top);
  left: var(--left);
  pointer-events: none;
  animation: flyX 0.8s cubic-bezier(0.25, -0.75, 0.82, 0.21);
}
.fly-logo img {
  max-width: 45px;
  width: 100%;
  display: block;
  border-radius: 99rem;
  overflow: hidden;
  border: 0.1rem solid #000;
  animation: flyY 0.8s cubic-bezier(0.73, 0.38, 0.99, 0.77);
}

@keyframes flyX {
  to {
    transform: translateX(var(--x));
  }
}
@keyframes flyY {
  0% {
    transform: translateY(0) scale(0);
  }
  10% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(var(--y)) scale(0.3);
  }
}

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