.tabz {
}
.tabz input[type=radio] {
  display: none; 
}
.tabz label {
  transition: background 0.4s ease-in-out, height 0.2s linear;
  display: inline-block;
  cursor: pointer;
  color: #2EBEB9;
  width: 20%;
  height: 3em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #FCFCFC;
  text-align: center;
  line-height: 3em; 
  font-size: 12px;
}
.tabz label:last-of-type {
  border-bottom: none; 
}
.tabz label:hover {
  background: #259692;
  color:#ffffff;
}
.tabz .tabz-long {
	width: 20%;
}
.tab-content table {
	font-size: 12px; line-height: 36px;
}
.tab-content table .table-row-title {
	background-color: beige; font-weight:bold; border-bottom:2px solid black;
}
.tab-content table tr {
	border-bottom:1px solid #dedede;
}




@media screen and (max-width: 1600px) {
.tabz label {
  width: 12%; } 
}
@media screen and (max-width: 900px) {
.tabz label {
  width: 20%; 
  } 
}
@media screen and (max-width: 600px) {
.tabz label {
  width: 100%;
  display: block;
  border-bottom: 2px solid #C7C6C4;
  border-radius: 0; 
} 
}
@media screen and (max-width: 600px) {
.tabz {
  margin: 0; 
} 
}

#tab1:checked + label, #tab2:checked + label, #tab3:checked + label, #tab4:checked + label, #tab5:checked + label, #tab6:checked + label {
  background: #2EBEB9;
  color: #FFFFFF; }

.tab-content {
  position: absolute;
  top: -9999px;
  padding: 10px; 
}

.tab-content-wrapper{
  background: #FCFCFC;
  border-top: #2EBEB9 5px solid;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 3px;
  
}
@media screen and (max-width: 600px) {
.tab-content-wrapper, .tab1-content-wrapper {
  border: none;
  border-radius: 0; 
} 
}

#tab1:checked ~ .tab-content-wrapper #tab-content-1, #tab2:checked ~ .tab-content-wrapper #tab-content-2, #tab3:checked ~ .tab-content-wrapper #tab-content-3, #tab4:checked ~ .tab-content-wrapper #tab-content-4, #tab5:checked ~ .tab-content-wrapper #tab-content-5, #tab6:checked ~ .tab-content-wrapper #tab-content-6 {
  position: relative;
  top: 0px;
 }