.contenidoheader {
    position: relative;
    top: -60px;
    left: 52%;
    transform: translate(-50%, -50%);
    color: rgb(243, 243, 243);
    text-shadow: 2px 2px 3px #00000080;
    font-size: 4vw;
}

.checkout {
  display: flex;
}

.emptyCheckout {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
    
.section {
    display: flex; 
    flex-direction: column;
    align-items: center; 
}

.section td {
    padding:3px;
    padding-bottom: 6px;
}

.section td img {
    max-width: 60px;
    max-height: auto;
    margin-left: 0px;
    border-radius: 0px;
}

.section .input-group{
    display: flex;
    justify-content: center;
}
  
.section .input-group button{
  display: none;
}

.section .input-group .item-count{
    text-align: center;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 17px;
    /*background-color: #ededed;*/
    max-width: 50px;
    border: none;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.section .delete-item-cart, .section .delete-item-quote {
  display: none;
}

.section #counter-value{
  height: 50px;
  min-width: 60px;
  background-color: #eaeaea;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productos {
  display: grid;
  grid-template-columns: repeat(4, 30fr); 
  gap: 0px; 
}

.productos .grid-item img {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 50%;
    margin-top: 7px;
}

.productos h5 {
    margin-top: -2px;
}

.productos .grid-item {
    margin-left: 20px; /* Add negative margins on hover */
    margin-right: 20px;
    margin-top: 35px;
    transition: all 0.2s ease-in-out; 
    text-align: center;
    background-color: #edf9ff;
}

.productos a {
    color: #4e4e4e;
    text-decoration: none;
}
  
.productos a:hover{
    text-decoration: underline;
}
  
  
.productos .grid-item:hover {
    box-shadow: 0px 0px 6px 3px #d3d3d396;
    background-color: white;
    z-index: 500;
}

.productos .botones a, .productos .botones button {
  border: none;
  text-decoration: none;
  color: #1b1b1b;
  margin-left: 1.8px;
  margin-right: 1.5px;
  margin-bottom: 3px;
}

.productos .botones .quoteBtn {
  background-color: #74ffbc;
}

.productos .botones .share-button {
  background-color: #ffcf9c;
}

.productos .botones .cartBtn {
  background-color: #28bcf6;
}

.productos .botones .quoteBtn:hover {
  background-color: #00d66f;
}

.productos .botones .share-button:hover {
  background-color: #ff9d34;
}

.productos .botones .cartBtn:hover {
  background-color: #0080c5;
  color:white;
}

.productos .botones i {
  font-size: small;
}

.productos .grid-item .botones {
  display:none
}

.productos .grid-item:hover .botones {
  display: block;
}

.grid-item .botones input {
  display: none;
}

#modalQuote .emptyQuoteDiv {
  display: none;
} 

.descuento {
  position: absolute;
  top: .5cm;
  left: .5cm;
  color: #ffffff;
  font-size: large;
  background-color: #0080c5;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 32px;
  z-index: 300;
}

#paypal-button-container {
  display: flex;
  justify-content: center;
}

.envios {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section .envios button {
  background-color: #28bcf6;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 300px;
}

.section .envios button:hover {
  background-color: #0080c5;
  color: white;
}

/* -----------------------------codigo para hacer la pagina responsiva de escritorio---------------------------- */
@media screen and (min-width: 1051px) {

  .checkout {
    flex-direction: row;  
    justify-content: space-around;
    margin-bottom: 150px;
  }

  .section {
    max-width: 50vw;
  }

  #paypal-button-container {
    width:35vw;
  }

  .productos {
    grid-template-columns: repeat(4, 1fr); 
  }

  .productos .grid-item:hover {
      transform: scale(1.3);
  }

  .productos .botones a, .productos .botones button {
    padding:10px;
    font-size: 10px;
    transition: 0.2s; 
    border-radius: 0px;
    min-width: 5vw;
  }

  .productos .botones a:hover, button:hover {
    cursor: pointer;
  }

  .productos .botones .textoBtn {
    display: inline-block;
  }

  .productos .botones i {
    padding-left: 3px;
  }
  
}

/* -----------------------------codigo para hacer la pagina responsiva de celular---------------------------- */
@media screen and (max-width: 1050px) {

  .checkout {
    flex-direction: column;
    align-items: center; 
  }

  .section {
    max-width: 90vw;
  }

  #paypal-button-container {
    width: 80vw;
  }

  .singular {
    display: none;
  }

  .productos {
    grid-template-columns: repeat(2, 1fr); 
  }

  .productos .grid-item {
      margin-left: 10px; /* Add negative margins on hover */
      margin-right: 10px;
  }

  .productos .botones a, .productos .botones button {
    padding: 15px;
    font-size: 13px;
  }

  .productos .botones .textoBtn {
    display: none;
  }

}