.lbl-product-variants {
  margin: 1rem 0;
}

.lbl-product-variants__label {
  margin-bottom: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: #232323;
}

.lbl-product-variants__list {
  display: flex;
  gap: .5rem;
  max-width: 100%;
  overflow-x: auto;
  padding: .125rem .125rem .5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.lbl-product-variants__item {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.lbl-product-variants__item:hover,
.lbl-product-variants__item:focus {
  border-color: #232323;
  box-shadow: 0 0 0 1px #232323;
  outline: 0;
}

.lbl-product-variants__item.is-active {
  border-color: #232323;
  box-shadow: 0 0 0 2px #232323;
}

.lbl-product-variants__item.is-out-of-stock {
  opacity: .55;
}

.lbl-product-variants__item.is-out-of-stock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 1px;
  background: #232323;
  transform: rotate(-35deg);
}

.lbl-product-variants__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lbl-product-variants__placeholder {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
}
