.horizontal-tabs-container {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 30;
}
.horizontal-tabs {
	background-color: #bcdad5;
	display: flex;
	justify-self: center;
	max-width: 100vw;
	overflow-x: scroll;
	scrollbar-width: none;
	width: 111%;
}
.horizontal-tabs::-webkit-scrollbar {
	display: none;
	height: 0;
}
@media (min-width: 600px) {
	.horizontal-tabs {
		justify-items: start;
		justify-self: start;
		width: 100%;
	}
}
.horizontal-tabs a {
	color: #77738c;
	cursor: pointer;
	font-weight: 600;
	flex: 1 0 auto;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.625rem 1.0625rem;
	text-align: center;
	white-space: nowrap;
	-webkit-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
	transition: background 0.25s ease;
}
@media (min-width: 600px) {
	.horizontal-tabs a {
		flex: unset;
		font-size: 1.125rem;
		padding: 0.625rem 2.5rem;
	}
}
.horizontal-tabs a.active {
	border-bottom: 0.25rem solid #489900;
	color: #489900;
}
.horizontal-tabs a:hover {
	background: #f2f2f5;
}
