/********** Custom Select Styles **********/
.customselect2 {
	display: inline-block;
	vertical-align: middle;
	position: relative;	
	color: #3d3e44;
}
.csbox {
	background: #ebe9e9 url('../images/dropdown.png') no-repeat right center;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	font-weight: 700;
	border: 1px solid #cccccd;
	padding: 0 26px 0 13px;
	width: 182px; 
	cursor: pointer;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #606265;
}
.cslist {
	list-style: none;
	position: absolute;	
	z-index: 20;
	display: none;
	left: 0;
	top: 31px;
	background: #ebe9e9;
	line-height: 30px;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	border: 1px solid #cccccd;
	min-width: calc(100% - 2px);
	border-top: none;
}
.cslist li {
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 13px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;	
}
.skip-first .cslist li:first-child {
	display: none;
}
.cslist li:hover,
 .cslist li.selected {
 	color: #606265;
 	background: #ebe9e9;
}
 */