#suggest_container{
    cursor: default; 
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
	position: absolute; 
	display: none;
	width: 100%;
	top: 40px;
	left: 0;
	z-index: 9999; 
	overflow: hidden; 
	overflow-y: auto; 
	box-sizing: border-box;
}
#suggest_container ul > li {
    padding: 5px 10px;
    border-bottom: 1px solid #ddd;
	overflow: hidden;
}

#suggest_container ul > li.sugg_hovered:hover {
	 color: #111;
	 background: #eee;
}


#suggest_container ul > li:last-child { 
    border-bottom: 0;
    text-align: center;
}

#suggest_container ul > li > a {
	color: #444;
    line-height: 16px;
}

#suggest_container ul > li:last-child > a {
	color: #f4a137;
}

#suggest_container ul > li > a > span {
	display: block;
}

#suggest_container .title-category {
    font-size: 14px;
    margin-top: 0;
    font-weight: 500;
}

#suggest_container .h4,
#suggest_container .price .price-new, 
#suggest_container .price span.price {
	font-size: 15px;
}

#suggest_container .prod_model {
	padding: 2px 0;
}

#suggest_container .badge {
	margin: 0 10px 0 0;
	background: #CDD1DA;
    box-shadow: inset 0 2px 3px rgba(0,0,0,.2)
}

#suggest_container .price {
    margin: 0;
}

#suggest_container .checkbox__text {
	text-overflow: ellipsis; 
	overflow: hidden; 
	white-space: nowrap;
	padding: 0;
}
#suggest_container .checkbox__text:before,
#suggest_container .checkbox__text:after {
	content: none;
}

.sugg_image {
    margin-right: 17px;
    float: left;
    margin-top: 3px;
}

.suggest_header {
	border-bottom: 1px solid #ccc;
	margin: 0;
    padding: 4px 8px;
	font-size: 13px;
}

.sugg_suggested_text {
	font-weight: bold;
    font-style: italic;
    color: #dd4b39;
}

/*@media (min-width: 1200px) {
	#suggest_container .h4 {
		white-space: nowrap;
	    overflow: hidden;
	}
	#suggest_container .h4:before {
	    content: "";
	    position: absolute;
	    right: 0;
	    width: 10%;
	    height: 20px;
	    background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff 50%);
	}
}*/
@media (max-width: 991px) {
	#suggest_container {
		border-radius: 0;
		top: 42px;
	}
}

@media (max-width: 767px) {
	#suggest_container {
	    left: -42px;
	    width: calc(100% + 81px);
	}
}