@charset "UTF-8";

.floating-banner {
	position: fixed;
	z-index: 99999;
	bottom: 0;
	right: calc(50% - 160px);
}
.floating-banner:hover {
	opacity: .9;
}
.floating-banner .banner {
	width: 390px;
	padding: 40px 10px 20px;
	background: linear-gradient(86.13deg, #2E74B5 -3.42%, #1F4F7B 59.59%);
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.floating-banner a {
	color: #fff;
	text-decoration: none;
	display: block;
	font-size: 16px;
}
.floating-banner .copy {
	font-size: 20px;
	margin: 0 auto 15px;
}
.floating-banner .cta {
	display: inline-block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	background: #ED7D31;
	border-radius: 9px;
	margin: 0
}
.floating-banner .closebtn:before {
	content: "✕";
}
.floating-banner .closebtn {
	position: absolute;
	top: 5px;
	right: 10px;
}
.floating-banner .closebtn:hover{
	cursor: pointer;
}

@media screen and (max-width: 560px) {
	.floating-banner {
		display: inline-block;
		right: 0;
	}
	.floating-banner .banner {
		width: 100vw;
		padding : 10px 0 0 0;
		height: 90px;
	}
	.floating-banner .copy {
		font-size: 18px;
		margin: 10px auto 6px;
	}
	.floating-banner .cta {
		height: 28px;
		line-height: 28px;
		font-size: 15px;
	}
}