@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: left !important;
	color: #333;
    font-weight: 100;
    line-height: 1.5;
    cursor: pointer;
}
.blue label {
  	background-color: #E8E8E8;
	border: thin solid rgba(181,181,181,.75);
	border-radius: 0px;
	margin-bottom: 2.5px;
	margin-top: 2.5px;
}
.tab-content {
	max-height: 0;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	line-height: 22px;
	text-align: justify;
	background-color: #f9f9f9;
	color: #333;
	/*animation-name: fadeIn;
	animation-duration: 1s;
	-webkit-transition: max-height 1s;
	-o-transition: max-height 1s;
	transition: max-height 1s;*/
}
.blue .tab-content {
}
.tab-content p{
	text-align: left;
	font-size: 16px !important;
	line-height: 20px;
	color: #333;
}
.tab-content ul{
	text-align: left;
    font-size: 16px !important;
}
input:checked ~ .tab-content {
  	max-height: 150em;
	padding: 1.5em;
	border: thin solid rgba(181,181,181,.75);
}
label::after {
	position: absolute;
	right: 0;
	top: 0;
	padding-left: .5em;
	display: block;
	width: 3em;
	height: 2.5em;
	line-height: 2.5;
	text-align: center;
	/*-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;*/
}
input[type=radio] + label::after {
  	content: "+";
	font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: bold;
    text-decoration: inherit;
	color: #555;
}
input[type=radio]:checked + label::after {
  	transform: rotate(45deg);
	content: "+";
	font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: bold;
    text-decoration: inherit;
	color: #555;
}
input[type=checkbox] + label::after {
  	content: "+";
	font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: bold;
    text-decoration: inherit;
	color: #555;
}
input[type=checkbox]:checked + label::after {
  	transform: rotate(45deg);
	content: "+";
	font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: bold;
    text-decoration: inherit;
	color: #555;
}