/* =========================   GLOBAL UTILITIES   ========================= */

.hidden {
  display: none !important;
}

/* Optional fade helper (only use if NOT using .hidden) */

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

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

/* =========================   TWO OPTION TOGGLE   Regular / Executive   ========================= */

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

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

.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: #000000;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease;
}

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

/* =========================   TWO OPTION TOGGLE   6 / 7 (standard + executive)   ========================= */

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

/* Slider */

.triple-slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 4px);
  background: #ffffff;
  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: #000000;
}

/* =========================   SLIDER POSITIONS   (2 option only)   ========================= */

/* 6 selected */

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

/* 7 selected */

.triple-toggle.option-7 .triple-slider {
  transform: translateX(100%);
}

