.custom-combobox{
	height: 28px;
    min-width: 80px;
    width:auto;
	position: relative;
	background-color: #fff;
    font-size: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #020E17;
    font-family:'Univers LT W01_57 Condensed', sans-serif;
	display: inline-block;
}
.cs-select{
	position:relative;
}
.cs-dropdown{
	position: absolute;
	width: 100%;
	z-index: 999;
	top:28px;
}
.cs-option, .cs-selected{
	color: #020E17;
	padding: 7px 25px;
	display:block;	
	text-decoration: none;
	outline: none;
}
.cs-option{
	background-color: #fff;
	padding-left: 5px;
	padding-right: 5px;
	color: #030f17;
	text-align: center;
	font-size: 12px;
	line-height: 1.3em;
	text-transform: uppercase;
}
.cs-option:first-child{
		border-radius: 0;
}
.cs-option:last-child{
		border-radius: 0;
}
.cs-option:hover, .cs-hilighted{
	background-color: #020e17;
	color: #fff;
}
.cs-right {
	position: absolute;
	background: url('arrow-down.svg') no-repeat;
	width: 11px;
	height: 6px;
	right: 8px;
	top: 12px;
	cursor: pointer;
}


@media only screen and (max-width:640px){

	.cs-option, .cs-selected{
		padding: 6px 20px;
		font-size: 12px;
	}

	.cs-option{
		font-size: 12px;
		padding-left: 5px;
		padding-right: 5px;
	}


}