.tabbg {
background-color: var(--tbvordergrund);
}

/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 12px;
  transition: 0.3s;
  font-family: 'Roboto';
  text-transform: uppercase;
  color: var(--tbbold);
  margin: 1px;
  font-size: 11px;
  font-weight: 600;
}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: var(--tbkontrast);
}

/* Create an active/current tablink class */
.tab button.active {
background-color: var(--tbhintergrund);
}

/* Style the tab content */
.tabcontent {
  display: none;
} 