:root {
    --euromillones: #001367;
    --primitiva: #008547;
    --bonoloto: #7a8634;
    --elgordo: #dc3f47;
    --eurodreams: #6b3e98;
    --lototurf: #d16929;
    --quintuple: #eab842;
    --laquiniela: #cb1517;
    --quininigol: #74bacd;
    --loterianacional: #007ac0;
    --wgt-color: #1c8cee;
    --width-gamebar: 5.3vw;
    --font-edms: 'GB';
}
@media(min-width:1279px){
  :root {
    --width-gamebar: 5.3vw;
  }
}
body > .box-wrapper{
  transition: all 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
  -webkit-filter: blur(0px); /* Chrome, Safari, Opera */
  filter: blur(0px);
}
body.no-scroll{
  overflow: hidden !important;
}
#wgt_lotapp *{
    font-family: 'Plus Jakarta Sans' !important;
}

.BONO .colored{
    color: var(--bonoloto);
}
.EMIL .colored{
    color: var(--euromillones);
}
.LAPR .colored{
    color: var(--primitiva);
}
.EDMS .colored{
    color: var(--eurodreams);
}
.ELGR .colored{
    color: var(--elgordo);
}
.LAQU .colored{
    color: var(--laquiniela);
}
.QGOL .colored{
    color: var(--quininigol);
}
.LOTU .colored{
    color: var(--lototurf);
}
.QUPL .colored{
  color: var(--quintuple);
}
.LNACJ1 .colored,.LNACS1 .colored,.LNAC_NAVIDAD .colored,.LNAC_NAVIDAD .colored,.LNAC_NINO .colored,.LNAC_NINO .colored{
  color: var(--loterianacional);
}

.BONO .inner::after,.BONO .date_bote{
  background: var(--bonoloto);
}
.EMIL .inner::after,.EMIL .date_bote{
  background: var(--euromillones);
}
.LAPR .inner::after,.LAPR .date_bote{
  background: var(--primitiva);
}
.EDMS .inner::after,.EDMS .date_bote{
  background: var(--eurodreams);
}
.ELGR .inner::after,.ELGR .date_bote{
  background: var(--elgordo);
}
.LAQU .inner::after,.LAQU .date_bote{
  background: var(--laquiniela);
}
.QGOL .inner::after,.QGOL .date_bote{
  background: var(--quininigol);
}
.LOTU .inner::after,.LOTU .date_bote{
  background: var(--lototurf);
}
.QUPL .inner::after,.QUPL .date_bote{
  background: var(--quintuple);
}
.LNACJ1 .inner::after,.LNACJ1 .date_bote,.LNACS1 .inner::after,.LNACS1 .date_bote,.LNAC_NAVIDAD .inner::after,.LNAC_NAVIDAD .date_bote,.LNAC_NINO .inner::after,.LNAC_NINO .date_bote{
  background: var(--loterianacional);
}

#wgt_lotapp{
    display: grid;
    grid-template-rows: 1fr 5vh;
    height: auto;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    z-index: 2000;
    border: 1px solid #35a1ff;
    border-radius: 30px;
    overflow: hidden;
    bottom: 2vh;
    transition: all 0.3s ease-in-out;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}
#wgt_lotapp.open{
  width: 100%;
}
.wgt_nav{
    background: var(--wgt-color);
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.wgt_button{
    background: var(--wgt-color);
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 3.5vw;
    height: 100%;
    border: 0;
}
  .wgt_button:hover {
    background: #4a83fa;
  }
  .wgt_button.selected{
    background: #fff !important;
    color: #115cfa !important;
  }
  .wgt_button.enjuego{
    border-right: 1px solid #35a1ff;
  }
.wgt_container{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: 0vh;
    background: #fff;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.wgt_container.showed{
    height: 80vh;
    overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* .wgt_container{
  overflow-y: auto;
} */
.wgt_container > div:last-child .inner::before{
  display: none;
}
.wgt_loader{
  position: absolute;
  width: 100%;
  padding: 0vw;
  text-align: center;
  bottom: 100%;
  background: #d2ecff;
  display: flex;
  justify-content: center;
  font-weight: 600;
  align-items: center;
  font-size: 3.5vw;
  transition: all 0.5s ease-in-out;
  height: 0vh;
  overflow: hidden;
  z-index: 10;
}
  .wgt_loader.showed{
    padding: 1vw;
    height: 4vh;
  }
.wgt_loader img{
  max-width: 65px;
  margin: -5vw 0;
}
.bote-container{
    position: relative;
}
.bote-container .inner{
    display: grid;
    grid-template-areas:"icono juego premio"
                        "icono date premio";
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 13vw 31vw 1fr;
    align-items: center;
    height: 100%;
}
.bote-container .inner::after,.resultado-container .inner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5.3vw;
    height: 100%;
}
.bote-container .inner::before,.resultado-container .inner::before {
    content: '';
    position: absolute;
    left: var(--width-gamebar);
    top: 100%;
    width: calc(100vw - var(--width-gamebar));
    height: 1px;
    background: #eff5ff;
}
.icon-juego{
    align-self: auto;
    grid-area: icono;
    background: #fff;
    padding: 2vw;
    width: 9vw;
    height: 9vw;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0 20px rgba(0, 98, 231, 0.28);
    left: 1.8vw;
}
.bote-container h2,.resultado-container h2,.premio_bote p{
    grid-area: juego;
    font-size: 3.5vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
    font-weight: 700;
    margin-bottom: 7px;
    margin-top: 0;
}
.bote-container .date_bote{
  align-self: flex-start;
}
.bote-container .date_bote,.date_container{
  grid-area: date;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.date_bote{
    font-size: 2.5vw;
    margin-top: 3px;
    white-space: nowrap;
    padding: 0.5vh 2vw;
    border-radius: 30px;
    width: fit-content;
    font-weight: 600;
    box-shadow: 0px 0 25px rgba(0, 108, 255, 0.1);
    text-transform: capitalize;
    z-index: 2;
    color: #fff !important;
}
.premio_bote{
    grid-area: premio;
    align-items: center;
    margin-bottom: 0;
}
  .premio_bote p{
    margin-top: 0;
    padding-right: 10px;
    justify-content: end;
    font-size: 5.5vw;
  }
.EDMS .premio_bote {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.premio_bote .extrainfo{
    font-size: 50%;
    display: flex;
    gap: 3px;
}
.bote_button{
    grid-area: boton;
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wgt-color);
    color: #fff;
    border-radius: 29px;
    margin-right: 1.8vw;
    font-size: 3vw;
    display: none;
}
.resultado-container {
    position: relative;
    order: 1;
    margin: 0;
    display: grid;
    height: 100%;
    padding-bottom: 4vw;
}
.resultado-container .inner {
    display: grid;
    padding: 2vw;
    padding-bottom: 0;
    grid-template-areas:"icono juego date" 
                        "bote bote bote"
                        "info info info";
    grid-template-columns: 11vw 1fr 37vw;
    grid-template-rows: 4vh 1fr auto;
}
.resultado-container.BONO .inner,.resultado-container.EDMS .inner,.resultado-container.ELGR .inner,.resultado-container.LOTU .inner,.resultado-container.LNACJ1 .inner,.resultado-container.LNACS1 .inner{
  grid-template-areas:"icono juego date" 
                      "bote bote info";
  grid-template-rows: 4vh 1fr;
}
.resultado-container.LAPR .inner,.resultado-container.EMIL .inner{
  grid-template-areas:"icono juego date" 
                      "bote bote info"
                      "bote bote special";
}
.resultado-container .icon-juego {
  left: 0;   
}
.resultado-container h2 {
    z-index: 2;
    align-items: center;
    margin: 0;
}
.combinacion-list {
    grid-area: bote;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
    padding-left: 10vw;
    gap: 1vw;
    margin-top: 0;
}

.combinacion-list-multiple {
    grid-area: numeros;
    justify-content: space-between;
}
.combinacion-list li {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 0 12px rgba(0, 108, 255, 0.15);
    background: #fff;
    font-size: 3.1vw;
    margin-right: 0;
    font-weight: 700;
    font-optical-sizing: auto;
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    border: 1px solid;
}
.QGOL .combinacion-list li, .LAQU .combinacion-list li {
  width: auto !important;
  padding: 0 1vw !important;
  border-radius: 6px !important;
}
.LAQU .combinacion-list li {
  position: relative;
  text-align: center;
}
.LNACJ1 .combinacion-list.colored li, .LNACS1 .combinacion-list.colored li {
  padding: 0 2vw;
  width: auto;
  border-radius: 30px;
}
.extra-info {
  display: flex;
  grid-area: info;
  align-items: center;
  margin-top: 0;
  width: 100%;
  justify-content: flex-end;
  gap: 4vw;
}
.LAQU .extra-info{
  padding: 1.8vw 0 0 10vw;
  justify-content: flex-start;
}
.extra-primi,.joker,.millon,.estrellas{
  display: flex;
  gap: 4vw;
  align-items: center;
  width: 100%;
  justify-content: end;
  height: fit-content;
  margin: 0;
}
.joker,.millon{
  gap: 2vw;
  grid-area: special;
  padding-left: 8vw;
}
.joker img, .millon img{
  max-width: 13vw;
}
.complementario,.reintegro,.joker,.millon,.estrellas,.sueno,.pleno,.reintegros-text,.reintegros-list{
  font-size: 3.1vw;
  font-weight: 700;
  color: #525252;
  margin: 0;
}
.reintegros-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  flex-direction: row;
}

/* .my-timer{
    grid-area: countdown;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.my-timer > div{
  height: 7.5vw;
  width: 7.5vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1vw;
  box-shadow: 0px 0 25px rgba(0, 108, 255, 0.1);
  background: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.my-timer span{
    font-size: 250%;
    margin-bottom: 2px;
    font-weight: 600;
    line-height: 1;
} */
.blur{
  -webkit-filter: blur(4px) !important; /* Chrome, Safari, Opera */
  filter: blur(4px) !important;
}
#juego{
  transition: all 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
  position: fixed;
  display: grid;
  grid-template-rows: 7vh 1fr;
  height: 0vh;
  left: 0;
  width: 100vw;
  bottom: 7vh;
  z-index: 2001;
  pointer-events: none;
  overflow: hidden;
}
#juego.showed{
  height: 70vh;
  pointer-events: all;
}
#juego-container{
  position: relative;
  height: 100%;
  width: 100%;
}
#close-juego{
  text-align: center;
  background: #115cfa;
  color: #fff;
}

/* @media(min-width:768px){
  #wgt_lotapp{
    display: none;
}
  .bote-container h2, .resultado-container h2, .premio_bote p{
    font-size: 2.5vw;
  }
  .date_bote{
    font-size: 1.2vw;
  }
  .icon-juego {
    padding: 1.5vw;
    width: 6vw;
    height: 6vw;
  }
  .bote_button{
    font-size: 2vw;
    border-radius: 40px;
    height: 5vw;
  }
  .wgt_button{
    font-size: 2vw;
  }
}
@media(min-width:959px){
  
} */
@media(min-width:959px){
  #wgt_lotapp,#juego{
    width: 80vw;
    left: 50%;
    transform: translateX(-50%);
  }
  #wgt_lotapp {
    grid-template-rows: 1fr 60px;
    border-radius: 30px;
    overflow: hidden;
    bottom: 4vh;
    transition: all 0.3s ease-in-out;
  }
  #wgt_lotapp,#juego{
    width: 100%;
    max-width: 500px;
  }
  #wgt_lotapp.open{
    max-width: 780px;
  }
  #juego{
    bottom:72px;
  }
  #juego.showed{
    height: 769px;
  }
  .resultado-container{
    padding-bottom: 25px;
  }
  .bote-container .inner::after, .resultado-container .inner::after {
    width: 50px;
  }
  .bote-container .inner {
    grid-template-columns: 13% 31% 1fr 0%;
    padding: 15px 0;
  }
  .bote-container h2{
    align-items: center;
  }
  .resultado-container .inner{
    grid-template-columns: 8.5% 1fr 39%;
    grid-template-rows: 60px 1fr auto;
    padding: 0 20px 0;
  }
  .bote-container h2, .resultado-container h2, .premio_bote p,.combinacion-list li{
    font-size: 16px;
  }
  .premio_bote p{
    font-size: 25px;
  }
  .date_bote,.complementario, .reintegro, .joker, .millon, .estrellas, .sueno, .pleno, .reintegros-text, .reintegros-list{
    font-size: 12px;
  }
  .icon-juego {
    padding: 11px;
    width: 50px;
    height: 50px;
    left: 20px;
  }
  .resultado-container .icon-juego {
    top: 7px;
  }
  .bote_button{
    font-size: 18px;
    height: 3.5vw;
  }
  .wgt_button{
    font-size: 14px;
  }
  .combinacion-list{
    padding-left: 80px;
    gap: 8px;
  }
  .combinacion-list li{
    width: 40px;
    height: 40px;
  }
  .QGOL .combinacion-list li, .LAQU .combinacion-list li{
    padding: 0 10px !important;
  }
  .joker img, .millon img {
    max-width: 80px;
  }
  .LAQU .extra-info {
    padding: 15px 0 0 100px;
    justify-content: flex-start;
  }
}