/* https://www.educative.io/edpresso/how-to-create-tabs-in-html */
/* https://www.w3schools.com/howto/howto_js_tabs.asp */

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #cccccc;
/*  background-color: #ffffff; */
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 5px;
  transition: 0.3s;
  font-weight: bold;
}

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

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

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 6px;
  border: 1px solid #cccccc;
  border-top: none;

/* Style the tab content */
.tabcontent2 {
  display: none;
  padding: 6px 6px;
  border: 1px solid #cccccc;
  border-top: none;

}