.north-bricks-product-options {
  --selection-color: #000;
}
.north-bricks-product-options .north-bricks-option {
  display: flex;
  flex-direction: column;
}
.north-bricks-product-options .north-bricks-option .north-bricks-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.north-bricks-product-options
  .north-bricks-option
  .north-bricks-option-values
  .north-bricks-option-value {
  cursor: pointer;
  position: relative;
}
.north-bricks-product-options .north-bricks-option-value[data-is-disabled] {
  opacity: 0.5;
  display: none;
  cursor: not-allowed;
}
.north-bricks-product-options
  .north-bricks-option-type-text
  .north-bricks-option-value,
.north-bricks-product-options
  .north-bricks-option-type-size
  .north-bricks-option-value {
  align-items: center;
  border-width: 0;
  justify-content: center;
  padding: 0.5em 1em;
  text-align: center;
}
.north-bricks-product-options
  .north-bricks-option-type-text
  .north-bricks-option-value[data-is-selected],
.north-bricks-product-options
  .north-bricks-option-type-size
  .north-bricks-option-value[data-is-selected] {
  background-color: var(--selection-color);
  color: #fff;
}
.north-bricks-product-options
  .north-bricks-option-type-color
  .north-bricks-option-value {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.north-bricks-product-options
  .north-bricks-option-type-color
  .north-bricks-option-value[data-is-selected] {
  border: 3px solid var(--selection-color);
}
.north-bricks-product-options
  .north-bricks-option-type-image
  .north-bricks-option-value {
  height: 100px;
  width: 100px;
  border-radius: 10px;
  background-size: cover;
}
.north-bricks-product-options
  .north-bricks-option-type-image
  .north-bricks-option-value[data-is-selected] {
  border: 3px solid var(--selection-color);
}
