@font-face {
  font-family: "icon-font";
  src:url("../fonts/icon-font.eot");
  src:url("../fonts/icon-font.eot?#iefix") format("embedded-opentype"),
    url("../fonts/icon-font.woff") format("woff"),
    url("../fonts/icon-font.ttf") format("truetype"),
    url("../fonts/icon-font.svg#icon-font") format("svg");
  font-weight: normal;
  font-style: normal;

}



/* 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: 480px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	/* mine */
	background-color: #fff;
	margin-bottom: 30px;
}

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;
	padding: 8px 4px 8px 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	
	/* mine */
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	z-index: 100;
}




/* Placeholder and selected option */
.cs-select > span {
	padding-right: 3em;
	font-size: 28px;
	color: #000;
}

.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;
	font-family: 'icon-font';
}

.cs-select > span::after {
	content: '\76';
	right: 1em;
}

/*.cs-select .cs-selected span::after {
	content: '\f105';
	margin-left: 1em;
}*/

.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;
	
	/* mine */
	background-color: #000;
	color: #fff;
}	

.cs-select.cs-active .cs-options {
	visibility: visible;
}

.cs-select ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.cs-select ul span {
	padding: 1em;
	
	/* mine*/
	padding: 10px 8px;
}

.cs-select ul li.cs-focus span {
	background-color: #ddd;
}




/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {
	padding-left: 1em;
	width: auto;
}

.cs-select li.cs-optgroup > span {
	cursor: default;
}




/* mine*/
.cs-optgroup > span {
	color: #999;
	text-transform: uppercase;
	font-size: 20px;
}


/* mine */
.cs-select ul ul li:hover span,
.cs-select ul ul li.cs-selected:hover span {
	background-color: #00ffcc;
	color: #000;
}
.cs-select ul ul li.cs-selected span {
	color: #00ffcc;
}

.cs-select ul {
  max-height: 480px;
  overflow-y: scroll;
  list-style-type: none;
}
