.axi-ss-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.axi-ss-trigger {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  padding: 6px 1.8em 6px 10px;
  height: 37px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  cursor: default;
  background-color: var(--form-background-color);
  color: var(--form-text-color);
  transition: background-color 1s, color 1s;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='gray'%3E%E2%96%BE%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.8em 1em;
  background-position: right center;
  -webkit-background-clip: border-box;
  -moz-background-clip: border-box;
  background-clip: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: none;
}

.axi-ss-trigger:disabled {
  background-color: #ededed;
  opacity: 1;
}

.axi-ss-trigger.border_radius_0 {
  border-radius: 0;
}

.axi-ss-trigger.border_left_radius {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.axi-ss-trigger.border_right_radius {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.axi-ss-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: var(--form-background-color);
  color: var(--form-text-color);
  border: 1px solid #ccc;
  border-radius: var(--border-radius);

  overflow: hidden;
}

.axi-ss-search {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 37px;
  padding: 6px 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: var(--form-background-color);
  color: var(--form-text-color);
  font-family: inherit;
  font-size: inherit;
  outline: none;
  transition: background-color 1s, color 1s;
}

.axi-ss-list {
  overflow-y: auto;
  padding: 4px 0;
}

.axi-ss-option {
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.axi-ss-option:hover,
.axi-ss-option.selected {
  background-color: var(--primary-color);
  color: #fff;
}

.axi-ss-option.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.axi-ss-option--grouped {
  padding-left: 20px;
}

.axi-ss-group {
  padding: 6px 10px 2px;
  font-size: 0.82em;
  font-weight: 700;
  opacity: 0.55;
  cursor: default;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
