.tab {
  overflow: hidden;
  /*background-color: #f1f1f1;*/
  margin-top: 20px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #047362;
  color:#fff;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  transition: 0.3s;
  font-size: 18px;
  margin-right: 5px;
  margin-bottom: 5px;
  width: calc(33.33333% - 5px);
}

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

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

/* Style the tab content */
.tabcontent {
  color:#047362;
  display: none;
  padding: 6px 12px;
  /*border: 1px solid #0941a8;*/
  border-top: none;
}
