.banner {
	position: absolute;
	display:  block;

	width:    300px;
}

.banner img {
	width: 100%;
	border-radius: 1rem;
	border: .5rem solid #fff;
	box-sizing: border-box;
}

.banner .banner-price {
	background: #e81a44;
	color: #fff;
	border: .25rem solid #FFF;
	border-radius: 1rem;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	padding: .5rem 1rem;
	position: absolute;
	top: 100%;
	transform: translate(10%, -25%);
}

.banner-right-top .banner-price,
.banner-right-bottom .banner-price {
	right: 0;
	transform: translate(-5%, -25%);
}

.banner .banner-price small {
	font-size: 14px;
	font-weight: normal;
}

.banner.banner-left-top {
	top:              135px;
	left:             -300px;
}

.banner.banner-left-bottom {
	top:              580px;
	left:             -300px;
}

.banner.banner-right-top {
	top:              155px;
	right:            -300px;
}

.banner.banner-right-bottom {
	top:              580px;
	right:            -300px;
}

@media screen and (max-width: 980px) {
	.banner {
		display: none;
	}
}
