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

.select-arrow {
  position: absolute;
  transition: 0.3s all ease;
  right: 15px;
  top: 15px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 200px;
  height: 40px;
}

.select-styled {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 180px;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  color: black;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.select-styled:hover {
  /* background-color: #b83729; */
}
.select-styled:active ~ svg,
.select-styled.active ~ svg {
  transform: rotate(180deg);
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  color: black;
  box-shadow: 3px 2px 10px -5px rgba(0, 0, 0, 0.8);
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover,
.select-options li.is-selected {
  color: black;
  background: #E7E7E7;
}
.select-options li[rel="hide"] {
  display: none;
}
