@charset "UTF-8";
@font-face {
  font-family: "Manifold CF";
  font-weight: bold;
  font-style: normal;
  src: url("/assets/font/manifold-cf-bold.woff2") format("woff2"), url("/assets/font/manifold-cf-bold.woff") format("woff");
}
html {
  color: rgb(0, 99, 166);
  font-family: "Manifold CF", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-top: 0;
}

h1, h2,
h3 {
  font-family: "Manifold CF", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  color: rgb(237, 29, 36);
  font-size: 44px;
}
h1.small-mobile {
  font-size: 24px;
}
h1.heading {
  color: rgb(0, 99, 166);
}
@media screen and (min-width: 840px) {
  h1.heading {
    font-size: 56px;
  }
}
@media screen and (min-width: 1080px) {
  h1.heading {
    font-size: 72px;
  }
}

h2 {
  font-size: 36px;
}
@media screen and (min-width: 840px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 24px;
}
@media screen and (min-width: 840px) {
  h3 {
    font-size: 36px;
  }
}

h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
@media screen and (min-width: 840px) {
  h4 {
    font-size: 30px;
  }
}

a {
  color: rgb(0, 99, 166);
}
a:hover {
  text-decoration: none;
}
a[href^=tel] {
  text-decoration: none;
}

address {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 320px;
}
body.lock-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/*
 * Keyframe
 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightShort {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* Anims */
.anim-stagger:nth-child(2) {
  animation-delay: 0.4s;
}
.anim-stagger:nth-child(3) {
  animation-delay: 0.6s;
}
.anim-stagger:nth-child(4) {
  animation-delay: 0.8s;
}
.anim-stagger:nth-child(5) {
  animation-delay: 1s;
}
.anim-stagger:nth-child(6) {
  animation-delay: 1.2s;
}

.anim-element {
  animation-duration: 0.7s;
  transition-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: 0.65s;
}

.anim_element--fadeinup {
  animation-name: fadeInUp;
}

.anim_element--fadeinupshort {
  animation-name: fadeInUpShort;
}

.anim_element--fadein {
  animation-name: fadeIn;
}

.anim_element--fadeout {
  animation-name: fadeOut;
}

.anim_element--fadeinleft {
  animation-name: fadeInLeft;
}

.anim_element--fadeinright {
  animation-name: fadeInRight;
}

.anim_element--fadeinrightshort {
  animation-name: fadeInRightShort;
}

.anim_element--fadeinleftshort {
  animation-name: fadeInLeftShort;
}

.m-scene {
  /** An element that fades in */
  /** An element that fades in and slides up */
  /** An element that fades in and slides from the right */
  /** An element that fades in and slides from the left */
  /** An element that fades in and slides from the left */
}
.m-scene .scene-element {
  animation-duration: 0.45s;
  transition-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.m-scene .scene_element--fadein {
  animation-name: fadeIn;
}
.m-scene .scene_element--fadeinup {
  animation-name: fadeInUp;
}
.m-scene .scene_element--fadeinupshort {
  animation-name: fadeInUpShort;
}
.m-scene .scene_element--fadeinright {
  animation-name: fadeInRight;
}
.m-scene .scene_element--fadeinleft {
  animation-name: fadeInLeft;
}
.m-scene .scene_element--fadeinleftshort {
  animation-name: fadeInLeftShort;
}
.m-scene.is-exiting .scene-element {
  animation-direction: alternate-reverse;
}

[data-scroll-animate].has-loaded {
  animation-duration: 0.75s;
  transition-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: 0.5s;
}
[data-scroll-animate].has-loaded.fadeIn {
  animation-name: fadeIn;
}
[data-scroll-animate].has-loaded.fadeInRight {
  animation-name: fadeInRightShort;
}
[data-scroll-animate].has-loaded.fadeInLeft {
  animation-name: fadeInLeftShort;
}

.homelogo {
  animation-duration: 0.2s;
  transition-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

.dk-select,
.dk-select-multi {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5em;
  width: 200px;
  cursor: pointer;
}

.dk-selected {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: white;
  border: 1px solid #CCCCCC;
  padding: 0 1.5em 0 0.5em;
  text-overflow: ellipsis;
}
.dk-selected:before, .dk-selected:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
}
.dk-selected:before {
  top: 50%;
  border: solid transparent;
  border-width: 3.75px 3.75px 0;
  border-top-color: #CCCCCC;
  margin: -1.875px 7.5px 0 0;
}
.dk-selected:after {
  top: 0;
  height: 100%;
  border-left: 1px solid #CCCCCC;
  margin: 0 22.5px 0 0;
}

.dk-selected-disabled {
  opacity: 0.5;
}

.dk-select .dk-select-options {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  right: 0;
}

.dk-select-open-up .dk-select-options, .dk-select-open-down .dk-select-options {
  visibility: visible;
  opacity: 1;
}

.dk-select-open-up .dk-select-options {
  margin-bottom: -1px;
  bottom: 100%;
}

.dk-select-open-down .dk-select-options {
  margin-top: -1px;
  top: 100%;
}

.dk-select-multi .dk-select-options {
  max-height: 10em;
}

.dk-select-options {
  border: 1px solid #CCCCCC;
  list-style: none;
  margin: 0;
  max-height: 10.5em;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.25em 0;
  width: auto;
  z-index: 100;
}

.dk-option {
  padding: 0 0.5em;
}

.dk-select-options .dk-option-hidden {
  display: none;
}

.dk-optgroup {
  border: solid #CCCCCC;
  border-width: 1px 0;
  padding: 0.25em 0;
  margin-top: 0.25em;
}
.dk-optgroup .dk-optgroup + .dk-option {
  margin-top: 0.25em;
}
.dk-optgroup .dk-optgroup + .dk-optgroup {
  border-top-width: 0;
  margin-top: 0;
}
.dk-optgroup .dk-optgroup:nth-child(2) {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}
.dk-optgroup .dk-optgroup:last-child {
  border-bottom-width: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dk-optgroup-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dk-optgroup-label {
  padding: 0 0.5em 0.25em;
  font-weight: bold;
  width: 100%;
}

.dk-optgroup-options {
  list-style: none;
  padding-left: 0;
}
.dk-optgroup-options .dk-optgroup-options li {
  padding-left: 1.2em;
}

.dk-select-open-up .dk-selected {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dk-select-open-down .dk-selected {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dk-select-open-up .dk-selected:before, .dk-select-open-down .dk-selected:before {
  border-width: 0 0.25em 0.25em;
  border-bottom-color: white;
}
.dk-select-open-up .dk-select-options, .dk-select-open-down .dk-select-options {
  display: block;
}

.dk-select-multi:focus .dk-select-options {
  display: block;
}
.dk-select-multi:hover, .dk-select-multi:focus {
  outline: none;
}

.dk-selected:hover,
.dk-selected:focus {
  outline: none;
}

.dk-select-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.dk-select-disabled .dk-selected:hover, .dk-select-disabled .dk-selected:focus {
  border-color: inherit;
}
.dk-select-disabled .dk-selected:hover:before, .dk-select-disabled .dk-selected:focus:before {
  border-top-color: inherit;
}
.dk-select-disabled .dk-selected:hover:after, .dk-select-disabled .dk-selected:focus:after {
  border-left-color: inherit;
}

select[data-dkcacheid] {
  display: none;
}

/*
  Contact Details
 */
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
}
.contact-details address,
.contact-details p {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 840px) {
  .contact-details {
    flex-direction: row;
  }
}

/*
  Content
 */
.content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-family: "Alright Sans", sans-serif;
}
@media screen and (min-width: 840px) {
  .content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .content {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media screen and (min-width: 840px) {
  .content {
    flex-direction: row;
  }
}
.content .mobile-heading {
  width: 100%;
}
@media screen and (min-width: 840px) {
  .content .mobile-heading {
    display: none;
  }
}
@media screen and (min-width: 840px) {
  .content img,
  .content .text {
    width: calc(50% - 60px);
  }
}
@media screen and (min-width: 1080px) {
  .content img,
  .content .text {
    width: calc(50% - 100px);
  }
}
@media screen and (max-width: 839px) {
  .content img:not(:last-child),
  .content .text:not(:last-child) {
    margin-bottom: 30px;
  }
}
.content img.inline {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 840px) {
  .content p,
  .content li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .content p,
  .content li {
    font-size: 20px;
  }
}
.content p {
  margin-bottom: 0;
}
.content p:not(:last-child) {
  margin-bottom: 30px;
}

/*
  Divider
 */
.divider {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.divider.combined, .divider.offset {
  position: relative;
}
.divider.combined :first-child, .divider.offset :first-child {
  position: relative;
  z-index: 10;
}
.divider.combined :last-child, .divider.offset :last-child {
  position: absolute;
  z-index: 9;
}
@media screen and (max-width: 1079px) {
  .divider.combined :last-child, .divider.offset :last-child {
    display: none;
  }
}
.divider.combined img, .divider.offset img {
  margin-bottom: 0;
  width: 1100px;
}
.divider.combined :first-child {
  margin-left: auto;
}
@media screen and (min-width: 1080px) {
  .divider.combined :first-child {
    padding-bottom: 80px;
  }
}
.divider.combined :last-child {
  top: 80px;
}
@media screen and (min-width: 1080px) {
  .divider.offset {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1080px) {
  .divider.offset :last-child {
    top: -140px;
    left: 55%;
  }
}

/*
  Pinned Text
 */
.pinned-text {
  position: absolute;
  display: flex;
  padding: 25px;
  color: rgb(237, 29, 36);
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1079px) {
  .pinned-text {
    display: none;
  }
}
.pinned-text.downwards {
  top: 0;
  right: 0;
  transform: rotate(90deg) translateX(100%);
  transform-origin: 100% 0 0;
}
.pinned-text.upwards {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: bottom left 0;
}
.pinned-text > *:not(:last-child) {
  position: relative;
  margin-right: calc(100px + 30px * 2);
}
.pinned-text > *:not(:last-child):after {
  position: absolute;
  left: calc(100% + 30px);
  top: 50%;
  display: block;
  height: 2px;
  width: 100px;
  content: "";
  background-color: currentColor;
}
.pinned-text p {
  margin-bottom: 0;
}
.pinned-text .coord:not(:last-child) {
  margin-right: 5px;
}

/*
  Recipe Navigation
 */
.recipe-nav {
  position: relative;
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  width: 100%;
  margin-bottom: auto;
  padding: 30px;
  /*&:before {
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    left: 0;

    display: block;

    background-color: $background-secondary;
    content: '';
  }*/
}
@media screen and (min-width: 840px) {
  .recipe-nav {
    max-width: 420px;
  }
}
@media screen and (max-width: 839px) {
  .recipe-nav {
    margin-left: -25px;
    padding-right: 0;
  }
}
@media screen and (min-width: 1080px) {
  .recipe-nav {
    max-width: 620px;
  }
}
@media screen and (min-width: 1080px) {
  .recipe-nav {
    padding: 110px;
  }
}
.recipe-nav .holder {
  position: relative;
}
.recipe-nav .holder:not(:last-child) {
  border-bottom: 4px solid rgb(0, 99, 166);
}
.recipe-nav .label {
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 26px;
  font-family: "Manifold CF", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (min-width: 840px) {
  .recipe-nav .label {
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .recipe-nav .label {
    font-size: 36px;
  }
}
.recipe-nav .sub {
  position: relative;
  display: none;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 30px;
  padding-left: 40px;
}
.recipe-nav .sub .item {
  font-size: 18px;
  font-family: "Manifold CF", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.recipe-nav .sub .item:not(:last-child) {
  margin-bottom: 15px;
}
.recipe-nav .sub .item:hover span {
  text-decoration: underline;
}
.recipe-nav .sub .item:before {
  margin-right: 5px;
  margin-left: -17px;
  content: "—";
}
.recipe-nav.no-sub .label {
  font-size: 35px;
}
@media screen and (min-width: 840px) {
  .recipe-nav.no-sub {
    padding-left: 0;
  }
}
.recipe-nav .is-active .sub {
  display: flex;
}

/*
 * Product from products list in store section
 */
.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .product {
    align-items: flex-start;
    flex-direction: row;
  }
}
.product a {
  text-decoration: none;
}
.product .half > img {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 640px) {
  .product .half {
    width: calc(50% - 30px);
  }
}
.product .product-details {
  border-top: 1px solid rgb(0, 99, 166);
  padding-top: 20px;
}
.product .product-details .product-detail-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.product .product-details .product-detail-hl {
  color: rgb(237, 29, 36);
}

.cart-button {
  display: block;
  text-align: center;
  background: rgb(255, 255, 255);
  border: 0 none;
  font-size: 24px;
  font-family: "Manifold CF", sans-serif;
  color: rgb(0, 99, 166);
  line-height: 68px;
  width: 100%;
  padding: 0;
  transition: opacity 0.4s;
  text-decoration: none;
}
@media screen and (max-width: 639px) {
  .cart-button {
    line-height: 48px;
  }
}
.cart-button:disabled {
  opacity: 0.6;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-subtotal [data-cart-subtotal] {
  font-size: larger;
}
.cart-subtotal small {
  font-size: larger;
  vertical-align: top;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-item button {
  outline: 0px none;
}
.cart-item .cart-item-qty {
  width: 43px;
  height: 40px;
  border: 1px solid rgb(255, 255, 255);
  padding: 2px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart-item .cart-item-qty input {
  border: 0px none;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: "Manifold CF", sans-serif;
  width: 100%;
  display: block;
  transform: translateY(-2px);
  background: none;
  text-align: center;
  outline: 0px none;
}
.cart-item .cart-item-name {
  margin: 0 10px 0 20px;
  line-height: 1.1em;
}
.cart-item .cart-item-name span:first-child {
  text-transform: uppercase;
}
.cart-item .cart-item-remove {
  flex: 1;
  text-align: right;
  background: none;
  border: 0 none;
  color: rgb(255, 255, 255);
  font-size: 40px;
  transform: translateY(-2px);
  transform-origin: 50% 50%;
}
.cart-item .cart-item-remove:focus, .cart-item .cart-item-remove:active {
  transform: translateY(-2px) scale(1.1);
}

.cart-sidebar-tag {
  top: 30px;
  font-size: 24px;
  font-family: "Manifold CF", sans-serif;
  text-transform: uppercase;
  z-index: 22;
  padding: 5px 10px;
  cursor: pointer;
  text-align: center;
  width: 50%;
  left: 50%;
  margin-left: -25%;
  position: fixed;
  color: rgb(237, 29, 36);
}
.cart-sidebar-tag .qty {
  color: rgb(255, 255, 255);
  background: rgb(237, 29, 36);
  display: inline-block;
  padding: 0 5px;
  border-radius: 4px;
  text-align: center;
  min-width: 1em;
  line-height: 1.1em;
}
@media screen and (min-width: 840px) {
  .cart-sidebar-tag {
    transform-origin: 0 0;
    transform: rotate(-90deg) translateX(-100%);
    top: 0;
    left: 0;
    margin-left: 0;
    width: auto;
    color: rgb(0, 99, 166);
  }
  .cart-sidebar-tag .sep {
    height: 2px;
    background: rgb(0, 99, 166);
    display: inline-block;
    vertical-align: middle;
    width: 80px;
  }
  .cart-sidebar-tag .qty {
    background: rgb(0, 99, 166);
  }
}

.cart-date-selector .cart-date-selector-label {
  font-size: 20px;
  margin: 0;
}
.cart-date-selector .cart-date-selector-label span {
  text-transform: uppercase;
}
.cart-date-selector .dk-select {
  width: 100%;
  background: rgb(0, 99, 166);
  color: rgb(255, 255, 255);
  margin: 5px 0;
}
.cart-date-selector .dk-select .dk-selected {
  background: rgb(0, 99, 166);
  height: 40px;
  font-size: 16px;
  padding: 7px 10px;
  transition: background-color 0.2s;
}
.cart-date-selector .dk-select.dk-select-open-down .dk-selected {
  background: rgb(0, 83.7921686747, 140.5);
}
.cart-date-selector .dk-select .dk-select-options {
  font-size: 16px;
  background: rgb(0, 83.7921686747, 140.5);
  transition: opacity 0.2s, visibility 0.2s;
}
.cart-date-selector .dk-select .dk-select-options .dk-option {
  padding: 2px 10px;
}
.cart-date-selector .dk-select .dk-select-options .dk-option:hover {
  background: rgb(0, 68.5843373494, 115);
}
.cart-date-selector .cart-date-selector-options {
  display: flex;
  justify-content: space-between;
  padding: 5px 0 3px;
}
.cart-date-selector .cart-date-selector-option {
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}
.cart-date-selector .cart-date-selector-option .cart-date-selector-option-text {
  padding: 7px 10px 10px;
  line-height: 1.2em;
  border: 1px solid transparent;
  display: block;
  transition: border-color 0.3s;
}
.cart-date-selector .cart-date-selector-option input {
  display: none;
}
.cart-date-selector .cart-date-selector-option input:checked + .cart-date-selector-option-text {
  border-color: rgb(255, 255, 255);
}

.newsletter-link {
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.newsletter-link a {
  color: rgb(255, 255, 255);
  font-size: 17px;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-bottom: 0.25em;
  text-decoration: none;
}

.header {
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 839px) {
  .header {
    display: flex;
    padding: 25px 25px 120px;
  }
}
@media screen and (min-width: 840px) {
  .header {
    margin-top: 140px;
    margin-bottom: 140px;
    mix-blend-mode: multiply;
  }
}
.header > a,
.header .logo {
  width: 58px;
  height: auto;
  opacity: 1;
}
@media screen and (min-width: 840px) {
  .header > a,
  .header .logo {
    width: 130px;
  }
}
.header > a.on-home,
.header .logo.on-home {
  transition: opacity 2s ease-out;
  opacity: 0;
}
.header > a {
  display: block;
  animation-delay: 0.4s;
  transition: opacity 0.4s ease-out;
}
@media screen and (max-width: 839px) {
  .header > a {
    position: relative;
    z-index: 200;
  }
}
@media screen and (min-width: 840px) {
  .header > a {
    margin-left: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .header > a {
    margin-left: 120px;
  }
}
.header > a:hover {
  opacity: 0.7;
}
.header > a.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.header .back-link {
  position: absolute;
  z-index: 1;
  padding-left: 25px;
  margin: 0;
  width: auto;
  color: rgb(237, 29, 36);
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 839px) {
  .header .back-link {
    top: 120px;
    left: 0;
  }
}
@media screen and (min-width: 840px) {
  .header .back-link {
    right: 50px;
    bottom: -100px;
    padding-left: 70px;
    font-size: 44px;
    mix-blend-mode: multiply;
  }
}
@media screen and (min-width: 1080px) {
  .header .back-link {
    right: 7vw;
    padding-left: 135px;
    font-size: 64px;
  }
}
.header .back-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  height: 3px;
  width: 14px;
  margin-right: 0;
  vertical-align: middle;
  content: "";
  border-top: 3px solid currentColor;
  transition: all 0.3s;
}
@media screen and (min-width: 840px) {
  .header .back-link::before {
    height: 5px;
    width: 60px;
    border-top-width: 5px;
  }
}
@media screen and (min-width: 1080px) {
  .header .back-link::before {
    height: 8px;
    width: 120px;
    border-top-width: 8px;
  }
}
@media screen and (min-width: 840px) {
  .header .back-link:hover::before {
    margin-left: -10px;
    width: 70px;
  }
}
@media screen and (min-width: 1080px) {
  .header .back-link:hover::before {
    margin-left: -20px;
    width: 140px;
  }
}
.header .button-menu {
  position: fixed;
  right: 25px;
  z-index: 200;
  display: block;
  width: 46px;
  height: 60px;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  appearance: none;
  outline: none;
}
@media screen and (min-width: 840px) {
  .header .button-menu {
    display: none;
  }
}
.header .button-menu.is-active span {
  background: none;
}
.header .button-menu.is-active span::before, .header .button-menu.is-active span::after {
  background-color: rgb(255, 255, 255);
  transition-delay: 0s, 0.2s;
}
.header .button-menu.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.header .button-menu.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.header .button-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 45px;
  height: 3px;
  text-indent: -9999px;
  background-color: rgb(237, 29, 36);
  transform: translate(-50%, -50%);
  transition: background 0s 0.2s;
}
.header .button-menu span::before, .header .button-menu span::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(237, 29, 36);
  content: "";
  transition-delay: 0.2s, 0s;
  transition-duration: 0.2s, 0.2s;
}
.header .button-menu span::before {
  top: -11px;
  transform: rotate(0);
  transition-property: top, transform;
}
.header .button-menu span::after {
  bottom: -11px;
  transform: rotate(0);
  transition-property: bottom, transform;
}
@media screen and (min-width: 840px) {
  .header .constrain {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
  }
}
@media screen and (min-width: 840px) {
  .header .menu-hidden {
    display: none;
  }
}
@media screen and (min-width: 840px) {
  .header .pinned-text.downwards {
    top: -140px;
  }
}

/*
  Main
 */
.main {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.main .content,
.main .divider {
  width: 100%;
  padding-bottom: 50px;
}
@media screen and (min-width: 840px) {
  .main .content,
  .main .divider {
    padding-bottom: 130px;
  }
}
.main .content.end,
.main .divider.end {
  margin-bottom: 0;
  padding-bottom: 0;
}

/*
  Navigation
 */
.initial-load .item {
  opacity: 0;
  animation-name: fadeInLeftShort;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.initial-load .item:nth-child(2) {
  animation-delay: 0.4s;
}
.initial-load .item:nth-child(3) {
  animation-delay: 0.5s;
}
.initial-load .item:nth-child(4) {
  animation-delay: 0.6s;
}
.initial-load .item:nth-child(5) {
  animation-delay: 0.7s;
}
.initial-load .item:nth-child(6) {
  animation-delay: 0.8s;
}

@media screen and (min-width: 840px) {
  .video-playing .navigation {
    opacity: 0;
  }
}

.navigation {
  display: flex;
  flex-direction: column;
  color: rgb(237, 29, 36);
}
@media screen and (min-width: 840px) {
  .navigation {
    min-width: 430px;
    transition: opacity 0.7s;
  }
}
@media screen and (min-width: 1080px) {
  .navigation {
    min-width: 600px;
  }
}
.navigation.main {
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 839px) {
  .navigation.main {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: flex-end;
    padding-top: 100px;
    padding-bottom: 40px;
    color: rgb(255, 255, 255);
    background-color: rgb(237, 29, 36);
    transform: translateX(100%);
    transition: transform 0.25s;
  }
}
@media screen and (min-width: 840px) {
  .navigation.main {
    top: 120px;
    left: 51%;
  }
}
@media screen and (max-width: 839px) {
  .navigation.main.is-active {
    transform: translateX(0);
  }
}
@media screen and (min-width: 840px) {
  .navigation.load-in {
    animation-name: fadeInLeftShort;
    animation-duration: 0.5s;
  }
}
.navigation .item {
  color: currentColor;
  font-size: 30px;
  line-height: 1.25;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (min-width: 840px) {
  .navigation .item {
    font-size: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .navigation .item {
    font-size: 54px;
  }
}
@media screen and (min-width: 1240px) {
  .navigation .item {
    font-size: 64px;
  }
}
@media screen and (max-height: 760px) {
  .navigation .item {
    font-size: 30px;
  }
}
.navigation .item:hover::before, .navigation .item.is-active::before {
  width: 40px;
  margin-right: 12px;
  border-top-color: currentColor;
}
@media screen and (min-width: 840px) {
  .navigation .item:hover::before, .navigation .item.is-active::before {
    width: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .navigation .item:hover::before, .navigation .item.is-active::before {
    width: 120px;
  }
}
.navigation .item::before {
  display: inline-block;
  height: 3px;
  width: 30px;
  margin-right: 0;
  vertical-align: middle;
  content: "";
  border-top: 3px solid transparent;
  transition: all 0.25s ease-out;
}
@media screen and (min-width: 840px) {
  .navigation .item::before {
    height: 5px;
    width: 50px;
    border-top: 5px solid transparent;
  }
}
@media screen and (min-width: 1080px) {
  .navigation .item::before {
    height: 8px;
    width: 80px;
    border-top: 8px solid transparent;
  }
}

/*
  Recipe
 */
.recipe {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .recipe {
    justify-content: space-between;
    flex-direction: row;
  }
}
@media screen and (max-width: 839px) {
  .recipe [data-active-tab=false] {
    display: none !important;
  }
}
.recipe dl {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  font-family: "Alright Sans Medium", sans-serif;
}
.recipe dt, .recipe dd {
  margin: 0;
}
.recipe .tab-buttons {
  display: flex;
  border-top: 2px solid rgb(0, 99, 166);
  border-bottom: 2px solid rgb(0, 99, 166);
}
@media screen and (max-width: 839px) {
  .recipe .tab-buttons {
    margin-right: -25px;
    margin-left: -25px;
  }
}
@media screen and (min-width: 840px) {
  .recipe .tab-buttons {
    display: none;
  }
}
.recipe .tab-buttons .item {
  width: 50%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "Alright Sans Medium", sans-serif;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}
.recipe .tab-buttons .item:not(:first-child) {
  border-left: 1px solid rgb(0, 99, 166);
}
.recipe .tab-buttons .item:not(:last-child) {
  border-right: 1px solid rgb(0, 99, 166);
}
.recipe .tab-buttons [data-active-button=true] {
  text-decoration: underline;
}
.recipe .ingredients,
.recipe .method {
  padding-top: 20px;
}
@media screen and (min-width: 840px) {
  .recipe .ingredients,
  .recipe .method {
    width: calc(50% - 40px);
  }
}
.recipe .ingredients {
  font-family: "Manifold CF", sans-serif;
}
@media screen and (min-width: 840px) {
  .recipe .ingredients {
    max-width: 500px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .recipe .ingredients {
    font-size: 18px;
  }
}
@media screen and (min-width: 840px) {
  .recipe .ingredients dl {
    position: sticky;
    top: 20px;
  }
}
.recipe .ingredients dt,
.recipe .ingredients dd {
  padding-top: 12px;
  padding-bottom: 10px;
}
@media screen and (min-width: 840px) {
  .recipe .ingredients dt:first-of-type,
  .recipe .ingredients dd:first-of-type {
    padding-top: 0;
  }
}
.recipe .ingredients dt:not(:first-of-type),
.recipe .ingredients dd:not(:first-of-type) {
  border-top: 2px solid rgb(0, 99, 166);
}
.recipe .ingredients dt {
  width: 30%;
}
@media screen and (min-width: 840px) {
  .recipe .ingredients dt {
    width: 25%;
  }
}
.recipe .ingredients dd {
  width: 70%;
}
@media screen and (min-width: 840px) {
  .recipe .ingredients dd {
    width: 75%;
  }
}
.recipe .method {
  display: flex;
  flex-direction: column;
}
.recipe .method dt,
.recipe .method dd {
  padding-bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .recipe .method dt,
  .recipe .method dd {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
@media screen and (max-width: 1079px) {
  .recipe .method dt:first-of-type,
  .recipe .method dd:first-of-type {
    padding-top: 8px;
  }
}
.recipe .method dl {
  display: block;
  margin-bottom: 30px;
  border-top: 2px solid rgb(0, 99, 166);
  border-bottom: 2px solid rgb(0, 99, 166);
}
@media screen and (min-width: 840px) {
  .recipe .method dl {
    order: -1;
  }
}
@media screen and (min-width: 1080px) {
  .recipe .method dl {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    font-size: 14px;
  }
}
@media screen and (min-width: 1240px) {
  .recipe .method dl {
    font-size: 16px;
  }
}
@media screen and (max-width: 1079px) {
  .recipe .method dt {
    width: 40%;
    border-right: 2px solid rgb(0, 99, 166);
  }
}
@media screen and (min-width: 1080px) {
  .recipe .method dt::after {
    content: ":";
  }
}
.recipe .method dd {
  padding-left: 15px;
}
@media screen and (max-width: 1079px) {
  .recipe .method dd {
    width: 60%;
  }
}
@media screen and (min-width: 1080px) {
  .recipe .method dd {
    padding-left: 8px;
  }
}
.recipe .method .wrap {
  display: flex;
}
@media screen and (min-width: 1080px) {
  .recipe .method .wrap {
    flex: 1 1 auto;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .recipe .method .wrap:not(:last-of-type) {
    border-right: 2px solid rgb(0, 99, 166);
  }
}
.recipe .method .description {
  font-size: 24px;
  font-family: "Manifold CF", sans-serif;
  line-height: 1.3;
}
@media screen and (min-width: 1080px) {
  .recipe .method .description {
    font-size: 30px;
  }
}
.recipe .method .subtitle {
  font-size: 18px;
  font-family: "Manifold CF", sans-serif;
  line-height: 1.3;
}
@media screen and (min-width: 1080px) {
  .recipe .method .subtitle {
    font-size: 22px;
  }
}

/*
  Species
 */
.species {
  flex-direction: column;
}
.species .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .species .item {
    align-items: flex-start;
    flex-direction: row;
  }
}
.species .item:not(:last-child) {
  margin-bottom: 140px;
}
@media screen and (min-width: 640px) {
  .species .item img,
  .species .item .text {
    width: calc(50% - 30px);
  }
}
@media screen and (min-width: 640px) {
  .species .item > img {
    order: 2;
  }
}
.species .item ul {
  list-style: none;
  padding-left: 0;
}
.species .item .text > img {
  width: 100%;
  margin-bottom: 20px;
}
.species .item .description {
  margin-bottom: 15px;
}
@media screen and (min-width: 840px) {
  .species .item .description {
    margin-bottom: 25px;
  }
}
.species .suggestion {
  display: flex;
  border-top: 2px solid rgb(0, 99, 166);
  border-bottom: 2px solid rgb(0, 99, 166);
}
.species .suggestion p,
.species .suggestion ul {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 0;
  line-height: 1.3;
}
.species .suggestion ul {
  padding-left: 16px;
  font-weight: 500;
}
.species .suggestion > :first-child {
  padding-right: 15px;
  border-right: 2px solid rgb(0, 99, 166);
}
/*
  Products List
 */
.products {
  flex-direction: column;
}
.products > .product:not(:last-child) {
  margin-bottom: 70px;
}

.cart-sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 20px;
  color: rgb(255, 255, 255);
  background: rgb(0, 99, 166);
  z-index: 23;
}
@media screen and (min-width: 640px) {
  .cart-sidebar {
    padding: 80px 60px;
    max-width: 456px;
  }
}
.cart-sidebar .cart-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 796px;
  max-height: calc(100vh - 140px);
}
.cart-sidebar .cart-sidebar-title {
  font-size: 48px;
  margin-bottom: 75px;
  background: url("../img/icon/cart.svg") center right no-repeat;
}
@media screen and (max-width: 639px) {
  .cart-sidebar .cart-sidebar-title {
    font-size: 32px;
    margin-bottom: 25px;
    background-image: none;
  }
  .cart-sidebar .cart-sidebar-title:before {
    content: "← ";
  }
}
.cart-sidebar .cart-sidebar-items {
  font-size: 20px;
}
.cart-sidebar .cart-sidebar-items .cart-item + .cart-item {
  margin-top: 25px;
}
.cart-sidebar .cart-sidebar-bullet {
  width: 40px;
  height: 2px;
  margin: 35px auto 25px 0;
  background: rgb(255, 255, 255);
}
@media screen and (max-width: 639px) {
  .cart-sidebar .cart-sidebar-bullet {
    display: none;
  }
}
.cart-sidebar .cart-sidebar-subtotals {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 15px;
}
.cart-sidebar .cart-sidebar-seperator {
  flex: 1;
}
.cart-sidebar .cart-sidebar-actions {
  margin-top: 10px;
}
.cart-sidebar .cart-fineprint {
  font-size: 16px;
  margin-top: 5px;
  text-align: center;
  text-transform: uppercase;
}

.cart-sidebar-overlay {
  background: rgb(255, 255, 255);
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0.5;
  bottom: 0;
  width: 100%;
  opacity: 0;
  z-index: 21;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s;
}

body .cart-sidebar {
  position: fixed;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
}
body #main {
  transition: transform 0.3s ease-in-out;
}

body.peek-sidebar .cart-sidebar {
  transform: translateX(0);
}
body.peek-sidebar .cart-sidebar-overlay {
  opacity: 0.5;
  visibility: visible;
}
@media screen and (min-width: 640px) {
  body.peek-sidebar #main {
    transform: translateX(456px);
  }
}

.product {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .product {
    flex-direction: row;
    justify-content: space-between;
  }
}
.product .product-section {
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 839px) {
  .product .product-section.right {
    padding-top: 20px;
  }
}
@media screen and (min-width: 840px) {
  .product .product-section.left {
    flex: 1;
  }
  .product .product-section.right {
    flex: 3;
    margin-left: 80px;
    margin-top: -10vh;
  }
  .product .product-section.right > * {
    max-width: 500px;
  }
}
.content .product img {
  width: 100% !important;
}

.product-title {
  margin-bottom: 0px;
}

.product-desc {
  color: rgb(237, 29, 36);
  font-family: "Manifold CF", sans-serif;
  font-size: 30px !important;
  line-height: 1em;
  padding-top: 0.3em;
}

.product-bullet {
  background: rgb(0, 99, 166);
  height: 3px;
  width: 120px;
  margin: 30px 0;
}

.product-price {
  font-size: 45px !important;
  font-family: "Manifold CF", sans-serif;
  line-height: 0.9em;
}
.product-price small {
  vertical-align: super;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 0;
}

.product-add-to-cart-button {
  color: rgb(237, 29, 36);
  border: 2px solid rgb(237, 29, 36);
  padding: 10px 30px;
  font-size: 24px;
  font-family: "Manifold CF", sans-serif;
  text-transform: uppercase;
  width: 100%;
  transition: opacity 0.4s;
  outline: 0px none;
  cursor: pointer;
  background: none;
}
.product-add-to-cart-button:disabled {
  opacity: 0.5;
}

.product-shipping-notice {
  margin-top: 30px;
  font-family: "Manifold CF", sans-serif;
  font-size: 24px;
  border: 2px solid rgb(0, 99, 166);
  border-width: 2px 0;
  padding: 12px 0 16px;
  line-height: 1.1em;
}

.product-common-description {
  font-size: 20px;
  line-height: 1.5em;
}

/*
  View - About
 */
@media screen and (min-width: 840px) {
  .view-about p:not(:last-child) {
    margin-bottom: 30px;
  }
}

/*
  View - Contact
 */
.view-contact {
  position: relative;
  width: 100%;
}
.view-contact:before {
  position: absolute;
  top: 210px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background-color: rgb(191, 215, 237);
}
@media screen and (min-width: 840px) {
  .view-contact:before {
    top: 160px;
    background-image: url("/assets/img/contact/background.jpg");
    background-repeat: no-repeat;
    background-position: top right;
  }
}
.view-contact > * {
  position: relative;
}
.view-contact .content {
  flex-direction: column;
  max-width: 600px;
}
@media screen and (min-width: 840px) {
  .view-contact .content {
    margin-left: 0;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .view-contact .content {
    max-width: 800px;
  }
}
.view-contact .content > img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 90px;
  margin-top: 50px;
  mix-blend-mode: darken;
}
@media screen and (min-width: 840px) {
  .view-contact .content > img {
    margin-bottom: 90px;
    margin-top: 80px;
  }
}

.view-home {
  overflow: hidden;
  flex-grow: 1;
  margin-top: -410px;
  /* Promo Video */
}
@media screen and (max-width: 839px) {
  .view-home {
    padding-top: 50vh;
  }
}
@media screen and (min-width: 840px) {
  .view-home {
    display: flex;
  }
}
.view-home .bg {
  background: url("/assets/img/waves-bg.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media screen and (max-width: 839px) {
  .view-home .bg {
    display: none;
  }
}
.view-home .bg-image {
  position: relative;
  align-self: flex-end;
  display: block;
  width: 100%;
  height: 100px;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  background-image: url("/assets/img/home-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 90% 40px;
}
@media screen and (min-width: 840px) {
  .view-home .bg-image {
    background-position: bottom left 80px;
    opacity: 0;
    background-size: calc(50% - 80px) auto;
  }
}
@media screen and (min-width: 1080px) {
  .view-home .bg-image {
    background-position: bottom left 120px;
  }
}
@media screen and (min-width: 840px) {
  .view-home .promo-img,
  .view-home .promo-logo {
    display: none;
  }
}
.view-home .promo-img {
  margin-top: 10vh;
  top: 50px;
  width: 100%;
  max-width: 400px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.view-home .newsletter-link {
  position: absolute;
  top: 20px;
  z-index: 100;
  width: 100%;
}
.view-home .logo-round {
  position: absolute;
  left: 10%;
  top: 140px;
  width: 40vw;
  opacity: 0;
  max-height: 400px;
}
.view-home .logo-round svg {
  width: 100%;
  height: 100%;
}
.view-home .logo-round.reveal {
  animation-name: fadeInLeftShort;
  animation-duration: 0.5s;
}
@media screen and (max-width: 839px) {
  .view-home .logo-round {
    display: none;
  }
}
.view-home .navigation {
  padding-bottom: 20px;
  padding-left: 10px;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 840px) {
  .view-home .navigation {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .view-home .navigation {
    font-size: 24px;
    line-height: 1.25;
  }
}
.view-home .navigation .item:not(:last-child) {
  margin-bottom: 10px;
}
.view-home .promo-video {
  position: absolute;
  top: 0px;
  right: 50%;
  width: 100%;
  max-width: 1280px;
  transform: translateX(50%);
}
@media screen and (max-width: 839px) {
  .view-home .promo-video {
    display: none;
  }
}

.video-played .view-home .promo-video {
  display: none;
}
.video-played .view-home .home-lockup, .video-played .view-home .bg, .video-played .view-home .logo-round {
  display: block;
}
@media screen and (max-width: 839px) {
  .video-played .view-home .bg, .video-played .view-home .logo-round {
    display: none;
  }
}

/*
  View - Ocean To Plate
 */
.view-ocean-to-plate {
  overflow-x: hidden;
}
.view-ocean-to-plate > .content,
.view-ocean-to-plate > .highlight {
  position: relative;
}
.view-ocean-to-plate .highlight {
  padding-bottom: 80px;
  margin-bottom: 80px;
  margin-top: 100px;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 99, 166);
}
@media screen and (max-width: 839px) {
  .view-ocean-to-plate .highlight {
    margin-top: 20%;
    padding-top: 0px;
  }
}
@media screen and (min-width: 840px) {
  .view-ocean-to-plate .highlight {
    padding-top: 320px;
    padding-bottom: 170px;
    margin-bottom: 200px;
  }
}
.view-ocean-to-plate .highlight .content {
  padding-bottom: 0;
}
.view-ocean-to-plate .highlight .content p + h4 {
  margin-top: 80px;
}
@media screen and (min-width: 840px) {
  .view-ocean-to-plate .highlight .content p + h4 {
    margin-top: 180px;
  }
}
.view-ocean-to-plate .highlight img.fixed {
  margin-top: -20%;
}
@media screen and (min-width: 840px) {
  .view-ocean-to-plate .highlight img.fixed {
    position: absolute;
    top: -20%;
    left: auto;
    margin-top: 0;
    max-width: 500px;
  }
}
.view-ocean-to-plate .content:not(.horizontal) {
  align-items: flex-start;
  flex-direction: column;
}
.view-ocean-to-plate .content p + h4 {
  margin-top: 60px;
}
@media screen and (min-width: 840px) {
  .view-ocean-to-plate .content p + h4 {
    margin-top: 70px;
  }
}
@media screen and (min-width: 840px) {
  .view-ocean-to-plate img.negative-offset {
    margin-top: -35%;
  }
}
.view-ocean-to-plate img.key {
  width: 200px;
}
.view-ocean-to-plate img.map {
  position: absolute;
  left: 38vw;
  top: 0;
  width: 18vw;
  z-index: 5;
}
@media screen and (max-width: 839px) {
  .view-ocean-to-plate img.map {
    position: relative;
    width: 40vw;
    left: auto;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1240px) {
  .view-ocean-to-plate img.map {
    max-width: 300px;
  }
}

/*
  View - Recipe List
 */
@media screen and (max-width: 839px) {
  .view-recipe-list .content {
    padding-right: 0;
  }
}
.view-recipe-list .recipe-nav {
  margin-bottom: 80px;
}
.view-recipe-list .images {
  position: relative;
  margin-left: -5vw;
  width: 60vw;
  max-width: 500px;
}
@media screen and (min-width: 840px) {
  .view-recipe-list .images {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 680px;
    position: absolute;
    left: 20vw;
  }
}
@media screen and (min-width: 1080px) {
  .view-recipe-list .images {
    margin-top: 540px;
    margin-right: auto;
    left: 60vw;
  }
}
.view-recipe-list .images .logo-img {
  position: absolute;
  bottom: 60px;
  left: -160px;
  z-index: 1;
  width: 280px;
}
@media screen and (min-width: 840px) {
  .view-recipe-list .images .logo-img {
    width: 50%;
    left: -80px;
  }
}
@media screen and (min-width: 1080px) {
  .view-recipe-list .images .logo-img {
    bottom: 90px;
  }
}
@media screen and (max-width: 839px) {
  .view-recipe-list .images .logo-img {
    display: none;
  }
}
.view-recipe-list .images .recipe-img {
  width: 100%;
}

/*
  View - Recipe
 */
.view-recipe .heading {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 840px) {
  .view-recipe .heading {
    width: 50%;
    margin-bottom: 60px;
  }
}
.view-recipe .recipe-img {
  transition: all 0.35s ease-out;
  animation-fill-mode: backwards;
}
@media screen and (min-width: 840px) {
  .view-recipe .recipe-img {
    position: fixed;
    top: 0;
    left: 38%;
    z-index: -1;
    max-width: 740px;
  }
}
.page-scrolled .view-recipe .recipe-img {
  opacity: 0.08;
}
.view-recipe .content {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
}

.view-shop-product .content {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  max-width: none;
}
.view-shop-product img {
  transition: width 0.35s ease-out;
  animation-fill-mode: backwards;
}

/*# sourceMappingURL=style.css.map */
