/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: Arial;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
  
  .select-selected {
    background-color: DodgerBlue;
  }
  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
  
  /*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 {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  
  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: DodgerBlue;
    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);
  }


  .fa-icon-border
  {
    background: #212121;
    padding: 3px;
    border-radius: 100px;
    border: 2px solid #da141e;
  }

  .fa-icon-border2
  {
    background: #212121;
    padding: 5px;
    border-radius: 100px;
    border: 2px solid #ffffff;
  }


  .search-bar
  {
    background: #fff !important;
    border: 2px solid #ea1b25; 
    margin: 0;
    border-radius: 100px;
 
    padding: 0.7010000000000005em 0.9em !important;
    -webkit-appearance: auto;
    font-size: 1.071em;
    line-height: 2em;
    border-radius: 1.467em;
    
    border-width: 0;
  }

  .search_btn {
    font-size: 0.875rem;
    border-radius: 1.571em;
    border-width: 0;
    display: inline-block;
    color: #333e48;
    background-color: #efecec;
    border-color: #efecec;
    margin: 0;
    border-radius: 100px;
 
    padding: 0.4em 2.9000000000000004em !important;
    -webkit-appearance: auto;
    font-size: 1.071em;
    line-height: 2em;
    border-radius: 1.467em;
    
    border-width: 0;
}
