/* GRID */
.container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 500px */
@media (min-width: 500px) {
  .container {
    width: 85%;
    padding: 0;
  }
}

/* For devices larger than 850px 
@media (min-width: 850px) {
    .container {
        width: 83%;
		padding: 0;
    }*/

/* For devices larger than 750px */
@media (min-width: 762px) {
  .container {
    width: 85%;
  }

  .column,
  .columns {
    margin-left: 4%;
  }

  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }

  .one.column,
  .one.columns {
    width: 4.66666666667%;
  }

  .two.columns {
    width: 13.3333333333%;
  }

  .three.columns {
    width: 22%;
  }

  .four.columns {
    width: 30.6666666667%;
  }

  .five.columns {
    width: 39.3333333333%;
  }

  .six.columns {
    width: 48%;
  }

  .seven.columns {
    width: 56.6666666667%;
  }

  .eight.columns {
    width: 65.3333333333%;
  }

  .nine.columns {
    width: 74%;
  }

  .ten.columns {
    width: 82.6666666667%;
  }

  .eleven.columns {
    width: 91.3333333333%;
  }

  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }

  .one-third.column {
    width: 30.6666666667%;
  }

  .two-thirds.column {
    width: 65.3333333333%;
  }

  .one-half.column {
    width: 48%;
  }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.66666666667%;
  }

  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }

  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }

  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }

  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }

  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }

  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }

  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }

  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }

  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}

/* clears */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* media queries */

/* Larger than 400px */
@media (min-width: 400px) {
}

/* Larger than 550px */
@media (min-width: 550px) {
}

/* Larger than 750px */
@media (min-width: 750px) {
}

/* Larger than 1000px */
@media (min-width: 1000px) {
}

/* Larger than 1200px */
@media (min-width: 1200px) {
}

/* text-styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Larger then phone */
@media (min-width: 550px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 4.2rem;
  }

  h3 {
    font-size: 3.6rem;
  }

  h4 {
    font-size: 3rem;
  }

  h5 {
    font-size: 2.4rem;
  }

  h6 {
    font-size: 1.5rem;
  }
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

#FAQ styles for menukaart */ #faq-menukaart {
  /* match the rest of the menukaart background */
  background: #ebebeb;
  padding: 2rem 0;
}
#faq-menukaart .container {
  max-width: 1100px;
  padding: 0 18px;
}
#faq-menukaart h2 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 600;
  grid-column: 1 / -1; /* ensure the title sits on its own row */
  width: 100%;
}
#faq-menukaart .faq-item {
  border-radius: 8px;
  background: var(--faq-item-bg, #ffffff);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  padding: 1rem 1.25rem;
  margin-bottom: 0.8rem;
  transition:
    box-shadow 150ms ease,
    transform 150ms ease;
}
#faq-menukaart .faq-item {
  cursor: pointer;
}
#faq-menukaart .faq-item:hover {
  box-shadow: 0 6px 18px rgba(19, 19, 19, 0.06);
  transform: translateY(-2px);
}
#faq-menukaart .faq-item {
  position: relative;
}
#faq-menukaart .faq-item h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem 0;
  font-weight: 600;
}
#faq-menukaart .faq-item h3 {
  cursor: pointer;
  padding-right: 26px;
  color: #000;
  position: relative;
}
#faq-menukaart .faq-item h3::after {
  content: "\25B8";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}
#faq-menukaart .faq-item.open h3::after {
  transform: translateY(-50%) rotate(90deg);
}
#faq-menukaart .faq-item p {
  margin: 0;
  color: #333;
  line-height: 1.55;
  font-size: 0.98rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease;
  padding-top: 0.25rem;
}
#faq-menukaart .faq-item.open p {
  max-height: 640px; /* large enough to show content */
  opacity: 1;
}

/* Layout: responsive two-column grid for FAQ */
#faq-menukaart .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 900px) {
  #faq-menukaart .container {
    grid-template-columns: repeat(2, 1fr);
  }
  #faq-menukaart .faq-item {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  #faq-menukaart h2 {
    font-size: 2.6rem;
  }
  #faq-menukaart .faq-item h3 {
    font-size: 1.2rem;
  }
}

/* Small spacing reset when inside other components */
.faq {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* default */
html,
body,
nav {
  height: 100%;
  width: 100%;
}

html {
  padding: env(safe-area-inset);
}

body {
  box-sizing: border-box;

  padding-bottom: 15px;
  margin: 0;

  background-color: #ebebeb;

  overscroll-behavior: none;
}

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: transparent;
}

/* colours */
.orange {
  background-color: #fcb74b;
}
.light-blue {
  background-color: #007ba7;
}
.blue {
  background-color: #b2d1f7;
}
.light-green {
  background-color: #d2f7b3;
}
.green {
  background: #598c2e;
}
.dark-green {
  background-color: #118006;
}

.text-green {
  color: #598c2e;
}

a {
  color: #1eaedb;
}

/* font styles */
* {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

ol,
ul,
a,
p {
  font-size: 1.2em;
}

table {
  font-size: 1.4em;
}

h2,
h3 {
  font-size: 3.2rem;
  text-transform: uppercase;

  font-family: "Montserrat", arial, sans-serif;

  word-break: normal;
}

@media only screen and (max-width: 300px) {
  ol,
  ul,
  a,
  p {
    font-size: 1em;
  }
  h2,
  h3 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 650px) {
  ol,
  ul,
  a,
  p {
    font-size: 1.1em;
  }
  h2,
  h3 {
    font-size: 2.4rem;
  }
}

/* def. classes */
.alert {
  color: red;
  text-align: center;
}

.hidden {
  display: none;
}

.italic {
  font-style: italic;
}
.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.m0a {
  margin: 0 auto;
}

.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}

.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}

.noscroll {
  position: fixed;
  overflow: hidden;
}

/* menu button */
#menu-button-text {
  box-sizing: border-box;

  position: fixed;
  top: 12px;
  right: 75px;

  z-index: 101;

  overflow: hidden;

  width: 0px;
  height: 31px;

  line-height: 31px;
  font-size: 30px;

  cursor: pointer;

  text-transform: uppercase;
  text-align: center;

  transition: width 0.5s ease;

  background-color: rgba(0, 0, 0, 0.3);

  border-radius: 5px;
}

#menu-button-text.open {
  width: 105px;
}

#menu-button {
  width: 45px;
  height: 45px;
  position: fixed;
  top: 12px;
  right: 25px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;

  z-index: 100;
}

#menu-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #484848; /* d4d4d4 */
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#menu-button.open span {
  background-color: #000000 !important;
}

#menu-button span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#menu-button span:nth-child(2) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#menu-button span:nth-child(3) {
  top: 28px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#menu-button.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 5px;
}

#menu-button.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#menu-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 29px;
  left: 5px;
}

/* menu */
#menu-container {
  box-sizing: border-box;

  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;

  width: 0;
  max-width: 0;
  height: 100%;

  overflow: hidden;
  overflow-y: scroll;

  z-index: 99;

  transition:
    max-width 0.5s ease,
    width 0.5s ease;

  overflow: hidden;
}
#menu-container.open {
  -webkit-box-shadow:
    -3px 0px 20px 2px rgba(0, 0, 0, 0.15),
    -3px 0px 20px 2px rgba(0, 0, 0, 0.15);
  box-shadow:
    -3px 0px 20px 2px rgba(0, 0, 0, 0.15),
    -3px 0px 20px 2px rgba(0, 0, 0, 0.15);
}

#menu-container.open {
  width: calc(100%);
  max-width: 500px;
}

nav > ul,
#submenu > ul {
  padding: 50px 20px 0 20px;
  margin: 0;

  list-style: none;

  font-size: 30px;
  font-weight: bold;

  text-transform: uppercase;
  background-color: transparent;
}

nav > ul > li > a,
#submenu,
#submenu > ul > li > a {
  cursor: pointer;

  display: block;
  box-sizing: border-box;

  overflow: hidden;

  width: 95%;
  height: 41px;

  padding-left: 10px;
  margin: 0 auto;
  border-bottom: 2px solid #686868;

  text-decoration: none;

  color: #686868;
  line-height: 45px;

  font-size: 25px;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: transparent;
}

#submenu > ul > li > a {
  position: relative;
  right: 5px;

  width: calc(100% - 10px);

  padding-left: 0px;
  border-bottom: dotted 2px #787878;

  font-size: 22px;
}

#submenu > ul > li:last-child > a {
  border: none;
}
/* #submenu:hover {height: 127px;}  submenu height = 45px + 41px per submenu button */
#submenu:hover {
  height: 168px;
}

#submenu > ul {
  position: relative;
  overflow: hidden;
  padding: 0;
}
#submenu-arrow {
  position: absolute;
  top: 97px;
  right: 38px;

  width: 18px;
  height: 18px;

  border-right: 2px solid #484848;
  border-bottom: 2px solid #484848;

  transform: rotate(45deg);

  opacity: 0;
}

#submenu-arrow.show {
  opacity: 1;

  transition:
    background-color 0.275s ease-in,
    height 0.5s ease,
    border-color 0.5s ease-in,
    transform 0.275s ease-in,
    top 0.275s ease-in,
    color 0.275s ease-in,
    box-shadow 0.5s ease,
    opacity 0.15s 0.3s ease;
}

#submenu:hover > #submenu-arrow {
  transform: rotateX(180deg) rotate(45deg);
  top: 107px;
}

nav > ul > li > a:hover,
#submenu:hover {
  color: #585858;
  background-color: #c2ee9e;
}

#submenu:hover > #submenu-arrow {
  border-color: #686868;
}
#submenu:hover a {
  color: #686868;
}
#submenu:hover a:hover {
  color: #585858;
}

#submenu,
#submenu-arrow,
#submenu a,
nav a {
  transition:
    background-color 0.275s ease-in,
    height 0.5s ease,
    border-color 0.5s ease-in,
    transform 0.275s ease-in,
    top 0.275s ease-in,
    color 0.275s ease-in,
    box-shadow 0.5s ease,
    opacity 0.15s ease;
}

@media only screen and (max-width: 750px) {
  nav > ul > li,
  #submenu,
  #submenu > ul > li > a:last-child {
    margin-top: 15px;
  }

  nav > ul > li > a,
  #submenu a,
  #submenu {
    padding-bottom: 30px;
  }

  #submenu:hover {
    height: 215px;
  }

  #submenu-arrow {
    top: 127px;
  }

  #submenu:hover > #submenu-arrow {
    top: 137px;
  }

  nav > ul > li > a:hover,
  #submenu:hover {
    color: #686868;
    background-color: transparent;
  }
}

@media only screen and (max-width: 300px) {
  nav > ul > li > a,
  #submenu {
    font-size: 25px;
  }
}

/* menu footer text */
#menu-infotext {
  z-index: 100;

  position: absolute;
  bottom: -65px;
  right: 0;

  width: 100%;
  min-width: 200px;

  text-align: center;

  font-size: 20px;

  padding-left: 0;
  padding-bottom: 100px;

  overflow: hidden;
}

#menu-infotext > address {
  overflow: hidden;
  white-space: nowrap;

  width: 100%;

  font-style: normal;
}

#menu-infotext > div {
  height: 50px;
  width: 100%;
}

.contactlink {
  color: #15a4e0;
  text-decoration: none;
}

.sociallink > a > img,
.sociallink > a > picture > img {
  height: 70px;
  width: 70px;

  filter: drop-shadow(0px 0px 0px white) invert(65%);
  transition: filter 0.3s ease;

  border-radius: 50%;
}
.sociallink > a > img:hover,
.sociallink > a > picture > img:hover {
  filter: blur(1px);
  filter: drop-shadow(0px 0px 2px white) invert(50%);
}

@media only screen and (max-height: 750px) {
  #menu-infotext > address {
    display: none;
  }
}

@media only screen and (max-height: 450px) {
  #menu-infotext {
    display: none;
  }
}

/* main content wrapper */
div#content {
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.45);

  border-radius: 5px;

  margin-bottom: 50px;

  background-color: #fafafa;
}

/* bar */
div.bar {
  box-sizing: border-box;

  width: calc(100%);

  padding: 0 0;
  margin: 40px auto;

  border-bottom: 5px solid #598c2e;

  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

/* header */
header.container {
  height: 500px;
  width: 100%;

  padding: 0px;
  margin-top: 55px;

  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
header.container > div {
  height: 100%;
}

@media only screen and (max-width: 600px) {
  header.container {
    margin-top: 0px;
    padding-top: 55px;
  }
}

@media only screen and (max-width: 650px) {
  div#content {
    margin-bottom: 0;
  }
}

/* main */
.text-wrapper,
.img-wrapper {
  padding: 0 15px;
}

main.container {
  width: 100%;

  padding: 0 30px;
}

main.container h2,
main.container h3 {
  text-align: center;
}

.main-img {
  height: 650px;
  width: 100%;

  object-fit: cover;
  object-position: 50% 50%;

  border-radius: 3px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2);
}

.side-img {
  height: 300px;
  width: 100%;

  object-fit: contain;
  object-position: 50% 50%;
}

.main-list {
  list-style: disc;

  padding: 0;
  margin: 0;
  margin-left: 18px;
}

.main-list > li {
  margin-bottom: 10px;
}

.main-footer {
  height: 50px;
}

/* media checks*/
@media only screen and (max-width: 650px) {
  .text-wrapper,
  .img-wrapper {
    padding: 0 0px;
  }

  .header-logo-container {
    line-height: 550px;
  }

  div#content {
    padding: 0;
  }

  .main-img {
    margin-top: 50px;
    height: 325px;
  }

  main.container {
    padding-bottom: 50px;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  div#content {
    border-radius: 0;
    box-shadow: none !important;
  }

  div.slideshow-wrapper {
    margin: 0 15px;
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 400px) {
  .header-logo-container {
    line-height: 500px;
  }
}

@media only screen and (max-width: 762px) {
  .hide-w762 {
    display: none;
  }
}

/* leaflet map */
#mapid {
  height: 400px;
  border-radius: 15px;

  z-index: 10 !important;

  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2);
}

.map {
  box-sizing: border-box;

  width: 100%;
  padding: 15px;
}

/* table style*/
th,
td {
  padding: 12px 15px;
  text-align: left;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
  text-align: right;
}

tbody > tr {
  border-bottom: 2px dotted #e1e1e1;
}

tbody > tr:last-child {
  border: none;
}

/* contact footer style */

/* menu footer text */
#footer-infotext {
  z-index: 100;

  width: 100%;
  min-width: 200px;

  text-align: center;

  font-size: 20px;

  padding-left: 0;
  padding-bottom: 55px;
}

#footer-infotext > address {
  width: 100%;

  font-style: normal;
}

#footer-infotext > div {
  height: 50px;
  width: 100%;
}

/* eten in de tijd*/
.etenlink,
a {
  font-size: 1em;
}

div.pizza {
  max-width: 70%;
  margin: 0 auto;
}

/* header slideshow */
.slideshow-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;

  font-size: 0;

  cursor: default;
}

.slideshow-wrapper .slide-button {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  width: 30px;
  height: 100px;

  z-index: 10;

  overflow: hidden;
}

.slideshow-wrapper #prev-slide > div {
  transform: rotate(45deg) translate(-50%, -50%);
  height: 100px;
  width: 100px;

  position: absolute;
  top: 71px;
  left: 30px;

  border: 4px solid #ffffffcc;

  border-radius: 5px;

  cursor: pointer;

  transition: border-color 0.5s ease;
}

.slideshow-wrapper #next-slide > div {
  transform: rotate(45deg) translate(-50%, -50%);
  height: 100px;
  width: 100px;

  position: absolute;
  top: 71px;
  right: 30px;

  border: 4px solid #ffffffcc;

  border-radius: 5px;

  cursor: pointer;

  transition: border-color 0.5s ease;
}

.slideshow-wrapper #next-slide > div:hover,
.slideshow-wrapper #prev-slide > div:hover {
  border-color: #ffffff77;
}

.slideshow-wrapper #prev-slide {
  left: 8px;

  text-align: left;
}
.slideshow-wrapper #next-slide {
  right: 8px;

  text-align: right;
}

.slideshow-wrapper ul {
  margin: 0;
  padding: 0;
  width: calc(4 * 100%);

  height: 100%;

  transition: margin-left 1s ease-in-out;
}
.slides .slide-image {
  display: inline-block;
  position: relative;

  width: calc(25%);
  height: 100%;

  margin: 0;
  padding: 0;

  text-align: center;

  color: white;

  overflow: hidden;
}

.slides > .slide-image h3 {
  width: 100%;
}

.slides > .slide-image > div.graybg {
  box-sizing: border-box;

  padding: 5px;
  border-radius: 5px;
}

.slideshow-wrapper .slides.pos1 {
  margin-left: 0%;
}
.slideshow-wrapper .slides.pos2 {
  margin-left: -100%;
}
.slideshow-wrapper .slides.pos3 {
  margin-left: -200%;
}
.slideshow-wrapper .slides.pos4 {
  margin-left: -300%;
}

/* slides */
.slides {
  font-size: 0;
}

.slides > * > * > * {
  font-family: "Montserrat", arial, sans-serif;
}

/*slide backgroundcolors*/
.slides > li.red {
  background-color: #c63b3b;
  color: black;
}
.slides > li.red > div.graybg {
  background-color: rgba(255, 255, 255, 0.4);
}
.slides > li.orange {
  background-color: #e69528;
  color: black;
}
.slides > li.orange > div.graybg {
  background-color: rgba(255, 255, 255, 0.4);
}
.slides > li.yellow {
  background-color: #ede8aa;
  color: black;
}
.slides > li.yellow > div.graybg {
  background-color: rgba(255, 255, 255, 0.4);
}
.slides > li.green {
  background-color: #355e3b;
  color: white;
}
.slides > li.green > div.graybg {
  background-color: rgba(0, 0, 0, 0.4);
}
.slides > li.blue {
  background-color: #002244;
  color: white;
}
.slides > li.blue > div.graybg {
  background-color: rgba(0, 0, 0, 0.4);
}
.slides > li.purple {
  background-color: #991be2;
  color: white;
}
.slides > li.purple > div.graybg {
  background-color: rgba(0, 0, 0, 0.4);
}

/* background styles */
.sterren {
  background-image: url("../img/sterren.svg");
  background-repeat: repeat;
  background-size: 50%;
  background-position: center;
}
.blikjes {
  background-image: url("../img/blikfleszwart.svg");
  background-repeat: repeat;
  background-size: 40%;
  background-position: center;
}
.fruit {
  background-image: url("../img/fruit.svg");
  background-repeat: repeat;
  background-size: 30%;
  background-position: center;
}
.glazen {
  background-image: url("../img/glazen_wit_mid.svg");
  background-repeat: repeat;
  background-size: 45%;
  background-position: center;
}
.glazen-gevuld {
  background-image: url("../img/glazen_vol.svg");
  background-repeat: repeat;
  background-size: 25%;
  background-position: center;
}

@media only screen and (max-width: 1024px) {
  .blikje {
    background-size: 45%;
  }
  .fruit {
    background-size: 45%;
  }
  .glazen {
    background-size: 60%;
  }
  .glazen-gevuld {
    background-size: 60%;
  }
}
@media only screen and (max-width: 650px) {
  .blikjes {
    background-size: 75%;
  }
  .fruit {
    background-size: 75%;
  }
  .glazen {
    background-size: 75%;
  }
  .glazen-gevuld {
    background-size: 75%;
  }
}

.slides > li:last-child {
  top: 0;

  background-image: url("../img/pic/m/headerimg.jpg");
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 1919px) {
  .slides > li:last-child {
    background-image: url("../img/pic/xl/headerimg.jpg");
  }
}

.slide-logo {
  height: 100%;
  width: 100%;
}

.slide-logo img {
  position: absolute;

  max-width: 75%;
  min-height: 160px;

  width: 90%;
  height: 60%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  object-fit: contain;

  transition: box-shadow 1.5s ease;

  box-shadow:
    0px 0px 20px 150px rgba(0, 0, 0, 0.4),
    inset 0px 0px 100px 100px rgba(0, 0, 0, 0.4);
}

.slide-text {
  position: absolute;

  max-width: 75%;

  font-size: 1.3rem;

  text-align: left;
}

.slide-text > h3,
.slide-text > p {
  width: 100%;

  margin: 0;
}

.slide-text .title {
  font-size: 3.2rem;
}
.slide-text .subtitle {
  font-size: 2.1rem;
  margin-top: 0px;
}

.topleft {
  top: 60px;
  left: 60px;
}

.topright {
  text-align: right;

  right: 60px;
  top: 60px;
}

.bottomleft {
  bottom: 60px;
  left: 60px;
}

.bottomright {
  text-align: right;

  right: 60px;
  bottom: 60px;
}

.centercenter {
  top: 50%;
  left: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);

  text-align: center;
}

@media only screen and (max-width: 900px) {
  .slide-text .title {
    font-size: 2.3rem;
  }
  .slide-text .subtitle {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 650px) {
  .slide-text .title {
    font-size: 2rem;
  }
  .slide-text .subtitle {
    font-size: 1.4rem;
  }

  .topleft {
    top: 30px;
    left: 30px;
  }

  .topright {
    text-align: right;

    right: 30px;
    top: 30px;
  }

  .bottomleft {
    bottom: 30px;
    left: 30px;
  }

  .bottomright {
    text-align: right;

    right: 30px;
    bottom: 30px;
  }
}

@media only all and (max-width: 600px) {
  .slideshow-wrapper .slide-button {
    top: 55%;
  }
}

@media only screen and (max-width: 350px) {
  .slide-text .title {
    font-size: 1.7rem;
  }
  .slide-text .subtitle {
    font-size: 1.2rem;
  }
}

/* openinghours */
.hours,
.day {
  text-align: right;
}

.hours.red {
  color: red;
}

/* footer */
footer {
  height: 35px;

  padding-bottom: 10px;

  text-align: center;
  text-transform: uppercase;

  font-size: 1.5rem;
  font-family: "montserrat", arial, sans-serif;
  font-weight: 500;

  letter-spacing: 4px;

  color: #676767;
}

footer > span > div {
  display: inline-block;
  line-height: 30px;
}

@media all and (max-width: 650px) {
  footer span {
    display: inline-block;
    padding-top: 3px;

    border-top: 2px solid #7c7b7b;
  }
}

/* language button */
#lan-button {
  box-sizing: border-box;

  position: fixed;

  bottom: 20px;
  left: 25px;

  height: 40px;

  padding: 0 5px;

  border-radius: 5px;

  z-index: 1000;

  line-height: 40px;

  background-color: rgba(164, 164, 164, 0.7);

  cursor: pointer;

  font-weight: 500;
  font-size: 17px;

  transition: background-color 0.3s ease;
}

#lan-button:hover {
  background-color: rgba(124, 124, 124, 0.7);
}

/* variables */
:root {
  --text-color: rgb(255, 241, 235);
  --background-color: #3a120a;
  --accent-color: #fcf7e5;
  --accent-color-faded: rgb(89, 140, 46, 0.3);
  --link-color: #29a9eb;
  --dot-color: rgba(255, 221, 211, 0.25);
  /*--accent-dark: rgb(89, 140, 46);*/
  --accent-dark: #b1dd8b;
  --accent-text: #2f2f2f;
  --color: black;
  --faq-item-bg: #fcf7e5;
  color: #ffffff;
}

.menu-color {
  background-color: var(--accent-color);
}
.menu-color > ul > li h3 {
  color: var(--accent-text);
  border-color: var(--accent-text);
}

#menu-button span {
  color: var(--accent-text);
  background-color: var(--accent-color) !important;
}

/* header and footer style */
header {
  width: calc(100% - 30px);

  margin: 15px auto;
  margin-top: 45px;

  text-align: center;
}
header img {
  max-width: 50%;
  margin-bottom: 25px;
}

footer span {
  width: calc(100% - 30px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

body {
  background-color: var(--background-color);
}

html,
body {
  min-height: 100%;
  position: relative;
}

* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: transparent;
}

/* navigation */
nav ul {
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;

  max-height: none;
  height: auto;
}

nav ul li {
  box-sizing: border-box;

  min-height: 35px;

  padding: 0 10px;
  margin-bottom: 10px;

  line-height: 35px;

  cursor: pointer;
}

nav h2 {
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--accent-text) !important;
}

nav ul li h3,
nav ul li a {
  height: 100%;
  width: calc(100% - 35px);

  margin: auto auto;

  border-bottom: 1px dashed var(--accent-color);

  color: var(--accent-color);

  font-size: 18px;
  line-height: 40px;
  text-decoration: none;

  transition:
    color 0.275s ease,
    border-color 0.275s ease;
}

nav ul li h3.last,
nav ul li a.last {
  border: 0;
}

nav ul li.bar {
  background-color: var(--accent-color-faded);

  min-height: 0;
  height: 3px;
  padding: 0;
  border: 0;
  margin: 0 30%;
  border-radius: 50%;
}

nav a {
  text-decoration: none;
}

nav ul li h3:hover,
nav ul li a:hover {
  color: white;
  border-color: white;
}

nav .subtitle {
  display: block;
  color: var(--accent-text);

  font-size: 1.8em;
  text-decoration: none;

  text-transform: uppercase;

  margin-bottom: 20px;
}

#menu-container {
  padding-top: 50px;
  overflow-y: auto;
}

/* menu style */
#menu {
  width: calc(100% - 30px);

  min-height: calc(100vh - 250px);

  margin: 0 auto;

  background-color: var(--background-color);
  color: var(--text-color);
}

.section {
  margin-bottom: 15px;
}

.section.closed,
.section.close > * {
  display: none;
}

.section > .row {
  padding: 5px;
}

.section-header {
  min-height: 40px;

  margin-bottom: 5px;

  text-align: center;

  font-size: 1.5rem;
  line-height: 40px;

  text-transform: uppercase;

  background-color: var(--accent-color);
  color: var(--color);
}

.section-header.group {
  margin-bottom: 0px;

  font-size: 1.75rem;
  font-weight: bold;
}

.section-header > .sub {
  font-size: 13px;

  line-height: 18px;

  font-weight: normal;
  padding-bottom: 8px;
}

.beer {
  padding-bottom: 15px;
  font-size: 13px;
}

.beer > div {
  margin-bottom: 5px;
}

.title,
.prices {
  font-weight: bold;
}

.title,
.title a {
  font-size: 1.3em !important;
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
}

.style {
  font-size: 1.2em;
  font-style: italic;
}

.containers {
  position: relative;
  width: 100%;
  min-height: 19px;
}

.misc-info {
  max-width: 100%;
  overflow: hidden;
}
.misc-info > span {
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipses;
  overflow: hidden;
}

.dots {
  width: 100%;
  height: 8px;

  border-bottom: dotted 2px var(--dot-color);

  position: absolute;
}

.price,
.size {
  background-color: var(--background-color);
  z-index: 2;

  position: absolute;

  padding: 0 7px;

  font-weight: bold;
}

.price {
  right: 0;
}

.size {
  left: 0;
}

.description {
  position: relative;

  padding-bottom: 15px;

  height: 15px;
}
.description.open {
  height: auto;
}

.description > div.text {
  position: absolute;
  width: 100%;
  max-width: calc(100% - 100px);

  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.description.open > div.text {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;

  text-overflow: none;
  white-space: normal;
  word-break: normal;
}

.description > span.button {
  position: absolute;
  right: 0px;

  max-width: 100px;

  background-color: var(--background-color);
  color: var(--link-color);

  text-decoration: underline;

  cursor: pointer;
}

.description.open > span.button {
  display: block;

  position: relative;
}

.description.open > span.button.hidden {
  display: none;
}

.footer-msg {
  box-sizing: border-box;

  text-align: center;
  text-justify: inter-word;
  width: calc(100% - 30px);
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  margin: 0 auto;
  margin-bottom: 15px;
  padding: 15px;

  text-transform: uppercase;
  font-size: 1.6rem;
}

@media (max-width: 650px) {
  .footer-msg {
    text-align: justify;

    border-bottom: 0px solid transparent;
  }
  header img {
    width: 75%;
    max-width: 75%;
    margin-bottom: 25px;
  }
}
