/* custom-select.css */
.custom-select {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 32px;
  font-family: inherit;
  user-select: none;
}

.custom-select__trigger {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-sizing: border-box;
  border: 1px solid #7C7C7C;
  border-radius: 4px;
  background: #000;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  color: #BDBDBD;
}

/* .custom-select__trigger:focus {
  outline: none;
  border-color: #409eff;
  box-shadow: 0 0 0 3px rgba(64,158,255,.2);
} */

.custom-select__arrow {
  
  transition: transform 0.25s;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 4px 0 0;
  border-radius: 6px;
  background: #292929;
  max-height: 256px;
  overflow-y: auto;
  padding: 12px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 999;
  list-style: none;
  padding: 12px;
}

.custom-select.open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__options li {
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  height: 36px;
  margin-bottom: 4px;
  padding-bottom: 4px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
li a {
  width: 100%;
  height: 100%;
}
.custom-select__options li:last-child {
  border: none;
  margin-bottom: 0px;
  height: 32px;
}

/* .custom-select__options li:hover {
  background: #f5f7fa;
} */

/* .custom-select__options li.selected {
  background: #e6f7ff;
  color: #409eff;
  font-weight: 600;
} */

/* .custom-select__options li.disabled {
  color: #bbb;
  cursor: not-allowed;
  background: transparent !important;
} */