* {
    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 -----*/

table {
    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: 5px;
    padding-bottom: 5px;
}

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

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



/* TABLE */

#table_container {
    width: 100%;
    max-width: 680px;
}


#th-rank,
.rank {
    text-align: start;
    width: 35px;
}


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


#th-dosi-giornaliere,
.dosi-giornaliere {
    text-align: end;
    width: 100px;
}

#th-totale-vaccinati,
.totale-vaccinati {
    text-align: end;
    width: 100px;
}


#th-dosi-somministrate,
.dosi-somministrate {
    text-align: end;
    width: 100px;
}

.dosi-somministrate {
    font-weight: 800;
}


#th-dosi-abitanti,
.dosi-abitanti {
    text-align: end;
    width: 90px;
    padding-right: 10px;
}

#th-grafico-abitanti {
    text-align: end;
}


.grafico-abitanti {
    text-align: start;
    position: relative;
}

#th-dosi-giornaliere,
.dosi-giornaliere {
    text-align: end;
    width: 100px;
}

#th-data,
.data {
    text-align: end;
    width: 70px;
}


.italia {
    background-color: #ebe9e3;
}

.italia td {
    font-weight: 600;
}

.not_visible {
    display: none;
}

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

.sort_arrow {
    cursor: pointer;
}

.sort_arrow:hover {
    color: #005791;
}

.blue {
    color: #005791;
}

.td_arrow {
    width: 100%;
    text-align: center;
    font-size: 36px;
    line-height: 0;
    cursor: pointer;
    color: #000000;
    padding: 0;
    padding-top: 10px;
}


.arrow_down {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  }


#span_arrow_legend {
    font-family: 'SoleSans', Arial, Helvetica, sans-serif;
    line-height: normal;
    font-style: normal;
    font-size: 800;
    font-size: 12px;
    margin-top: 10px;
    padding-top: 5px;
}

#search-input-container {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 680px;
    text-align: right;
}


#search-input {
    background-image: url(../img/search.svg);
    background-position: 100% 0px;
    text-align: start;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    font-family: 'SoleSans', Arial, Helvetica, sans-serif;
    line-height: normal;
    font-style: normal;
    font-size: 12px;
    color: #8888a3;
}

#search-input:focus {
    border: 1px solid #8888a3;
    outline: none;
  }


#notes {
    width: 100%;
    font-family: 'SoleSans', Arial, Helvetica, sans-serif;
    line-height: normal;
    font-style: normal;
    font-size: 12px;
    margin-top: 10px;
}


#source {
    width: 100%;
    font-family: 'SoleSans', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 11px;
    font-style: normal;
    text-decoration: none;
    color: #888;
    margin-top: 10px;
}


/*--- MINI CHARTS -----*/


.bar-vaccini {
    background-color: #67b2e5;
    height: 20px;
}

.bar-value {
    position: absolute;
    padding-right: 10px;
}


.italia .bar-vaccini {
    background-color: #005791;
}




/* MEDIA QUERIES */

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

    body {
        font-size: 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    #search-input-container {
        max-width: 100vw;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        right: 0;
        padding-left: 10px;
        padding-right: 10px;
        text-align: right;
    }



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

    table {
       width: 680px;
       border-collapse: separate;
       border-spacing: 0;
    }

    th,
    td {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #th-rank,
    .rank,
    #th-nazione,
    .nazione {
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    }

    #th-rank,
    .rank {
    left: 0;
    }

    #th-nazione,
    .nazione {
    left: 35px;
    }


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

    .italia td {
    background-color: #ebe9e3;
    }



    .td_arrow {
        text-align: center;
        height: 50px;
    }

    .td_arrow span {
        position: -webkit-sticky;
        position: sticky;
        margin-left: -300px;
        left: 150px;
    }

    .td_arrow span:first-child {
        position: -webkit-sticky;
        position: sticky;
        left: 70px;
    }

    .arrow_down {
        margin-left: -300px;
    }

  }
