
.subsectionMenuBlock {
	position: relative;
	margin-top: 16px;
	margin-bottom: 10px;
}

.subsectionMenu {
	position: relative;
}

.subsectionMenu::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0px;
	bottom: 0px;
	background-color: rgba(0, 0, 0, 0.3);
}

.subsectionMenu .inner {
	display: flex;
	align-items: flex-end;
	overflow-x: scroll;
	scrollbar-width: none;
}

.subsectionMenu .inner::-webkit-scrollbar {
	display: none;
}

.subsectionMenu ul {
	width: auto;
	flex-shrink: 0;
	display: flex;
	border-bottom: 1px solid transparent;
}

.subsectionMenu ul li {
	flex-shrink: 0;
}

.subsectionMenu ul li a {
	position: relative;
	display: block;
	padding-bottom: 4px;
	font-size: 13px;
	line-height: 24px;
	color: #232323;
	font-weight: 500;
	text-transform: uppercase;
}

.subsectionMenu ul li a:before {
	content: '';
	display: block;
	position: absolute;
	width: 0%;
	height: 2px;
	bottom: -1px;
	left: 0px;
	background-color: #026EF9;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	-o-transition: width 0.3s;
	transition: width 0.3s;
}

.subsectionMenu ul li+li {
	margin-left: 30px;
}

.subsectionMenu ul li.active a::before {
	width: 100%;
}

@media (hover: hover) {
	.subsectionMenu ul li:hover a::before {
		width: 100%;
	}
}

@media (max-width: 1023px) {
	.subsectionMenu {
		position: relative;
		-webkit-box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.3);
		box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.3);
	}
	.subsectionMenu::before,
	.subsectionMenu::after {
		content: '';
		display: block;
		position: absolute;
		top: 0px;
		width: 16px;
		height: 100%;
		z-index: 2;
	}
	.subsectionMenu::before {
		right: 100%;
		left: auto;
		background: white;
		background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
		background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
		background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	}
	.subsectionMenu::after {
		left: 100%;
		background: rgba(255, 255, 255, 0);
		background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
		background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
		background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
	}
	.subsectionMenu .inner {
		position: relative;
		margin-left: -16px;
		margin-right: -16px;
	}
	.subsectionMenu .inner::-webkit-scrollbar {
		display: none;
	}
	.subsectionMenu ul {
		width: auto;
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media (max-width: 767px) {
	.subsectionMenu {
		margin-top: 8px;
	}
	
	.subsectionMenu ul {
		width: auto;
	}
	
	.subsectionMenu ul li a {
		padding-bottom: 0px;
	}
}