.vg-product-variants {
  margin: 13px 0 12px;
  padding: 12px 13px;
  border: 1px solid #e4ece7;
  border-radius: 11px;
  background: #fbfdfc;
}

.vg-product-variants__parameter + .vg-product-variants__parameter {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid #edf2ef;
}

.vg-product-variants__label {
  margin: 0 0 7px;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 700;
  color: #24322a;
}

.vg-product-variants__items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.vg-product-variants__item {
  min-width: 34px;
  height: 31px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e2dc;
  border-radius: 7px;
  background: #fff;
  color: #26332c;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

a.vg-product-variants__item:hover {
  color: #138f59;
  border-color: #2ab878;
  box-shadow: 0 3px 10px rgba(18, 143, 89, .10);
  transform: translateY(-1px);
}

.vg-product-variants__item.is-current {
  border-color: #16a463;
  background: #eefaf4;
  color: #0d8a51;
  box-shadow: inset 0 0 0 1px rgba(22, 164, 99, .10);
}

.vg-product-variants__item.is-unavailable,
.vg-product-variants__item.is-disabled {
  position: relative;
  color: #a4ada8;
  background: #f5f7f6;
  border-color: #e4e8e6;
  cursor: not-allowed;
}

.vg-product-variants__item.is-unavailable:after,
.vg-product-variants__item.is-disabled:after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  background: #aeb7b2;
  transform: rotate(-12deg);
  transform-origin: center;
}

.vg-product-variants__item.is-disabled {
  opacity: .58;
}

@media (max-width: 767px) {
  .vg-product-variants {
    margin: 11px 0 10px;
    padding: 11px;
    border-radius: 10px;
  }

  .vg-product-variants__parameter + .vg-product-variants__parameter {
    margin-top: 10px;
    padding-top: 9px;
  }

  .vg-product-variants__items {
    gap: 5px;
  }

  .vg-product-variants__item {
    min-width: 36px;
    height: 33px;
    padding: 0 9px;
    font-size: 12px;
  }
}
