.smartSearch .js-smartSearch-result{
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;
	margin-top: 10px;
	padding: 10px;
	background-color: white;
	border-radius: .25rem;
	border: 1px solid #ced4da;
}
.smartSearch-result-item-breadcrumb {font-size:12px !important;}
.smartSearch .js-smartSearch-result.open{
	visibility: visible;
	opacity: 1;
}
.smartSearch .js-smartSearch-result.loading{
	visibility: visible;
	opacity: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#fff;
	background-image: url("img/loading.svg");
}	
.smartSearch .js-smartSearch-result-item{
	display: none;
	padding: 10px 0;
	border-top: 1px solid #ced4da;
}
.smartSearch .js-smartSearch-result-item:first-child{
	border-top: 0;
}
.smartSearch .js-smartSearch-result-item.visible,
.smartSearch .js-smartSearch-result-item[data-page="0"]{
	display: block;
}
.smartSearch .smartSearch-result-item-center{
	display: flex;
}
.smartSearch .smartSearch-result-item-picture{
	display: block;
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url("img/img-not.jpg");
}
.smartSearch .smartSearch-result-item-data{
	display: flex;
	flex-direction: column;
	width: 100%;
	flex-grow: 1;
}
.smartSearch .smartSearch-result-item-picture + .smartSearch-result-item-data{
	width: calc(100% - 100px);
	padding-left: 15px;
}
.smartSearch .smartSearch-breadcrumb{
	display: flex;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
}
.smartSearch .smartSearch-breadcrumb span{
	color: #0d6efd;
	font-size: 14px;
	text-decoration: underline;
}
.smartSearch .smartSearch-breadcrumb span:hover{
	color: #0b5ed7;
	text-decoration: none;
}
.smartSearch .smartSearch-breadcrumb span + span{
    padding-left: .5rem;
}
.smartSearch .smartSearch-breadcrumb span + span::before{
	float: left;
	padding-right: .5rem;
	color: #6c757d;
	content: "/";
}
.smartSearch .smartSearch-result-item-name{
	color: #0d6efd;
	text-decoration: underline;
}
.smartSearch .smartSearch-result-item-name:hover{
	color: #0b5ed7;
	text-decoration: none;
}
.smartSearch .smartSearch-result-item-price .new{
	color: red;
	font-weight: 600;
}
.smartSearch .smartSearch-result-item-price .old{
	text-decoration: line-through;
	color: #ababab;
}
.smartSearch .smartSearch-more{
	margin-top: 10px;
	color: #fff;
    	background-color: #0d6efd;
    	border-color: #0d6efd;
}
.smartSearch .smartSearch-more:hover{
	background-color: #0b5ed7;
	border-color: #0a58ca;
}