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

.d-select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: #fff;
  width: 220px;
  height: 40px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #c0392b;
  padding: .5rem 1rem;
  -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:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}
.select-styled:hover {
  background-color: #b83729;
}
.select-styled:active, .select-styled.active {
  background-color: #ab3326;
}
.select-styled:active:after, .select-styled.active:after {
  top: calc(50% - 10px);
  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;
    background-color: #ab3326;
    /* bottom: 0; */
    overflow-y: auto;
    height: 400%;
    border-radius: .5rem;
}
.select-options li {
  margin: 0;
  padding: .8rem 1rem;
  border-top: 1px solid #962d22;
  -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;
  font-size: .9rem;
}
.select-options li:last-child{
  border-bottom: 0;
}
.select-options li:hover, .select-options li.is-selected {
  color: #c0392b;
  background: #fff;
}
.select-options li[rel="hide"] {
  display: none;
}
.select-styled{
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2.313rem;
    border-color: #7C929A;
    letter-spacing: 0.01em;
    color: #F4D2B6;
    padding: 0rem 1.5rem ;
    font-family: 'Gravity-Book';
    background-position: right 1.75rem center;
    background-size: 16px 10px;
    font-size: 1.1rem;
display: flex;
align-items: center;
}
.select-styled:active, .select-styled.active,
.select-styled:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.d-select{
width: 100%;
height: 3.8rem;
margin-top: 4rem;
}
.select-styled:after{
top: calc(50% - 2px);
right: 1rem;
}
.select-options li{
background-color: #fff;
border:0;
border-bottom: 0.5px solid #5690A8;
color: #2D6073;
}
.select-options li:hover{
color: #F4D2B6;
}