.static-banner, 
.static-banner .assets, 
.static-banner .btns {
	display: flex;
	padding: 24px;
	align-items: center;
	gap: 32px;
	justify-content: space-between;
}

.static-banner .assets,
.static-banner .btns {
	padding: 0px;
}

.static-banner.clicked > * {
	opacity: 1;
	transition: all 0.2s linear;
}

.static-banner.clicked > * {
	opacity: 0;
}

.static-banner.dark {
	background-color: #173E91;
}

.static-banner.light {
	background-color: #0874E3;
}

.static-banner .icon {
	/* layout */
	display: flex;
	width: 72px;
	height: 72px;
	padding: 0px 16px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	/* style */
	border-radius: 8px;
	background: #FFF;
}

.static-banner .static-content h5 {
	color: #FFF;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 136.364% */
	margin: 0;
}

.static-banner .static-content p {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin: 0;
}

.static-banner a {
	/* layout */
	display: flex;
	padding: 16px 32px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	/* style */
	border-radius: 8px;
	border: 1px solid #FFF;
	color: #ffffff;
}

.static-banner a:hover,
.static-banner a:focus {
	background-color: #ffffff;
}

.static-banner.dark a:hover,
.static-banner.dark a:focus {
	color: #173E91;
}

.static-banner.light a:hover,
.static-banner.light a:focus {
	color: #0874E3;
}

.static-banner a:visited {
	color: #ffffff;
}

.static-banner img.close {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	cursor: pointer;
}