/* Custom variation buttons */
.variations-wkp select:not(#pa_installation_kits) {
  display: none;
}
.variations-wkp td.buttons::before {
  content: none !important;
}
.variations-wkp th.label {
  padding-bottom: 4px !important;
}
.variations-wkp th.label::after {
  content: '*';
  margin-left: 6px;
}

.variations-wkp td.value {
  margin-bottom: 16px !important;
}
.variations-wkp .woocommerce-variation-add-to-cart .quantity {
  display: none !important;
}

.wc-variation-row-fade {
  opacity: .5;
  pointer-events:none;
}

.wc-variation-radios {
  display: flex;
  gap: 4px;
}

.wc-variation-radios input[type=radio] {
  display: none;
}

.wc-variation-radios label {
  cursor: pointer;
	display: inline-block;
	padding: 8px 23px;
	border-radius: 4px;
	border: 1px solid #9d9797;
	font-size: 16px;
  font-weight: 400 !important;
  transition: background-color 250ms, color 250ms;
}

.wc-variation-radios input[type="radio"]:checked + label,
.wc-variation-radios input[type="radio"]:hover + label {
	background-color: #fff;
	color: #23262a;
}

.variations-wkp .variations_button > div {
  display: flex;
  align-items: center;
  gap: 2rem;

  .variations_button_mandatory {
    display: block !important;
  }
}

/* Custom product infos */
.wc-custom-infos h2 {
  color: #fff;
}

.wc-custom-infos__desc p {
  color: #7B9298;
  font-size: 1.375rem;
}

/* Custom product infos toggle */
.wc-custom-infos__tabs {
  display: flex;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fff;
}

.wc-custom-infos__tabs button {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 1rem;
  padding: .5rem 1rem !important;
}

.wc-custom-infos__tabs button.active {
  border-bottom: 5px solid #7B9298 !important;
}

.wc-custom-infos .custom_data {
  display: none;
}

.wc-custom-infos .custom_data.active {
  display: flex;
}

/* Custom product data sheet */
.wc-custom-infos__datasheet tr td {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #fff !important;
  color: #fff !important;
}

/* Custom product accessories */
.wc-custom-infos__slides {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  width: 100%;
}

.wc-custom-infos__slide {
  display: flex;
  flex-direction: column;
}

.wc-custom-infos__slide figure {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.wc-custom-infos__slide img {
  object-fit: cover !important;
  object-position: center !important;
  height: 100% !important;
  width: 100% !important;
}

.wc-custom-infos__slide div{
  background-color: #fff !important;
  color: #23262a;
  font-size: .75rem;
  padding: 4px;
  text-align: center;
}

@media (min-width: 380px) {
  .wc-custom-infos__slides {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .wc-custom-infos__slides {
    grid-template-columns: repeat(3, 1fr);
  }
}