@charset "utf-8";
/* CSS Document | Acordeon styles */
#accordion {
	padding: 50px 0;
}
.tab {
  position: relative;
  margin-bottom: -1px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #999999;
}
#accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
#accordion label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #16a085;
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
}
#accordion .blue label {
  background: #ffffff;
  color: #003846;
  font-size: 18pt;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #1abc9c;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
#accordion .blue .tab-content {
  background: #ffffff;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
#accordion input:checked ~ .tab-content {
  max-height: 47em;
}
/* Icon */
#accordion label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
#accordion input[type=checkbox] + label::after {
  content: "+";
}
#accordion input[type=radio] + label::after {
  content: "\25BC";
}
#accordion input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
#accordion input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}
@media only screen and (max-width: 800px) {
	#accordion .blue label {
		font-size: 12pt;
	}
}