/****** FILE: mysite/css/third-party/photoswipe/photoswipe.css *****/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }


/****** FILE: mysite/css/third-party/photoswipe/default-skin.css *****/
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }


/****** FILE: mysite/css/third-party/lity.min.css *****/
/*! Lity - v1.6.6 - 2016-04-22
* http://sorgalla.com/lity/
* Copyright (c) 2016 Jan Sorgalla; Licensed MIT */.lity{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;white-space:nowrap;background:#0b0b0b;background:rgba(0,0,0,0.9);outline:none !important;opacity:0;-webkit-transition:opacity .3s ease;-o-transition:opacity .3s ease;transition:opacity .3s ease}.lity.lity-opened{opacity:1}.lity.lity-closed{opacity:0}.lity *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lity-wrap{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;text-align:center;outline:none !important}.lity-wrap:before{content:'';display:inline-block;height:100%;vertical-align:middle;margin-right:-0.25em}.lity-loader{z-index:9991;color:#fff;position:absolute;top:50%;margin-top:-0.8em;width:100%;text-align:center;font-size:14px;font-family:Arial,Helvetica,sans-serif;opacity:0;-webkit-transition:opacity .3s ease;-o-transition:opacity .3s ease;transition:opacity .3s ease}.lity-loading .lity-loader{opacity:1}.lity-container{z-index:9992;position:relative;text-align:left;vertical-align:middle;display:inline-block;white-space:normal;max-width:100%;max-height:100%;outline:none !important}.lity-content{z-index:9993;width:100%;-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .3s ease;-o-transition:-o-transform .3s ease;transition:transform .3s ease}.lity-loading .lity-content,.lity-closed .lity-content{-webkit-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}.lity-content:after{content:'';position:absolute;left:0;top:0;bottom:0;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.6);box-shadow:0 0 8px rgba(0,0,0,0.6)}.lity-close{z-index:9994;width:55px;height:55px;position:fixed;right:0;top:0;-webkit-appearance:none;cursor:pointer;text-decoration:none;text-align:center;padding:0;color:#fff;font-style:normal;font-size:35px;font-family:Arial,Baskerville,monospace;line-height:35px;text-shadow:0 1px 2px rgba(0,0,0,0.6);border:0;background:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.lity-close::-moz-focus-inner{border:0;padding:0}.lity-close:hover,.lity-close:focus,.lity-close:active,.lity-close:visited{text-decoration:none;text-align:center;padding:0;color:#fff;font-style:normal;font-size:35px;font-family:Arial,Baskerville,monospace;line-height:35px;text-shadow:0 1px 2px rgba(0,0,0,0.6);border:0;background:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.lity-close:active{top:1px}.lity-image img{max-width:100%;display:block;line-height:0;border:0}.lity-iframe .lity-container{width:100%;max-width:964px}.lity-iframe-container{width:100%;height:0;padding-top:56.25%;overflow:auto;pointer-events:auto;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-overflow-scrolling:touch}.lity-iframe-container iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.6);box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}.lity-hide{display:none}

/****** FILE: themes/klant/css/combined-theme.css *****/
@charset "UTF-8";
@font-face {
  font-family: 'freeride';
  src: url("../fonts/Freeride.ttf.woff") format("woff"), url("../fonts/Freeride.ttf.svg#Freeride") format("svg"), url("../fonts/Freeride.ttf.eot");
  font-weight: normal;
  font-style: normal; }
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%); }
  50% {
    -webkit-transform: translateY(8%); }
  65% {
    -webkit-transform: translateY(-4%); }
  80% {
    -webkit-transform: translateY(4%); }
  95% {
    -webkit-transform: translateY(-2%); }
  100% {
    -webkit-transform: translateY(0%); } }
@-moz-keyframes slide-down {
  0% {
    -moz-transform: translateY(-100%); }
  50% {
    -moz-transform: translateY(8%); }
  65% {
    -moz-transform: translateY(-4%); }
  80% {
    -moz-transform: translateY(4%); }
  95% {
    -moz-transform: translateY(-2%); }
  100% {
    -moz-transform: translateY(0%); } }
@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }
  50% {
    -webkit-transform: translateY(8%);
    -moz-transform: translateY(8%);
    -ms-transform: translateY(8%);
    -o-transform: translateY(8%);
    transform: translateY(8%); }
  65% {
    -webkit-transform: translateY(-4%);
    -moz-transform: translateY(-4%);
    -ms-transform: translateY(-4%);
    -o-transform: translateY(-4%);
    transform: translateY(-4%); }
  80% {
    -webkit-transform: translateY(4%);
    -moz-transform: translateY(4%);
    -ms-transform: translateY(4%);
    -o-transform: translateY(4%);
    transform: translateY(4%); }
  95% {
    -webkit-transform: translateY(-2%);
    -moz-transform: translateY(-2%);
    -ms-transform: translateY(-2%);
    -o-transform: translateY(-2%);
    transform: translateY(-2%); }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%); } }
@-webkit-keyframes bounce {
  1%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  35% {
    -webkit-transform: translateY(-15px); }
  60% {
    -webkit-transform: translateY(-5px); } }
@-moz-keyframes bounce {
  1%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0); }
  35% {
    -moz-transform: translateY(-15px); }
  60% {
    -moz-transform: translateY(-5px); } }
@keyframes bounce {
  1%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  35% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px); }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px); } }
@-webkit-keyframes keyframe__photo-zoom {
  0% {
    -webkit-transform: none; }
  100% {
    -webkit-transform: scale(1.25) translate(-10%, 5%); } }
@-moz-keyframes keyframe__photo-zoom {
  0% {
    -moz-transform: none; }
  100% {
    -moz-transform: scale(1.25) translate(-10%, 5%); } }
@keyframes keyframe__photo-zoom {
  0% {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; }
  100% {
    -webkit-transform: scale(1.25) translate(-10%, 5%);
    -moz-transform: scale(1.25) translate(-10%, 5%);
    -ms-transform: scale(1.25) translate(-10%, 5%);
    -o-transform: scale(1.25) translate(-10%, 5%);
    transform: scale(1.25) translate(-10%, 5%); } }
* {
  box-sizing: border-box; }

html, body {
  height: 100%;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  color: #000; }
  @media (max-width: 600px) {
    html, body {
      font-size: 15px; } }

html {
  overflow-y: auto; }

body {
  margin: 0;
  background: #fff;
  position: relative;
  min-height: 100%; }

.lock-down {
  overflow: hidden !important; }

::-moz-selection {
  background-color: #f42f38;
  color: #fff; }

::selection {
  background-color: #f42f38;
  color: #fff; }

h1, h2, h3, h4, h5, h6 {
  text-rendering: auto;
  margin: 0;
  font-size: inherit;
  font-weight: inherit; }

a {
  color: inherit;
  text-decoration: inherit; }

p {
  margin: initial; }

.grid {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -30px;
  justify-content: center; }

.grid--justify-start {
  justify-content: flex-start; }

.grid--justify-s-between {
  justify-content: space-between; }

.grid__item {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 30px; }

.grid__item--grow {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1; }

.grid__item--250 {
  -webkit-flex-basis: 250px;
  -moz-flex-basis: 250px;
  flex-basis: 250px;
  -ms-flex-preferred-size: 250px; }

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

.text-uppercase {
  text-transform: uppercase; }

.text--description {
  font-style: italic;
  font-size: .7em; }

.text--small {
  font-size: .7em; }

.text--highlight {
  font-style: italic;
  color: #7b491e; }

.text-col {
  margin-top: 1em;
  columns: 300px 4;
  column-gap: 30px; }
  .text-col > p:first-of-type {
    margin-top: 0; }

.bad {
  color: red; }

.good {
  color: green; }

ul, ol {
  padding-left: 1em; }

.hidden {
  display: none; }

.bold {
  font-weight: bold; }

/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.typography {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  color: #000;
  /* LINK ICONS - shows type of file --------------------------- */
  /* TABLE STYLING --------------------------------------------- */
  /* WYSIWYG EDITOR ALIGNMENT CLASSES -------------------------- */
  /* IMAGES ---------------------------------------------------- */ }
  @media (max-width: 600px) {
    .typography {
      font-size: 15px; } }
  .typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6 {
    text-rendering: auto;
    margin: 0;
    font-size: inherit;
    font-weight: inherit; }
  .typography h1 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    line-height: 1.333em;
    font-weight: bold; }
  .typography h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.375rem;
    line-height: 1.222em;
    font-weight: bold;
    margin-top: 1.567em; }
  .typography h3, .typography h4 {
    margin-top: 1.421em;
    font-weight: bold; }
  .typography a {
    color: #e40c16;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    transition: color 0.2s ease; }
    .typography a:hover, .typography a:focus {
      color: #ec0007; }
  .typography p {
    margin: 1.05em 0; }
  .typography ul, .typography ol {
    padding-left: 1em; }
    .typography ul li, .typography ol li {
      padding-left: 1em; }
      .typography ul li:not(:last-child), .typography ol li:not(:last-child) {
        margin-bottom: .1em; }
  .typography h3 + p {
    margin-top: 0; }
  .typography blockquote {
    color: #7b491e;
    margin: 0.829em 0;
    padding-right: 1em; }
  .typography .captionImage {
    font-size: .842rem;
    line-height: 1.375em;
    margin-top: 1.316rem;
    margin-bottom: 3.158rem;
    width: auto !important; }
    .typography .captionImage .caption {
      margin-top: .563em; }
  .typography a[href$=".pdf"],
  .typography a[href$=".PDF"],
  .typography a.pdf {
    padding: 2px 2px 2px 20px;
    background: url("../images/icons/page_white_acrobat.png") no-repeat left center; }
  .typography a[href$=".docx"],
  .typography a[href$=".doc"],
  .typography a[href$=".DOC"],
  .typography a.doc {
    padding: 2px 2px 2px 20px;
    background: url("../images/icons/page_word.png") no-repeat left center; }
  .typography a[href$=".xlsx"],
  .typography a[href$=".xls"],
  .typography a[href$=".XLS"],
  .typography a.xls {
    padding: 2px 2px 2px 20px;
    background: url("../images/icons/page_excel.png") no-repeat left center; }
  .typography a[href$=".gz"],
  .typography a[href$=".GZ"],
  .typography a[href$=".gzip"],
  .typography a[href$=".GZIP"],
  .typography a[href$=".zip"],
  .typography a[href$=".ZIP"],
  .typography a.archive {
    padding: 2px 2px 2px 20px;
    background: url("../images/icons/page_white_zip.png") no-repeat left center; }
  .typography a[href$=".exe"],
  .typography a[href$=".EXE"],
  .typography a.application {
    padding: 2px 2px 2px 20px;
    background: url("../images/icons/application.png") no-repeat left center; }
  .typography table {
    margin: 0 0 18px 0;
    border-collapse: collapse; }
  .typography td {
    padding: 5px;
    border: 1px solid #e40c16; }
  .typography .left {
    text-align: left; }
  .typography .center {
    text-align: center; }
  .typography .right {
    text-align: right; }
  .typography div.right {
    float: right;
    margin-left: 20px;
    width: auto; }
  .typography div.left {
    float: left;
    margin-right: 20px;
    width: auto; }
  .typography img {
    border: none;
    width: auto !important;
    height: auto !important;
    display: block;
    max-width: 100%;
    height: auto; }
    .typography img.left {
      float: left;
      margin: 10px 20px 20px 0; }
    .typography img.right {
      float: right;
      margin: 10px 0 20px 20px; }
    .typography img.leftAlone {
      display: block; }
    .typography img.center {
      float: none;
      margin-left: auto;
      margin-right: auto;
      display: block; }
  @media (max-width: 500px) {
    .typography img.left, .typography img.right {
      float: none;
      padding: 10px;
      display: block;
      margin: 30px auto; } }

.logo {
  display: table;
  font-family: "freeride";
  color: #fff;
  line-height: 1em; }

.icon {
  position: relative;
  font-size: 1em;
  width: 1em;
  height: 1em;
  position: relative;
  color: #fff; }
  .icon:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%; }
  .icon > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .icon svg {
    width: 100%;
    height: 100%; }
    .icon svg * {
      fill: currentColor; }

.icon--dashed {
  border: .04em dashed currentColor;
  border-radius: 50%; }
  .icon--dashed svg {
    padding: .18em; }

.icon--medium-sized {
  font-size: 150px; }

.icon__badge {
  position: absolute;
  top: -.2em;
  right: -.4em;
  left: auto;
  background: #e40c16;
  color: #fff;
  border-radius: 50%;
  width: 1.6em;
  height: 1.6em;
  font-size: 0.25em;
  text-align: center;
  line-height: 1.6em;
  font-family: "Lato", sans-serif; }

.btn, input[type="submit"] {
  display: table;
  border: .15em solid;
  padding: 0.45em 1.2em;
  border-top-left-radius: .4em;
  border-bottom-right-radius: .4em;
  font-family: "Playfair Display", serif;
  font-weight: bold;
  line-height: 1em;
  color: #e40c16;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.3s ease 0s, border 0.3s ease 0s;
  -moz-transition: background 0.3s ease 0s, border 0.3s ease 0s;
  transition: background 0.3s ease 0s, border 0.3s ease 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:hover, input[type="submit"]:hover {
    background: #e40c16;
    color: #fff;
    border-color: #e40c16; }

.btn--inverted {
  color: #fff; }
  .btn--inverted:hover {
    background: #fff;
    color: #e40c16;
    border-color: #fff; }

.btn--filled, input[type="submit"] {
  color: #fff;
  background: #e40c16;
  border-color: #e40c16; }
  .btn--filled:hover, input[type="submit"]:hover {
    background: #ec0007;
    border-color: #ec0007; }

.btn--centered {
  display: table;
  margin-left: auto;
  margin-right: auto; }

.btn--cart {
  position: relative;
  background: #e40c16;
  color: #fff;
  border: none;
  padding: 0.6em 1.35em;
  padding-left: 3.25em;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  transition: background 0.2s ease; }
  .btn--cart:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.2em;
    height: 2.2em;
    background: url("../images/svg/cart.svg") no-repeat center center;
    background-size: 1.3em;
    content: " "; }
  .btn--cart:hover {
    background: #ec0007; }
    .btn--cart:hover:after {
      -webkit-transition: margin 0.2s ease-out;
      -moz-transition: margin 0.2s ease-out;
      transition: margin 0.2s ease-out;
      margin-left: .5em; }

.btn--cart-active, .btn--cart-active:hover {
  color: transparent !important; }
  .btn--cart-active:after, .btn--cart-active:hover:after {
    -webkit-transition: left 0.5s ease-out;
    -moz-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
    left: 100%; }

.btn-group {
  margin-top: 1.5em; }

.btn-text {
  display: inline-block;
  color: #e40c16;
  margin: 0 1.2em;
  padding-bottom: .2em;
  border-bottom: 2px dotted transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease; }
  .btn-text:hover {
    color: #ec0007;
    border-color: #ec0007; }

.hero {
  position: relative;
  margin-bottom: 25px; }

.hero__logo {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 170px;
  top: -1.3em; }
  .hero__logo .logo {
    margin-left: auto;
    margin-right: auto; }

.hero__image-wrapper {
  height: 33vw;
  min-height: 570px; }

.hero__image-wrapper--small {
  height: 106px;
  min-height: 0; }

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover"; }

.hero__img-logo {
  position: absolute;
  left: 20px;
  bottom: -60px;
  display: block;
  z-index: 2;
  -webkit-transform: rotate(-19deg);
  -moz-transform: rotate(-19deg);
  -ms-transform: rotate(-19deg);
  -o-transform: rotate(-19deg);
  transform: rotate(-19deg); }
  .hero__img-logo img {
    width: 150px;
    height: 150px;
    display: block; }

.hero__content {
  position: relative;
  max-width: 880px;
  min-height: 300px;
  margin-top: -15%;
  margin-left: auto;
  margin-right: auto;
  background: #e40c16;
  padding: 1.5em;
  color: #fff;
  border-radius: 20px; }

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.333em;
  font-weight: bold;
  font-size: 32px;
  text-align: center; }

.hero__cta {
  font-size: 22px;
  margin: 40px auto 0;
  display: table; }

.hero__arrow {
  font-size: 250px;
  position: absolute;
  top: -32%;
  left: -17%;
  -webkit-transform: rotate(17deg);
  -moz-transform: rotate(17deg);
  -ms-transform: rotate(17deg);
  -o-transform: rotate(17deg);
  transform: rotate(17deg); }

.hero__payoff {
  position: absolute;
  left: 0;
  top: 20px;
  padding: .5em 1.4em;
  background: #e40c16;
  color: #fff; }

@media (max-width: 1100px) {
  .hero__arrow {
    font-size: 180px;
    top: -19%;
    left: -5%; }

  .hero__payoff {
    max-width: 290px; } }
@media (max-width: 991px) {
  .hero__logo {
    font-size: 130px; }

  .hero__arrow {
    display: none; } }
@media (max-width: 910px) {
  .hero__content {
    margin-left: 30px;
    margin-right: 30px; }

  .hero__image-wrapper--big {
    min-height: 450px; } }
@media (max-width: 700px) {
  .hero__logo {
    font-size: 70px; }

  .hero__image-wrapper--big {
    min-height: 300px; }

  .hero__payoff {
    display: none; } }
@media (max-width: 450px) {
  .hero__image-wrapper--big {
    height: 30vh;
    min-height: 250px; }

  .hero__content {
    margin-left: 15px;
    margin-right: 15px; }

  .hero__logo {
    font-size: 55px; }

  .hero__title {
    font-size: 22px; } }
.decoration svg {
  display: block;
  margin: 0 auto; }
  .decoration svg * {
    fill: #e40c16; }

.decoration--secondary-color svg * {
  fill: #7b491e; }

.decoration--extra-space {
  margin-top: 40px;
  margin-bottom: 40px; }

.decoration--left svg {
  margin-left: 0; }

.decoration--right svg {
  margin-right: 0; }

.card {
  background: #e40c16;
  color: #fff;
  padding: 3em;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em; }

.card--light {
  background: #fee8e1;
  color: #606060; }

@media (max-width: 767px) {
  .card {
    padding: 1.5em; } }
.tag {
  padding: .2em 1em;
  color: #7b491e !important;
  background: #ece5df;
  text-transform: uppercase;
  border-radius: .5em;
  font-size: 0.75em; }

a.tag:hover {
  color: #e40c16 !important; }

.tag-list {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0; }

.tag-list__item {
  margin-right: 7px;
  margin-bottom: 7px; }

.nav-icon__bar {
  width: 25px;
  height: 3px;
  background: currentColor;
  display: block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .nav-icon__bar:not(:last-child) {
    margin-bottom: 4px; }

.nav-icon--open {
  color: #606060; }
  .nav-icon--open .nav-icon__bar {
    position: relative; }
    .nav-icon--open .nav-icon__bar:nth-child(1) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      margin-top: -2px; }
    .nav-icon--open .nav-icon__bar:nth-child(2) {
      background-color: transparent; }
    .nav-icon--open .nav-icon__bar:nth-child(3) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      margin-top: -14px; }

.main-nav {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  padding-left: 20px;
  padding-right: 20px;
  height: 106px; }

.main-nav__logo {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
  font-size: 5.5em; }
  .main-nav__logo a {
    display: table; }

.main-nav__menu {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  line-height: 1em;
  padding: 1em 2em;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center; }

.main-nav__mobile-icon {
  display: none;
  margin-right: 15px; }

.main-nav--overlay {
  color: #fff;
  position: absolute;
  width: 100%;
  z-index: 400; }

.main-nav__item {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-transform: lowercase; }
  .main-nav__item:not(:first-child) {
    margin-left: 1rem; }
  .main-nav__item:not(:last-child) {
    margin-right: 1rem; }
  .main-nav__item:after {
    margin-top: .2em;
    height: .2em;
    display: block;
    width: 100%;
    content: " ";
    background: linear-gradient(to left, transparent 51%, #e40c16 50%);
    background-size: 201% 100%;
    background-position: 99%;
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out; }
  .main-nav__item:hover:after {
    background-position: 0; }

.main-nav__item--current:after, .main-nav__item--section:after {
  background-position: 0; }

.main-nav__cart {
  font-size: 70px; }
  .main-nav__cart svg {
    -webkit-transition: -webkit-transform 0.15s ease-in;
    -moz-transition: -moz-transform 0.15s ease-in;
    transition: transform 0.15s ease-in; }
  .main-nav__cart:hover svg {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03); }
  .main-nav__cart:after {
    display: none; }

@media (max-width: 1024px) {
  .main-nav__item:not(:first-child) {
    margin-left: .5rem; }
  .main-nav__item:not(:last-child) {
    margin-right: .5rem; } }
@media (max-width: 767px) {
  .main-nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #000;
    z-index: 900;
    text-align: center;
    font-size: 1.5em;
    padding-top: 4.5em; }

  .main-nav__item {
    display: table;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: .7em; }
    .main-nav__item:after {
      display: none; }

  .main-nav__item--current, .main-nav__item--section {
    color: #e40c16; }

  .main-nav__menu--open {
    display: block; }

  .main-nav__mobile-icon {
    display: block;
    position: relative;
    z-index: 901; }

  .main-nav__cart {
    position: relative;
    z-index: 901; }

  .main-nav__menu--open + .main-nav__cart .icon {
    color: #606060; } }
@media (max-width: 1150px) {
  .main-nav__logo {
    font-size: 3em; } }
@media (max-width: 650px) {
  .main-nav__logo {
    font-size: 2.6em; } }
@media (max-width: 450px) {
  .main-nav__logo {
    font-size: 2.3em; }

  .main-nav__cart {
    font-size: 50px; } }
.cart {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  margin-top: 20px;
  margin-bottom: 40px; }

.cart__main {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 750px;
  -moz-flex: 0 1 750px;
  -ms-flex: 0 1 750px;
  flex: 0 1 750px; }

.cart__products {
  overflow: hidden;
  border-radius: 1em;
  margin-bottom: 40px; }

.cart__header {
  padding: 15px 30px;
  text-align: left;
  background: #e40c16;
  color: #fff; }

.cart__attribute {
  padding: 25px;
  line-height: 1.3em; }
  .cart__attribute img {
    display: block; }

.cart__attribute--negative {
  text-indent: -.4em; }

.cart__product {
  vertical-align: top;
  line-height: 35px;
  background: #ece5df; }
  .cart__product:nth-child(odd) {
    background: #fee8e1; }

.cart__voucher {
  max-width: 450px; }
  .cart__voucher::after {
    clear: both;
    content: "";
    display: table; }

.cart__product--voucher {
  background: #b8d78e !important; }
  .cart__product--voucher .cart__attribute {
    padding: 15px 30px; }

.cart__ingredient {
  text-indent: 1em;
  line-height: 1.5em;
  font-style: italic; }

.cart__quantity {
  width: 4.3em;
  min-width: 0 !important; }

.cart__summary {
  margin-left: 4em; }

.cart__totals {
  display: table;
  font-size: 1.25em;
  line-height: 1.2em; }
  .cart__totals th {
    text-align: left;
    padding-right: 15px; }

.cart__checkout {
  display: table;
  font-size: 1.3em;
  margin-top: 2em; }

.cart__remove-product {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .cart__remove-product:hover {
    opacity: .7; }

@media (max-width: 1140px) {
  .cart__summary {
    margin-top: 40px;
    margin-left: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%; } }
@media (max-width: 767px) {
  .cart {
    display: block; }

  .cart__products {
    width: 100%; }
    .cart__products thead {
      display: none; }
    .cart__products tr {
      display: block;
      padding: 20px 0; }
    .cart__products td, .cart__products th {
      display: table-row; }
      .cart__products td:before, .cart__products th:before {
        display: table-cell;
        text-align: right;
        padding-left: 20px;
        padding-right: 25px;
        content: attr(data-label); }

  .cart__remove-product:after {
    padding-left: 15px;
    content: "Verwijderen"; }

  .cart__totals {
    font-size: 1em; }

  .cart__attribute {
    line-height: 2em; } }
.product {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  height: 100%;
  font-size: 1rem;
  border-radius: .4em;
  overflow: hidden;
  box-shadow: 1px 2px 4px rgba(156, 156, 156, 0.44); }

.product--cursor-pointer {
  cursor: pointer; }

.product--selected {
  border: 1px dashed #e40c16; }

.product--unselected {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.product__content {
  display: block;
  padding: .8em .5em;
  background: #fff;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1; }

.product__title {
  display: block;
  font-weight: bold;
  color: #2b2b2b; }

.product__sub-title {
  display: block;
  font-size: .8em;
  font-style: italic; }

.product__image-holder {
  position: relative;
  position: relative;
  display: block; }
  .product__image-holder:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%; }
  .product__image-holder > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .product__image-holder img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover"; }

.product__price {
  position: absolute;
  bottom: 20px;
  right: 0;
  top: auto;
  left: auto;
  padding: .1em .8em;
  font-size: 15px;
  background: #dcdcdc;
  color: #606060; }

.product__btn {
  border-radius: 0;
  display: block; }

.product__btn--cart {
  padding-left: 2.1em; }

.progress {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.progress__step {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  color: #7b491e; }
  .progress__step:not(:last-of-type) .progress__inner:after {
    position: absolute;
    content: " ";
    height: 2px;
    width: 100%;
    left: 50%;
    right: 0;
    top: 50%;
    background-image: linear-gradient(to right, #7b491e 50%, #e40c16 50%);
    background-size: 200% 200%;
    background-position: 0 0; }

.progress__label {
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
  cursor: pointer; }

.progress__inner {
  position: relative; }

.progress__circle {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  width: 2.188em;
  height: 2.188em;
  line-height: calc(2.188em - 2px);
  text-align: center;
  border: 2px solid;
  font-weight: bold;
  background: #fff;
  margin: 0 auto;
  cursor: pointer; }

.progress__step--done .progress__inner:after {
  -webkit-transition: background 0.7s ease-in 0s;
  -moz-transition: background 0.7s ease-in 0s;
  transition: background 0.7s ease-in 0s;
  background-position-x: -100% !important; }

.progress__step--current {
  border-color: #e40c16;
  color: #e40c16; }
  .progress__step--current:not(:first-of-type) {
    -webkit-transition: border-color 0.2s ease-in 0.7s, color 0.2s ease-in 0.7s;
    -moz-transition: border-color 0.2s ease-in 0.7s, color 0.2s ease-in 0.7s;
    transition: border-color 0.2s ease-in 0.7s, color 0.2s ease-in 0.7s; }

.progress__step--done {
  color: #e40c16; }
  .progress__step--done .progress__circle {
    overflow: hidden;
    border-color: #e40c16;
    background: #e40c16;
    color: #fff; }

.progress__step--done .progress__circle:before {
  color: #fff;
  display: block;
  font-family: 'FontAwesome';
  content: ""; }

@media (max-width: 400px) {
  .progress__label {
    font-size: .8em; } }
.usp {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px -15px 30px; }

.usp__item {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 220px;
  -moz-flex: 1 1 220px;
  -ms-flex: 1 1 220px;
  flex: 1 1 220px;
  margin: 30px 15px 0;
  text-align: center; }

.usp__icon {
  font-size: 80px;
  margin: auto; }

.usp__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.333em;
  font-weight: bold;
  margin-top: .6em; }

.usp__content {
  font-size: .9em;
  margin-top: 0.4em; }

.total {
  border-collapse: collapse; }
  .total th {
    font-weight: normal;
    padding-right: 2em; }
  .total th, .total td {
    padding-top: .2em;
    padding-bottom: .2em; }

.total__attribute--sub-total th, .total__attribute--sub-total td {
  padding-top: 0;
  border-bottom: 1px solid;
  font-weight: bold; }

.total__attribute--discount td {
  text-indent: -.4em; }

.total__attribute--total {
  font-size: 1.2em; }
  .total__attribute--total th, .total__attribute--total td {
    border-top: 3px solid;
    font-weight: bold;
    padding-top: .4em;
    padding-bottom: 0; }

.total__attribute--btw {
  font-size: .8em; }
  .total__attribute--btw th, .total__attribute--btw td {
    padding-bottom: 0; }

.footer {
  padding: 1rem;
  background-color: #fee8e1;
  font-size: 0.8em;
  margin-top: 70px; }

.footer__content {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -15px; }

.footer__content-list {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  margin-top: 15px; }

.footer__logo {
  transform: rotate(-30deg);
  position: relative;
  left: 0;
  top: -55px;
  margin-bottom: -45px;
  margin-right: 45px; }
  .footer__logo img {
    display: block;
    width: 120px; }

.footer__nav {
  margin-top: 2em;
  padding-top: 1.6em;
  border-top: 1px solid #ece5df;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }

.footer__nav-item {
  display: block;
  margin-left: .7em;
  margin-right: .7em; }
  .footer__nav-item:hover {
    text-decoration: underline; }

.footer__nav-item--current, .footer__nav-item--section {
  font-weight: bold; }

/* no grid support? */
.product-list {
  display: flex;
  flex-wrap: wrap; }

.product-list {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-gap: 10px; }

.product-list__item {
  margin-left: 10px;
  margin-right: 10px;
  flex: 1 1 190px;
  max-width: 230px;
  margin-bottom: 30px; }

@supports (display: grid) {
  .product-list {
    margin: 0; }
    .product-list > * {
      margin: 0;
      flex: none;
      max-width: none; } }
@media screen and (max-width: 715px) {
  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }
@media screen and (max-width: 570px) {
  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 10px; } }
.js-filter-grid {
  opacity: 0; }

.filterable-list__filters {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.filterable-list__filter {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  background: #e40c16;
  color: #fff;
  padding: .4em .6em;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  transition: background 0.2s ease;
  border-style: dotted;
  border-color: #efd2de;
  border-width: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .filterable-list__filter:not(:last-child) {
    border-right-width: 2px; }
  .filterable-list__filter:hover {
    background: #b40911;
    box-shadow: 0 0 4px 0 #fee8e1; }

.filterable-list__filter--active {
  background: #b40911 !important;
  box-shadow: 0 0 7px 0 #fee8e1;
  z-index: 1; }

.filterable-list__filter--no-grow {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-positive: 0; }

.filterable-list__search-input {
  width: 100%;
  border-color: #dcdcdc; }

@media screen and (min-width: 601px) {
  .filterable-list__content {
    grid-area: content; }

  .filterable-list__search {
    grid-area: search; }

  .filterable-list__filters-container {
    grid-area: filters; } }
/* no grid support? */
.filterable-list__items {
  display: flex;
  flex-wrap: wrap; }

.filterable-list__items {
  display: grid;
  margin: 15px -10px 0;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-gap: 10px; }

.filterable-list__item {
  margin-left: 10px;
  margin-right: 10px;
  flex: 1 1 190px;
  max-width: 230px;
  margin-bottom: 30px; }

@supports (display: grid) {
  .filterable-list__items {
    margin: 0; }
    .filterable-list__items > * {
      margin: 0;
      flex: none;
      max-width: none; } }
@media screen and (max-width: 715px) {
  .filterable-list__items {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }
@media screen and (max-width: 570px) {
  .filterable-list__items {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 10px; } }
.js-step-data {
  display: none; }

.customizer {
  margin-top: 20px;
  margin-bottom: 20px; }
  .customizer .filterable-list__search-input, .customizer .filterable-list__search-input:focus {
    border: 2px solid #ece5df;
    border-bottom: none; }

.customizer__title {
  font-size: 1.5em;
  font-weight: bold;
  color: #e40c16;
  margin-bottom: 1em; }

.customizer__options {
  background: #ece5df;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  padding: 20px; }
  .customizer__options .filterable-list__filters {
    margin: -20px -20px 0; }
  .customizer__options .filterable-list__search {
    margin: 0 -20px 20px; }

.customizer__actions {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }
  .customizer__actions .btn, .customizer__actions input[type="submit"] {
    margin: 0 10px; }

.customizer__actions--vertical {
  display: block;
  text-align: center; }
  .customizer__actions--vertical .customizer__action {
    margin-left: auto;
    margin-right: auto; }

.customizer__action {
  margin-top: 3em !important;
  font-size: 1.1em;
  line-height: 1.1em; }

.customizer__main {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
  margin-top: 30px; }

.customizer__steps {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 320px;
  -moz-flex: 1 1 320px;
  -ms-flex: 1 1 320px;
  flex: 1 1 320px;
  max-width: 915px; }

.customizer__summary-holder {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 215px;
  -moz-flex: 0 0 215px;
  -ms-flex: 0 0 215px;
  flex: 0 0 215px;
  margin-left: 30px;
  margin-top: 56px;
  margin-bottom: 30px; }

.customizer__summary {
  text-align: right; }

.customizer__summary-title {
  font-weight: bold; }

.customizer__summary-list {
  margin-top: .4em;
  padding-bottom: .2em;
  border-bottom: 1px solid #e40c16; }

.customizer__summary-price {
  margin-top: .2em; }

.customizer__summary-item:not(:last-child) {
  margin-bottom: .2em; }

.customizer__summary-action {
  margin-left: .4em;
  cursor: pointer;
  opacity: .5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .customizer__summary-action:hover {
    opacity: 1; }

@media screen and (max-width: 570px) {
  .customizer {
    margin-top: 0;
    margin-bottom: 0; }

  .customizer__summary-holder {
    margin-top: 0; }

  .customizer__options {
    padding: 20px 10px 10px; }
    .customizer__options .filterable-list__filters {
      margin: -20px -10px 0; }
    .customizer__options .filterable-list__search {
      margin: 0 -10px 10px; }

  .customizer__summary-holder .customizer__actions {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end; }

  .customizer__action {
    margin-top: 1.5em !important; } }
.customized-chocolate {
  margin-top: 50px;
  text-align: center; }

.customized-chocolate__main {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px; }

.customized-chocolate__ingredients {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  margin-bottom: 20px;
  margin-top: -20px; }

.customized-chocolate__item {
  border-radius: 50%;
  border: 3px solid #e40c16;
  overflow: hidden;
  width: 125px;
  height: 125px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: 105%;
  background-position: center center; }

.customized-chocolate__item--main {
  width: 200px;
  height: 200px; }

.customized-chocolate__item--chocolate {
  width: 110px;
  height: 110px;
  position: absolute;
  right: -20px;
  bottom: -20px; }

.customized-chocolate__item--ingredient {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px; }

@media (max-width: 600px) {
  .customized-chocolate {
    margin-top: 0; }

  .customized-chocolate__item--ingredient {
    width: 120px;
    height: 120px; }

  .customized-chocolate__item--main {
    width: 200px;
    height: 200px; } }
.product-index {
  margin-top: 40px; }
  .product-index .filterable-list {
    display: grid;
    grid-gap: 10px; }
  .product-index .filterable-list__filter {
    width: 100%; }
    .product-index .filterable-list__filter:not(:last-child) {
      border-right: none;
      border-bottom-width: 2px; }
  .product-index .filterable-list__filter--reset {
    background: #dcdcdc;
    color: #606060; }
    .product-index .filterable-list__filter--reset:hover {
      box-shadow: 0 0 4px 1px #dcdcdc; }
  .product-index .filterable-list__search-input {
    border: none;
    border-bottom: 2px solid #dcdcdc; }

@media screen and (min-width: 601px) {
  .product-index {
    /* no grid support? */ }
    .product-index .filterable-list__filters-container {
      float: left;
      width: 19.1489%; }
    .product-index .filterable-list__search, .product-index .filterable-list__content {
      float: right;
      width: 79.7872%; }
    .product-index .filterable-list {
      grid-template-areas: "filters search" "filters content";
      grid-template-columns: 200px 1fr;
      margin: 0 auto; }
    @supports (display: grid) {
      .product-index .filterable-list__filters-container, .product-index .filterable-list__search, .product-index .filterable-list__content {
        float: none;
        width: auto; } } }
@media screen and (max-width: 570px) {
  .product-index .filterable-list__items {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }
.product-detail {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.product-detail__main {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 300px;
  -moz-flex: 1 0 300px;
  -ms-flex: 1 0 300px;
  flex: 1 0 300px; }

.product-detail__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.333em;
  font-weight: bold;
  color: #e40c16; }

.product-detail__actions {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  margin-top: 30px;
  margin-bottom: 30px; }

.product-detail__price {
  margin-left: 20px;
  font-size: 1.2em; }

.product-detail__image {
  margin-right: 30px;
  margin-bottom: 20px; }
  .product-detail__image img {
    max-width: 100%;
    display: block; }

.product-detail__image-caption {
  margin-top: .5em;
  font-style: italic; }

.voucher-shop {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  background: #fee8e1;
  border-radius: 20px; }

.voucher-shop__hand-in {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px; }

.voucher-shop__buy {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px; }

.voucher-shop__item {
  padding: 35px; }

.voucher-shop__item:first-child {
  border-right: 2px dashed #fff; }

.voucher-shop__content {
  min-height: 125px; }

.voucher-shop__header {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px; }

.voucher-shop__icon {
  margin: 0 auto;
  height: 50px;
  width: 50px; }
  .voucher-shop__icon svg {
    width: 100%;
    height: 100%;
    display: block; }

.voucher-shop__title {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  line-height: 1.222em;
  font-weight: bold;
  padding: 0 0 0 15px; }

.voucher-shop__field {
  margin-top: 10px; }

.voucher-shop__actions {
  float: right;
  margin-top: 10px; }

@media (max-width: 668px) {
  .voucher-shop__item:first-child {
    border-right: none;
    border-top: 2px dashed #fff; } }
.vertical-bar {
  left: 50%;
  margin-left: -150px;
  position: fixed;
  content: "\00a0";
  display: block;
  background: #fff6f6;
  width: 300px;
  top: 0;
  bottom: 0;
  z-index: -1; }

.checkout {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap-reverse;
  -moz-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  margin-top: 20px;
  margin-bottom: 40px; }

.checkout__form {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 570px;
  -moz-flex: 0 1 570px;
  -ms-flex: 0 1 570px;
  flex: 0 1 570px;
  margin-bottom: 40px;
  margin-right: 4em; }

.checkout__totals {
  margin-bottom: 30px; }

@media (max-width: 767px) {
  .checkout__form {
    margin-right: 0; } }
form h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
  font-family: "Playfair Display", serif;
  color: #e40c16; }

fieldset {
  padding: 0;
  border: none; }

input, select, textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding: 7px 10px;
  border: 2px solid #606060; }
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #a2a2a2; }
  input.error, select.error, textarea.error {
    border-color: #ec0007; }

input[disabled], input[disabled]:hover {
  cursor: default;
  background: #606060; }

textarea {
  resize: vertical; }

.required label:after, .required legend:after {
  content: ' *';
  color: #ec0007; }

.message, .right-title {
  display: block;
  font-size: .8em;
  line-height: 1.5em;
  color: #000, 25%; }

.message {
  font-weight: bold;
  margin-top: 3px;
  margin-left: 5px; }
  .message.error {
    color: #ec0007; }
    .message.error:before {
      content: "\f06a";
      font-family: FontAwesome;
      margin-right: .4em; }

.right-title {
  font-style: italic;
  text-align: right;
  color: #404040; }

.field::after {
  clear: both;
  content: "";
  display: table; }
.field:not(:last-child) {
  margin-bottom: 20px; }
.field + .CompositeField {
  margin-top: 50px; }

.CompositeField {
  margin-bottom: 50px !important; }

label, legend {
  display: block;
  margin-bottom: .3em;
  font-weight: bold;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.75em;
  color: #2b2b2b;
  padding-left: 5px; }

.middleColumn {
  width: 100%; }

label, legend, .middleColumn {
  float: none; }

.optionset .optionset, .field.checkbox {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  padding-left: 5px; }
  .optionset .optionset::after, .field.checkbox::after {
    clear: both;
    content: "";
    display: table; }
  .optionset .optionset li, .field.checkbox li {
    padding-left: 0;
    margin-bottom: .7em; }
  .optionset .optionset label, .field.checkbox label {
    padding-left: 1.7em;
    position: relative;
    cursor: pointer;
    width: 100%;
    float: none;
    font-size: 1em;
    font-weight: normal;
    text-transform: none; }
    .optionset .optionset label:before, .optionset .optionset label:after, .field.checkbox label:before, .field.checkbox label:after {
      position: absolute;
      top: 0;
      left: 0;
      content: " ";
      height: 1em;
      width: 1em;
      background: #fff;
      border: 2px solid #e40c16;
      border-radius: 50%; }
    .optionset .optionset label:after, .field.checkbox label:after {
      position: absolute;
      top: 0.37em;
      left: .38em;
      height: 0.55em;
      width: 0.55em;
      background: transparent;
      border: none;
      -webkit-transition: background, 0.3s, ease, 0s;
      -moz-transition: background, 0.3s, ease, 0s;
      transition: background, 0.3s, ease, 0s; }
  .optionset .optionset input, .field.checkbox input {
    position: absolute;
    left: -300%; }
    .optionset .optionset input:checked + label:after, .field.checkbox input:checked + label:after {
      background: #b40911; }

.field.checkbox {
  padding-left: 0; }
  .field.checkbox label:before {
    border-radius: 0; }
  .field.checkbox label:after {
    display: none; }
  .field.checkbox input:checked + label:before {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADZSURBVDhPY6AbuKWiwg5lkgbOich7nhVT+HVWVKEVKkQcuMQvJ3hGTPHpWTHF/0DNr88wGLNCpQgDoIYlYI1AfEZUMRQqTBicFVUKQtK4AipMGFwQVxI7I6rwEqr5+UkpKWGoFCoAmlp5VlTxxHExRXGoEMMZMYU1MFuBgeUHFUYFp4QV1GGKgIZcAxlwWkwxCqFRcT5UKXYAdF4fkuLrQFe8BbGBtj8+I6jED1WGG6AZANSo+O+0qIIbVJowQDYA6IXpUGHiAdCp9cAA2nJFVIsHKjSoAAMDAPXaYyqr2cOtAAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
    background-position: center center; }
  .field.checkbox:not(:last-child) {
    margin-bottom: 20px; }

input[type="submit"] {
  border: none;
  width: auto;
  white-space: normal; }

.optionset .optionset.checkboxset label {
  float: none; }
  .optionset .optionset.checkboxset label:before, .optionset .optionset.checkboxset label:after {
    border-radius: 0; }

.housnr-postcode > .middleColumn {
  width: 100%; }
.housnr-postcode .fieldgroup-field {
  float: left; }
  .housnr-postcode .fieldgroup-field.first {
    width: 50%;
    max-width: 100%; }
    .housnr-postcode .fieldgroup-field.first .fieldholder-small-label {
      float: left;
      padding: 8px 2px 9px 2px;
      width: 54%;
      max-width: 100%; }
    .housnr-postcode .fieldgroup-field.first input {
      margin-left: 0;
      width: 40%; }
  .housnr-postcode .fieldgroup-field.last {
    width: 50%;
    max-width: 100%; }
    .housnr-postcode .fieldgroup-field.last .fieldholder-small-label {
      float: left;
      display: inline-block;
      width: 25%;
      padding: 8px 2px 9px 2px;
      max-width: 100%; }
    .housnr-postcode .fieldgroup-field.last input {
      float: right;
      width: 70%; }

.Actions {
  margin-top: 2em; }

.message, .right-title {
  display: block;
  font-size: .8em;
  line-height: 1.5em;
  color: #404040; }

.message {
  font-weight: bold;
  margin-top: 5px; }
  .message.error, .message.bad {
    color: #ec0007; }

.conditional-field {
  display: none; }

@media (max-width: 600px) {
  label, legend, .middleColumn {
    width: 100%; }

  .fieldgroup.housnr-postcode .fieldgroup-field {
    width: 50%; }
    .fieldgroup.housnr-postcode .fieldgroup-field .fieldholder-small-label {
      width: 42%; }
    .fieldgroup.housnr-postcode .fieldgroup-field input {
      width: 50%; }

  .field.checkbox {
    padding-left: 0; } }
@media (max-width: 550px) {
  label, legend, .middleColumn {
    width: 100%; }

  .fieldgroup.housnr-postcode .fieldgroup-field {
    width: 100%; }
    .fieldgroup.housnr-postcode .fieldgroup-field .fieldholder-small-label {
      width: 100%; }
    .fieldgroup.housnr-postcode .fieldgroup-field input {
      width: 100%; }
  .fieldgroup.housnr-postcode .first {
    margin-bottom: 20px; } }
.container {
  position: relative;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  flex-grow: 1; }

.container--readable {
  max-width: 640px; }

.title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.333em;
  font-weight: bold;
  color: #e40c16;
  margin-bottom: .8em;
  text-align: center; }

.title--left {
  text-align: left; }

.intro {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  margin: .8em auto;
  text-align: center; }

.loginScreen {
  margin-top: 30px; }
  .loginScreen .Actions {
    margin-top: 0; }
  .loginScreen .action {
    margin: 0 auto;
    display: table; }

#MemberLoginForm_LoginForm_Remember_Holder {
  display: none; }

#ForgotPassword {
  text-align: right;
  font-size: .8em; }

.layout-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative; }

.section {
  margin: 25px auto;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 100%; }

.section--cols {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -30px; }

.section__col {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 400px;
  -moz-flex: 1 1 400px;
  -ms-flex: 1 1 400px;
  flex: 1 1 400px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 30px; }

.section--break-out {
  background: #fee8e1; }
  .section--break-out .section {
    margin-top: 30px;
    margin-bottom: 60px; }

.section__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.333em;
  font-weight: bold;
  margin-bottom: 1em; }

.section__intro {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  margin: 1.2em 0; }

.section__well {
  background: #e40c16;
  padding: 1.5em;
  color: #fff;
  border-radius: 20px; }

.section__well--secondary-color {
  background: #7b491e; }
  .section__well--secondary-color .btn--inverted:hover {
    color: #7b491e; }

.section__padded {
  padding: .5em 1.5em; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.mobile-only {
  display: none; }

iframe {
  max-width: 100%; }

@media (max-width: 767px) {
  .mobile-only {
    display: block; }

  .desktop-only {
    display: none; } }
@media (max-width: 500px) {
  img .left, img .right {
    float: none;
    padding: 10px;
    display: block;
    margin: 30px auto; } }

/*# sourceMappingURL=combined-theme.css.map */


