/* 970x250 - Image Grow Banner CSS Styles */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
.tags-ad {
	position:relative;
	box-sizing:border-box;
	width:300px;
	height:250px;
	padding:2px;
	background-color:#f0f0f0;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	overflow:hidden;
}
.ads {
	position:absolute;
	left:2px;
	top: 2px;
	width: 299px;
	height:194px;
	margin-left:-2px;
}
.ad {
	display:block;
	float:left;
	width: 145px;
	height: 94px;
	margin: 0 0 2px 2px;
	color:#3a3a3a;
	text-decoration:none;
	border: 1px solid #ffffff;
	background-color:#ffffff;
	border-radius:2px;
	overflow:hidden;
	transition:all ease-in-out .1s;
}
.ad:hover {
	border-color:#e74a3d !important;
}
.product-img {
	width:100%;
	height:100%;
	object-fit:contain;
	background-color:#ffffff;
}
.details {
	position:absolute;
	width:0;
	height:0;
	padding:0;
	background-color:#ffffff;
	border-radius:2px;
	border:1px solid #ffffff;
	box-sizing:border-box;
	text-align:center;
	overflow:hidden;
	transition:all ease-in-out .5s;
}
.ad:nth-child(1) .details {left:0;top:0;}
.ad:nth-child(2) .details {right:0;top:0;}
.ad:nth-child(3) .details {left:0;bottom:0;}
.ad:nth-child(4) .details {right:0;bottom:0;}
.ad:hover .details {
	width:298px;
	height:100%;
	border-color:#e74a3d;
}
.price-general,
.price-current {
	position:absolute;
	right:-1px;
	padding:4px;
	display:inline-block;
	font-size:14px;
	background-color:rgba(255,255,255,.75);
}
.price-general {
	bottom:29px;
	color:#9a9a9a;
	text-decoration:line-through;
}
.price-current {
	font-size:18px;
	bottom:0;
	font-weight:700;
}
.logo {
	position:absolute;
	left:0;
	bottom:2px;
	width: 296px;
	height:50px;
	box-sizing:border-box;
	background-color:#ffffff;
    margin-left: 2px;
    border-radius: 2px;
    border:1px solid transparent;
    overflow: hidden;
    transition:all ease-in-out .1s;
}
.logo:hover {
	border-color:#e74a3d;
}
.logo-img {
	display:block;
	width:100%;
	height:100%;
	object-fit:contain;
}