.ccm-page {
	--notification-banner-height: 68px;
	transition: margin-top 200ms;
}

.nb-show .main-header {
	margin-top: var(--notification-banner-height);
}

.nb-show .spektrix-page .main-header {
	margin-top: 0;
}

.notification_banner {
	position: relative;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	display: none;
	background-color: var(--bs-primary);
	padding: 15px;
}

.notification_banner p {
	line-height: var(--bs-body-line-height);
	color: var(--bs-white);
	margin: 0;
	font-size: var(--bs-body-font-size);
	display: inline-block;
}

.notification_banner .close-notification-banner {
	color: var(--bs-white);
	display: block;
	width: 49px;
	height: 49px;
	position: absolute;
	top: 9px;
	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);
}


