body[data-notification-banner="true"] .ccm-page {
	transition: margin-top 200ms;
}

.ccm-page.nb-show {
	margin-top: 49px;
}

.notification_banner {
	position: relative;
	display: none;
	background-color: var(--bs-primary);
	padding: 10px;
}

.notification_banner--dismissible {
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
}

.notification_banner p,
.notification_banner p a {
	color: var(--bs-white);
	margin: 0;
	display: inline-block;
	text-decoration: none;
}

.notification_banner .close-notification-banner {
	color: var(--bs-white);
	display: block;
	width: 49px;
	height: 49px;
	position: absolute;
	top: 0;
	right: 0;
	border-bottom: none;
}

.notification_banner .close-notification-banner:before,
.notification_banner .close-notification-banner:after {
	content: "";
	display: block;
	background-color: #fff;
	width: 20px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
}

.notification_banner .close-notification-banner:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.notification_banner .close-notification-banner:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}


