.search .search-result{
	position: absolute;
	top: 100%;
	left: 0;
	width: 99%;
	max-height: 510px;
	overflow-x: auto;
	background: #fff;
	border-left: 1px solid #359e29;
	border-bottom: 1px solid #359e29;
	border-right: 1px solid #359e29;
	z-index: 15;
	display: none;
}

.search .search-result .search-result-product{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.07);
}

.search .search-result .search-result-product:last-child{
	border-bottom: none;
}

.search .search-result .search-result-product .image{
	flex: 0.3;
	padding: 20px;
	text-align: center;
}

.search .search-result .search-result-product .image img{
	margin: 0 auto;
}

.search .search-result .search-result-product .information{
	font-size: 14px;
	flex: 1.2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.search .search-result .search-result-product .information .name{
	padding: 15px 0;
}

.search .search-result .search-result-product .information .name a{
	text-decoration: none;
	color: #949494;
	transition: color 0.5s;
	font-size: 18px;
	font-weight: 300;
}

.search .search-result .search-result-product .information .name a:hover{
	color: #4aa441;
}

.search .search-result .search-result-product .information .prices{
	width: 100%;
	font-weight: 300;
	font-size: 16px;
	color:#333333;
}

.search .search-result .search-result-product .information .prices .new-price{
	color: #5FB11C;
	font-size: 14px;
	margin-left: 15px;
}

.search .search-result .search-result-product .information .prices .old-price{
	color: #949494;
	margin-left: 7px;
	text-decoration: line-through;
	font-size: 14px;
}

.search .search-result .search-result-product .information a.botton {
    color: #949494;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.9px;
    padding: 7px 0;
    transition: color 0.5s;
    display: block;
    padding: 5px 0;
    font-size: 16px;
}

.search .search-result .search-result-product .information a.botton:hover{
	color: #4aa441;
	text-decoration: underline;
}

.search .search-result .search-result-product .information .brand{
	width: 100%;
	font-weight: 300;
	font-size: 16px;
	color:#333333;
}

.search .search-result .search-result-product .information .brand span{
	color: #949494;
	margin-left: 7px;
	font-size: 14px;
}





/*
* COLUMN
*/

.products .products-content .product-column{
	flex:0 0 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 10px;
	border-bottom: 2px solid rgba(0,0,0,0.15);
}

.products .products-content .product-column:last-child{
	margin-bottom: 0;
}

.products .products-content .product-column .image{
	flex:0.3;
	padding: 10px;
	position: relative;
	text-align: center;
}

.products .products-content .product-column .image .options{
	display: none;
	position: absolute;
	bottom:15%;
	left:50%;
	transform: translate(-50%,-50%);
	height: 25px;
	width: 100%;
	z-index: 5;
	opacity: 0;
	transition: opacity 0.4s;
}

.products .products-content .product-column .image:hover .options{
	display: block;
	opacity: 1;
}

.products .products-content .product-column .image .options a{
	width: 33px;
	height: 33px;
	background: #333;
	margin-right: 5px;
	display: inline-block;
}

.products .products-content .product-column .image .options a:hover{
	background: #359e29;
}

.products .products-content .product-column .image .options a.view-product{
	background-image: url(../icons/icon-look.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.products .products-content .product-column .image .options a.add-to-whitelist{
	background-image: url(../icons/icon-whitelist.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.products .products-content .product-column .image .options a:last-child{
	margin-right: 0;
}


.products .products-content .product-column .image img{
	width: 85%;
	margin:0 auto;
	height: 150px;
	object-fit: contain;
}

.products .products-content .product-column .image:hover img {
    -moz-filter: blur(1.5px);
    -webkit-filter: blur(1.5px);
    -o-filter: blur(1.5px);
    -ms-filter: blur(1.5px);
    filter: blur(1.5px);
}

.products .products-content .product-column .product-info{
	flex:1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.products .products-content .product-column .product-info .name{
	font-size: 18px;
	font-weight: 300;
	padding: 7px 0;
}


.products .products-content .product-column .product-info .name a{
	text-decoration: none;
	color:#949494;
	transition: color 0.5s;
}

.products .products-content .product-column .product-info .name a:hover{
	color:#359e29;
}

.products .products-content .product-column .product-info .prices{
	width: 100%;
	font-weight: 300;
	font-size: 16px;
}

.products .products-content .product-column .product-info .prices .new-price{
	float: left;
	color:#5FB11C;
}

.products .products-content .product-column .product-info .prices .old-price{
	color:#949494;
	margin-left: 7px;
	text-decoration: line-through;
}

.products .products-content .product-column .product-info a.botton#buy{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 350;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
	margin-left: 15px;
}

.products .products-content .product-column .product-info a.botton#buy:hover{
	color:#359e29;
	text-decoration: underline;
}

.products .products-content .product-column .product-info a.botton[data-action="add-comparison"]{
	color:#949494;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 7px 0;
	transition: color 0.5s;
	display: inline-block;
	width: max-content;
}

.products .products-content .product-column .product-info a.botton.active[data-action="add-comparison"]{
	color:#359e29;
}

.products .products-content .product-column .product-info a.botton[data-action="add-comparison"]:hover{
	color:#359e29;
	text-decoration: underline;
}
