.training-type-native--enhanced {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.training-type-picker {
  position: relative;
  width: 100%;
  font-family: "Open Sans", Arial, sans-serif;
}

.search-container.training-picker-open {
  position: relative;
  z-index: 160;
}

.hero-section.training-picker-hero-open {
  z-index: 20;
  overflow: visible;
}

.training-type-picker__button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.training-type-picker__button:hover {
  border-color: #94a3b8;
  background: #fafeff;
}

.training-type-picker__button:focus {
  border-color: #0088cc;
  outline: 2px solid rgba(0, 136, 204, 0.2);
  outline-offset: 1px;
  box-shadow: none;
}

.training-type-picker__icon,
.training-type-picker__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #0077b3;
}

.training-type-picker__icon {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 7px;
  background: #eaf7fd;
}

.training-type-picker__icon svg {
  width: 17px;
  height: 17px;
}

.training-type-picker__value {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.training-type-picker__chevron {
  width: 16px;
  height: 16px;
  margin-left: 9px;
  color: #475569;
  transition: transform 180ms ease;
}

.training-type-picker__button[aria-expanded="true"] .training-type-picker__chevron {
  transform: rotate(180deg);
}

.training-type-picker__menu {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 6px;
  z-index: 120;
  top: calc(100% + 7px);
  left: 0;
  width: min(650px, calc(100vw - 40px));
  max-height: none;
  margin: 0;
  padding: 6px;
  overflow: visible;
  border: 1px solid #d8e3ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 39, 64, 0.24);
  list-style: none;
}

.training-type-picker__menu[hidden] {
  display: none;
}

.training-type-picker__option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1e293b;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.training-type-picker__option:hover,
.training-type-picker__option:focus {
  outline: 0;
  background: #edf8fd;
  color: #075985;
}

.training-type-picker__option[aria-selected="true"] {
  background: #dff3fc;
  color: #075985;
}

.training-type-picker__option-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 7px;
  background: #f0f9ff;
}

.training-type-picker__option-icon svg {
  width: 18px;
  height: 18px;
}

.training-type-picker__option-label {
  flex: 1 1 auto;
}

@media (max-width: 767px) {
  .training-type-picker {
    margin-bottom: 10px;
  }

  .training-type-picker__menu {
    width: 100%;
    max-height: none;
    gap: 3px;
    padding: 5px;
    overflow: visible;
  }

  .training-type-picker__option {
    min-height: 48px;
    padding: 6px;
    font-size: 12px;
    line-height: 1.25;
  }

  .training-type-picker__option-icon {
    width: 22px;
    height: 22px;
    margin-right: 6px;
  }

  .training-type-picker__option-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .training-type-picker__button,
  .training-type-picker__chevron,
  .training-type-picker__option {
    transition: none;
  }
}
