
*,::before,::after {
 /*box-sizing:border-box;*/
}

.suggestions {
	background-color:#ffffff;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	box-shadow:0 5px 10px rgba(50,50,50,0.5);
	margin-top:-10px;
	position:absolute !important;
	z-index:1;
	width: 100%;
}
.suggestions > ul {
	list-style:none outside none;
	margin:0;
	padding:5px 0;
}
.suggestions > ul > li {
	padding:0 10px;
	
	font-size:14px;
	color:#404040;
	white-space: nowrap;
	cursor:pointer;
}

.suggestions > ul > li:not(:last-child){
	border-bottom: 1px solid #dddddd;
}


.suggestions > ul > li > span {
	font-size: 10px;
	color:#999999;
	position: absolute;
    right: 5px;
}
