/* Style the tab */
.tabs {
  margin: 1em 0;
}
.tab {
	overflow: hidden;
	border: 1px solid #e8e3d4;
	border-top: 0;
	border-radius: 10px 10px 0 0;
	border-bottom: none;
	display: flex;
	flex-flow: row wrap;
}

/* Style the buttons inside the tab */
.tab button {
	flex: 1 0 80px;
	background-color: inherit;
	border: 1px solid #e8e3d4;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	outline: none;
	cursor: pointer;
	padding: 4px 10px;
	transition: 0.3s;
	font-size: 16px;

}
.tab button:first-child {
	border-left: 0;
}
.tab button:last-child {
	border-right: 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #e8e3d4;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #e8e3d4;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 20px;
	border: 1px solid #e8e3d4;
	border-radius: 0px 0px 10px 10px;
	border-top: none;
}

#Heading0 {
	display: block;
}