/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

html {
  font-size: 10px; }

@font-face {
  font-family: lato;
  src: url("fonts/Lato-Regular.ttf");
  font-weight: 600; }

@font-face {
  font-family: lato;
  src: url("fonts/Lato-Bold.ttf");
  font-weight: 800; }

@font-face {
  font-family: robotoSlab;
  src: url("fonts/RobotoSlab-Regular.ttf");
  font-weight: 600; }

@font-face {
  font-family: robotoSlab;
  src: url("fonts/RobotoSlab-Bold.ttf");
  font-weight: 800; }

* {
  font-family: lato, sans-serif; }

h1, h2, h3 {
  font-family: robotoSlab, sans-serif; }

body * {
  font-size: 1.4rem; }

h1 {
  font-size: 3.5rem;
  font-weight: 800; }
  @media screen and (max-width: 800px) {
    h1 {
      font-size: 2.5rem; } }

h2 {
  font-size: 2.5rem; }
  @media screen and (max-width: 800px) {
    h2 {
      font-size: 2.2rem; } }

h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 2rem 0 1rem; }

h4 {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 2rem 0 1rem; }

a {
  color: #333333;
  position: relative;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
  a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 100%;
    height: 2px;
    transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #D24A42;
    z-index: 1; }
  a:hover {
    color: #fff; }
    a:hover::after {
      right: 0%; }

.section-head {
  font-size: 11rem; }
  @media screen and (max-width: 800px) {
    .section-head {
      font-size: 5rem; } }

.stretch, header menu {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.btn a, .slide, .slide--color-overlay video::after, header .header-button a, .bestsellers .bestseller-grid .bestseller-grid__entry a, .bestsellers .bestseller-grid .bestseller-grid__entry .bestseller-grid__entry-item, .bestsellers .bestseller-grid .bestseller-grid__entry .bestseller-grid__entry-item::after, .shopping-grid__item a, main.cart .proceed-to-checkout a, main.cart .back-to-shopping a, .post-grid .blog-item a {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.slide--background, .prod-top .packshot-select .packshot-select__preview, .post-grid .blog-item__image, .post-top .main-img, .food-section .food-grid__img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.shopping-grid__item .shopping-grid__image, .prod-top .packshot-preview {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; }

.bestsellers .bestseller-grid, .shopping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 30rem;
  grid-gap: 10px; }
  @media screen and (max-width: 800px) {
    .bestsellers .bestseller-grid, .shopping-grid {
      grid-auto-rows: 20rem;
      grid-template-columns: repeat(2, 1fr); } }

.bestsellers .bestseller-grid .bestseller-grid__entry, .shopping-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem; }

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger.is-active:hover {
  opacity: 0.7; }

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff; }

.hamburger-box {
  width: 35px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 35px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

.hamburger.is-active .hamburger-inner::before {
  transform: translate3d(-7px, 1px, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger.is-active .hamburger-inner::after {
  transform: translate3d(-7px, -1px, 0) rotate(45deg) scale(0.7, 1); }

.btn {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s;
  font-size: 1.2rem;
  cursor: pointer; }
  .btn--light {
    border: 1px solid #fff;
    color: #fff; }
    .btn--light a {
      color: #fff; }
    .btn--light:hover {
      background-color: #fff;
      border: 1px solid #fff;
      color: #333; }
      .btn--light:hover a {
        color: #333; }
  .btn--dark {
    border: 1px solid #333;
    color: #333; }
    .btn--dark a {
      color: #333; }
    .btn--dark:hover {
      background-color: #333;
      border: 1px solid #333;
      color: #fff; }
      .btn--dark:hover a {
        color: #fff; }
  .btn--main {
    border: 1px solid #D24A42;
    color: #D24A42; }
    .btn--main a {
      color: #D24A42; }
    .btn--main:hover {
      background-color: #D24A42;
      border: 1px solid #D24A42;
      color: #fff; }
      .btn--main:hover a {
        color: #fff; }
  .btn a:hover::after {
    display: none; }

.slide__btn a {
  position: absolute; }

.slide {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s, opacity 0.4s, z-index 0.1s linear 0.4s;
  transform: translateY(-50px);
  opacity: 0;
  z-index: 0;
  overflow: hidden; }
  .slide--gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite; }
  .slide--video video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .slide--color-overlay video::after {
    content: '';
    position: absolute;
    background-color: rgba(210, 74, 66, 0.3); }
  .slide--copy-left {
    justify-content: flex-start;
    text-align: left; }
    .slide--copy-left .slide__title::after {
      left: 0 !important; }
  .slide--copy-right {
    justify-content: flex-end;
    text-align: right; }
    .slide--copy-right .slide__title::after {
      left: auto !important;
      right: 0 !important; }
  .slide--copy-top {
    align-items: flex-start; }
  .slide--copy-bottom {
    align-items: flex-end; }
  .slide .slide__body {
    position: relative;
    z-index: 10;
    color: #fff;
    padding: 2.5rem;
    max-width: 60%; }
    @media screen and (max-width: 600px) {
      .slide .slide__body {
        max-width: 90%; } }
    .slide .slide__body .slide__title {
      font-size: 5rem;
      font-family: robotoSlab, sans-serif;
      font-weight: 800;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      position: relative;
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s;
      transform: translateY(2.5rem);
      opacity: 0; }
      @media screen and (max-width: 600px) {
        .slide .slide__body .slide__title {
          font-size: 3rem; } }
      .slide .slide__body .slide__title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: calc( 50% - 50px);
        background-color: #fff;
        height: 4px;
        width: 0px;
        transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.5s; }
    .slide .slide__body .slide__description {
      font-size: 1.6rem;
      margin-bottom: 2rem;
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s;
      transform: translateY(2rem);
      opacity: 0; }
    .slide .slide__body .slide__btn {
      transition: background-color 0.3s, color 0.3s, opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s, transform 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s;
      transform: translateY(1.5rem);
      opacity: 0; }
  .slide--is-active {
    opacity: 1;
    transform: translateY(0);
    z-index: 5; }
    .slide--is-active .slide__body .slide__title {
      transform: translateY(0);
      opacity: 1; }
      .slide--is-active .slide__body .slide__title::after {
        width: 100px; }
    .slide--is-active .slide__body .slide__description {
      transform: translateY(0);
      opacity: 1; }
    .slide--is-active .slide__body .slide__btn {
      transform: translateY(0);
      opacity: 1; }

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.breadcrumbs {
  padding: 2rem 2rem 2rem 7rem;
  background-color: #fff;
  box-shadow: 2px 3px 20px -5px rgba(0, 0, 0, 0.2); }
  @media screen and (max-width: 600px) {
    .breadcrumbs {
      margin-top: 6rem;
      padding: 2rem; } }
  .breadcrumbs a:hover {
    color: #D24A42; }

body {
  font-size: 10px; }

.admin-bar #page {
  position: relative; }

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; }
  @media screen and (max-width: 600px) {
    header .site-branding {
      display: flex; } }
  header .header-button {
    background-color: #D24A42;
    padding: 0.5rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    cursor: pointer;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 5;
    box-shadow: 3px 3px 18px -5px rgba(0, 0, 0, 0.32); }
    header .header-button:hover {
      background-color: #8d2721; }
    header .header-button a {
      position: absolute; }
    header .header-button.cart-trigger, header .header-button.meal-order-trigger {
      transition: all 0.3s;
      transform: translateX(-105%);
      overflow: hidden;
      max-height: 0;
      padding: 0rem; }
      header .header-button.cart-trigger span, header .header-button.meal-order-trigger span {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-weight: 800;
        width: 100%;
        text-align: center;
        font-size: 1.2rem; }
      header .header-button.cart-trigger.is-active, header .header-button.meal-order-trigger.is-active {
        transform: translateX(0%);
        max-height: 70px;
        padding: 5px; }
    header .header-button.cart-trigger {
      background-image: url("img/cart.svg");
      background-size: 40%;
      background-repeat: no-repeat;
      background-position: center; }
      header .header-button.cart-trigger .total-items-in-cart {
        top: 3px; }
      header .header-button.cart-trigger .total-cart-price {
        bottom: 3px; }
        header .header-button.cart-trigger .total-cart-price::after {
          content: ' Eur'; }
    header .header-button.meal-order-trigger {
      background-image: url("img/meal.svg");
      background-size: 40%;
      background-repeat: no-repeat;
      background-position: center; }
      header .header-button.meal-order-trigger .total-items-in-meal-order {
        top: 3px; }
      header .header-button.meal-order-trigger .total-meal-order-price {
        bottom: 3px; }
        header .header-button.meal-order-trigger .total-meal-order-price::after {
          content: ' Eur'; }
  header .logo img {
    max-width: 4rem;
    max-height: 4rem; }
  header menu {
    position: fixed;
    background-color: #D24A42;
    z-index: 4;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transform: translateX(-105%); }
    header menu.is-active {
      transform: translateX(0%); }
    header menu nav ul li {
      position: relative;
      padding-right: 2rem; }
      header menu nav ul li a {
        font-family: robotoSlab, sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        position: relative;
        transition: color 0.2s;
        z-index: 2; }
      header menu nav ul li::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 100%;
        transition: right 0.3s;
        background-color: #fff;
        z-index: 1; }
      header menu nav ul li:hover a {
        color: #D24A42; }
      header menu nav ul li:hover::before {
        right: 0%; }

.the_content {
  margin-bottom: 6rem; }
  .the_content p {
    margin-bottom: 2rem; }
  .the_content .wp-block-group {
    margin-bottom: 2rem; }

.main-post-content {
  padding: 0 2rem; }
  @media screen and (max-width: 600px) {
    .main-post-content {
      padding: 0; } }
  .main-post-content p {
    font-size: 1.8rem !important;
    line-height: 2.8rem;
    color: #333; }
    @media (max-width: 992px) {
      .main-post-content p {
        font-size: 1.5rem !important;
        line-height: 2.5rem; } }
  .main-post-content a {
    font-size: 1.8rem; }
    .main-post-content a:hover {
      color: #333; }
    @media (max-width: 992px) {
      .main-post-content a {
        font-size: 1.5rem;
        line-height: 2.5rem; } }
  .main-post-content em, .main-post-content strong, .main-post-content pre, .main-post-content li {
    font-size: 1.8rem; }
    @media (max-width: 992px) {
      .main-post-content em, .main-post-content strong, .main-post-content pre, .main-post-content li {
        font-size: 1.5rem; } }
  .main-post-content pre {
    letter-spacing: 3px;
    max-width: 100%;
    overflow: scroll; }
  .main-post-content h2 {
    font-size: 2.5rem !important;
    color: #D24A42 !important;
    margin: 1.5rem 0 1rem; }
  .main-post-content .wp-block-gallery {
    justify-content: center; }
    .main-post-content .wp-block-gallery figcaption {
      font-size: 1.8rem !important;
      line-height: 2.8rem;
      color: #333; }
      @media (max-width: 992px) {
        .main-post-content .wp-block-gallery figcaption {
          font-size: 1.5rem !important;
          line-height: 2.5rem; } }
  .main-post-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0; }
  .main-post-content .wp-block-media-text.has-media-on-the-left .wp-block-media-text__content {
    padding-right: 0; }
  .main-post-content ol, .main-post-content ul, .main-post-content .wp-block-video, .main-post-content .wp-block-audio {
    margin-bottom: 4rem; }
  .main-post-content .wp-block-video, .main-post-content .wp-block-audio {
    margin-top: 4rem; }
  .main-post-content dfn {
    display: block;
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    margin-top: 1rem; }
    @media (max-width: 992px) {
      .main-post-content dfn {
        font-size: 1.5rem; } }

.page-section {
  margin-bottom: 4rem; }

/* Index styles */
.slider {
  position: fixed;
  width: 100%;
  height: 100%; }

.shop-header {
  display: flex;
  width: 100%;
  padding: 2rem 8rem; }
  @media screen and (max-width: 600px) {
    .shop-header {
      padding: 8rem 2rem 2rem;
      flex-direction: column; } }
  .shop-header .shop-header__slider {
    position: relative;
    flex: 0 0 70%;
    padding-top: 40%; }
    @media screen and (max-width: 600px) {
      .shop-header .shop-header__slider {
        padding-top: 140%; } }
  .shop-header .shop-header__info-blk {
    flex: 0 0 30%;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media screen and (max-width: 600px) {
      .shop-header .shop-header__info-blk {
        padding-left: 0; } }
    .shop-header .shop-header__info-blk .cat-list a {
      color: #333;
      font-size: 2rem;
      position: relative; }

.bestsellers {
  padding: 2rem 8rem; }
  @media screen and (max-width: 600px) {
    .bestsellers {
      padding: 2rem; } }
  .bestsellers h2 {
    font-size: 7vw;
    margin-bottom: -3%; }
    @media screen and (max-width: 800px) {
      .bestsellers h2 {
        margin-bottom: 0; } }
  .bestsellers .bestseller-grid .bestseller-grid__entry:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2; }
    @media screen and (max-width: 800px) {
      .bestsellers .bestseller-grid .bestseller-grid__entry:nth-child(1) {
        grid-row: span 1; } }
  .bestsellers .bestseller-grid .bestseller-grid__entry:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2; }
    @media screen and (max-width: 800px) {
      .bestsellers .bestseller-grid .bestseller-grid__entry:nth-child(4) {
        grid-row: span 1; } }
  .bestsellers .bestseller-grid .bestseller-grid__entry:nth-child(5) {
    grid-column: span 2; }
  .bestsellers .bestseller-grid .bestseller-grid__entry:nth-child(8) {
    grid-column: span 2; }
  .bestsellers .bestseller-grid .bestseller-grid__entry a {
    position: absolute; }
  .bestsellers .bestseller-grid .bestseller-grid__entry .bestseller-grid__entry-item {
    background-size: cover;
    background-position: center;
    position: absolute;
    transition: all 0.6s; }
    .bestsellers .bestseller-grid .bestseller-grid__entry .bestseller-grid__entry-item::after {
      content: '';
      position: absolute;
      background-color: #D24A42;
      opacity: 0;
      transition: all 0.3s; }
  .bestsellers .bestseller-grid .bestseller-grid__entry .bestseller-grid__title {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    transform: translateX(-200%);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    font-size: 3rem;
    color: #fff; }
  .bestsellers .bestseller-grid .bestseller-grid__entry:hover .bestseller-grid__entry-item::after {
    opacity: 0.6; }
  .bestsellers .bestseller-grid .bestseller-grid__entry:hover .bestseller-grid__entry-item--alt {
    opacity: 0; }
  .bestsellers .bestseller-grid .bestseller-grid__entry:hover .bestseller-grid__title {
    transform: translateX(0); }

.shopping-grid {
  grid-auto-rows: auto; }
  .shopping-grid__item {
    box-shadow: 2px 3px 20px -5px rgba(0, 0, 0, 0.45);
    padding: 2rem;
    position: relative; }
    @media (max-width: 768px) {
      .shopping-grid__item {
        padding: 1rem; } }
    .shopping-grid__item .shopping-grid__image {
      padding-top: 100%;
      margin: 2rem 0; }
      @media (max-width: 768px) {
        .shopping-grid__item .shopping-grid__image {
          margin: 1rem 0; } }
    .shopping-grid__item p {
      text-align: center;
      color: #666; }
      .shopping-grid__item p.title {
        text-transform: uppercase; }
      .shopping-grid__item p.price {
        letter-spacing: 1.5px;
        margin: 0.5rem; }
    .shopping-grid__item a {
      position: absolute; }

.prod-top {
  display: grid;
  grid-template-columns: 1fr 5fr 4fr;
  padding: 2rem 8rem;
  grid-column-gap: 2rem;
  margin-bottom: 4rem; }
  @media screen and (max-width: 600px) {
    .prod-top {
      padding: 2rem;
      margin-bottom: 2rem; } }
  @media (max-width: 768px) {
    .prod-top {
      grid-template-columns: 1fr; } }
  .prod-top .packshot-select {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */ }
    @media (max-width: 768px) {
      .prod-top .packshot-select {
        grid-row-start: 2;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-x: scroll; } }
    .prod-top .packshot-select::-webkit-scrollbar {
      display: none; }
    .prod-top .packshot-select .packshot-select__preview {
      padding-top: 100%;
      border-radius: 5px;
      margin-bottom: 1rem;
      box-shadow: 2px 3px 20px -5px rgba(0, 0, 0, 0.45); }
      .prod-top .packshot-select .packshot-select__preview--is-active {
        box-shadow: 2px 3px 20px -5px rgba(210, 74, 66, 0.45); }
      @media (max-width: 768px) {
        .prod-top .packshot-select .packshot-select__preview {
          flex: 0 0 80px;
          padding-top: 80px;
          margin-right: 10px; } }
  .prod-top .packshot-preview {
    padding-top: 80%; }
    @media (max-width: 768px) {
      .prod-top .packshot-preview {
        margin-bottom: 2rem; } }
  .prod-top .product-description {
    align-self: end; }
    .prod-top .product-description__price {
      font-size: 2rem;
      color: #D24A42;
      font-weight: 800;
      margin-bottom: 2rem; }
      .prod-top .product-description__price span {
        font-size: 2rem;
        color: #D24A42;
        font-weight: 800; }
    .prod-top .product-description__short-desc {
      font-size: 1.8rem;
      margin-bottom: 2rem; }
      @media (max-width: 992px) {
        .prod-top .product-description__short-desc {
          font-size: 1.5rem;
          line-height: 2.5rem; } }
    @media (max-width: 768px) {
      .prod-top .product-description .main-info {
        display: flex;
        justify-content: space-between; } }
  .prod-top .add-blk {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .prod-top .add-blk .btn {
      margin-right: 1rem; }
    .prod-top .add-blk .already-in-basket {
      font-weight: 800;
      overflow: hidden;
      max-width: 0px;
      max-height: 0px;
      transition: all 0.3s;
      display: none; }
      .prod-top .add-blk .already-in-basket.is-vis {
        max-width: 300px;
        max-height: 40px; }

.single-product .main-content {
  padding: 0 2rem; }

.main-post-content {
  max-width: 999px;
  margin: auto; }
  .main-post-content p {
    margin-bottom: 2rem; }
  .main-post-content .wp-block-media-text {
    margin-bottom: 4rem; }
    @media screen and (max-width: 600px) {
      .main-post-content .wp-block-media-text {
        margin-bottom: 2rem; } }
    .main-post-content .wp-block-media-text img {
      height: auto;
      width: 100%; }
    @media screen and (max-width: 600px) {
      .main-post-content .wp-block-media-text .wp-block-media-text__media {
        margin-bottom: 2rem; } }
  .main-post-content .wp-block-gallery {
    margin-bottom: 4rem; }

main.cart {
  padding: 2rem 8rem; }
  @media screen and (max-width: 600px) {
    main.cart {
      padding: 8rem 2rem 2rem; } }
  main.cart .cart-table-wrapper, main.cart .empty-cart, main.cart .meal-order-table-wrapper {
    transition: all 0.3s;
    max-height: 900px;
    overflow: hidden; }
    main.cart .cart-table-wrapper.hidden, main.cart .empty-cart.hidden, main.cart .meal-order-table-wrapper.hidden {
      max-height: 0px; }
  main.cart .cart-table, main.cart .meal-order-table {
    width: 100%; }
    main.cart .cart-table thead, main.cart .meal-order-table thead {
      font-weight: 800;
      margin-bottom: 2rem;
      border-bottom: 1px solid #000; }
    main.cart .cart-table tr, main.cart .meal-order-table tr {
      overflow: hidden;
      max-height: 400px;
      transition: all 0.3s;
      border-bottom: 1px solid #000; }
      main.cart .cart-table tr.hidden, main.cart .meal-order-table tr.hidden {
        max-height: 0px; }
    main.cart .cart-table td, main.cart .meal-order-table td {
      font-size: 1.6rem;
      padding-bottom: 1rem; }
    main.cart .cart-table .footer, main.cart .meal-order-table .footer {
      font-weight: 800; }
      main.cart .cart-table .footer .total-sign, main.cart .meal-order-table .footer .total-sign {
        text-align: right;
        padding-right: 2rem; }
    main.cart .cart-table .cart-prod-info, main.cart .meal-order-table .cart-prod-info {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      main.cart .cart-table .cart-prod-info .prod-img, main.cart .meal-order-table .cart-prod-info .prod-img {
        width: 60px;
        height: 60px;
        background-size: cover; }
        @media screen and (max-width: 600px) {
          main.cart .cart-table .cart-prod-info .prod-img, main.cart .meal-order-table .cart-prod-info .prod-img {
            display: none; } }
    main.cart .cart-table .amount-controller, main.cart .meal-order-table .amount-controller {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      main.cart .cart-table .amount-controller .ctrl-btn, main.cart .meal-order-table .amount-controller .ctrl-btn {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 3rem;
        font-weight: 800; }
      main.cart .cart-table .amount-controller p, main.cart .meal-order-table .amount-controller p {
        margin-right: 1rem; }
  main.cart .proceed-to-checkout {
    float: right;
    position: relative; }
    main.cart .proceed-to-checkout a {
      position: absolute; }
  main.cart .back-to-shopping a {
    position: absolute; }

.cart-and-totals {
  padding: 1rem;
  background-color: #efefef;
  margin-bottom: 2rem;
  transition: all 0.3s;
  max-height: 2000px;
  overflow: hidden; }
  .cart-and-totals.collapsed {
    max-height: 0; }
  .cart-and-totals .checkout-selection .checkout-info-section {
    margin-bottom: 3rem; }
    .cart-and-totals .checkout-selection .checkout-info-section * {
      color: #999; }
    .cart-and-totals .checkout-selection .checkout-info-section .checkout-section-totals {
      margin-left: 1rem; }
    .cart-and-totals .checkout-selection .checkout-info-section.checked * {
      color: #333; }
      .cart-and-totals .checkout-selection .checkout-info-section.checked * .inc-checkbox {
        border: 3px solid green;
        margin-right: 1rem; }
        .cart-and-totals .checkout-selection .checkout-info-section.checked * .inc-checkbox::after {
          content: '';
          position: absolute;
          top: -5px;
          left: -1px;
          width: 20px;
          height: 12px;
          border-bottom: 3px solid  green;
          border-left: 3px solid  green;
          transform: rotate(-45deg); }
  .cart-and-totals .checkout-selection .checkout-section-header {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    background-color: #efefef;
    font-weight: 800; }
    .cart-and-totals .checkout-selection .checkout-section-header .inc-checkbox {
      width: 20px;
      height: 20px;
      border: 3px solid #ccc;
      cursor: pointer;
      position: relative; }
  .cart-and-totals .checkout-selection .checkout-section-body {
    background-color: #eee; }
    .cart-and-totals .checkout-selection .checkout-section-body .entry-pos {
      padding: 1rem;
      border-bottom: 1px solid #ccc;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .cart-and-totals .checkout-selection .checkout-section-body .entry-pos .item-title {
        padding-right: 1rem; }
  .cart-and-totals .checkout-selection .btn a {
    position: absolute; }
  .cart-and-totals .total-order {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eee;
    font-weight: 800;
    padding: 1rem; }
  .cart-and-totals .controls {
    text-align: right;
    margin-top: 1rem; }

.order-form {
  transition: all 0.3s;
  max-height: 2000px;
  overflow: hidden; }
  .order-form.collapsed {
    max-height: 0; }
  .order-form h2 {
    margin-bottom: 1rem; }
  .order-form input {
    padding: 5px 7px;
    width: 100%; }
  .order-form .input-row {
    padding: 0.5rem; }
  .order-form .input-row-group {
    display: flex; }
    .order-form .input-row-group .input-field {
      flex-grow: 1;
      padding: 0.5rem;
      display: flex;
      align-items: center; }
      .order-form .input-row-group .input-field label {
        text-transform: uppercase;
        padding-left: 1rem;
        font-size: 0.9em; }
  .order-form .controls {
    text-align: center;
    margin-top: 3rem; }
    .order-form .controls .btn {
      background-color: #D24A42;
      color: #fff;
      font-weight: 800;
      font-size: 1.6rem; }

input {
  transition: all 0.3s; }
  input.error {
    border: 2px solid red; }

.response {
  text-align: center;
  overflow: hidden;
  max-height: 0px;
  transition: all 0.3s; }
  .response.show {
    max-height: 500px; }

.blog-header {
  padding: 2rem 8rem 2rem 8rem; }
  .blog-header__slider {
    padding-top: 40%;
    position: relative; }
    @media screen and (max-width: 600px) {
      .blog-header__slider {
        padding-top: 140%; } }
  @media screen and (max-width: 600px) {
    .blog-header {
      padding: 8rem 2rem 2rem; } }

.categories {
  margin: 2rem 8rem;
  border-radius: 1rem; }
  @media screen and (max-width: 600px) {
    .categories {
      margin: 2rem; } }
  .categories ul {
    padding: 0; }
    .categories ul li {
      margin-right: 1rem;
      margin-bottom: 1rem; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 4rem; }
  @media (max-width: 768px) {
    .post-grid {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 3rem; } }
  .post-grid .blog-item {
    position: relative; }
    .post-grid .blog-item__image {
      padding-top: 130%;
      margin-bottom: 1rem; }
    .post-grid .blog-item .blog-desc__title {
      margin-bottom: 1rem;
      font-size: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 2px; }
    .post-grid .blog-item .blog-desc__short-desc {
      margin-bottom: 1rem; }
    .post-grid .blog-item a {
      position: absolute; }

.post-top {
  padding: 2rem 8rem;
  position: relative; }
  @media screen and (max-width: 600px) {
    .post-top {
      padding: 8rem 2rem 2rem; } }
  .post-top .breadcrumbs {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 1rem; }
    @media screen and (max-width: 600px) {
      .post-top .breadcrumbs {
        margin-top: 0; } }
  .post-top .main-img {
    padding-top: 40%;
    margin-bottom: 2rem;
    position: relative;
    min-height: 300px; }
    .post-top .main-img:hover .alt_post {
      opacity: 1; }
  .post-top .alt_post {
    position: absolute;
    top: 50%;
    width: 150px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: all 0.3s;
    box-shadow: 0px 0px 24px -8px rgba(0, 0, 0, 0.17);
    opacity: 0.3; }
    .post-top .alt_post.prev_post {
      left: -1rem; }
      @media (max-width: 768px) {
        .post-top .alt_post.prev_post {
          display: none; } }
      .post-top .alt_post.prev_post:hover {
        transform: translate(-1rem, -50%); }
    .post-top .alt_post.next_post {
      right: -1rem; }
      .post-top .alt_post.next_post:hover {
        transform: translate(1rem, -50%); }
      @media (max-width: 768px) {
        .post-top .alt_post.next_post {
          display: flex;
          opacity: 1;
          width: 50%;
          top: auto;
          bottom: 0px; } }
    .post-top .alt_post .alt_post_img {
      padding-top: 100%; }
      @media (max-width: 768px) {
        .post-top .alt_post .alt_post_img {
          width: 5rem;
          padding-top: 5rem; } }
    .post-top .alt_post p {
      padding: 1rem; }
      @media (max-width: 768px) {
        .post-top .alt_post p::before {
          content: 'Next post: ';
          font-style: italic; } }
    .post-top .alt_post a {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }

.post-content {
  padding: 0 8rem; }
  @media screen and (max-width: 600px) {
    .post-content {
      padding: 0 2rem; } }

.after-content {
  padding: 0 8rem;
  margin-bottom: 8rem; }
  @media screen and (max-width: 600px) {
    .after-content {
      padding: 0 2rem; }
      .after-content .grid-item--blog:nth-child(3) {
        display: none; }
      .after-content .pagination {
        display: none; } }
  .after-content h2 {
    margin-bottom: 2rem; }

.post-category {
  padding: 2rem 8rem 6rem; }

.pagination {
  margin-top: 3rem;
  padding: 1rem;
  display: flex;
  justify-content: center; }
  .pagination a {
    padding: 0.5rem 1rem;
    margin: 0 1rem; }
    .pagination a:hover {
      color: #000; }
    .pagination a.page-numbers {
      border: 1px solid #ccc; }
      .pagination a.page-numbers.prev, .pagination a.page-numbers.next {
        border: 0px solid #000; }
  .pagination span {
    padding: 0.5rem 1rem;
    margin: 0 1rem; }

.chat-wrapper {
  padding: 0vh 8rem 0;
  height: 100vh;
  overflow: hidden; }
  .chat-wrapper .chat-body {
    position: relative;
    height: calc(100% - 70px);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 5rem;
    scroll-behavior: smooth; }
    .chat-wrapper .chat-body::-webkit-scrollbar {
      display: none; }
    .chat-wrapper .chat-body .msg {
      max-width: 60%;
      margin-bottom: 1rem;
      -webkit-animation: scale-in-tl 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
      animation: scale-in-tl 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
      .chat-wrapper .chat-body .msg.personal {
        text-align: right;
        margin-left: auto;
        -webkit-animation: scale-in-tr 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        animation: scale-in-tr 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
        .chat-wrapper .chat-body .msg.personal .msg-usr {
          display: none; }
      .chat-wrapper .chat-body .msg.same-user {
        margin-top: -1rem; }
        .chat-wrapper .chat-body .msg.same-user .msg-usr {
          display: none; }
      .chat-wrapper .chat-body .msg.info {
        margin: auto;
        text-align: center;
        color: #777;
        -webkit-animation: scale-in-cn 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        animation: scale-in-cn 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
      .chat-wrapper .chat-body .msg .msg-usr {
        font-weight: 800;
        font-size: 0.8em; }
      .chat-wrapper .chat-body .msg .msg-body {
        padding: 0.5rem 1rem;
        background-color: #efefef;
        border-radius: 1rem;
        display: inline-block; }
    .chat-wrapper .chat-body #the-input {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      width: calc(100% - 12rem);
      padding: 1rem;
      border-bottom: 3px solid #efefef;
      outline: 0px solid transparent;
      margin: auto;
      transform: translateX(-50%); }
      .chat-wrapper .chat-body #the-input::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background-color: #D24A42;
        transition: all .3s; }
      .chat-wrapper .chat-body #the-input.is-focused::after {
        width: 100%; }

#chat-main {
  transition: all 0.3s;
  opacity: 0; }
  #chat-main.is-visible {
    opacity: 1; }

#overlay-name-input {
  background-color: #D24A42;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  flex-direction: column;
  z-index: 5; }
  #overlay-name-input.is-visible {
    width: 100%; }
  #overlay-name-input #name-input {
    font-size: 4rem;
    outline: 0px solid transparent;
    margin-bottom: 2rem;
    background-color: transparent;
    text-align: center;
    border: 0px;
    color: #fff; }
    #overlay-name-input #name-input::-moz-placeholder {
      color: #fff; }
    #overlay-name-input #name-input:-ms-input-placeholder {
      color: #fff; }
    #overlay-name-input #name-input::-ms-input-placeholder {
      color: #fff; }
    #overlay-name-input #name-input::placeholder {
      color: #fff; }

@-webkit-keyframes scale-in-tr {
  0% {
    transform: scale(0);
    transform-origin: 100% 0%;
    opacity: 1; }
  100% {
    transform: scale(1);
    transform-origin: 100% 0%;
    opacity: 1; } }

@keyframes scale-in-tr {
  0% {
    transform: scale(0);
    transform-origin: 100% 0%;
    opacity: 1; }
  100% {
    transform: scale(1);
    transform-origin: 100% 0%;
    opacity: 1; } }

@-webkit-keyframes scale-in-tl {
  0% {
    transform: scale(0);
    transform-origin: 0% 0%;
    opacity: 1; }
  100% {
    transform: scale(1);
    transform-origin: 0% 0%;
    opacity: 1; } }

@keyframes scale-in-tl {
  0% {
    transform: scale(0);
    transform-origin: 0% 0%;
    opacity: 1; }
  100% {
    transform: scale(1);
    transform-origin: 0% 0%;
    opacity: 1; } }

@-webkit-keyframes scale-in-cn {
  0% {
    transform: scale(0);
    transform-origin: 50% 0%;
    opacity: 1; }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
    opacity: 1; } }

@keyframes scale-in-cn {
  0% {
    transform: scale(0);
    transform-origin: 50% 0%;
    opacity: 1; }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
    opacity: 1; } }

.food-section {
  margin-bottom: 6rem;
  padding: 0 8rem; }
  @media screen and (max-width: 600px) {
    .food-section {
      padding: 8rem 2rem 2rem;
      margin-bottom: 2rem; } }
  .food-section .food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; }
    @media (max-width: 768px) {
      .food-section .food-grid {
        grid-template-columns: repeat(2, 1fr); } }
    .food-section .food-grid__item {
      border-radius: 10px;
      box-shadow: 2px 3px 20px -5px rgba(51, 51, 51, 0.45);
      overflow: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      position: relative; }
      .food-section .food-grid__item--is-active {
        grid-column: span 2;
        grid-row: span 2; }
        .food-section .food-grid__item--is-active .food-grid__info {
          position: absolute;
          bottom: 3rem;
          left: 3rem;
          background-color: #fff;
          width: 15rem; }
          @media (max-width: 768px) {
            .food-section .food-grid__item--is-active .food-grid__info {
              width: 20rem; } }
        .food-section .food-grid__item--is-active .food-grid__description {
          max-height: 15rem;
          margin-bottom: 1rem; }
        .food-section .food-grid__item--is-active .food-grid__add-to-order {
          transform: translate(0%, 0%); }
    .food-section .food-grid__img {
      padding-top: 80%;
      flex: 1 0 auto; }
    .food-section .food-grid__info {
      padding: 2rem;
      width: 100%; }
    .food-section .food-grid__title {
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1.5px; }
    .food-section .food-grid__description {
      max-height: 0;
      overflow: hidden; }
    .food-section .food-grid__add-to-order {
      position: absolute;
      bottom: 3rem;
      right: 3rem;
      transform: translate(150%, 900%);
      width: 6rem;
      height: 6rem;
      background-color: #fff;
      box-shadow: 2px 3px 20px -5px rgba(51, 51, 51, 0.45);
      border-radius: 50%;
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
      .food-section .food-grid__add-to-order svg {
        max-width: 60%;
        max-height: 60%; }
        .food-section .food-grid__add-to-order svg .st0 {
          fill: #D24A42;
          transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
      .food-section .food-grid__add-to-order:hover {
        background-color: #D24A42; }
        .food-section .food-grid__add-to-order:hover svg .st0 {
          fill: #fff; }

.info-panel {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  width: 100%;
  z-index: 999; }
  .info-panel .popup {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0px 0px 24px -8px rgba(0, 0, 0, 0.17);
    max-width: 80%;
    transform: translateX(-50%);
    -webkit-animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    overflow: hidden;
    margin-bottom: 10px;
    text-align: center; }
    .info-panel .popup.fade {
      -webkit-animation: fade-out 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
      animation: fade-out 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both; }

@-webkit-keyframes swing-in-top-fwd {
  0% {
    max-height: 0px;
    opacity: 0; }
  100% {
    max-height: 150px;
    opacity: 1; } }

@keyframes swing-in-top-fwd {
  0% {
    max-height: 0px;
    opacity: 0; }
  100% {
    max-height: 150px;
    opacity: 1; } }

@-webkit-keyframes fade-out {
  0% {
    transform: translate(-50%, 0);
    opacity: 1; }
  100% {
    transform: translate(-50%, -50px);
    opacity: 0; } }

@keyframes fade-out {
  0% {
    transform: translate(-50%, 0);
    opacity: 1; }
  100% {
    transform: translate(-50%, -50px);
    opacity: 0; } }

.static-wrapper {
  padding: 2rem 8rem;
  display: flex; }
  @media screen and (max-width: 600px) {
    .static-wrapper {
      padding: 8rem 2rem;
      flex-direction: column; } }
  .static-wrapper .menu-wrapper {
    flex: 0 0 25%;
    padding-right: 2rem;
    font-size: 1.6rem; }
    @media screen and (max-width: 600px) {
      .static-wrapper .menu-wrapper {
        padding-right: 0;
        margin-bottom: 2rem; } }
    .static-wrapper .menu-wrapper h2 {
      margin-bottom: 2rem; }
      @media screen and (max-width: 600px) {
        .static-wrapper .menu-wrapper h2 {
          background-image: url(img/arrow_btm.svg);
          background-position: 95% center;
          background-repeat: no-repeat;
          background-size: 20px;
          background-color: #efefef;
          padding: 1rem;
          margin-bottom: 1rem; } }
    @media screen and (max-width: 600px) {
      .static-wrapper .menu-wrapper .menu-static-page-menu-container {
        overflow: hidden;
        max-height: 0;
        transition: all 0.3s; }
        .static-wrapper .menu-wrapper .menu-static-page-menu-container.visible {
          max-height: 900px; } }
    .static-wrapper .menu-wrapper #static-page-menu {
      line-height: 1.5em; }
      .static-wrapper .menu-wrapper #static-page-menu a:hover {
        color: #000; }
      .static-wrapper .menu-wrapper #static-page-menu .current-menu-item a {
        border-bottom: 2px solid #D24A42;
        font-weight: 800; }
      .static-wrapper .menu-wrapper #static-page-menu .current-menu-item ul a {
        border-bottom: 0px solid #D24A42;
        font-weight: 400; }
      .static-wrapper .menu-wrapper #static-page-menu ul {
        padding-left: 2rem; }
  .static-wrapper .page-wrapper {
    flex: 0 0 75%; }
    .static-wrapper .page-wrapper .page-top .main-img {
      padding-top: 40%;
      background-size: cover;
      background-position: center;
      margin-bottom: 1rem; }
    .static-wrapper .page-wrapper .page-top h1 {
      margin-bottom: 2rem; }

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

.main-post-content video {
    width:100%;
}
