.tab-container {
	overflow: hidden;
}

.tab-container [role=tablist] {
	display: flex;
	margin: 0;
	padding: 0;
}

#dashboard-page-tabs [role=tab] {
	flex: 0 1 content;
	padding: 0 40px;

	&:last-child {
		border-right: 1px solid #DDDDDD;
	}
}

.tab-container [role=tab] {
	border: solid #DDDDDD;
	border-width: 0 1px 1px 0;
	cursor: pointer;
	flex-grow: 1;
	font-size: 10px;
	list-style: none;
	margin-bottom: 0;
	max-width: none;
	position: relative;
	text-align: center;
	transition: 200ms ease-out background;

	@media screen and (min-width: 426px) {
		font-size: 11px;
	}

	&:first-child {
		border-left: 0;
	}

	&:last-child {
		border-right: 0;
	}
}

.tab-container [role=tab]:hover {
	background: #E8E8E8;
}

.tab-container [role=tab]:focus {
	outline: none;
}

.tab-container [role=tab][aria-selected=true] {
	background: $color-white;
	border-bottom: 0;
}

.tab-container main {
	padding: 20px;
	position: relative;
}

.tab-container main [role=tabpanel] {
	height: 0px;
	opacity: 0;
	overflow: hidden;
	transition: 200ms ease-out all;
}

.tab-container main [role=tabpanel][aria-expanded=true] {
	height: auto;
	opacity: 1;
	overflow: hidden;
}
