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

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #1B1D20;
  width: 100%;
  height: 40px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  padding: 8px 15px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  font-weight: 500;
  border-bottom: .1rem solid #1B1D20;
  padding-left: 0;
}

.select-styled::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: .7rem;
  height: 0.7rem;
  border-right: .1rem solid #1B1D20;
  border-top: .1rem solid #1B1D20;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.select-styled:active::before,
.select-styled.active::before {
  -webkit-transform: rotate(135deg) translateY(-50%);
  -ms-transform: rotate(135deg) translateY(-50%);
  transform: rotate(135deg) translateY(-50%);
}

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

.select-styled--invalid {
  border-bottom: .1rem solid #EE4646;
  color: #EE4646;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #EDEAE8;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.select-options li {
  margin: 0;
  padding: .8rem 1rem;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}


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