 /* Custom CSS to hide the border of Select2 */
 #select-2-slider .select2-container .select2-selection,
 .select2-container .select2-selection--single {
     border: none !important;
 }

 .select2-container .select2-selection__arrow {
     display: none !important;
 }

 #select-2-slider .select2-container .select2-container--open,
 .select2-dropdown.select2-dropdown--above {
     border-top: none !important;
     padding: 10px;
     border-color: #eeed;
     top: -12px;
 }

 #select-2-slider .select2-container .select2-container--open,
 .select2-dropdown.select2-dropdown--below {
     border-top: none !important;
     padding: 10px;
     border-color: #eeed;
     top: 10px;
 }

 .select2-results__options {
     text-align: left;
     color: #666;
     font-weight: normal;
 }

 .select2-search--dropdown {
     display: block;
     padding-left: 0px;
     padding-right: 0px;
     padding-bottom: 10px;
 }

 .select2-search--dropdown .select2-search__field {
     border-radius: 3px;
     padding: 7px;
 }

 .select2-container--default .select2-results__option[aria-selected=true] {
     background-color: #CABA9C;
     padding: 7px;
     border-radius: 3px;
     color: white;
 }

 .select2-container--default .select2-results__option--highlighted[aria-selected] {
     background-color: #578691;
     color: white;
     width: 100% !important;
     border-radius: 3px;
     padding: 7px;
 }

 .select2-results__option[aria-selected] {
     cursor: pointer;
     padding: 7px;
     margin-bottom: 5px;
 }


 #select-2-search .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 41px;
    border: 1px solid #eeeeee !important; 
    border-radius: 5px;
    text-align: left;
    color: #666;
    padding-left: 35px;
    background-color: #F7F9FB;
    font-weight: normal;
 }


