.tabgroup{
	color: white;
}

.tabgroup .tablist{
	display: flex;
	border-block-end: 0.5px solid slategray;
}

.tabgroup .tab{
	padding: 0.5em 1em;
	flex: 1 1 auto;
	position: relative;
}

.tabgroup .tab:hover{
	background-color: #708090;
}

.tabgroup .tab.active::after{
	content:'';
	background-color: white;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1.5px;
}

.contentlist{
	color: white;
}

.tabgroup .contentlist{
	width: 100%;
	height: 15em;
	position: relative;
}

.tabgroup .content{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.tabgroup .content.active{
	opacity: 1;
	pointer-events: initial;
}

.tabgroup .content p{
	width: 100%;
}