.custom-product-options {
	margin-bottom: 24px;
}
.custom-product-options .key-option {
	display: flex;
  justify-content: space-between;
  border-top: 1px solid #E5E6E6;
  padding: 8px 0;
}
.custom-product-options .key-option:last-child {
	border-bottom: 1px solid #E5E6E6;
}
.custom-product-options .key-option > label {
	font-size: 15px;
  font-weight: 600;
  margin: 0;
  width: 50%;
  align-self: center;
}
.custom-product-options .key-option > div {
  position: relative;
	width: 50%;
  cursor: pointer;
}
.custom-product-options .key-option > div span.selected {
  display: block;
  width: 100%;
  padding: 8px 0;
	background-color: #E5E6E6;
  color: #000000;
  font-weight: 500;
  text-align: center;
}
.custom-product-options .key-option.active > div span.selected {
	position: relative;
  z-index: 2;
}
.custom-product-options .key-option span.selected.loadedFromFITCode {
	background-color: #7DB952;
  color: #ffffff;
}
.custom-product-options .key-option span.selected.loadedFromFITCode span.caret-down {
	border-color: #ffffff transparent transparent transparent;
}
.custom-product-options .key-option > div span span.caret-down {
	position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-10px, -50%);
  width: 0;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #000000 transparent transparent transparent;
  pointer-events: none;
}
.custom-product-options .key-option > div ul {
  position: absolute;
  background: #ffffff;
  width: 100%;
  display: none;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}
.custom-product-options .key-option > div ul li {
	border-bottom: 1px solid #E5E6E6;
  padding: 6px;
  text-align: center;
  transition: 0.2s ease;
  cursor: pointer;
}
.custom-product-options .key-option > div ul li.active {
  font-weight: 600;
}
.custom-product-options .key-option > div ul li:hover {
	background: #E5E6E6;
  font-weight: 600;
}
.custom-product-options .key-option.active > div ul {
	display: block;
  z-index: 1;
}

/* Loading fade in to prevent dom warp */
.product-configure-variants #product_configure_variants,
.product-configure-variants [for="product_configure_variants"] {
  animation: load-animation 0.2s 0.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes load-animation {
	0% {
  	opacity: 0;
  }
  100% {
    opacity: 1;
  }
}