/* .accordion-block {
    z-index: 10;
} */

h2.accordion {
    font-size: 1.2em;
}

.accordion-h2 {
    border: 1px solid #FFFFFF;
    box-shadow: 0px 0px 30px 2px #FFFFFF;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 65vw;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin: 20px;
    font-size: 1.2em;
}

.accordion-h2:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active .accordion-h2:after {
    content: "\2212";
}

.accordion-block .active,
.accordion-block .accordion:hover {
    background-color: rgba(255, 255, 255, 0);
}

button.accordion {
    height: 10px;
}

.accordion-panel {
    box-shadow: 0px 0px 30px 2px #FFFFFF;
    padding: 0 18px;
    width: 65vw;
    background-color: white;
    /* max-height: 0; */
    height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
}

.accordion-padding {
    padding: 10px;
}

.accordion-footer {
    height: 10px;
}