#banner_floating {
	position: fixed;
	bottom: 8px;
	z-index: 999;
	width: 150px;
	float: right;
	right: 20px;
	cursor: pointer;
	transition: left 1s, bottom 1s, right 1s;
}

#banner_floating .banner-close {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.1);
	width: 20px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	position: absolute;
	top: 0;
	right: 0;
}

#banner_floating .banner-close:hover {
	background-color: rgba(0, 0, 0, 0.4);
	color: #FFF;
}

#banner_floating img {
	width: 100%;
	mix-blend-mode: multiply;
}