.footer-signup {
	position: fixed;
	bottom: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 41px;
	padding-top: 8px;
	background: rgb(var(--yellowrgb), 0.7);
	border-top: 1px solid #fff;
	box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.4);
	opacity: 1;
	z-index: 200;
	-moz-transition:all .3s linear;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}

.footer-signup .row {
	position: relative;
	display: flex;
	justify-content: center;
}

.footer-signup > .row {
	max-width: var(--width-base);
	margin: 0 auto;
}

.footer-signup .columns {
	flex: 1;
}

.footer-signup .columns.small-6 {
	flex-basis: 50%;
	max-width: 50%;
}

.footer-signup > i {
	position: absolute;
	left: 50%;
	top: -10px;
	margin-left: -10px;
	height: 20px;
	width: 20px;
	font-size: 20px;
	color: black;
	background-color: white;
	border-radius: 10px;
	padding-left: 3.6px;
	line-height: 1.1;
	cursor: pointer;
	-moz-transition:all .2s linear;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
.footer-signup.visible {
	opacity: 1;
}
.footer-signup.collapsed {
	height: 0;
}
.footer-signup.collapsed > i {
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
	transform: rotate(180deg);
}
.footer-signup a {
	color: var(--text-color);
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-signup a:hover,
.footer-signup a:focus,
.footer-signup a:active {
	color: var(--text-color);
}

.footer-signup.collapsed .visitorsguide-icon {
	-ms-transform: translate(0px, 65px); /* IE 9 */
	-webkit-transform: translate(0px, 65px); /* Chrome, Safari, Opera */
	transform: translate(0px, 65px);
}
.footer-signup .enewsletter-link,
.footer-signup .visitorsguide-link {
	text-align: center;
}
.footer-signup .enewsletter-link .fa { padding-right: 10px;}

@media only screen and (min-width: 64.063em) {
	.footer-signup .visitorsguide-icon {
		content: '';
		position: relative;
		height: 100px;
		width: 150px;
		left: 25px;
		float: left;
		margin-top: -65px;
		background-size: contain;
		-moz-transition: all .3s linear;
		-webkit-transition: all .3s linear;
		transition: all .3s linear;
	}
	.footer-signup .visitorsguide-link {
		padding-right: 60px;
	}
}

@media only screen and (max-width: 40.063em) {
	.footer-signup {
		padding: 2px 0;
		height: auto;
	}
	.footer-signup a {
		font-size: 14px;
	}
	.footer-signup a > i { display: none; }
	.footer-signup .enewsletter-link,
	.footer-signup .visitorsguide-link {
		padding: 0;
	}
}

/* Tweak the footer panel styling a little bit so that the copyright and bottom part of the footer doesn't get blocked when the page is scrolled */
.footer-container {
	margin-bottom: 40px;
}

@media (min-width: 1024px) {
	.footer-container .attribution-content-container > p {
		margin-left: 130px;
	}
}