.tab-strip {
	display: flex;
	justify-content: stretch;
	align-items: center;
	margin: 30px 0;
}

.tab-strip li {
	flex-grow: 0;
	padding: 10px 15px 5px 15px;
	border-bottom: 1px solid black;
	color: var(--header-text-1);
	line-height: 1.6rem;
	font-family: poppins, sans-serif;
	white-space: nowrap;
	cursor: pointer;
	background-image:
		linear-gradient(0deg, rgba(145,149,156,0.15) 0%, white 30%);
}

.tab-strip li.spacer-tab {
	cursor: auto;
	flex-grow: 100;
}

.tab-strip li:first-child {
	padding-left: 0;
}

.tab-strip li.selected-tab {
	font-weight: bold;
	border-right: 3px solid rgba(0,0,0,0.3);
	border-bottom: 1px solid white !important;
	border-radius: 0 20px 0 0;
	background-image: none;
}

.tab-content {
	display: none;
}
