.toggle-container {
  position: relative;
  display: inline-flex;
  background: #01a7ff;
  border: 4px solid #ff9c11;
  border-radius: 999px;
  overflow: hidden;
  padding: 3px;
}

/* Sliding orange background */

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: #ff9c11;
  border-radius: 999px;
  transition: transform 0.55s ease;
  z-index: 0;
}

/* Move slider to Executive side when this class is on the container */

.toggle-container.executive-active .toggle-slider {
  transform: translateX(100%);
}

.toggle-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: bold;
  padding: 12px 32px;
  font-size: 20px;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: colour 0.25s ease;
  white-space: nowrap;
}

.toggle-btn.active {
  font-weight: 600;
}

.hidden {
  display: none !important;
}

/* Three option slider: 5 / 6 / 7 */

.triple-toggle {
  position: relative;
  display: inline-flex;
  background: #ffffff;
  border: 4px solid #ff9c11;
  border-radius: 999px;
  overflow: hidden;
}

/* Orange slider with white outline around it */

.triple-slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(33.3333% - 4px);
  background: #ff9c11;
  border-radius: 999px;
  transition: transform 0.25s ease;
  z-index: 0;
}

/* Buttons */

.triple-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: bold;
  padding: 2px 32px;
  font-size: 13px;
  border: none;
  background: transparent;
  color: rgb(11,19,32);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.triple-btn.active {
  font-weight: 600;
  color: #ffffff;
}

/* Slider positions */

.triple-toggle.option-5 .triple-slider {
  transform: translateX(0%);
}

.triple-toggle.option-6 .triple-slider {
  transform: translateX(calc(100% + 3px));
}

.triple-toggle.option-7 .triple-slider {
  transform: translateX(calc(200% + 6px));
}

.fade-regexec {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.fade-regexec.visible {
  opacity: 1;
  pointer-events: auto;
}

