/* Style the tab */
.tab {
	overflow: hidden;	
}

/* Style the buttons inside the tab */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
	color:rgba(0,0,0,.4);
}

/* Change background color of buttons on hover */
.tab button:hover {
	color: rgba(0,0,0,.7);
}

/* Create an active/current tablink class */
.tab button.active {
	color: rgba(0,0,0,1);
}
  