@charset "utf-8";
/* Style css per FAQ animate */
.accordion {

    /*background-color: #cdcdb1;*/
    background-color: #ffbd80;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 5px;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #b35600;

}

.accordionRed {

    /*background-color: #cdcdb1;*/
    background-color: #cc0000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 5px;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #fff2e6;

}




.accordionRed:hover {

    /*background-color: #cdcdb1;*/
    background-color: darkred;
    color: #fff2e6;

}


.active, .accordion:hover {
    background-color: #ff7b00;
    color: #fff;
}

.accordion:after {
    content: '\002B';
    color: #b3d9ff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}


.accordionRed:after {
    content: '\002B';
    color: #b3d9ff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}



.active:after {
     content: "\2212";
}

.panel {

    padding: 0 18px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #ecf9f2;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #006666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;

}


@media only screen and (max-width: 800px) {

    .accordion, .accordionRed {
        font-size: 14px;
    }

}