/* =========================================
   IOEF TRUST BAR
   Desktop: 4 colonne
   Mobile: 2 colonne x 2 righe
   ========================================= */


/* DESKTOP */

#ioef-trust-bar {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 1250px !important;
    margin: 0 auto !important;
    padding: 20px 0 !important;
    border-top: 1px solid #dedede !important;
    border-bottom: 1px solid #dedede !important;
    box-sizing: border-box !important;
}

#ioef-trust-bar > div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    color: #555555 !important;
    text-align: center !important;
    white-space: normal !important;
}

#ioef-trust-bar > div:nth-child(2),
#ioef-trust-bar > div:nth-child(3),
#ioef-trust-bar > div:nth-child(4) {
    border-left: 1px solid #dedede !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media only screen and (max-width: 767px) {

    #ioef-trust-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 64px 64px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-top: 1px solid #dedede !important;
        border-bottom: 1px solid #dedede !important;
        box-sizing: border-box !important;
    }

    #ioef-trust-bar > div {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 64px !important;
        margin: 0 !important;
        padding: 8px 12px !important;
        box-sizing: border-box !important;
        border: 0 !important;
        font-size: 13px !important;
        font-weight: 400 !important;
        line-height: 1.3 !important;
        color: #555555 !important;
        text-align: center !important;
        white-space: normal !important;
    }

    /* linea verticale centrale */
    #ioef-trust-bar > div:nth-child(1),
    #ioef-trust-bar > div:nth-child(3) {
        border-right: 1px solid #dedede !important;
    }

    /* linea orizzontale centrale */
    #ioef-trust-bar > div:nth-child(1),
    #ioef-trust-bar > div:nth-child(2) {
        border-bottom: 1px solid #dedede !important;
    }
}