/***********************************************/
/* Global level styling for common elements go here.
/*
/***********************************************/
.product {
  padding: 20px 20px;
  margin-bottom: 0px;
  text-align: left;
  background: #f7b340;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75), 0 0 100px #DB641C inset;
}

@media (min-width: 768px) {
  .product {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75), 0 0 120px #DB641C inset;
  }
}

.product .product-image img {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .product .product-image {
    width: 40%;
  }
  .product .product-image img {
    width: 70%;
  }
}

.product .name {
  margin-top: 0.8em;
  margin-bottom: 5px;
  font-size: 12vw;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Knockout 71 A", "Knockout 71 B";
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.product .description {
  font-size: 1rem;
  line-height: normal;
  margin-top: 1em;
  color: #730e06;
}

.product .description b {
  font-family: "Helvetica Neue LT W01_77 Bd Cn";
}

.product .available-sizes ul {
  margin: 0;
  padding-left: 15px;
}

.product .rating-information {
  display: none;
}

.product .nutrition-cta, .product .where-to-buy-cta {
  margin-top: 20px;
}

.product .nutrition-cta a, .product .where-to-buy-cta a {
  display: inline-block;
  position: relative;
  height: 30px;
  padding: 0px 35px 0 20px;
  margin: 0px;
  vertical-align: middle;
  line-height: 32px;
  color: #730e06;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0;
  background-color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.49);
  font-family: "Helvetica Neue LT W01_77 Bd Cn";
  letter-spacing: 0;
  font-weight: normal;
  padding-left: 0.7em;
}

@media (min-width: 768px) {
  .product .nutrition-cta a, .product .where-to-buy-cta a {
    font-size: 14px;
    line-height: 37px;
    height: 35px;
    padding-left: 12px;
    padding-right: 40px;
  }
}

.product .nutrition-cta a::after, .product .where-to-buy-cta a::after {
  content: '';
  display: block;
  color: #fff;
  vertical-align: top;
  padding: 0;
  border: none;
  position: absolute;
  width: 17px;
  height: 17px;
  background: #730e06 url(../../images/arrow.svg) no-repeat 50% 50%;
  background-size: 9px 11px;
  top: 6px;
  right: 11px;
}

@media (min-width: 768px) {
  .product .nutrition-cta a::after, .product .where-to-buy-cta a::after {
    top: 9px;
    right: 15px;
  }
}

.product .nutrition-cta a:hover, .product .where-to-buy-cta a:hover {
  color: #ffffff;
  background: #730e06;
}

.product .nutrition-cta a:hover::after, .product .where-to-buy-cta a:hover::after {
  background-color: white;
  background-image: url(../../images/arrow_dark.svg);
}

.product p.social-sharing-text {
  margin-top: 30px;
  color: #730e06;
}

.product .social-sharing {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #730e06;
}

.product .social-sharing .social-property {
  height: 20px;
}

.product .social-sharing .social-property a {
  color: #730e06;
  font-size: 1.25rem;
  line-height: 1em;
  display: block;
}

.product .social-sharing .social-property a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .product {
    padding-top: 70px;
  }
  .product .product-image img {
    max-height: none;
  }
  .product .name {
    font-size: 2.375rem;
    line-height: 1em;
    margin: 0;
  }
  .product p.social-sharing-text {
    font-size: 1rem;
    line-height: 20px;
  }
}

@media (min-width: 992px) {
  .product .name {
    font-size: 2.375rem;
    line-height: 1em;
  }
  .product .nutrition-cta, .product .where-to-buy-cta {
    display: block;
    clear: both;
    float: none;
    margin-right: 12px;
  }
}

.product .featured-recipe {
  padding: 0 30px;
}

.product .featured-recipe .heading {
  color: #730e06;
  text-transform: uppercase;
  font-family: "Helvetica Neue LT W01_77 Bd Cn";
  font-size: 2rem;
}

@media (min-width: 768px) {
  .product .featured-recipe .heading {
    padding-left: 20px;
    margin-left: 40%;
    text-align: left;
  }
}

.product .featured-recipe .recipe-information {
  margin-left: -10px;
  overflow: hidden;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .product .featured-recipe .recipe-information {
    margin-left: 20px;
  }
}

.product .featured-recipe > .recipe-image img {
  margin: 0px auto;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
}

@media (min-width: 768px) {
  .product .featured-recipe > .recipe-image {
    margin-top: -50px;
    padding-right: 20px;
    margin-bottom: 20px;
  }
}

.product .featured-recipe .recipe-name {
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Knockout 71 A", "Knockout 71 B";
  letter-spacing: normal;
  font-size: 8vw;
  text-align: left;
  max-width: none;
  margin: 40px 0 20px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .product .featured-recipe .recipe-name {
    margin: 0em 0 20px;
    font-size: 2.625rem;
    line-height: 1em;
  }
}

.product .featured-recipe a {
  display: inline-block;
  position: relative;
  height: 30px;
  padding: 0px 35px 0 20px;
  margin: 0px;
  vertical-align: middle;
  line-height: 32px;
  color: #730e06;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0;
  background-color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.49);
  font-family: "Helvetica Neue LT W01_77 Bd Cn";
  letter-spacing: 0;
  font-weight: normal;
  float: left;
}

@media (min-width: 768px) {
  .product .featured-recipe a {
    font-size: 14px;
    line-height: 37px;
    height: 35px;
    padding-left: 12px;
    padding-right: 40px;
  }
}

.product .featured-recipe a::after {
  content: '';
  display: block;
  color: #fff;
  vertical-align: top;
  padding: 0;
  border: none;
  position: absolute;
  width: 17px;
  height: 17px;
  background: #730e06 url(../../images/arrow.svg) no-repeat 50% 50%;
  background-size: 9px 11px;
  top: 6px;
  right: 11px;
}

@media (min-width: 768px) {
  .product .featured-recipe a::after {
    top: 9px;
    right: 15px;
  }
}

.product .featured-recipe a:hover {
  color: #ffffff;
  background: #730e06;
}

.product .featured-recipe a:hover::after {
  background-color: white;
  background-image: url(../../images/arrow_dark.svg);
}

@media (min-width: 768px) {
  .product .featured-recipe a {
    margin: 0;
  }
}

.product .smartlabel-link {
  color: #730e06;
  background: none !important;
  height: auto !important;
  border-radius: 0px !important;
  padding: 0px !important;
  box-shadow: 0px 0px 0px 0px transparent !important;
  line-height: 16px !important;
}

.product .smartlabel-link svg {
  height: 42.2432px;
}

@media (min-width: 992px) {
  .product .smartlabel-link svg {
    height: 33.79456px;
  }
}

.product .smartlabel-link svg path {
  fill: #730e06;
}

.product .smartlabel-link span {
  color: #730e06 !important;
  text-transform: none;
  width: 220px;
  font-size: 12px;
  white-space: normal;
}

.product .smartlabel-link::after {
  background: none !important;
}

#block-manwich-views-block-related-products-block-related-products {
  display: none;
}

#block-manwich-views-block-related-products-related-products-with-ratings {
  padding: 15px 0px;
  overflow: hidden;
  margin: 0;
}

@media (min-width: 768px) {
  #block-manwich-views-block-related-products-related-products-with-ratings {
    margin: 0;
  }
}

#block-manwich-views-block-related-products-related-products-with-ratings .item-list {
  background: #f7b340;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75), 0 0 100px #DB641C inset;
  padding: 20px 0 0;
}

@media (min-width: 768px) {
  #block-manwich-views-block-related-products-related-products-with-ratings .item-list {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75), 0 0 120px #DB641C inset;
  }
}

#block-manwich-views-block-related-products-related-products-with-ratings .item-list ul {
  padding: 0;
}

#block-manwich-views-block-related-products-related-products-with-ratings .item-list ul li {
  margin: 0;
}

@media (min-width: 768px) {
  #block-manwich-views-block-related-products-related-products-with-ratings .item-list ul li {
    float: none;
    display: inline-block;
    padding: 0;
    position: relative;
  }
}

#block-manwich-views-block-related-products-related-products-with-ratings h2 {
  text-align: center;
  color: #730e06;
  font-family: "Pacifico";
  font-size: 9vw;
}

@media (min-width: 768px) {
  #block-manwich-views-block-related-products-related-products-with-ratings h2 {
    font-size: 38px;
    margin: 0;
    padding: 20px 0;
  }
}
