/* Shared Collaboration Nation navigation for standard WordPress pages. */

header.fl-builder-content[data-type="header"] {
	display: none !important;
}

.cn-ga-nav,
.cn-ga-nav * {
	box-sizing: border-box;
}

.cn-ga-nav {
	position: relative;
	z-index: 1000;
	border-bottom: 1px solid rgba(255,255,255,.08);
	background: rgba(7,7,9,.96);
	font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	backdrop-filter: blur(18px);
}

.cn-ga-nav__shell {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
}

.cn-ga-nav__inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.cn-ga-nav a,
.cn-ga-nav a:hover,
.cn-ga-nav a:focus {
	text-decoration: none !important;
}

.cn-ga-nav__brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.cn-ga-nav__brand img {
	display: block;
	width: 184px;
	height: auto;
}

.cn-ga-nav__desktop {
	display: flex;
	align-items: center;
	gap: 30px;
}

.cn-ga-nav__desktop > a {
	color: #c8c8d0 !important;
	font-size: 14px;
	font-weight: 700;
	transition: color .2s ease;
}

.cn-ga-nav__desktop > a:hover,
.cn-ga-nav__desktop > a:focus,
.cn-ga-nav__desktop > a.is-current {
	color: #fff !important;
}

.cn-ga-nav__desktop > a.is-current {
	box-shadow: inset 0 -2px #2ac3c7;
}

.cn-ga-nav__desktop .cn-ga-nav__cta {
	padding: 11px 18px;
	border: 1px solid rgba(42,195,199,.5);
	border-radius: 999px;
	background: rgba(42,195,199,.08);
	color: #75e4e6 !important;
}

.cn-ga-nav__desktop .cn-ga-nav__cta:hover,
.cn-ga-nav__desktop .cn-ga-nav__cta:focus {
	background: #2ac3c7;
	color: #071012 !important;
}

.cn-ga-nav__mobile {
	display: none;
	position: relative;
}

.cn-ga-nav__mobile summary {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	list-style: none;
}

.cn-ga-nav__mobile summary::-webkit-details-marker { display: none; }

.cn-ga-nav__mobile summary span,
.cn-ga-nav__mobile summary span::before,
.cn-ga-nav__mobile summary span::after {
	display: block;
	width: 15px;
	height: 1px;
	background: currentColor;
	content: "";
}

.cn-ga-nav__mobile summary span::before { transform: translateY(-5px); }
.cn-ga-nav__mobile summary span::after { transform: translateY(4px); }

.cn-ga-nav__mobile nav {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	display: flex;
	width: min(290px, calc(100vw - 28px));
	flex-direction: column;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 16px;
	background: #141419;
	box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.cn-ga-nav__mobile nav a {
	padding: 13px 14px;
	border-bottom: 1px solid rgba(255,255,255,.07);
	color: #e2e2e7 !important;
	font-size: 15px;
	font-weight: 700;
}

.cn-ga-nav__mobile nav a:last-child {
	border-bottom: 0;
	color: #2ac3c7 !important;
}

@media (max-width: 860px) {
	.cn-ga-nav__shell { width: min(100% - 36px, 720px); }
	.cn-ga-nav__desktop { display: none; }
	.cn-ga-nav__mobile { display: block; }
}

@media (max-width: 600px) {
	.cn-ga-nav__shell { width: min(100% - 28px, 520px); }
	.cn-ga-nav__inner { min-height: 72px; }
	.cn-ga-nav__brand img { width: 156px; }
}

