/*====== Fonts ======*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap');

/*====== Global Variables ======*/
:root {
  --primary: #e0f5b2;
  --logo: #B6FF00;
  --light-blue: #1259c3;
  --gray: #666666;
  --light-gray: #ebebeb;
  --green: #39b54a;
  --base-font-family: 'Roboto', sans-serif
}

/*====== Basics ======*/
* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  font-size: 10px;
}

body {
  font-family: var(--base-font-family);
  font-weight: 300;
  background-color: var(--light-gray);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  width: 80%;
}

input,
textarea {
  font-family: inherit;
}

hr {
  border: none;
  border-bottom: solid 1px var(--light-gray);
}

main {
  min-height: 70vh;
}

@media(min-width: 320px) { 

  .header-compra-en-cuotas-icono
  {
   width: 20%;
   display: inline-block!important;
  }

}


@media(min-width: 500px) {  

  .header-search-bar {
    width: 30vw;
  }

  .header-compra-en-cuotas {
    width: 30vw;
  }

  /* Icono Hamburguesa Oculto */
  .header-burger-menu-container {
    display: none;
  }

  /* Muestra los menus */
  .header-left-menu {
    display: flex;
    width: 46vw;
  }

  .header-right-menu {
    display: flex;
    width: 46vw;
  }

  .contenedor-main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .caja-general-articulo {
    width: 45%;
  }

  .descripciones {
    display: block;
  }

  .caja-general-articulo:hover {
    box-shadow: 0px 0px 10px rgb(100, 100, 100);
  }

  .precios {
    font-size: 24px;
    width: 100%;
  }

  .descuentos {
    font-size: 10px;
  }
}

@media(min-width: 768px) {
  .header-banner {
    
  }

  .header-compra-en-cuotas {
    
    font-size: 1.2rem;
  }

  .header-left-menu ul li a,
  .header-right-menu ul li a {
    font-size: 1.2rem;
  }

  .caja-general-articulo {
    width: 22%;
  }

  .formulario-register-container,
  .formulario-login-container {
    width: 50rem;
  }

  .pie-de-pagina-articulo {
    max-width: 250px;
  }

  #pie-de-pagina {
    flex-direction: row;
    flex-wrap: nowrap;
  }

}