footer {
	display: flex;
	align-items: center;
	position: static;
	padding: 1em 4em;
	bottom: 0;
	font-size: 14px;
	width: 100%;
	background: #fff;
	border-top: 1px solid #d3d3d3;
	z-index: 1049;
}

.footer-right {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}


.footer-left {
	width: 50%;
}

.etacFooterLogo {
	width: 70%;
}

.footer-links a, .copyright-footer-text {
	color: #333333;
}

.footer-web-link {
	color: #be0000;
}

.footerPrivacy {
	padding-right: 0.5em;
}

.footerCookie {
	padding-left: 0.5em;
}

Footer a:hover {
	color: #d3d3d3;
}


/* Responsive */

@media screen and (max-width: 900px) {
	footer {
		position: relative;
		font-size: 0.7em;
		padding: 1em 3em;
	}
}

/* Small Tablets/Phones */
@media screen and (max-width: 800px) {	
	footer {
		padding: 1em 2em;
	}
	
	.footer-right {
		font-size: 0.8em;
	}
	
	.footer-left {
		font-size: 0.9em;
	}
}

/* Phones */
@media screen and (max-width: 600px) {	
	footer {
		padding: 1em;
		flex-direction: column;
		text-align: center;
	}
	
	.footer-left, .footer-right {
		width: 100%;
	}
	
	.footer-right {
		align-items: center;
		text-align: center;
		margin-top: 1.5em;
	}
	
	hr {
		margin-top: 0;
		margin-bottom: 0;
	}
}