.radio-label {
  cursor: pointer;
  padding: 5px 10px 5px 40px;
  position: relative;
}

.radio-label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid white;
}

.radio-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform-origin: center;
}

.radio-label:has(input:checked)::after {
  opacity: 1;
}

.radio-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

#zo-calculator-fields {
  padding: 40px 60px;
  background: #1d1d1d;
  color: white;
}

.calculator-field-wrap {
  padding-bottom: 20px;
  position: relative;
}

.calculator-field-wrap:has(.calc-is-error)::after {
  content: "\f338";
  font-family: bootstrap-icons !important;
  position: absolute;
  top: 22px;
  left: -25px;
  color: var(--color-primary);
}

.calculator-field-wrap > .h5 {
  color: white;
  font-size: 27px;
  width: 100%;
  margin-top: 0;
  padding-top: 20px;
}

.input-label {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 180px;
  position: relative;
  padding-right: 20px;
}

.input-label > input {
  background: #1d1d1d;
  color: white;
  border: 2px solid white;
  height: 50px;
  padding: 3px 40px 3px 10px;
  line-height: 1em;
  display: flex;
  align-items: end;
}

.input-label:not(.noafter)::after {
  content: "m";
  position: absolute;
  right: 36px;
  font-size: 16px;
  color: white;
  bottom: 0;
  height: 42px;
  display: flex;
  align-items: center;
}

.calculator-field-wrap.cfw-row {
  display: flex;
  flex-wrap: wrap;
}

#form-results {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 35px;
  min-height: 1em;
}

#form-results .error {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: bold;
}

#go_to_form {
  display: none;
}

#form-btns.form-ready #go_to_form {
  display: inline-flex;
}

#form-btns:not(.form-ready) #bereken-prijs {
  margin-inline-start: 0;
}

#form-btns.form-ready #bereken-prijs {
  background-color: #1d1d1d;
}

/* form-btns
go_to_form
bereken-prijs */
.choice-select {
  position: relative;
}

.clear-choice {
  position: absolute;
  left: -37px;
  user-select: none;
  z-index: -1;
  opacity: 0;
  height: 100%;
  background: none;
  color: white;
  border: none;
  font-size: 25px;
}

.choice-wrap {
  min-width: 270px;
}

.nondefault .clear-choice {
  user-select: initial;
  z-index: 1;
  opacity: 1;
}

.details-wrap {
  margin-bottom: 10px;
}
.details-wrap a {
  text-decoration: underline;
}

.details-wrap a:hover,
.details-wrap a:focus {
  text-decoration: none;
  color: #000000;
}
/**
NEW
**/
#zo-calculator-fields > form {
  overflow-x: hidden;
}
#zo-calculator-steps {
  width: 100%;
  display: flex;
  transition: transform 0.3s ease-in;
}
#zo-calculator-steps .step {
  flex-shrink: 0;
  width: 100%;
  padding: 0 12px;
}
#zo-calculator-steps .step h5 {
  color: white;
}
#zo-calculator-steps .type-select-inner {
  flex-direction: column;
  display: flex;
  width: 100%;
  gap: 20px;
}
#service-select .type-select-inner{
  display: none;

}
#service-select .type-select-inner.active {
  display: flex;
}
.type-select-radios{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#zo-calculator-steps .btn {
  margin-inline-start: 0;
}
.type-select-radio{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: min(470px,100%);
    cursor: pointer;
}
.type-select-radio:has(input:checked){
    color: var(--color-primary);
}
.type-select-radio:hover::after{
    transform: translateX(10px);

}
.type-select-radio::after{
 content:"\f138";
 display: block;
 color: var(--color-primary);
 font-size: 20px;   
    font-family: bootstrap-icons !important;
    transition: transform 0.3s ease;
}
#details-select .calculator-field-wrap{
    display: none;
}
#details-select .calculator-field-wrap.active{
    display: flex;
}