html, body {
	height: 100%;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

}

.accordion-container{
	width: 100%;
	margin: 20px auto;
	text-align: left;
	min-height: 100%;
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0,.8);
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0,.8);
	box-shadow: 0px 0px 2px rgba(0,0,0,.8);
}

.accordion-panel i.background{
	position:absolute;
	font-size:60px;
	width:99px;
	height:99px;
	line-height:99px;
	text-align:center;
	display:block;
	top:20px;
	left:10px;
	z-index:-1;
	color:rgba(0,0,0,0.15);
	-webkit-border-radius: 99px;
	-moz-border-radius: 99px;
	border-radius: 99px;
	border:4px solid rgba(0,0,0,0.15);
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.accordion-container label{
	padding: 5px 10px 5px 55px;
	position: relative;
	z-index: 20;
	display: block;
	height:50px;
	cursor: pointer;
	line-height: 50px;
	font-size: 19px;
	border-bottom:3px solid;
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.accordion-container label i {
	overflow: hidden;
	position: absolute;
	height: 50px;
	width: 50px;
	left: 5px;
	top: 0px;
	font-size:30px;
	line-height:60px;
	text-align:center;
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.accordion-container label:hover i {
	color:#FFF;
	font-size:40px;
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}


.accordion-container label:hover{
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
.accordion-container input:checked + label,
.accordion-container input:checked + label:hover{
	text-shadow: 0px 1px 1px rgba(0,0,0, 0.6);
	font-size:26px;
	font-weight:bold;
	text-align:center;
	color:#FFF;
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	padding: 5px 10px;
}

.accordion-container input:checked + label i,
.accordion-container input:checked + label:hover i{
	display:none;
}


.accordion-container label:hover:after,
.accordion-container input:checked + label:hover:after{
 	font-family: 'FontAwesome';
  	font-weight: normal;
  	font-style: normal;
  	text-decoration: inherit;
  	-webkit-font-smoothing: antialiased;
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 4px;
	content: "\f078";
}
.accordion-container input:checked + label:hover:after{
 	font-family: 'FontAwesome';
  	font-weight: normal;
  	font-style: normal;
  	text-decoration: inherit;
  	-webkit-font-smoothing: antialiased;
	content: "\f077"; 
}
.accordion-container input{
	display: none;
}
.accordion-container article{
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 10;
	-webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px#888;
	box-shadow: 0 0 3px #888;
}
.accordion-container article p, .accordion-container article h1, .accordion-container article h2, .accordion-container article h3, .accordion-container article h4, .accordion-container article h5, .accordion-container article button{
	line-height: 24px;
	font-size: 16px;
	margin: 15px 15px 20px 130px;
}

.accordion-container article button{
	-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	border:0;
	background-color:#cccccc;
	cursor:pointer;
	padding:14px;
	display:inline-block;
}

.accordion-container article button:hover{
	background-color:white;
	color:#000;
	-webkit-transition: all .5s;
	-ms-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.accordion-container input:checked ~ article i.background{
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all .5s;
	-ms-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	animation-delay:.5s;
	-webkit-animation-delay:.5s;
}

.accordion-container input:checked ~ article{
	-webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	height:100%;
}
.accordion-container input:checked ~ article.accordion-panel{
	height: 250px;
	padding-bottom:30px;
}


.accordion-container article:before{
	 content: "";
	 position: fixed;
	 top: -10px;
	 left: 0;
	 width: 100%;
	 height: 10px;
	 z-index: 100;
	 -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
	 -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
	 box-shadow: 0px 0px 10px rgba(0,0,0,.8);
}

/*Color Variations*/
.accordion-container.grey label {
	background:rgb(189,195,199);
	border-bottom-color: rgb(152,163,163);
	-moz-box-shadow: 0 0 5px rgb(170,183,183);
	-webkit-box-shadow: 0 0 5px rgb(170,183,183);
	box-shadow: 0 0 5px rgb(170,183,183);
}
.accordion-container.grey label:hover {
	background:rgb(170,183,183);
	color:#FFF;
}
.accordion-container.grey input:checked + label,
.accordion-container.grey input:checked + label:hover{
	color: #FFFFFF;
	background:rgb(170,183,183); 
}
.accordion-container.grey article {
	background: rgb(236,240,241);
	-moz-box-shadow: inset 0 0 5px rgb(170,183,183);
	-webkit-box-shadow: inset 0 0 5px rgb(170,183,183);
	box-shadow: inset 0 0 5px rgb(170,183,183);
}
.accordion-container.grey article p {
	color:#333;
}
.accordion-container.blue label {
	background:rgb(52,152,219);
	border-bottom-color: rgb(41,128,185);
	-moz-box-shadow: 0 0 5px rgb(41,128,185);
	-webkit-box-shadow: 0 0 5px rgb(41,128,185);
	box-shadow: 0 0 5px rgb(41,128,185);
}
.accordion-container.blue label:hover {
	background:rgb(41,128,185);
	color:#FFF;
}
.accordion-container.blue input:checked + label,
.accordion-container.blue input:checked + label:hover{
	color: #FFFFFF;
	background:rgb(41,128,185);
}
.accordion-container.blue article {
	background: rgb(236,240,241);
	-moz-box-shadow: inset 0 0 5px rgb(41,128,185);
	-webkit-box-shadow: inset 0 0 5px rgb(41,128,185);
	box-shadow: inset 0 0 5px rgb(41,128,185);
}
.accordion-container.blue article p {
	color:#333;
}

.accordion-container.blue article button:hover{
	background:rgb(41,128,185);
	color:#FFF;
}


.accordion-container.orange label {
	background:rgb(243,156,18);
	border-bottom-color: rgb(241,196,15);
	-moz-box-shadow: 0 0 5px rgb(241,196,15);
	-webkit-box-shadow: 0 0 5px rgb(241,196,15);
	box-shadow: 0 0 5px rgb(241,196,15);
}
.accordion-container.orange label:hover {
	background:rgb(241,196,15);
	color:#FFF;
}
.accordion-container.orange input:checked + label,
.accordion-container.orange input:checked + label:hover{
	color: #FFFFFF;
	background:rgb(241,196,15);
}
.accordion-container.orange article {
	background: rgb(236,240,241);
	-moz-box-shadow: inset 0 0 5px rgb(241,196,15);
	-webkit-box-shadow: inset 0 0 5px rgb(241,196,15);
	box-shadow: inset 0 0 5px rgb(241,196,15);
}
.accordion-container.orange article p {
	color:#333;
}
.accordion-container.orange article button:hover{
	background:rgb(241,196,15);
	color:#FFF;
}

.accordion-container.green label {
	background:rgb(26,188,156);
	border-bottom-color: rgb(22,160,133);
	-moz-box-shadow: 0 0 5px rgb(22,160,133);
	-webkit-box-shadow: 0 0 5px rgb(22,160,133);
	box-shadow: 0 0 5px rgb(22,160,133);
}
.accordion-container.green label:hover {
	background:rgb(22,160,133);
	color:#FFF;
}
.accordion-container.green input:checked + label,
.accordion-container.green input:checked + label:hover{
	color: #FFFFFF;
	background:rgb(22,160,133);
}
.accordion-container.green article {
	background: rgb(236,240,241);
	-moz-box-shadow: inset 0 0 5px rgb(22,160,133);
	-webkit-box-shadow: inset 0 0 5px rgb(22,160,133);
	box-shadow: inset 0 0 5px rgb(22,160,133);
}
.accordion-container.green article p {
	color:#333;
}
.accordion-container.green article button:hover{
	background:rgb(22,160,133);
	color:#FFF;
}


.accordion-container.dark label {
	background:rgb(5,5,5);
	color:#EEEEEE;
	border-bottom-color: rgb(20,20,20);
	-moz-box-shadow: 0 0 5px rgb(100,100,100);
	-webkit-box-shadow: 0 0 5px rgb(100,100,100);
	box-shadow: 0 0 5px rgb(100,100,100);
}
.accordion-container.dark label:hover {
	background:rgb(50,50,50);
	color:#FFF;
}
.accordion-container.dark input:checked + label,
.accordion-container.dark input:checked + label:hover{
	color: #FFFFFF;
	background:rgb(50,50,50);
}
.accordion-container.dark article {
	background: rgb(20,20,20);
	-moz-box-shadow: inset 0 0 5px rgb(200,200,200);
	-webkit-box-shadow: inset 0 0 5px rgb(200,200,200);
	box-shadow: inset 0 0 5px rgb(200,200,200);
}
.accordion-container.dark article p {
	color:#FFF;
}
.accordion-container.dark .accordion-panel i.background{
	color:rgba(255,255,255,0.15);
	-webkit-border-radius: 99px;
	-moz-border-radius: 99px;
	border-radius: 99px;
	border:4px solid rgba(255,255,255,0.15);
	-webkit-transition: all .5s;
	-ms-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
.accordion-container.dark article button:hover{
	background:rgb(50,50,50);
	color:#FFF;
}

.accordion-container.pink label {
	background:rgb(255,131,139);
	color:#EEEEEE;
	border-bottom-color: rgb(227,70,96);
	-moz-box-shadow: 0 0 5px rgb(100,100,100);
	-webkit-box-shadow: 0 0 5px rgb(100,100,100);
	box-shadow: 0 0 5px rgb(100,100,100);
}
.accordion-container.pink label:hover {
	background:rgb(227,70,96);
	color:#FFF;
}
.accordion-container.pink input:checked + label,
.accordion-container.pink input:checked + label:hover{
	color: #FFFFFF;
	background:rgb(227,70,96);
}
.accordion-container.pink article {
	background: rgb(245,240,240);
	-moz-box-shadow: inset 0 0 5px rgb(255,131,139);
	-webkit-box-shadow: inset 0 0 5px rgb(255,131,139);
	box-shadow: inset 0 0 5px rgb(255,131,139);
}
.accordion-container.pink article p {
	color:#999;
	z-index:5;
}

.accordion-container.pink article button:hover{
	background:rgb(255,131,139);
	color:#FFF;
}



