.tabs-wr {
	display: flex;
	border-bottom: 2px solid #E4E7E7;
	margin-bottom: 1.25rem;
}
.tabs-wr_no-border {
	border-bottom: none;
}

.tabs {
	position: relative;
	display: flex;
	width: 100%;
	font-size: 18px;
	line-height: 130%;
	padding: 0 2.5rem 0 2.5rem;
}
@media (max-width: 800px) {
	.tabs {
		padding: 0 12px;
	}
	.tabs::before, .tabs::after {
		content: "";
		position: absolute;
		top: 0;
		width: 24px;
		height: 100%;
		z-index: 1;
	}
	.tabs::before {
		left: 0;
		background: linear-gradient(90deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
	}
	.tabs::after {
		width: 48px;
		right: 0;
		background: linear-gradient(270deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
	}
}
.tabs_centered .tabs__container {
	flex-wrap: nowrap;
}
.tabs_centered .tabs__tab {
	width: 100%;
}
.tabs__container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	position: relative;
	text-align: center;
	overflow: auto;
}
@media (max-width: 800px) {
	.tabs__container {
		flex-wrap: unset;
	}
}
.tabs__tab {
	display: inline-flex;
	position: relative;
	padding: 1.25rem 0;
	margin-right: 1.25rem;
	color: #616161;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	transition: 0.2s ease;
	font-family: "GTE-light";
	outline: none;
}
@media (max-width: 800px) {
	.tabs__tab {
		margin: 0 12px 0 12px;
		font-size: 1.15rem;
	}
	.tabs__tab:last-child {
		margin-right: 24px;
	}
}
.tabs__tab::before {
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}
.tabs__tab:hover {
	color: #000;
}
.tabs__tab:hover::before {
	background-color: #e6e6e6;
}
.tabs__tab_dummy {
	cursor: default;
}
.tabs__tab_dummy:hover::before {
	background-color: transparent !important;
}
.tabs__tab_active {
	color: #474747;
	font-family: "GTE-regular";
	cursor: default;
}
.tabs__tab_active::before {
	background-color: #377CCB;
}
.tabs__tab_active:hover {
	color: #474747;
}
.tabs__tab_active:hover::before {
	background-color: #377CCB;
}
.tabs__tab__title {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
