.barrier-configurator .bc__radio {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.barrier-configurator .bc__radio-label {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  color: var(--text-black);
  cursor: pointer;
}
.barrier-configurator .bc__radio-input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.125rem solid var(--border-gray);
  border-radius: 1.5rem;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}
.barrier-configurator .bc__radio-input:checked {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3e%3ccircle cx='8' cy='8' r='8' fill='%232D333C' /%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

@media screen and (min-width: 450px) {
  .barrier-configurator .bc__radio-input {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.09375rem;
  }
  .barrier-configurator .bc__radio-label {
    font-weight: 600;
  }
}
@media screen and (min-width: 601px) {
  .barrier-configurator .bc__radio-input {
    font-size: 1.5rem;
  }
}
