/* Default custom select styles */
div.cs-select2 {
display: inline-block;
vertical-align: middle;
position: relative;
text-align: left;
background: #fff;
width:121px;
float:right;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border:1px solid #686a74;
}

div.cs-select2:focus {
	outline: none; /* For better accessibility add a style for this in your skin */
}
.cs-select2 select {
	display: none;
}
.cs-select2 span {
	display: block;
	position: relative;
	cursor: pointer;
	padding:0.75rem 1.2em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight:500;
	text-align:left;
	font-size:0.941rem;
	height:41px
}
/* Placeholder and selected option */
@media all and (max-width:768px) {
div.cs-select2 {max-width:70%}
.cs-select2 span {padding:0.75rem 2rem 1rem 1rem}
.cs-select2 > span,
.cs-select2 span {padding-right:2em;font-size:0.824rem;}

}
.cs-select2 > span::after,
.cs-select2 .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;
	font-family: FontAwesome;
}

.cs-select2 > span::after {
	content: '\f107';
	right: 1em;
}

.cs-select2 .cs-selected span::after {
	content: '\2713';
	margin-left: 1em;
}
.cs-select2.cs-active > span::after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}
/*
div.cs-active {
	z-index: 200;
}
*/
/* Options */
.cs-select2 .cs-options {
	position: absolute;
	overflow: hidden;
	width: 100%;
	left:0;
	background: #fff;
	visibility: hidden;
	text-align:left;
	border:1px solid #686a74;
	padding:0.5rem 0 0.5rem 1.2rem;
	z-index:2
}
@media all and (max-width:1024px) {
.cs-select2 .cs-options {width: 100%;left:-0;}
}
@media all and (max-width:640px) {
.cs-select2 .cs-options {width: 101%;left:-0.5%;padding:0.7rem 0.9rem 0.8rem 1rem}
}
.cs-select2.cs-active .cs-options {
	visibility: visible;
}
.cs-select2 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.cs-select2 ul span {
	padding: 1em;
}
.cs-select2 ul li.cs-focus span {
	background-color: #ddd;
}

/* Optgroup and optgroup label */
.cs-select2 li.cs-optgroup ul {
	padding-left: 1em;
}

.cs-select2 li.cs-optgroup > span {
	cursor: default;
}