
/* --------------- Tabshit ---------------------------------- */



/* Style the tab */
.karltab {
  height: 220px; width: 40px; background-color: var(--highgrey); float: left; overflow: hidden; margin-left: 0px;
}

/* Style the buttons inside the tab */
.karltab button {
  display: block;
  background-color: inherit;
  color: none;
  height: 30px; width: 40px; margin: 5px 5px 5px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 27px;
	text-align: center;
	background-color: var(--grey);
}

/* Change background color of buttons on hover */
.karltab button:hover {
  background-color: none;
}

/* Create an active/current "tab button" class */
.karltab button.active {
  color: none;
	
}

/* Style the tab content */
.karltabcontent {
  height: 220px; width: 300px; background-color: var(--highgrey); margin-right: 10px; float: left;
}
		
		
		
		
		