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