/* select-main */
div.select-main {
	width: 140px;
	height: 56px;
	background-color: #f4f9fc;
	border-radius: 28px;
	text-align: center;
	font-size: 16px;
	color: #95afbe;
	position: relative;
}

div.select-main.z-index {
	z-index: 10;
}

div.select-main.disabled {
	cursor: default;
	filter: alpha(opacity=50);
	opacity: 0.5;
	zoom: 1;
}

div.select-main.disabled div.select-set {
	cursor: default;
}

div.select-main.disabled div.select-arrow {
	cursor: default;
}

div.select-set {
	width: 140px;
	height: 56px;
	background-color: #f4f9fc;
	border-radius: 28px;
	text-align: center;
	font-size: 16px;
	color: #95afbe;
	line-height: 56px;
}

div.select-arrow {
	border-top: 6px solid #95afbe;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	cursor:
		pointer;
	height: 0px;
	position:
		absolute;
	top: 25px;
	right: 25px;
	width: 0px;
	z-index: 7;
	transition: all 0.8s;
}

div.select-arrow.reverse {
	border-top: 7px solid transparent;
	border-bottom: 7px solid #95afbe;
	top: 17px;
	transition: all 0.8s;
}

div.select-block {
	background-color: #FFFFFF;
	border-radius: 5px;
	border: 1px solid #eeeeee;
	line-height: 20px;
	position: absolute;
	top: 56px;
	width: 137px;
	overflow: hidden;
}

ul.select-list {
	cursor: pointer;
}

/* Scroll view */

ul.select-list::-webkit-scrollbar {
	width: 0px;
}

ul.select-list::-webkit-scrollbar-track {
	border-radius: 0px;
}

ul.select-list::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
}

ul.select-list {
	height: 185px !important;
	overflow-y: auto;
	scrollbar-face-color: #AEB1B1;
	scrollbar-shadow-color: #C7CACA;
	scrollbar-highlight-color: #CED1D1;
	scrollbar-3dlight-color: #CED1D1;
	scrollbar-darkshadow-color: #C7CACA;
	scrollbar-track-color: #CED1D1;
	scrollbar-arrow-color: #333;
}

/* End scroll view */

li.select-items {
	color: #333333;
	line-height: 36px;
	border-top: 1px solid #eeeeee;
	background-color: #f4f9fc;
	color: #95afbe;
}

li.select-items:hover {
	background: #eaf4fa;
}
