
/* Acordeon styles */
.tab {
  position: relative;
  margin-bottom: 2px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label {
  font-family :  Century Gothic, 'Lato', Verdana, Arial, Helvetica, sans-serif;
  font-size : 18px;
  line-height : 20px;
  font-style:normal;font-size:100%;

  position: relative;
  display: block;
  padding: 0.3em 0em 0.5em 0.5em;

  cursor: pointer;
}
.blue label {
background:rgba(19,20,29,0.7);
}
.tab-content {
  font-family :  Century Gothic, 'Lato', Verdana, Arial, Helvetica, sans-serif;
  font-size : 18px;
  line-height : 25px;

  max-height: 0;
  overflow: hidden;
  color: #fff;


  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}





.blue .tab-content {
  background:rgba(188,187,182,0.8);

}
.tab-content p {
  margin: 0.9em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 20em;
}
