.shinsei-select {
  position: relative;
}

.shinsei-select__native {
  display: none;
}

.shinsei-select__trigger {
  flex: 1;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.504px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.shinsei-select__value {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shinsei-select__chevron {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.shinsei-select[data-open="true"] .shinsei-select__chevron {
  transform: rotate(180deg);
}

.shinsei-select__popup {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

.shinsei-select__popup[hidden] {
  display: none;
}

.shinsei-select__option {
  position: relative;
  padding: 8px 16px 8px 36px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  outline: none;
}

.shinsei-select__option:hover,
.shinsei-select__option:focus {
  background: rgba(255, 255, 255, 0.1);
}

.shinsei-select__option[aria-selected="true"]::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-80%) rotate(-45deg);
}
