/* [class*='col-'] {
  outline: 1px solid red;
}

.add-ingredient {
  outline: 1px solid blue;
} */

section.product-sheet .add-ingredient > div { 
	margin-bottom: 15px;
}
section.product-sheet .add-ingredient button.number {
  border-radius: 4px;
  width: 40px;
  height: 30px;
  color: #333;
  background: white;
  border: 1px solid #444444;
  font-size: 24px;
  cursor: pointer;
  transition-duration: 0.3s;
}
	section.product-sheet .add-ingredient button.number:hover {
		color: white;
	  background: black;
	  border: 1px solid black;	  
	}
@media screen and (max-width: 450px) {
  section.product-sheet .add-ingredient button.number {
    width: 30px;
    height: 30px;
  }
}
section.product-sheet .add-ingredient > div > input {
	width: 50px;
  height: 30px;
  border-radius: 4px;
  color: #333;
  background: white;
  border: 1px solid #444;
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  position: relative;
  top: -3px;
}
section.product-sheet .add-ingredient button.add_to_cart {
	font-size: 18px;	
	min-width: 138px;
}
section.product-sheet .add-ingredient button.add_to_cart:hover {
	box-shadow: unset !important;
}

section.product-sheet .add-ingredient .product-description { 
	margin: 6px auto 2px auto;
  padding-bottom: 0;
  line-height: 1.2;
  font-weight: 600;
}
  section.product-sheet .add-ingredient .product-description > span { 
    font-size: 10px;    
    font-weight: 400;
  }

section.product-sheet .add-ingredient img { 
  border-radius: 3px;  
}

#selector-masas {
  border:1px solid black;
  border-radius: 4px;
  margin-top: 5px;
  padding: 15px;
  text-align: left;
}
  #selector-masas img {
    margin-right: 10px;
    height: 60px;
    border-radius: 3px;
    filter: contrast(1.25);
  }
  @media screen and (max-width:350px) {
    #selector-masas > div {
      display: block;
      width: 100%;
      margin: 0 0 10px 0;
      text-align: center;
    }
    #selector-masas img {
      display: block;      
      margin: 0 auto;
    }
  }

  #selector-proteina p {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin: 5px 0px;
    border-radius: 4px;
    border: 1px solid #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    height: 41px;
    cursor: default;
  }