.select2 .selection .select2-selection { 
  border: 1px solid #676767;
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--primary-color);
  color: white ;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary-color);
  color: white ;
}
/** SELECT MÚLTIPLO **/
.select_multiplo ~ .select2 .selection .select2-selection{
    display: -webkit-inline-box !important;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
   .select_multiplo ~ .select2 .selection .select2-selection .select2-search{
    margin: -5px 0;
    width: auto;
  }
  
  .select_multiplo ~ .select2 .selection .select2-selection .select2-search .select2-search__field{
    height: auto;
  }
  
  .select_multiplo ~ .select2 .selection .select2-selection__rendered {
    overflow-x: auto;
  }
    
  .select_multiplo ~ .select2 .selection .select2-selection__rendered .select2-selection__choice{
    margin-top: -2px;
    margin-right: 7px;
    border-radius: 15px;
    /* border: 1px solid #f0f0f0; */
    float: none;
    display: inline-table;
    /* background-color: #1b9dec; */
    padding: 2px 10px;
    /* margin: 0 3px 3px 0; */
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    background: var(--primary-color);
    border: 1px solid var(--primary-dark);
  }

  .select_multiplo ~ .select2 .selection .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{
    background-color: transparent;
    border: none;
    border-right: 1px solid #155279;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 2px 6px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .select_multiplo ~ .select2 .selection .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{
    background: var(--primary-color);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .select_multiplo ~ .select2 .selection .select2-selection__rendered .select2-selection__choice .select2-selection__choice__display{
    padding: 15px 10px;
    margin-left: 10px;
  }
  

  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }

  .select_multiplo ~ .select2 .selection .select2-selection:hover::-webkit-scrollbar {
    width: 8px;
    height: 6px;
  }

  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-thumb {
    background: rgb(218, 220, 224);
    background-clip: padding-box;
    border: 4px solid transparent;
    border-radius: 8px;
    box-shadow: none;
    min-height: 50px;
  }
  
  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-track,
  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-track:hover {
    background: none;
    border: none;
    box-shadow: inset 0 0 5px #f0f0f0; 
    border-radius: 50px;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  
  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    background-clip: padding-box;
    border: solid transparent;
    border-width: 1px 1px 1px 6px;
    min-height: 28px;
    padding: 100px 0 0;
    -webkit-box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%),
      inset 0 -1px 0 rgb(0 0 0 / 7%);
    box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%), inset 0 -1px 0 rgb(0 0 0 / 7%);
    border-radius: 10px;
  }

  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-thumb:hover {
    background: #373737c2; 
  }
  
  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-corner {
    background: transparent;
  }
  
  .select_multiplo ~ .select2 .selection .select2-selection::-webkit-scrollbar-button {
    height: 0;
    width: 0;
  }
  
