.nice-select {
  background-color: transparent;
  border: 1px solid #828286 !important;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  font-size: 18px;
  padding: 14px 35px 14px 15px;
  position: relative;
  text-align: left;
  width: 160px;
  transition: border-color 0.2s;
  user-select: none;
  color: gray !important;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #9d9ca3 !important;
  color: gray !important;
}

.nice-select:after {
  content: '';
  border: 2px solid #7b7c98;
  display: block;
  height: 12px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: rotate(45deg);
  transition: transform 0.15s;
  width: 12px;
  color: gray !important;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select .list {
  background-color: #150145;
  border-radius: 5px;
  margin-top: 4px;
  opacity: 0;
  display: none;
  position: absolute;
  right: 0;
  transition: opacity 0.15s, transform 0.2s cubic-bezier(0.5, 0, 0, 1.25);
  width: 160px;
  z-index: 9;
}

.nice-select.open .list {
  opacity: 1;
  display: block;
  transform: scale(1) translateY(0);
}

.nice-select .option {
  cursor: pointer;
  line-height: 40px;
  padding: 0 10px;
  transition: background-color 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #101046;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  color: #999;
  cursor: default;
}
