.textoIngrediente{
    font-size: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  
}

.cardCocina {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.cardCocina:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}


.cardCocina-bg {
  background-image: url("img/sushiCocina.png");
  background-size: cover;
  background-position: center;
}

.cardCocina {
  /* width: 300px; */
  margin-bottom: 5%;
  height: 100px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cardCocina-img {
  width: 100%;
  height: 60%;
  background-size: cover;
  background-position: center;
}

.cardCocina-text {
  width: 100%;
  height: 40%;
  padding: 20px;
}

.card-img-overlay {
  background: rgba(0, 0, 0, 0.5) !important;
}