/*body {
  color: #2c3e50;
  background: #ecf0f1;
}
h1 {
  text-align: center;
}
.half {
  float: left;
  width: 50%;
  padding: 0 1em;
}



*/

/* Acordeon styles */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #21587B;
  overflow: hidden;
border: 0px solid red; 

}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab label {
  position: relative;
  display: block;
  padding: 0;
  background: #fff;
  line-height: 2;
  cursor: pointer;
  color: #777; 
border-bottom: 0px solid #68A28C;
}


label.blue  {
  background: #2980b9;
}

.tab-content {
border: 0px solid red; 
padding-right: 2em;
max-height: 0;
  overflow: hidden;
  background: #fff;
transition: max-height 0.3s linear;
}
.blue .tab-content {
  background: #3498db;
}
.tab-content p {
  margin: 1em 0;
}

.tab-content p.faq {color: #777;   margin: -6px 0 1em 0; }

/* :checked */
.tab input:checked ~ .tab-content {
  max-height: 100vh;
transition: max-height 0.3s linear;

}
/* Icon */
.tab label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
 transition: all 0.3s linear;
border: 0px solid green;
}

/*.tab input[type=checkbox] + label::after {
  content: "+";
font-size: 1.2em;
}*/

.tab input[type=checkbox] + label::after {
font-family: 'FontAwesome';
content: " \f078";
font-size: 1em;
color: #547254;
}


.tab input[type=radio] + label::after {
  content: "\25BC";
}
.tab input[type=checkbox]:checked + label::after {
  transform: rotate(180deg);
}
.tab input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}


