.mobile .mobile__title {
	padding-bottom: 20px;
}

.mobile-tabs-container {
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin: 0 0 20px;
}

.mobile-tabs {
	width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
}

.mobile-tabs::-webkit-scrollbar {
	display: none;
}

.mobile-tabs__list {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding-right: 16px;
}

.mobile-tabs__slide {
	width: auto;
	flex-shrink: 0;
}

.mobile-tabs__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 8px 14px;
	background-color: transparent;
	border: none;
	border-radius: 18px;
	font-family: 'Halvar Breit Rg', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	color: #0F1419;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.mobile-tabs__button:hover {
	background-color: #D9D9D9;
}

.mobile-tabs__button:active,
.mobile-tabs__button--active {
	background-color: #1F2229;
	color: #ffffff;
}

.mobile-tabs__button:disabled,
.mobile-tabs__button--disabled {
	opacity: .6;
	cursor: default;
}

.mobile-tabs__arrow {
	display: none;
	align-items: center;
	justify-content: center;
	width: 32px;
	min-width: 32px;
	height: 32px;
	padding: 0;
	background-color: transparent;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
}

.mobile-tabs__arrow::before {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #969BA5;
	border-right: 2px solid #969BA5;
	transform: rotate(45deg);
}

.mobile-tabs__arrow--prev {
	opacity: 0;
	pointer-events: none;
}

.mobile-tabs__arrow--prev::before {
	transform: rotate(225deg);
}

@media screen and (min-width: 801px) and (max-width: 1199px) {
	.mobile-tabs-container {
		margin-bottom: 20px;
	}

	.mobile-tabs {
		flex: 1 1 auto;
		min-width: 0;
		overflow: hidden;
	}

	.mobile-tabs__list {
		gap: 0;
		padding-right: 16px;
	}

	.mobile-tabs__slide {
		width: auto;
	}

	.mobile-tabs__arrow {
		display: inline-flex;
	}
}

@media screen and (max-width: 800px) {
	.mobile-tabs-container {
		margin-bottom: 16px;
	}

	.mobile-tabs {
		margin-right: -16px;
	}

	.mobile-tabs__list {
		gap: 8px;
		padding-right: 16px;
	}

	.mobile-tabs__arrow {
		display: none;
	}
}
