/* --------- START SELECT2 WITH INPUT --------- */
/* Ancho total */
.select2-container {
  width: 100% !important;
}

/* Estilo del input principal */
.select2-container .select2-selection--single {
    height: 50px;
    color: var(--blackColor);
    box-shadow: unset !important;
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    transition: var(--transition);
    border-radius: 5px;
    padding: 0 0 0 15px;
    font-size: var(--fontSize);
    font-weight: 400;
    display: flex;
    align-items: center;
}

/* Texto seleccionado */
.select2-container .select2-selection__rendered {
  color: #495057;
  line-height: 24px;
  padding-left: 0px !important;
  
}

/* Icono de flecha */
.select2-container .select2-selection__arrow {
  height: 100% !important;
  right: 15px;
  display: flex;
  align-items: center;
}

/* input de busqueda*/
.select2-search--dropdown .select2-search__field {
  color: var(--blackColor);
  border-radius: 4px;
}

/* Dropdown*/
.select2-dropdown {
  border: 1px solid #f5f5f5;;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Dropdown opciones */
.select2-container .select2-results__option {
  padding: 8px 12px;
  font-size: 14px;
}

/* Hover en opciones */
.select2-container .select2-results__option--highlighted {
  background-color: var(--mainColor) !important;
  color: #fff;
}


/* --------- END SELECT2 WITH INPUT --------- */