.restrictions-radio-toggle {
  display: flex;
  margin-bottom: 25px;
  overflow: hidden;
}

.restrictions-radio-toggle input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.restrictions-radio-toggle label {
  background-color: #EEE6E4;
  color: #0B0D1A;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 12px 15px;
  margin-right: -1px;
  transition: all 0.1s ease-in-out;
  max-width: 85px !important;
}

.restrictions-radio-toggle label:hover {
  cursor: pointer;
}

.restrictions-radio-toggle input:checked + label {
  background: linear-gradient(180deg, #65B1DD 0%, #028CE4 100%);
  color: #fff;
  box-shadow: none;
}

.restrictions-radio-toggle label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.restrictions-radio-toggle label:last-of-type {
  border-radius: 0 4px 4px 0;
}

.restrictions-form-field p {
  margin: 0;
}