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

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: 0px 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;
}