/* Electrabike optional variant switcher v1 */

.eb-product-card {
  position: relative;
}

.eb-product-card.is-variant-loading {
  min-height: 360px;
  pointer-events: none;
}

.eb-product-card.is-variant-loading::before {
  position: absolute;
  z-index: 100;
  inset: 0;
  background: rgba(255, 255, 255, .72);
  content: "";
  opacity: 1;
  backdrop-filter: blur(1.5px);
}

.eb-product-card.is-variant-loading::after {
  position: absolute;
  z-index: 101;
  top: min(42vh, 430px);
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 2px solid rgba(169, 116, 88, .22);
  border-top-color: #a97458;
  border-radius: 50%;
  content: "";
  animation: eb-variant-switcher-spin .7s linear infinite;
}

@keyframes eb-variant-switcher-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .eb-product-card.is-variant-loading::after {
    top: 300px;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eb-product-card.is-variant-loading::after {
    animation-duration: 1.4s;
  }
}
