/* 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-face {
  font-family: roboto;
  src: url("fonts/Roboto-Regular.ttf");
  font-weight: 600; }

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

* {
  font-family: roboto, 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: #cdda32;
    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: 4rem; } }

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

.btn a, .slide, .slide--color-overlay video::after, .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: 5px;
  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 #cdda32;
    color: #cdda32; }
    .btn--main a {
      color: #cdda32; }
    .btn--main:hover {
      background-color: #cdda32;
      border: 1px solid #cdda32;
      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(205, 218, 50, 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-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: 2px;
        width: 0px;
        transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.5s; }
      .slide .slide__body .slide__title.no-title::after {
        display: none; }
    .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 .slide__body.color-dark {
      color: #333; }
      .slide .slide__body.color-dark .btn {
        color: #333;
        border: 1px solid #333; }
  .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: -2rem;
      padding: 2rem; } }
  .breadcrumbs a:hover {
    color: #cdda32; }

body {
  font-size: 10px; }

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

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%; }
  header .site-branding {
    background-color: #cdda32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem; }
    header .site-branding .header-button {
      position: relative;
      z-index: 1000; }
    header .site-branding .logo {
      position: relative; }
      header .site-branding .logo img {
        width: 120px; }
      header .site-branding .logo a {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; }
  header menu {
    position: fixed;
    background-color: #cdda32;
    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-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: #cdda32; }
      header menu nav ul li:hover::before {
        right: 0%; }

.icon-wrapper {
  position: absolute;
  top: 0.5rem;
  right: 6rem; }
  .icon-wrapper .header-button {
    width: 5rem;
    height: 5rem;
    position: relative;
    display: none;
    float: left;
    text-align: center;
    font-size: 0.7em;
    font-weight: 800;
    border: 1px solid #fff;
    margin-right: 1rem;
    border-radius: 3px; }
    .icon-wrapper .header-button.is-active {
      display: block; }
    .icon-wrapper .header-button.cart-trigger {
      background-image: url("img/cart.svg");
      background-size: 40%;
      background-repeat: no-repeat;
      background-position: center;
      color: #fff; }
      .icon-wrapper .header-button.cart-trigger .total-items-in-cart {
        top: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        font-size: 1.2rem; }
      .icon-wrapper .header-button.cart-trigger .total-cart-price {
        bottom: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        font-size: 1.2rem; }
        .icon-wrapper .header-button.cart-trigger .total-cart-price::after {
          content: ' Eur'; }
      .icon-wrapper .header-button.cart-trigger a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
    .icon-wrapper .header-button.meal-order-trigger {
      background-image: url("img/meal.svg");
      background-size: 40%;
      background-repeat: no-repeat;
      background-position: center;
      color: #fff; }
      .icon-wrapper .header-button.meal-order-trigger .total-items-in-meal-order {
        top: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        font-size: 1.2rem; }
      .icon-wrapper .header-button.meal-order-trigger .total-meal-order-price {
        bottom: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        font-size: 1.2rem; }
        .icon-wrapper .header-button.meal-order-trigger .total-meal-order-price::after {
          content: ' Eur'; }
      .icon-wrapper .header-button.meal-order-trigger a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 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: #cdda32 !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; } }
  .main-post-content img {
    height: auto; }

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

main {
  padding-top: 8rem; }

/* 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: 0rem 2rem 2rem;
      flex-direction: column; } }
  .shop-header .shop-header__slider {
    position: relative;
    flex: 0 0 70%;
    padding-top: 40%;
    margin-bottom: 2rem; }
    @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; }
    @media screen and (max-width: 600px) {
      .shop-header .shop-header__info-blk .cat-list li {
        flex: 0 0 50%; } }

.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: 1rem; } }
  .bestsellers .bestseller-grid .bestseller-grid__entry {
    background-color: #efefef; }
    .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: #cdda32;
        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-row-wrapper {
  position: relative; }

.shopping-grid {
  grid-auto-rows: auto;
  padding-top: 1rem; }
  @media (max-width: 768px) {
    .shopping-grid {
      display: flex;
      overflow-x: auto;
      grid-gap: 0px; } }
  .shopping-grid__item {
    padding: 2rem;
    position: relative; }
    .shopping-grid__item.grid-item-title {
      padding: 0; }
      @media (max-width: 768px) {
        .shopping-grid__item.grid-item-title {
          position: absolute;
          top: 0rem;
          left: 2rem;
          width: 90%; } }
    @media (max-width: 768px) {
      .shopping-grid__item {
        padding: 1rem;
        flex-shrink: 0;
        width: 42vw; }
        .shopping-grid__item:nth-child(2) {
          padding-left: 4vw;
          width: 44vw; } }
    .shopping-grid__item .shopping-grid__image {
      padding-top: 100%;
      margin: 2rem 0;
      position: relative; }
      @media (max-width: 768px) {
        .shopping-grid__item .shopping-grid__image {
          margin: 1rem 0; } }
      .shopping-grid__item .shopping-grid__image .out-of-stock {
        width: 10rem;
        height: 4rem;
        background-image: url(img/out-of-stock.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 1rem;
        right: 1rem; }
      .shopping-grid__item .shopping-grid__image .last-in-stock {
        width: 6rem;
        height: 6rem;
        background-image: url(img/last-in-stock.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 1rem;
        right: 1rem; }
    .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; }

@media (max-width: 768px) {
  .tax-product_category .shopping-grid {
    display: grid; } }

.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(205, 218, 50, 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%;
    position: relative; }
    @media (max-width: 768px) {
      .prod-top .packshot-preview {
        margin-bottom: 2rem; } }
    .prod-top .packshot-preview .out-of-stock {
      width: 20rem;
      height: 10rem;
      background-image: url(img/out-of-stock.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      bottom: 1rem;
      right: 1rem; }
    .prod-top .packshot-preview .last-in-stock {
      width: 13rem;
      height: 13rem;
      background-image: url(img/last-in-stock.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      bottom: 1rem;
      right: 1rem; }
  .prod-top .product-description {
    align-self: end; }
    .prod-top .product-description__price {
      font-size: 2rem;
      color: #cdda32;
      font-weight: 800;
      margin-bottom: 2rem; }
      .prod-top .product-description__price span {
        font-size: 2rem;
        color: #cdda32;
        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;
      max-width: 100%;
      width: auto;
      margin: auto; }
    @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: 0rem 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: #cdda32;
      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; }

.scroll-menu-trigger {
  position: fixed;
  width: 60px;
  height: 60px;
  background-color: #cdda32;
  bottom: -10rem;
  right: 2rem;
  transition: all 0.3s;
  z-index: 999;
  border-radius: 50%;
  background-image: url(img/cart_menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 4px solid #fff; }

.not-on-top .scroll-menu-trigger {
  bottom: 2rem; }
  .not-on-top .scroll-menu-trigger.hidden {
    bottom: -10rem; }

.scroll-menu-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 110vh;
  transition: all 0.3s;
  z-index: 990;
  background-color: #000000cc;
  padding: 8rem 2rem 2rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .scroll-menu-wrapper.active {
    top: 0; }
  .scroll-menu-wrapper h2 {
    margin-bottom: 2rem; }
  .scroll-menu-wrapper .scroll-menu-close {
    width: 30px;
    height: 30px;
    top: 8rem;
    right: 2rem;
    background-image: url(img/close.svg);
    background-size: contain;
    position: absolute;
    text-align: center; }
  .scroll-menu-wrapper .menu-shopping-category-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; }
    .scroll-menu-wrapper .menu-shopping-category-menu-container a {
      color: #fff;
      font-size: 1.6rem; }
      .scroll-menu-wrapper .menu-shopping-category-menu-container a[href="#"] {
        font-size: 0px;
        position: relative; }
        .scroll-menu-wrapper .menu-shopping-category-menu-container a[href="#"]::before {
          content: '';
          position: absolute;
          width: 60px;
          border-top: 1px solid #fff;
          top: -4px;
          left: 0;
          transform: translateX(-50%); }

.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: 0rem 2rem;
      margin-bottom: 2rem; } }

.outlook-header__slider {
  position: relative;
  padding-top: 140%; }

.categories {
  margin: 2rem 8rem;
  border-radius: 1rem; }
  @media screen and (max-width: 600px) {
    .categories {
      margin: 2rem; } }
  .categories ul {
    padding: 0; }
    .categories ul li {
      padding: 0;
      list-style: none; }
      .categories ul li a {
        font-size: 2rem; }

.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-weight: 800;
      /* 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: 0rem 2rem;
      margin-bottom: 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; } }
  .post-content img {
    height: auto; }

.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; }
  @media screen and (max-width: 600px) {
    .post-category {
      padding: 0 2rem; } }

.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: #cdda32;
        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: #cdda32;
  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; } }

.enchance-seat__image {
  background-image: url(img/layer-move-seats.png);
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-top: 100%;
  margin-bottom: 2rem; }
  .enchance-seat__image .enchance-seat__base-content {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 2rem; }
    .enchance-seat__image .enchance-seat__base-content h2 {
      margin-bottom: 2rem; }

.enchance-seat__order {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s; }
  .enchance-seat__order .enhance-desc__part {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    justify-content: space-between; }
    .enchance-seat__order .enhance-desc__part input {
      max-width: 100px; }
    .enchance-seat__order .enhance-desc__part .close-btn {
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      background-image: url(img/close_dk.svg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; }

.active .enchance-seat__order {
  max-height: 400px; }

#car-hire {
  margin-bottom: 4rem; }
  #car-hire h3 {
    margin: 0.5rem 0; }
  #car-hire .car-main-image {
    background-image: url(img/car.png);
    background-size: cover;
    background-position: center top;
    padding-top: 40%;
    background-color: #efefef; }
  #car-hire .car-hire-order-wrapper {
    position: fixed;
    top: 100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    background-color: #000000cc;
    color: #fff;
    padding: 8rem 0;
    transition: all 0.3s; }
    #car-hire .car-hire-order-wrapper.active {
      top: 0; }
    #car-hire .car-hire-order-wrapper .close-btn {
      position: absolute;
      top: 8.5rem;
      right: 2rem;
      width: 30px;
      height: 30px;
      background-image: url(img/close.svg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer; }
    #car-hire .car-hire-order-wrapper h1 {
      margin-bottom: 2rem;
      text-align: center; }
    #car-hire .car-hire-order-wrapper .car-option {
      margin-bottom: 4rem; }
      #car-hire .car-hire-order-wrapper .car-option .car-img {
        margin-bottom: 2rem;
        padding: 0 2rem; }
      #car-hire .car-hire-order-wrapper .car-option .car-info {
        padding: 0 2rem; }
      #car-hire .car-hire-order-wrapper .car-option h3 {
        margin-top: 0; }
      #car-hire .car-hire-order-wrapper .car-option .car-top-info, #car-hire .car-hire-order-wrapper .car-option .car-info-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; }
        #car-hire .car-hire-order-wrapper .car-option .car-top-info input, #car-hire .car-hire-order-wrapper .car-option .car-info-row input {
          max-width: 135px; }
          #car-hire .car-hire-order-wrapper .car-option .car-top-info input.c-seat, #car-hire .car-hire-order-wrapper .car-option .car-info-row input.c-seat {
            max-width: 100px; }
      #car-hire .car-hire-order-wrapper .car-option .btn {
        margin-top: 2rem; }
      #car-hire .car-hire-order-wrapper .car-option .choose-car {
        overflow: hidden;
        max-height: 0;
        transition: all 0.3s;
        margin-top: 0rem; }
        #car-hire .car-hire-order-wrapper .car-option .choose-car .car-info-row {
          margin-bottom: 2rem;
          align-items: center; }
        #car-hire .car-hire-order-wrapper .car-option .choose-car .btn {
          margin-top: 0; }
      #car-hire .car-hire-order-wrapper .car-option.active .select-this-car {
        display: none; }
      #car-hire .car-hire-order-wrapper .car-option.active .choose-car {
        max-height: 300px;
        margin-top: 2rem; }

.upgrade-luggage__image {
  background-image: url(img/baggage.png);
  background-color: #efefef;
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 40%; }

.upg-entry {
  margin-bottom: 4rem; }

.upg-block h3 {
  margin: 0.5rem 0; }

.upgrade-luggage p.option-description {
  margin-bottom: 2rem; }

.upgrade-luggage .add-info-title {
  font-weight: 800; }

.upgrade-luggage .upgrade-luggage__part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem; }
  .upgrade-luggage .upgrade-luggage__part .add-info-title {
    font-weight: 800; }
  .upgrade-luggage .upgrade-luggage__part p {
    margin-bottom: 0; }
  .upgrade-luggage .upgrade-luggage__part input {
    max-width: 100px; }
    .upgrade-luggage .upgrade-luggage__part input.long {
      max-width: 200px; }
  .upgrade-luggage .upgrade-luggage__part .close-btn {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    background-image: url(img/close_dk.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }

.upgrade-luggage__order {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s; }

.add-luggage-btn-wrapper {
  overflow: hidden;
  max-height: 150px;
  transition: all 0.3s; }

.active .upgrade-luggage__order {
  max-height: 400px; }

.active .add-luggage-btn-wrapper {
  max-height: 0; }

.preorder-main-image {
  background-image: url(img/tlml.png);
  background-position: center;
  background-size: cover;
  padding-top: 40%; }

#preorder {
  margin-bottom: 4rem; }

.preorder-order-wrapper {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  background-color: #000000cc;
  color: #fff;
  padding: 8rem 0;
  transition: all 0.3s; }
  .preorder-order-wrapper.active {
    top: 0; }
  .preorder-order-wrapper .close-btn {
    position: absolute;
    top: 8.5rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    background-image: url(img/close.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer; }
  .preorder-order-wrapper h1 {
    margin-bottom: 2rem;
    text-align: center; }

.preorder-option img {
  margin-bottom: 2rem;
  padding: 0 2rem; }

.preorder-option .meal-title {
  font-weight: 800; }

.preorder-option .preorder-top-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem; }

.preorder-option .preorder-info {
  padding: 0 2rem 2rem; }

.preorder-option .choose-preorder {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s;
  margin-top: 0rem; }
  .preorder-option .choose-preorder .upgrade-luggage__part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    .preorder-option .choose-preorder .upgrade-luggage__part .add-info-title {
      font-weight: 800; }
    .preorder-option .choose-preorder .upgrade-luggage__part p {
      margin-bottom: 0; }
    .preorder-option .choose-preorder .upgrade-luggage__part input {
      max-width: 100px; }
      .preorder-option .choose-preorder .upgrade-luggage__part input.long {
        max-width: 200px; }
    .preorder-option .choose-preorder .upgrade-luggage__part .close-btn {
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      background-image: url(img/close_dk.svg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; }

.preorder-option .select-this-preorder {
  margin-top: 2rem; }

.preorder-option.active .select-this-preorder {
  display: none; }

.preorder-option.active .choose-preorder {
  max-height: 300px;
  margin-top: 2rem; }

.ground-meal-main-image {
  background-image: url(img/food.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 40%; }

.ground-meal-order-wrapper {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  background-color: #000000cc;
  color: #fff;
  padding: 8rem 0;
  transition: all 0.3s; }
  .ground-meal-order-wrapper.active {
    top: 0; }
  .ground-meal-order-wrapper .close-btn {
    position: absolute;
    top: 8.5rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    background-image: url(img/close.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer; }
  .ground-meal-order-wrapper h1 {
    margin-bottom: 2rem;
    text-align: center; }

.ground-meal-option {
  margin-bottom: 2rem; }
  .ground-meal-option img {
    margin-bottom: 2rem;
    padding: 0 2rem; }
  .ground-meal-option .meal-title {
    font-weight: 800; }
  .ground-meal-option .ground-meal-top-info {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between; }
    .ground-meal-option .ground-meal-top-info h3 {
      margin-top: 0; }
  .ground-meal-option .ground-meal-info {
    padding: 0 2rem 2rem; }
  .ground-meal-option .choose-ground-meal {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s;
    margin-top: 0rem; }
    .ground-meal-option .choose-ground-meal .upgrade-luggage__part {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem; }
      .ground-meal-option .choose-ground-meal .upgrade-luggage__part .add-info-title {
        font-weight: 800; }
      .ground-meal-option .choose-ground-meal .upgrade-luggage__part p {
        margin-bottom: 0; }
      .ground-meal-option .choose-ground-meal .upgrade-luggage__part input {
        max-width: 100px; }
      .ground-meal-option .choose-ground-meal .upgrade-luggage__part .close-btn {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        background-image: url(img/close_dk.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
  .ground-meal-option .select-this-ground-meal {
    margin-top: 2rem; }
  .ground-meal-option.active .select-this-ground-meal {
    display: none; }
  .ground-meal-option.active .choose-ground-meal {
    max-height: 300px;
    margin-top: 2rem; }

.select-seat {
  background-color: #efefef;
  padding: 0 1rem 2rem; }
  .select-seat .select-seat-main-image {
    background-image: url(img/ico-services-seats.png);
    background-color: #efefef;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 40%; }

.select-seat-description {
  margin-bottom: 2rem; }

.select-seat-order-wrapper {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  background-color: #000000cc;
  color: #fff;
  padding: 8rem 2rem 2rem;
  transition: all 0.3s; }
  .select-seat-order-wrapper.active {
    top: 0; }
  .select-seat-order-wrapper .close-btn {
    position: absolute;
    top: 8.5rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    background-image: url(img/close.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer; }
  .select-seat-order-wrapper h1 {
    text-align: center;
    width: 70%;
    margin: 0 auto 2rem; }
  .select-seat-order-wrapper .select-seat__order {
    /*         overflow: hidden;
        max-height:0;
        transition: all 0.3s;
        margin-top:0rem; */
    margin-top: 4rem; }
    .select-seat-order-wrapper .select-seat__order .add-info-title {
      font-weight: 800; }
    .select-seat-order-wrapper .select-seat__order .select-seat__part {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem; }
      .select-seat-order-wrapper .select-seat__order .select-seat__part p {
        margin-bottom: 0; }
      .select-seat-order-wrapper .select-seat__order .select-seat__part input {
        max-width: 100px; }
        .select-seat-order-wrapper .select-seat__order .select-seat__part input.long {
          max-width: 200px; }
      .select-seat-order-wrapper .select-seat__order .select-seat__part .close-btn {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        background-image: url(img/close.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }

.button-wrapper {
  text-align: center;
  margin-bottom: 2rem; }
  .button-wrapper.dialog-caller {
    margin-bottom: 0; }

.seat-selection-setup .select-seat__part {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem; }
  .seat-selection-setup .select-seat__part select {
    padding: 0.5rem 1rem; }

.seat-selection-setup .add-info-title {
  font-weight: 700;
  margin-bottom: 1rem; }

.seat-selection-setup .seat-num {
  text-align: right; }

.seat-selection-setup input[type="text"] {
  max-width: 100px; }
  .seat-selection-setup input[type="text"].long {
    max-width: 200px; }

.seat-selection-setup input[type="date"] {
  width: 167px; }

.seat-selection-setup .change-seat {
  text-decoration: underline; }

.seat-selection-setup .seat-num-val {
  font-size: 1.8rem;
  font-weight: 700; }

.hidden {
  display: none !important; }

.seats-map-mobile .map-plane {
  width: 220px;
  margin: auto; }
  .seats-map-mobile .map-plane td div.seat-container {
    background-color: #efefef;
    text-align: center;
    width: 30px;
    height: 30px;
    margin: auto; }
    .seats-map-mobile .map-plane td div.seat-container.seat-available {
      background-color: #cdda32; }
    .seats-map-mobile .map-plane td div.seat-container.seat-available.seat-priority {
      background-color: #628baf; }
    .seats-map-mobile .map-plane td div.seat-container.seat-available.seat-legroom {
      background-color: #ffad46; }
    .seats-map-mobile .map-plane td div.seat-container.active {
      background-color: red !important; }
  .seats-map-mobile .map-plane td.plane-middle {
    text-align: center;
    font-weight: 800; }
  .seats-map-mobile .map-plane .row-exit {
    position: relative; }
    .seats-map-mobile .map-plane .row-exit .exit-marks {
      position: absolute; }

.selected-seat {
  display: flex;
  justify-content: space-between; }
  .selected-seat p {
    font-size: 2rem;
    font-weight: 800; }

.enchantment-content {
  padding: 0 2rem 4rem; }

.upg-block {
  margin-bottom: 4rem; }

.dest .dest-header {
  background-image: url(img/aus.jpg);
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  text-align: center;
  margin: 0 2rem 4rem; }
  .dest .dest-header h1 {
    color: #fff; }
  .dest .dest-header input {
    border: 0px  solid #fff;
    border-radius: 3px; }

.dest .slide-bar {
  margin-bottom: 4rem; }
  .dest .slide-bar h2 {
    padding: 0 2rem;
    margin-bottom: 0.5rem; }
  .dest .slide-bar .slide-strip {
    display: flex;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto; }
    .dest .slide-bar .slide-strip .slide-strip__entry {
      scroll-snap-align: center;
      flex-shrink: 0;
      width: 90vw;
      margin-right: 2vw;
      position: relative; }
      .dest .slide-bar .slide-strip .slide-strip__entry:first-child {
        width: 95vw;
        padding-left: 5vw; }
      .dest .slide-bar .slide-strip .slide-strip__entry:last-child {
        width: 95vw;
        padding-right: 5vw; }
      .dest .slide-bar .slide-strip .slide-strip__entry a {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; }
      .dest .slide-bar .slide-strip .slide-strip__entry .slide-entry__image {
        padding-top: 40%;
        background-image: url(img/aus.jpg);
        background-size: cover;
        background-position: center; }

.food-toc {
  padding: 0 2rem;
  margin-bottom: 0rem; }
  .food-toc ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0; }
    .food-toc ul li a {
      font-size: 2rem; }

.food-section {
  margin-bottom: 0rem;
  padding: 0 8rem; }
  @media screen and (max-width: 600px) {
    .food-section {
      padding: 6rem 2rem 0rem; } }
  .food-section .food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; }
    @media (max-width: 768px) {
      .food-section .food-grid {
        display: flex;
        gap: 0;
        flex-wrap: wrap; } }
    .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; }
      @media (max-width: 768px) {
        .food-section .food-grid__item {
          flex: 0 0 50%;
          box-shadow: none;
          margin-bottom: 2rem;
          transition: all 0.3s; } }
      .food-section .food-grid__item--is-active {
        grid-column: span 2;
        grid-row: span 2;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff; }
        @media (max-width: 768px) {
          .food-section .food-grid__item--is-active {
            flex: 0 0 100%; } }
        .food-section .food-grid__item--is-active .food-grid__main-info {
          flex-direction: row !important;
          justify-content: space-between; }
          .food-section .food-grid__item--is-active .food-grid__main-info .food-grid__title {
            text-align: left; }
          .food-section .food-grid__item--is-active .food-grid__main-info .food-grid__price {
            text-align: right; }
        .food-section .food-grid__item--is-active .food-grid__info {
          position: absolute;
          bottom: 3rem;
          left: 3rem;
          width: 15rem;
          padding: 1rem 2rem 2rem; }
          @media (max-width: 768px) {
            .food-section .food-grid__item--is-active .food-grid__info {
              width: 100%;
              position: static; } }
        .food-section .food-grid__item--is-active .food-grid__description {
          max-height: 15rem;
          margin-bottom: 1rem; }
        .food-section .food-grid__item--is-active .combos {
          max-height: 400px !important; }
        .food-section .food-grid__item--is-active .food-btn-wrapper {
          margin: 2rem 0 !important;
          max-height: 100px !important; }
    .food-section .food-grid__img {
      padding-top: 80%;
      flex: 1 0 auto; }
    .food-section .food-grid__info {
      padding: 1rem 1rem 2rem;
      width: 100%; }
      .food-section .food-grid__info .food-grid__main-info {
        display: flex;
        flex-direction: column; }
      .food-section .food-grid__info .combos {
        overflow: hidden;
        max-height: 0; }
        .food-section .food-grid__info .combos .pre-combo {
          font-weight: 800; }
      .food-section .food-grid__info .combo-row {
        display: flex;
        align-items: center;
        margin-bottom: 1rem; }
        .food-section .food-grid__info .combo-row .combo-img {
          flex: 0 0 30px;
          height: 30px;
          background-size: cover;
          background-position: center;
          border-radius: 50%;
          margin-right: 5px; }
        .food-section .food-grid__info .combo-row .combo_title {
          flex-grow: 1;
          text-align: left; }
        .food-section .food-grid__info .combo-row .combo_price {
          margin-left: 5px; }
      .food-section .food-grid__info .food-btn-wrapper {
        overflow: hidden;
        max-height: 0px;
        margin: 0;
        transition: all 0.3s; }
    .food-section .food-grid__title {
      margin-bottom: 1rem; }
    .food-section .food-grid__description {
      max-height: 0;
      overflow: hidden; }
    .food-section .food-grid__add-to-order {
      align-self: left; }

.combo-modal {
  position: fixed;
  top: 100vh;
  left: 0;
  transition: all 0.3s;
  width: 100vw;
  height: 100vh;
  padding: 8rem 2rem 2rem;
  background-color: #000000cc;
  color: #fff; }
  .combo-modal.active {
    top: 0vh; }
  .combo-modal h2 {
    text-align: center;
    width: 70%;
    margin: 0 auto 4rem; }
  .combo-modal .close-btn {
    width: 30px;
    height: 30px;
    top: 8rem;
    right: 2rem;
    background-image: url(img/close.svg);
    background-size: contain;
    position: absolute;
    text-align: center; }
  .combo-modal .main-combo-content .combo-entry {
    margin-bottom: 6rem; }
  .combo-modal .main-combo-content .visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem; }
    .combo-modal .main-combo-content .visual .combo-plus {
      width: 3rem;
      height: 3rem;
      background-color: #cdda32;
      margin: 0 0.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 700;
      font-size: 3rem;
      border-radius: 50%; }
    .combo-modal .main-combo-content .visual .vis-item {
      position: relative;
      width: 7rem;
      height: 7rem; }
      .combo-modal .main-combo-content .visual .vis-item .vis-img {
        width: 7rem;
        height: 7rem;
        background-size: cover;
        background-position: center;
        background-color: #fff;
        border-radius: 50%;
        position: absolute; }
        .combo-modal .main-combo-content .visual .vis-item .vis-img:nth-child(1) {
          left: 0rem; }
        .combo-modal .main-combo-content .visual .vis-item .vis-img:nth-child(2) {
          left: 2rem; }
        .combo-modal .main-combo-content .visual .vis-item .vis-img:nth-child(3) {
          left: 4rem; }
        .combo-modal .main-combo-content .visual .vis-item .vis-img:nth-child(4) {
          left: 6rem; }
  .combo-modal .main-combo-content .opt-wrapper {
    margin-bottom: 4rem; }
    .combo-modal .main-combo-content .opt-wrapper .vis-options {
      display: flex;
      justify-content: center; }
      .combo-modal .main-combo-content .opt-wrapper .vis-options .vis-opt {
        width: 7rem;
        height: 7rem;
        flex-shrink: 0;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        border: 2px solid #fff;
        background-color: #fff;
        margin: 0 0.5rem 1rem; }
        .combo-modal .main-combo-content .opt-wrapper .vis-options .vis-opt.active {
          border: 2px solid #cdda32;
          background-color: #cdda32; }
    .combo-modal .main-combo-content .opt-wrapper .sel-option-title {
      text-align: center; }
  .combo-modal .main-combo-content .combo-info {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1rem; }
    .combo-modal .main-combo-content .combo-info .price-info {
      text-align: right; }
    .combo-modal .main-combo-content .combo-info .combo-title, .combo-modal .main-combo-content .combo-info .combo-actual-price {
      font-size: 1.6rem;
      font-weight: 700; }
    .combo-modal .main-combo-content .combo-info .combo-prev-price {
      font-size: 1rem; }
  .combo-modal .btn-wrapper {
    text-align: center; }
  .combo-modal .btn {
    margin: 0 auto; }

#combo-setup-modal .combo-title {
  margin-bottom: 2rem; }

#combo-setup-modal h2::before {
  content: '';
  width: 30px;
  height: 16px;
  background-image: url(img/back-arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block; }

.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: 0rem 2rem;
      flex-direction: column;
      margin-bottom: 2rem; } }
  .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 h4 {
      margin-bottom: 2rem;
      margin-top: 0; }
      @media screen and (max-width: 600px) {
        .static-wrapper .menu-wrapper h4 {
          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 #cdda32;
        font-weight: 800; }
      .static-wrapper .menu-wrapper #static-page-menu .current-menu-item ul a {
        border-bottom: 0px solid #cdda32;
        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: 100%;
      background-size: cover;
      background-position: center;
      margin-bottom: 1rem; }
    .static-wrapper .page-wrapper .page-top h1 {
      margin-bottom: 2rem; }

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