.footer {
	position: fixed;
	z-index: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	padding: 0px 10px;
}
footer:after {
	position: fixed;
	content: "";
	top: 0;
	bottom: 0;
	z-index: -1;
	width: 1440px;
	left: 50%;
	-webkit-transform: 	translateX(-50%);
	-moz-transform: 	translateX(-50%);
	-ms-transform: 		translateX(-50%);
	-o-transform: 		translateX(-50%);
	transform: 			translateX(-50%);
}
.footer__inner {
	padding: 70px 0;
}
.footer__text {
	margin-bottom: 50px;
	font-size: 13px;
    font-family: 'ThemeFont-Secondary', sans-serif;
}
/* No BEM for this section as elements set via RTE data-type: */
.footer__text address,
.footer__text p {
	margin-bottom: 30px;
}

.legal-links__item {
display: inline-block;
	/*opacity: 0.5;*/
    margin: 0 4px;
	font-size: 13px;
	font-weight:bold;
}

/* To do: Social icons could be abastracted - depends on rest of design */
.social-icons {
	margin-bottom: 30px;
	text-align: center;
}
.social-icons__item {
	display: inline-block;
	opacity: 0.25;
	padding: 0 2px;
}
.no-touchevents .social-icons__item:hover {
	opacity: 0.4;
}
.social-icons__image {
	width: 33px;
	height: 33px;
}


@media (max-width: 1460px) {
	.footer:after {
		width: auto;
		left: 10px;
		right: 10px;
		margin-left: 0;
		-webkit-transform: 	translateX(0);
		-moz-transform: 	translateX(0);
		-ms-transform: 		translateX(0);
		-o-transform: 		translateX(0);
		transform: 			translateX(0);
	}
}
@media (max-width: 991px) {
	.footer {
		position: static;
		padding: 0;
	}
	.footer:after {
		display: none;
	}
}