.wrapper {
  display: flex;
  height: 45px;
  width: 35%;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
.wrapper .option {
  border: 1px solid #fff;
  height: 100%;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  cursor: pointer;
  padding: 0 10px;
  transition: all 0.3s ease;
}
.wrapper .option .dot {
  background: #d9d9d9;
  border-radius: 50rem;
  position: relative;
}
.wrapper .option .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  background: #fff;
  border-radius: 50rem;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"] {
  display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2,
#option-3:checked:checked ~ .option-3 {
  border-color: #fff;
  background: #fff;
  border-radius: 50rem;
  padding: 5px 40px;
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot,
#option-2:checked:checked ~ .option-3 .dot {
  background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before,
#option-3:checked:checked ~ .option-3 .dot::before {
  opacity: 1;
  transform: scale(1);
}
.wrapper .option span {
  color: #fff;
  color: #fff;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span,
#option-3:checked:checked ~ .option-3 span {
  color: #000;
}
@media (max-width: 991px) {
  .wrapper .option {
    border: 1px solid #143b64;
  }
  .wrapper .option span {
    color: #143b64 !important;
  }
  #option-1:checked:checked ~ .option-1 span,
  #option-2:checked:checked ~ .option-2 span,
  #option-3:checked:checked ~ .option-3 span {
    color: white !important;
  }
  #option-1:checked:checked ~ .option-1,
  #option-2:checked:checked ~ .option-2,
  #option-3:checked:checked ~ .option-3 {
    border-color: #143b64;
    background: #143b64;
    border-radius: 50rem;
    padding: 5px 40px;
  }
}
