:root {
  --categoria: #012763;
  --metal: #88a5db;
  --metal_hover: #3889eb;
  --categoriactiva: #7107e3;
  --subcategoria: #3e30e3;
  --subactiva: #a457f7;
  --texto: #fff;
  --textoscuro: #444;
  --precio: #0C4DA2;
  --old: #966;
  --gold: #baa504;
  --cantidad: #eee;
  --burbuja: #282f6b;
  --input: #dceefa;
  --todochaco: #fef100;
  --formulario: #d7eefc;
  --fondocart: #f5f7dc;
  --fondofav: #f7dce2;
}
.unselectable {
  user-select: none;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.fade-in-div {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

.btnInstal{
position: absolute;
display: flex;
justify-content: center;
top: 10px;
right: 150px;
width: 50px;
border: var(--texto) 1px solid;
border-radius: 5px;
}
.splashscreen{
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--categoria);
  z-index: 1000;
}
.splashscreen img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40vh;
}

body{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--categoria);
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.contenedor{
  width: 100vw;
  height: 100vh;
}
.container{
  display: flex;
  flex-flow: column;
  width: 100vw;
  height: 100vh;
}
.logo{
  position: absolute;
  top: 2px;
  left: 2px;
}
.lector{
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    background-color:  transparent;
}
.video{
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
#video{
  position: absolute;
  border-radius: 16px;
}
.mascara{
  border-radius: 16px;
  position: relative;
  width: 300px;
  height: 200px;
  z-index: 3;
}
.resultados{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  text-align: center;
  color: var(--texto);
}
.glass{
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Apply blur to the background behind the element */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle, slightly transparent border */
  border-radius: 16px; /* Rounded corners */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.metal{
  border-radius: 16px;
  box-shadow: 
  7px 5px 5px rgba(0, 0, 0, 0.3),
  -5px -5px 5px rgba(255, 255, 255, 0.2);
}

.gla{
  min-width: 70%;
  max-width: fit-content;
  max-height: fit-content;
  margin: auto;
  padding-inline: 10px;
}
.del{
  color: #555;
  font-size: 2vh;
}
.descri{

}
.res{
  margin: auto;
  font-size: 3vh;
}
.desc{
  font-size: 3vh;
}
.pres{
  font-size: 3vh;
}
.buttons{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.buttones{
  width: 200px;
  height: 115px;
  text-align: center;
  font-size: x-large;
  color: var(--texto);
}
.invisible{
  visibility: hidden;
}

@media (orientation: landscape){
  .contenedor{
    
    padding: 0;
    margin: 0;
  }
  .lector{
    padding: 0;
  }
  .container{
    margin: 0;
    padding: 0;
    min-width: 100vw !important;
    height: 100vh;
    padding-right: 10px;
  }
.video{
  width: 40vw;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.buttons{
  width: 40vw;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.resultados{
  width: 60vw;
  position: absolute;
  left: 0;
  top: 0;
}
.res{
  margin: auto;
  font-size: 4vh;
}
.pres{
  font-size: 4vh;
}
}