﻿.select-body {
  height: fit-content;
}

.app-select {
  display: flex;
  width: 100%;
  height: var(--h);
  --h: 32px;
  border: 0px !important;
  border: 1px solid var(--neutral-border-color);
}
.app-select .ValueDisplay {
  width: 100%;
  height: var(--h);
  display: flex;
  bottom: 0px !important;
  position: relative !important;
  z-index: 0;
}
.app-select .select {
  min-width: 80px;
  border-radius: 3px;
  background: transparent;
  height: 0px;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0px;
  color: var(--theme-text);
  opacity: 1 !important;
}
.app-select option, .app-select .option {
  display: flex;
  min-height: 31px;
  align-items: center;
  padding-inline: 12px;
}
.app-select option:hover, .app-select .option:hover {
  background: var(--app-blue);
  color: white;
  cursor: pointer;
}
.app-select img {
  object-fit: contain;
  display: flex;
  max-width: 19px;
}
.app-select .tool-select-list {
  background: var(--select-bg);
  box-shadow: var(--select-bg-box-shadow);
  top: calc(100% + 5px);
  border-top: 2px solid var(--app-blue);
  display: flex !important;
}
.app-select .fake-select {
  display: flex;
  height: var(--h);
  width: 100%;
  z-index: 3;
}
.app-select .select {
  opacity: 0;
  margin-top: var(--h);
}
.app-select .fake-select:focus + .select {
  opacity: 1 !important;
}
.app-select input {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  opacity: 0;
}
.app-select .disp {
  height: var(--h);
  width: 100%;
  display: flex;
  z-index: 2;
  position: absolute;
}
