/* Default custom select styles */
div.cs-select{
	display:inline-block;
	vertical-align:middle;
	position:relative;
	text-align:left;
	background:#f0f0f0;
	border:1px solid #f0f0f0;
	z-index:100;
	width:266px;
	font-family:font1;
	font-size:13px;
	border-radius:4px;
    transition:all 0.3s Ease;
	-webkit-transition:all 0.3s Ease;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

div.cs-select:focus{
	outline:none; /* For better accessibility add a style for this in your skin */
	background:#fff;
	border:1px solid #999;
}

.cs-select select{
	display:none;
}

.cs-select span{
	display:block;
	position:relative;
	cursor:pointer;
	padding:8px;
}

/* Placeholder and selected option */
.cs-select > span{
	padding-right:8px;
}

.cs-select > span::after,
.cs-select .cs-selected span::after{
	speak:none;
	position:absolute;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

.cs-select > span::after{
	content:'\25BE';
	right:8px;
}

.cs-select .cs-selected span::after{
	content:'\2713';
	margin-left:8px;
}

.cs-select.cs-active > span::after{
	-webkit-transform:translateY(-50%) rotate(180deg);
	transform:translateY(-50%) rotate(180deg);
}

div.cs-active{
	z-index:200;
}

/* Options */
.cs-select .cs-options{
	position:absolute;
	overflow:hidden;
	width:100%;
	background:#fff;
	visibility:hidden;
}

.cs-select.cs-active .cs-options{
	visibility:visible;
}

.cs-select ul{
	list-style:none;
	margin-top:2px;
	padding:0;
	width:100%;
	max-height:250px;
	overflow:scroll;
	overflow-x:hidden;
	background:#fff;
}

.cs-select ul span{
	padding:1em;
}

.cs-select ul li.cs-focus span{
	background-color:#ddd;
}

/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul{
	padding-left:10px;
}

.cs-select li.cs-optgroup > span{
	cursor:default;
}



/* MOBILE */
@media only screen and (max-width:799px){
    div.cs-select{
        width:200px;
    }
}