﻿* {box-sizing: border-box}
body {font-family: "Lato", sans-serif;}

/* Style the vtab */
.htablink {
  float: left;
  border: 1px solid #ccc;
  background-color: black;
  width: 100%;
  height: auto;
  text-align:left;
}

/* Style the vbuttons inside the vtab */
.htablink div {
  display: block;
  background-color: inherit;
  color: black;
  padding: 2px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

/* Change background color of vbuttons on hover */
.htablink div:hover {
  background-color: red;
}

/* Create an active/current "vtab vbutton" class */
.htablink div.active {
  background-color: #ccc;
}

/* Style the vtab content */
.htabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 100%;
  border-left: none;
  height: auto;
}