input[type="radio"]+label span {
  transition: background .2s,
    transform .2s;
}

input[type="radio"]+label span {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #BBC3C9;
  background: #fff;
}

input[type="radio"]:checked+label span {
  box-shadow: 0px 0px 0px 6px white inset;
  background: #000;
}


input[type="radio"]:checked+label {
  color: #000;
}

input:disabled {
  background-color: #eff0f1;
}

.select-custom-wrapper {
  position: relative;
}

.select-custom {
  appearance: none;
  /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-custom-wrapper::after {
  content: '';
  background: url('/img/register/icons/chevron-down-regular.svg') no-repeat center;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}