#productpage .variant-picker {
  display: flex;
  gap: 12px;
}

#productpage .variant-picker img {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

#productpage .variant-picker .image-wrap {
  background: #ededed;
  border-radius: 4px;
  overflow: hidden;
}

#productpage .variant-picker .variant-item {
  width: calc(100% / 4);
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: solid 2px #fff;
}

#productpage .variant-picker .variant-item:hover {
  text-decoration: none !important;
}

#productpage .variant-picker .variant-item .title { 
  font-weight: 700;
  color: #000;
  text-decoration: none !important;
}

#productpage .variant-picker .variant-item .price {
  font-size: 14px;
  color: #000;
  margin-top: auto;
  text-decoration: none !important;
}  

#productpage .variant-picker .variant-item.active {
  border: solid 2px #9A7B5B;
}

#productpage .variant-picker .variant-item.maatwerk {
  background: transparent;
  border: dashed 2px #e2e2e2;
}


#productpage .variant-picker .variant-item.maatwerk .image-wrap {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#productpage .variant-picker .variant-item.maatwerk .maatwerk-link {
  color: #9A7B5B;
  text-decoration: underline;
  font-weight: 700;
  margin-top: auto;
}

#productpage .variant-picker .variant-item:hover .title,
#productpage .variant-picker .variant-item:hover .subtitle,
#productpage .variant-picker .variant-item:hover .price {
  text-decoration: none !important;
}

#productpage #color-options .checkboxes {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: -4px;
  justify-content: space-between;
}

#productpage #color-options .checkboxes .image-radio {
  padding: 4px;
}

#productpage #color-options {
  padding-top: 12px;
  padding-bottom: 32px;
}

@media only screen and (max-width: 768px) {
  #productpage .variant-picker {
    flex-wrap: wrap;
  }

  #productpage .variant-picker .variant-item {
    width: calc(100% / 2 - 6px); 
  }

  #productpage .variant-picker .variant-item .image-wrap,
  #productpage .variant-picker .variant-item.maatwerk .image-wrap {
    height: 140px;
  }

  #productpage #color-options .checkboxes {
    justify-content: flex-start;
  }
}

.product-info-specs {
  padding-top: 48px;
  padding-bottom: 48px;
}

.product-info-specs .container {
  display: flex;
  gap: 32px;
}

.product-info-specs .container:before, 
.product-info-specs .container:after {
  display: none !important;
}

.product-info-specs .product-description,
.product-info-specs .module-specs{
  width: 50%;
}

.product-info-specs .module-specs .spec-table {
  margin-top: 24px;
}

.product-info-specs .title-small {
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .product-info-specs .container {
    flex-direction: column;
  }

  .product-info-specs .product-description,
  .product-info-specs .module-specs{
    width: 100%;
  }

  .product-info-specs {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}