@font-face{
  font-family: 'Asap-Regular';
  src: url('../../fonts/Asap-Regular.otf');
}
.custom-combobox{
	width: 100%;
	position: relative;
	background: #fff;
	color: #8a7c72;
	font-size: 15px;
	padding: 0 15px;
	border-radius: 50px;
	line-height: 1em;
	display: inline-block;
    border: 1px solid #D8D8D8;
    font-family: 'Asap-Regular';
}
.cs-select{
	position:relative;
}
.cs-dropdown{
    position: absolute;
    width: 100.6%;
    z-index: 999;
    border-right: 1px solid #D8D8D8;
    border-left: 1px solid #D8D8D8;
    top: 35px;
    left: -1px;
}
.cs-option, .cs-selected{
	color: #8a7c72 !important;
	line-height: 32px;
	padding: 0 15px;
	/*border-radius: 50px;*/
	display:block;	
	text-decoration: none;
	outline: none;
    text-decoration: none !important;
    font-family: 'Asap-Regular';
    outline: none !important;
}
.cs-option{
    border-bottom: 1px solid #D8D8D8;

}

.cs-option:hover, 
.cs-selected:hover{
	color: #000;
	text-decoration: none;
}
.cs-option{
	background-color: #fff;
}
.cs-option:first-child{
		border-radius: 0;
}
.cs-option:last-child{
		border-radius: 0;
}
.cs-option:hover, .cs-hilighted{
	background-color: #eee;
	color: #000;
}
.cs-right {
	position: absolute;
	background: url('drop-down-arrow.png') no-repeat;
    width: 14px;
    height: 8px;
    right: 3px;
    top: 13px;
    cursor: pointer;
    background-size: contain;
}

@media only screen and (max-width: 985px) {
	.cs-right{
		right: 5px;
		top: 17px;		
	}

	.cs-option, .cs-selected{
		line-height: 40px;
	}

	.cs-dropdown{
		width: 100%;
		top: 42px;
    	left: 0;
	}
}