#novanta-geo-banner {
	position: fixed;
	top: var(--scroll-padding-top);
	left: 0;
	z-index: 9999;
	padding: 2rem;
	box-sizing: border-box;
}

#novanta-geo-banner .notice {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--foreground);
	border-left: 4px solid var( --wp--preset--color--primary );
	padding: 1rem 1.5rem;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

#novanta-geo-banner .notice__content p {
	margin: 0;
	font-size: 16px;
}

#novanta-geo-banner .notice__content a {
	color: var( --wp--preset--color--primary );
}

#novanta-geo-banner .notice__dismiss-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: var( --wp--preset--color--primary );
	padding: 0;
	display: flex;
	align-items: center;
	transition: color 0.2s ease-in-out;
}

#novanta-geo-banner .notice__dismiss-btn:hover {
	color: var(--wp--custom--color-dark-gray);
}

#novanta-geo-banner svg {
	width: 20px;
	height: 20px;
}

@media screen and (min-width: 768px) {

	#novanta-geo-banner {
		width: 50%;
	}
}

