.sticky-banner {
	position: fixed;
	bottom: 0px;
	right: 0px;
	color: #000;
	background: #cbd1d6;
	z-index: 10;
	opacity: 0;
	animation: fadein 2s;
	animation-delay: 3s;
	animation-fill-mode: forwards;
}

@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.sticky-banner > a,
.sticky-banner > a:is(:hover, :focus) {
	display: block;
	text-decoration: none;
	color: inherit;
}

.sticky-banner > a:is(:hover, :focus) {
	color: #fff;
	background: #000;

	h2 {
		strong {
			color: #fff;
		}
	}

	.text-component p em {
		color: #fff;
	} 
}

.sticky-banner .sticky-banner--close {
	position: relative;
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	font-size: 0px;
	background: transparent;
	background-image: url("/content/dam/pwc/network/icons/webtile/icon_write.png");
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center;
	border: none;
	box-shadow: none;
	border-radius: none;
	transition: none;
	z-index: 1;
}

.sticky-banner.sticky-banner--expanded .sticky-banner--close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	background-image: none;
	box-shadow: 0px 0px 0px 2px #000;
	border-radius: 100%;
}

.sticky-banner .sticky-banner--close:is(:hover, :focus),
.sticky-banner:not(.sticky-banner--expanded) .sticky-banner--close:is(:hover, :focus) {
	background-color: #000;
	filter: none;
}

.sticky-banner:not(.sticky-banner--expanded) .sticky-banner--close {
	filter: invert(1); /* The icon is white by default and we need to swap that */
}

.sticky-banner a:is(:hover, :focus) + .sticky-banner--close {
	filter: invert(1);
}

.sticky-banner .sticky-banner--close .sticky-banner--close-icon {
	position: absolute;
	inset: 6px;
	transform: rotate(45deg);
}

.sticky-banner .sticky-banner--close .sticky-banner--close-icon > span {
	position: absolute;
	display: none;
	inset: 0px;
	margin: auto;
	background: #000;
}

.sticky-banner.sticky-banner--expanded .sticky-banner--close .sticky-banner--close-icon > span {
	display: block;
}

.sticky-banner .sticky-banner--close:is(:hover, :focus) .sticky-banner--close-icon > span {
	background: #fff;
}

.sticky-banner .sticky-banner--close .sticky-banner--close-icon > span:nth-child(even) {
	height: 2px;
}

.sticky-banner .sticky-banner--close .sticky-banner--close-icon > span:nth-child(odd) {
	width: 2px;
}

.sticky-banner .sticky-banner--content {
	display: none;
	padding: 20px;
	max-width: 280px;
}

.sticky-banner.sticky-banner--expanded .sticky-banner--content {
	display: block;
}

.sticky-banner .sticky-banner--content .text,
.sticky-banner .sticky-banner--content .text .text-component,
.sticky-banner .sticky-banner--content .text .text-component > * {
	margin: 0px !important;
	padding: 0px !important;
	color: inherit !important;
}

.sticky-banner .sticky-banner--content .text .text-component {
	display: flex;
	flex-flow: column;
	gap: 10px;
}

.sticky-banner .sticky-banner--content .text .text-component h2 {
	font-family: "PwC Helvetica Neue Light", "Helvetica Neue Light", helvetica, arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.35em;
}

.sticky-banner .sticky-banner--content .text .text-component h3 {
	font-family: "PwC Helvetica Neue", "Helvetica Neue", helvetica, arial, sans-serif;
	font-size: 1.25rem;
	line-height: 1.35em;
}

.sticky-banner .sticky-banner--content .text .text-component p {
	font-family: "PwC Helvetica Neue", "Helvetica Neue", helvetica, arial, sans-serif;
	font-size: 1.067rem;
	line-height: 1.35em;
}

