.custom-radio-container_radio {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 25px;
  align-items: center;
  justify-content: flex-start;
  font-family: Arial, sans-serif;
  color: #e7e7e7;
  font-size: 11px;
}

.custom-radio-container_radio > input[type='radio'] + .custom-radio-container_radio_custom {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid grey;
  background: transparent;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-radio-container_radio > input[type='radio']:checked + .custom-radio-container_radio_custom {
  border: 1px solid #1f72f2;
}

.custom-radio-container_radio > input[type='radio']:checked + .custom-radio-container_radio_custom::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f72f2;
  display: flex;
}
