.optional-extra-product {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  /* This selector is necessary to overwrite the one from Bootstrap */
}
.optional-extra-product input[type='checkbox'] {
  margin: 0;
  width: 20px;
}
.optional-extra-product__label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.optional-extra-product__name,
.optional-extra-product__price {
  font-size: 20px;
}
.optional-extra-product__price {
  min-width: max-content;
}
.optional-extra-product .price-note {
  white-space: nowrap;
}
.optional-extra-product__image {
  max-width: 100px;
  min-width: 50px;
}
.optional-extra-product p {
  margin: 0;
}
