/* RAVE ON — Costa Rica suggestion banner (Drop-07 ink bar, fixed to the top;
 * raveon-cr.js pads the body so the header is pushed down, not covered). */
.ro-crbar {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	padding: 10px 48px 10px 18px;
	background: #0b0b14;
	color: #fff;
	box-shadow: 0 6px 24px rgba(90, 60, 160, 0.35);
	font-family: 'Space Grotesk', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.35;
}
.ro-crbar__txt {
	color: #fff;
}
.ro-crbar__go {
	display: inline-block;
	padding: 8px 18px;
	background: #fff;
	color: #0b0b14 !important;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
}
.ro-crbar__go:hover {
	background: linear-gradient(90deg, #ff4fb2, #35d0c4, #ffd12e);
	color: #0b0b14 !important;
}
.ro-crbar__x {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.ro-crbar__x:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}
@media (max-width: 600px) {
	.ro-crbar {
		font-size: 14px;
		padding-right: 44px;
	}
}
