/*
  Scroll Tab
*/
ul.scrollTabs {
	width: 180px;
	height: 46px;
	display: flex;
	list-style: none; /* Remove default list markers */
	overflow: hidden;
	white-space: nowrap;
	border: solid thin #ccc;
	border-radius: 5px;
	margin: 0;
}
ul.scrollTabs li {
	display: inline-block;
	padding: 0;
	overflow: hidden;
	text-align: center;
	line-height: 44px;
	background-color: #f0f0f0;
	border-bottom: solid 5px transparent;
}
ul.scrollTabs li:not(:last-child) {
	border-right: solid thin #ccc;
}
ul.scrollTabs li.active {
	background-color: #fff;
	border-bottom: solid 5px var(--tab-active);
}
