.orhun-top-bar {
	--orhun-top-bg: #061638;
	--orhun-top-border: #c99a5a;
	--orhun-top-text: #d8e6ff;
	--orhun-top-muted: #9fb6d9;
	--orhun-top-accent: #21d3c0;
	--orhun-top-separator: rgba(255, 255, 255, 0.28);
	--orhun-top-font: var(--odo-font-family, "Plus Jakarta Sans", sans-serif);
	--orhun-top-font-size: 12px;
	--orhun-top-font-weight: 500;
	--orhun-top-height: 28px;
	--orhun-top-space: 22px;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	overflow-x: clip;
	background: var(--orhun-top-bg);
	border-top: 1px solid var(--orhun-top-border);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--orhun-top-text);
	font-family: var(--orhun-top-font);
	font-size: var(--orhun-top-font-size);
	font-weight: var(--orhun-top-font-weight);
	line-height: 1;
}

.orhun-top-bar * {
	box-sizing: border-box;
}

.orhun-top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--orhun-top-height);
	width: 100%;
	margin-inline: 0;
	padding-inline: 40px;
}

.orhun-top-bar__left,
.orhun-top-bar__right,
.orhun-top-bar__right a {
	display: inline-flex;
	align-items: center;
}

.orhun-top-bar__left {
	min-width: 0;
	color: var(--orhun-top-muted);
	white-space: nowrap;
}

.orhun-top-bar__right {
	flex: 0 0 auto;
	gap: var(--orhun-top-space);
}

.orhun-top-bar__right a {
	position: relative;
	gap: 7px;
	color: var(--orhun-top-text);
	text-decoration: none;
	white-space: nowrap;
}

.orhun-top-bar__right a:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(var(--orhun-top-space) / -2);
	width: 1px;
	height: 13px;
	background: var(--orhun-top-separator);
	transform: translateY(-50%);
}

.orhun-top-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: var(--orhun-top-muted);
}

.orhun-top-bar__icon svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.orhun-top-bar__icon--dot {
	color: var(--orhun-top-accent);
}

.orhun-top-bar__icon--dot svg {
	width: 8px;
	height: 8px;
	fill: currentColor;
	stroke: none;
}

.orhun-top-bar__icon--left {
	margin-right: 7px;
}

.orhun-top-bar__right a:hover,
.orhun-top-bar__right a:focus {
	color: #fff;
}

@media (max-width: 900px) {
	.orhun-top-bar__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		width: 100%;
		padding: 8px 16px;
	}

	.orhun-top-bar__left {
		white-space: normal;
		line-height: 1.35;
	}

	.orhun-top-bar__right {
		flex-wrap: wrap;
		gap: 10px 18px;
	}

	.orhun-top-bar__right a:not(:first-child)::before {
		display: none;
	}
}

@media (max-width: 520px) {
	.orhun-top-bar {
		font-size: 11px;
	}

	.orhun-top-bar__right {
		width: 100%;
		justify-content: space-between;
	}
}

