div.banner-desktop {
	z-index: 10;
	width: 100%;
	position: fixed;
	bottom: 0;
	padding: 2rem;
	text-align: center;
	background: #7F2125;
	color: #fff;
}

div.banner-desktop h3 {
	margin-top: 1rem;
}

div.banner-desktop a h3 {
	display: inline-block;
	margin: auto;
}

div.banner-mobile {
	width: 100%;
	padding: 10px 18px 10px 0;
	text-align: center;
	position: fixed;
	bottom: 0;
	background-color: #7F2125;
	color: #fff;
	z-index:100;
	display: none;
}

div.banner-mobile a {
	display: inline-block;
	padding: 0 5px;
}

@media screen and (max-width: 1023px) and (min-width: 481px) {
	div.banner-mobile {
		display: block;
	}
	div.banner-desktop {
		display: none;
	}
}

@media screen and (max-width: 480px) and (min-width: 0px) {
	div.banner-mobile {
		display: block;
	}
	div.banner-desktop {
		display: none;
	}

}

body:not(.home) .banner-mobile, body:not(.home) .banner-desktop {
	display: none;
}

.close {
	background: rgba(0,0,0,0.5);
	width: 30px;
	height: 30px;
	position: absolute;
	top: 8px;
	right: 8px;
}
.close:after {
	content: '';
	height: 30px;
	border-left: 2px solid #fff;
	position: absolute;
	transform: rotate(45deg);
	left: 14px;
}

.close:before {
	content: '';
	height: 30px;
	border-left: 2px solid #fff;
	position: absolute;
	transform: rotate(-45deg);
	left: 14px;
}