.select2-selection {
    display: flex;
    align-items: center;
    height: 36px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    padding: 5px 10px;
    position: relative;
}
.select2-selection:focus-within .select2-selection__rendered{
    display: none;
}

.select2-selection__rendered {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #495057;

    padding-left: 0;
    margin-bottom: 0;
}

.select2-selection__placeholder {
    color: #6c757d;
}

.select2-selection::after {
    content: "▾";
    font-size: 20px;
    color: #495057;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select2-selection--clearable::after {
    display: none;
}

.select2-container--default .select2-selection--multiple {
    height: 42px;
    min-height: 36px;
    border-radius: 0px;
    border: 1px solid #ced4da;
}

.select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
}

.select2-results__option {
    padding: 8px 12px;
    font-size: 15px;
    color: #495057;
}

.select2-results__option--highlighted {
    background-color: #e9ecef;
    color: #212529;
}

.select2-search__field::placeholder {
    color: #212529;
    font-size: 1rem;
    opacity: 1;
}

@media (min-width: 1024px) {
    .select2-container--open .select2-dropdown--below {
        width: 300px !important;
    }
}

.select2-selection__clear span {
    pointer-events: none;
}

.fondlister .search-reset {
    margin-bottom: 20px;
    height: 30px;
}

.select2-search.select2-search--inline {
    display: block;
    height: 100%;
}

.select2-search.select2-search--inline .select2-search__field {
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .select2-search.select2-search--inline {
        height: unset;
    }
    .cb-wrapper label {
        hyphens: auto;
    }
}

