/*the container must be positioned relative:*/
.select-wrapper {
    position: relative;
    font-family: Arial;
    border:none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding:.375rem 1.7rem 0 0;
     margin-bottom: 0;
     background-color: #fff;
    padding: .375em 0;
  }
  
  .select-wrapper select {
    display: none; /*hide original SELECT element:*/
  }
  
 
  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "\f0d7";
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
    font-family: 'FontAwesome';
  }
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected:first-child
  {
border-bottom: none;
  }
  .select-items div,.select-selected {
    font-size: 1rem;
    color:#495057;
    cursor: pointer;
    user-select: none;
    line-height: 30px;
  }
  
  /*style items (options):*/
  .select-items {
    border-bottom: 1px solid #ddd;
    position: absolute;
    background-color: #f9f9f9;
    text-indent: 15px;
    
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }
  