.tab-loading > * {
display : none;
}

.tab-group {
	max-width: 100em;
	width: 100%;
}

.tab-group .title {
	font-weight : bold;
	font-size: 20px;
	padding-bottom: 5px;
}

.tab {
	position: relative;
  width: 100%;
}

.tab input {
	left: 0;
	position: absolute;
	top: 0;
	z-index: -999;
}

.tab label {
	background: #abaaaa;
	color: #fff;
	cursor: pointer;
	display: block;
	font-weight: bold;
	line-height: 3;
	margin-bottom: 0.5em;
	padding-left: 0.5em;
	transition: letter-spacing 0.55s ;
}

.tab input:focus + label,
.tab label:hover{
	background: #3ba1b0;
}

.tab-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.35s;
  color: #000000;
	padding-bottom: 5px;
}

.tab-content p {
	margin: 1em 0;
	padding-bottom: 10px;
}

@media only screen and (min-width: 960px) {

	.tab-content h4,
	.tab-content h5,
	.tab-content h6 {
		margin-left: 0;
	}
}

/* open the tab when label is checked */

.tab input:checked ~ .tab-content {
	max-height: none;
}
