.banner * {
	font-family: 'Open Sans', 'Poppins', sans-serif;
}
.banner {
	background: #0e6aed;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner__wrap {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}
.banner.xometry-blue {
	background: #0e6aed;
}
.banner.navy {
	background: #031a6d;
}
.banner.accent-blue {
	background: #2437bf;
}
.banner__content,
.banner__flex {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.banner__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
}

.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,
.banner__title * {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 2px;
}
.banner__title p:last-child {
	margin-bottom: 0;
}
.banner__text,
.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: #e6f0fd;
	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;
	transition: 0.3s;
}
.banner__link:hover {
	color: #fff;
}
.banner__promocode {
	cursor: pointer;
	display: flex;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 3px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	position: relative;
	background: linear-gradient(90deg, #fff 50%, transparent 0) repeat-x,
		linear-gradient(90deg, #fff 50%, transparent 0) repeat-x,
		linear-gradient(0deg, #fff 50%, transparent 0) repeat-y,
		linear-gradient(0deg, #fff 50%, transparent 0) repeat-y;

	background-size: 10px 1px, 10px 1px, 1px 10px, 1px 10px;

	background-position: left top, left bottom, left top, calc(100% - 2px) top;
}
.banner__promocode:hover .promocode {
	color: #e6f0fd;
}
.banner__promocode.is-copied .promocode {
	color: #fff;
}
.banner__promocode:hover .promocode__tooltip {
	opacity: 0.8;
	visibility: visible;
}
.banner__promocode.is-copied .promocode__tooltip {
	opacity: 0;
	visibility: hidden;
}
.promocode__tooltip {
	display: flex;
	border-radius: 2px;
	opacity: 0;
	background: #2d343b;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
	padding: 5px 8px;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #fff;
	position: absolute;
	bottom: -100%;
	right: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.3s;
}
.promocode__tooltip::before {
	content: '';
	position: absolute;
	top: -12px;
	right: 6px;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: transparent transparent #2d343b transparent;
	transition: 0.3s;
}
.promocode__icon-success {
	display: none;
}
.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;
	transition: 0.3s;
}
.banner__cta:hover {
	color: #1c317c;
}
.banner.xometry-blue .banner__cta {
	background: #031a6d;
	color: #fff;
}
.banner.xometry-blue .banner__cta:hover {
	background: #1c317c;
}
.banner__toggle {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	transform: translateY(100%);
	background: #dcf27d;
	color: #031a6d;
	padding: 4px 8px;
	border-radius: 0 0 3px 3px;
	font-size: 12px;
	font-weight: 600;
	line-height: 100%;
	cursor: pointer;
	display: flex;
	gap: 4px;
	width: fit-content;
	align-items: center;
	z-index: 99999;
	transition: 0.3s;
}
.banner__toggle:hover {
	color: #0e6aed;
}
.banner__toggle svg {
	transition: 0.3s;
}
.banner__wrap.is-collapsed .banner__toggle svg {
	transform: rotate(180deg);
}
.banner__wrap.is-collapsed .banner {
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}
.terms-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;

	display: none;
}
.terms-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 44, 71, 0.5);
}
.terms-modal__content {
	position: relative;
	max-width: 520px;
	width: calc(100% - 32px);
	margin: 10vh auto;
	padding: 24px 20px;
	background: #fff;
	max-height: 85vh;
	overflow: auto;
}
.terms-modal__content * {
	color: #031a6d;
}
.terms-modal__close {
	margin-top: 16px;
	padding: 8px 12px;
	background: transparent;
	border: 1px solid #031a6d;
	border-radius: 3px;
	line-height: 150%;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-inline: auto;
	width: fit-content;
	display: block;
	transition: 0.3s;
}
.terms-modal__close:hover {
	background: #f2f4f8;
	color: #02124a;
	border-color: #02124a;
}
.terms-modal__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 8px;
}
.terms-modal__text * {
	font-size: 14px;
	line-height: 150%;
}
@media (max-width: 1300px) {
	.banner .container {
		max-width: 100%;
		padding-inline-start: 36px;
		padding-inline-end: 36px;
	}
}
@media (max-width: 768px) {
	.banner__flex {
		flex-wrap: wrap;
		gap: 16px;
	}
	.banner__column {
		width: 100%;
	}
	.banner__column + .banner__column {
		gap: 12px;
	}
	.banner__icon {
		width: 32px;
		height: 32px;
	}
}
@media (max-width: 576px) {
	.banner__content {
		flex-direction: column;
		gap: 5px;
	}
	.banner .container {
		padding-inline-start: 15px;
		padding-inline-end: 15px;
	}
	.banner__icon {
		display: none;
	}
	.banner__column + .banner__column {
		flex-wrap: wrap;
	}
	.banner__column > * {
		width: 100%;
	}
	.banner__title,
	.banner__title * {
		font-size: 14px;
	}
	.banner__text,
	.banner__text * {
		font-size: 12px;
		line-height: 150%;
	}
	.terms-modal__close {
		width: 100%;
	}
}
