.select2-container--property .select2-selection {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
	height: 48px;
	display: flex;
    align-items: center;
	padding-left: 16px;
    padding-right: 16px;
}

.select2-container--property .select2-selection.pending {
	animation: border-puls 1.2s ease-in-out infinite;
}

.select2-container.select2-container--property .select2-search--inline .select2-search__field {
	margin: 0;
}

.select2-container.select2-container--property .select2-search--inline .select2-search__field::placeholder {
	color: #959595;
    line-height: 22px;
    font-size: 16px;
	font-family:'Commissioner', sans-serif;
}

.select2-container--property .select2-results__options[aria-multiselectable="true"] .select2-results__option {
	display: flex;
    align-items: center;
    gap: 8px;
}

.select2-container--property .select2-results__options[aria-multiselectable="true"] .select2-results__option .icon_checked {
	width: 16px;
    height: 16px;
    display: inline-block;
	flex-shrink:0;
    background-image: url(../../imgs/checkbox.svg);
}

.select2-container--property .select2-results__options[aria-multiselectable="true"] .select2-results__option--selected .icon_checked {
    background-image: url(../../imgs/checkbox-a.svg);
}

.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid #616161;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.select2-container--property .select2-selection--multiple .select2-selection__rendered {
	display: flex;
	gap: 8px;
}

.select2-container--property .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
	display: flex;
    align-items: center;
    gap: 8px;
    background: #F4F4F4;
    border-radius: 3px;
    padding: 0 8px;
    height: 30px;
}

.select2-container--property .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
	order:1;
	background: none;
    color: #959595;
    font-size: 20px;
    width: 9px;
    height: 9px;
    padding: 0;
    min-height: auto;
	display: flex;
    align-items: center;
}

.select2-container--property .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__display {
	font-size: 16px;
    color: #292929;
}

.select2-container--property .select2-selection--single .select2-selection__rendered {
    color: #959595;
    line-height: 22px;
    font-size: 16px;
}

.select2-container--property .select2-selection--single .select2-selection__arrow {
	height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 8px;
}

.select2-container--property .select2-selection--single .select2-selection__arrow b {
	border-color: #616161 transparent transparent transparent;
	border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--property .select2-results>.select2-results__options {
	max-height: 200px;
    overflow-y: auto;
	padding: 16px;
}

.select2-container--property  .select2-dropdown--below {
    top: 3px;
}

.inspiry_mod_search_form_smart .select2-container--property.select2-container--open .select2-dropdown--below, .inspiry_mod_search_form_smart .select2-container--property.select2-container--open .select2-dropdown--above {
	background:#fff;
	border-radius: 3px;
    overflow: hidden;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.select2-container--property.select2-container--open .select2-dropdown--below .select2-results__option, .select2-container--property.select2-container--open .select2-dropdown--above .select2-results__option {
	color:#292929;
	font-size: 16px;
    line-height: 1.37;
	padding: 0 0 8px 0;
}

/**********scrollbar**********/

.select2-container--property .select2-results>.select2-results__options::-webkit-scrollbar {
    width: .5rem;
    background: #eee;
}

.select2-container--property .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #000;
}

.select2-container--property .select2-results>.select2-results__options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #fff;
}

@keyframes border-puls {
	0%{
		box-shadow: 0 0 0 1px #1cb2ff;
	}
	30%{
		box-shadow: 0 0 0 2px #1cb2ff;
	}
	50%{
		box-shadow: 0 0 0 3px #1cb2ff;
	}
	70%{
		box-shadow: 0 0 0 2px #1cb2ff;
	}
	100%{
		box-shadow: 0 0 0 1px #1cb2ff;
	}
}