/* Menu Accordion ---------- */


/* Style the buttons that are used to open and close the accordion panel */
.accordion-sidenav {
    color: #333;
    font-family: "Outfit";
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0 0 5px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

/* Style the accordion panel. Note: hidden by default */
.panel-sidenav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.panel-sidenav p {
    margin: 0;
}

.panel-sidenav a {
    padding: 6px 0 7px 25px;
}

.accordion-sidenav:after {
    content: "\002B";
    /* Unicode character for "plus" sign (+) */
    font-family: "Outfit";
    font-size: 1.15rem;
    float: right;
}

.activeMenuAccordion:after {
    font-family: "Outfit";
    content: "\002D";
    font-weight: 500;
    /* Unicode character for "minus" sign (-) */
}