.gstok-select {
  position: relative;
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 0;
  vertical-align: middle;
}
.gstok-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.gstok-select-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: var(--gstok-select-height, auto);
  min-height: var(--gstok-select-min-height, 38px);
  padding: var(--gstok-select-padding, 7px 10px);
  box-sizing: border-box;
  border: 1px solid #c9d2df;
  border-radius: var(--gstok-select-radius, 6px);
  background: #fff;
  color: #18201f;
  font: inherit;
  font-size: var(--gstok-select-font-size, inherit);
  line-height: var(--gstok-select-line-height, normal);
  text-align: left;
  cursor: pointer;
}
.gstok-select-button:focus {
  outline: 2px solid rgba(8, 101, 233, .15);
  border-color: #0865e9;
}
.gstok-select-button:disabled {
  cursor: not-allowed;
  background: #eef1f4;
  color: #7a8582;
}
.gstok-select-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gstok-select-arrow {
  color: #53615e;
  font-size: .78em;
  text-align: center;
  transition: transform .15s ease;
}
.gstok-select.is-open .gstok-select-arrow {
  transform: rotate(180deg);
}
.gstok-select-menu {
  position: absolute;
  z-index: 10020;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #cbd4e0;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 36, 52, .18);
}
.gstok-select-menu-portal {
  overflow: hidden;
  isolation: isolate;
}
.gstok-select-menu[hidden] {
  display: none;
}
.gstok-select-search-wrap {
  position: relative;
  padding: 8px;
  border-bottom: 1px solid #e4e8ee;
  background: #f8fafc;
}
.gstok-select-search-icon {
  position: absolute;
  top: 50%;
  left: 19px;
  color: #64716f;
  transform: translateY(-50%);
  pointer-events: none;
}
.gstok-select-search {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px 7px 34px;
  box-sizing: border-box;
  border: 1px solid #cbd4e0;
  border-radius: 5px;
  background: #fff;
  color: #18201f;
  font: inherit;
}
.gstok-select-search:focus {
  outline: 2px solid rgba(8, 101, 233, .13);
  border-color: #0865e9;
}
.gstok-select-options {
  max-height: 260px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.gstok-select-option {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 8px 11px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid #eef1f4;
  background: #fff;
  color: #17211f;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.gstok-select-option:last-child {
  border-bottom: 0;
}
.gstok-select-option:hover,
.gstok-select-option.is-active {
  background: #edf5ff;
  color: #075ed1;
}
.gstok-select-option.is-selected {
  background: #e8f2ff;
  color: #075ed1;
  font-weight: 700;
}
.gstok-select-option:disabled {
  cursor: not-allowed;
  background: #f5f6f7;
  color: #9aa3a1;
}
.gstok-select-empty {
  padding: 16px 10px;
  color: #707b78;
  text-align: center;
}
@media (max-width: 640px) {
  
  .gstok-select-options {
    max-height: 220px;
  }
}
