/* Custom Select v2.0 | (c) real.Master | clearex.ru */
.select select {
	display: none !important;
}
.select select.mobnative {
	display: block !important;
	opacity: 0;
	position: absolute;
	top: 0;
	height: inherit;
	z-index: 1;
}
.select {
	cursor: pointer;
	position: relative;
	opacity: 0;
}
.select.opend {
	z-index: 3;
}
.select_header {
	display: table;
	width: 100%;
	height: 40px;
	background: #fff;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.select_title {
	position: relative;
	display: table-cell;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.select_title_box {
	position: absolute;
	top: 50%;
	left: 0;
	max-width: 100%;
	padding: 0 10px;
	overflow: hidden;
	white-space: nowrap;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.select_placeholder {
	color: #777;
}
.select_choice {
	display: inline-block;
	margin-right: 5px;
	padding: 3px 5px;
	line-height: 1;
}
.select_choice:first-child {
	margin-left: -5px;
}
.select_choice:hover {
	/*text-decoration: line-through;*/
}
.select_toggle {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	width: 40px;
	background: #fff;
	border-left: 1px solid #ddd;
	text-align: center;
}
.select_toggle:before {
	content: '▼';
	display: inline-block;
	color: #999;
	font-size: 12px;
}
.select.opend .select_toggle:before {
	content: '▲';
}
.select_header:hover .select_toggle:before {
	color: #555;
}
.select_body {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #ddd;
}
.select_search {
	padding: 5px;
	border-bottom: 1px solid #ddd;
}
.select_search_input {
	outline: none;
	display: block;
	width: 100%;
	padding: 5px;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.select_options {
	max-height: 150px;
	overflow: auto;
}
.select_option,
.select_message {
	padding: 0 10px;
	height: 30px;
	line-height: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #ddd;
	overflow: hidden;
}
.select_option:first-child {
	border: none;
}
.select_option:hover {
	background: #f1f1f1;
}
.select_option.selected {
	background: #bdd8ea;
}
.select_option.selected:hover {
	background: #c8d7e1;
}
.select_message {
	color: #555;
	border: none;
}