.wrapper {
  --font-color-dark: #235B4E;
  --font-color-light: #FFF;
  --bg-color: #fff;
  --main-color: #235B4E;
  position: relative;
  width: auto;
  height: 36px;
  background-color: var(--bg-color);
  border: 2px solid var(--main-color);
  border-radius: 34px;
  display: flex;
  flex-direction: row;
  box-shadow: 4px 4px var(--main-color);
}

.option_radio {
  width: 49.8%;
  justify-content: center;
  text-align: center;
  height: 28px;
  position: relative;
  top: 2px;
  left: 2px;
}

.input_radio_opciones {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  appearance: none;
  cursor: pointer;
}

.btn_opciones {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.span_opciones {
  color: var(--font-color-dark);
}

.input_radio_opciones:checked + .btn_opciones {
  background-color: var(--main-color);
}

.input_radio_opciones:checked + .btn_opciones .span_opciones {
  color: var(--font-color-light);
}