<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 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%;
	max-width: 500px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}
.cs-placeholder{
	border: 2px solid #e4e6ef;
}
div.cs-select:focus {
	outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select select {
	display: none;
}

.cs-select span {
	
	display: block;
	position: relative;
	cursor: pointer;
	height: 44px;
	line-height: 42px;
	padding: 0 15px;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select &gt; span {
}

.cs-select &gt; span::after{
	background:#e5e7f0;
	text-align:center;
	top:0;
	  font: normal normal normal 12px/42px FontAwesome;
	  text-rendering: auto;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  transform: translate(0, 0);


	speak: none;
	position: absolute;
	top:0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width:42px;
	height:110%;
}

.cs-select &gt; span::after {
	content: "\f078";
	right:0;
}

.cs-select .cs-selected span::after {

}

.cs-select.cs-active &gt; span::after {
	-webkit-transform:rotate(180deg);
	transform: rotate(180deg);
}

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

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

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

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

.cs-select ul span {
}

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

/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {

}

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

.cs-select .cs-options{
	margin-top:-1px;
}
.cs-options li{
	margin-bottom:0;
}
.cs-options li:before{
	display:none;
}
.cs-options .cs-selected{
	background-color:#229DD8;
	color:#fff;
}
.cs-options li:hover{
	background:rgb(227, 227, 230);
}
</pre></body></html>