.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
.rev-select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 220px;
  height: 40px;
  text-align: left;
}
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  padding: 8px 15px;
  border: 1px solid #ccc;
  color: #0c0c0c;
}

.select-styled::after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #6800e0 transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}

.select-styled.active::after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0px 0px 30px 3px #00000033;
}

.select-options li {
  margin: 0;
  padding: 8px 0px;
  text-indent: 15px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  color: #0c0c0c;
}
.select-options li:after{
  content: ""; display: block;
  width: 4px; height: 100%;
  background-color: #6800e0;
  position: absolute; left: 0; top: 0;
  opacity: 0;
}

.select-options li:hover:after {
  opacity: 1;
}

.select-options li[rel="hide"] {
  display: none;
}
