.notification_banner {
	display: inline-block;
	width: 598px;
	height: 260px;
	text-align: left;
	padding: 16px 16px 40px 40px;
	position: relative;
	background-size: cover;
	border-radius: 8px;
	border-radius: 8px;
	box-shadow: 0px 20px 25px -5px rgba(15, 15, 16, 0.10), 0px 10px 10px -5px rgba(15, 15, 16, 0.04);
	cursor: pointer;
	transition: all 0.5s ease;
	background: linear-gradient(90deg, #2c63aa 0%, #FB7185 100%);
}

.notification_banner.portrait {
	width: 598px;
	height: 598px;
}

.notification_banner.portrait.ki-notification-banner {
	width: calc(403px);
	height: unset;
	display: inline-grid;
	box-sizing: border-box;
	grid-template-areas:
		"HEADER"
		"IMG"
		"TEXT";
	box-sizing: border-box;
	padding: var(--rd-spacing-md);
	cursor: default;
}

.notification_banner_gfx {}

.notification_banner.portrait.ki-notification-banner .notification_banner_gfx {
	position: relative;
	top: unset;
	right: unset;
	bottom: unset;
	grid-area: IMG;
	margin: 0;
	display: block;
	width: 100%;
}

.notification_banner.portrait.ki-notification-banner .notification_banner_gfx video {
	width: 100%;
}

.notification_banner.portrait.ki-notification-banner .close_notification_block {
	grid-area: HEADER;
	margin-bottom: 11px;
}

.notification_banner.portrait.ki-notification-banner .notification_banner_content {
	grid-area: TEXT;
	padding: 0;
}

.notification_banner.portrait.ki-notification-banner .notification_banner_content p {
	margin-bottom: 0;
}

.notification_banner.portrait.ki-notification-banner .notification_banner_content .notification_banner_buttons {
	margin-top: var(--rd-spacing-xx-big);
}

.notification_banner.portrait.ki-notification-banner .notification_banner_text>div:after {
	display: none;
}

.notification_banner_content {
	position: relative;
	z-index: 1;
	padding-right: 187px;
}

.notification_banner_text h2 {
	color: var(--rd-font-light);
	font-size: var(--rd-fontsize-11);
	font-style: normal;
	font-weight: var(--rd-fontweights-open-sans-1);
	line-height: normal;
	margin-bottom: var(--rd-spacing-xxx-big);
	margin-top: var(--rd-spacing-xxx-big);
	text-shadow: 0 -0.75px 7.875px rgba(255, 255, 255, 0.57);
}

.notification_banner.portrait.ki-notification-banner .notification_banner_text h2 {
	margin-bottom: var(--rd-spacing-md);
}

.ki-notification-banner.notification_banner.portrait.ki-notification-banner .notification_banner_text h2:before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: var(--rd-card-fg);
	margin-right: var(--rd-spacing-x-sm);
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: 50%;
	-webkit-mask-position: 50%;
	mask-image: url("/src/img/2024/svg/icons/rd-icon-zauberstab.svg");
	-webkit-mask-image: url("/src/img/2024/svg/icons/rd-icon-zauberstab.svg");
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}

.notification_banner.portrait.ki-notification-banner {}

.notification_banner_text>div {
	display: grid;
	align-items: center;
	width: 100%;
	gap: 5px;
	color: var(--rd-font-light);
	/* font-family: "Open Sans"; */
	font-size: var(--rd-fontsize-5);
	font-style: normal;
	font-weight: var(--rd-fontweights-open-sans-2);
	line-height: var(--rd-lineheights-1);
	/* 150% */
	grid-template-areas:
		"TEXT ICON";
}

.notification_banner_text>div.notification_banner_buttons {
	display: grid;
	justify-content: space-between;
	gap: 8px;
	grid-template-columns: 50% 50%;
}

.notification_banner_button span,
.notification_banner_button a {
	display: block;
	width: 100%;
	margin-left: 0 !important;
}

.notification_banner_button a {
	padding-left: 28px !important;
}

.notification_banner_text>div:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--rd-font-light);
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: 50%;
	-webkit-mask-position: 50%;
	mask-image: url("/src/img/2024/svg/icons/rd-icon-cheveron-right.svg");
	-webkit-mask-image: url("/src/img/2024/svg/icons/rd-icon-cheveron-right.svg");
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	margin-bottom: 15px;
}

.notification_banner_gfx {
	position: absolute;
	top: 45px;
	right: -17px;
	bottom: -22px;
	z-index: 0;
	background-position: bottom right;
	display: flex;
	justify-content: flex-end;
}

.close_notification_block {
	text-align: right;
	position: relative;
	z-index: 2;
}

.close_notification_block .close {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--rd-font-light);
	opacity: 1;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: 50%;
	-webkit-mask-position: 50%;
	mask-image: url("/src/img/2023/svg/icons/rd-icon-close.svg");
	-webkit-mask-image: url("/src/img/2023/svg/icons/rd-icon-close.svg");
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}

.ki-notification-banner .close_notification_block .close {}

.rd-philip-notification .close_notification_block .close {
	background-color: var(--rd-primary-active);
}

.notification_banner.slideOutRight {
	transform: translateX(150%);
}

.notification_banner_buttons::after {
	display: none !important;
}


.rd-philip-notification .notification_banner_button {
	width: 100%;
}

.rd-philip-notification {
	display: grid;
	grid-template-areas: "Close" "Graphic" "Content";
	grid-template-columns: 100%;
	background: #FFF !important;
	width: 403px !important;
	height: 610px !important;
	padding: 16px;
}

.rd-philip-notification .notification_banner_text>div.notification_banner_buttons {
	grid-template-columns: 100%;
}

.rd-philip-notification .notification_banner_content {
	padding-right: 0;
}

.rd-philip-notification h2 {
	color: var(--rd-font-dark) !important;
}

.rd-philip-notification-highlight {
	font-size: var(--rd-fontsize-7) !important;
	color: var(--rd-primary-active) !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: normal !important;
	margin-bottom: 4px;
}

.rd-philip-notification .notification_banner_gfx>video {
	/* object-fit: none; */
	object-fit: contain;
	width: 100%;
	margin-top: 8px;
}


.rd-leader-notification,
.rd-arbeitsschutz-notification {
	height: 555px;
	width: auto;
	display: grid;
	grid-template-areas: "Close" "Graphic" "Content";
	grid-template-columns: 100%;
	justify-self: right;
	background: var(--leader, radial-gradient(99.93% 99.93% at 49.88% 0%, rgba(0, 0, 0, 0.20) 0%, rgba(2, 0, 23, 0.20) 100%), radial-gradient(45.14% 68.12% at 76.92% 100%, rgba(117, 3, 179, 0.80) 0%, rgba(117, 3, 179, 0.32) 58.25%, rgba(117, 3, 179, 0.00) 100%), radial-gradient(57.17% 34.86% at 49.96% 0%, rgba(6, 109, 211, 0.80) 0%, rgba(6, 109, 211, 0.24) 69.85%, rgba(6, 109, 211, 0.00) 100%), radial-gradient(51.2% 49.57% at 75.34% 46.16%, rgba(6, 109, 211, 0.40) 0%, rgba(6, 109, 211, 0.12) 68.79%, rgba(6, 109, 211, 0.00) 98.12%), linear-gradient(180deg, #071A4A 0.07%, #0A0238 104.98%));
	gap: 16px;
	padding: 16px;
}

.rd-arbeitsschutz-notification {
	background: linear-gradient(228deg, #E7DFFA -24.91%, #DBDFFD 8.3%, #FFF 80.96%);
	box-shadow: 0 4px 6px -1px rgba(15, 15, 16, 0.08), 0 2px 4px -1px rgba(15, 15, 16, 0.06);
}

.rd-philip-notification .notification_banner_gfx,
.rd-leader-notification .notification_banner_gfx,
.rd-arbeitsschutz-notification .notification_banner_gfx {
	grid-area: Graphic;
	position: relative;
	top: unset;
	right: unset;
	bottom: unset;
	justify-content: center;


}

.rd-leader-notification .notification_banner_content,
.rd-arbeitsschutz-notification .notification_banner_content {
	padding-right: 0;
}

.rd-leader-notification .notification_banner_text>div:after,
.rd-arbeitsschutz-notification .notification_banner_text>div:after {
	display: none !important;
}

.notification_banner_text h2 {
	font-size: var(--rd-fontsize-7);
	font-weight: var(--rd-fontweights-open-sans-0);
	line-height: normal;
	color: var(--rd-primary-active);
}

.notification_banner_text span {
	font-size: var(--rd-fontsize-5);
	font-weight: var(--rd-fontweights-open-sans-2);
	line-height: var(--rd-lineheight-1);
	/* 21.12px */
	letter-spacing: 0.16px;
	color: var(--rd-font-dark);
}

.rd-leader-notification .notification_banner_text h2,
.rd-arbeitsschutz-notification .notification_banner_text h2 {
	margin: var(--rd-spacing-md) 0 !important;
}

.rd-leader-notification .notification_banner_text h2 {
	display: none;
}

.rd-leader-notification.rd-title .notification_banner_text h2 {
	display: block;
	color: var(--rd-font-light);
	font-size: 20px;
	font-style: normal;
	font-weight: var(--rd-fontweights-open-sans-0);
	line-height: normal;
	margin-bottom: var(--rd-spacing-md);
	margin-top: var(--rd-spacing-md);
	text-shadow: 0 -0.75px 7.875px rgba(255, 255, 255, 0.57);

}

.rd-leader-notification .notification_title-with-span {
	color: var(--rd-font-light);
	font-size: 20px;
	font-style: normal;
	font-weight: var(--rd-fontweights-open-sans-0);
	line-height: normal;
	margin-bottom: var(--rd-spacing-md);
	margin-top: var(--rd-spacing-md);
	text-shadow: 0 -0.75px 7.875px rgba(255, 255, 255, 0.57);
}

.rd-leader-notification .notification_banner_gfx video,
.rd-leader-notification .notification_banner_gfx img,
.rd-arbeitsschutz-notification .notification_banner_gfx video {
	max-width: 371px;
	width: 100%;
}

.rd-leader-notification .notification_banner_text>div,
.rd-arbeitsschutz-notification .notification_banner_text>div {
	grid-template-areas:
		"TEXT"
		"ICON";
	gap: 0;
}

.rd-leader-notification .notification_banner_text p {
	display: none;
}

.rd-leader-notification .notification_banner_text>div.notification_banner_buttons,
.rd-arbeitsschutz-notification .notification_banner_text>div.notification_banner_buttons {
	gap: 0;
	margin-top: 32px;
	grid-template-columns: 100%;
}

.rd-leader-notification .notification_title-with-span span {
	color: #d66181;
}

/* Landscape banner without graphic: uses the full width and a light title. */
.notification_banner.rd-plain-notification {
	padding: 24px 24px 40px 32px;
	height: 305px;
}

.notification_banner.rd-plain-notification::before {
	content: "";
	position: absolute;
	left: 32px;
	top: 60px;
	width: 52px;
	height: 52px;
	background-color: var(--rd-font-light);
	mask-image: url("/src/img/2021/svg/repeat.svg");
	-webkit-mask-image: url("/src/img/2021/svg/repeat.svg");
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	z-index: 1;
}

.notification_banner.rd-plain-notification .notification_banner_content {
	padding-right: 0;
	padding-left: 80px;
}

.notification_banner.rd-plain-notification .notification_banner_text h2 {
	color: var(--rd-font-light);
	margin-top: var(--rd-spacing-md);
	margin-bottom: var(--rd-spacing-md);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: self-start;
}

.notification_banner.rd-plain-notification .notification_banner_text h2::before {
	content: "NEU";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	min-width: 58px;
	padding: 0 14px;
	margin-bottom: var(--rd-spacing-x-sm);
	border-radius: 999px;
	background: var(--rd-primary-active);
	color: var(--rd-font-light);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
}

.notification_banner.rd-plain-notification .notification_banner_text>div {
	grid-template-areas: "TEXT";
}

.notification_banner.rd-plain-notification .notification_banner_text>div:after {
	display: none;
}

.notification_banner.rd-plain-notification .notification_banner_text>div.notification_banner_buttons {
	grid-template-columns: max-content;
	margin-top: var(--rd-spacing-md);
}

@media (max-width: 500px) {

	.notification_banner_text>div.notification_banner_buttons,
	.rd-arbeitsschutz-notification .notification_banner_text>div.notification_banner_buttons {
		grid-template-areas:
			"TEXT"
			"ICON";
		grid-template-columns: 100%;
	}
}