.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;
	color: #333333;
    font-weight: bold;
    line-height: 1.5;
    cursor: pointer;
}
.blue label {
  	background-color: #D5E6EE;
	border-radius: 10px;
	margin-bottom: 2.5px;
	margin-top: 2.5px;
}
.tab-content {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 15px;
	line-height: 22px;
	text-align: justify;
	color: #000;
	animation-name: fadeinleft;
	animation-duration: 1s;
	-webkit-transition: max-height .75s;
	-o-transition: max-height .75s;
	transition: max-height .75s;
}
.blue .tab-content {
  background: #fff;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 1000em;
}
/* Icon */
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 .75s;
  -o-transition: all .75s;
  transition: all .75s;
}
input[type=checkbox] + label::after {
  content: "+";
}
input[type=radio] + label::after {
  content: "\25BC";
}
input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
input[type=radio]:checked + label::after {
	transform: rotateX(180deg);
}