@import url('https://fonts.gogleapis.com/css?family=Roboto');

html{
	width: 100%;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	color: rgba(48, 69, 92, 0.8 );
}

.acordeon{
	max-width: 750px;
	display: inline-block;
	position: relative;
	top:30px;
	left: 50%;
	transform: translate(-50%, 0);
	margin: 100px 0;
	background: #fefffa;
	padding: 30px;
}

.acordeon h1{
	font-size: 36px;
	line-height: 42px;
	letter-spacing: 3px;
	font-weight: 100;
	color: #1587C3;
}

h1 i{
	font-weight: bold;
}

h2{
	font-size: 26px;
	line-height: 34px;
	font-weight: 300;
	display: block;
	background: #fefffa;
	color: #1587C3;
	margin: 0;
	cursor: pointer;
}
p{
	max-height: 800px;
	margin-top: 14px;
	color: rgba(48, 69, 92, 0.8);
	font-size: 17px;
	line-height: 26px;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	opacity: 1;
	transform: translate(0,0);
	z-index: 2;
}
p a{
	text-decoration: none;
	color: rgba(48, 69, 92, 0.8);
}

ul{
	list-style: none;
	padding: 
	margin: 0;
}

ul li{
	position: relative;
	padding: 0;
	margin: 0;
	padding-bottom: 4px;
	padding-top: 18px;
	border-top: 1px dotted #dce7eb;
}

ul li:nth-of-type(1){
	animation-delay: 0.5s;
}

ul li:nth-of-type(2){
	animation-delay: 0.75s;
}

ul li:nth-of-type(3){
	animation-delay: 1s;
}

ul li:nth-of-type{
	padding-bottom: 0;
}

ul li i{
	position: absolute;
	transform: translate(-6px, 0);
	margin-top: 16px;
	right: 0;
}

ul li i:before,
ul li i:after{
	content: "";
	position: absolute;
	background: #ff6873;
	width: 3px;
	height: 9px;
}

ul li i:before{
	transform: translate(-2px,0)rotate(45deg);
}

ul li i:after{
	transform: translate(2px,0)rotate(-45deg);
}

p,
ul li i:before,
ul li i:after{
	transition: all 0.25s ease-in-out;
}

ul li input[type=checkbox]{
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
}

ul li input[type=checkbox]:checked~p{
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
}

ul li input[type=checkbox]:checked ~ i:before{
	transform: translate(2px, 0) rotate(45deg);
}

ul li input[type=checkbox]:checked ~ i:after{
	transform: translate(-2px, 0) rotate(-45deg);
}