/*Definiendo caracteristicas del container de todo y haciendo reset de todos los elementos para poder calcular la grid*/
html, body, .container{
  display: flex;
  flex-direction: column;
  height:100vh;
  margin: 0;
  font-family: 'Squada One', cursive;
}

.container {
  width: 100%;
  margin: 0px auto;
  box-sizing: border-box;
 }
 /*Selector para aplicar a todas las clases row*/
 [class*= "row"] {
  display: flex;
  width: 100%;
  justify-content: space-around;
 }
 
 [class*= "col-"]{
  border: 1px solid black;
  min-height:auto;
 }
 
 /*Header*/
 .main-head {
  display: flex;
  background-color: white;
  height: auto;
  justify-content: space-around;
 }

 .logo {
  display: flex;
  margin: 0 auto;
  align-items: center;
 }

 .img-pokebola {
   border-radius: 10px;
   align-items: center;
   margin-left: 20px;
 }

 .boton-pokebola {
   display: none;
 }

 .col-button-help {
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .button-help {
   border-radius: 10px;
   background-color: #efc207;
 }
 
 .main-nav {
  background-color: #2263ca;
  height: 4.5em;
 }
 .descripcion {
   text-align: center;
 }
 
 .input-search {
 width: 85%;
 height: 70%;
 border-radius: 10px 10px 10px 0px;
 text-align: center;
 display: flex;
 margin-left: 1.5em;
 margin-top: .5rem;
 }

 .button-search {
  width: 10%;
  height: 1.31em;
  font-size: 30px;
  margin: 0 auto;
  border-radius: 0px 10px 10px 0px;
 }

 .input-box {
  width: 90%;
  border-radius: 10px 0px 0px 10px;
  height: 31px;
 }
 

 /*Botones para ordenar asc y desc*/
 .button-box {
 text-align: center;
 font-size: 1em;
 }
 
 /*Botones para filtrar*/
 .nav-buttons-box {
 background-color: #2263ca;
 text-align: center;
 justify-content: space-around !important;
 }

 /* .nav-buttons-box .img {
  
 } */
 .btn-pok {
  border-radius: 100%;
}

.selectOption {
  width: 25%;
  height: auto;
  color: black;
  font-size: 15px;
  font-family: 'Squada One', cursive;
}

aside {
  overflow: scroll;
 }

 aside::-webkit-scrollbar {
  background-color: #2263ca;
  height: 0px;
  cursor: pointer;
  }

  aside::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 10px;
  }

  aside.lateral-content::-webkit-scrollbar-thumb:hover {
  background: #efc207;
  cursor: pointer;
  }

 .lateral-content{
  background-color: #fa0404;
  display: inline-block;
  text-align: center;
  margin: 4em;
  border: solid 3px #efc207;
  border-radius: 10px;
  width: 25%;
  }

 .card-box {
 width: 100%;
 height: auto;
 background-color: #fa0404;
 margin-bottom: 1em;
 border-color: black;
 }
 

footer {
  position: absolute;
  bottom: 0;
  background-color: #2263ca;
  width: 100%;
  height: auto;
}

.hide {
  display: none;
}

#instructions {
  margin: 100px auto;
  padding-bottom: 50px;
  background-color: #d9dee4;
  width: 780px;
  text-align: center;
  position: absolute;
  top: 5%;
  right: 0;
  left: 0;
  margin: 0 auto;
}
