/*
span.select2-dropdown.select2-dropdown--below{
	margin-top: 7px;
	border: 1px solid #E8E8E8;
	box-shadow: 2px 6px 21px rgba(83, 92, 105, 0.15);
	border-radius: 0px;	
	font-size: 14px;
	font-family: 'Roboto', "Helvetica Neue",Helvetica,Arial,sans-serif;
	color: #444;
	padding: 3px 6px;
	z-index: 925;
}
.select2_dropdown_wrap span.select2-dropdown.select2-dropdown--below{
	z-index: 905;
}
.select2-container{
	min-width: 300px;
}
.select2-container, .select2-selection{
	outline: none;
}
.select2-selection{
	background-color: #fff;
	transition:  background-color 0.25s linear 0s;
}
.select2-selection:hover{
	background-color: #dddee1;
	transition:  background-color 0.25s linear 0s;
}
.select2-selection__rendered{
	font-weight: bold;
	font-size: 12px;
	text-shadow: none;
	text-transform: uppercase;
}
.select2-results__options{
	padding: 6px;
}
.select2-results__option:hover{
	background-color: #E3EBED;
	background-image: linear-gradient(to bottom, #DDE7E9, #E9EFF1);
	box-shadow: 1px 1px 1px #BBC3C4 inset;
	border-color: #ABB2B4 #CAD1D3 #E0E6E8;
	border-radius: 3px;
}
.select2-results__options .select2-results__option[aria-selected=true] {
	background-color: #FFF;
	color: #444;
}
.select2-results__options .select2-results__option.select2-results__option--highlighted{
	background-color: #FFF;
	color: #444;
}

.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__rendered
{
    line-height: 27px;
}
*/



.bem-select2.bem-select2_multi .select2-container--default
{
    overflow: hidden;
    height: 38px !important;
}

.bem-select2.bem-select2_multi .select2-container--default .select2-selection.select2-selection--multiple,
.bem-select2.bem-select2_multi .select2-container--default .select2-selection.select2-selection--single
{
    overflow: hidden;
    height: 38px !important;
}

.bem-select2.bem-select2_multi .select2-selection__rendered
{
    overflow: hidden;
}

.bem-select2.bem-select2_multi .select2-selection--multiple
{
    overflow: hidden;
    height: 38px !important; 
}

.bem-select2.bem-select2_multi .select2-container--default .select2-selection.select2-selection--multiple .select2-selection__rendered
{
    padding-top: 5px;
}



.bem-select2.bem-select2_search.bem-select2_item_search .select2-container--default .select2-selection--multiple .select2-search
{
    flex-grow: 1;
    position: relative;
    display: inline-block;
    margin: 0px 1px 5px 4px;
    padding: 0 10px 0 10px;
    height: 28px;
    border-width: 0;
    font-size: 13px;
    font-family: "Open Sans", 'HelveticaNeue', Helvetica, Arial,sans-serif;
    vertical-align: middle;
    line-height: 29px;
    color: #2f3941;
    cursor: text;
    overflow: hidden;
    float: left;
}
.bem-select2.bem-select2_search.bem-select2_item_search .select2-container--default .select2-selection--multiple .select2-search .select2-search__field
{
    min-width: 100% !important;
}

.bem-select2.bem-select2_search.bem-select2_item_search .select2-container--default .select2-selection.select2-selection--multiple .select2-selection__rendered
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}

.bem-select2.bem-select2_search.bem-select2_item_search .select2-container--default .select2-selection--multiple .select2-selection__choice
{
    text-overflow: ellipsis;
}


/**
* LOADING
*/
.bem-select2 .bem-select2__loading
{
    line-height: 34px;
    font-size: 14px;
    display: flex;
}
.bem-select2.bem-select2_multi .bem-select2__loading
{
    padding-left: 3px;
}

.bem-select2 .bem-select2__loading .bem-select2__loading-icon
{
	color: #7fae17;
    margin-top: -1px;
}

.bem-select2 .bem-select2__loading .bem-select2__loading-icon
~ .bem-select2__loading-text
{
    margin-left: 5px;
}



/**
* CHECKBOX
*/
.bem-select2-container .select2-results__option .select2-results__checkbox {
    position: absolute;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: solid 2px #c5ccd2;
    background-color: #fcfcfc;
    left: 5px;
    top: 11px;
    text-indent: 0;
}
.bem-select2-container .select2-results__option:hover .select2-results__checkbox {
    border-color: #c6cdd3;
}
.bem-select2-container .select2-results__option[aria-selected=true] .select2-results__checkbox:after,
.bem-select2-container .select2-results__option.select2-results__option_selected  .select2-results__checkbox:after {   
    content: "\f00c";
    position: absolute;
    font-family: FontAwesome;
    font-size: 10px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    left: 0px;
    bottom: 0;
    text-align: center;
    color: #c5ccd2;
}


/**
* SEPARATE
*/
.bem-select2-container .select2-results__option.select2-results__option_separate
{
    margin-bottom: 4px;
}

.bem-select2-container .select2-results__option .select2-results__separate
{
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    left: 0px;
    bottom: 0px;
}