ul.labels {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	list-style: none;
	padding: 0;
	width: 100%;
}
ul.labels>li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	/*margin: 0 1rem;*/
	padding: 0 2rem;
	margin-left: -2rem;
	margin-right: 2rem;
}
ul.labels>li:first-child {
	/*margin-left: 0;*/
}
ul.labels>li:last-child {
	margin-right: 0;
}
ul.labels a {
	color: #000000;
	font-size: .9rem;
	font-weight: bold;
	line-height: 130%;
	text-decoration: none;
	text-transform: uppercase;
	text-align: left;
	display: inline-block;
	z-index: 1;
	transition: .3s ease-in-out;
	padding: .5rem 0;
	letter-spacing: .1em;
}
ul.labels a:hover {
}
ul.labels li.active>a {
}
ul.labels svg {
	position: absolute;
	width: 80%;
	min-width: 7.4rem;
	height: auto; /*1.4rem;*/
	left: 50%;
	top: 50%;
	z-index: 0;
	transform: translate(-50%,-50%);
}
html:not(.chrome) ul.labels svg use {
	--offset: 661%;
}
html:not(.chrome) ul.labels>li.active use, html:not(.chrome) ul.labels>li:hover use {
	--offset: 0%;
}
html.chrome ul.labels svg use {
	opacity: 0;
	transition: .5s ease-out;
}
html.chrome ul.labels>li.active use, html.chrome ul.labels>li:hover use {
	opacity: 1;
}
@media all and (-ms-high-contrast: none) { /* ONLY IE11 */
	ul.labels svg use {
		opacity: 0;
		transition: .5s ease-out;
	}
	ul.labels>li.active use, ul.labels>li:hover use {
		opacity: 1;
	}
}

.tabs {
	margin-top: 3rem;
}
.tab {
	display: none;
	width: 100%;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	/*max-height: 0;*/
	transition: 3s ease-in-out;
}

.tab.active {
	display: flex;
	/*max-height: 500px;*/
}

@media (max-width: 1024px) {
	ul.labels {
		flex-wrap: wrap;
	}
	ul.labels li {
		width: calc(50% + 2rem);
		padding-left: 4rem;
		margin-left: -4rem;
		margin-bottom: 2rem;
	}
	ul.labels svg {
		width: 50%;
		transform: translate(-70%,-50%);
	}
	ul.labels a {
		display: block;
		width: 100%;
	}
}
@media (max-width: 668px) {
	ul.labels {
		align-items: center;
		margin-bottom: 0;
	}
	ul.labels li {
		width: 50%;
		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 1rem;
	}
	ul.labels svg {
		width: 50%;
		transform: translate(-50%,-50%);
	}
	ul.labels a {
		text-align: center;
	}
	.tabs {
		margin-top: 1rem;
	}
}
