body{
  background-image: url(../images/wine.png);
  background-size: contain;
  height: auto;
  font-family: 'Poppins', sans-serif;
}

.bg-nav-logo{
  background-color: #FF1616;
}

.pillsNav{
  padding: 5px;
  margin: 2px;
}

.bgHam{
  background-color: #51050F
}

li a{
  color: #D4D925!important;
  text-decoration: none;
}

li a:hover, a.active{
  border-bottom: solid 2px rgba(173, 126, 68, 0.781)!important;
}

.carrito{
  z-index: 1;
  min-height: 100vh;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.visible{
  display: block;
}

.hidden{
  display: none;
}

.opacity{
  opacity: 0.5;
}

input:invalid {
  box-shadow: 0 0 5px 1px rgba(255, 0, 0, 0.651);
}

input:focus:invalid {
  box-shadow: none;
}

.tabla-productos{
  display: flex;
}

.tabla-productos > img{
  width: 9rem;
  object-fit: contain;
  border-radius: 6px;
  margin-right: 20px;
}

.tabla-cantidad > input{
  width: 40px;
  border: none;
  outline: 0;
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
  margin-bottom: 20px;
}

.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.realizarCompra{
  z-index: 10;
  position: absolute;
  top: 100px;
  left: 400px;
  width: 600px;
  animation-name: animatetop;
  animation-duration: 0.4s;
  height: 500px;
  overflow: auto;
} 

/* animacion para realizar compra */
@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
