.ajax-progress--fullscreen {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transform: none !important;
  margin: 0;
  background-color: var(--clear-bg-hover) !important;
  border-radius: 0 !important;
  border: none !important;
  border: none;
  border-radius: 0;
}
.ajax-progress--fullscreen .ajax-progress__throbber--fullscreen {
  width: 200px;
  height: 200px;
  -webkit-animation: none;
          animation: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ajax-progress--fullscreen img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-animation: none;
          animation: none;
}

.ajax-progress {
  position: absolute;
  z-index: 1000;
}
.ajax-progress.ajax-progress--fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.ajax-progress.ajax-progress--throbber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ajax-progress__throbber {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: var(--mess-ajax-throbber-color, #000);
  line-height: 0;
  font-size: 0;
}
.ajax-progress__throbber--fullscreen {
  width: 60px;
  height: 60px;
}

.mess-ajax-throbber {
  -webkit-animation: none !important;
          animation: none !important;
  border: 0 !important;
  border-right: 0 !important;
  background: transparent !important;
  position: relative;
  overflow: visible;
}

.ajax-progress__throbber .mess-ajax-throbber__svg,
.ajax-progress__throbber--fullscreen .mess-ajax-throbber__svg,
.ui-dialog .ajax-progress__throbber .mess-ajax-throbber__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mess-ajax-throbber__base path {
  fill: none !important;
  opacity: 0 !important;
}

.mess-ajax-throbber__stroke path {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  will-change: stroke-dashoffset;
  stroke-dasharray: var(--mess-path-length, 2000);
  stroke-dashoffset: var(--mess-path-length, 2000);
  -webkit-animation: mess-ajax-draw 4.2s linear 1 forwards !important;
          animation: mess-ajax-draw 4.2s linear 1 forwards !important;
  -webkit-animation-delay: calc(var(--mess-path-index, 0) * 140ms) !important;
          animation-delay: calc(var(--mess-path-index, 0) * 140ms) !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .mess-ajax-throbber__stroke path {
    stroke-width: 0.5px;
  }
}
@-webkit-keyframes mess-ajax-draw {
  0% {
    stroke-dashoffset: var(--mess-path-length, 2000);
    opacity: 1;
  }
  75% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes mess-ajax-draw {
  0% {
    stroke-dashoffset: var(--mess-path-length, 2000);
    opacity: 1;
  }
  75% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mess-ajax-throbber__stroke path {
    -webkit-animation: none;
            animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}
.throbber {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.throbber img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-animation: none;
          animation: none;
}

.ajax-progress__message,
.ajax-progress .message {
  font-size: 12px;
  color: var(--text-primary, #000);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .ajax-progress__message,
.ajax-progress .message {
    font-size: 13.125px;
  }
}
@media (min-width: 1024px) {
  .ajax-progress__message,
.ajax-progress .message {
    font-size: 13.125px;
  }
}
@media (min-width: 1440px) {
  .ajax-progress__message,
.ajax-progress .message {
    font-size: 13.125px;
  }
}

.add-to-cart .ajax-progress,
.add-to-wishlist .ajax-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.cart-block--contents .ajax-progress {
  margin: 20px auto;
  text-align: center;
}

.views-element-container {
  position: relative;
}
.views-element-container .ajax-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.view-product-catalog.is-loading .view-content {
  opacity: 0.5;
  pointer-events: none;
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}
body.show-ajax-loaders .ajax-progress,
body.show-ajax-loaders .ajax-progress-throbber {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.loading-overlay .throbber {
  width: 60px;
  height: 60px;
}
/*# sourceMappingURL=ajax-loaders.css.map */