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

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: C;
	line-height: 55px;
	color: #fff;
	width: 90%;
	height: 50px;
	border-bottom: 1px solid #b88e52;
	}


.select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: transparent;
	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: #fff transparent transparent transparent;
	position: absolute;
	top: 16px;
	right: 10px;
	margin-top: 8px;
	}

.select-styled:hover {
	color: #b88e52;
	border-color: #fff transparent transparent transparent;
	}

.select-styled:active, .select-styled.active {
	background-color:rgba(15,15,15,0.3);
	color: #b88e52;
	}
.select-styled:active:after, .select-styled.active:after {
	top: 9px;
	border-color: transparent transparent #b88e52 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:rgba(21,21,21,1.00);
	}
.select-options li {
	margin: 0;
	padding: 0;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	font-family: A;
	letter-spacing: 1px;
	text-indent: 15px;
	border-top: 1px solid rgba(45,45,45,1.00);
	-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: #fff;
	background: #b88e52;
	}
.select-options li[rel="hide"] {
	display: none;
	}