
#headerDesktop {
    img {
        max-width: 100%;
        height: auto;
    }
    div {
        text-align: right;
        cursor: pointer;
        margin-top: -50px;
        padding-right: 20px;
        margin-bottom: 30px;
        font-size: 60px;
        color: white;
    }
}

#headerMobile {
    display: none;
}

details {
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 10px;
    text-align: right;
    border: 2px #495057 solid;
    background-color: #F8F9FA;
    max-width: 1198px;
    margin-left: auto;
    margin-right: auto;

    summary {
        cursor: pointer;
        color: white;
        position: absolute;
        bottom: max(-0.5vw, -10px);
        right: 16px;
        font-size: 60px;
        color: white;
    }

    iframe {
        border: none;
        height: 90%;
    }

    #idSidebar {
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 10px;
        text-align: right;
        border: 2px #495057 solid;
        background-color: #F8F9FA;
    }

    #idSidebarClose {
        font-weight: bold;
        cursor: pointer;
        max-width: 250px;
        padding: 5px;
        text-align: left;
    }

    #idSidebarClose>span {
        font-size: 110%;
    }
}

#headerPeriodico {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 90px;

    img {
        max-width: 30px;
        height: auto;
        cursor: pointer;
    }

    img:hover {
        opacity: 0.6;
    }
}

.divTemiSegnalazioni {
    background-color: rgb(98, 115, 134);
    padding: 4px;
    color: #FFFFFF;
    width: 32%;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
    cursor: pointer;

    div:nth-child(1) {
        width: 32%;
        border-top: 1px solid #CED4DA;
    }

    div:nth-child(2) {
        width: 32%;
    }

    div:nth-child(3) {
        width: 32%;
        border-top: 1px solid #CED4DA;
        padding-top: 15px;
        padding-bottom: 20px;
    }

    img {
        max-width: 100%;
        padding: 10px;
        border: 1px #CED4DA solid;
    }
}

footer {
    background-color: #DEE2E6;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 70px;
    border-top: #ADB5BD 1px solid;
    border-left: #ADB5BD 1px solid;
    border-right: #ADB5BD 1px solid;

    div {
        display: inline-block;
        padding-left: 5px;
    }

    img {
        max-width: 30px;
        height: auto;
        cursor: pointer;
    }

    img:hover {
        opacity: 0.6;
    }
}

h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 300;
    font-size: 34px !important;
}

h1:hover {
    text-decoration: underline;
    color: #9B1818;
}

h2 {
    font-weight: 300;
    font-size: 17px !important;
}


@media screen and (max-width: 1200px) {
    body {
        margin-top: 0;
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    #headerDesktop {
        display: none;
    }
    
    #headerMobile {
        width: 100%;
        padding-bottom: 10px; 
        display: block;
        div {
            position: absolute;
            top: 10px;
            left: 40px;
            color: white;
            font-size: 40px;
        }
        img {
            max-width: 100%;
            height: auto;
        }
    }

    #headerPeriodico {
        img {
            padding-top: 20px;
        }
    }

    section {
        display: block;
        width: 100%;

        div:nth-child(1) {
            width: 100%;
        }

        div:nth-child(2) {
            text-align: center;
            width: 100%;
        }

        div:nth-child(3) {
            width: 100%;
            border-top: none;
        }
    }

    .divTemiSegnalazioni {
        width: 100%;
    }

    .divTemiSegnalazioni:nth-of-type(2) {
        margin-top: 50px;
    }
}

