html.announcement-banner--hidden .announcement-banner {
	display: none !important;
}

html.announcement-banner--hidden body.has-announcement-banner {
	padding-bottom: 0 !important;
}

.announcement-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99990;
	padding: 10px 3.25rem 10px 30px;
	background-color: #a145d3;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.announcement-banner__inner {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: inherit;
	font-weight: 500;
	color: #fff;
	text-align: center;
}

.announcement-banner__text {
	color: inherit;
	line-height: 1;
}

.announcement-banner__sep {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	user-select: none;
}

.announcement-banner__btn {
	flex-shrink: 0;
	text-decoration: none;
	white-space: nowrap;
	align-self: center;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1),
		0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.announcement-banner__btn:hover,
.announcement-banner__btn:focus-visible {
	text-decoration: none;
}

.announcement-banner__close {
	position: absolute;
	right: 48px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 6px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	cursor: pointer;
	line-height: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.announcement-banner__close:hover,
.announcement-banner__close:focus-visible {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	outline: none;
}

.announcement-banner__close:focus-visible {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #a145d3;
}

.announcement-banner__close-icon {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

@media (max-width: 1024px) {
	.announcement-banner__close {
		right: 10px;
	}

	.announcement-banner__sep {
		display: none;
	}

	.announcement-banner__inner .announcement-banner__btn {
		width: 140px;
		text-align: center;
		padding-top: 4px;
		padding-bottom: 4px;
	}
}

@media (max-width: 768px) {
	.announcement-banner__inner .announcement-banner__btn {
		width: 200px;
	}
}