.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
	}

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: A;
	line-height: 40px;
	color: #000;
	width: 60%;
	height: 40px;
	}


.select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #a2a2a2;
	padding: 0;
	-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: 5px solid transparent;
	border-color: #000 transparent transparent transparent;
	position: absolute;
	top: 16px;
	right: 10px;
	}

.select-styled:hover {
	color: #fff;
	border-color: #fff transparent transparent transparent;
	}

.select-styled:active, .select-styled.active {
	
	background-color: #a2a2a2;
	color: #fff;
	}
.select-styled:active:after, .select-styled.active:after {
	top: 9px;
	border-color: transparent transparent #fff transparent;
	}


.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: -15px;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #202020;
	height: 211px;
	overflow-y: scroll;
	}
.select-options li {
	margin: 0;
	padding: 0;
	height: 30px;
	color: #C9C9C9;
	line-height: 30px;
	font-size: 11px;
	letter-spacing: 2px;
	text-indent: 15px;
	border-top: 1px solid #575757;
	-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: #000;
	background: #f8f5f5;
	}
.select-options li[rel="hide"] {
	display: none;
	}


@media only screen and (max-width: 570px) {
	.select {width: 100%;}
	.select-options {height: 200px; overflow-y: scroll;}
	}
@media only screen and (max-width: 823px) {
	.select {width: 90%;}
	.select-options {height: 250px;overflow-y: scroll;}
	}

@media (min-width: 1024px) and (max-width: 1365px) { 
	.select {width: 80%;}
	.select-options {height: 350px; overflow-y: scroll;}
	}