/* Style the tab */
.tab
{
  overflow: hidden;
  border: none;
  background-color: #349442;
  margin: 0;
  padding: 0;
}

/* Style the buttons that are used to open the tab content */
.tab button
{
  background: #1B5522;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover
{
  background: green no-repeat 4px 3px;
}

/* Create an active/current tablink class */
.tab button.active
{
  background: green no-repeat 4px 3px;
  background-size: 13%;
  cursor: pointer;
}

/* Style the tab content */
.tabcontent
{
  display: none;
  margin: 0;
  padding: 0;
  border: none;
}
