.select-hidden{
	display : none;
	visibility : hidden;
	padding-right : 10px;
}
.select{
	cursor : pointer;
	display : inline-block;
	position : relative;
	font-size:12px;
	color:#000;
	/*width: 80px;*/
	height:50px;
}
.select-styled{
	text-align:left;
	/*position:absolute;*/
	top:0;
	right:0;
	bottom:1px;
	left:0;
	border-bottom:1px solid #EEEEEE;
	-webkit-transition:all .2s ease-in;
	transition:all .2s ease-in;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	padding-right:30px;
	height:50px;
	font-size: 13px;
    text-transform: uppercase;
    line-height: 14px;
    padding-left: 12px;
    z-index: 2;
    position: relative;
    padding-top: 18px;
    padding-bottom: 18px;
}
.select-styled:after{
	content: '';
	width: 9px;
	height: 5px;
	background-image: url("../../images/icons/arr-down.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 2.5px);
    right: 12px;
}
.select-styled.active:after,.select-styled:active:after{
	background-image: url("../../images/icons/arr-up-blue.png");
}
.select-styled.active:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    top: 100%;
    z-index: 1;
    left: 0px;
    
}
.select-options{
	text-align:left;
	display:none;
	position:absolute;
	top:100%;
	right:0;
	left:0;
	margin:0;
	padding:0;
	list-style:none;
	background-color:#FFF;
	max-height:340px;
	overflow-y:scroll;
	border:1px solid #E9E9E9;
	min-width: 160px;
	font-size: 13px;
	line-height:17px;
	z-index: 3;
}
.select-options li{
	margin:0;
	padding: 10px 0;
	padding-left:12px;
	padding-right:12px;
	-webkit-transition:all .15s ease-in;
	transition:all .15s ease-in;
}
.select-options li:hover{
	background:#0272BC !important;
	color:#FFF !important;
}
.select-options li[rel=hide]{
	display:none;
}
.select-options li.selected{
	color: #0272BC;
    background-color: transparent;
}
@media(min-width:768px){
	.select-styled.active{
	    color: #000; 
	    overflow: unset;
	}
	.att-text{
		display: none;
	}
}
@media(max-width:767px){
	.select{
		width:100%;
	}
}