﻿.js-example-basic-multiple-limit + .select2-container--default .select2-selection--multiple {
    height: 46px;
}

.js-example-basic-single + .select2-container--default .select2-selection--multiple {

   height:100% auto !important;
   line-height:29px;
}

.js-example-basic-multiple + .select2-container--default .select2-selection--multiple {
    height: 46px;
}



.page-listing-item + .select2-container--default .select2-selection--multiple {
    min-height: 26px;
    min-width: 140px;
}

.page-listing-item + .select2-container--default .select2-selection__rendered {
    min-height: 26px;
    min-width: 140px;
}

.page-sort-item + .select2-container--default .select2-selection--multiple {
    min-height: 26px;
    min-width: 190px;
}

.page-sort-item + .select2-container--default .select2-selection__rendered {
    min-height: 26px;
    min-width: 190px;
}
.select2-search__field {
    display: none !important;
}

.select2-container--default .select2-dropdown {
    margin-top: 5px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    background: #fff;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.85);
}

.select2-container--open .select2-dropdown {
    opacity: 1;
    animation: select2DropdownIn .18s ease forwards;
}

@keyframes select2DropdownIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.select2-container--default .select2-results__options {
    padding: 6px;
    background: #ffffff;
}

.select2-container--default .select2-results__option {
    padding: 10px 12px;
    font-size: 14px;
    color: #374151;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: background-color .15s ease, color .15s ease, transform .12s ease;
}

    .select2-container--default .select2-results__option:last-child {
        margin-bottom: 0;
    }

.select2-container--default
.select2-results__option--highlighted[aria-selected] {
    background: #f3f4f6;
    color: #111827;
    transform: translateX(2px);
    box-shadow: inset 0 0 0 9999px rgba(0,0,0,0.02);
}

.select2-container--default
.select2-results__option[aria-selected="true"] {
    background: #111827;
    color: #ffffff;
    font-weight: 600;
    transition: background-color .18s ease, color .18s ease;
}

.select2-container--default
.select2-selection--multiple
.select2-selection__choice {
    padding: 2px 4px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: scale(0.85);
    animation: select2ChoiceIn .18s ease forwards;
}

@keyframes select2ChoiceIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.select2-container--default
.select2-selection__choice__remove {
    order: 2;
    margin-left: 6px;
    margin-right: 0;
    cursor: pointer;
    opacity: .7;
    transform: scale(1);
    transition: opacity .2s ease-out, transform .18s ease-out;
}

    .select2-container--default
    .select2-selection__choice__remove:hover {
        opacity: 1;
        transform: scale(1.1);
    }

.select2-container--open
.select2-selection--multiple {
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.select2-container--open
.select2-selection--multiple {
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.select2-container--open
.select2-selection--multiple {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}


body.dark-only
.select2-container--default .select2-dropdown {
    background: #1d1930;
    border-color: rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

body.dark-only
.select2-container--default .select2-results__options {
    background: #151122;
}

body.dark-only
.select2-container--default .select2-results__option {
    color: #e5e7eb;
}

body.dark-only
.select2-container--default
.select2-results__option--highlighted[aria-selected] {
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-only
.select2-container--default
.select2-results__option[aria-selected="true"] {
    background: #635bff;
    color: #ffffff;
}

body.dark-only
.select2-container--default
.select2-selection--multiple
.select2-selection__choice {
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

body.dark-only
.select2-container--default
.select2-selection__choice__remove {
    color: rgba(255,255,255,.6);
}

    body.dark-only
    .select2-container--default
    .select2-selection__choice__remove:hover {
        color: #ffffff;
    }
