/* [project]/node_modules/@fancyapps/ui/dist/fancybox/fancybox.css [app-client] (css) */
: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-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: #000000b3;
  --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-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  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);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  box-sizing: content-box;
  pointer-events: all;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}

.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
  z-index: 1;
  position: relative;
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

:root {
  --f-spinner-color-1: #0000001a;
  --f-spinner-color-2: #11181ccc;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  margin: calc(var(--f-spinner-width) * -.5) 0 0 calc(var(--f-spinner-height) * -.5);
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  border-radius: var(--f-spinner-border-radius);
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  padding: 0;
  animation: .75s linear infinite f-spinner, .2s .2s both f-fadeIn;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes f-spinner {
  to {
    transform: rotate(360deg);
  }
}

.f-panzoom, .f-zoomable {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  content: "";
  display: block;
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom__wrapper {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  position: relative;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  vertical-align: top;
  object-fit: contain;
  user-select: none;
  transition: none;
}

.f-panzoom__wrapper > img.f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.f-panzoom__viewport > .f-panzoom__content {
  object-fit: fill;
  width: 100%;
  height: 100%;
  display: block;
}

picture.f-panzoom__content img {
  vertical-align: top;
  object-fit: contain;
  user-select: none;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: none;
}

.f-panzoom__protected {
  z-index: 1;
  user-select: none;
  position: absolute;
  inset: 0;
}

.f-fadeIn {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, .2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, .2s) * .2) ease calc(var(--f-transition-duration, .2s) * .8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}

.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}

@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}

.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}

@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, .3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, .3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }

  to {
    opacity: 1;
    transform: scale(1)translateZ(0);
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}

.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, .2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}

.f-carousel__slide.has-html {
  overflow: auto;
}

.f-html {
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
  position: relative;
}

.f-html.is-error {
  text-align: center;
}

.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}

.f-caption {
  max-width: 100%;
  max-height: calc(80vh - 100px);
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
  flex-shrink: 0;
  align-self: center;
  overflow: auto;
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  width: 100%;
  height: 100%;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, #000000e6);
  min-height: 1px;
  padding: 0;
  overflow: visible;
}

.f-html5video {
  background: none;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var(--f-arrow-active-color, var(--f-arrow-hover-color));
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  z-index: 20;
  position: absolute;
  transform: translate(0);
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%)rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%)rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__toolbar {
  --f-progressbar-height: 100%;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
  grid-template-columns: 1fr auto 1fr;
  display: grid;
  position: relative;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar__column {
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
  pointer-events: none;
  flex-flow: wrap;
  display: flex;
}

.f-carousel__toolbar__column.is-left {
  justify-content: flex-start;
  justify-self: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  flex-flow: row;
  justify-content: flex-end;
  justify-self: flex-end;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-carousel:has(.f-carousel__slide.is-fullsize) [data-panzoom-action="toggleFull"] g {
  display: none;
}

[data-autoplay-action="toggle"] svg g:first-child {
  display: flex;
}

[data-autoplay-action="toggle"] svg g:last-child, .has-autoplay [data-autoplay-action="toggle"] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action="toggle"] svg g:last-child {
  display: flex;
}

:fullscreen [data-fullscreen-action="toggle"] svg [data-fullscreen-action="toggle"] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action="toggle"] svg [data-fullscreen-action="toggle"] svg g:last-child {
  display: flex;
}

.f-carousel__counter {
  cursor: default;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
  flex-direction: row;
  display: flex;
  position: relative;
}

.f-carousel__counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-z-index: 1;
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-fit: cover;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-transfors: none;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(#0000001a, #0000000d);
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
}

.f-thumbs {
  --f-carousel-slide-width: calc(var(--f-thumb-width)  + var(--f-thumbs-gap));
  --f-carousel-slide-height: calc(var(--f-thumb-height)  + var(--f-thumbs-gap));
  --f-carousel-gap: 0;
  max-height: calc(var(--f-carousel-slide-height)  + var(--f-thumbs-padding-y) * 2);
  margin: var(--f-thumbs-margin);
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  z-index: var(--f-thumbs-z-index);
  flex-shrink: 0;
  padding: 0;
  transition: max-height .3s;
  overflow: hidden;
}

.f-thumbs__viewport {
  margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  display: grid;
  overflow: visible;
}

.f-thumbs__slide {
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  padding: calc(var(--f-thumbs-gap) * .5);
  cursor: pointer;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  width: 100%;
  height: 100%;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
  outline: none;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide button:after {
  content: "";
  z-index: 1;
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
  transition: none;
  position: absolute;
  inset: 0;
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide img {
  object-fit: var(--f-thumb-fit);
  border-radius: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
}

.f-thumbs__slide img.has-lazyerror {
  display: none;
}

.f-thumbs.is-modern {
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-carousel-slide-width: calc(var(--f-thumb-clip-width)  + var(--f-thumbs-gap));
  --f-carousel-slide-height: var(--f-thumb-height);
  --width-diff: calc((var(--f-thumb-width)  - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--width-diff) * 2);
  margin-left: calc(var(--width-diff) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset(0 var(--clip-shift) round var(--f-thumb-border-radius, 0));
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
  padding: 0;
  overflow: visible;
}

.f-thumbs.is-modern .f-thumbs__slide button {
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease);
  border: none;
  margin-left: -50%;
  display: block;
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
  position: absolute;
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-progressbar {
  z-index: 30;
  height: var(--f-progressbar-height, 3px);
  transform-origin: 0;
  background: var(--f-progressbar-color, var(--f-carousel-theme-color, #575ad6));
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-timing-function: linear;
  animation-play-state: running;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

[data-fullscreen-action="toggle"] svg g:first-child {
  display: flex;
}

[data-fullscreen-action="toggle"] svg g:last-child, :fullscreen [data-fullscreen-action="toggle"] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action="toggle"] svg g:last-child {
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

html.with-fancybox {
  scroll-behavior: auto;
  width: auto;
  overflow: visible;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--f-body-margin, 0px)  + var(--f-scrollbar-compensate, 0px));
  overscroll-behavior-y: none;
  overflow: hidden !important;
}

.fancybox__dialog {
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: #18181bf2;
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 8px;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 16px;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 1px 1px 1px #000000bf;
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 10px;
  --f-counter-gap: 4px;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 17px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 16px 8px;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: #fff3;
  --f-spinner-color-2: #fffc;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
  --f-progressbar-color: #fff3;
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 1px;
  --f-button-outline-color: #ffffffbf;
  --f-button-outline-offset: 0px;
  --f-button-bg: #363636bf;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b03), drop-shadow(1px 2px 1px #18181b0d);
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 32px;
  --f-arrow-width: 50px;
  --f-arrow-height: 50px;
  --f-arrow-svg-width: 24px;
  --f-arrow-svg-height: 24px;
  --f-arrow-svg-stroke-width: 2;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #363636a6;
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 2px #ffffffa6;
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
  --f-thumb-selected-transform: none;
  outline: none;
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fancybox__container[theme="light"] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: #fffffff7;
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: #0003;
  --f-spinner-color-2: #000c;
  --f-spinner-border-width: 3.5px;
  --f-progressbar-color: #6f6f7433;
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: #000000d9;
  --f-button-bg: #ffffffd9;
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: #ffffffd9;
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
  --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
}

.fancybox__container::backdrop {
  background-color: #0000;
}

.fancybox__container > :not(.fancybox__carousel), .fancybox__container .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > :not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, .35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > :not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
  position: fixed;
  inset: 0;
}

.fancybox__carousel {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  position: relative;
  overflow: clip visible;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  content: "";
  z-index: 1;
  position: absolute;
  inset: -30px;
}

.fancybox__carousel > .f-progressbar {
  background-color: var(--fancybox-color);
}

.fancybox__viewport {
  min-width: 0;
  min-height: 0;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
  flex: 1;
  display: grid;
  position: relative;
  overflow: visible;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__viewport [data-selectable], .fancybox__viewport [contenteditable] {
  cursor: auto;
}

.fancybox__slide {
  box-sizing: border-box;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  will-change: transform;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
  transform: translateZ(0);
}

.fancybox__slide:before, .fancybox__slide:after {
  content: "";
  display: block;
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  padding: 8px;
  overflow: auto;
}

.fancybox__slide.has-close-btn {
  padding-top: 34px;
}

.fancybox__slide .f-button[data-fancybox-close] {
  --f-button-width: var(--f-close-button-width, 34px);
  --f-button-height: var(--f-close-button-height, 34px);
  --f-button-border-radius: var(--f-close-border-radius, 4px);
  --f-button-color: var(--f-close-button-color, #fff);
  --f-button-hover-color: var(--f-close-button-hover-color, #fff);
  --f-button-bg: var(--f-close-button-bg, transparent);
  --f-button-hover-bg: var(--f-close-button-hover-bg, transparent);
  --f-button-active-bg: var(--f-close-button-active-bg, transparent);
  --f-button-svg-width: var(--f-close-button-svg-width, 22px);
  --f-button-svg-height: var(--f-close-button-svg-height, 22px);
  top: calc(var(--f-button-height) * -1);
  z-index: 40;
  position: absolute;
  right: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}


/* [project]/public/styles/product/product.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  background: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea, .form .form-group select {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
}

.form .form-group input:focus, .form .form-group textarea:focus, .form .form-group select:focus, .form .form-group input.valid, .form .form-group textarea.valid, .form .form-group select.valid {
  outline: none;
}

.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label, .form .form-group select.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus, .form .form-group select:not(.no-focus):focus {
  outline: none;
}

.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label, .form .form-group select:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group select option {
  color: var(--text);
}

.form .form-group select option:hover {
  color: var(--white);
  background-color: #000 !important;
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url("/assets/icon/clip-gray.svg") no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  inset: 0 0 0 3%;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.checkbox-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}

.checkbox-full:has(input:checked) .check-span:before {
  opacity: 1;
}

.checkbox-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.checkbox-full .check-span {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  pointer-events: none;
  background: #d9d9d9;
  border-radius: 5px;
  flex: 0 auto;
  padding: 0;
  display: block;
  position: relative;
}

.checkbox-full .check-span:before {
  content: "";
  z-index: 2;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") 50% / 10px no-repeat;
  position: absolute;
  inset: 0;
}

.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}

.radio-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.radio-full .check-span {
  --size: 17px;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  flex: 0 auto;
  padding: 0;
  display: inline-block;
  position: relative;
}

.radio-full p {
  padding-left: 14px;
}

.prolisting-secA {
  background-color: #e8e8e8;
}

.prolisting-secA .heading {
  max-width: 380px;
  margin: 0 auto;
}

.prolisting-secA .heading h2 {
  font-size: 30px;
}

@media only screen and (width <= 540px) {
  .prolisting-secA .heading h2 {
    font-size: 24px;
  }
}

.prolisting-secA .heading p {
  color: var(--text);
}

.list-filter-wrap {
  --filterheight: 45px;
  --bordercolor: #66666638;
  top: calc(var(--headerfixed));
  z-index: 3;
  background: var(--white);
  border-top: 1px solid #66666638;
  border-bottom: 1px solid #66666638;
  height: 100%;
  position: sticky;
  left: 0;
  right: 0;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap {
    --bordercolor: #66666638;
    top: calc(var(--headerfixed)  - 1px);
    z-index: 7;
  }
}

.list-filter-wrap .list-filter {
  display: flex;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter {
    justify-content: space-between;
  }
}

.list-filter-wrap .list-filter .colA {
  border-right: 1px solid var(--bordercolor);
  pointer-events: none;
  padding: 0 25px;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .colA {
    pointer-events: all;
    padding-left: 0;
  }
}

@media only screen and (width <= 675px) {
  .list-filter-wrap .list-filter .colA {
    padding-right: 15px;
  }
}

@media only screen and (width <= 345px) {
  .list-filter-wrap .list-filter .colA {
    padding-right: 13px;
  }
}

@media only screen and (width <= 320px) {
  .list-filter-wrap .list-filter .colA {
    padding-right: 10px;
  }
}

.list-filter-wrap .list-filter .colA .filtr-btn {
  height: var(--filterheight);
  line-height: 0;
}

.list-filter-wrap .list-filter .colB {
  flex: 1;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .colB {
    transition: all .5s;
    right: 0;
    transform: translateX(100%);
  }

  .list-filter-wrap .list-filter .colB.is-open {
    transform: translateX(0%);
  }

  .list-filter-wrap .list-filter .colB .close {
    top: 20px;
    right: 20px;
  }
}

.list-filter-wrap .list-filter .colB .fltr-ggf {
  display: flex;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .colB .fltr-ggf {
    height: 100%;
    padding: 70px 0;
    display: block;
    position: relative;
    overflow-y: auto;
  }
}

.list-filter-wrap .list-filter .colB .fltr-ggf .btn-mbl-btm {
  z-index: 2;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (width >= 991px) {
  .list-filter-wrap .list-filter .colB .fltr-ggf .btn-mbl-btm {
    display: none;
  }
}

.list-filter-wrap .list-filter .colB .fltr-ggf .btn-mbl-btm .btn {
  --height: 44px;
  flex: 1;
}

.list-filter-wrap .list-filter .kmr-select-wrap {
  --labelheight: var(--filterheight);
  padding: 0 25px;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .kmr-select-wrap {
    width: 100%;
  }
}

@media only screen and (width >= 991px) {
  .list-filter-wrap .list-filter .kmr-select-wrap:not(.sort_by) {
    border-right: 1px solid var(--bordercolor);
  }
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .kmr-select-wrap:not(.sort_by) {
    border-top: 1px solid var(--bordercolor);
  }

  .list-filter-wrap .list-filter .kmr-select-wrap:not(.sort_by) .label {
    color: var(--black);
    background-image: url("/icon/arrow-down-gray.svg");
    font-weight: 500;
  }
}

.list-filter-wrap .list-filter .kmr-select-wrap:not(.sort_by) .kmr-select-menu.active {
  display: block;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .kmr-select-wrap:not(.sort_by) .kmr-select-menu {
    position: unset;
    width: 100%;
    box-shadow: none;
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
  }
}

.list-filter-wrap .list-filter .kmr-select-wrap.sort_by .kmr-select-menu.active {
  display: block;
}

@media only screen and (width <= 991px) {
  .list-filter-wrap .list-filter .kmr-select-wrap.sort_by {
    padding-right: 0;
  }
}

.total_products {
  background: #fafafa;
  padding: 20px 25px;
}

@media only screen and (width <= 991px) {
  .total_products {
    padding: 20px 0;
    display: none;
  }
}

.total_products .container {
  align-items: center;
  gap: 20px;
  display: flex;
}

.total_products .container p {
  flex: 0 auto;
}

.total_products .container .selected_pro_wraper {
  flex: 1;
  align-items: center;
  gap: 10px;
  width: 100%;
  display: flex;
  overflow-x: auto;
}

.total_products .container .selected_pro_wraper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.total_products .container .selected_pro_wraper::-webkit-scrollbar-thumb {
  background-color: var(--black);
}

.total_products .container .selected_pro_wraper .selected {
  color: var(--black);
  border: 1px solid var(--text);
  align-items: center;
  gap: 6px;
  min-width: fit-content;
  padding: 2px 10px;
  font-size: 12px;
  display: flex;
}

.total_products .container .selected_pro_wraper .selected img {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.proListing_grid_wrapper {
  background-color: #fafafa;
  padding-top: 30px;
}

.proListing_grid_wrapper .proListing_grid {
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 50px;
  display: grid;
}

@media only screen and (width <= 768px) {
  .proListing_grid_wrapper .proListing_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (width <= 540px) {
  .proListing_grid_wrapper .proListing_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.proListing_grid_wrapper .load_more {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  font-size: 14px;
  transition: all .5s;
  display: flex;
}

.proListing_grid_wrapper .load_more:hover img {
  transform: translateY(5px);
}

.proListing_grid_wrapper .load_more img {
  width: 50px;
  height: 50px;
  transition: all .5s;
}

.listing-content .content h1 {
  text-align: center;
  margin: 10px 0;
  font-size: 48px;
  font-weight: normal;
}

@media only screen and (width <= 675px) {
  .listing-content .content h1 {
    font-size: 34px;
  }
}

@media only screen and (width <= 520px) {
  .listing-content .content h1 {
    font-size: 30px;
    font-weight: bold;
  }
}

.listing-content .content h2 {
  margin: 10px 0;
  font-size: 34px;
  font-weight: 500;
}

@media only screen and (width <= 675px) {
  .listing-content .content h2 {
    font-size: 24px;
  }
}

.listing-content .content h3 {
  margin: 10px 0;
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.21;
}

@media only screen and (width <= 675px) {
  .listing-content .content h3 {
    font-size: 22px;
  }
}

.listing-content .content h4 {
  margin: 10px 0;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

@media only screen and (width <= 675px) {
  .listing-content .content h4 {
    font-size: 20px;
  }
}

.listing-content .content h5 {
  margin: 10px 0;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (width <= 675px) {
  .listing-content .content h5 {
    font-size: 18px;
  }
}

.listing-content .content h6 {
  margin: 10px 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.listing-content .content p {
  color: var(--text);
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media only screen and (width <= 520px) {
  .listing-content .content p {
    font-size: 14px;
  }
}

.listing-content .content p b {
  color: var(--black);
  font-weight: 600;
}

.listing-content .content a {
  font-weight: 600;
  color: var(--black) !important;
}

.listing-content .content a:hover {
  text-decoration: underline;
}

.listing-content .content ul {
  margin-bottom: 15px;
  padding-left: 10px;
}

@media only screen and (width <= 675px) {
  .listing-content .content ul {
    margin-bottom: 10px;
    padding-left: 10px;
  }
}

.listing-content .content ul li {
  padding-left: 28px;
  position: relative;
}

@media only screen and (width <= 675px) {
  .listing-content .content ul li {
    padding-left: 20px;
  }
}

.listing-content .content ul li:not(:last-child) {
  margin-bottom: 6px;
}

.listing-content .content ul li:before {
  content: "";
  aspect-ratio: 1;
  background: #acacac;
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

@media only screen and (width <= 520px) {
  .listing-content .content ul li:before {
    width: 6px;
  }
}

.product-detail-container {
  margin-top: var(--headerfixed);
  background-color: #fafafa;
}

.product-detail-container .breadcrumps {
  padding-top: 20px;
}

.product-detail-container .breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

@media only screen and (width <= 540px) {
  .product-detail-container .breadcrumps li:first-child, .product-detail-container .breadcrumps li:last-child, .product-detail-container .breadcrumps li:nth-last-child(2):before {
    display: none;
  }
}

.product-detail-container .breadcrumps a {
  color: var(--text);
  font-size: 14px;
}

@media only screen and (width <= 520px) {
  .product-detail-container .breadcrumps a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.product-detail-container .breadcrumps a.active {
  color: var(--colortext);
}

.product-detail-container .detail-product-wrap {
  grid-gap: 35px;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
  padding-bottom: 80px;
  display: grid;
}

@media only screen and (width <= 991px) {
  .product-detail-container .detail-product-wrap {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 60px;
  }
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap {
    padding-bottom: 40px;
  }
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap {
    grid-gap: 20px;
    margin-top: 15px;
    padding-bottom: 20px;
  }
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap {
  top: var(--headerheight);
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  display: grid;
  position: sticky;
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap .colA .product-image-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img {
  line-height: 0;
  transition: all .5s;
  position: relative;
  overflow: hidden;
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img.videoHover button {
  --btnsize: 30px;
  --border: 1px;
  --bordercolor: var(--black);
  --playbtncolor: var(--black);
  z-index: 2;
  position: absolute;
  top: 5%;
  right: 10%;
  transform: translate(10%, -5%);
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img.videoHover video {
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img.videoHover:hover:hover img {
  opacity: 0;
  transform: scale(1.2);
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img:hover img {
  transform: scale(1.1);
}

.product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img img {
  transform-origin: 0 0;
  transition: all 1s;
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap .colA .product-image-wrap .pro-img img {
    height: auto;
  }
}

.product-detail-container .detail-product-wrap .colB {
  padding-left: 40px;
}

@media only screen and (width <= 991px) {
  .product-detail-container .detail-product-wrap .colB {
    padding-left: 0;
  }
}

.product-detail-container .detail-product-wrap .colB .pro_title {
  color: #000;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap .colB .pro_title {
    margin-bottom: 10px;
  }
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .pro_title {
    font-size: 22px;
  }
}

.product-detail-container .detail-product-wrap .colB .review_wrap {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap .colB .review_wrap {
    margin-bottom: 15px;
  }
}

.product-detail-container .detail-product-wrap .colB .review_wrap .review_stars {
  align-items: center;
  gap: 3px;
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .review_wrap .review_content {
  align-items: center;
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .review_wrap .review_content p {
  color: var(--text);
  font-size: 14px;
}

.product-detail-container .detail-product-wrap .colB .review_wrap .review_content p:first-child {
  border-right: 1px solid var(--text);
  padding-right: 10px;
}

.product-detail-container .detail-product-wrap .colB .review_wrap .review_content p:last-child {
  cursor: pointer;
  padding-left: 10px;
}

.product-detail-container .detail-product-wrap .colB .price_wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .price_wrapper .price {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .price_wrapper .price {
    font-size: 20px;
  }
}

.product-detail-container .detail-product-wrap .colB .price_wrapper .sku_code {
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .price_wrapper .sku_code span {
  color: var(--text);
}

.product-detail-container .detail-product-wrap .colB .bulk_orders {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 20px;
  padding-bottom: 35px;
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap .colB .bulk_orders {
    padding-bottom: 25px;
  }
}

.product-detail-container .detail-product-wrap .colB .bulk_orders > p {
  color: var(--text);
  font-size: 14px;
}

.product-detail-container .detail-product-wrap .colB .bulk_orders .bulk_order_content {
  align-items: center;
  gap: 5px;
  padding-top: 15px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .bulk_orders .bulk_order_content {
    padding-top: 10px;
  }
}

.product-detail-container .detail-product-wrap .colB .bulk_orders .bulk_order_content .bulk_wrap {
  background: var(--white);
  border: 1px solid #e6e6e6;
  padding: 8px 15px;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .bulk_orders .bulk_order_content .bulk_wrap {
    flex: 1;
  }
}

.product-detail-container .detail-product-wrap .colB .bulk_orders .bulk_order_content .bulk_wrap p {
  color: var(--text);
  font-size: 12px;
  line-height: 1;
}

.product-detail-container .detail-product-wrap .colB .bulk_orders .bulk_order_content .bulk_wrap .price {
  font-size: 14px;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap {
  position: relative;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .upper_sec {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .upper_sec h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 14px;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .upper_sec a {
  color: var(--text);
  font-size: 14px;
  text-decoration: underline;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 7px;
  padding: 25px 0;
  display: flex;
}

@media only screen and (width <= 1150px) {
  .product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper {
    padding: 25px 0 50px;
  }
}

@media only screen and (width <= 991px) {
  .product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper {
    padding: 25px 0 70px;
  }
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size {
  text-align: center;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size p {
  text-transform: uppercase;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size .size_count {
  border: 1px solid #b4b1b1;
  border-radius: 5px;
  align-items: center;
  gap: 3px;
  width: 100%;
  padding: 7px 6px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size .size_count {
    padding: 5px 4px;
  }
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size .size_count button {
  line-height: 1;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size .size_count button svg {
  width: 15px;
  height: 15px;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size .size_count input {
  text-align: center;
  background: none;
  border: none;
  outline: none;
  max-width: 40px;
  height: 30px;
  padding: 0 5px;
  line-height: 1;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .select_size_wrap .sizes_wrapper .size .size_count input {
    max-width: 30px;
    height: 25px;
  }
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish {
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 10%;
  right: 0%;
  transform: translate(0%, 10%);
}

@media only screen and (width <= 1150px) {
  .product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish {
    bottom: 5%;
  }
}

@media only screen and (width <= 991px) {
  .product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish {
    bottom: 10%;
  }
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .wish_btn {
  border-right: 1px solid #00000045;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .wish_btn.added svg path {
  fill: var(--black);
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .share {
  cursor: pointer;
  padding-left: 10px;
  position: relative;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .share svg {
  width: 30px;
  height: 30px;
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .share .social_icons {
  background: var(--white);
  transform-origin: bottom;
  pointer-events: none;
  opacity: 0;
  border-radius: 5px;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px 7px;
  transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
  display: flex;
  position: absolute;
  bottom: 100%;
  transform: scale(.75)translateY(10px);
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .share .social_icons.is-open {
  opacity: 1;
  pointer-events: all;
  pointer-events: all;
  transform: scale(1)translateY(0);
}

.product-detail-container .detail-product-wrap .colB .select_size_wrap .add_to_wish .share .social_icons svg {
  width: 20px;
  height: 20px;
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper {
  align-items: center;
  gap: 10px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .btn_wrapper {
    z-index: 2;
    gap: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button {
  --height: 46px;
  text-transform: capitalize;
  letter-spacing: normal;
  flex: 1;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button.black {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button.black:hover {
  color: var(--black);
  background: none;
  padding: 0;
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button.gray {
  color: var(--black);
  background: #d7d2d2;
  border: 1px solid #d7d2d2;
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button.gray svg {
  transition: all .5s;
  display: none;
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button.gray.active svg {
  display: block;
}

.product-detail-container .detail-product-wrap .colB .btn_wrapper button.gray:hover {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
  padding: 0;
}

.product-detail-container .detail-product-wrap .colB .pro_description {
  padding: 40px 0 20px;
}

@media only screen and (width <= 768px) {
  .product-detail-container .detail-product-wrap .colB .pro_description {
    padding: 30px 0 20px;
  }
}

.product-detail-container .detail-product-wrap .colB .pro_description .col {
  --padlr: 0;
  transition: all .5s;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col.active .title h6 {
  color: var(--black);
}

.product-detail-container .detail-product-wrap .colB .pro_description .col.active .title .icon:after {
  transform: scaleY(0);
}

.product-detail-container .detail-product-wrap .colB .pro_description .col.active article {
  opacity: 1;
  max-height: fit-content;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col .title {
  cursor: pointer;
  border-bottom: 1px solid #d1d1d1;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  transition: all .5s;
  display: flex;
  overflow: hidden;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col .title h6 {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex: 1;
  padding-right: 1rem;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .5s;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col .title .icon {
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--black);
  height: var(--size);
  width: var(--size);
  flex: 0 auto;
  position: relative;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col .title .icon:before, .product-detail-container .detail-product-wrap .colB .pro_description .col .title .icon:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--black);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col .title .icon:before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  height: var(--border);
  width: 100%;
  bottom: auto;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col .title .icon:after {
  left: calc(var(--size) / 2);
  width: var(--border);
  height: 100%;
  right: auto;
  translate: -50%;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col article {
  opacity: 0;
  border-bottom: 1px solid #d1d1d1;
  max-height: 0;
  transition: max-height .4s ease-in-out, opacity .3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc {
  padding: 20px 0;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h1, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h2, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h3, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h4, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h5, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h6 {
  font-family: Lato, sans-serif;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h2, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h3, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h4 {
  margin: 20px 0 15px;
}

.product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h5, .product-detail-container .detail-product-wrap .colB .pro_description .col article .content-desc h6 {
  margin: 10px 0;
}

.product-detail-container .detail-product-wrap .colB .col-itqeq {
  display: flex;
}

.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv {
  text-align: center;
  flex: 1;
  padding: 10px 43px;
}

.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv:not(:last-child) {
  border-right: 1px solid #cfcfcf;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv {
    padding: 0 8px;
  }
}

.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico {
  margin-bottom: 15px;
  line-height: 0;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico {
    margin-bottom: 10px;
  }
}

.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico img {
  width: 40px;
}

@media only screen and (width <= 540px) {
  .product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico img {
    width: 35px;
  }
}

.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv p {
  text-transform: uppercase;
  color: var(--text);
  font-size: 13px;
  line-height: 15px;
}

.customer_reviews .heading {
  margin-bottom: 50px;
}

@media only screen and (width <= 768px) {
  .customer_reviews .heading {
    margin-bottom: 40px;
  }

  .customer_reviews .review_wrapper {
    flex-direction: column;
  }
}

.customer_reviews .review_wrapper .colA, .customer_reviews .review_wrapper .colB {
  flex: 1;
}

.customer_reviews .review_wrapper .colA .review-border {
  border-right: 1px solid #00000026;
}

@media only screen and (width <= 768px) {
  .customer_reviews .review_wrapper .colA .review-border {
    border-right: none;
  }
}

.customer_reviews .review_wrapper .colA .review-border .review_content {
  height: 500px;
  margin-right: -4px;
  overflow-y: auto;
}

@media only screen and (width <= 768px) {
  .customer_reviews .review_wrapper .colA .review-border .review_content {
    height: 100%;
    margin-right: 0;
    overflow-y: visible;
  }
}

.customer_reviews .review_wrapper .colA .review-border .review_content::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.customer_reviews .review_wrapper .colA .review-border .review_content::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box {
  gap: 15px;
  margin-bottom: 40px;
  display: flex;
}

@media only screen and (width <= 768px) {
  .customer_reviews .review_wrapper .colA .review-border .review_content .review_box {
    margin-bottom: 25px;
  }
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figure {
  flex: 0 auto;
  width: 60px;
  height: 60px;
}

@media only screen and (width <= 768px) {
  .customer_reviews .review_wrapper .colA .review-border .review_content .review_box figure {
    width: 50px;
    height: 50px;
  }
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figure img {
  border-radius: 50%;
  height: 100%;
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figcaption {
  flex: 1;
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figcaption h6 {
  font-size: 18px;
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figcaption .review_stars {
  align-items: center;
  gap: 5px;
  padding: 5px 0;
  display: flex;
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figcaption p {
  max-width: 400px;
  color: var(--text);
  font-size: 14px;
}

.customer_reviews .review_wrapper .colA .review-border .review_content .review_box figcaption time {
  color: #a4a4a4;
  margin-top: 10px;
  font-size: 14px;
  display: block;
}

.customer_reviews .review_wrapper .colB .review_form {
  padding: 30px 70px;
}

@media only screen and (width <= 991px) {
  .customer_reviews .review_wrapper .colB .review_form {
    padding: 30px 40px;
  }
}

@media only screen and (width <= 768px) {
  .customer_reviews .review_wrapper .colB .review_form {
    padding: 30px 0;
  }
}

@media only screen and (width <= 540px) {
  .customer_reviews .review_wrapper .colB .review_form {
    padding: 20px 0;
  }
}

.customer_reviews .review_wrapper .colB .review_form h6 {
  font-family: Lato, sans-serif;
  font-size: 24px;
}

.customer_reviews .review_wrapper .colB .review_form .rating {
  align-items: center;
  gap: 20px;
  display: flex;
}

.customer_reviews .review_wrapper .colB .review_form .rating .give_reviews {
  align-items: center;
  gap: 7px;
  display: flex;
}

.customer_reviews .review_wrapper .colB .review_form .rating .give_reviews li {
  cursor: pointer;
  height: 16px;
}

.customer_reviews .review_wrapper .colB .review_form .rating .give_reviews li:hover svg path, .customer_reviews .review_wrapper .colB .review_form .rating .give_reviews li.active svg path {
  fill: #000;
}

.customer_reviews .review_wrapper .colB .review_form .rating .give_reviews li svg {
  width: 16px;
  height: 16px;
  transition: all .5s;
}

.customer_reviews .review_wrapper .colB .review_form .black_fill {
  width: fit-content;
  padding: 0 20px;
}

.custom-pop {
  background: var(--white);
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

@media only screen and (width <= 675px) {
  .custom-pop .model-body {
    padding: 70px 20px 30px;
  }
}

@media only screen and (width <= 675px) {
  .custom-pop .model-body .title p {
    max-width: 300px;
    font-size: 14px;
  }
}

.custom-pop .model-body .form {
  --gaptb: 15px;
}

.custom-pop {
  background: var(--white);
  max-width: 600px;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.custom-pop.is-open {
  transform: translateX(0%);
}

.custom-pop .model-body {
  height: 100%;
  padding: 60px 35px 30px;
  overflow-y: auto;
}

.custom-pop .model-body::-webkit-scrollbar {
  background: var(--white);
  width: 3px;
  height: 3px;
}

.custom-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.custom-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}

@media only screen and (width <= 675px) {
  .custom-pop .model-body {
    padding: 70px 20px 30px;
  }
}

.custom-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}

.custom-pop .model-body .title h4 {
  color: var(--black);
  font-size: 32px;
  font-weight: 500;
}

.custom-pop .model-body .title p {
  color: var(--text);
  max-width: 317px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 20px;
}

@media only screen and (width <= 675px) {
  .custom-pop .model-body .title p {
    max-width: 300px;
    font-size: 14px;
  }
}

.custom-pop .model-body .form {
  --gaptb: 15px;
  --item: 2;
}

.custom-pop .model-body .form .front_img {
  background-color: #6666660f;
  padding: 0 10px;
}

.custom-pop .model-body .form .front_img:before, .custom-pop .model-body .form .front_img:after {
  display: none;
}

.custom-pop .model-body .form .front_img .file-name {
  --filename: "Front Image";
}

.custom-pop .model-body .form .back_img {
  background-color: #6666660f;
  padding: 0 10px;
}

.custom-pop .model-body .form .back_img:before, .custom-pop .model-body .form .back_img:after {
  display: none;
}

.custom-pop .model-body .form .back_img .file-name {
  --filename: "Back Image";
}

.custom-pop .model-body .form .rightside_img {
  background-color: #6666660f;
  padding: 0 10px;
}

.custom-pop .model-body .form .rightside_img:before, .custom-pop .model-body .form .rightside_img:after {
  display: none;
}

.custom-pop .model-body .form .rightside_img .file-name {
  --filename: "Right Side Image";
}

.custom-pop .model-body .form .leftside_img {
  background-color: #6666660f;
  padding: 0 10px;
}

.custom-pop .model-body .form .leftside_img:before, .custom-pop .model-body .form .leftside_img:after {
  display: none;
}

.custom-pop .model-body .form .leftside_img .file-name {
  --filename: "Left Side Image";
}

.model.embroidery-pop {
  max-width: 450px;
  height: fit-content;
  top: unset;
  transition: all .5s;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 100%);
}

.model.embroidery-pop.guide {
  max-width: fit-content;
}

.model.embroidery-pop.guide .model-body h6 {
  padding-bottom: 10px;
}

.model.embroidery-pop.guide .model-body img {
  height: 100%;
}

.model.embroidery-pop.is-open {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.model.embroidery-pop .close {
  top: 20px;
  right: 20px;
}

.model.embroidery-pop .close svg {
  width: 20px;
  height: 20px;
}

.model.embroidery-pop .model-body {
  padding: 20px 25px;
}

.model.embroidery-pop .model-body h6 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.model.embroidery-pop .model-body .form-group {
  border: 1px dashed var(--black);
  border-radius: 5px;
  width: fit-content;
  margin: 15px 0 20px;
  padding: 15px 25px;
  position: relative;
}

.model.embroidery-pop .model-body .form-group:before {
  content: "";
  background: url("/assets/icon/add.svg") 5% no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.model.embroidery-pop .model-body .form-group p {
  color: var(--text);
  padding-left: 30px;
}

.model.embroidery-pop .model-body .form-group input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.model.embroidery-pop .model-body p {
  color: var(--text);
}

.model.embroidery-pop .model-body p strong {
  color: var(--black);
}

.model.embroidery-pop .model-body .btn_wrapper {
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  display: flex;
}

.model.embroidery-pop .model-body .btn {
  --height: 32px;
  padding: 0 20px;
}

.model.embroidery-pop .model-body .embroidery {
  color: var(--text);
  font-size: 14px;
  text-decoration: underline;
}


/*# sourceMappingURL=_75913b5f._.css.map*/