



.toggle {
  align-items: center;
  border-radius: 100px;
  display: flex;
  font-size:13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.toggle:last-of-type {
  margin: 0;
}

.toggle__input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.toggle__input:not([disabled]):active + .toggle-track, .toggle__input:not([disabled]):focus + .toggle-track {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #121943;
}
.toggle__input:disabled + .toggle-track {
  cursor: not-allowed;
  opacity: 0.7;
}

.toggle-track {
  background: #e5efe970;
  border: 1px solid #5a72b5;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  height: 18px;
  margin-right: 12px;
  position: relative;
  min-width:40px;
  width: 40px;
}

.toggle-indicator {
  align-items: center;
  background: #121943;
  border-radius: 24px;
  bottom: 2px;
  display: flex;
  height: 12px;
  justify-content: center;
  left: 2px;
  outline: solid 2px transparent;
  position: absolute;
  transition: 0.25s;
  width: 12px;
}

.checkMark {
  fill: #fff;
  height: 20px;
  width: 20px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.toggle__input:checked + .toggle-track .toggle-indicator {
  background: #121943;
  transform: translateX(22px);
}

.toggle__input:checked + .toggle-track .toggle-indicator.year-2024 {
  background: #8000FF!important;
}

.toggle__input:checked + .toggle-track .toggle-indicator.year-2025 {
  background: #ff7d01!important;
}

.toggle__input:checked + .toggle-track .toggle-indicator.year-2026 {
  background: #62c370!important;
}

.toggle__input:checked + .toggle-track .toggle-indicator.year-2027 {
  background: #cc3363!important;
}

.toggle__input:checked + .toggle-track .toggle-indicator.year-2028 {
  background: #20063b!important;
}

.toggle__input:checked + .toggle-track .toggle-indicator .checkMark {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

@media screen and (-ms-high-contrast: active) {
  .toggle-track {
    border-radius: 0;
  }
}