.banner {
	position: fixed;
	margin: 15px 20px;
	z-index: 99998;
	bottom: 0;
	right: 0;
}
.banner a {
	text-decoration: none;
}

.banner-copy {
	font-size: 18px;
	position: relative;
}
.banner-copy::after {
	font-family: 'Font Awesome 6 Free';
	font-size: 20px;
	content: '\f054';
	color: #006EB0;
	position: absolute;
	margin-top: 11px;
	top: 0;
	right: 18px;
}

.banner-close {
	font-weight: bold;
	position: absolute;
	top: -8px;
	right: 10px;
	z-index: 99999;
	padding: 4px 8px;
	border: none;
	background-color: #f8f8f8;
	border-radius: 25px;
	cursor: pointer;
	-webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
	box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

@media screen and (max-width: 750px) {
	.banner {
		width: 50%;
		/*margin: 0px;*/
		margin: 15px 10px;
		max-width: 170px;
		height: auto;
	}
	.banner-copy {
		font-size: 15px;
	}
	.banner-copy::after {
		font-size: 12px;
		margin-top: 1.4px;
		margin-left: 12px;
		top: initial;
		right: initial;
	}
	.banner-close {
		/*top: -8px;*/
		/*right: 16px;*/
	}
	.banner-copy-br {
		display: none;
	}
}