/* <!-- CAJA NEGRA DE MENSAJE AL INICIO Y BOTON CALL OUT --> */

body {font-family: Arial, Helvetica, sans-serif;}

.callout {
  position: fixed;
  bottom: 5px; /* Distancia de la caja entre el fondo de la pantalla*/
  right: 20px;
  margin-left: 20px;
  max-width: 300px;
}

.callout-header {
  padding: 10px 5px;
  background: #555;
  font-size: 15px; /* tamano de la fuente header */
  color: white;
}

.callout-container {
  padding: 5px; /* tamano de la parte gris de la cja*/
  background-color: #fff; /* si le quito las letras la caja es trasnparante #ccc  para fondo gris , #fff para color de fondo blanco */
  color: black
}

.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.closebtn:hover {
  color: lightgrey;
}


/*<!-- OVER LAY EFFECT PANTALLA OSCURA CON MENSAJE --> */          
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}



/*<!-- Crear avatars redondas las imagenes --> */


img {border-radius: 50%;}

/* <!-- Style tarjeta de productos negra --> */

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.price {
  color: grey;
  font-size: 22px;
}

.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
  opacity: 0.7;
}
