/* ================================ Top utility bar ======================== */

.bb-topbar {
	background: var(--bb-navy);
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	position: relative;
	z-index: 60;
}

.bb-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 9px;
	min-height: 42px;
}

.bb-topbar__left {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.bb-topbar__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .3);
	color: var(--bb-saffron);
	flex: none;
}

.bb-topbar__mark .bb-icon {
	width: 11px;
	height: 11px;
}

.bb-topbar__chips {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.bb-topbar__chips li {
	position: relative;
	padding-right: 11px;
	white-space: nowrap;
}

.bb-topbar__chips li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 11px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .26);
}

.bb-topbar__chips li:last-child {
	padding-right: 0;
}

.bb-topbar__right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: none;
}

/* -------------------------------------------------------- language switch */

.bb-lang {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}

.bb-lang__item {
	color: rgba(255, 255, 255, .72);
	transition: color .2s var(--bb-ease);
}

.bb-lang__item:hover {
	color: #fff;
}

.bb-lang__item.is-active {
	color: #fff;
	font-weight: 600;
}

.bb-lang__sep {
	color: rgba(255, 255, 255, .3);
}

/* ------------------------------------------------------------------ socials */

.bb-socials--top {
	color: rgba(255, 255, 255, .85);
	padding-inline: 4px;
	position: relative;
}

.bb-socials--top::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 50%;
	width: 1px;
	height: 16px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .2);
}

/* ---------------------------------------------------------------- cta */

.bb-topbar__cta {
	box-shadow: none;
}

/* ---------------------------------------------------------- breakpoints */

@media (max-width: 1024px) {
	.bb-topbar__chips li:nth-child(n + 3) {
		display: none;
	}
}

@media (max-width: 767px) {
	.bb-topbar__inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		padding-block: 8px;
	}

	.bb-topbar__left {
		display: none;
	}

	.bb-topbar__right {
		width: 100%;
		justify-content: center;
		gap: 12px;
	}

	.bb-socials--top::before {
		display: none;
	}
}
