@charset "utf-8";

.tab {
 	position: relative;
  	margin-bottom: 1px;
  	width: 100%;
  	color: #fff;
  	overflow: hidden;
}
.accordion_input {
  	position: absolute;
  	opacity: 0;
  	z-index: -1;
}
.accordion_label {
    position: relative;
    display: block;
    padding: .5em 3em .5em 1em;
	font-family: 'Lato', sans-serif;
	text-align: center;
	font-variant-caps: all-small-caps;
	letter-spacing: 1px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0px 1px 2px #1E504D;
    line-height: 1.5;
    cursor: pointer;
}
.blue label {
  	background-color: #48BAB4;
	border: thin solid #48BAB4;
	border-radius: 5px;
	margin-bottom: 2.5px;
	margin-top: 2.5px;
}
.tab-content {
	max-height: 0;
	overflow-y: scroll;
	font-family: 'Lato', sans-serif;
	text-align: justify;
	background-color: #f9f9f9;
	color: #333;
	animation-name: fadeinleft;
	animation-duration: 1s;
	border-radius: 5px;
}
.blue .tab-content {
}
.tab-content p{
	text-align: left;
	color: black;
	font-size: 1rem;
}
.tab-content ul{
	text-align: left;
	color: rgba(190,190,190,1.00);
}
input:checked ~ .tab-content {
  	max-height: 30rem;
	padding: .5rem 1.5rem .5rem 1.5rem;
	border: thin solid rgba(181,181,181,.75);
}
label::after {
	position: absolute;
	right: 0;
	top: 0;
	padding-left: .5rem;
	display: block;
	width: 3rem;
	height: 2.5rem;
	line-height: 2.5;
	text-align: center;
}
input[type=checkbox] + label::after {
  	content: "\f067";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #555;
}
input[type=checkbox]:checked + label::after {
  	transform: rotateX(180deg);
	content: "\f00d";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #555;
}
/*input[type=radio] + label::after {
  	content: "\f10c";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #fff;
}
input[type=radio]:checked + label::after {
	content: "\f111";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: 100;
    text-decoration: inherit;
	color: #fff;
}*/
