*:not(.default-style *) {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3B82F6;
  --toastify-color-success: #34B766;
  --toastify-color-warning: #F98315;
  --toastify-color-error: #F63737;
  --toastify-color-cart: var(--toastify-color-success);
  --toastify-color-copy: var(--toastify-color-success);
  --toastify-color-cart_plus: var(--toastify-color-success);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
}
body {
  font-variant: tabular-nums;
  font-size: 14px;
  position: relative;
  line-height: 1.5715 !important;
  font-feature-settings: 'tnum';
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
.x-wrapper {
  width: 100%;
  min-height: 100%;
}
.x-element {
  position: relative;
}
.hidden {
  display: none;
}
.x-icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.x-icon-play {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.59);
  border-radius: 50%;
  transition: opacity 0.25s ease-out, background-color 0.2s ease-out, transform 0.2s ease-out;
  pointer-events: auto;
  cursor: pointer;
}
.x-icon-play:hover {
  background-color: rgba(14, 19, 24, 0.7);
  transform: scale(1.05);
}
.x-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  filter: drop-shadow(0 1px .15px #B2B2B2);
  fill: #fff;
  cursor: pointer;
  z-index: 99;
}
.x-arrow-left {
  left: 5px;
}
.x-arrow-right {
  right: 5px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: inherit;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.grid {
  display: grid;
}
.overflow-hidden {
  overflow: hidden;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.m-h-full {
  max-height: 100%;
}
.m-w-full {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: currentColor;
  user-drag: none;
  -webkit-user-drag: none;
}
a.disabled, .x-slide-wrapper.disabled {
  pointer-events: none;
}
input[type=submit], input[type=reset], input[type=button], button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: border-box;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.opacity-0 {
  opacity: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"].show-spin::-webkit-inner-spin-button, input[type="number"].show-spin::-webkit-outer-spin-button {
  opacity: 1;
}
input[type="number"].hide-spin::-webkit-inner-spin-button, input[type="number"].hide-spin::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ellipsis {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.focused:focus {
  outline: 2px solid #000;
  outline-offset: 3px;
}
img {
  vertical-align: middle;
  border-style: none;
}
.cursor-pointer {
  cursor: pointer;
}
picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
picture source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.min-w-0 {
  min-width: 0;
}
@keyframes slide-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-center_x-top {
  0% {
    transform: translate(-50%, -100%);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes slide-center_y-top {
  0% {
    transform: translate(0, -150%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes slide-center_x-center_y-top {
  0% {
    transform: translate(-50%, -150%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes slide-bottom {
  0% {
    transform: translateY(100%)
  }
  100% {
    transform: translateY(0)
  }
}
@keyframes slide-center_x-bottom {
  0% {
    transform: translate(-50%, 100%);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes slide-center_y-bottom {
  0% {
    transform: translate(0, 50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes slide-center_x-center_y-bottom {
  0% {
    transform: translate(-50%, 50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-center_x-left {
  0% {
    transform: translate(-150%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes slide-center_y-left {
  0% {
    transform: translate(-100%, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes slide-center_x-center_y-left {
  0% {
    transform: translate(-150%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-center_x-right {
  0% {
    transform: translate(50%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes slide-center_y-right {
  0% {
    transform: translate100%, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes slide-center_x-center_y-right {
  0% {
    transform: translate(50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes light-speed-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes light-speed-center_x-top {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes light-speed-center_y-top {
  0% {
    opacity: 0;
    transform: translate(0, -150%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes light-speed-center_x-center_y-top {
  0% {
    opacity: 0;
    transform: translate(-50%, -150%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes light-speed-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes light-speed-center_x-bottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes light-speed-center_y-bottom {
  0% {
    opacity: 0;
    transform: translate(0, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes light-speed-center_x-center_y-bottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes light-speed-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes light-speed-center_x-left {
  0% {
    opacity: 0;
    transform: translate(-150%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes light-speed-center_y-left {
  0% {
    opacity: 0;
    transform: translate(-100%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes light-speed-center_x-center_y-left {
  0% {
    opacity: 0;
    transform: translate(-150%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes light-speed-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes light-speed-center_x-right {
  0% {
    opacity: 0;
    transform: translate(50%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes light-speed-center_y-right {
  0% {
    opacity: 0;
    transform: translate(100%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes light-speed-center_x-center_y-right {
  0% {
    opacity: 0;
    transform: translate(50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes snake {
  0% {
    width: 0;
  }
  100% {
    width: var(--width);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes blur {
  0% {
    filter: blur(100px);
  }
  100% {
    filter: blur(0);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes horizontal-move {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes vertical-move {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes newspaper {
  0% {
    opacity: 0;
    transform: rotate(360deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes threed-unfold {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}
@keyframes shine-loading-image {
  0% {
    background-position: 0px;
  }
  100% {
    background-position: 600px;
  }
}
.image-skeleton {
  position: relative;
}
.element-skeleton::before {
  content: '';
}
.image-skeleton::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, rgba(236,236,236,0) 0%, rgba(244,244,244,1) 50%, rgba(236,236,236,0) 100%);
  animation: shine-loading-image 4s linear infinite;
  z-index: 1;
}
img[src=''], img:not([src])
{
  visibility: hidden;
}
.overlay-box{
  content: "";
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: .4;
  visibility: hidden;
}
.overlay-box.open{
  visibility: visible;
}
.fb-root .fb-iframe-widget iframe[data-testid="dialog_iframe"] {
  z-index: 999 !important;
}
.invisible{
  visibility: hidden;
}
input {
  accent-color: var(--icon-color, inherit)
}
.cake-slider {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  align-content: flex-start;
  display: flex;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  width: 100%;
}
.cake-slider__slide {
  min-height: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noscroll {
  position: fixed;
  top: var(--st, 0);
  inline-size: 100%;
  overflow-y:scroll;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.pulsate {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: transparent;
}
.pulsate::after {
  position: absolute;
  top: 0;
  inset-inline-end: -150%;
  bottom: 0;
  inset-inline-start: -150%;
  background: linear-gradient(90deg, #0000000f 25%, #00000026 37%, #0000000f 63%);
  animation-name: pulsateAnimation;
  animation-duration: 1.4s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  content: "";
}
@keyframes pulsateAnimation{
  from {
    transform: translateX(-37.5%);
  }
  to {
    transform: translateX(37.5%);
  }
}
.default-style *:not(img):not(iframe):not(li) {
  all: revert;
  line-height: normal;
  max-width: 100%;
}
.default-style li {
  list-style-position: initial;
}
.default-style img {
  max-width: 100% !important;
  height: auto;
}
.disable-position {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  height: 0 !important;
  width: 0 !important;
  max-height: 0 !important;
  max-width: 0 !important;
  visibility: hidden;
  pointer-events: none;
}
.web-notify {
  position: fixed;
  top: 20px;
  max-width: min(calc(100vw - 24px), 500px);
  box-sizing: border-box;
  z-index: 2147483647;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  touch-action: pan-y;
  overflow: hidden;
  width: max-content;

  --font-size-text: 14px;
  --line-height-text: 22px;
  --size-icon: 24px;
}
.web-notify .notify__content {
  padding: 8px 12px;
}
.web-notify.right {
  right: 20px;
  animation: slideInRight 0.2s forwards;
}
.web-notify.left {
  left: 20px;
  animation: slideInLeft 0.2s forwards;
}
.web-notify.right.closing {
  animation: slideOutRight 0.2s forwards;
}
.web-notify.left.closing {
  animation: slideOutLeft 0.2s forwards;
}
.web-notify .notify__cart-container {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.web-notify .notify__cart-container .notify__cart-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.web-notify .notify__cart-container .notify__cart-image {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}
.web-notify .notify__cart-wrapper .notify__cart-name {
  color: #4F5552;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-text);
}
.web-notify .notify__cart-wrapper .notify__cart-fields {
  display: flex;
  align-items: center;
  gap: 8px;
}

.web-notify .notify__cart-wrapper .notify__cart-fields .notify__cart-field {
  display: flex;
  align-items: center;
  gap: 2px;
}

.web-notify .notify__cart-wrapper .notify__cart-fields .notify__cart-field-name {
  color: #77807C;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.web-notify .notify__cart-wrapper .notify__cart-fields .notify__cart-field-value {
  color: #77807C;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-text);
}
.web-notify .notify__cart-wrapper .notify__cart-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.web-notify .notify__cart-wrapper .notify__cart-price .notify__cart-retail-price {
  color: #448569;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-text);
}
.web-notify .notify__cart-wrapper .notify__cart-price .notify__cart-original-price {
  color: #77807C;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-text);
  text-decoration: line-through;
}

.web-notify .notify__cart-quantity {
  color: #5C5F61;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-text);
}
.web-notify .notify__container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.web-notify .notify__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.web-notify .notify__container .notify__close-btn {
  margin-top: 4px;
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: #AEB1B3;
}
.web-notify .notify__container .notify__wrapper .notify__title {
  color: #4F5552;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-text);
}
.web-notify .notify__container .notify__wrapper .notify__message {
  color: #77807C;
  font-size: var(--font-size-text);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-text);
}
.notify__progress {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  animation-name: progressRun;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes progressRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 576px) {
  .web-notify {
    --font-size-text: 12px;
    --line-height-text: 16px;
    --size-icon: 20px;
  }

  .web-notify .notify__cart-container {
    margin-top: 6px;
    min-width: 180px;
  }

  .web-notify .notify__cart-container .notify__cart-wrapper {
    gap: 6px;
  }

  .web-notify .notify__cart-container .notify__cart-image {
    width: 50px;
    height: 50px;
  }

  .web-notify .notify__container .notify__close-btn {
    margin-top: 2px;
  }

  .web-notify .notify__content {
    padding: 6px 8px;
  }

  .web-notify .notify__wrapper {
    gap: 6px;
  }

  .web-notify.right {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .notify__progress {
    display: none;
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(calc(-100% - 18px));
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  @keyframes slideOutRight {
    from {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    to {
      opacity: 0;
      transform: translateX(-50%) translateY(calc(-100% - 18px));
    }
  }
}

details > summary {
  list-style: none;
}
details > summary::marker, /* Latest Chrome, Edge, Firefox */
details > summary::-webkit-details-marker /* Safari */ {
  display: none;
}
button[disabled] {
  opacity: .4;
}
.mr-1 {
  margin-right: 0.25rem;
}
.not-show-scroll::-webkit-scrollbar{
  width: 0;
  padding: 0;
  height: 0;
  background: inherit;
}
.stardust-spinner__spinner {
  animation: stardustSpinner .4s linear infinite;
}
.stardust-spinner__spinner:nth-child(2) {
  animation-delay: .1s;
}
.stardust-spinner__spinner:nth-child(3) {
  animation-delay: .2s;
}
@keyframes stardustSpinner {
  0% {
    transform: translateY(2px);
  }
  50% {
      transform: translateY(-2px);
  }
  100% {
      transform: translateY(2px);
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-size: .875rem;
  word-wrap: break-word;
  opacity: 0;
}
.mce-shim {
  display: none !important;
}

.ql-container {
  box-sizing: border-box;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  -o-tab-size: 4;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: "\2022";
}
.ql-editor ul[data-checked="true"],
.ql-editor ul[data-checked="false"] {
  pointer-events: none;
}
.ql-editor ul[data-checked="true"] > li *,
.ql-editor ul[data-checked="false"] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked="true"] > li::before,
.ql-editor ul[data-checked="false"] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked="true"] > li::before {
  content: "\2611";
}
.ql-editor ul[data-checked="false"] > li::before {
  content: "\2610";
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) ". ";
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) ". ";
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) ". ";
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) ". ";
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) ". ";
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) ". ";
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) ". ";
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) ". ";
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.x-text iframe {
  max-width: 100% !important;
}
button[hidden-when-price-contact=true] {
  display: none;
}
input[disabled] {
  opacity: .4;
}

.x-section {
  position: relative;
  display: grid;
}
.x-section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transform: translateZ(0);
}
.x-section-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.x-section-video-background-volume {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(243,242,238,.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.x-section-video-background-volume-enable,
.x-section-video-background-volume-disable {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav {
  color: rgba(0, 0, 0, .85);
  display: flex;
}
.collapse-menu .collapse-menu {
  height: auto !important;
}
.collapse-menu .menu-item .tag-link, .vertical-menu .menu-item .tag-link, .grid-menu .menu-item .tag-link {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}
.collapse-menu .x-submenu.open {
  display: grid !important;
}
.horizontal-menu .menu-item-hover:hover > .x-submenu {
  display: grid;
}
.x-menu-toggle {
  cursor: pointer;
}
.x-menu-droppable {
  position: fixed;
  display: grid;
  background-color: #fff;
  z-index: 401;
  visibility: hidden;
  transform: translate(100%);
}
.x-menu-droppable.open {
  visibility: visible;
  transform: translate(0);
}
.x-rect {
  width: 100%;
  height: 100%;
}
.x-rect img {
  object-fit: contain;
}
.x-text {
  display: inline-block;
  width: 100%;
  word-break: break-word;
  list-style-position: inside;
}
.x-text .linkText{
  cursor: pointer;
}
.text-dataset-wrapper a {
  color: #1890ff;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-text-decoration-skip: objects;
}
.text-dataset-wrapper img {
  max-width: 100% !important;
}
container {
  display: grid;
}
.container-style {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}
.x-image img{
  position: relative;
}
.menu-item {
  position: relative;
}
.menu-item .tag-link {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  user-select: none;
  position: relative;
}
.grid-menu .x-submenu {
  display: none;
}
.collapse-menu .x-submenu {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  display: none !important;
  box-shadow: none !important;
}
.vertical-menu .x-submenu,
  .horizontal-menu .x-submenu {
    display: none;
    position: absolute;
    min-width: 100px;
    z-index: 9999;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.15);
}
.vertical-menu .menu-item .arrow, .collapse-menu .menu-item .arrow {
  position: absolute;
  right: 0;
  height: 100%;
  min-width: 30px;
  min-height: 30px;
  cursor: pointer;
}
.x-menu-bar .x-member {
  cursor:pointer;
}
.x-loginbar .customer-icon svg {
  height: 100%;
  width: 100%;
}
.x-avatar-member-origin {
  border-radius: 50px;
  margin-right: 6px;
}
.x-avatar-member-origin svg {
  border-radius: inherit;
}
.x-avatar-member-origin img {
  border-radius: inherit;
}
.x-avatar-member-initial {
  text-align: center;
  background: rgb(26,92,255);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
}
.x-loginbar .login-bar-icon {
  cursor: pointer;
  border-radius: 50px;
  margin-right: 6px;
}
.x-loginbar .login-bar-text {
  cursor: pointer;
}
.x-loginbar .member-divider {
  height: 40%;
  rotate: 15deg;
  width: 1px;
  margin: 0px 0.5rem;
}
.x-loginbar .customer-icon {
  margin-right: 0.25rem;
  flex-shrink: 0;
}
.x-member-dropdown {
  position: absolute;
  display: none;
  right: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 300;
}
.input-search--input {
  background: initial;
  border-radius: inherit;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  touch-action: manipulation;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
  color: inherit;
}
.input-search--icon {
  margin: auto;
  cursor: pointer;
}
.input-search--icon svg {
  width: 100%;
  height: 100%;
}
.input-search--wrapper .btn-close {
  display: none;
  cursor: pointer;
  color: #00000040;
  justify-content: center;
}
.input-search--wrapper .btn-close svg {
  width: 100%;
  height: 100%;
  fill: inherit;
  color: inherit;
}
.btn-close svg path {
  fill: inherit;
}
.input-search--wrapper .btn-close:hover {
  color: #00000073;
}
.x-cart-icon {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.x-cart-icon svg {
  width: 100%;
  height: 100%;
}
.x-cart-icon .x-image-cart-icon {
  width: 70%;
  height: 70%;
  object-fit: cover;
}
.dropdown--wrapper,
.select--overlay {
  position: relative;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 0;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  background-color: #fff;
  width: 100%;
  font-size: 16px;
  outline: 0;
}
.dropdown--text,
.select--text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dropdown--content {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  display: grid;
  z-index: 4;
}
.dropdown--style {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.x-swiper {
  position: relative;
  touch-action: pan-y;
  overflow: hidden;
}
.x-swiper-wrapper {
  display: flex;
  transition-property: left, top, transform;
  width: 100%;
  height: auto;
  will-change: transform;
}
.x-swiper-nav-btn{
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.x-swiper-nav-btn.next{
  transform: translate3d(0%, -50%, 0px);
  right: 0%;
}
.x-swiper-nav-btn.prev{
  transform: translate3d(0%, -50%, 0px) rotate(180deg);
  left: 0%;
}
.x-swiper-nav-btn svg, .x-swiper-nav-btn img{
  width: 80%;
  height: 80%;
}
.x-swiper-column .x-swiper-wrapper {
  position: absolute;
  height: 100%;
}
.x-swiper-row .x-swiper-wrapper {
  position: relative;
  height: auto;
}
.x-swiper .x-pagination-wrapper {
  user-select: none;
  position: absolute;
  transition: transform .3s ease, opacity .3s ease;
}
.x-swiper .x-pagination {
  position: absolute;
  transition: transform .3s ease;
}
.x-swiper .x-pagination-bullets {
  display: flex;
  justify-content: center;
}
.x-swiper.x-swiper-row .x-pagination-bullets {
  height: max(9px, 3%);
  left: 50%;
  bottom: 5%;
}
.x-swiper.x-swiper-column .x-pagination-bullets {
  width: max(9px, 1%);
  flex-direction: column;
  top: 50%;
  right: 2%;
}
.x-swiper .x-pagination-bullet {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  transition: scale .1s ease;
  scale: 0;
  background: #eee;
}
.x-swiper.x-swiper-row .x-pagination-bullet {
  height: 100%;
  margin-left: 5px;
  margin-right: 5px;
}
.x-swiper.x-swiper-column .x-pagination-bullet {
  width: 100%;
  margin-top: 3px;
  margin-bottom: 3px;
}
.x-swiper .x-pagination-bullet.active {
  scale: 1;
  background: #4D7DEC;
}
.x-swiper .x-pagination-bullet.prev,
.x-swiper .x-pagination-bullet.next {
  scale: 0.66;
}
.x-swiper .x-pagination-bullet.prev-2,
.x-swiper .x-pagination-bullet.next-2 {
  scale: 0.33;
}
.x-swiper .x-pagination-bar-backdrop {
  display: flex;
}
.x-swiper.x-swiper-row .x-pagination-bar-backdrop {
  width: 90%;
  height: 1%;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}
.x-swiper.x-swiper-column .x-pagination-bar-backdrop {
  height: 90%;
  width: 5px;
  right: 1%;
  bottom: 50%;
  transform: translateY(50%);
  flex-direction: column;
}
.x-swiper .x-pagination-bar {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.x-swiper .x-pagination-bar .x-bar-active {
  height: 100%;
  width: 100%;
  transition-property: left, top, width, height;
  transition-timing-function: ease, ease, linear, linear;
}
.x-swiper .x-pagination-fraction {
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%)
}
.x-slide {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.x-slide.active .x-slide-wrapper {
  scale: 1;
  filter: blur(0px);
}
.x-slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.x-gc-name {
  text-align: center;
}
.x-gc-thumbnail {
  overflow: hidden;
}
.x-gc-thumbnail img {
  object-fit: contain;
}
.button-arrow {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-arrow svg {
  width: 35%;
  height: 35%;
}
.button-arrow svg, .button-arrow img {
  max-width: 100%;
  max-height: 100%;
}
.button-arrow:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.slider-product--control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.slider-product--next {
  right: 30px;
}
.slider-product--prev {
  left: 30px;
}
.slider-product--prev svg, .slider-product--prev img {
  scale: -1 1;
}
slider-product:hover .button-arrow {
  opacity: 1;
}
slider-product .button-arrow:hover {
  opacity: .6;
}
@-webkit-keyframes hover-circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes hover-circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@-webkit-keyframes hover-shine {
  100% {
    left: 125%;
  }
}
@keyframes hover-shine {
  100% {
    left: 125%;
  }
}
@-webkit-keyframes hover-flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hover-flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
.x-frame-google-map iframe {
  height: 100%;
  width: 100%;
}
.x-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.x-button-wrapper:active {
  transform: translateY(2px);
  transition: transform .2s linear;
}
.x-button {
  width: 100%;
  word-break: break-word;
}
.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  height: 85%;
  margin-left: 5px;
  background-color: white;
}
.google-logo svg {
  height: 70%;
  width: 70%;
}
.slider-product--item {
  overflow: hidden;
}
.grid-product--wrapper {
  touch-action: pan-y;
  will-change: transform;
}
.grid-product--inner {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.grid-product--inner img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s, filter 0.3s, opacity 0.2s ease;
}
.grid-product--info {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  background: transparent;
}
.grid-product--info > * {
  flex-shrink: 0;
}
.grid-product--category {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-product--category:empty:before {
  content: "\200b"
}
.grid-product--title {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-product--price {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.grid-product--origin-price {
  font-size: 12px;
  color: #777;
  text-decoration: line-through;
  white-space: nowrap;
}
.grid-product--origin-price.no-decor {
  text-decoration: unset;
}
.grid-product--item {
  border-style: solid;
}
.grid-product--quick-view {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  background: #fff;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .slider-product--item:hover .grid-product--quick-view:hover {
    opacity: 0.7;
  }
  .slider-product--item:hover .grid-product--quick-view {
    opacity: 1;
    transition: opacity .2s ease-in-out;
  }
  .grid-product--quick-view {
    opacity: 0;
  }

  .slider-product--item:hover .grid-product--img-swap {
    opacity: 1;
  }

  .slider-product--item:hover .grid-product--img-swap-first {
    opacity: 0;
  }

  .slider-product--item.zoom:hover .grid-product--inner img {
    transform: scale(1.2);
  }

  .slider-product--item.blur:hover .grid-product--inner img {
    filter: blur(2px);
  }

  .slider-product--item.border:hover {
    outline: 1px solid #000;
  }
}
.grid-product--divider {
  width: 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin: 10px 0;
  max-width: 100%;
}
.grid-product--img-swap {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grid-product--btn-add-cart {
  position: relative;
  display: block;
  border-style: solid;
  overflow: hidden;
  width: 100%;
  padding: 8px 16px;
  background-color: #000;
  text-align: center;
  border-width: 0;
  color: #fff;
  margin-top: auto;
  font-size: 15px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  user-select: none;
}
.grid-product--btn-add-cart:hover {
  opacity: 0.7 !important;
}
.grid-product--btn-add-cart span {
  margin: 0 auto;
  overflow: hidden;
  display: block;
}
.button-arrow {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-arrow svg {
  width: 35%;
  height: 35%;
}
.button-arrow svg, .button-arrow img {
  max-width: 100%;
  max-height: 100%;
}
.button-arrow:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
}
.slider-product--control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.slider-product--next {
  right: 30px;
}
.slider-product--prev {
  left: 30px;
}
.slider-product--prev svg, .slider-product--prev img {
  scale: -1 1;
}
slider-product:hover .button-arrow {
  opacity: 1;
}
slider-product .button-arrow:hover {
  opacity: .6;
}
.grid-product--quantity {
  margin-top: 12px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  padding: 0 6px;
}
.grid-product--quantity-minus, .grid-product--quantity-plus {
  padding: 5px 0;
  cursor: pointer;
  color: #000;
  width: 24px;
  display: flex;
}
.grid-product--quantity-minus {
  color: #999;
}
.grid-product--quantity-input {
  flex: 1 1 0;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  background-color: #fff;
  color: #000;
  padding: 0;
  text-align: center;
  outline: 0;
}
.product--ribbons-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: wrap;
  gap: 5px;
  color: #fff;
  font-size: 12px;
}
.product--ribbon {
  min-width: 52px;
  padding: 2px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background-color: #000;
  border: 1px solid #000;
  border-style: solid;
}
.rate {
  display: flex;
}
.rate-star {
  flex: 1;
}
.rate-star-first, .rate-star-second {
  display: flex;
  align-items: center;
}
.rate-star-first.half {
  clip-path: inset(0 0 0 50%);
}
.rate-star-second {
  position: absolute;
  top: 0;
  left: 0;
}
.rate-star-second.half {
  clip-path: inset(0 50% 0 0);
}
.rate svg {
  width: 100%;
  height: 100%;
}
.product-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  display: grid;
  pointer-events: none;
}
.product-overlay *[on\:click]{
  pointer-events: auto;
}
.x-figure-text .title{
  color: #1a1a1a;
  text-align: center;
}
.x-countdown-circle {
  user-select: none;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 50px;
  color: #fff;
}
.x-days-container, .x-hours-container, .x-minutes-container, .x-seconds-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.1);
  border: 5px solid rgba(255,255,255,0.3);
  width: 120px;
  height: 120px;
  border-radius: 99px;
}
.x-days, .x-hours, .x-minutes, .x-seconds {
  font-size: 30px;
  margin: 10px 0;
}
.x-countdown-flipdown {
  user-select: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateZ(0px);
}
.x-countdown-flipdown .x-bloc-time {
  position: relative;
  text-align: center;
}
.x-countdown-flipdown .x-figure:nth-child(1) {
  margin-right: 5px;
}
.x-countdown-flipdown .x-figure:nth-child(2) {
  margin-right: 0;
}
.x-countdown-flipdown .x-dots {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  row-gap: 20px;
}
.dots-item-top, .dots-item-bottom {
  border-radius: 50%;
  background-color: #151515;
}
.x-countdown-flipdown .x-figure {
  position: relative;
  float: left;
  height: 80px;
  line-height: 80px;
  width: 50px;
  background-color: #151515;
  font-size: 50px;
}
.x-countdown-flipdown .x-figure > span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: 600;
}
.x-countdown-flipdown .x-figure .top {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  z-index: 3;
  background-color: #151515;
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  transform: perspective(200px) rotateX(180deg);
  height: 50%;
  overflow: hidden;
  backface-visibility: hidden;
}
.x-figure .top, .x-figure .bottom-back {
  border-bottom: 1px solid #151515;
}
.x-figure .top:after, .x-figure .bottom-back:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.x-countdown-flipdown .x-figure .top-back {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  z-index: 4;
  bottom: 0;
  background-color: #151515;
  color: inherit;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transform: perspective(200px) rotateX(180deg);
  height: 50%;
  overflow: hidden;
  backface-visibility: hidden;
}
.x-countdown-flipdown .x-figure .top-back span {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
}
.x-countdown-flipdown .x-figure .bottom {
  z-index: 1;
  border-radius: inherit;
}
.x-countdown-flipdown .x-figure .bottom::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, .02);
}
.x-countdown-flipdown .x-figure .bottom-back {
  z-index: 2;
  top: 0;
  height: 50%;
  overflow: hidden;
  background-color: #151515;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.x-countdown-flipdown .x-figure .bottom-back span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.x-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}
.x-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.grid-product--selects {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  max-width: calc(100% - 3rem);
  width: 100%;
  padding: 0.75rem 0.7rem;
  visibility: visible;
  transform: translate3d(-50%, 20px, 0);
  transition: all 0.3s;
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), hsla(0, 0%, 100%, 0.4);
  border-radius: 8px;
  opacity: 0;
}
.grid-product--selects p {
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
}
.thumbnail-wrapper:hover .grid-product--selects {
  opacity: 1;
}
.option-select__item span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 52px;
  min-height: 35px;
  padding: 0 5px;
  border-radius: 0.5rem;
  background-color: #fff;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  cursor: pointer;
}
.option-select__item.disabled span, .option-color__item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.option-color__item.disabled .attr-color, .option-color__item.disabled .attr-text, .option-color__item.disabled .attr-image {
  opacity: 0.3;
}
.option-select__item:not(.disabled):hover span {
  background: #d8d8d8;
  color: #fff;
}
.options-color{
  gap: 5px;
}
.option-color__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}
.option-color__item.active {
  border-color: #000
}
.option-color__item .attr-item:not(.attr-text) {
  display: block;
  width: 32px;
  height: 18px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
/* */
.post-list__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
}
.post-list__container img {
  transition: transform .3s, outline .3s, display .3s;
  overflow: hidden;
}
.post-list__container .post-list__image_swap {
  display: none;
}
.post-list__inner img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform .3s, display .3s;
}
.post-list__publish_date {
  margin-bottom: 12px;
}
.post-list__title {
  font-size: 20px;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}
.post-list__description {
  word-break: break-word;
  overflow: hidden;
  line-height: 1.5;
  max-height: 100%;
  font-size: 14px;
  color: #363f4d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.post-list__read-button {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 186px;
  height: 34px;
}
.post-list__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .55);
  pointer-events: none;
}
.post-list__content {
  padding: 24px;
}
.post-list__nav {
  margin-top: 16px;
}
.post-list__btn, .post-list__num {
  margin: 0 3px;
  min-width: 36px;
  min-height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-list__btn.disable {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}
.post-list__num.active {
  color: rgb(56, 74, 211);
}
.slider-post--btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-post--btn svg {
  width: 24px;
  height: 24px;
}
.slider-post--btn path {
  fill: #000;
}
.slider-post--prev {
  left: 5px;
}
.slider-post--next {
  right: 5px;
}
.slider-post__wrapper {
  will-change: transform;
  touch-action: pan-y;
  transition: transform 400ms cubic-bezier(0.25, 1, .5, 1) 0s;
}
@media (hover: hover) and (pointer: fine) {
  post-list-item.zoom:hover .post-list__container img {
    transform: scale(1.3);
  }

  post-list-item.border:hover {
    outline: 1px solid #000;
  }

  post-list-item.swap:hover .post-list__container img.post-list__image {
    display: none;
  }

  post-list-item.swap:hover .post-list__container img.post-list__image_swap {
    display: block;
  }
}
/* */
form {display: grid;}
.input-label {
  width: 100%;
  word-break: break-word;
  display: inline-block;
  line-height: 1;
}
.input-wrapper {
  display: flex;
  flex: 1;
  position: relative;
}
.input-wrapper input, .input-wrapper textarea {
  display: block;
  width: 100%;
  border: 0;
  font-size: 14px;
  outline: 0;
  font-family: inherit;
}
.x-input-date input {
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: default;
}
.x-input-date .input-datetime-placeholder{
  position: absolute;
  top: 0;
  padding-left: 12px;
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  z-index: -1;
}
.x-input-date input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  text-align: -webkit-left;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#RECT-nnnggb41 {
  display: none;
}
#CONTAINER-4e0ze8v3 {
  display: none;
}
#RECT-a9c2p679 {
  display: none;
}
#CONTAINER-23xgt3dk {
  display: none;
}
.x-cart-droppable {
  position: fixed;
  display: grid;
  background-color: #fff;
  z-index: 401;
  visibility: hidden;
  transform: translate(100%);
}
.x-cart-droppable.open {
  visibility: visible;
  transform: translate(0);
}
.x-line.horizontal{
  width: 100%;
  padding-bottom: 2px;
  padding-top: 1px;
}
.x-line.vertical {
  height: 100%;
  padding-right: 2px;
  padding-left: 1px;
}
.horizontal .line-container {
  border-left-width: 0 !important;
  border-right-width: 0 !important;
  border-bottom-width: 0 !important;
}
.vertical .line-container {
  border-right-width: 0 !important;
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
  height: 100%;
}
.cart-empty {
  font-size: 16px;
  line-height: 25.6px;
  text-align: center;
}
.dummy-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #d1d1d1 0%, #fff 50%, #d1d1d1 100%);
  background-size: 200% auto;
  background-position: 0 100%;
  animation: gradient 2s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  border-radius: 4px;
  display: flex
}
.img-dummy {
  height: 80%;
  aspect-ratio: 1;
  margin: auto 12px;
}
.info-dummy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.title-dummy {
  height: 24px;
  width: 50%;
}
.descript-dummy {
  height: 20px;
  width: 40%;
}
.dummy-el {
  background: #c8c8c8;
  border-radius: 2px;
}
.is-show-row .dummy-wrapper {
  padding: 10px;
  flex-direction: column;
}
.is-show-row .img-dummy {
  height: 55%;
  margin: 0;
}
@keyframes gradient {
  0%   { background-position: 0 0; }
  100% { background-position: -200% 0; }
}
.quantity-input__wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.quantity__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.quantity__button[name="plus"] {
  right: 0;
}

.quantity__button svg {
  width: 9.3px;
}

.quantity__input {
  appearance: textfield;
  -webkit-appearance: none;
  height: 100%;
  width: 100%;
  border: none;
  padding: 0;
  font-size: 16px;
  color: #000;
  text-align: center;
  outline: 0;
  font: inherit;
}

.quantity__input::-webkit-inner-spin-button, .quantity__input::-webkit-outer-spin-button {
  height: var(--spinner-height)
}
.x-popup-droppable {
  position: fixed;
  z-index: 1000;
  visibility: hidden;
  display: none;
}
.x-popup-droppable.open {
  visibility: visible;
  display: grid;
}
.attr--item {
  padding: 8px 15px;
}
.attr--item.primary {
  padding: 0;
}
.attr--item img {
  object-fit: cover;
  display: block;
}
.attr--item.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.attr--item .tooltip {
  z-index: -1;
  white-space: nowrap;
}
.attr--item:hover .tooltip {
  opacity: 1;
  z-index: 100;
  min-width: 30px;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  top: auto;
  bottom: calc(100% + 12px);
  left: calc(50% );
  transform: translateX(-50%);
  font-size: 12px;
}
.attr--item:hover .tooltip:after {
  border-style: solid;
  border-width: 3px 2.5px 0 2.5px;
  border-color: #000 transparent transparent transparent;
  background: #000;
  content: "";
  height: 8px;
  position: absolute;
  transform: rotate(45deg);
  width: 8px;
  left: calc(50% - 6px);
  bottom: -4px;
}
attribute select {
  background: transparent;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  -o-appearance:none;
}
attribute .chevron {
  display: flex;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
}
