﻿/* SELECT2 */

.select2-container--default .select2-results > .select2-results__options {
    /*background-color: var(--color-background);*/
    color: var(--colore-testo);
    border: 1px solid var(--color-linea);
}

.select2-container--default .select2-results__option {
    margin: 0 16px; /* Margine solo a destra e sinistra */
    border-radius: 4px;
}

    .select2-container--default .select2-results__option:first-child {
        margin-top: 16px; /* Margine superiore solo per il primo elemento */
    }

    .select2-container--default .select2-results__option:not(:last-child) {
        margin-bottom: 4px; 
    }

    .select2-container--default .select2-results__option:last-child {
        margin-bottom: 16px; /* Margine inferiore solo per l'ultimo elemento */
    }

    .select2-container--default .select2-results__option[aria-selected='true'],
    .select2-container--default .select2-results__option[aria-selected='true']:hover,
    .select2-container--default .select2-results__option--highlighted[aria-selected],
    .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
        color: var(--color-primary);
        background-color: var(--color-primary-hover-riga);
        font-weight: 600;
    }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-color: var(--color-linea);
    background-color: var(--color-fill-disabled);
    color: black;
    border-radius: 7px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    background-color: var(--bg-riga-selezionata);
    display: flex;
    align-items: center;
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
        margin-top: -2px;
        margin-bottom: 0;
    }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: var(--color-text-nero);
    color: var(--color-text-bianco);
    opacity: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single::selection,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--multiple:hover,
.select2-container--default .select2-selection--multiple::selection {
    border: 1px solid var(--color-linea);
}

select[readonly] .select2-container--default .select2-selection--single,
select[readonly] .select2-container--default .select2-selection--single:hover,
select[readonly] .select2-container--default .select2-selection--single::selection,
select[disabled] .select2-container--default .select2-selection--single,
select[disabled] .select2-container--default .select2-selection--single:hover,
select[disabled] .select2-container--default .select2-selection--single::selection,
select[disabled] .select2-container--default.select2-container--disabled .select2-selection--single,
select[readonly] .select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--single {
    border-color: var(--color-cta-fill-disabled);
    background-color: var(--color-cta-fill-disabled);
}

.select2-search--dropdown {
    border-left: 1px solid var(--color-linea);
    border-right: 1px solid var(--color-linea);
}

.select2.is-invalid, .select2.is-invalid:focus {
    border-color: #dc3545;
}

.select2-container--default .select2-selection--multiple {
    border-color: var(--color-linea);
}

.select2-container--default.select2-container--focus .select2-selection--single, .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--color-linea);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-cta-text-disabled);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
    color: var(--color-cta-text-disabled);
}

.select2-container--default.select2-container--focus .select2-selection--single, 
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--color-linea);
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: var(--color-primary);
}