h2{
    color: rgb(246, 50, 62);
}
#productos a{
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: rgb(246, 50, 62);
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
}
#productos a:hover{
    background: rgba(0,0,0,0);
color: rgb(246, 50, 62);
box-shadow: inset 0 0 0 3px rgb(246, 50, 62);
transition: all .5s ease;
}
#footer{
    background-color: rgb(104, 97, 117);
    color: #fff;
}


#verMas a{
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: rgb(246, 50, 62);
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
}
#verMas a:hover{
    background: rgba(0,0,0,0);
color: rgb(246, 50, 62);
box-shadow: inset 0 0 0 3px rgb(246, 50, 62);
transition: all .5s ease;
}
#cont{
    margin-top: 1%;
}
#icons{
    width:8rem;
    height: 8rem;
    background-color: rgb(246, 50, 62);
    border-radius: 12px;
}

/*modales de las imágenes de la gallería*/

  #myImg0:hover,#myImg1:hover,#myImg2:hover,#myImg3:hover,#myImg4:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal-prod {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-prod-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption-prod {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation */
  .modal-prod-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  .visor{
    margin-bottom: 4em;
    margin-left: 4em;
    border-left: 6px rgb(246, 50, 62) solid;
    padding-left: 2em;
  }
  

  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close-prod {
    
    margin-left: 80%;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close-prod:hover,
  .close-prod:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }


/* Estilos para imagen de canceleria */

/* Imagenes en cards de productos */
.img-canceleria img,
.img-canceleria .product-card-img {
  height: 220px !important;
  max-height: 220px !important;
  width: 100% !important;
  object-fit: cover !important;
}

.img-canceleria{
  position: relative;
  overflow: hidden;
}

.aviso-canceleria{
  position: absolute;
  left: -0.1rem;
  bottom: 1rem;
  max-width: 18rem;
  
}

.aviso-nuevo-producto{
  position: absolute;
  right: -0.1rem;
  top: 1rem;
  max-width: 18rem;
  transition: 0.3s;
}

.aviso{
  display: none;
  transition: 0.3s;
}

.aviso-nuevo-producto:hover .aviso{
  display: inline;
}


