body{
  font-family: 'Open Sans', sans-serif;
  background: url("../imagenes/fondo.jpg");
  background-size: cover;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-size: 1.3rem;
}
ul{
  font-size: 1.2rem;
}
footer{
  width: 100vw; 
  position: absolute; 
  bottom: 0px; 
  left: 0px;
}
footer p{
  font-size: 0.9rem;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #51edc6;
}
a:hover{
  text-decoration: none;
}
.logo{
	height: 3rem;
}
.bg-menu{
	background-color: #035f6c;
}
.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255, 255, 255, 0.81);
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
    border-bottom: 1px solid cornflowerblue;
}
.activo{
    color: #fff;
    border-bottom: 1px solid cornflowerblue;
}
.grid-form{
  display: grid; 
  grid-template-columns: 15% 2% 30% 50%;
}
#poweredBy{
  width: 20%;
  margin-bottom: 2rem;
}
#poweredByConsultas{
  z-index: -1;
  width: 20%;
  margin-bottom: 2rem;
  border: 2px solid #98fbc5; 
  background: #2D2D2D; 
  border-radius: 5px; 
  box-shadow: 0px 0px 3px 2px #035f6c; 
}
.grid-descargas{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-row-gap: 1rem;
}
/*Asignarticket.html*/
.grid-form-AsignarTicket{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 1rem;
  text-align: center;
}
.grid-form-AsignarTicket > .item{
  display: grid;
  grid-template-rows: repeat(2,1fr);
}
/* Dispositivos pequeños (portrait phones, menores que 576px)*/
@media (max-width: 575.98px) { 
   body{
    font-size: 1.1rem;
   }
   footer p{
    font-size: 0.7rem;
  }
  #seccionBuscarTicket > h1 {
    text-align: center;
  }
  #poweredBy{
    width: 50%;
  }
  .btn, .btn-lg {
    font-size: 1.1rem;
  }
  #poweredByConsultas{
  z-index: -1;
  width: 40%;
  margin-bottom: 2rem;
  }
  .item-1{
    grid-column: 1/5;
  }

  .item-2{
    grid-column: 2/3;
  }

  .item-3{
    grid-column: 3/4;
  }

  .item-4{
    grid-column: 1/5;
  }
  .item-4 p img{
     border-radius: 50%;
  }
  .grid-form-AsignarTicket{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  grid-gap: 1rem;
  text-align: center;
} 

}
/* Dispositivos Medios (landscape phones, mayores a 576 y menores a 767)*/
@media (min-width: 576px) and (max-width: 767.98px) {
  body{
    font-size: 1.1rem;
  }
  footer p{
    font-size: 0.7rem;
  }  
  #seccionBuscarTicket > h1 {
    text-align: center;
  }
  #poweredBy{
    width: 40%;
  }
  .btn, .btn-lg {
    font-size: 1.1rem;
  }
  .grid-descargas{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-row-gap: 1rem;
  }
  .item-1{
    grid-column: 1/4;
    text-align: center;
  }
  .item-4 p img{
     border-radius: 50%;
  } 
}
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    #poweredBy{
    width: 30%;
  }
}
@media (max-width: 345px){
  .btn, .btn-lg {
    font-size: 0.9rem;
  }
}
@media (max-height: 570px) { 
  .btn, .btn-lg {
    margin-bottom: 10px;
  }
  #poweredBy{
    width: 35%;
  }
}


