/* ------   ACCORDION   --------*/

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding-left: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}
.accordion::before {
    position: relative;
    content: "\002B \0020 \0020";
    font-size: 15px;
    font-weight: bold;
}
.accordion.active::before {
    content: "\2212 \0020 \0020";
    transition: transform 0.4s ;
}
.accordion:hover {
    background-color: rgb(143, 181, 227);;
}
.panel {
    padding: 0 12px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
} 