/* =========================================
   EDOCMAN - ELENCO DOCUMENTI
   ========================================= */

.edocman_document_list {
    width: 100%;
    table-layout: fixed;
}

.edocman_document_list_icon {
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    text-align: left;
    vertical-align: middle;
}

.edocman_document_list_title {
    width: auto;
    vertical-align: middle;
}


/* =========================================
   FOOTER STANDARD ETHICS
   ========================================= */

/* Contenitore esterno */

.se-footer-box {
    width: 100%;
    padding: 34px 38px;
    background: #f1f7fb;
    border: none;
    border-top: 1px solid #202b73;
    box-sizing: border-box;
}


/* Griglia principale */

.se-footer-menu {
    display: grid;
    grid-template-columns: 300px repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 35px 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Singola colonna */

.se-footer-column {
    min-width: 0;
    margin: 0;
    padding: 0;
    text-align: left;
}


/* Colonne menu */

.se-footer-column:not(:first-child) {
    padding-left: 20px;
}


/* Colonna logo, social e dati aziendali */

.se-footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.se-footer-logo {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
}

.se-footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.se-footer-social a {
    display: inline-block;
    line-height: 0;
}

.se-footer-social img {
    display: block;
    width: auto;
    height: 28px;
    transition: opacity 0.2s ease;
}

.se-footer-social img:hover {
    opacity: 0.8;
}

.se-footer-company p,
.se-footer-company address {
    width: 100%;
    margin: 18px 0 0;
    line-height: 1.6;
    text-align: center;
    font-style: normal;
}


/* Titolo della colonna */

.se-footer-title {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
    color: #202b73;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}


/* Pallino accanto al titolo */

.se-footer-title::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #202b73;
    border-radius: 50%;
}


/* Link del footer */

.se-footer-link {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 0 12px;
    padding-left: 16px;
    color: #3d4657;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


/* Freccia accanto ai link */

.se-footer-link::before {
    content: "›";
    position: absolute;
    top: 0;
    left: 0;
    color: #202b73;
    font-weight: 700;
}


/* Effetto al passaggio del mouse */

.se-footer-link:hover,
.se-footer-link:focus {
    color: #202b73;
    text-decoration: none;
    transform: translateX(3px);
}


/* Link visitati */

.se-footer-link:visited {
    color: #3d4657;
}


/* Footer - Tablet */

@media (max-width: 959px) {
    .se-footer-box {
        padding: 30px;
    }

    .se-footer-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 40px;
    }

    .se-footer-column:not(:first-child) {
        padding-left: 0;
    }

    .se-footer-company {
        align-items: center;
        text-align: center;
    }
}


/* Footer - Smartphone */

@media (max-width: 767px) {
    .se-footer-box {
        padding: 26px 22px;
    }

    .se-footer-menu {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .se-footer-column {
        padding-left: 0;
    }

    .se-footer-column:not(:first-child) {
        padding-left: 0;
    }

    .se-footer-company {
        align-items: center;
        text-align: center;
    }

    .se-footer-title {
        margin-bottom: 14px;
        font-size: 17px;
    }

    .se-footer-link {
        margin-bottom: 10px;
        font-size: 15px;
    }
}


/* =========================================
   AREA RISERVATA
   ========================================= */

/* Campi del modulo di accesso */

#login-form input[type="text"],
#login-form input[type="password"],
#login-form input[type="email"] {
    width: 100% !important;
    max-width: 420px !important;
    box-sizing: border-box;
}


/* Voce di menu area riservata */

ul.login-bg > li > a,
.menu.login-bg > li > a {
    background: #eaf4fa !important;
}


/* =========================================
   VIDEO HOME
   ========================================= */

.video-home {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}


/* Video home - Desktop */

@media (min-width: 992px) {
    .video-home {
        width: 80%;
        max-width: 1100px;
        margin: 0 auto;
    }
}


/* =========================================
   MENU PRINCIPALE - DESKTOP
   ========================================= */

@media (min-width: 992px) {
    .sp-megamenu-parent > li {
        margin: 0 !important;
    }

    .sp-megamenu-parent > li > a,
    .sp-megamenu-parent > li > span {
        padding-right: 7px !important;
        padding-left: 7px !important;
    }
}