.custom-select-wrap{
    position: relative;
}
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

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

.select-styled {
  /* position: absolute; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; */
  /* padding: 12px 16px; */
  transition: all 0.2s ease-in;
  /* height: 45px; */
}
.select-styled.active{
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.default-select{
    position: relative;
}
.select-styled:after, .default-select::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url('../images/down-arrow.svg') no-repeat center;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
  background-size: 100%;
}
.default-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
  }

.select-options {
  display: none; 
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 200px;
  overflow-y: auto;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #d1d5db;
  transition: all 0.15s ease-in;
}

/* .select-options li:hover,
.select-options li.is-selected {
  color: #c0392b;
  background: #fff;
} */

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