/*
Theme Name: witweb-theme
Author: Witweb
Author URI: http://witweb.nl
Description: Witweb starter theme
Version: 1.0.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: witweb-theme
Based on: underscores theme
Tags:

witweb-theme is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.bg-mobile {
background-size: cover;
}

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

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

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

select {
  border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: inherit;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: inherit;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 1rem;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.main-navigation ul {
  display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*
Theme Name: witweb-theme
Author: Witweb
Author URI: http://witweb.nl
Description: Witweb starter theme
Version: 1.0.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: witweb-theme
Based on: underscores theme
Tags:

witweb-theme is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

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

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

select {
  border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: inherit;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: inherit;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 1rem;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.main-navigation ul {
  display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

body {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  background-image: url(/wp-content/themes/witweb-theme/img/green-dust-and-scratches.png);
  background-color: #ebe9e9;
  max-width: 100%;
  overflow-x: hidden;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

#nav-toggle {
  position: absolute;
  top: 50%;
  width: 95px;
  height: 40px;
  background: #111;
  right: 1.6rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  display: none;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

#nav-toggle p {
  position: absolute;
  top: 3px;
  right: 58px;
  color: #9A2124;
  text-transform: uppercase;
  font-size: 70%;
}

#nav-toggle {
  cursor: pointer;
}

#nav-toggle span {
  margin-left: -15px;
  top: 50%;
  right: 14px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 27px;
  background: #9A2124;
  position: absolute;
  display: block;
  content: '';
}

#nav-toggle span:before {
  top: -7px;
}

#nav-toggle span:after {
  bottom: -7px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

a:visited {
  color: inherit;
}

.grid {
  max-width: 1000px;
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  position: relative;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.site-branding {
  margin-top: 1rem;
  display: block;
  width: 200px;
  margin: auto;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.site-branding img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 100%;
  display: block;
  margin: auto;
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

.site-header.scroll {
  background: #111;
}

.site-header.scroll .header-wrap {
  padding: 1rem;
}

.site-header.scroll .header-wrap .site-branding {
  margin-top: 0;
}

.site-header.scroll .header-wrap .site-branding img {
  width: 150px;
}

.header-bg {
  height: 80vh;
  width: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

.mobile-bg {
  background-image: url(/wp-content/themes/witweb-theme/img/mobile-bg.jpg);
  -webkit-filter: brightness(80%) grayscale(80%);
          filter: brightness(80%) grayscale(80%);
  background-position: left center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.video-overlay {
  background-image: url(/wp-content/themes/witweb-theme/img/bgpattern.png);
  background-position: 50% 50%;
  background-color: rgba(34, 28, 21, 0.45);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.video-overlay:after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
  background-image: linear-gradient(to bottom, black, transparent);
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 70%;
  left: 0;
  opacity: 0.85;
}

.home .vide-overlay {
  background-color: rgba(34, 28, 21, 0.75);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-image: url(/wp-content/uploads/2017/02/hemel-diner-1.jpg);
  -webkit-animation: slide 70s infinite;
          animation: slide 70s infinite;
}

@keyframes slide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#content {
  position: relative;
  z-index: 5;
}

video#bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  -webkit-transition: 1s opacity;
  transition: 1s opacity;
}

.menu-menu-right-container {
  float: right;
}

.menu-menu-left-container {
  float: left;
}

.main-navigation {
  position: absolute;
  width: 100%;
  top: 2rem;
  left: 0;
  right: 0;
}

.main-navigation ul ul {
  color: #111;
  top: 20px;
  padding: 0.4rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-top: 20px;
}

.main-navigation ul ul .sub-menu-toggle {
  display: none !important;
}

.main-navigation ul ul li {
  background: lightgrey;
  display: block;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.main-navigation ul ul li a {
  padding: 0.5rem 1rem;
  width: 160px;
  display: block;
}

.main-navigation ul ul li:hover {
  background: #bababa;
}

ul li.menu-item-has-children .sub-menu-toggle {
  position: absolute;
  right: 0.2rem;
  display: block;
  top: -1px;
  font-size: 120%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

ul li.menu-item-has-children .sub-menu-toggle img {
  height: 8px;
}

.sub-menu li:first-child:after {
  bottom: 100%;
  left: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: lightgrey;
  border-width: 15px;
  margin-left: -15px;
}

.menu-primary-container {
  float: left;
  width: 50%;
  padding-right: 160px;
}

.menu-secondary-container {
  float: left;
  width: 50%;
  padding-left: 160px;
}

#primary-menu {
  float: right;
}

.menu {
  color: #f2f2f2;
  font-weight: 300;
}

.menu li a {
  padding: 0rem 1.4rem;
  opacity: 1;
  font-weight: 400;
  font-size: 90%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.menu li a:hover {
  opacity: 1;
}

.lang-item {
  padding: 0 !important;
}

.lang-item a {
  padding-left: 10px !important;
}

.hero {
  bottom: 10%;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: calc(10px + 0.5vw);
}

.hero .button {
  color: white;
}

.hero .hero-inner {
  padding: 1rem;
}

.hero h1 {
  color: lightgrey;
  line-height: 1.2;
  margin: auto;
  font-size: 2.4em;
  margin-bottom: 1rem;
}

.hero h2 {
  margin: auto;
  color: lightgrey;
  text-transform: uppercase;
  line-height: 1.2;
  margin: auto;
  margin-bottom: 4rem;
  font-size: 2em;
}

.hero h2 span {
  color: #d43438;
}

.hero .sep {
  display: inline-block;
  color: #9A2124;
  font-weight: 700;
  font-size: 7em;
}

.hero .usp {
  display: inline-block;
  color: lightgrey;
  padding-left: 2rem;
  font-size: 1.4em;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col-6 {
  width: 50%;
}

.home-img-1 {
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/witweb-theme/img/coffee.png);
}

.content-txt {
  padding: 10rem 6rem 4rem 0rem;
}

h2 {
  text-transform: uppercase;
  color: #9A2124;
  font-weight: 300;
  font-size: 240%;
  margin-bottom: 0;
}

.site-main {
  position: relative;
}

h3 {
  text-transform: uppercase;
  font-weight: 300;
}

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: #fff;
}

.flickity-prev-next-button:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 5px #09F;
          box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: .6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: .3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: .25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.button,
.button-2,
.wpcf7-submit {
  border: 1px solid #9A2124;
  display: table;
  margin: 1rem auto;
  padding: 0.8rem 1.4rem;
  color: #c42a2e;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.button:visited,
.button-2:visited,
.wpcf7-submit:visited {
  color: #9A2124;
}

.button:hover,
.button-2:hover,
.wpcf7-submit:hover {
  background-color: #9A2124;
  color: white;
}

.wpcf7-submit {
  background: white;
}

.pingback {
  display: none !important;
}

.button-2 {
  border: 1px solid white !important;
  color: white;
}

.button-2:hover {
  background: white;
  color: #9A2124;
}

.business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business .item {
  min-width: 240px;
  background-size: cover;
  background-position: center center;
  -webkit-box-shadow: 6px 5px 25px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 25px -5px rgba(0, 0, 0, 0.75);
}

.business .item img {
  max-width: 75px;
}

.business a {
  text-decoration: none;
}

.business .item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.7s all;
  transition: 0.7s all;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1.4rem;
  color: lightgrey;
  min-height: 200px;
}

.business .item-inner h3 {
  margin: 0;
  padding: 0;
  font-size: 150%;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.3);
}

.business .item-1 {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/restaurant.jpg);
}

.business .item-1 .item-inner {
  background: rgba(4, 14, 32, 0.7);
}

.business .item-2 {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/item-2.jpg);
}

.business .item-2 .item-inner {
  background: rgba(128, 128, 128, 0.3);
}

.business .item-3 {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/ambacht.jpg);
}

.business .item-3 .item-inner {
  background: rgba(0, 0, 0, 0.5);
}

.business .item-4 {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/item-4.jpg);
}

.business .item-4 .item-inner {
  background: rgba(34, 34, 34, 0.7);
}

.business .item:hover .item-inner {
  background: transparent;
}

.hero .page-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 3.4rem;
}

.page-template-default .page-title {
  display: none;
}

.page-template-default .type-page {
  max-width: 800px;
  margin: auto;
  padding: 2rem 4rem;
  margin-top: -8rem;
  -webkit-box-shadow: 2px 2px 15px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 2px 2px 15px 3px rgba(0, 0, 0, 0.29);
  margin-bottom: 2rem;
  background: #efefef;
}

.page-template-default .entry-header {
  display: table;
  background: #9A2124;
  color: white;
  padding: 0rem 6rem;
  margin: auto;
  margin-top: -5rem;
}

.business-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
}

#restaurant {
  display: none;
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/proeven.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  margin: 4rem 0rem 0rem 0rem;
}

#restaurant .inner {
  background: rgba(26, 17, 10, 0.92);
}

#restaurant .txt {
  padding: 5rem 0rem 10rem 0rem;
  max-width: 630px;
  margin: auto;
  color: lightgrey;
}

.site-footer {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/koffie.jpg);
  background-size: cover;
  background-position: center center;
  color: lightgrey;
}

.site-footer h2 {
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  padding: 4rem 0rem 2rem 0rem;
  margin: 0;
  color: inherit;
}

.site-footer .footer-inner {
  background-color: rgba(27, 16, 6, 0.76);
  overflow: hidden;
  height: 100%;
}

.site-footer .button {
  color: inherit;
}

.site-footer .footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  padding-top: 4rem;
}

.site-footer .footer-row img {
  max-height: 32px;
}

.site-footer .footer-row .col {
  text-align: center;
  opacity: 0.8;
  min-width: 280px;
  padding: 2rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-row .col h2 {
  margin-top: 0;
  padding-top: 1rem;
  font-size: 1.8rem;
}

.site-footer .footer-row .col p a {
  margin: 0.2rem;
  display: inline-block;
  opacity: 0.8;
}

.site-footer .footer-row .col:last-child {
  border-right: 0;
}

.site-info {
  text-align: center;
  padding: 4rem 0rem;
  font-weight: 300;
}

.site-info a {
  color: lightgrey;
  text-decoration: none;
}

.fw-photo {
  background-size: cover;
  background-position: center center;
  padding: 24rem 1rem 4rem 1rem;
}

.fw-photo h2 {
  display: table;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  color: white;
  text-align: center;
  margin: auto;
}

.contact-form-page {
  padding: 4rem 1rem;
}

.main-carousel {
  margin-bottom: 4rem;
}

.carousel-cell {
  height: 400px;
  background-size: cover;
  background-position: center center;
  width: 100%;
}

.page-template-page-landing-page .content-txt {
  padding: 4rem 6rem 4rem 4rem;
}

.opties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  padding: 1rem;
}

.opties .item {
  min-width: 240px;
  background: #9A2124;
  margin: 0.4rem;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
}

.opties .item img {
  max-width: 75px;
  padding: 0.5rem;
}

.opties .item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4rem;
  color: lightgrey;
  min-height: 200px;
}

.opties .item-inner h3 {
  margin: 0;
  padding: 0;
  font-size: 110%;
  max-width: 200px;
  text-align: center;
}

.contact-inner {
  padding: 2rem 6rem;
  background: #9A2124;
  max-width: 800px;
  margin: auto;
  color: white;
}

.contact-inner input {
  width: 100%;
  border-radius: 0;
}

.contact-inner h2 {
  text-align: center;
  color: inherit;
}

.contact-inner h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.blog main,
.single-post main {
  max-width: 800px;
  padding: 1rem;
  margin: auto;
  margin-top: -6rem;
}

.blog article,
.single-post article {
  background: #fefefe;
  padding: 2rem;
  -webkit-box-shadow: 2px 2px 15px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 2px 2px 15px 3px rgba(0, 0, 0, 0.29);
}

.blog article .entry-title a,
.single-post article .entry-title a {
  text-decoration: none;
}

.blog .hero,
.single-post .hero {
  display: none;
}

.page-template .entry-header {
  display: none;
}

#comments {
  background: #9A2124;
  padding: 1rem 2rem;
  max-width: 800px;
  color: lightgrey;
  margin: auto;
  margin-bottom: 4rem;
}

#comments h2 {
  color: white;
  margin-bottom: 2rem;
}

#comments .comment-body {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #222;
  margin-bottom: 1rem;
  background: #fefefe;
  padding: 2rem;
}

#comments ol {
  margin: 0;
  list-style: none;
}

#comments li {
  margin-bottom: 2rem;
}

#comments .pingback .comment-body {
  color: lightgrey !important;
}

#content-extra {
  margin-bottom: 2rem;
}

#respond {
  border-top: 1px solid white;
  color: lightgrey;
}

#respond textarea,
#respond input {
  border-radius: 0;
}

#respond .submit {
  border: 1px solid white;
  color: white;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.6rem 1.2rem;
  font-family: inherit;
}

#respond .submit:hover {
  background: white;
  color: #9A2124;
}

.pricetable .pricetable-inner {
  border: 0 !important;
}

.pricetable-column-inner {
  text-align: center !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-flow: column !important;
          flex-flow: column !important;
  height: 100% !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.pricetable .pricetable-button-container .pricetable-noise {
  display: inline !important;
  padding: 12px 0px;
  width: auto;
  background: transparent !important;
}

.pricetable .pricetable-button-container a {
  text-decoration: none;
  display: table !important;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: auto !important;
  font: inherit !important;
  font-size: 1.1rem !important;
  background: white !important;
  border-radius: 0 !important;
  display: table !important;
  margin: 0 auto !important;
  padding: 1rem 2rem !important;
  border: 1px solid white !important;
  color: #9A2124 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  -webkit-transition: 0.5s ease-in !important;
  transition: 0.5s ease-in !important;
}

.pricetable .pricetable-button-container a span {
  border-color: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-shadow: none !important;
  font-style: normal !important;
}

.pricetable .pricetable-button-container a .pricetable-gradient {
  display: inline !important;
}

.pricetable h3.pricetable-name {
  word-wrap: break-word;
}

.pricetable {
  width: 100% !important;
  background: transparent !important;
}

.pricetable .pricetable-inner {
  position: relative;
  border: 1px solid #d3d3d3;
  background: transparent !important;
  border-radius: 4px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pricetable .pricetable-column.pricetable-standard {
  background: #9A2124;
  display: fex !important;
  color: white !important;
  width: 280px !important;
  max-width: 100% !important;
}

.pricetable .pricetable-feature {
  position: relative;
  color: lightgrey !important;
  font: inherit !important;
  margin: 0 15px;
  border-top: 1px dashed #dedddc;
  padding: 10px 0;
}

.pricetable h3.pricetable-name {
  color: white !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase !important;
  font-size: 1.4rem !important;
  font-family: inherit !important;
}

.pricetable h4.pricetable-price {
  color: white !important;
  font-size: 1.4rem !important;
  border: 0 !important;
  border-width: 1px 0;
  background-color: transparent !important;
  padding: 2px 0 !important;
  text-align: center;
  font-style: normal !important;
}

.pricetable .pricetable-feature {
  position: relative;
  color: lightgrey !important;
  font-family: inherit !important;
  font-weight: 300 !important;
  margin: 0 15px;
  border-top: 0px solid #dedddc !important;
  padding: 10px 30px !important;
  margin: 0 !important;
}

.pricetable .pricetable-feature:last-child {
  border-bottom: 0 !important;
}

.pricetable .pricetable-header p {
  margin: 15px;
  color: lightgrey !important;
  font-weight: bold;
  font-family: inherit !important;
}

.pricetable .pricetable-feature small {
  color: lightgrey !important;
}

.pricetable .pricetable-button-container {
  padding: 15px;
  padding-bottom: 30px !important;
  margin-top: 0 !important;
}

.contact-form-page input[type="submit"] {
  font-family: inherit !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  display: table !important;
  width: auto !important;
  background: white !important;
  color: #9A2124 !important;
  padding: 0.7rem 1.4rem !important;
  text-transform: uppercase;
  border: 0;
}

table td {
  padding: 1rem 0rem;
}

.cart_totals table {
  display: block;
}

.cart_totals table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart_totals table tr td {
  padding: 0.5rem;
}

.cart_totals table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-template-page-ambacht .hero {
  bottom: calc(10% + 100px);
}

.page-template-page-ambacht .bonen {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/bonen.jpg);
  background-size: cover;
  background-position: center center;
}

.page-template-page-ambacht .big-photo {
  height: 600px;
  max-width: calc(90% - 175px);
  position: relative;
}

.page-template-page-ambacht .content-custom {
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
  position: absolute;
  background: #9A2124;
  color: lightgrey;
  max-width: 350px;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
  right: 0;
  top: 50%;
  padding: 2rem;
}

.page-template-page-ambacht .content-custom p {
  margin-bottom: 2rem;
}

.page-template-page-ambacht .content-custom img {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.ambacht-top {
  max-width: 700px;
  padding: 2rem;
  background: #221204;
  margin: auto;
  margin-top: 0rem;
  color: lightgrey;
  position: relative;
  padding-top: 180px;
  margin-bottom: 4rem;
}

.ambacht-top p {
  max-width: calc(100% - 220px);
}

.ambacht-top .word {
  display: block;
  font-size: 1.2rem;
}

.ambacht-top .explanation {
  font-style: italic;
  display: block;
}

.ambacht-top .img-1 {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/brouwerij.jpg);
  width: 80%;
  height: 300px;
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 10%;
  top: -140px;
  -webkit-box-shadow: -1px 5px 30px 2px black;
          box-shadow: -1px 5px 30px 2px black;
}

.ambacht-top .img-2 {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/koffie-ambacht.jpg);
  width: 300px;
  height: 380px;
  background-size: cover;
  background-position: center center;
  position: absolute;
  right: -100px;
  top: -20px;
  -webkit-box-shadow: -1px 5px 30px 2px black;
          box-shadow: -1px 5px 30px 2px black;
}

#bieren {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#bieren ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#bieren ul li {
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
  list-style: none;
  min-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5rem;
  background: #9A2124;
  color: lightgrey;
  padding: 1rem;
}

#bieren ul li h2 {
  color: lightgrey;
  font-size: 1.4rem;
}

#bieren ul li img {
  max-height: 100px;
}

#bieren ul li p {
  display: none;
  font-size: 90%;
  font-weight: 300;
}

#ambacht-home {
  padding-bottom: 4rem;
}

#ambacht-home .wrap {
  max-width: 700px;
  padding: 2rem 4rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #9A2124;
  color: lightgrey;
  position: relative;
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
}

#ambacht-home .two-third {
  max-width: calc(100% * 2 / 3);
}

#ambacht-home .one-third {
  max-width: calc(100% * 1 / 3);
}

#ambacht-home .bg-bier {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/bier.jpg);
  background-size: cover;
  background-position: center center;
  width: 40%;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  padding-bottom: 50%;
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
}

#ambacht-home h2 {
  color: white;
}

#ambacht-home .button-2 {
  margin-left: auto;
}

#chocolaterie {
  position: relative;
  padding: 10rem 1rem;
  margin-bottom: 4rem;
  width: 100%;
}

#chocolaterie .bg-image-choc {
  background-image: url(https://restaurantdehemel.nl/wp-content/themes/witweb-theme/img/choco.jpg);
  -webkit-filter: grayscale(60%) sepia(40%) brightness(80%);
          filter: grayscale(60%) sepia(40%) brightness(80%);
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#chocolaterie .inner-content {
  position: relative;
}

#chocolaterie .txt {
  background-color: rgba(0, 0, 0, 0.6);
  max-width: 550px;
  margin: auto;
  padding: 2rem;
  text-align: center;
  color: white;
}

#chocolaterie .txt h2 {
  font-weight: 500;
  color: #d43438;
  margin-bottom: 0;
  margin-top: 0;
}

#chocolaterie .txt h3 {
  margin-top: 0;
  font-size: 2rem;
}

input,
textarea {
  max-width: 100%;
}

#notification {
  display: none;
  position: fixed;
  bottom: 0;
  right: 4em;
  max-width: 400px;
  font-size: 80%;
  background: #9A2124;
  color: white;
  z-index: 555;
  padding: 1.7em;
  padding-left: 7em;
  padding-right: 3em;
  -webkit-box-shadow: -1px 5px 30px 2px #000;
          box-shadow: -1px 5px 30px 2px #000;
}

#notification h2 {
  color: white;
  margin: 0;
  padding: 0;
}

#notification h2 img {
  height: 1em;
  margin-right: 0.4em;
}

#notification .n-bg-img {
  position: absolute;
  width: 30%;
  height: 80%;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10%;
  background-size: cover;
  background-position: center center;
  -webkit-box-shadow: -1px 5px 30px 2px #000;
          box-shadow: -1px 5px 30px 2px #000;
}

#notification .cancel {
  position: absolute;
  height: 15px;
  width: 15px;
  top: 1em;
  cursor: pointer;
  right: 1em;
}

#notification a {
  text-transform: uppercase;
  float: right;
  padding-right: 0em;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
}

.page .products {
  display: block;
}

.page .products li {
  width: 100%;
}

.page .products li h2,
.page .products li h3,
.page .products li p {
  font-family: "Fira Sans Extra Condensed", sans-serif;
  white-space: normal;
}

.stock {
  display: none;
}

.single-product .images {
  max-width: 90%;
  margin: auto;
  width: 400px;
  text-align: center;
}

.single-product .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.related h2 {
  margin-bottom: 4rem;
}

.wc-tabs-wrapper {
  display: none;
}

.products {
  margin: 0;
  padding: 0;
  list-style: none;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products a {
  text-decoration: none;
  color: white;
}

.products li {
  width: 42%;
  margin: 5% 3% 2% 3%;
  background: #9A2124;
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
  padding: 2rem;
}

.products li h2,
.products li h3 {
  color: white;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}

.products li .woocommerce-loop-product__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 0.6rem;
}

.products li img {
  height: 218px;
  width: auto;
  margin: auto;
  margin-top: -4rem;
  -webkit-box-shadow: -1px 5px 30px 2px #000;
          box-shadow: -1px 5px 30px 2px #000;
}

.products li .woocommerce-product-details__short-description {
  margin-top: 0;
  margin-bottom: 2rem;
}

.products li h2 {
  font-size: 150%;
}

.products li .price {
  color: white;
  background-color: transparent;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  font-size: 150%;
}

.products .button {
  border: 2px solid #9A2124;
  color: #9A2124;
  padding: 0.5rem;
  background: white;
  display: table;
  margin: auto;
}

.products .button:hover {
  background: #9A2124;
  border: 2px solid white;
  color: white;
}

.woocommerce-result-count {
  display: none;
}

.woocommerce-message {
  background: #9A2124;
  color: white;
  padding: 1rem 2rem;
  margin-bottom: 4rem;
  margin-top: 2rem;
  text-align: center;
}

.woocommerce-message .button {
  border: 1px solid #9A2124 !important;
  color: #9A2124;
  padding: 0.5rem;
  background: white;
}

.woocommerce-message .button:hover {
  background: #d9d9d9;
}

.shop .page-title {
  display: none;
}

.shop .images {
  position: relative;
  margin: auto;
  display: table;
  z-index: 5;
}

.shop .summary {
  margin-bottom: 4rem;
}

.woocommerce thead {
  background-color: #9A2124;
  color: white;
}

.woocommerce th,
.woocommerce td {
  border: none;
}

.woocommerce tr td {
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.woocommerce .product-remove a {
  text-decoration: none;
  font-size: 250%;
}

.woocommerce .product-thumbnail img {
  max-width: 150px;
}

.woocommerce .quantity input {
  max-width: 70px;
  text-align: center;
}

.woocommerce .actions .coupon {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.woocommerce .actions .coupon label {
  display: none;
}

.woocommerce .actions .coupon .button {
  float: left;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  background-color: transparent;
}

.woocommerce .actions .coupon .button:hover {
  background-color: #9A2124;
  color: white;
}

.woocommerce .actions button {
  float: right;
  margin: 0;
  font-size: 0.8rem;
  background-color: transparent;
}

.woocommerce .actions button:hover {
  background-color: #9A2124;
  color: white;
}

.woocommerce .cart-collaterals {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.woocommerce .cart-collaterals div {
  text-align: center;
}

.woocommerce .cart-collaterals table {
  text-align: right;
}

.woocommerce .cart-collaterals td {
  text-align: left;
}

.woocommerce tfoot th {
  background: transparent;
}

.woocommerce #payment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2rem 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.woocommerce #payment ul li {
  margin: 0 2rem;
}

.woocommerce #payment ul li img {
  display: none;
}

.form-row label {
  display: block;
}

.form-row input {
  width: 100%;
}

.form-row-first,
.form-row-last {
  width: 50%;
  float: left;
  padding-right: 2rem;
}

.form-row-wide {
  padding-right: 2rem;
}

#place_order {
  background: #9A2124;
  color: white;
}

.woocommerce-product-gallery {
  margin: auto;
  opacity: 1 !important;
  max-width: 400px;
  position: relative;
  z-index: 5;
}

.woocommerce-product-gallery img {
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
}

.entry-summary {
  margin: auto;
  margin-top: -8rem;
  max-width: 500px;
  background: #9A2124;
  padding: 2rem;
  color: white;
  padding-left: 6rem;
  padding-top: 6rem;
  -webkit-box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 6px 5px 10px -5px rgba(0, 0, 0, 0.75);
  position: relative;
}

.wc-tabs-wrapper {
  background: white;
  padding: 2rem;
  margin-top: -4rem;
}

.wc-tabs {
  display: none;
}

.woocommerce-ordering {
  display: none;
}

@media (max-width: 1170px) {
  .menu-secondary-container {
    padding-left: 90px;
  }
  .menu-primary-container {
    padding-right: 90px;
  }
  .site-branding img {
    width: 160px;
  }
}

@media (max-width: 1000px) {
  body {
    font-size: 0.9rem;
  }
  #nav-toggle {
    display: block;
  }
  .site-branding {
    margin-left: 1rem;
  }
  ul li.menu-item-has-children .sub-menu-toggle {
    right: 1rem;
    top: 5px;
    padding: 0.4rem 0.8rem;
  }
  .menu-menu-right-container {
    float: none;
  }
  .menu-menu-left-container {
    float: none;
  }
  .main-navigation ul ul {
    position: relative;
    top: inherit;
    padding: inherit;
    float: none;
    left: inherit;
  }
  .main-navigation ul ul .sub-menu-toggle {
    display: none;
  }
  .main-navigation ul ul li {
    background: #333;
    padding: inherit;
  }
  .main-navigation ul ul li a {
    color: lightgrey;
    padding: 0.8rem;
    padding-left: 2.4rem;
  }
  .main-navigation ul ul li:first-child:after {
    display: none;
  }
  .page-template-default .entry-header {
    padding: 0rem 1rem;
    max-width: 80%;
    word-wrap: break-word;
  }
  .page-template-default .type-page {
    padding: 2rem;
  }
  .main-navigation ul ul.sub-menu {
    display: none;
  }
  .main-navigation ul ul.sub-menu.active {
    display: block;
  }
  .main-navigation ul li:hover > ul,
  .main-navigation ul li.focus > ul {
    left: initial;
  }
  .menu-secondary-container,
  .menu-primary-container {
    padding: 0;
    width: 100%;
    float: none;
  }
  .menu {
    float: none !important;
  }
  .menu li {
    display: block;
    float: none;
  }
  .menu li a {
    padding: 0.8rem 2.4rem;
    padding-right: 4.2rem;
  }
  .site-header.scroll,
  .site-header {
    background: #111;
  }
  .site-header.scroll .header-wrap,
  .site-header .header-wrap {
    padding: 0.5rem;
    background: #111;
  }
  .site-header.scroll .header-wrap .site-branding,
  .site-header .header-wrap .site-branding {
    margin-top: 0;
    width: 120px;
  }
  .main-navigation {
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    z-index: -1;
    right: 0;
    top: 0;
    left: inherit;
    padding-top: 70px;
    bottom: 0;
    background: #111;
    width: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-out;
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  }
  .main-navigation.active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 920px) {
  .site-footer .footer-row .col {
    border: 0;
  }
  .products li a {
    font-size: 0.7rem;
  }
  .products li .button {
    font-size: 0.8rem;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 0.9rem;
  }
  .home-img-1 {
    position: absolute;
    top: 0;
    width: 228px;
    height: 166px;
  }
  #ambacht-home .wrap {
    display: block;
    padding: 2rem;
  }
  #ambacht-home .wrap .two-third {
    width: 100%;
    max-width: 100%;
  }
  #ambacht-home .wrap .bg-bier {
    display: block;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: 100%;
    padding-bottom: 80%;
  }
  .woocommerce .product-thumbnail img {
    max-width: 35%;
    width: 200px;
  }
  select {
    border: 1px solid #ccc;
    max-width: 100%;
  }
  .woocommerce .quantity input {
    max-width: 30px;
    text-align: center;
  }
  .woocommerce td {
    padding: 0.2rem;
    font-size: 100%;
  }
  .products li {
    width: 300px;
    display: inline-block;
    max-width: 100%;
    float: none;
  }
  .products li a {
    display: inline-block;
    font-size: 0.6rem;
  }
  .products li .button {
    font-size: 0.8rem;
  }
  .product-thumbnail {
    display: none;
  }
  .flex {
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-template-page-landing-page .content-txt {
    padding: 2rem;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .page-template-page-landing-page .content-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main-carousel {
    margin-bottom: 2rem;
  }
  .home .content-txt {
    padding: 2rem;
    padding-top: 180px;
    width: 100%;
  }
  .col-6 {
    width: 100%;
  }
  .contact-inner {
    padding: 2rem;
  }
  .actions .coupon input {
    max-width: 6rem;
  }
  .actions .coupon .button {
    display: block;
    max-width: 8rem;
    font-size: 0.8rem !important;
  }
  .actions button {
    display: block;
    max-width: 8rem;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 550px) {
  body {
    font-size: 0.8rem;
  }
  .page-template-page-ambacht .big-photo {
    max-width: 100%;
    height: 500px;
    margin-bottom: 40vw;
  }
  .page-template-page-ambacht .content-custom {
    width: 90%;
    top: 20%;
    left: 5%;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    max-width: 100%;
  }
  .ambacht-top .img-2 {
    display: none;
  }
  .ambacht-top p {
    max-width: 100%;
  }
  #notification {
    right: 0;
    padding: 1rem;
  }
  #notification .n-bg-img {
    display: none;
  }
  .products li {
    margin-bottom: 2.5rem;
  }
  .products li a {
    font-size: 0.5;
  }
  .form-row-first,
  .form-row-last {
    width: 100%;
  }
  .woocommerce #payment ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .header-bg {
    height: 80vh;
    width: 100%;
    min-height: 200px;
    max-height: 400px;
  }
  .actions .coupon {
    margin-bottom: 0.6rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .actions .coupon button,
  .actions .coupon input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    max-width: 100%;
  }
  .actions .coupon button {
    width: 160px;
  }
  .button,
  .actions .button,
  .actions .coupon .button {
    padding: 0.5rem;
    font-size: 80% !important;
  }
  .checkout-button.button {
    font-size: 120% !important;
  }
}
/*# sourceMappingURL=style.css.map */