.select {
  min-width: 0;
  position: relative;
}

.select__body {
  position: relative;
  user-select: none;
  width: 200px;
  
}

.select__title {
  width: 100%;
}

.select__value {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Kanit";
  color: #ffffff;
gap: 10px;
  padding: 10px 18px 10px 10px;
  &:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(221, 242, 70);
  }
}

.select__value > * {
  flex: 1 1 auto;
}

.select__value:after {
  content: "";
  align-self: stretch;
  flex: 0 0 14px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  mask: url("../img/icons/chevron.svg") center/contain no-repeat;
  background-color: #fff;
}

._select-open .select__value:after {
  transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__text {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  /* color: #000;
  position: absolute;
  top: calc(100% - 1px);
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  padding: 10px 0 5px 0; */
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.236);
  overflow: hidden;
  transition: all 0.2s ease;
  z-index: 10;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  /* max-height: 200px;  */
}

.select__scroll .simplebar-scrollbar::before {
  /* opacity: 1; */
}

.select__option {
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  text-align: left;
}

.select__option._select-selected {
  background-color: #eee;
}

@media (any-hover: hover) {
  .select__option:hover {
    background-color: #f2f5f8;
  }
}

.select__row {
  display: inline-flex;
  align-items: center;
}

.select__asset {
}

.select__text {
}

.select--show-top .select__options {
  bottom: calc(100% + 8px);
  top: auto;
}

.select._select-open {
  .select__value {
    border-color: rgb(221, 242, 70);
  }
}
.select._select-disabled {
}
.select._select-active {
}
.select._select-focus {
}
.select._select-multiple {
}
.select._select-checkbox {
}

._select-tag {
  cursor: pointer;
}
.select_select-icon {
  .select__value {
    padding-left: 40px;
  }
}
