﻿@CHARSET "UTF-8";

html *{
	padding:0px;
	margin:0px;
}

.select{
	height:34px;
	position:relative;
	border:1px solid #d2d2d2;
	border-radius:2px;
}
.select.show{
	border-color:#5AB7E3;
}
.select .selected-value{
	width:100%;
	height:100%;
	position:relative;
	cursor:pointer;
	overflow:hidden;
}
.select .selected-value input[type="text"]{
	width:98%;
	padding-left:2%;
	height:100%;
	border:none;
	outline:none;
	cursor:pointer;
	line-height:34px;
}
.select .selected-value i{
	display:block;
	width:32px;
	height:100%;
	text-align:center;
	position:absolute;
	right:0px;
	
}
.select .selected-value i.icon-sort-down{
	top:3px;
}
.select .selected-value i.icon-sort-up{
	top:12px;
	color:#5AB7E3;
}
.select .selected-value i:before{
	font-size:20px;
}
.select .select-options{
	width:100%;
	position:absolute;
	z-index:-1;
	top:48px;
	left:-1px;
	border:1px solid #d2d2d2;
	border-radius:2px;
	background-color:#ffffff;
	max-height:300px;
	overflow-y:auto;
	opacity:0;
	transition:all 0.2s;
	-webkit-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-o-transition:all 0.2s;
}
.select.show .select-options{
	top:38px;
	opacity:1;
	z-index:500;
}
.select .select-options .select-option{
	width:98%;
	height:30px;
	line-height:30px;
	cursor:pointer;
	padding-left:2%;
	color:#333333;
	
}
.select .select-options .select-option:hover{
	background-color:#e2e2e2;
}
.select .select-options .select-option.current,.select .select-options .select-option.current:hover{
	background-color:#5AB7E3;
	color:#fff;
}