@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

:root{
  --color-default: white;
  --color-second: green;
  --color-white:#fff;
  --color-body:#e4e9f7;
  --color-light:#e0e0e0;
  --color-hover:rgba(123, 255, 0, 0.4);
}


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/*body{
  min-height: 100vh;
  margin: 0%;
  padding: 0%;
  height: 100vh;  
  display: grid;
  position:relative;
  align-items: center;

}*/

.wall {
  animation:slide 6s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #0e745b 50%, #bdb785 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.wall2 {
  animation-direction:alternate-reverse;
  animation-duration:8s;
}

.wall3 {
  animation-duration:10s;
}

.home-section{
  position:relative;
  /*background-color: var(--color-body);*/
  min-height: 100vh;
  /*max-height: 100%;*/
  top:0;
  left:40px;
  width: calc(100% - 78px);
  height: 100%;
  transition: all .5s ease;
  z-index: 2;
}

.home-section .text-top{
  display: inline-block;
  color:var(--color-default);
  font-size: 25px;
  font-weight: bold;
  /*font-weight: 500;*/
  margin: 18px;
}

.logo{
  display: block;
  justify-content: center;
  width: 30%;
  margin: auto;
}

.sidebar.open ~ .home-section{
  left:250px;
  width: calc(100% - 250px);
}

.contenedor{
  margin-top: 500px;
  text-decoration: none;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

a.entrar {
  /*display: flex;*/
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.65);
  box-shadow: 0px 10px 14px -7px #3b3d3d;
  border: none;
  border-radius: 5rem;
  color: var(--color-white);
  padding: 15px 32px;
  font-size: 45px;
  width: 110px;
  /*margin-left: calc(50% - 55px);*/
  /*margin-top: calc(100vh - 900px);*/
  /*margin: auto;*/
  text-decoration: none;  
}

a.entrar:hover{
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: var(--color-hover);
  color: var(--color-white);
}

div.botones-download{
  display: flex;
  justify-content: center;
  max-width: 50%;
  margin: auto;
  /*border: #3b3d3d solid;*/
}

a.boton-download {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.65);
  box-shadow: 0px 10px 14px -7px #3b3d3d;
  border: none;
  border-radius: 5rem;
  color: var(--color-white);
  padding: 15px 32px;
  font-size: 16px;
  /*width: 500px;*/
  text-align: center;
  margin: auto;
  text-decoration: none;
  /*margin-top: calc(100vh - 850px);*/
}

a.boton-download:hover{
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: var(--color-hover);
  color: var(--color-white);
}

.text-second{
  margin-top: calc(100vh - 400px);
  text-align: center;
  color: var(--color-white);
  font-size: 26px;
  text-decoration: none;
}

.ruleta{
  display: flex;
  justify-content: center;
}

.logo1{
  position:absolute;
  /*z-index: 9999;*/
  width: 500px;
  max-width: 100%;
  height: auto;
}

.logo2{
  -webkit-animation: 3s rotate linear infinite;
  animation: 3s rotate linear infinite;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  position:absolute;
  width: 500px;
  max-width: 100%;
  height: auto;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

@keyframes rotate {from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@-webkit-keyframes rotate {from {-webkit-transform: rotate(0deg);}
  to {-webkit-transform: rotate(360deg);}
}

@media only screen and (max-width: 480px) {
  .logo1, .logo2{
    max-width: 95%;
  }
  .text-second{
    font-size: 10px;
  }
  a.boton-download{
    font-size: 10px;
  }
  .contenedor{
    margin-top: 400px;
  }
}

@media only screen and (max-width: 1368px) {
  .logo1, .logo2{
    max-width: 350px;
  }
  .contenedor{
    margin-top: 340px;
  }
}

.login-box {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.65);
  box-shadow: 0px 10px 14px -7px #3b3d3d;
  margin-top: 15rem;
  width: 320px;
  height: 420px;
  border-radius: 1rem;
  color:var(--color-white);
  top: 10%;
  left: 50%;
  position:fixed;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 70px 30px;

}

.login-box .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}

.login-box h1 {
  margin: 0;
  padding: 0 0 20px;
  text-align: center;
  font-size: 22px;
}

.login-box label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
}

.login-box input {
  width: 100%;
  margin-bottom: 20px;
}

.login-box input[type="text"], .login-box input[type="password"] {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  outline: none;
  height: 40px;
  color: #fff;
  font-size: 16px;
}

.login-box input[type="submit"] {
  border: none;
  outline: none;
  height: 40px;
  background: var(--color-second);
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
}

.login-box input[type="submit"]:hover {
  cursor: pointer;
  background: #ffc107;
  color: #000;
}

.login-box a {
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  color: darkgrey;
}

.login-box a:hover {
  color: #fff;
}

.tabla-reporte-dia {
  /*display:grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);*/
  /*grid-template-columns: repeat(6, 1fr);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);*/
  background-color: rgba(17, 25, 40, 0.65);
  box-shadow: 0px 10px 14px -7px #3b3d3d;
  margin-top: 2rem;
  width: 98%;
  /*height: calc(85% - 1.6rem);*/
  max-height: calc(90% - 1.6rem);
  /*height: 90%;*/
  border-radius: 1rem;
  color:var(--color-white);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 10px 10px;
}

#boton-buscar input[type="submit"] {
  border: none;
  outline: none;
  height: 50%;
  width: 8rem;
  background: var(--color-second);
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
}

#boton-buscar{
  /*padding: 1rem 1rem 1rem 1rem;*/
  padding: auto auto auto auto;
  height: 100%;
  width: 100%;
  justify-content: center;
}

#boton-buscar input[type="submit"]:hover,
#exportar-excel:hover{
  color :black;
  background-color: greenyellow;
}

.title-window{
  width: 100%;
  display: flex;
  color :rgb(255, 255, 255);
  background-color: rgba(66, 68, 95, 0.342);
  align-content: space-between;
  position: absolute;
}

#titulo-ventana{
  color: white;
  width: 100%;
  backdrop-filter: blur(7px);
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  padding: 0.5rem;
}

#exportar-excel{
  border: none;
  text-align: center;
  color: white;
  background-color: green;
  width: 5rem;
  height: 2.5rem;
  align-items: end;
}

main form {
  display: grid;
  margin-top: 3rem;
  margin-left: 1rem;
  margin-right: 1rem;
  width: 90%;
  justify-items: center;
  /*position: absolute;*/
  /*transform: translate(-50%, -50%);*/
  /*box-sizing: border-box;*/
  /*top: 50%;*/
  /*left: 50%;*/
  max-height: calc(50% - 1.6rem);
  color : var(--color-white);
  /*align-items:flex-start;*/
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  grid-auto-rows: minmax(50px, auto);
}

main input[type="submit"]:hover {
  cursor: pointer;
  background: #ffc107;
  color: #000;
}

#ver_juegos{
  height: 6vh;
}

@media only screen and (max-width: 1118px) {
  .tabla-reporte-dia{
    /*grid-template-columns: repeat(5, 1fr);*/
    margin-top: .5rem;
    padding: .5rem;
  }
  main form {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 1080px) {
  /*.tabla-reporte-dia {
    font-size: 10px;
  }*/
  #titulo-reporte{
    font-size: 12px;
  }
  main form {
    grid-gap: 10px;
    grid-auto-rows: minmax(50px, auto);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  form{
    grid-template-columns: repeat(3, 1fr);
    /*transform: scale(.9);*/
  }
}

main select,main input[type="date"] {
  /*position:;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 150px;
  height:fit-content;
  /*padding: 6px 12px;*/
  /*margin-bottom: auto;*/
  border-radius: 4px;
  border: 1px solid #cbd1d8;
  font-size: 1rem;
  line-height: 1.5;
  background: #fff url(../img/down.svg) no-repeat center right 12px / 18px 18px;
  transition: all .2s ease-in-out;
}
main .filtro, main #jefes,main #checkboxes{
  display:grid;
  margin-bottom: auto;
}
 
/*IE*/
main select::-ms-expand {
  display: none;
}
 
main select:focus {
  outline: 0;
  border-color: #0d9c00;
  box-shadow: 0 0 0 3px rgba(0, 121, 250, .3);
}

main select:hover,main input:hover {
  border: #00ff0d solid 3px;
}
