

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
  }
  
  .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 36px;
  }
  
  .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    /* padding: 8px 15px; */
    padding-top: 4px;
    -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: 5px solid transparent;
    border-color: #232323 transparent transparent transparent;
    position: absolute;
    top: 16px;
    right: 10px;
  }
  .select-styled:hover {
    background-color: transparent;
  }
  .select-styled:active, .select-styled.active {
    background-color: transparent;
  }
  .select-styled:active:after, .select-styled.active:after {
    top: 9px;
    border-color: transparent transparent #232323 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: #ecf5fd;
    max-height: 200px;
    overflow-y: auto;
  }

  /* Track */
.select-options::-webkit-scrollbar {
    width: 3px;
    border-radius: 10px;
}
  
  /* Thumb (the draggable part) */
.select-options::-webkit-scrollbar-thumb {
    background: #bbbaba;
}
  
  /* Track on hover */
.select-options::-webkit-scrollbar-track:hover {
    background: #f1f1f1;
}
  
  /* Thumb on hover */
.select-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}
  

  .select-options li {
    margin: 0;
    padding: 7px 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;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: #232323;
  }
  .select-options li:hover, .select-options li.is-selected {
    color: #232323;
    background: #e8f2fa;
  }
  .select-options li[rel="hide"] {
    display: none;
  }
  