/* --- */
.menu-fijo {
  z-index: 9;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  position: -webkit-sticky !important;
  position: sticky !important
}

/* --- */

 .parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 10px;
}
  
.div2 {
  grid-row: span 7 / span 7;
}

.div3 {
  grid-row: span 7 / span 7;
}

/* --- */
.flex-container {
  display: flex;
  flex-direction: row;
/*  background-color: pink; */ 
}

.flex-container > div{
/*  background-color: aquamarine; */ 

}

/* --- */
.grid-container {
  display: grid;
  grid-template-columns: 200px auto auto;
 /* padding: 10px; */
 /* background-color: black; */  
  gap: 10px;
  justify-content: space-evenly;
}

.grid-container > div{
/*  background-color: blueviolet; */ 
/*   padding: 10px; */

}

.item1 {
  grid-row-start: 1;
  grid-row-end: 5;
}

/* Tag sale */
.badge-sale {
    background-color: #dc3545
}

#divCheckout {
    position: fixed !important;
    right: 0 !important;
    bottom: 50px !important;
    left: 0 !important;
    z-index: 1200 !important;
}