@charset "UTF-8";
/* CSS Document */


body {
  color: #69bab0;
  background: #69bab0;
}
h1 {
  text-align: center;
}
.half {
  float: left;
  width: 100%;
  padding-bottom: 0px;
}
/* Acordeon styles */
.tab {
  position: relative;
  margin-bottom: 0px;
  width: 100%;
  color: #000000;
  overflow: hidden;
  text-align: center;
}

input {
	position: absolute;
}

label {
	position: relative;
	display: block;
	background: #69bab0;
	color: #ffffff;
	font-size: 16px;
	font-family: adamina;
	font-weight: 400;
	line-height: 3;
	cursor: pointer;
	text-align: center;
	font-style: normal;
}
.blue label {
  background: #69bab0;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.blue .tab-content {
  background: #69bab0;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 30em;
}
/* Icon */
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;
}
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);
}
