@charset "utf-8";
/* CSS Document */
/********ACCORDION**************/
.accordion {
	list-style-type: none;
	padding: 0;
}

.accordion li {
	background-color: #ee395e;
	border: 1px solid #ce193e;
	border-bottom: none;
	position: relative;
}

.accordion li:last-child {
	border-bottom: 1px solid #ce193e;
}

.accordion li a h3 {
	margin: 0;
	padding: 10px;
}

.accordion li a {
	color: #fff;
	font-size: 14px;
	margin: 0;
	text-decoration: none;
}

div.hidden {
	background-color: #eee;
	height: 0;
	overflow: scroll;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

div.hidden p {
	color: #777;
	font-size: 14px;
	margin: 10px;
}

a#item1:target + div.hidden{
	height: 150px;
}

a#item2:target + div.hidden{
	height: 150px;
}

a#item3:target + div.hidden{
	height: 80px;
}

button.accordion {
    background-color: #000;
	color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
	border: 1px solid #ce193e;
    text-align: left;
    outline: none;
	font-size: 20px;
	font-weight: bolder;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color:#F00;
}

button.accordion:after {
    content: '\02795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796";
}

div.panel {
    padding: 0 18px;
    background-color: #000;
    max-height: 0;
    overflow: scroll;
    transition: 0.6s ease-in-out;
    opacity: 0;
}

div.panel.show {
    opacity: 1; 
    max-height: 500px;  
}
