/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #444;
    text-align: left;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
}

h3 {
    color:white;
}

/* 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;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

button.accordion:after {
    /*content: '\02795'; /* Unicode character for "plus" sign (+) */
    float:left;
    font-size: 13px;
    color: #777;
    margin-left: 5px;
}

/*button.accordion.active:after {
    content: "\2796"; Unicode character for "minus" sign (-)
}*/

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    display: block;
}