/* --------------------------------------------------------
 -----   ~/DesktopModules/BusinessEngine/extensions/nitro-II/field-types/select2-dropdown/themes/default.css   -----
-----------------------------------------------------------*/
:root {
    --container-color: #fff;
    --border-color: rgba(34, 36, 38, 0.15);
    --outline-color: #007fd4;
    --color: rgba(0, 0, 0, 0.87) --box-shadow-color: rgb(0 0 0 / 36%);
}


/* --------------------------------------------------------
         group with icon
    -----------------------------------------------------------*/

.b-with-icon {
    position: relative;
}

.b-with-icon>i {
    font-size: 1em;
    position: absolute;
    top: 0.3em;
    z-index: 99;
}

.b-with-icon:not(.icon-position-right)>i {
    left: 0.7em;
}

.b-with-icon.icon-position-right>i {
    right: 0.7em;
}


/* --------------------------------------------------------
                single theme
          -----------------------------------------------------------*/

.select2-container.select2-container--default {
    min-width: 100%;
}

.select2-container.select2-container--default .select2-dropdown{
	z-index:999999 !important;
}

.select2-container.select2-container--default .select2-selection.select2-selection--single {
    background-color: var(--container-color);
    border: .1em solid var(--border-color);
    border-radius: 0.28571429em;
    transition: box-shadow 0.1s ease, border-color 0.1s ease;
    max-height: 3em;
}

.select2-container.select2-container--default.select2-container--open .select2-selection.select2-selection--single {
    outline-color: var(--outline-color);
    outline-width: .1em;
    outline-style: solid;
    outline-offset: -.1em;
}

.select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__placeholder {
    color: #999;
    font-size: .95em;
}

.select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    padding: .65em .75em .65em 2.3em;
    line-height: 1em !important;
    font-size: .95em;
}

.select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__clear {
    float: none;
    position: absolute;
    right: 2.5em;
    top: .75em;
}

.select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0em;
    width: 2.5em;
}

.select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow b {
    display: block;
    background-image: url("/DesktopModules/BusinessEngine/extensions/nitro-II/field-types/select2-dropdown/themes/down-arrow.png") !important;
    background-repeat: no-repeat;
    background-size: 2em;
    background-position: center;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    height: 100%;
    border: none;
    margin: 0;
    width: 100%;
}


/* --------------------------------------------------------
                multiple theme
          -----------------------------------------------------------*/

.select2-container--default.select2-container .select2-selection--multiple {
    min-height: auto;
    max-height: 2.3em;
}

.select2-container--default.select2-container .select2-search--inline .select2-search__field {
    padding: .6em;
    margin: 0;
    font-size: .85em;
}

.select2-container--default.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 2em;
}

.select2-container--default.select2-container .select2-selection--multiple .select2-selection__rendered li {
    line-height: 1em;
}

.select2-container--default.select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
    margin-top: .45em;
}

.select2-container--default.select2-container .select2-selection--multiple {
    min-height: auto;
    max-height: 2.3em;
}

.select2-container--default.select2-container .select2-selection--multiple .select2-selection__clear {
    margin: 0 .35em;
}

.select2-container--default.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    padding: .6em;
    margin: 0;
    font-size: .85em;
}


/* --------------------------------------------------------
                  rtl signle theme
          -----------------------------------------------------------*/

.b-rtl .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    text-align: right;
    padding-right: 2.2em;
    padding-left: .5em;
}

.b-rtl .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow {
    left: 0;
    right: auto;
}

.b-rtl .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow b {
    left: 0;
    right: auto;
}

.b-rtl .select2-container.select2-container--default .select2-selection.select2-selection--single .select2-selection__clear {
    left: 2.5em;
    right: auto;
}




