.form__control.form__radio label {
  position: relative;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 10px;
  padding-left: 0px;
}
.form__control.form__radio label span {
  vertical-align: super;
}
.form__control.form__radio label::before {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 2px solid #00709e;
  background: #fff;
  display: inline-block;
  margin-right: 10px;
  line-height: 20px;
  vertical-align: bottom;
  font-size: 12px;
  text-align: center;
  position: relati;
}

.form__control.form__radio label:before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 2px solid #00709e;
  background: #fff;
  display: inline-block;
  margin-right: 10px;
  line-height: 20px;
  vertical-align: bottom;
  font-size: 12px;
  text-align: center;
  position: relative;
  top: 4px;
}

.form__control.form__radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form__control.form__radio input[type="radio"] + label:before {
  border-radius: 40px;
}

.form__control.form__radio input[type="radio"]:focus + label:before {
  outline: 3px solid #ffbf47;
  border-radius: 40px;
}

.form__control.form__radio input[type="radio"]:checked + label:before {
  background: #fff;
  border: 2px solid #00709e;
}

.form__control.form__radio input[type="radio"]:checked + label:after {
  content: "";
  display: block;
  background: #00709e;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  left: 10px;
  bottom: 2px;
}

.radio__reveal {
  /*border-left: 5px solid #ccc;*/
  padding: 20px 35px;
  margin-left: 15px;
  margin-bottom: 10px;
}

.radio__reveal h3,
.radio__reveal .heading3 {
  margin-top: 0;
}

.radio__reveal label {
  font-weight: 400;
  display: block;
  font-size: 16px;
}

.radio__reveal label.heading3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 700;
  color: #333333;
}

.sgc-radio-reveal-container .form__control {
  margin-bottom: 0;
}

.sgc-radio-reveal-container br {
  display: none;
}

*[class*="__reveal"] {
  position: relative;
}

*[class*="__reveal"]:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #00709e;
  border-radius: 6px;
  content: "";
}

/* .boolean-radio-cell .control {
  margin-top: 10px
} */

.boolean-radio label {
  display: block !important
}

.boolean-radio label:not(:first-of-type) {
  margin-top: 5px
}

[type="radio"]+label {
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1rem
}

[type="radio"]:checked {
  position: absolute;
  left: -9999px
}

[type="radio"]:checked+label {
  position: relative;
  padding-left: 60px;
  cursor: pointer;
  line-height: 45px;
  display: inline-block;
  color: #333
}

[type="radio"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border: 2px solid #00709e;
  border-radius: 100%;
  background: #fff;
  bottom: 0;
  margin: auto
}

[type="radio"]:checked+label:after {
  content: '';
  width: 29px;
  height: 29px;
  background: #00709e;
  position: absolute;
  top: 0;
  left: 8px;
  border-radius: 100%;
  bottom: 0;
  margin: auto;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1)
}

[type="radio"]:focus+label:before {
  -webkit-box-shadow: 0 0 0 3px #ffbf47;
  box-shadow: 0 0 0 3px #ffbf47
}

[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px
}

[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 60px;
  cursor: pointer;
  line-height: 45px;
  display: inline-block;
  color: #333
}

[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border: 2px solid #00709e;
  border-radius: 100%;
  background: #fff;
  bottom: 0;
  margin: auto
}

[type="radio"]:not(:checked)+label:after {
  content: '';
  width: 29px;
  height: 29px;
  background: #00709e;
  position: absolute;
  top: 0;
  left: 8px;
  border-radius: 100%;
  bottom: 0;
  margin: auto;
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0)
}