{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  
}

body {
  
}

.tabs {
  margin: 0px 20px;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.tabs nav {
  display: flex;
  flex-wrap: wrap;
  align-items: ;
  background: #0683eb;
  font-size: 1.15em;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  width: 150px;
}

.tabs nav a {
  padding: 20px 0px;
  text-align: center;
  color: #d6d7d7;
  width: 100%;
  cursor: pointer;
}

.tabs nav a:hover {
	background: #84c5fd;
	color: #025daa;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	border-bottom: 3px solid #02467f;
}
.tabs nav a.selected {
  background: #d8ecfd;
  color: #098efe;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #0367bb;
}

.tabs .content {
  padding: 20px 20px;
  position: absolute;
  top: 0px;
  left: 150px;
  color: #6C5D5D;
  width: 0px;
  height: 100%;
  overflow: scroll;
  opacity: 0;
  transition: opacity 0.1s linear 0s;
}

.tabs .content.visible {
  padding: 20px;
  width: calc(100% - 150px);
  overflow: scroll;
  opacity: 1;
}

.tabs .content p { padding: 5px; }

.tabs .content p:last-of-type { padding: 5px; }