:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: -webkit-clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease, -webkit-clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

quantity-input:not(.qty-style-2) {
  width: 90px;
  display: block;
  position: relative;
  height: 42px;
  padding: 0 20px;
  border: 2px solid rgba(var(--primary-color-rgb), 0.3);
  -webkit-padding-end: 30px;
  padding-inline-end: 30px;
  background: var(--input-background-color);
}

quantity-input:not(.qty-style-2) input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

quantity-input:not(.qty-style-2) button {
  margin: 2px 5px;
  position: absolute;
  height: 50%;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--input-text-color);
  cursor: pointer;
}

quantity-input:not(.qty-style-2) button:disabled {
  cursor: not-allowed;
}

quantity-input:not(.qty-style-2) svg {
  width: 8px;
  height: 8px;
  color: currentColor;
}

quantity-input:not(.qty-style-2) svg path {
  fill: currentColor;
}

quantity-input:not(.qty-style-2) .qty-minus {
  bottom: 0;
}

quantity-input:not(.qty-style-2) .qty-plus {
  top: 0;
  transform: rotate(180deg);
}

quantity-input.qty-style-2 {
  width: 130px;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  height: 42px;
  background: var(--input-background-color);
}

quantity-input.qty-style-2 input {
  width: 50px;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: center;
  padding: 2px;
}

quantity-input.qty-style-2 button {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--input-text-color);
  cursor: pointer;
  border: 2px solid rgba(var(--primary-color-rgb), 0.3);
  transition: all 0.45s ease;
}

quantity-input.qty-style-2 button:hover {
  border-color: var(--primary-color);
}

quantity-input.qty-style-2 button:disabled {
  cursor: not-allowed;
}

quantity-input.qty-style-2 svg {
  width: 10px;
  height: 10px;
  color: currentColor;
}

quantity-input.qty-style-2 svg path {
  fill: currentColor;
}

.shopify-section-main-product .product-inner {
  display: flex;
  gap: 42px;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper {
  width: 52%;
  position: relative;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-gallery:has(.rss) {
  position: relative;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-gallery:has(.rss) .rss.demo-icon {
  position: absolute;
  z-index: 1;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-gallery:has(.rss) .rss.demo-icon svg {
  width: 20px;
  height: 20px;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-gallery:has(.rss) .rss.demo-icon:hover {
  opacity: 0.8;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .main-gallery {
  height: auto;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .main-gallery product-gallery-component .media-type-image {
  width: 100%;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component {
  position: relative;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component .slider-controls .slider-prev-button {
  left: 0;
  right: auto;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component .slider-controls .slider-next-button {
  right: 0;
  left: auto;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component .slider-controls button {
  width: 30px;
  height: 30px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  border-radius: 0px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component .slider-controls button:hover {
  opacity: 0.8;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component .media-item .media-item-inner {
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .thumbnail-gallery product-slider-component .media-item.tns-nav-active .media-item-inner {
  border: 1px solid var(--primary-color);
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .sku, .shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .vendor, .shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .category, .shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .tags {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .variant-sku, .shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .vendor-name, .shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .coll-name, .shopify-section-main-product .product-inner .product-gallery-wrapper .product-info-box .tag {
  font-weight: 700;
  color: var(--text-color);
}

.shopify-section-main-product .product-inner .product-infor-wrapper {
  width: calc(48% - 42px);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-title {
  margin: 0 0 15px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price {
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner {
  gap: 15px;
  flex-wrap: wrap;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .price {
  font-size: var(--product-price-font-fs);
  font-weight: var(--product-price-font-fw) !important;
  display: flex;
  align-items: center;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .price-compare {
  font-size: var(--product-pricecompare-font-fs);
  font-weight: var(--product-pricecompare-font-fw) !important;
  display: flex;
  align-items: center;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .price-sold-out {
  font-size: var(--product-price-font-fs);
  font-weight: var(--product-price-font-fw) !important;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .sale-tag {
  display: flex;
  color: #fff;
  font-size: var(--product-saletag-font-fs);
  align-items: center;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .sale-tag:before {
  content: "";
  display: flex;
  width: 15px;
  height: 15px;
  background-color: var(--product-saletag-bg-color);
  transform: rotate(45deg);
  position: relative;
  right: -7px;
  z-index: -1;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .sale-tag .sale-number {
  padding: 2px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--product-saletag-bg-color);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price-inner .tax {
  color: var(--price-color);
  font-size: var(--product-tax-font-fs);
  display: flex;
  align-items: center;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-price .unavailable {
  font-size: 24px;
  font-weight: 500 !important;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-description {
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-timer {
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-timer .product-timer-label {
  max-height: 15px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-timer .product-timer-label picture {
  padding-top: 0 !important;
  width: 20px;
  height: 20px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options {
  margin: 0 0 30px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-header-label {
  font-size: 14px;
  margin: 0 0 12px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container {
  margin: 0 0 20px 0;
  gap: 15px;
  flex-wrap: wrap;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item label {
  width: 40px;
  height: 40px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item label .swt-item-bg {
  border-radius: 2px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item label .swt-item-bg:hover {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item:has(input.disabled) label:before, .shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item:has(input.disabled) label:after {
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  z-index: 11;
  width: 2px;
  top: 50%;
  background-color: #717171;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item:has(input.disabled) label:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .swt-container .swt-item:has(input.disabled) label:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .option-size-guide {
  font-size: 14px;
  margin: 0 0 20px 0;
  color: var(--input-text-color);
  text-decoration: underline;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options .option-size-guide:hover {
  opacity: 0.8;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .variant-options.hide-sold-out-true:not(.option-number-1) .swt-item:has(input.disabled) {
  display: none;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-select .variant-options-header {
  font-size: 14px;
  margin: 0 0 12px;
  display: block;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-select .select-wrapper {
  max-width: 200px;
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-select .select-wrapper select {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px;
  text-align: center;
  border-radius: 2px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-select .select-wrapper select:focus {
  border: 1px solid var(--primary-color);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-button .swt-container .swt-item {
  min-width: 40px;
  min-height: 40px;
  width: auto;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-button .swt-container .swt-item label {
  width: auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #ddd;
  border: 2px solid transparent;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-button .swt-container .swt-item label:hover {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-button .swt-container .swt-item input[type=radio]:checked + label {
  border: 2px solid white;
  background: #ddd;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
  font-weight: 600;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-color .swt-container .swt-item label {
  display: flex;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-color .swt-container .swt-item label .swt-tooltip {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  color: white;
  background: var(--input-text-color);
  padding: 5px 15px;
  position: absolute;
  top: -35px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2784313725);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-color .swt-container .swt-item label .swt-tooltip:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--input-text-color);
  position: absolute;
  bottom: -5px;
  margin: auto;
  left: 0;
  right: 0;
  transform: rotate(45deg);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2784313725);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-color .swt-container .swt-item label:hover .swt-tooltip {
  visibility: visible;
  opacity: 1;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-color .swt-container .swt-item label .swt-bg-white {
  border: 1px solid rgba(214, 214, 214, 0.788) !important;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-color .swt-container .swt-item input[type=radio]:checked + label .swt-color {
  border: 2px solid white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-image .swt-container .swt-item label {
  display: flex;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-image .swt-container .swt-item label .swt-tooltip {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  color: white;
  background: var(--input-text-color);
  padding: 5px 15px;
  position: absolute;
  top: -35px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2784313725);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-image .swt-container .swt-item label .swt-tooltip:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--input-text-color);
  position: absolute;
  bottom: -5px;
  margin: auto;
  left: 0;
  right: 0;
  transform: rotate(45deg);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2784313725);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-image .swt-container .swt-item label:hover .swt-tooltip {
  visibility: visible;
  opacity: 1;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-options .option-type-image .swt-container .swt-item input[type=radio]:checked + label .swt-image {
  border: 2px solid white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .quantity-heading {
  margin: 0 0 12px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart {
  display: flex;
  gap: 20px;
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart .product-cart_button {
  position: relative;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart .product-cart_button button {
  display: flex;
  gap: 10px;
  padding: 6px 20px !important;
  align-items: center;
  height: 42px;
  white-space: nowrap;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart .product-cart_button button svg {
  width: 14px;
  height: 14px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) {
  flex-direction: column;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons {
  gap: 20px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-cart_button {
  flex: 1;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-wl-cp {
  flex: 1;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-wl-cp .st-wishlist-button {
  height: 40px;
  white-space: nowrap;
  padding: 8px 12px !important;
  cursor: pointer;
  margin: 0 !important;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-wl-cp .st-wishlist-button:hover {
  opacity: 0.8;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-wl-cp .st-wishlist-button.btn {
  border-radius: var(--border-radius) !important;
  color: var(--color) !important;
  background-color: var(--background-color) !important;
  border: 1px solid var(--border-color) !important;
  transition: var(--transition) !important;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-wl-cp .st-wishlist-button.btn:hover {
  color: var(--hover-color) !important;
  background: var(--hover-background-color) !important;
  border-color: var(--hover-border-color) !important;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .product-cart:has(.product-wl-cp) .product-cart__buttons .product-wl-cp .st-wishlist-button svg {
  display: none;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .shaking-btn {
  animation: horizontalShaking 5s infinite;
  flex: 1;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .dynamic-btn {
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .dynamic-btn button {
  border: 1px solid var(--border-color);
  border-radius: 2px;
  color: var(--text-color);
  transition: 0.3s;
  background: transparent;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .dynamic-btn button:hover {
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .dynamic-btn button[aria-hidden=true],
.shopify-section-main-product .product-inner .product-infor-wrapper product-form product-cart-form .dynamic-btn .shopify-payment-button__button[aria-hidden=true] {
  display: none;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-wl-cp {
  margin: 0 0 15px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-wl-cp .wl, .shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-wl-cp .cp {
  margin: 0 0 5px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-deli-fomo {
  margin: 0 0 20px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-deli-fomo .deli-day-box {
  display: flex;
  gap: 4px;
  margin: 0 0 10px 0;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-deli-fomo .deli-day-box .deli_day {
  font-weight: 900;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-deli-fomo .cd-fomo {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-deli-fomo .cd-fomo-label {
  display: flex;
  align-items: center;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-deli-fomo .cd-fomo countdown-block {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 900;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-social-share li {
  border-radius: 2px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status {
  margin-bottom: 8px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status-inner {
  display: flex;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status .inventory-status-label {
  -webkit-margin-end: 4px;
  margin-inline-end: 4px;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status .inventory-status-text {
  display: none;
}

.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status [data-status=low-stock] .inventory-low-stock,
.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status [data-status=in-stock] .inventory-in-stock,
.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status [data-status=pre-order] .inventory-pre-order,
.shopify-section-main-product .product-inner .product-infor-wrapper product-form .product-inventory-status [data-status=out-stock] .inventory-out-stock {
  display: block;
}

.shopify-section-main-product .jdgm-prev-badge:not([data-average-rating="0.00"]),
.shopify-section-main-product .loox-rating:not(:empty) {
  margin-bottom: 10px;
}

.shopify-section-main-product [data-block-handle=wishlist_product_button] .st-wishlist-button[style*="border-style: none;"],
.shopify-section-main-product .product-wl-cp .st-wishlist-button[style*="border-style: none;"] {
  padding: 0 !important;
}

.shopify-section-main-product h1.product-title {
  font-size: var(--product-name-font-fs);
  font-weight: var(--product-name-font-fw);
}

@media only screen and (max-width: 991px) {
  .shopify-section-main-product .product-inner {
    flex-direction: column;
  }
  .shopify-section-main-product .product-inner .product-gallery-wrapper {
    width: 100%;
  }
  .shopify-section-main-product .product-inner .product-infor-wrapper {
    width: 100%;
  }
  .shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .main-gallery {
    margin-left: auto;
    margin-right: auto;
  }
  .shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .main-gallery .media-item {
    display: flex;
    justify-content: center;
  }
  .shopify-section-main-product .product-inner .product-gallery-wrapper .main-product-gallery .main-gallery .media-item figure {
    margin: 0 auto;
  }
}
html[dir=rtl] .sale-tag:before {
  right: 7px !important;
}

html[dir=rtl] .shopify-section-main-product .slider-controls .slider-next-button {
  left: 0 !important;
  right: auto !important;
}

html[dir=rtl] .shopify-section-main-product .slider-controls .slider-prev-button {
  left: auto !important;
  right: 0 !important;
}

.cd-style .product-timer-label {
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.cd-style .product-timer-label svg {
  width: 14px;
  height: 14px;
}

.cd-style .product-timer-cd {
  margin: 12px 0 15px 0;
}

.cd-style-1 countdown-block {
  display: flex;
  gap: 10px;
}

.cd-style-1 countdown-block .countdown-item, .cd-style-1 countdown-block .colon {
  font-size: 20px;
  font-weight: 600;
}

.cd-style-2 countdown-block {
  display: flex;
  gap: 10px;
}

.cd-style-2 countdown-block .countdown-item {
  width: 55px;
  min-height: 55px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--text-color);
}

.cd-style-2 countdown-block .countdown-item .value {
  font-weight: 900;
}

.cd-style-3 countdown-block {
  display: flex;
  gap: 10px;
}

.cd-style-3 countdown-block .countdown-item {
  width: 55px;
  min-height: 55px;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cd-style-3 countdown-block .countdown-item .value {
  font-weight: 900;
}

.cd-style-4 countdown-block {
  display: flex;
  gap: 10px;
}

.cd-style-4 countdown-block .countdown-item {
  width: 55px;
  min-height: 55px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.cd-style-5 countdown-block {
  display: flex;
  gap: 10px;
}

.cd-style-5 countdown-block .countdown-item {
  width: 55px;
  min-height: 55px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cd-style-5 countdown-block .countdown-item .value {
  font-weight: 900;
}

.cd-style-6 countdown-block {
  display: flex;
  gap: 15px;
  border: 1px solid var(--primary-color);
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cd-style-6 countdown-block .countdown-item {
  width: 55px;
  min-height: 55px;
  border-radius: 50%;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.cd-style-6 countdown-block .countdown-item .value {
  font-weight: 900;
}

figure.zoom-img {
  background-position: 50% 50%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background-size: 150%;
  background-repeat: no-repeat;
}

figure.zoom-img img:hover {
  opacity: 0;
}

figure.zoom-img img {
  display: block;
  width: 100%;
}

.product-description product-description-component .tab__panel-header {
  display: flex;
  gap: 6px;
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.product-description product-description-component .tab__panel-header .slider-list {
  gap: 6px;
}

.product-description product-description-component .tab__panel-header .tab__panel-nav {
  min-width: 120px;
  white-space: nowrap;
  padding-right: 0 !important;
  padding: 15px 30px !important;
  border: 1px solid var(--border-color);
  text-transform: capitalize;
  color: var(--primary-subtext-color);
  font-weight: 500;
  transition: 0.5s;
  background-color: var(--secondary-background-color);
}

.product-description product-description-component .tab__panel-header .tab__panel-nav:hover {
  background-color: transparent;
}

.product-description product-description-component .tab__panel-header .tab__panel-nav svg path {
  fill: var(--primary-subtext-color);
}

.product-description product-description-component .tab__panel-header .active {
  background-color: transparent;
  border-bottom: 1px solid white;
}

.product-description product-description-component .tab__panel-body {
  position: relative;
  margin-top: -1px;
}

.product-description product-description-component .tab__panel-body .tab__panel-content {
  border: 1px solid var(--border-color);
  padding: 30px 40px;
  display: none;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.product-description product-description-component .tab__panel-body .tab__panel-content iframe {
  width: 100%;
}

.product-description product-description-component .tab__panel-body .active {
  display: block;
}

.product-description-tab_2 product-description-component .tab__panel-header .slider-list {
  gap: 25px;
}

.product-description-tab_2 product-description-component .tab__panel-header .tab__panel-nav {
  min-width: unset;
  background-color: transparent;
  border: none;
  color: var(--text-color);
  transition: 0.5s;
  padding: 3px 0px !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border-bottom: 2px solid transparent;
}

.product-description-tab_2 product-description-component .tab__panel-header .active {
  font-weight: 700;
  background-color: transparent;
  border-bottom: 2px solid var(--primary-color);
}

.product-description-tab_2 product-description-component .tab__panel-body .tab__panel-content {
  border: none;
  display: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.product-description-tab_2 product-description-component .tab__panel-body .tab__panel-content iframe {
  width: 100%;
}

.product-description-tab_2 product-description-component .tab__panel-body .active {
  display: block;
}

.product-description-tab_3 product-description-component .tab__panel-header .tab__panel-nav {
  min-width: 120px;
  padding: 15px 30px !important;
  text-transform: capitalize;
  background-color: transparent;
  border: none;
  color: var(--primary-subtext-color);
  transition: 0.2s;
}

.product-description-tab_3 product-description-component .tab__panel-header .tab__panel-nav:hover {
  font-weight: 700;
  color: var(--background-color);
  background-color: var(--text-color);
}

.product-description-tab_3 product-description-component .tab__panel-header .active {
  font-weight: 700;
  color: var(--background-color);
  background-color: var(--text-color);
}

.product-description-tab_3 product-description-component .tab__panel-body {
  margin-top: 20px;
}

.product-description-tab_3 product-description-component .tab__panel-body .tab__panel-content {
  border: 1px solid var(--border-color);
  display: none;
}

.product-description-tab_3 product-description-component .tab__panel-body .tab__panel-content iframe {
  width: 100%;
}

.product-description-tab_3 product-description-component .tab__panel-body .active {
  display: block;
}

.product-description-default product-description-component .tab__panel-header {
  gap: 0;
  flex-direction: column;
}

.product-description-default product-description-component .tab__panel-header .tab__panel-header-content-wrapper {
  border-bottom: 1px solid var(--border-color);
}

.product-description-default product-description-component .tab__panel-header .tab__panel-header-content-wrapper:first-child {
  border-top: 1px solid var(--border-color);
}

.product-description-default product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-header-content .tab__panel-nav {
  padding: 15px 10px 15px 0 !important;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight:600px;
}

.product-description-default product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-content {
  transition: 0.5s;
  overflow: hidden;
  line-height: 28px;
  letter-spacing: 0.5px;
  max-height: 400px;
  overflow-y: auto;
}

.product-description-default_2 product-description-component .tab__panel-header {
  flex-direction: column;
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper {
  border: 1px solid var(--border-color);
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-header-content .tab__panel-nav {
  padding: 15px 10px !important;
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
  align-items: center;
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-header-content .tab__panel-nav .state-default, .product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-header-content .tab__panel-nav .state-active {
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 5px;
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-content {
  transition: 0.5s;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-content.open {
  padding: 20px;
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-header-content + .tab__panel-content.open {
  border-top: 1px solid var(--border-color);
}

.product-description-default_2 product-description-component .tab__panel-header .tab__panel-header-content-wrapper .tab__panel-header-content + .tab__panel-content:not(.open) {
  border-bottom: none;
}

#sticky-cart-popup.active {
  z-index: calc(var(--z-index-popup) - 10);
}

#sticky-cart-popup.popup-bottom {
  top: unset;
}

#sticky-cart-popup.popup-top {
  top: var(--headerHeight);
  bottom: unset;
}

#sticky-cart-popup .popup__content {
  box-shadow: 0 0 4px #e1e1e1;
  max-width: 100vw;
  width: 100vw;
}

#sticky-cart-popup .sticky-cart-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

#sticky-cart-popup .sticky-cart__image, #sticky-cart-popup .sticky-cart__info {
  display: none;
}

#sticky-cart-popup .sticky-cart__image .jdgm-preview-badge--with-link,
#sticky-cart-popup .sticky-cart__image .jdgm-prev-badge__stars, #sticky-cart-popup .sticky-cart__info .jdgm-preview-badge--with-link,
#sticky-cart-popup .sticky-cart__info .jdgm-prev-badge__stars {
  cursor: default;
}

#sticky-cart-popup .sticky-cart__form .product-options select {
  border: 2px solid rgba(var(--primary-color-rgb), 0.3);
  height: 42px;
  padding: 2px 15px;
}

#sticky-cart-popup .sticky-cart__form .product-options select:focus {
  border: 2px solid rgba(var(--primary-color-rgb), 1);
}

#sticky-cart-popup .sticky-cart__form .product-options .select-default {
  max-width: 30vw;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .product-cart {
  display: flex;
  gap: 20px;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .quantity-input-wrapper {
  display: none;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .product-cart-button-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .product-cart__button {
  position: relative;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .product-cart__button button {
  display: flex;
  gap: 10px;
  padding: 6px 20px !important;
  align-items: center;
  height: 40px;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .product-cart__price {
  margin: 0 10px 0;
}

#sticky-cart-popup .sticky-cart__form product-cart-form .product-cart__price span {
  display: none;
}

@media (min-width: 992px) {
  #sticky-cart-popup .sticky-cart__image {
    display: block;
    width: 80px;
    max-height: 110px;
  }
  #sticky-cart-popup .sticky-cart__image picture {
    --imgHeight: 100%;
  }
  #sticky-cart-popup .sticky-cart__image img {
    max-height: 110px;
  }
  #sticky-cart-popup .sticky-cart__info {
    display: block;
    max-width: 300px;
    padding: 0;
    margin: auto 75px auto 25px;
  }
  #sticky-cart-popup .sticky-cart__form .product-options {
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
  }
  #sticky-cart-popup .sticky-cart__form .product-options svg {
    display: none;
  }
  #sticky-cart-popup .sticky-cart__form .product-options .variants-wrapper > * + * {
    -webkit-margin-start: 20px;
    margin-inline-start: 20px;
  }
  #sticky-cart-popup .sticky-cart__form .product-options .variant-options-header {
    display: block;
    margin: 0 0 12px 0;
  }
  #sticky-cart-popup .sticky-cart__form product-cart-form .quantity-heading {
    margin: 0 0 12px 0;
  }
  #sticky-cart-popup .sticky-cart__form product-cart-form .product-cart {
    display: flex;
    gap: 20px;
  }
  #sticky-cart-popup .sticky-cart__form product-cart-form .quantity-input-wrapper {
    display: block;
  }
  #sticky-cart-popup .sticky-cart__form product-cart-form .product-cart-button-wrapper {
    flex-direction: column;
    align-items: unset;
  }
  #sticky-cart-popup .sticky-cart__form product-cart-form .product-cart__price {
    margin: 0 0 12px 0;
  }
  #sticky-cart-popup .sticky-cart__form product-cart-form .product-cart__price span {
    display: inline-block;
  }
}