.select-field { margin-bottom: 22px; }
.modal .select-field > label { margin-bottom: 9px; }
.outwit-select { min-width: 0; width: 100%; text-align: left; }
.select-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 10px 14px 10px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 1px 2px #0000000a;
  font: inherit;
  font-size: 14px;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.select-trigger:focus-visible,
.select-trigger[aria-expanded="true"] {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent);
}
.select-trigger:disabled { cursor: not-allowed; }
.select-symbol {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
}
.select-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.select-chevron { display: grid; place-items: center; width: 24px; height: 24px; flex: none; color: var(--muted); transition: transform 180ms ease, color 180ms ease; }
.select-trigger[aria-expanded="true"] .select-chevron { transform: rotate(180deg); color: var(--accent); }
.select-menu {
  position: fixed;
  inset: auto;
  margin: 0;
  padding: 6px;
  min-width: 240px;
  max-width: calc(100vw - 32px);
  max-height: min(420px, calc(100dvh - 32px));
  border: 1px solid color-mix(in srgb, var(--line) 75%, var(--muted));
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 20px 55px -12px #00000070, 0 4px 12px #00000018;
  overflow: hidden;
  opacity: 0;
  transition: opacity 120ms ease, overlay 120ms allow-discrete, display 120ms allow-discrete;
}
.select-menu:popover-open { display: flex; flex-direction: column; opacity: 1; }
.select-menu:not(:popover-open) { pointer-events: none; }
.select-menu::backdrop { background: transparent; }
@starting-style { .select-menu:popover-open { opacity: 0; } }
.select-list {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}
.select-option {
  display: flex;
  align-items: center;
  position: relative;
  gap: 12px;
  min-height: 68px;
  padding: 12px 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  scroll-margin-block: 6px;
  -webkit-tap-highlight-color: transparent;
  transition: background 100ms ease, border-color 100ms ease;
}
.select-option-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.select-option-label { font-size: 14px; font-weight: 500; line-height: 1.4; }
.select-option-description { color: var(--muted); font-size: 12px; font-weight: 400; line-height: 1.5; }
.select-option[aria-selected="true"] { background: var(--accent-soft); }
.select-option[aria-selected="true"] .select-option-label { color: var(--accent); }
.select-option[data-highlighted="true"] { background: var(--surface-raised); border-color: var(--line); }
.select-option[aria-selected="true"][data-highlighted="true"] { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 28%, transparent); }
.select-option[data-select-flash="true"] { background: color-mix(in srgb, var(--accent) 18%, var(--surface)); }
.select-option-separated { margin-bottom: 13px; }
.select-option-separated::after { content: ''; position: absolute; inset: auto 10px -8px; height: 1px; background: var(--line); pointer-events: none; }
.select-check { display: grid; place-items: center; flex: 0 0 21px; height: 21px; margin-left: 6px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); opacity: 0; transition: opacity 100ms ease; }
.select-option[aria-selected="true"] .select-check { opacity: 1; }
.select-level { display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.select-level i { width: 4px; height: 6px; border-radius: 2px; background: currentColor; opacity: .22; }
.select-level i:nth-child(2) { height: 11px; }
.select-level i:nth-child(3) { height: 16px; }
.select-level i:first-child,
.level-normal i:nth-child(2),
.level-hard i { opacity: 1; }
.select-compact { width: auto; flex: 1; min-width: 155px; }
.select-compact .select-trigger { min-height: 44px; gap: 9px; padding: 7px 10px 7px 8px; font-size: 14px; border-radius: 10px; }
.select-compact .select-trigger .select-symbol { width: 28px; height: 28px; flex-basis: 28px; border-radius: 7px; }
.select-compact .select-menu { min-width: 290px; }
.bot-form .button { white-space: nowrap; }
@media (hover: hover) {
  .select-trigger:not(:disabled):hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); background: var(--surface); }
}
@media (max-width: 600px) {
  .select-trigger { font-size: 16px; }
  .select-option { gap: 10px; padding: 11px 9px; }
  .select-option-label { font-size: 14px; }
  .select-option-description { font-size: 12px; }
  .select-check { margin-left: 0; }
  .select-compact { min-width: 145px; }
  .select-compact .select-trigger { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .select-trigger, .select-chevron, .select-menu, .select-option, .select-check { transition: none; }
}

.bot-form{max-width:100%;flex-wrap:wrap;justify-content:center}
