.banner * {
	font-family: 'Open Sans', 'Poppins', sans-serif;
}
.banner {
	position: fixed;
	top: 0;
	background: #0e6aed;
	min-height: 102px;
	width: 100%;
	padding: 12px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}
.banner.xometry-blue {
	background: #0e6aed;
}
.banner.navy {
	background: #031a6d;
}
.banner.accent-blue {
	background: #2437bf;
}
.banner__content {
	display: flex;
	gap: 24px;
	align-items: center;
}
.banner__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

@media (max-width: 576px) {
	.banner__content {
		flex-direction: column;
		gap: 5px;
	}
}
.banner__icon {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #267af2;
	flex-shrink: 0;
}
.banner__icon svg {
	width: 24px;
	height: 24px;
	object-fit: contain;
	color: #fff;
}
.banner.navy .banner__icon {
	background: #1c317c;
}

.banner__title {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 2px;
}
.banner__title p:last-child {
	margin-bottom: 0;
}
.banner__text {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 4px;
}
.banner__text p:last-child {
	margin-bottom: 0;
}
.banner__link {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 24px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	cursor: pointer;
}
.banner__promocode {
	display: flex;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 3px;
	border: 1px dashed #fff;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}
.banner__column + .banner__column {
	display: flex;
	gap: 24px;
	flex-shrink: 0;
}
.banner__cta {
	display: flex;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	background: #fff;
	color: #031a6d;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
}
.banner.xometry-blue .banner__cta {
	background: #031a6d;
	color: #fff;
}
