<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * 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.
 * Hide the `template` element in IE, Safari, and Firefox &lt; 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 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; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
p {
  -webkit-hyphens: auto;
  -epub-hyphens:   auto;
  -moz-hyphens:    auto;
  hyphens:         auto;

}*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * 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; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 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 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Stylesheet: Typography


Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
@font-face {
  font-family: 'blackoreregular';
  src: url("fonts/blackore-webfont.woff2") format("woff2"), url("fonts/blackore-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'djb_messy_amanda_goes_boldRg';
  src: url("fonts/djb_messy_amanda_goes_bold-webfont.woff2") format("woff2"), url("fonts/djb_messy_amanda_goes_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'allerregular';
  src: url("fonts/aller_rg-webfont.woff2") format("woff2"), url("fonts/aller_rg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
BORDER RADIUS
*********************/
/*
@include border-radius(5px);
*/
/*********************
TRANSITION
*********************/
/*
@include transition(all 0.2s ease-in-out);
*/
/*********************
BOX SIZING
*********************/
/* 
@include box-sizing(border-box); 
*/
/*********************
OPACITY
*********************/
/* 
@include opacity(0.8); 
*/
/*********************
TRANSFORM
*********************/
/*
@include transform(translateY(0));
*/
/*********************
ROTATE
*********************/
/* 
@include rotate(-20deg); 
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.btn {
  display: block;
  width: 190px;
  height: 66px;
  padding: 17px 0 0 0;
  margin: 0 auto;
  color: #ffffff;
  font-family: "blackoreregular", sans-serif;
  text-decoration: none;
  background: url(img/btn-paars.png) no-repeat 0 0;
  background-size: 100%;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out; }
  .btn:hover {
    background-image: url(img/btn-groen.png); }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  padding: 8px 12px;
  margin-bottom: 14px;
  color: #812051;
  font-family: "allerregular", sans-serif;
  box-shadow: none;
  border: 0;
  width: 100%;
  outline: none;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  resize: none; }

select {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

/*********************
BASE (MOBILE) SIZE
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "allerregular", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #812051;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }
  body.thema-standaard {
    background-image: url(img/themas/standaard/standaard-mobile.jpg); }
  body.thema-sinterklaas {
    color: #ffffff;
    background-image: url(img/themas/sinterklaas/sinterklaas-mobile.jpg); }
    body.thema-sinterklaas div.popup {
      color: #812051; }
    body.thema-sinterklaas .banners ul.slick-dots li:hover button, body.thema-sinterklaas .banners ul.slick-dots li.slick-active button {
      background: #c90000; }
    body.thema-sinterklaas #call-to-action a {
      color: #ffffff; }

html.no-scroll,
body.no-scroll,
html.no-scroll-popup,
body.no-scroll-popup {
  position: static;
  overflow: hidden; }

/*********************
LAYOUT &amp; GRID STYLES
*********************/
.wrap {
  width: 80%;
  margin: 0 auto; }

#page-wrap {
  overflow-x: hidden;
  min-height: calc(100vh - 85px); }

/*
// Let's get this party started 
::-webkit-scrollbar {
    width: 12px;
}

// Track 
::-webkit-scrollbar-track {
   // -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba($rood,0.7); 
}
 
// Handle 
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: $paars; 
    //-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	//background: rgba(255,0,0,0.4); 
}
*/
/*********************
LINK STYLES
*********************/
a, a:visited {
  outline: none;
  cursor: pointer;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:link, a:visited:link {
    /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
H1, H2, H3, H4, H5
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  margin: 0; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 30px;
  line-height: 30px;
  font-family: "blackoreregular", sans-serif;
  margin-bottom: 15px; }
  h1 span, .h1 span {
    font-size: 43px;
    line-height: 35px;
    font-family: "djb_messy_amanda_goes_boldRg", sans-serif; }

h2, .h2 {
  display: block;
  font-size: 43px;
  line-height: 35px;
  font-family: "djb_messy_amanda_goes_boldRg", sans-serif;
  padding-top: 25px;
  margin-bottom: 10px; }

h3, .h3 {
  font-size: 25px;
  line-height: 30px;
  font-family: "blackoreregular", sans-serif;
  margin-bottom: 10px; }

h4, .h4 {
  font-size: 17px;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 3px; }

/*********************
HEADER
*********************/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 47px;
  border-bottom: 2px solid #d2b887;
  background: #be0a30;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#be0a30, #9c0928);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#be0a30, #9c0928);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#be0a30, #9c0928);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#be0a30, #9c0928);
  /* Standard syntax */
  z-index: 990; }
  .header #inner-header {
    position: relative;
    width: 74%;
    height: 100%;
    padding-top: 10px; }
  .header a#logo {
    position: absolute;
    top: 7px;
    z-index: 989;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .header a#logo img {
      width: 128px; }
  .header a.social {
    float: right;
    margin-right: 8px;
    text-align: center;
    color: #c90000;
    background: #ffffff;
    width: 26px;
    height: 26px;
    line-height: 30px;
    -moz-border-radius: 26px;
    -webkit-border-radius: 26px;
    -ms-border-radius: 26px;
    border-radius: 26px; }
  .header .mobile-icon {
    float: right; }
    .header .mobile-icon .fa {
      display: inline-block;
      color: #ffffff;
      text-align: center;
      width: 26px;
      height: 26px;
      line-height: 26px;
      border: 1px solid #ffffff;
      -moz-border-radius: 26px;
      -webkit-border-radius: 26px;
      -ms-border-radius: 26px;
      border-radius: 26px; }
    .header .mobile-icon .fa-close {
      display: none; }
    .header .mobile-icon.active .fa-bars {
      display: none; }
    .header .mobile-icon.active .fa-close {
      display: block; }
  .header #searchform {
    display: none; }

/*********************
NAVIGATION 
*********************/
#desktop-menu {
  display: none; }

#mobile-menu {
  display: block;
  position: fixed;
  bottom: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 990;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.7); }
  #mobile-menu.active {
    top: 47px; }
  #mobile-menu ul {
    position: relative;
    margin: 0;
    list-style: none;
    height: auto;
    padding: 40px 13% 20px;
    z-index: 10;
    background: #9c0928;
    border-bottom: 2px solid #d2b887; }
    #mobile-menu ul li {
      border-top: 1px solid #d2b887;
      font-family: "Lato", sans-serif;
      font-style: italic;
      font-weight: 600;
      font-size: 15px; }
      #mobile-menu ul li:first-child {
        border: none; }
      #mobile-menu ul li &gt; a {
        display: block;
        padding: 8px 0;
        text-decoration: none;
        color: #ffffff; }
      #mobile-menu ul li ul.sub-menu {
        padding: 0;
        border: none; }
        #mobile-menu ul li ul.sub-menu li {
          padding-left: 15px; }

/*********************
POPUPS
*********************/
div.overlay {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998; }
  div.overlay.active {
    display: block; }

div.popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 40px 20px 20px;
  background: #ffffff;
  text-align: center;
  width: 90%;
  max-width: 730px;
  height: 400px;
  z-index: 999;
  overflow-y: scroll;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  /*
	.container {
  		position: absolute;
  		top: 0;
  		left: 0;
		padding: 40px 20px 20px;
		background: green;
		overflow: scroll;
		//height: 200px;
		@include border-radius(10px);
	}*/ }
  div.popup.active {
    display: block; }
  div.popup#popup-3 {
    padding: 0; }
    div.popup#popup-3 hr {
      width: 90%;
      margin: 15px auto 20px; }
    div.popup#popup-3 .container-top {
      padding: 20px 20px 20px;
      background: url(img/piet.png) right -20px top no-repeat; }
    div.popup#popup-3 .container-bottom {
      background: url(img/staf.png) left -40px bottom -80px no-repeat;
      background-size: 100px auto; }
      div.popup#popup-3 .container-bottom .top {
        padding: 20px 20px 0;
        background-image: url(img/boek-sint.png), url(img/cadeautje.png);
        background-position: left -30px top, right -20px top;
        background-repeat: no-repeat;
        background-size: 50px auto; }
      div.popup#popup-3 .container-bottom .bottom {
        padding: 20px 20px 20px; }
  div.popup .close-popup {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: #c90000;
    cursor: pointer;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    z-index: 999; }
    div.popup .close-popup:hover {
      background: #812051; }
  div.popup p {
    margin: 0 0 20px; }
  div.popup img {
    max-width: 100%; }
  div.popup hr {
    width: 100%;
    height: 1px;
    margin: 15px 0 20px;
    background: url(img/dashed-border.png) repeat-x;
    border: none; }
  div.popup span.list-item {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin: 0 2px 0 5px;
    text-align: center;
    color: #ffffff;
    background: #be3b7c;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px; }

/*********************
BANNERS
*********************/
.banners {
  z-index: 988;
  margin-top: 47px;
  display: block;
  overflow: hidden; }
  .banners .item {
    outline: none; }
    .banners .item img {
      width: 100%;
      height: auto; }
  .banners img.desktop {
    display: none; }
  .banners ul.slick-dots {
    display: none !important; }

#banners {
  /*
	.item {
		position: relative;
		height: 360px;
		background-size: 480px;
		background-position: center 0;
		background-repeat: no-repeat;
		@include transition(all 0.2s ease-in-out);
	}*/ }

/*********************
OVERZICHT BESTELLEN
*********************/
.tekst-bestellen {
  margin-bottom: 30px; }

.overzicht-bestellen {
  margin-bottom: 0px; }
  .overzicht-bestellen .item {
    margin-top: 50px; }
    .overzicht-bestellen .item:first-child {
      margin-top: 0; }
    .overzicht-bestellen .item img {
      max-width: 100%;
      margin-bottom: 5px; }
    .overzicht-bestellen .item h3 {
      font-size: 18px;
      line-height: 25px;
      margin: 0 auto 5px; }
    .overzicht-bestellen .item a {
      display: block;
      text-decoration: none;
      background: #812051;
      color: white;
      font-family: "Lato", sans-serif;
      font-size: 18px;
      height: 52px;
      line-height: 52px;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      -ms-border-radius: 10px;
      border-radius: 10px; }
      .overzicht-bestellen .item a strong {
        font-family: "blackoreregular", sans-serif; }
      .overzicht-bestellen .item a:hover {
        background: #a9cfbd; }
  .overzicht-bestellen.chocoladeletters .item img {
    padding: 0 25px 15px;
    background: url(img/bg-chocoladeletters-overzicht.png) no-repeat center bottom;
    background-size: 100% auto; }
		
	.bestelKnop a{
		display: block; height: 50px; max-width: 600px; width: 100%; margin: 0 auto 30px;
		background: #812051;
		font-family: "Lato", sans-serif; font-size: 18px; color: white; line-height: 52px; text-decoration: none;
		-moz-border-radius: 10px; -webkit-border-radius: 10px; -ms-border-radius: 10px; border-radius: 10px;	
	}
	
	.bestelKnop a strong{
		font-family: "blackoreregular", sans-serif;
	}
	
	.bestelKnop a:hover{
		background: #a9cfbd;
	}


/*********************
CALL TO ACTION BUTTONS
*********************/
.call-to-action {
  position: relative;
  width: 75%;
  margin: 0 auto 40px;
  z-index: 989; }
  .call-to-action .item {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    vertical-align: bottom;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .call-to-action .item div.niet-actief {
      opacity: 0.2; }
    .call-to-action .item a {
      color: #812051;
      text-decoration: none; }
    .call-to-action .item .overlay-c2a {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 800; }
      .call-to-action .item .overlay-c2a h4 {
        position: absolute;
        width: 100%;
        top: 40%;
        font-size: 30px;
        line-height: 35px;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -ms-transform: rotate(-20deg);
        /* IE 9 */
        -webkit-transform: rotate(-20deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-20deg);
        font-family: "djb_messy_amanda_goes_boldRg", sans-serif; }
    .call-to-action .item h3 {
      font-size: 18px;
      line-height: 21px;
      font-family: "blackoreregular", sans-serif; }
      .call-to-action .item h3 span {
        display: block;
        font-size: 31px;
        font-family: "djb_messy_amanda_goes_boldRg", sans-serif; }
        .call-to-action .item h3 span b {
          font-size: 25px;
          font-family: "blackoreregular", sans-serif; }
    .call-to-action .item img {
      margin: -30px 0 0 0;
      max-width: 100%; }
    .call-to-action .item .btn {
      display: block;
      position: relative;
      margin: -20px auto 0; }
      .call-to-action .item .btn span.prijs {
        display: block; }
      .call-to-action .item .btn.prijs {
        font-size: 14px;
        padding-top: 11px; }
        .call-to-action .item .btn.prijs span.price {
          display: block;
          position: absolute;
          top: 28px;
          width: 100%;
          font-size: 13px;
          font-family: "allerregular", sans-serif; }

/*********************
POSTS &amp; CONTENT
*********************/
#content {
  padding-top: 0;
  text-align: center; }
  #content.home {
    margin-top: -7px;
    padding-top: 0;
    padding-bottom: 30px; }

/* entry content */
.entry-content {
  padding: 0;
  /**/
  /*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/ }
  .entry-content p {
    margin: 0 0 25px;
    z-index: 2; }
  .entry-content ul, .entry-content ol {
    margin: 0 0 25px; }
  .entry-content ul {
    position: relative;
    padding: 0 10px;
    margin-bottom: 25px; }
    .entry-content ul li {
      position: relative;
      text-align: left;
      padding-left: 20px;
      margin-top: 12px; }
      .entry-content ul li:first-child {
        margin-top: 0; }
      .entry-content ul li:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 6px;
        left: 0;
        text-align: center;
        color: #812051;
        width: 10px;
        height: 10px;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        -ms-border-radius: 50px;
        border-radius: 50px;
        background: #a9cfbd; }
      .entry-content ul li em {
        display: block;
        margin-top: 20px;
        margin-left: -10px; }
  .entry-content ol {
    position: relative;
    padding: 0 10px;
    margin-bottom: 25px;
    counter-reset: my-counter; }
    .entry-content ol li {
      position: relative;
      text-align: left;
      padding-left: 37px;
      margin-top: 12px; }
      .entry-content ol li:first-child {
        margin-top: 0; }
      .entry-content ol li:before {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        color: #ffffff;
        width: 25px;
        height: 25px;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        -ms-border-radius: 50px;
        border-radius: 50px;
        background: #a9cfbd;
        content: counter(my-counter);
        counter-increment: my-counter; }
      .entry-content ol li em {
        font-size: 13px; }
  .entry-content img {
    margin: 0 0 20px 0;
    max-width: 100%;
    height: auto; }
  .entry-content .banner_eigenletter_bestel img {
    margin: 0; }
  .entry-content .banner_eigenletter_bestel p {
    font-style: italic;
    font-size: 12px;
    margin: 0; }
  .entry-content .banner_eigenreep_bestel,
  .entry-content .banner_letter_bestel {
    margin-top: -40px;
    position: relative; }
    .entry-content .banner_eigenreep_bestel span,
    .entry-content .banner_letter_bestel span {
      position: absolute;
      display: block;
      right: 4%;
      bottom: 1%; }
  .entry-content .btn-bestel {
    margin-top: -20px; }
    .entry-content .btn-bestel img {
      margin: 0; }
  .entry-content .widget-gekocht p {
    margin: 0; }
  .entry-content .banner-btn {
    display: block;
    cursor: pointer;
    color: #ffffff; }
    .entry-content .banner-btn img {
      width: 120%;
      max-width: initial;
      margin-left: -10%; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }

/*********************
FOOTER
*********************/
.footer {
  height: 85px;
  clear: both;
  font-family: "Lato", sans-serif;
  font-style: italic;
  color: #ffffff;
  border-top: 1px solid #d2b887;
  background: #be0a30;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#9c0928, #be0a30);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#9c0928, #be0a30);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#9c0928, #be0a30);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#9c0928, #be0a30);
  /* Standard syntax */ }
  .footer #footer-desktop {
    display: none; }
  .footer a {
    display: block;
    color: #ffffff;
    text-decoration: none; }
    .footer a:hover {
      color: #d2b887; }

/*********************
LARGER MOBILE DEVICES
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
  /*********************
NAVIGATION STYLES
*********************/
  /*********************
BANNERS
*********************/
  /*********************
CALL TO ACTION BUTTONS
*********************/
  #call-to-action {
    width: 100%;
    text-align: center; }
    #call-to-action .item {
      position: relative;
      width: 45%;
      display: inline-block;
      margin-bottom: 20px; }
      #call-to-action .item .btn.prijs span.price {
        top: 26px; }
  /*********************
POSTS &amp; CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  /*********************
FOOTER 
*********************/ }

/*********************
TABLET &amp; SMALLER LAPTOPS
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tablet &amp; Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    overflow-x: hidden !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
    body div.bg-item {
      position: absolute;
      background-repeat: no-repeat;
      background-position: center center;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      z-index: -1; }
    body.thema-standaard {
      background: #ffffff; }
      body.thema-standaard div.bg-item.item-1 {
        right: -16%;
        top: 5%;
        width: 164px;
        height: 222px;
        background-image: url(img/themas/standaard/1.png); }
      body.thema-standaard div.bg-item.item-2 {
        left: -25%;
        top: 15%;
        width: 186px;
        height: 209px;
        background-image: url(img/themas/standaard/2.png); }
      body.thema-standaard div.bg-item.item-3 {
        right: -15%;
        top: 43%;
        width: 190px;
        height: 142px;
        background-image: url(img/themas/standaard/3.png); }
      body.thema-standaard div.bg-item.item-4 {
        left: -15%;
        top: 56%;
        width: 238px;
        height: 242px;
        background-image: url(img/themas/standaard/4.png); }
      body.thema-standaard div.bg-item.item-5 {
        right: -38%;
        bottom: 2%;
        width: 349px;
        height: 275px;
        background-image: url(img/themas/standaard/5.png); }
    body.thema-sinterklaas {
      color: #ffffff;
      background-image: url(img/themas/sinterklaas/sinterklaas-desktop.jpg); }
      body.thema-sinterklaas div.bg-item.item-1 {
        left: -20%;
        top: 23%;
        width: 278px;
        height: 369px;
        background-image: url(img/themas/sinterklaas/1.png); }
      body.thema-sinterklaas div.bg-item.item-2 {
        right: -20%;
        top: 15%;
        width: 290px;
        height: 142px;
        background-image: url(img/themas/sinterklaas/2.png); }
      body.thema-sinterklaas div.bg-item.item-3 {
        right: -20%;
        bottom: 20%;
        width: 270px;
        height: 309px;
        background-image: url(img/themas/sinterklaas/3.png); }
      body.thema-sinterklaas div.bg-item.item-4 {
        left: -15%;
        bottom: 0;
        width: 186px;
        height: 159px;
        background-image: url(img/themas/sinterklaas/4.png); }
  html.no-scroll,
  body.no-scroll {
    max-height: initial;
    overflow: initial; }
  /******************************************************************
H1, H2, H3, H4, H5
******************************************************************/
  h1, .h1 {
    font-size: 40px;
    line-height: 40px; }
  h2, .h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px; }
  h3, .h3 {
    font-size: 25px;
    line-height: 30px; }
  h4, .h4 {
    font-size: 17px; }
  * {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  /*********************
LAYOUT &amp; GRID
*********************/
  .wrap {
    width: 90%;
    max-width: 980px; }
    .wrap.big {
      max-width: 1180px; }
    .wrap.biggest {
      max-width: 1280px; }
  #page-wrap {
    flex: 1;
    min-height: 100%; }
  .d-1of2 {
    float: left;
    width: 50%;
    padding-right: 2%; }
  .last-item {
    padding-right: 0; }
  /*********************
HEADER
*********************/
  .header {
    height: 91px; }
    .header #inner-header {
      width: 90%;
      max-width: 980px; }
    .header a#logo {
      top: 15px; }
      .header a#logo img {
        width: 128px; }
    .header a.social {
      display: none; }
    .header #searchform {
      display: block;
      position: absolute;
      top: 10px;
      right: 0;
      width: 160px;
      height: 35px;
      background: #ffffff;
      -webkit-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.2);
      box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.2);
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      -ms-border-radius: 8px;
      border-radius: 8px;
      overflow: hidden; }
      .header #searchform input {
        position: relative;
        display: block;
        float: left;
        width: 130px;
        height: 35px !important;
        font-size: 12px;
        font-family: Georgia, serif;
        font-style: italic; }
      .header #searchform button {
        float: right;
        width: 30px;
        height: 100%;
        color: #c90000;
        border: none;
        background: none;
        outline: none; }
        .header #searchform button:hover {
          color: #812051; }
  /*********************
NAVIGATION
*********************/
  #desktop-menu {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0; }
    #desktop-menu ul {
      margin: 0;
      padding: 0; }
      #desktop-menu ul li {
        float: left;
        font-family: "Lato", sans-serif;
        font-style: italic;
        font-weight: 600;
        font-size: 15px;
        margin-left: 10px; }
        #desktop-menu ul li:first-child {
          margin: 0; }
        #desktop-menu ul li:last-child ul {
          right: 0; }
        #desktop-menu ul li a {
          display: block;
          padding: 5px 8px 5px;
          color: #ffffff;
          text-decoration: none;
          -webkit-border-top-left-radius: 10px;
          -webkit-border-top-right-radius: 10px;
          -moz-border-radius-topleft: 10px;
          -moz-border-radius-topright: 10px;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px; }
        #desktop-menu ul li.current-menu-ancestor &gt; a, #desktop-menu ul li.current_page_item &gt; a, #desktop-menu ul li:hover &gt; a {
          color: #c90000;
          background: #ffffff; }
        #desktop-menu ul li.current-menu-ancestor:hover ul, #desktop-menu ul li.current_page_item:hover ul, #desktop-menu ul li:hover:hover ul {
          display: block; }
        #desktop-menu ul li ul {
          display: none;
          position: absolute;
          padding: 5px 0;
          background: #ffffff;
          -webkit-border-bottom-left-radius: 10px;
          -webkit-border-bottom-right-radius: 10px;
          -moz-border-radius-bottomleft: 10px;
          -moz-border-radius-bottomright: 10px;
          border-bottom-left-radius: 10px;
          border-bottom-right-radius: 10px; }
          #desktop-menu ul li ul li {
            float: none;
            margin: 0; }
            #desktop-menu ul li ul li a {
              color: #c90000;
              background: none; }
              #desktop-menu ul li ul li a:hover {
                color: #d2b887;
                background: none; }
  #mobile-menu, .mobile-icon {
    display: none; }
  /*********************
POPUPS
*********************/
  div.popup {
    height: auto;
    max-height: 90%;
    max-width: 730px;
    padding: 40px 30px 20px; }
    div.popup .text {
      padding-top: 10px; }
    div.popup#popup-3 .container-top {
      padding: 40px 30px 20px 0;
      overflow: hidden;
      background-position: right 50px top; }
      div.popup#popup-3 .container-top img {
        float: left; }
      div.popup#popup-3 .container-top .text {
        float: left;
        width: 40%;
        padding-top: 30px; }
      div.popup#popup-3 .container-top h3 {
        font-size: 50px;
        line-height: 55px; }
      div.popup#popup-3 .container-top p {
        margin-bottom: 5px; }
    div.popup#popup-3 .container-bottom {
      background-position: left 26px bottom;
      background-size: auto; }
      div.popup#popup-3 .container-bottom .top {
        padding: 20px 20px 0;
        background-position: left 90px top 30px, right 40px top 20px;
        background-repeat: no-repeat;
        background-size: auto; }
      div.popup#popup-3 .container-bottom .bottom {
        padding: 20px 100px 20px; }
      div.popup#popup-3 .container-bottom h3 {
        font-size: 35px;
        line-height: 40px; }
      div.popup#popup-3 .container-bottom p {
        margin-bottom: 5px; }
  /*********************
BANNERS
*********************/
  .banners {
    margin-top: 91px; }
  #banners-mobile {
    display: none; }
  .banners {
    display: block; }
    .banners .item {
      -webkit-backface-visibility: hidden; }
      .banners .item img {
        width: 100%;
        height: auto; }
    .banners img.desktop {
      display: block; }
    .banners img.mobile {
      display: none; }
    .banners ul.slick-dots {
      display: block !important;
      position: absolute;
      width: 100%;
      max-width: 980px;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
      padding: 0 11px 0 0;
      text-align: right; }
      .banners ul.slick-dots li {
        display: inline-block;
        margin-left: 5px; }
        .banners ul.slick-dots li button {
          display: block;
          width: 14px;
          height: 14px;
          background: #dad7d7;
          border: none;
          outline: none;
          overflow: hidden;
          text-indent: -9999px;
          cursor: pointer;
          -moz-border-radius: 7px;
          -webkit-border-radius: 7px;
          -ms-border-radius: 7px;
          border-radius: 7px; }
        .banners ul.slick-dots li:hover button, .banners ul.slick-dots li.slick-active button {
          background: #812051; }
  /*********************
OVERZICHT BESTELLEN
*********************/
  .overzicht-bestellen {
    overflow: hidden;
    max-width: 900px;
    text-align: center; }
    .overzicht-bestellen .item {
      display: inline-block;
      width: 267px;
      margin: 0 10px 30px; }
      .overzicht-bestellen .item h3 {
        min-height: 50px; }
  /*********************
CALL TO ACTION BUTTONS
*********************/
  .call-to-action {
    max-width: initial; }
    .call-to-action .item {
      position: relative;
      width: 45%;
      display: inline-block;
      margin-bottom: 20px; }
      .call-to-action .item .btn {
        width: 240px;
        height: 83px;
        padding: 22px 0 0 0;
        font-size: 18px; }
        .call-to-action .item .btn.prijs {
          font-size: 17px;
          padding-top: 15px; }
          .call-to-action .item .btn.prijs span.price {
            top: 34px;
            font-size: 15px; }
  /*********************
POSTS &amp; CONTENT
*********************/
  #content {
    position: relative;
    padding-top: 0; }
    #content.home {
      padding-top: 20px;
      padding-bottom: 80px; }
  /* entry content */
  .entry-content {
    padding: 0 16%; }
    .entry-content p {
      margin: 0 0 30px; }
    .entry-content .banner_eigenletter_bestel {
      position: relative; }
      .entry-content .banner_eigenletter_bestel img {
        margin: 0; }
      .entry-content .banner_eigenletter_bestel p {
        position: absolute;
        right: 15px;
        bottom: 0;
        width: 44%; }
    .entry-content .banner_eigenreep_bestel {
      margin-top: -80px; }
    .entry-content .btn-bestel {
      margin-bottom: 20px; }
    .entry-content .banner_maak_eigenletter img,
    .entry-content .banner_reep_bestel img {
      max-width: initial;
      width: 110%;
      margin-left: -5%;
      margin-bottom: 0; }
    .entry-content .banner_reep_bestel {
      margin-top: -40px; }
  /*********************
FOOTER
*********************/
  .footer {
    height: auto; }
    .footer #inner-footer {
      background-image: url(img/bg-footer.png);
      background-repeat: no-repeat;
      background-position: center 0; }
    .footer #footer-mobile {
      display: none; }
    .footer #footer-desktop {
      display: block;
      padding: 30px 0;
      overflow: hidden; }
      .footer #footer-desktop ul {
        float: left;
        padding-right: 10px;
        width: 19%;
        margin: 0; }
        .footer #footer-desktop ul &gt; li {
          width: 100%;
          font-size: 13px;
          margin-top: 20px; }
          .footer #footer-desktop ul &gt; li:first-child {
            margin: 0; }
          .footer #footer-desktop ul &gt; li.menu-item-has-children {
            font-weight: 700;
            font-size: 17px; }
          .footer #footer-desktop ul &gt; li ul.sub-menu {
            float: none;
            width: 100%;
            margin: 0; }
            .footer #footer-desktop ul &gt; li ul.sub-menu li {
              margin: 0;
              padding: 3px 0;
              font-weight: 300; }
      .footer #footer-desktop #footer-tekst {
        float: left;
        width: 62%;
        padding-right: 215px; }
        .footer #footer-desktop #footer-tekst h3 {
          color: #ffffff; }
        .footer #footer-desktop #footer-tekst p {
          margin: 0;
          font-size: 13px; } }

/*********************
DESKTOP
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  body.thema-standaard div.bg-item.item-1 {
    right: -16%;
    top: 10%; }
  body.thema-standaard div.bg-item.item-2 {
    left: -16%;
    top: 24%; }
  body.thema-standaard div.bg-item.item-3 {
    right: -12%;
    top: 50%; }
  body.thema-standaard div.bg-item.item-4 {
    left: -12%;
    top: 60%; }
  body.thema-standaard div.bg-item.item-5 {
    right: -20%; }
  body.thema-sinterklaas div.bg-item.item-1 {
    left: -15%;
    top: 30%; }
  body.thema-sinterklaas div.bg-item.item-2 {
    right: -20%;
    top: 22%; }
  body.thema-sinterklaas div.bg-item.item-3 {
    right: -20%;
    bottom: 20%; }
  body.thema-sinterklaas div.bg-item.item-4 {
    left: -8%;
    bottom: -2%; }
  /*********************
HEADER
*********************/
  .header a#logo img {
    width: 254px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  /*********************
HOMEPAGINA
*********************/
  .call-to-action .item h3 {
    font-size: 22px;
    line-height: 26px; }
    .call-to-action .item h3 span {
      font-size: 39px; }
      .call-to-action .item h3 span b {
        font-size: 32px; }
  .call-to-action .item .btn {
    width: 210px;
    height: 72px;
    padding: 19px 0 0 0;
    font-size: 16px; }
  /*********************
CALL TO ACTION BUTTONS
*********************/
  .call-to-action {
    max-width: initial;
    width: 120%;
    margin-left: -10%; }
    .call-to-action .item {
      width: 22%;
      margin: 0 1%; }
      .call-to-action .item .btn.prijs {
        font-size: 16px;
        padding-top: 13px; }
        .call-to-action .item .btn.prijs span.price {
          top: 30px;
          font-size: 14px; }
  /*********************
OVERZICHT BESTELLEN
*********************/
  .overzicht-bestellen {
    overflow: hidden; }
    .overzicht-bestellen .item {
      width: 23.4%;
      margin: 0 0 40px 1.7%; }
      .overzicht-bestellen .item:nth-child(4n+1) {
        margin-left: 0; }
  /*********************
POPUPS
*********************/
  div.popup a.btn {
    width: 250px;
    height: 91px;
    padding: 20px 10px 0 0;
    font-size: 21px; }
  /*********************
NAVIGATION
*********************/
  #desktop-menu ul li a {
    display: block;
    padding: 5px 12px 5px; }
  #desktop-menu ul li ul li a {
    padding: 8px 12px; }
  /*********************
POSTS &amp; CONTENT
*********************/
  #content.home {
    margin-top: 20px; }
  /* entry content */
  .entry-content {
    padding: 0 12.6%; }
    .entry-content ul {
      padding: 0 10%; }
    .entry-content ol {
      padding: 0 10%; }
      .entry-content ol li {
        padding: 2px 0 0 42px; }
        .entry-content ol li:before {
          width: 28px;
          height: 28px;
          -moz-border-radius: 50px;
          -webkit-border-radius: 50px;
          -ms-border-radius: 50px;
          border-radius: 50px; }
    .entry-content a.btn {
      width: 230px;
      height: 79px;
      padding: 20px 0 0 0;
      font-size: 19px; }
    .entry-content .widget-gekocht {
      /*
			text-align: left;
			.text {
				float: left;
				width: 66%;
			}
			p {
				margin: 0;
			}
			.btn-bestel {
				float: right;
				width: 33%;
				margin-top: -50px;
			}
			a.btn {
				text-align: center;
			}*/ }
    .entry-content .banner-btn img {
      max-width: 859px; }
    .entry-content .banner_eigenreep_bestel,
    .entry-content .banner_letter_bestel {
      margin-top: -60px; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  body {
    /*
	&amp;.thema-standaard {
  		div.bg-item {
  			&amp;.item-1 {
  				right: -25%;
  				top: 20px;
  			}
  			&amp;.item-2 {
  				left: -15%;
  				top: 220px;
  			}
  			&amp;.item-3 {
  				top: 388px;
  			}
  		}
  	}*/ }
  /*********************
POPUPS
*********************/
  div.popup {
    height: auto; }
  /*********************
BANNERS
*********************/
  .banners ul.slick-dots {
    bottom: 10px; }
  /*********************
HOMEPAGINA
*********************/
  .call-to-action {
    width: 1100px;
    left: 50%;
    margin-left: -550px; }
    .call-to-action .item .btn {
      width: 240px;
      height: 83px;
      padding-top: 22px; }
      .call-to-action .item .btn.prijs {
        font-size: 16px;
        padding-top: 15px; }
        .call-to-action .item .btn.prijs span.price {
          top: 33px;
          font-size: 14px; } }
</pre></body></html>