
:root {
  --inizio:#ff7426;
  --fine:#f93a13;
  --coloreTesto:hsl(237, 66%, 25%);
  --sfondo: #BFDBFE;
  --blue:#074eb8;
  --oldBlue:#25B7D3;
  --white:#F4F4F4;
  --font: "Montserrat",sans-serif;
  --black: rgb(3, 0, 0);
  --orange:#e6c316;
  --red:#E7492C;
  --orangeRitardi:#ff7032eb;
  --redRitardi:#fe0000;
  --cyan:#BED476;
  --green:#198754;
  --greenStart:#27d282;
  --black:#090302;
  --shadow:rgba(0, 0, 0, 0.35) 0px 15px 25px, rgba(0, 0, 0, 0.35) 5px 5px 5px;
}



.main {
font-family:  var(--font);
font-size: 18px;
border: 2px solid rgb(197, 57, 57);
padding: 3px;
background-color: var(--sfondo);
overflow: auto;
}

#titolo {
  font-family: "Bungee Spice", sans-serif;
  font-size: 58px;
}


.labels {
  font-family: var(--font);
  font-size: 18px;
  font-weight: bold;
  padding: 3px;
  background-color: var(--sfondo);
  margin:20px;
  vertical-align: middle;
  }

#badgeContainer, #badgeContainerMaxRit {
  position:relative;
  }


  .pill {
    letter-spacing: 1px;
    display: flex;
    position:relative;
    background-color:var(--blue);
    border-radius: 32px;
    width:auto;
    height:auto;
    padding: 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    letter-spacing: 1px;
  }

  .pillOrange {
    display: inline;
    position:relative;
    background-color:var(--orange);
    border-radius: 32px;
    width:auto;
    margin-bottom: 20px;
    padding: 16px;
    color: var(--black);
    font-family: var(--font);
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    letter-spacing:1px;
  }

.circle:hover, .circleOrangeRitardi:hover,.circleRedRitardi:hover,.circleBlack:hover{
  transform: scale(1.15);  
}


.circleRed:hover{
  transform: scale(1.15);  
}


  .circle {
    display: flex;
    position:relative;
    background-color:var(--blue);
    border-radius: 32px;
    width:20px;
    height:20px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
  }

  .circleGold {
    display: flex;
    position:relative;
    background-color:gold;
    border-radius: 32px;
    width:20px;
    height:20px;
    padding: 16px;
    color: var(--black);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    transform: scale(1.2);
    box-shadow: var(--shadow)
    }


    .dropbtn {
      position:relative;
      overflow: hidden;
    }

    .dropbtn::before {
      content:'';
      position:absolute;
      background-color:rgb(255, 255, 255,0.3);
      width:30px;
      height:80px;
      left:-95px;
      top:-50px;
      transform: skewX(-45deg);
      }


    .dropbtn:hover:before{
    animation: slideButton 0.5s;
    }



 .number  {
    display: inline-flex;
    background-color:var(--blue);
    border-radius: 32px;
    width:8px;
    height:8px;
    padding: 15px;
    margin: 5px;
    color: var(--white);
    font-family: var(--font);
    font-size:20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    transition: all  0.5s ease;
    position:relative;
    overflow: hidden;
    }


    .numberCyan  {
      display: inline-flex;
      background-color:var(--cyan);
      border-radius: 32px;
      width:8px;
      height:8px;
      padding: 15px;
      margin: 5px;
      color: var(--black);
      font-family: var(--font);
      font-size:20px;
      font-weight: bold;
      justify-content: center;
      align-items: center;
      box-shadow: var(--shadow);
      transition: all  0.5s ease;
      position:relative;
      overflow: hidden;
      }   

.number::before, .circleOrange10::before,.numberCyan::before {
content:'';
position:absolute;
background-color:rgb(255, 255, 255,0.3);
width:20px;
height:20px;
left:-15px;
top:-5px;
transform: skewX(-45deg);
}


.number:hover:before,.circleOrange10:hover:before,.numberCyan:hover:before {
animation: slide 0.5s;
}

@keyframes slide {
  0%,100% {
    left:-15px;
  }

  50% {
    left:110%;
    top:70%;
  }
}

@keyframes slideButton {
  0%,100% {
    left:-65px;
  }

  50% {
    left:110%;
    top:70%;
  }
}

.noPointerEvent {
  pointer-events: none;
}


@media (hover: hover) {
  /* Stili specifici per dispositivi touchscreen */
  /* Ad esempio, rimuovere stili che dipendono dall'hover */


#cadenze td:hover , #numeriInGioco td:hover ,  #numeriEstratti td:hover, #ritardi td:hover,#paginationTable td:hover {
  display: inline-flex;
  background-color:var(--orange);
  border-radius: 32px;
  width:8px;
  height:8px;
  padding: 15px;
  margin: 5px;
  color: var(--black);
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all  0.5s ease;
  transform: scale(1.2);
}
}

.circleOrange10 {
  display: inline-flex;
  background-color:var(--orange);
  border-radius: 32px;
  width:8px;
  height:8px;
  padding: 15px;
  margin: 5px;
  color: var(--black);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: all  0.7s ease;
  transform: scale(1.2);
  box-shadow: var(--shadow);
  position:relative;
  overflow: hidden;
}


.circleRed {
  display: inline-flex;
  background-color:var(--red);
  border-radius: 32px;
  width:8px;
  height:8px;
  padding: 15px;
  margin: 5px;
  color: var(--black);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: all  0.7s ease;
  transform: scale(1.2);
  box-shadow: var(--shadow);
  position:relative;
  overflow: hidden;
}


@media (hover: hover) {
.tabellone td:hover {
  background-color:var(--orange);
  color:var(--black);
  transform: scale(1.2);
  cursor: pointer;
  }
}
  .circleOrange {
    display: inline-flex;
    position:relative;
    background-color:var(--orange);
    border-radius: 32px;
    width:auto;
    height:20px;
    padding: 16px;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--black);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
    letter-spacing:1px;
  }



  .young {
    display: inline-flex;
    position:relative;
    background-color:var(--greenStart);
    border-radius: 32px;
    width:auto;
    height:20px;
    padding: 16px;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--black);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
    letter-spacing:1px;
  }


  .old {
    display: inline-flex;
    position:relative;
    background-color:var(--red);
    border-radius: 32px;
    width:auto;
    height:20px;
    padding: 16px;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--black);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
    letter-spacing:1px;
  }
  
  .circleBlack {
    display: flex;
    position:relative;
    background-color:var(--black);
    border-radius: 32px;
    width:25px;
    height:25px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
  }


  .circleOrangeRitardi {
    display: flex;
    position:relative;
    background-color:var(--orangeRitardi);
    border-radius: 32px;
    width:25px;
    height:25px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
  }


  .circleRedRitardi {
    display: flex;
    position:relative;
    background-color:var(--redRitardi);
    border-radius: 32px;
    width:25px;
    height:25px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    transition: all  1.0s;
    box-shadow: var(--shadow);
  }


  .pillBadge {
    display: flex;
    position:absolute;
    top:-15px;
    left:-4px;
    width:100px;
    height:20px;
    margin-right: 3px;
    background-color:var(--orange);
    border-radius: 20px;
    padding: 3px ;
    color:  var(--black);;
    font-family: var(--font);
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow)
  }

.badge{
  position:absolute;
  bottom:10px;
  right:-5%;
  display: flex;
  width:50px;
  height:10px;
  background-color:var(--blue);
  border-radius: 32px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}


.bdg_dropdown {
  display: none;
  position:absolute;
  top:10px;
  left:10px;
  width:80px;
  height:10px;
  margin-right: 3px;
  background-color:var(--blue);
  border-radius: 20px;
  padding: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


.bdgGiocate {
  display: flex;
  position:absolute;
  top:-15px;
  right:3%;
  width:80px;
  height:20px;
  margin-right: 3px;
  background-color:var(--blue);
  border-radius: 20px;
  padding: 5px;
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


.bdgCyan {
  display: inline;
  margin-right:50px;
  background-color:var(--cyan);
  border-radius: 22px;
  padding: 16px;
  color:var(--coloreTesto);
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}

#selezione, #combinazioneCercata, #outputRitardi,#outputCadenze {
  display: inline;
  margin-right:50px;
  background-color:var(--blue);
  border-radius: 22px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


#dataEstrazione {
  display: inline;
  margin-right:50px;
  background-color:var(--blue);
  border-radius: 22px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
  margin-left:20px;
  margin-top:5px;
  margin-bottom:5px;
  margin-right:0px;
}

.bdg {
  display: inline;
  margin-right:50px;
  background-color:var(--blue);
  border-radius: 22px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}


.bdg_verifica {
  display: flex;
  height:30px;
  margin-right:30px;
  background-color:var(--cyan);
  border-radius: 22px;
  padding: 10px;
  color: var(--coloreTesto);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  position:relative;
  box-shadow: var(--shadow);
  letter-spacing: 1px;

}

.bdg_bilancio {
  position:absolute;
  top:-18px;
  left:0px;
  display: flex;
  width:120px;
  height:20px;
  background-color:#28d325;
  border-radius: 20px;
  padding: 3px;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


.bdg_maxrit {
  position:absolute;
  top:-50px;
  left:12px;
  display: flex;
  width:250px;
  height:20px;
  background-color:var(--orange);
  border-radius: 20px;
  padding: 3px;
  color:  var(--black);
  font-family: var(--font);
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


.badgeData {
  display: flex;
  margin:auto;
  width:auto;
  height:60px;
  background-color:var(--blue);
  border-radius: 22px;
  padding: 3px;
  color: var(--white);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.badgeDataOrange {
  display: flex;
  margin:auto;
  width:auto;
  height:20px;
  background-color:var(--orange);
  border-radius: 22px;
  padding: 16px;
  color: rgb(3,0,0);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


.badgeDataGiovane {
  display: flex;
  margin:auto;
  width:auto;
  height:20px;
  background-color:var(--greenStart);
  border-radius: 22px;
  padding: 16px;
  color: rgb(3,0,0);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


.badgeDataVecchia {
  display: flex;
  margin:auto;
  width:auto;
  height:20px;
  background-color:var(--red);
  border-radius: 22px;
  padding: 16px;
  color: rgb(3,0,0);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}


#errore {
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  padding: 30x;
  width:400px;
  margin:auto;
  text-align: center;
  background-color: rgb(47, 61, 255);
  color:white;
   }


   
  #descrizione, #ambi, #terni, #quaterne, #cinquine {
    font-family: var(--font);
    font-size: 18px;
    font-weight: bold;
    display: none;
    padding: 30x;
    text-align: left;
    background-color: var(--sfondo);
    color: var(--coloreTesto);
    }


.verificata {
  background-color: rgb(122, 196, 232);
  vertical-align: middle;
  }

.verifica {
  font-family: var(--font);
  font-size: 16px;
  font-weight: bold;
  padding: 3px;
  background-color: rgb(59, 59, 240);
  text-align: center;
  box-shadow: var(--shadow);
  border-radius: 4px;
  color:rgb(245, 245, 245);
  }


  h1 {
    font-family: var(--font);
    font-size: 32pt;
    font-weight: bold;
    color: rgb(194, 9, 55);
    --text-shadow: 0px 2px 3px rgb(255, 238, 204);
    text-align: center;
    padding: 6px 0px 0px 0px;
    margin: 6px 0px 0px 0px;
    letter-spacing: 3px;
  }



.uno {
font-family: var(--font);
font-size: 12px;
padding: 30x;
background-color: var(--sfondo);
margin:20px;
text-align: left;
}



#combinazioni {
  font-family: var(--font);
  font-weight: bold;
  font-size: 18px;
  padding: 30x;
  background-color: var(--sfondo);
  margin:20px;
  text-align: left;
  display: block;
  color: var(--coloreTesto);
  }

.header {
font-family: var(--font);
font-size: 18px;
font-weight: bold;
padding: 8px;
background-color: var(--sfondo);
text-align: left;
vertical-align: top;
color:red;
  }



td {
  padding:6px;
  align-items: center;
}


.gold {
font-family: var(--font);
font-size: 30px;
font-weight: bold;
padding: 8px;
background-color: gold;
text-align: right;
margin: 10px;
transition: all  1.0s;
}



.normal {
font-family: var(--font);
font-size: 25px;
font-weight: bold;
padding: 8px;
background-color: var(--sfondo);
text-align: right;
margin: 10px;
transition: all  1.0s;
}

.titolo {
  font-family: var(--font);
  font-size: 25px;
  font-weight: bold;
  background-color: var(--sfondo);
  text-align: justify;
  }

 dialog {
  background-color: var(--sfondo);
  color: var(--coloreTesto);
}

dialog::backdrop {
  background-color: rgba(23, 22, 22, 0.568);
  backdrop-filter: blur(5px);
  
}

  .tooltip {
    position: relative;
    display: inline-block;
    }

  /* Stile del testo del tooltip */
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 16px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Posiziona il tooltip sopra l'elemento padre */
    left: 50%;
    margin-left: -60px; /* Centra il tooltip rispetto all'elemento padre */
    opacity: 0;
    transition: opacity 0.3s;
    font-family: var(--font);
    font-size: 20px;
    font-weight: bold;
    padding: 8px;
    text-align: justify;
    vertical-align: top;
    box-shadow: var(--shadow);
    letter-spacing: 1px;
  }

  /* Visualizza il tooltip quando l'elemento è in hover */
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

label {
font-family: var(--font);
font-size: 12px;
font-weight: bold;
padding: 3px;
background-color: var(--sfondo);
margin: 5px;
color: var(--coloreTesto);
}

   #tabellaEsiti>tr>td  {
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  padding: 3px;
  background-color: var(--sfondo);
  margin-right: 15px;
  margin-left: 25px;
  color: var(--coloreTesto);
  display:inline;
 }

  .cancellaEsito {
    cursor:pointer;   }
   
  #vincitaTotale,#percentualeVincenti {
    margin-bottom: 20px;
    display: none;
  }
  
  
.button {
  font-family: var(--font);
  text-transform: uppercase;
  color: var(--coloreTesto);
}

#esitoGiocateInMemoria
 {
  display: none;
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  padding: 3px;
  background-color: var(--sfondo);
  margin: 25px;
  color: var(--coloreTesto);
   }

   #dove{
    font-family: var(--font);
    color: var(--coloreTesto);
    text-transform: uppercase;  
   }


input[type=number] {
font-family: var(--font);
font-size: 16px;
padding: 3px;
background-color: var(--sfondo);
width: 70px;
}
#numeri {
font-family: var(--font);
font-weight: bold;
font-size: 18px;
padding-right: 16px;
background-color: var(--sfondo);
margin: 10px;
text-align: right;
}

#data {
font-family: var(--font);
font-weight: bold;
font-size: 18px;
padding-right: 16px;
background-color: var(--sfondo);
margin: 10px;
}

#ruota {
font-family: var(--font);
font-weight: bold;
font-size: 18px;
padding-right: 16px;
background-color: var(--sfondo);
margin: 10px;
}

#tutte {
font-family: var(--font);
font-size: 12px;
border: 2px solid rgb(197, 57, 57);
padding: 3px;
background-color: var(--sfondo);
}


  hr.rounded {
    border-top: 4px solid var(--red);
    height: 2px;
    margin-top:20px;
    margin-bottom:20px
  }

.btnRuote:hover {
  background-color: #116413;
  color: var(--sfondo);
  cursor:pointer;
  font-weight: bold;
  font-family: var(--font);
  transition-duration: 0.4s;
}

.btnRuoteSelezionato {
  background-color:red;
  }


.ruote {
font-family: var(--font);
font-size: 14px;
font-weight: bold;
padding: 30x;
background-color: var(--sfondo);
margin:20px;
text-align: center;
}


.rit  {
font-family: var(--font);
font-size: 20px;
padding: 30x;
background-color: var(--sfondo);
margin:20px;
text-align: left;
width:500px;
overflow-wrap: normal;
color: var(--coloreTesto);
}



.selezionato {
font-family: var(--font);
font-size: 32px !important;
transition: all  1.0s;
}

#cadenze, #ritardi, #numeriInGioco, #numeriEstratti {
  display: inline;
  color: var(--coloreTesto);
}

  #ambo, #terno, #quaterna, #cinquina {
  display: inline;
  border-radius: 5px;
  box-shadow: var(--shadow);
  color: var(--coloreTesto);
}

  #ambo td:hover, #terno td:hover, #quaterna td:hover, #cinquina td:hover {
  font-family: var(--font);
  font-size: 16px;
  font-style: italic;
  padding: 30x;
  margin:20px;
  text-align: left;
  color:blue;
  cursor:pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 5px 5px 5px;
    }

#tabellaRisultati {
  color: var(--coloreTesto);
  margin-left: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}

p {
  margin-top:50px;
}

#tabellaRisultati td {
  font-size: 22px;
}

#tabellaRitardatari td {
  font-size: 22px;
}

#tabellaRitardatari {
  margin-bottom: 10px;
  margin-left: 30px;
}


.tabellone {
  margin-top: 2px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 15px 25px, rgba(0, 0, 0, 0.35) 0px 5px 5px;
  color: var(--coloreTesto);
}

.cento {
  width:500px;
  white-space: nowrap;
}

.duecento {
  width:200px;
}

.nowrap {
  width:100px;
  white-space: nowrap;
}


 td {
   vertical-align: middle;
  }

#prec {
font-family: var(--font);
font-weight: bold;
border-right: 0px;
font-size: 14px;
padding-right: 12px;
background-color: var(--sfondo);
margin: 0px;
}

#precedenti {
  font-family: var(--font);
  font-weight: bold;
  font-size: 18px;
  background-color: var(--sfondo);
  color: var(--coloreTesto);
  margin: 0px;
  border:0;
  outline:none;
  }

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  border-top: 4px solid #FFF;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
 }



.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-bottom: 4px solid #FF3D00;
  border-left: 4px solid transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

   .checkbox-wrapper-42 input[type="checkbox"] {
      display: none;
      visibility: hidden;
       }
  
    .checkbox-wrapper-42 label {
      display: inline-block;
    }
  
    .checkbox-wrapper-42 .cbx {
      position: relative;
      top: 1px;
      width: 17px;
      height: 17px;
      border: 3px solid white;
      border-radius: 3px;
      vertical-align: middle;
      transition: background 0.1s ease;
      cursor: pointer;
      }

    .checkbox-wrapper-42 .cbx:after {
      content: '';
      position: absolute;
      top: 1px;
      left: 5px;
      width: 5px;
      height: 11px;
      opacity: 0;
      transform: rotate(45deg) scale(0);
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transition: all 0.3s ease;
      transition-delay: 0.15s;
    }
    .checkbox-wrapper-42 .lbl {
      margin-left: 20px;
      vertical-align: middle;
      
    }
    .checkbox-wrapper-42 input[type="checkbox"]:checked ~ .cbx {
      border-color: transparent;
      background: #6871f1;
      animation: jelly-42 0.6s ease;
    }
    .checkbox-wrapper-42 input[type="checkbox"]:checked ~ .cbx:after {
      opacity: 1;
      transform: rotate(45deg) scale(1);
    }
    .checkbox-wrapper-42 .cntr {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      text-align: center;
    }
    @-moz-keyframes jelly-42 {
      from {
        transform: scale(1, 1);
      }
      30% {
        transform: scale(1.25, 0.75);
      }
      40% {
        transform: scale(0.75, 1.25);
      }
      50% {
        transform: scale(1.15, 0.85);
      }
      65% {
        transform: scale(0.95, 1.05);
      }
      75% {
        transform: scale(1.05, 0.95);
      }
      to {
        transform: scale(1, 1);
      }
    }
    @-webkit-keyframes jelly-42 {
      from {
        transform: scale(1, 1);
      }
      30% {
        transform: scale(1.25, 0.75);
      }
      40% {
        transform: scale(0.75, 1.25);
      }
      50% {
        transform: scale(1.15, 0.85);
      }
      65% {
        transform: scale(0.95, 1.05);
      }
      75% {
        transform: scale(1.05, 0.95);
      }
      to {
        transform: scale(1, 1);
      }
    }
    @-o-keyframes jelly-42 {
      from {
        transform: scale(1, 1);
      }
      30% {
        transform: scale(1.25, 0.75);
      }
      40% {
        transform: scale(0.75, 1.25);
      }
      50% {
        transform: scale(1.15, 0.85);
      }
      65% {
        transform: scale(0.95, 1.05);
      }
      75% {
        transform: scale(1.05, 0.95);
      }
      to {
        transform: scale(1, 1);
      }
    }
    @keyframes jelly-42 {
      from {
        transform: scale(1, 1);
      }
      30% {
        transform: scale(1.25, 0.75);
      }
      40% {
        transform: scale(0.75, 1.25);
      }
      50% {
        transform: scale(1.15, 0.85);
      }
      65% {
        transform: scale(0.95, 1.05);
      }
      75% {
        transform: scale(1.05, 0.95);
      }
      to {
        transform: scale(1, 1);
      }
    }



    .loader2 {
      width: 28px;
      height: 28px;
      display: none;
      margin-left: 15px;
      position: relative;
      border-width: 3px 2px 3px 2px;
      border-style: solid dotted solid dotted;
      border-color: var(--blue) rgba(255, 255, 255,0.3) #fff rgba(151, 107, 93, 0.3);
      border-radius: 50%;
      box-sizing: border-box;
      animation: 1s rotate linear infinite;
   }
   .loader2:before , .loader2:after{
      content: '';
      top: 0;
      left: 0;
      position: absolute;
      border: 10px solid transparent;
      border-bottom-color:#fff;
      transform: translate(-10px, 19px) rotate(-35deg);
    }
   .loader2:after {
      border-color: var(--blue) #0000 #0000 #0000 ;
      transform: translate(32px, 3px) rotate(-35deg);
    }
     @keyframes rotate {
      100%{    transform: rotate(360deg)}
    }

  #ritardiContainer {
      display:none;
    }

.relative {
  position:relative;
}   


/* CSS */
.button-77 {
  align-items: center;
  appearance: none;
  text-transform: uppercase;
  background-clip: padding-box;
  background-color: initial;
  background-image: none;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  flex-direction: row;
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
  min-height: 64px;
  outline: none;
  overflow: visible;
  padding: 19px 16px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: auto;
  word-break: keep-all;
  z-index: 0;
  letter-spacing: 1px;
  }


.esitoTipi {
  display:block;
  margin-left: 0px;
  padding-left: 0px;
  margin-top:50px;
  margin-bottom:50px;
}

#esito {
  display: inline-block;
  margin-right:50px;
  background-color:var(--blue);
  border-radius: 22px;
  padding: 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  margin-top: 50px;
  margin-left: 10px;
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}

#container2 {
  display:block;
  margin-left:10px;
}

#massimiRitardatari {
  margin-left:0px;
}


@media (min-width: 1300px) {

  #esito {
    display: inline;
    margin-right:50px;
    background-color:var(--blue);
    border-radius: 22px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    margin-left:50px;
  }
  

  #container2 {
    display: inline;
  }

  #btnMaxRit {
    margin-left:50px;
  }
}

#estrattiSuTutte {
  display:block;
  margin-left: 40px;
}


@media (max-width: 580px) {
  #dataEstrazione {
    display: inline-block;
    margin-left: 0px;
  }
}


@media (max-width: 500px) {
  #numbers,#numeriEstratti {
    display:block;
    margin-top: 50px;
  }

  #estrattiSuTutte {
    display:block;
    margin-left: 0px;
  }
}


@media (max-width: 900px) {
  #cadenze, #numeriInGioco {
    display:block;
    margin-top: 50px;
  }
}


@media (max-width: 900px) {
 #bilancio, #spesa {
    display:inline-block;
    margin-top: 50px;
    margin-left: 30px;
  }
}



@media (min-width: 768px) {
  .button-77 {
    padding: 19px 16px;
  }
}


#tipo {
  margin-left: 0px;
}

@media (min-width: 1000px) {
  .esitoTipi {
    display:inline;
  }

  #tipo {
    margin-left: 50px;
  }
}


.button-77:before,
.button-77:after {
  border-radius: 80px;
  box-shadow: var(--shadow);  
}

.button-77:before {
  background-color: rgba(249, 58, 19, .32);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}


.button-77:after {
  background-color: initial;
  background-image: linear-gradient(92.83deg,var(--inizio) 0,var(--fine) 100%);
  bottom: 4px;
  content: "";
  display: block;
  left: 4px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 100ms ease-out;
  z-index: -1;
}



.button-77:hover:not(:disabled):after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transition-timing-function: ease-in;
  font-size:32px;
}

.button-77:active:not(:disabled) {
  color: #ccc;
}

.button-77:active:not(:disabled):after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, var(--inizio) 0, var(--fine) 100%);
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}

.button-77:disabled {
  cursor: default;
  opacity: .24;
}

.switch {
  --input-focus: #2d8cf0;
  --bg-color: #fff;
  --bg-color-alt: #666;
  --main-color: #323232;
  --input-out-of-focus: #ccc;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  align-items: center;
  gap: 30px;
  width: 70px;
  height: 36px;
  transform: translateX(calc(50% - 10px));
}

.toggle {
  opacity: 0;
}

.slider {
  box-sizing: border-box;
  border-radius: 100px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--input-out-of-focus);
  transition: 0.3s;
}

.slider:before {
  content: "off";
  box-sizing: border-box;
  height: 30px;
  width: 30px;
  position: absolute;
  left: 2px;
  bottom: 1px;
  border: 2px solid var(--main-color);
  border-radius: 100px;
  background-color: var(--bg-color);
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 25px;
  transition: 0.3s;
}

.toggle:checked + .slider {
  background-color: var(--input-focus);
  transform: translateX(-32px);
}

.toggle:checked + .slider:before {
  content: "on";
  transform: translateX(32px);
}

    