/*
|--------------------------------------------------------------------------
| SELECT2 - ZATVORENO
|--------------------------------------------------------------------------
*/

#filter-municipalities + .select2 {
    width: 100% !important;
}

#filter-municipalities + .select2
.select2-selection--multiple {
    min-height: 58px;
    height: 58px;

    padding: 0 10px;

    display: flex;
    align-items: center;

    position: relative;
}


/*
|--------------------------------------------------------------------------
| SAKRIJ SELECTED TAGOVE
|--------------------------------------------------------------------------
*/

#filter-municipalities + .select2
.select2-selection__choice {
    display: none !important;
}


/*
|--------------------------------------------------------------------------
| SAKRIJ ORIGINALNI INLINE SEARCH
|--------------------------------------------------------------------------
*/

#filter-municipalities + .select2
.select2-search--inline {
    display: none !important;
}


/*
|--------------------------------------------------------------------------
| BROJ ODABRANIH
|--------------------------------------------------------------------------
*/

#filter-municipalities + .select2
.select2-selection__rendered {
    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
}

#filter-municipalities + .select2
.select2-selection__rendered::before {

    content: attr(data-selected-text);

    color: #fff;

    font-size: 15px;
}


/*
|--------------------------------------------------------------------------
| CUSTOM SEARCH
|--------------------------------------------------------------------------
*/

.location-select2-search {

    padding: 10px;

    background: #fff;

    border-bottom: 1px solid #ddd;
}

.location-select2-custom-search {

    width: 100%;
    height: 38px;

    padding: 7px 10px;

    border: 1px solid #ccc;
    border-radius: 4px;

    outline: none;

    font-size: 14px;

    box-sizing: border-box;
}

.location-select2-custom-search:focus {
    border-color: #999;
}


/*
|--------------------------------------------------------------------------
| DROPDOWN LIST
|--------------------------------------------------------------------------
*/

.select2-container--open
.select2-dropdown {

    min-width: 100%;
}

.select2-container--open
.select2-results__options {

    max-height: 300px;

    overflow-y: auto;
}


/*
|--------------------------------------------------------------------------
| OPCIJE
|--------------------------------------------------------------------------
*/

.select2-container--open
.select2-results__option {

    padding: 8px 12px;
}


/*
|--------------------------------------------------------------------------
| CHECKMARK ZA ODABRANE
|--------------------------------------------------------------------------
*/

.select2-container--open
.select2-results__option[aria-selected="true"]::before {

    content: "✓";

    display: inline-block;

    width: 20px;

    font-weight: 600;
}

.select2-container--open
.select2-results__option[aria-selected="false"]::before {

    content: "";

    display: inline-block;

    width: 20px;
}