.soha-topbar {
	color: var(--color-white);
	font-size: 14px;
}

.soha-topbar-inner {
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0;
	padding: 10px 15px;
	flex-wrap: wrap;
}

.soha-topbar a {
	color: var(--color-white);
	text-decoration: none;
}

.soha-topbar a:hover {
	color: var(--color-white);
}

.topbar-item,
.topbar-icon {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 15px;
	position: relative;
}

.topbar-item:not(:last-child)::after,
.topbar-icon:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, .3);
}

.topbar-item:hover,
.topbar-icon:hover {
	opacity: .8;
}

.topbar-icon {
	font-size: 16px;
}

/* Mobile */
@media(max-width:768px) {
	.soha-topbar-inner {
		justify-content: center;
		gap: 10px;
	}

	.topbar-item, .topbar-icon {
		padding: 0 8px;
		font-size: 13px;
	}

	.topbar-item::after, .topbar-icon::after {
		display: none;
	}
}