/* ==================================================== */
/* Sezioni Collassabili                               */
/* ==================================================== */

.pd-collapsible-section {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.pd-toggle-title-top {
    font-family: monospace;
    width: 100%;
    background-color: #f8f8f8;
    color: #274665;
    text-align: left;
    padding: 16px 16px;
    font-size: 1.8em;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.pd-toggle-title {
    font-family: monospace;
    width: 100%;
    background-color: #f8f8f8;
    color: #274665;
    text-align: left;
    padding: 16px 16px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.pd-collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f8f8f8;
    padding: 0 15px;
}

.pd-collapsible-content.active {
    max-height: none;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* ==================================================== */
/* Icone per Sezioni Collassabili                      */
/* ==================================================== */

.pd-icon-toggle {
    color: #a1bee0;
}

.pd-icon-toggle::before {
    content: "\f078";
    /* FontAwesome chevron down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
}

.pd-icon-toggle.active::before {
    content: "\f077";
    /* FontAwesome chevron up */
}