/** Shopify CDN: Minification failed

Line 88:1 Expected "}" to go with "{"

**/
.card-color-swatches {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  gap: 0.2rem;
  margin-top: 0.8rem;
}

.card-color-swatches__swatch {
  display: block;
  flex: 0 0 1.5rem;
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex: 0 0 2.8rem;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  text-decoration: none;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.card-color-swatches__swatch::before {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  content: '';
  border: 1px solid rgba(var(--color-foreground), 0.22);
  border-radius: 50%;
  background-color: var(--card-swatch-color, #c9c7c2);
  background-image: var(--card-swatch-image, none);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card-color-swatches__swatch:hover {
.card-color-swatches__swatch:hover::before {
  border-color: rgba(var(--color-foreground), 0.55);
  transform: translateY(-1px);
}

.card-color-swatches__swatch:focus-visible {
  outline: 0;
  border-color: rgb(var(--color-foreground));
  box-shadow: 0 0 0 2px rgb(var(--color-background)), 0 0 0 3px rgba(var(--color-foreground), 0.7);
  outline: 1px solid rgba(var(--color-foreground), 0.7);
  outline-offset: -0.4rem;
}

@media screen and (max-width: 749px) {
  .card-color-swatches {
    gap: 0.5rem;
    z-index: 5;
    gap: 0;
    margin-top: 0.7rem;
  }

  .card-color-swatches__swatch {
    z-index: 6;
    flex-basis: 3.2rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-color-swatches__swatch {
  .card-color-swatches__swatch::before {
    transition: none;
  }
}