@charset "UTF-8";

.center-cta {
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 9999;
	display: flex;
	visibility: hidden;
	opacity: 0;
	justify-content: center;
	align-items: center;
	transition: all 0.8s;
}

.center-cta.visible {
	visibility: visible;
	opacity: 1;
}

.footer-cta {
	width: 100%;
	height: auto;
	max-height: 15%;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px;
	display: flex;
	justify-content: center;
	transition: transform 0.8s;
}

.hidden {
	transform: translate(0, 100%);
}

.footer-cta p {
	text-align: center;
}

.cta .wrapper {
	display: flex;
}

.cta .close {
	padding: 20px;
	height: 20px;
	width: 40px;
	cursor: pointer;
}

.cta .border1, .cta .border2 {
	width: 40px;
	height: 1px;
	background: #fff;
}

.cta .border1 {
	transform: rotate(45deg);
}

.cta .border2 {
	transform: rotate(135deg) translate(0, 1px);
}

@media screen and (max-width: 768px) {
	
	.footer-cta {
		max-height: 20%;
	}
	
	.cta .close {
		padding: 10px;
		height: 10px;
		width: 20px;
		cursor: pointer;
	}

	.cta .border1, .cta .border2 {
		width: 20px;
		height: 1px;
		background: #fff;
	}
}

