@charset "UTF-8";

/* Customer form custom select (scoped by `.sl-cs-page`) */
.sl-cs-page .sl-select {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.sl-cs-page .sl-select__native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.sl-cs-page .sl-select__btn {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: #1e2531;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.sl-cs-page .sl-select__btn:hover {
  border-color: rgba(50, 71, 250, 0.32);
}

.sl-cs-page .sl-select__btn:active {
  transform: translateY(1px);
}

.sl-cs-page .sl-select.is-open .sl-select__btn,
.sl-cs-page .sl-select__btn:focus-visible {
  outline: none;
  border-color: rgba(50, 71, 250, 0.55);
  box-shadow: 0 0 0 4px rgba(50, 71, 250, 0.14), 0 10px 30px rgba(16, 24, 40, 0.06);
}

.sl-cs-page .sl-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.sl-cs-page .sl-select__value.is-placeholder {
  color: rgba(30, 37, 49, 0.55);
  font-weight: 500;
}

.sl-cs-page .sl-select__chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: rgba(30, 37, 49, 0.75);
  transition: transform 0.18s ease;
}

.sl-cs-page .sl-select.is-open .sl-select__chev {
  transform: rotate(180deg);
}

.sl-cs-page .sl-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.18);
  max-height: 260px;
  overflow: auto;
  display: none;
}

.sl-cs-page .sl-select.is-open .sl-select__menu {
  display: block;
}

.sl-cs-page .sl-select__item {
  width: 100%;
}

.sl-cs-page .sl-select__opt {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: #1e2531;
  cursor: pointer;
}

.sl-cs-page .sl-select__opt:hover {
  background: rgba(50, 71, 250, 0.08);
}

.sl-cs-page .sl-select__opt[aria-selected="true"] {
  background: rgba(50, 71, 250, 0.12);
  font-weight: 700;
}

.sl-cs-page .sl-select__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  opacity: 0;
  color: #3247fa;
}

.sl-cs-page .sl-select__opt[aria-selected="true"] .sl-select__check {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .sl-cs-page .sl-select__btn {
    height: 46px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.05);
  }
  .sl-cs-page .sl-select__menu {
    max-height: 45vh;
  }
}

