/* --- dropdown --- */

.dropdown-list .field{
	position: relative;

	border: 1px solid #dfe1e3;
	background-color: #ffffff;
	height: 32px;

	-webkit-box-shadow: inset 0px 3px 0px 0px rgba(243,243,243,0.6);
	-moz-box-shadow: inset 0px 3px 0px 0px rgba(243,243,243,0.6);
	box-shadow: inset 0px 3px 0px 0px rgba(243,243,243,0.6);

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

}

.dropdown-list:hover .field,
.dropdown-list.focus .field{
	border-color: #80d3e5;
}


.dropdown-list .field:after{
	content: '';
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGBAMAAADj6an2AAAAKlBMVEUAAACRkZCRkZCRkZCRkZCRkZCRkZCRkZCRkZCRkZCRkZCRkZCRkZCRkZDbhi7NAAAADnRSTlMA/vDCK+PcZkgjFAfZv05wxIcAAAArSURBVAjXYwhhYGAJYFBqYGhSYHATZxdzYOAyvGjFwMCwWXgDkOQ8ycAAAGoaBjWfFCHnAAAAAElFTkSuQmCC') no-repeat;
	width: 9px;
	height: 6px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
	z-index: 1;

}

.dropdown-list .options{
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;

	position: absolute;
	top: 31px;
	left: -1px;
	z-index: 100;

	border: 1px solid #80d3e5;
	border-top: none !important;

	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	background-color: #fff;

	overflow: hidden;
	overflow-y: auto;

	max-height: 380px;
	display: none;

}

.dropdown-list .options li{
	padding: 7px 12px;
	display: block;
	color: #57585d;
	font: normal 14px/14px 'PT Sans', Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.dropdown-list .options li:hover{
	background-color: #c8f5fd;
	cursor: pointer;
}

.dropdown-list input.option-text{
	background: none;
	border: none;
	padding: 0 27px 0 12px;
	height: 32px;
	outline: none;
	cursor: default;
}

.dropdown-list.focus .options{
	display: block;
}

/* --- eo dropdown --- */


/* --- selector --- */


.selector .field{
	position: relative;

	border: 1px solid #cdd5dd;
	border-radius: 2px;
	background-color: #ffffff;
	height: 38px;

}

.selector:hover .field,
.selector.focus .field{
	border-color: #1d9beb;
}


.selector .field:after{
	content: '';
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%232d73e2' d='M4.499 3.429L1.123.189a.666.666 0 0 0-.93 0 .629.629 0 0 0 0 .907l3.844 3.696a.666.666 0 0 0 .93 0l3.838-3.696a.62.62 0 0 0 0-.903.666.666 0 0 0-.93 0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat;
	width: 9px;
	height: 6px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
	z-index: 1;

}


.selector .items{
	margin: 0;
	padding: 0;

	position: absolute;
	top: 38px;
	left: -1px;
	z-index: 100;

	width: 100%;

	-webkit-border-radius: 0 0 2px 2px;
	-moz-border-radius: 0 0 2px 2px;
	border-radius: 0 0 2px 2px;

	background-color: #fff;
	display: none;

	border: 1px solid #1d9beb;
	border-top: none !important;
}

.selector .items .wrap{
	padding: 7px 12px;
}

.selector input{
	background: none;
	border: none;
	padding: 0 27px 0 12px;
	height: 32px;
	outline: none;
	width: 266px;
	cursor: default;
}

.selector span.option-text{
	display: inline-block;
	padding: 0 27px 0 12px;
	height: 40px;
	width: 266px;
	cursor: default;
	font: normal 14px/38px 'PT Sans', Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.selector.focus .items{
	display: block;
	z-index: 300;
}

.selector .scroll {
	overflow: hidden;
	overflow-y: auto;

	max-height: 380px;

	padding: 0;
	list-style: none;
}

.selector .scroll:not(*:root) {
	margin: 0 5px 5px 0;
}

.selector .scroll::-webkit-scrollbar {
	width: 4px !important;
	margin-right: 10px;
}
.selector .scroll::-webkit-scrollbar-track {
	-webkit-border-radius: 2px !important;
	border-radius: 2px !important;
	background-color: #ebeeef !important;
}
.selector .scroll::-webkit-scrollbar-thumb {
	-webkit-border-radius: 2px !important;
	border-radius: 2px !important;
	background: #dadfe2 !important;
}
.selector .scroll::-webkit-scrollbar-thumb:window-inactive {
	background: #dadfe2 !important;
}
.selector .scroll:focus,
.selector .scroll:hover {
	outline: 0 none !important;
}

/* --- eo selector --- */