* {
  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;
}

/* ------ MENU SELECT ---------- */

#menu_container {
  width: 100%;
  max-width: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-bottom: 20px;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.ss-main .ss-single-selected {
  height: 40px;
}



/* LEGEND */


#legend {
  width: 100%;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 20px 0;
  padding: 0 10px;
}

.legend_item {
  margin-right: 10px;
  font-size: 16px;
}

.legend_item::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}


#legend_green::before {
  background: #00bbb4;
}
#legend_yellow::before {
  background: #fec36b;
}
#legend_grey::before {
  background:#e6e6e6;
}


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

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

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

td {
  font-weight: 400;
  font-size: 14px;
  height: 40px;
  position: relative;
}

th {
  font-size: 14px;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
}

thead tr,
th {
  border-bottom: 2px solid black;
}

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

#th-regioni,
.regioni {
  text-align: start;
  width: 125px;
}

#th-perc-vaccinati,
.perc-vaccinati {
  text-align: end;
  width: 100px;
  padding-right: 5px;
}


#th-perc-prima-dose,
.perc-prima-dose {
  text-align: end;
  width: 80px;
  padding-right: 10px;
}

#th-perc-non-vaccinati,
.perc-non-vaccinati {
  text-align: end;
  width: 70px;
  padding-right: 10px;
}



.italia {
  text-transform: uppercase;
  background-color: #ebe9e3;
}


/* BARS */


#th-bar,
.bar {
  text-align: left;
  width: calc(100% - 370px);
  position: relative;
}

.bar {
  position: relative;
}

.bar_bg_grey {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #e6e6e6;
  z-index: 5;
  height: 20px;
}

.bar_prima_dose {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #fec36b;
  z-index: 10;
  height: 20px;
}

.bar_seconda_dose {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #00bbb4;
  z-index: 15;
  height: 20px;
}

.bar_monodose {
  position: absolute;
  top: 10px;
  left: 0;
  background: repeating-linear-gradient(
      45deg,
      #00bbb4,
      #00bbb4 5px,
      #e6e6e6 5px,
      #e6e6e6 6px
      );
  z-index: 20;
  height: 20px;
}

.bar_bg_transparent {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: transparent;
  z-index: 20;
  height: 20px;
}

.border-right {
  border-right: 1px solid #e6e5e1;
}

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


.sort_arrow {
  cursor: pointer;
}

.sort_arrow:hover {
  color: #005791;
}

.blue {
  color: #005791;
}

.black {
  color: #0f0f0f;
}



#notes {
  width: 100%;
  max-width: 680px;
  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;
}

/*** RESPONSIVE MOBILE ***/

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

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


  #menu_container {
    max-width: 100%;
    margin-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .custom-select {
    width: 100%;
    max-width: 100%;
  }


  #legend {
    width: 100vw;
    max-width: 100vw;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 10px;
}

.legend_item {
    margin-right: 0;
}

  #chart_container {
    margin-top: 10px;
    position: relative;
    width: 100%;
    z-index: 1;
    margin: auto;
    overflow: auto;
  }

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

  #th-regioni,
.regioni {
  text-align: start;
  width: 90px;
}

#th-bar,
.bar {
  text-align: left;
  width: calc(100% - 240px);
  position: relative;
}



  #th-regioni,
  #th-bar,
  #th-perc-vaccinati,
  #th-vaccinati,
  #th-perc-prima-dose, 
  #th-perc-non-vaccinati {
    font-size: 12px;
  }


  .regioni,
  .bar,
  .perc-vaccinati,
  .vaccinati,
  .perc-prima-dose,
  .perc-non-vaccinati {
    font-size: 14px;
  }

  #th-regioni,
  .regioni {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 20;
      background-color: #F7F6F2;
      }

  #notes {
      max-width: 100vw;
      padding-left: 5px;
      padding-right: 5px;
  }

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

}

/* RESPONSIVE TABLET
@media screen and (min-width: 481px) and (max-width: 1280px) {

} */
