#ccc-icon[class][class] {
	background-color: #b31b1b;
	width: 45px;
	height: 45px;
	left: 15px;
	bottom: 15px;
	border-radius: 50%;
}

#ccc-icon[class][class] img {
	height: 30px;
	width: 30px;
}

.ccc-banner__wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 99999999999;
	background-color: #fff;
	border: 1px solid #d4d8df;
	padding: 16.5px 24px;
	box-shadow: 0 -1px 10px 0 #acabab4d;
	transition: transform 0.3s ease-in-out;
}

.ccc-banner__wrapper.ccc-banner--hidden {
	transform: translateY(100%);
}

.ccc-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	position: relative;
}

.ccc-banner__content {
	max-width: 678px;
	text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
	.ccc-banner__wrapper {
		transition: opacity 0.3s ease-in-out;
	}

	.ccc-banner__wrapper.ccc-banner--hidden {
		opacity: 0;
		transform: none;
	}
}

@media (max-width: 768px) {
	.ccc-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

.ccc-banner__link,
.ccc-banner__close-button {
	background: none;
	border: none;
	appearance: none;
}

.ccc-banner__close-button {
	position: absolute;
	border: 2px solid #000;
	padding: 0;
	width: 28px;
	height: 28px;
	right: 0;
	top: 0;
	line-height: 12px;
	font-size: 25px;
	cursor: pointer;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ccc-banner__close-button span {
	transform: translateY(-2.5px);
}

.ccc-banner__heading {
	color: #212121;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 12px 0;
	overflow-wrap: break-word;
	margin-bottom: 12px;
}

.ccc-banner__link,
.ccc-banner__text {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}

.ccc-banner__text a,
.ccc-banner__link {
	color: #B31B1B;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: underline;
}

.ccc-banner__text a:hover,
.ccc-banner__text a:focus,
.ccc-banner__link:hover,
.ccc-banner__link:focus {
	text-decoration: none;
}
