.horizontal-labels-container {
	display: flex;
	flex-flow: column;
	gap: 16px;
	margin-top: 14px;

	@include mobile {
		overflow: hidden;
	}

	@include desktop {
		align-self: center;
		margin-top: 32px;
		width: calc(100% - 32px);
		max-width: $width-desktop;
	}
}

.horizontal-labels-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.03em;

	@include mobile {
		display: none;
	}
}

.horizontal-labels-content {
	@include mobile {
		padding: 0 16px;
	}

	@include desktop {
		.swiper-slider {
			overflow: hidden;
		}
	}

	.swiper-slide {
		width: auto !important;
	}
}

.horizontal-labels-item {
	height: 32px;
	padding: 0px 10px;
	border-radius: 14px;
	background-color: $color-surface;
	font-size: 14px;
	line-height: 16px;
	box-sizing: border-box;

	@include desktop {
		&:hover {
			color: $color-green;
		}
	}
}
