* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    background-color: transparent;
    color:  #0f0f0f;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    font-family: 'SoleSans', Arial, Helvetica, sans-serif;
}


/*--- TABLE -----*/

body {
  width: 100vw;
  padding-left: 10px;
  padding-right: 10px;
}



#tabella-aziende-container {
    width: 100%;
    max-width: 680px;
}

#tabella-aziende {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    font-family: 'SoleSans', Arial, Helvetica, sans-serif;
    line-height: normal;
    font-style: normal;
    border-bottom: 1px solid #0f0f0f4d;
    padding-top: 8px;
    padding-bottom: 8px;
}

td {
    font-weight: 400;
    font-size: 14px;
}

th {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
}


#th-azienda,
.azienda {
    text-align: start;
    width: 130px;
}

.th-trimestre,
.trimestre,
.th-totale,
.totale {
    text-align: end;
}


.media_row {
    background-color: #ebe9e3;
}

.media_row td {
    font-weight: 600;
}

.totale {
    font-weight: 600;
}

.not_visible {
    display: none;
}

.no-border-bottom {
    border-bottom: 0px;
}

.green {
    color: #19B290;
}


.table_notes {
    width: 100%;
    max-width: 680px;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    line-height: normal;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: normal;
    color: #1a1818;
    margin-top: 5px;
  }


/* MEDIA QUERIES */

@media only screen and (max-width: 600px) {

    #tabella-aziende-container {
        position: relative;
        width: 100%;
        z-index: 1;
        margin: auto;
        overflow: auto;
    }

    #tabella-aziende {
       width: 680px;
       border-collapse: separate;
       border-spacing: 0;
    }


    #th-azienda,
    .azienda {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    }

    #th-azienda,
    .azienda {
        background-color: #F7F6F2;
        }

    .media_row .azienda {
        background-color: #ebe9e3;
    }
  }
