/* === THEME: Inklusion Renchtal ===================================== */
/* Blau: #2A458E | Weiß: #fff */

/* Trigger (geschlossener Zustand) */
.nice-select {
  width: 250px;
  box-sizing: border-box;

  font-family: var(--font-main);
  font-size: 18px;
  letter-spacing: var(--standard-letter-spacing);

  background-color: #2A458E;
  color: #fff;

  border: 2px solid #2A458E;
  border-radius: var(--medium-rounded);

  padding: .75rem 2.25rem .75rem .75rem;
  cursor: pointer;
  position: relative;
}

/* Text im Trigger */
.nice-select .current {
  color: #fff;
  line-height: 1.4;
}

/* Pfeil */
.nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* Pfeil geöffnet */
.nice-select.open::after {
  transform: translateY(-50%) rotate(-135deg);
}

/* Hover & Fokus */
.nice-select:hover,
.nice-select:focus,
.nice-select.open {
  border-color: #fff;
}

/* === Dropdown-Liste ================================================= */
.nice-select .list {
  width: 100%;
  background-color: #2A458E;
  color: #fff;

  border-radius: 5px;
  margin-top: 4px;
  padding: 0;

  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;

  opacity: 0;
  pointer-events: none;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  list-style:none;
}

/* Liste sichtbar beim Öffnen */
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

/* === Optionen ======================================================= */
.nice-select .option {
  padding: .65rem .75rem;
  cursor: pointer;
  font-weight: 400;
  color: #fff;
}

/* Hover */
.nice-select .option:hover,
.nice-select .option.focus {
  background-color: rgba(255,255,255,0.18);
}

/* Selected = fett */
.nice-select .option.selected {
  font-weight: 700;
}

/* Disabled */
.nice-select .option.disabled {
  color: rgba(255,255,255,0.5);
  cursor: default;
}
