
/* Default custom select styles */
div.cs-select {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	text-align: left;
	background: #fff;
	z-index: 100;
	width: 100%;
	-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;
}

.cs-select select {
	display: none;
}

.cs-select span {
	display: block;
	position: relative;
	cursor: pointer;
	padding: 13px 10px 10px;
	height: 34px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select > span {
	padding: 8px 15px;
}

.cs-select > span::after, .cs-select .cs-selected span::after {
	speak: none;
	position: absolute;
	top: 52%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 15px;
}

.cs-select > span::after {
	content: "";
	right: 0;
	font-family: "FontAwesome";
}

.cs-select .cs-selected span::after {
	content: "✓";
	margin-left: 1em;
}

.cs-select.cs-active > span::after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
	top: 54%;
	margin-right: 15px;
}

div.cs-active {
	z-index: 200;
}

/* Options */
.cs-select .cs-options {
	position: absolute;
	overflow: hidden;
	width: 100%;
	background: #fff;
	visibility: hidden;
	height: 1px;
}

.cs-select.cs-active .cs-options ul {
	height: 275px;
}

.cs-select.cs-active .cs-options {
	height: auto;
}

.cs-select.cs-active .cs-options {
	visibility: visible;
}

.cs-select ul {
	list-style: none;
	margin: 9px 0px;
	padding: 0;
	width: 100%;
}

.cs-select ul span {
	padding: 5px 15px;
	font-size: 14px;
	color: #2e3a40;
	height: auto;
}

.cs-select ul li.cs-focus span {
	background-color: #ddd;
}

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

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

.cs-placeholder {
	border: none;
}

.cs-options li {
	border-left: none;
	border-right: none;
	border-bottom: none;
}

.cs-skin-elastic .cs-options span:hover {
	background-color: #f2f5fa;
}
