.combobox {
  position: relative;
  width: 100%;
  min-width: 0;
  z-index: 0;
}

.combobox.is-open {
  z-index: 2;
}

.combobox-input {
  width: 100%;
}

.combobox-list {
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: min(240px, 45vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e9edf0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(50, 32, 76, 0.12);
}

.combobox-list[hidden] {
  display: none !important;
}

.combobox.is-open .combobox-list {
  display: block;
}

.page-content .profile-grid {
  position: relative;
  z-index: 1;
}

.page-content > .card:has(.combobox.is-open),
.page-content .profile-grid .card:has(.combobox.is-open) {
  position: relative;
  z-index: 50;
  overflow: visible;
}

.page-content .form-group:has(.combobox.is-open),
.page-content .form-row:has(.combobox.is-open) {
  overflow: visible;
}

.page-content .col-main:has(.combobox.is-open),
.page-content .col-side:has(.combobox.is-open) {
  overflow: visible;
  position: relative;
  z-index: 2;
}

.combobox-option {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.35;
  color: #344563;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.combobox-option.is-active,
.combobox-option:active {
  background: #f5f0fb;
  color: #4e3376;
}

.combobox-option[hidden] {
  display: none;
}

.combobox-empty {
  padding: 10px 14px;
  font-size: 13px;
  color: #9ca3af;
}

.login_form .form .field_input:has(.combobox) {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.login_form .form .field_wrap:has(.combobox.is-open) {
  position: relative;
  z-index: 5;
}

.form-group .combobox,
.field_input .combobox {
  width: 100%;
}
