color-swatch .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

color-swatch .label {
  font-weight: bold;
  margin-bottom: 0.9375rem;
}

color-swatch img {
  border-radius: 50%;
  opacity: 0.75;
}

color-swatch .active img,
color-swatch img:hover {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  color-swatch .label {
    font-size: 13px;
  }
}
