.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.rev-select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 100%;
  height: 50px;
  border: 1px solid #8d9ab2;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 15px;
  font-size: 14px;
  color: #5a5a5a;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
}

.select-styled::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 10px;
  top: 16px;
  background-image: url("https://gori.gov.ge/assets/img/sm_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.select-styled.active::after {
  transform: rotate(180deg);
  right: 10px;
  top: 16px;
}

.select-options {
  display: none;
  position: absolute;
  top: 90%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  color: #5a5a5a;
  font-size: 15px;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 16%);
}

.select-options li {
  margin: 0;
  padding-bottom: 10px;
  text-indent: 15px;
}

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