/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #cfb8b8;
    color: #000;
    cursor: pointer;
	font-size: 2vmax;
	font-weight:bold;
	padding: 10px 0px 7px 5%;
    width: 100%;
	height:10%;
    text-align: left;
    outline: none;
    transition: 0.4s;
	opacity:0.85;

}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}


button.accordion:after {
    /*content: '\02795';*/
    font-size: 18px;
    color: #777;
    float: right;
}

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

div.panel {
    padding-bottom: 2%;
    background-color:white;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
}

button.accordion h1 {
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size:3vmax;
	position:relative;
	color: black;
	
	
}

div.panel.show {
    opacity: 0.95;
	padding-left:3%;
	padding-right:3%;
    max-height: 580%;
}


