

.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: inherit;/*16px;*/
	color: #fff;
	/*width: 220px;*/
	/*width: calc(100% - 20px);*/
	height: 34px;
	
	text-align: left;
	
	background: linear-gradient(to bottom right, #8E0, #070, #020);
	
	margin-top: 4px;
}

.select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #c0392b;
	
	border: 1px solid #AAA;
	
	background: linear-gradient(to bottom right, #8E0, #070, #020);
	background-size: 200%;
	background-position: 100%;
	
	/*overflow-x: hidden;*/
	
	padding: 8px 8px;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	top: 13px;
	right: 10px;
	
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.select-styled:hover {
	background-color: #b83729;
	background-position: 0%;
}
.select-styled:active, .select-styled.active {
	background-color: #158;
	background: linear-gradient(to bottom right, #4A0, #040);
}
.select-styled:active:after, .select-styled.active:after {
	top: 4px;
	border-color: transparent transparent #fff transparent;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #270;/*#ab3326;*/
	
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
	
	text-indent: 12px;
}
.select-options li {
	margin: 0;
	padding: 12px 0;
	border-top: 1px solid #050;
	-moz-transition: all 0.15s ease-in;
	-o-transition: all 0.15s ease-in;
	-webkit-transition: all 0.15s ease-in;
	transition: all 0.15s ease-in;
}
.select-options li:hover {
	color: #058;/*#c0392b;*/
	background: #fff;
	/*text-indent: 15px;*/
}
.select-options li[rel="hide"] {
	display: none;
}


.select-smalltext {
	font-size: 12px !important;
}


