.small-24 h3 span {
  font-weight: 100;
}
#payments{
  width: 100%;
}

.custom-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.custom-radio input[type='radio'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #6fd2c0;
}

.custom-radio:hover input[type='radio'] ~ .checkmark {
  background-color: #6fd2c0;
}

.custom-radio input[type='radio']:checked ~ .checkmark {
  background-color: #ffffff;
  
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input[type='radio']:checked ~ .checkmark:after {
  display: block;
}

.custom-radio .checkmark:after {
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6fd2c0;
}
.custom-radio .other-group {
  display: flex;
  padding-top: 3px;
  gap: 7px;
}

.custom-radio p{
  font-size: 1rem;
}

.custom-radio p span{
  color: #0C0B0A99
}

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: left;
}