@charset "UTF-8";
/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v29-latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v29-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v29-latin-300.woff2") format("woff2"), url("../fonts/roboto-v29-latin-300.woff") format("woff"), url("../fonts/roboto-v29-latin-300.ttf") format("truetype"), url("../fonts/roboto-v29-latin-300.svg#Roboto") format("svg");
  /* Legacy iOS */ }
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v29-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v29-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v29-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v29-latin-regular.woff") format("woff"), url("../fonts/roboto-v29-latin-regular.ttf") format("truetype"), url("../fonts/roboto-v29-latin-regular.svg#Roboto") format("svg");
  /* Legacy iOS */ }
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v29-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v29-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v29-latin-700.woff2") format("woff2"), url("../fonts/roboto-v29-latin-700.woff") format("woff"), url("../fonts/roboto-v29-latin-700.ttf") format("truetype"), url("../fonts/roboto-v29-latin-700.svg#Roboto") format("svg");
  /* Legacy iOS */ }
/* mr-de-haviland-regular - latin */
@font-face {
  font-family: 'Mr De Haviland';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/mr-de-haviland-v12-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mr-de-haviland-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/mr-de-haviland-v12-latin-regular.woff2") format("woff2"), url("../fonts/mr-de-haviland-v12-latin-regular.woff") format("woff"), url("../fonts/mr-de-haviland-v12-latin-regular.ttf") format("truetype"), url("../fonts/mr-de-haviland-v12-latin-regular.svg#MrDeHaviland") format("svg");
  /* Legacy iOS */ }
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

input, button, select, textarea {
  font-family: inherit; }

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

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

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  background-color: #fff;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%); }

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none; }

.chosen-container a {
  cursor: pointer; }

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999; }

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  /*    background: url("chosen-sprite.png") -42px 1px no-repeat; */
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  /*    background: url("chosen-sprite.png") no-repeat 0px 2px; */ }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  /*    background: url("chosen-sprite.png") no-repeat 100% -20px; */
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  box-shadow: none; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%); }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
  box-shadow: none; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  /*    background: url("chosen-sprite.png") -42px 1px no-repeat; */
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
  box-shadow: none; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
  box-shadow: none; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  /*    background: url("chosen-sprite.png") no-repeat -30px -20px; */
  direction: rtl;
  box-shadow: none; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    /*      background-image: url("chosen-sprite@2x.png") !important; */
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
    box-shadow: none; } }
/* @end */
/*@import "../fonts/fontawesome/css/all.min.css";*/
img {
  max-width: 100%;
  max-height: 100%;
  height: auto; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.3rem;
  background: #FAF4E5;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden; }
  @media all and (min-width: 55rem) {
    body {
      font-size: 0.875rem;
      line-height: 1.375rem;
      background-image: url("/assets/img/background.jpg"); } }

hr {
  border: none;
  border-top: solid 0.065rem #D7B144;
  width: 40.3rem;
  max-width: 14.95rem;
  flex: 0 0 initial;
  margin: 0.65rem auto 1.95rem; }
  @media all and (min-width: 55rem) {
    hr {
      max-width: 100%; } }

.button {
  border: none;
  width: 100%;
  height: 100%;
  background: #D6AD33;
  font-weight: 500;
  font-size: 0.975rem;
  height: 3.25rem;
  border-radius: 0;
  box-shadow: none;
  transition: all .25s;
  color: #000;
  outline: none !important; }
  .button.light {
    background: #EBD699; }
  .button:hover {
    background: #002E4D;
    color: #CC9800;
    cursor: pointer; }
    .button:hover a {
      color: #CC9800 !important; }
  .button > a {
    display: block;
    height: 100%;
    line-height: 3.25rem !important; }

@media all and (max-width: 55rem) {
  .desktop-only {
    display: none !important; } }

@media all and (min-width: 55rem) {
  .mobile-only {
    display: none !important; } }

select {
  border: solid 0.065rem #D7B144;
  height: 3.25rem;
  width: 100%;
  font-family: inherit;
  font: inherit;
  padding: 0 1.3rem; }

input:focus {
  outline: none !important;
  border: solid 0.065rem #D7B144 !important; }

.float-right {
  float: right; }

.float-left {
  float: left; }

input[type="checkbox"],
input[type="radio"] {
  width: 0;
  margin-right: 1.3rem;
  appearance: none;
  opacity: 0;
  display: none; }
  input[type="checkbox"] + label,
  input[type="radio"] + label {
    cursor: pointer;
    display: block;
    padding-left: 30px; }
    input[type="checkbox"] + label:hover,
    input[type="radio"] + label:hover {
      color: #790C1B; }
    input[type="checkbox"] + label::after, input[type="radio"] + label::after {
      content: '';
      display: block;
      height: 15px;
      width: 15px;
      background: transparent;
      border-radius: 50%;
      border: solid 1px #001D31;
      position: absolute;
      top: 10px;
      left: 0;
      transform: translateY(-50%);
      transition: background .25s; }
      .filter--options input[type="checkbox"] + label::after, .filter--options input[type="radio"] + label::after {
        top: 16px; }
        .menu--filter .filter--options input[type="checkbox"] + label::after,
        .menu--filter .filter--options input[type="radio"] + label::after {
          top: 24px; }
  input[type="checkbox"]:hover + label::after,
  input[type="radio"]:hover + label::after {
    background: #D6AD33;
    border: solid 1px #000; }
  input[type="checkbox"]:active,
  input[type="radio"]:active {
    cursor: pointer; }
    input[type="checkbox"]:active + label::after,
    input[type="radio"]:active + label::after {
      background: #D6AD33;
      border: solid 0.065rem #000; }
  input[type="checkbox"]:checked + label::after,
  input[type="radio"]:checked + label::after {
    background: #D6AD33; }

input[type="checkbox"] + label {
  padding-left: 40px;
  position: relative; }
  input[type="checkbox"] + label:hover {
    color: #790C1B; }
  input[type="checkbox"] + label::before {
    display: block !important;
    content: ' ';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0px;
    top: 1px;
    background: #FAF4E5;
    border-radius: 8.5px;
    z-index: 100;
    border: solid 1px #001D31;
    transition: all .3s; }
  input[type="checkbox"] + label::after {
    width: 30px;
    border-radius: 8.5px;
    transition: all .3s;
    left: 0 !important; }
  input[type="checkbox"] + label .marker {
    position: absolute;
    left: 21px;
    font-size: 8px;
    font-weight: 400;
    content: "0";
    color: #001D31;
    z-index: 5; }
    input[type="checkbox"] + label .marker i:nth-child(2) {
      display: none; }
input[type="checkbox"]:hover + label::after {
  background: none; }
input[type="checkbox"]:hover + label::before {
  content: '' !important;
  background-color: #D7B144; }
input[type="checkbox"]:active + label::before {
  content: '' !important; }
input[type="checkbox"]:checked + label::after {
  background: #001D31;
  border-color: #D7B144; }
input[type="checkbox"]:checked + label::before {
  left: 15px;
  background: #D7B144;
  content: '' !important; }
input[type="checkbox"]:checked + label:hover::before {
  background: #FAF4E5; }
input[type="checkbox"]:checked + label .marker {
  left: 9px;
  content: "1";
  color: #fff; }
  input[type="checkbox"]:checked + label .marker i:nth-child(1) {
    display: none; }
  input[type="checkbox"]:checked + label .marker i:nth-child(2) {
    display: inline; }

.checkbox.mode-right label .marker {
  left: auto;
  right: -28px;
  transform: translateX(100%); }
.checkbox.mode-right input[type="checkbox"]:checked + label .marker {
  left: auto;
  right: -16px; }

.option-list {
  position: relative; }

.muted {
  color: #5D798B; }

.scroll-to-top {
  background: white;
  border: solid 0.065rem #D7B144;
  bottom: 20px;
  box-shadow: 0 0.195rem 0.195rem rgba(0, 0, 0, 0.2);
  color: #001D30;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
  height: 60px;
  padding-top: 4px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 42px;
  z-index: 10000; }
  .scroll-to-top .text {
    font-size: 0.75rem;
    line-height: 0.75rem; }
  @media (min-width: 1035px) and (max-width: 1151px) {
    .scroll-to-top {
      left: 50%;
      bottom: 30px;
      right: auto;
      transform: translateX(475px); } }
  @media (min-width: 1350px) {
    .scroll-to-top {
      left: 50%;
      right: auto;
      transform: translateX(630px); } }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1800;
  background: #F5EACC; }
  @media all and (min-width: 1024px) {
    .header {
      background-image: url("/assets/img/background.jpg");
      z-index: 1400; } }
  @media all and (min-width: 1024px) {
    .header {
      position: relative;
      width: 100%; } }
  .header--banner {
    display: none;
    background: #002E4D;
    font-size: 0.78rem;
    color: #E0C166;
    padding: 0.52rem 0 0.52rem;
    position: relative;
    line-height: 0.91rem;
    z-index: 1400; }
    @media all and (min-width: 1024px) {
      .header--banner {
        display: block; } }
    .header--banner .banner-inner {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-evenly;
      text-align: center;
      width: 100%;
      max-width: 76.7rem;
      margin: 0 auto; }
  .header--bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 auto;
    max-width: 57.07rem;
    padding-bottom: 0.455rem; }
    @media all and (min-width: 1024px) {
      .header--bar {
        max-width: 100%;
        padding-right: 1.04rem;
        justify-content: space-between; } }
    @media all and (min-width: 72rem) {
      .header--bar {
        max-width: 76.7rem; } }
    @media all and (min-width: 72rem) {
      .header--bar {
        padding-right: 1.235rem; } }
    .header--bar > * {
      flex: 0 0 auto; }

@media all and (min-width: 1024px) {
  #sticky-wrapper.is-sticky .header.sticky-desktop .header--bar {
    max-width: 57.07rem;
    margin: 0 auto; } }
  @media all and (min-width: 1024px) and (min-width: 72rem) {
    #sticky-wrapper.is-sticky .header.sticky-desktop .header--bar {
      max-width: 76.7rem; } }
@media all and (min-width: 1024px) {
  #sticky-wrapper.is-sticky .header .bar-element--logo {
    max-height: 5rem;
    padding: 0 0 15px 25px; }
    #sticky-wrapper.is-sticky .header .bar-element--logo .image--logo {
      height: 3.5rem;
      background: url("/assets/img/logo-mobile-main.png") center center no-repeat;
      background-size: contain;
      background-position: left;
      margin-top: 13px; }
    #sticky-wrapper.is-sticky .header .bar-element--logo--icon {
      height: 3rem; } }

@media all and (min-width: 1024px) {
  .bar-element--search {
    order: 10; } }
.bar-element--search input[type="text"] {
  border: 0 !important; }
  .bar-element--search input[type="text"]:focus {
    border: 0 !important; }
.bar-element--icon {
  width: 2.6rem;
  max-width: 100vw- 45vw/4;
  height: 3.9rem;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row; }
  @media all and (min-width: 1024px) {
    .bar-element--icon {
      width: 1.3rem; } }
  @media all and (min-width: 72rem) {
    .bar-element--icon {
      width: 1.625rem; } }
  .bar-element--icon img {
    max-height: 1.365rem;
    filter: invert(8%) sepia(22%) saturate(5255%) hue-rotate(181deg) brightness(96%) contrast(101%); }
.bar-element--logo {
  flex: 0 1 auto;
  height: 3.1rem;
  padding: 0 0.65rem; }
  @media all and (min-width: 768px) {
    .bar-element--logo {
      justify-self: flex-start;
      margin-right: auto; } }
  @media all and (min-width: 1024px) {
    .bar-element--logo {
      order: 1;
      height: 5.46rem;
      box-sizing: content-box;
      padding: 0.65rem 0rem 0 1rem;
      justify-self: auto;
      margin-right: 0; } }
  @media all and (min-width: 72rem) {
    .bar-element--logo {
      padding: 2.405rem 2.795rem 1.56rem 1.885rem;
      height: 7.345rem; } }
  .bar-element--logo .image--logo {
    height: 100%;
    background: url("/assets/img/logo-mobile-main.png") center center no-repeat;
    width: 45vw;
    max-width: 11rem;
    display: block;
    background-size: 100% auto; }
    @media all and (min-width: 1024px) {
      .bar-element--logo .image--logo {
        background: url("/assets/img/logo-desktop-main.png") center center no-repeat;
        max-width: 45.6vw;
        width: 40.82rem;
        background-size: 100% auto; } }
  @media all and (min-width: 1024px) {
    .bar-element--logo.medium, .bar-element--logo.small {
      order: 1;
      height: 4.55rem;
      box-sizing: content-box;
      padding: 0.65rem 1.3rem;
      width: 30%; } }
  @media all and (min-width: 1024px) {
    .bar-element--logo.medium .image--logo, .bar-element--logo.small .image--logo {
      background: url("/assets/img/logo-mobile-main.png") center center no-repeat;
      max-width: 100%;
      width: 40.82rem;
      background-size: 100% auto; } }
  @media all and (min-width: 1024px) {
    .bar-element--logo.small {
      order: 1;
      height: 4.55rem;
      box-sizing: content-box;
      padding: 0.65rem 1.3rem;
      width: 30%; } }

.icon-wrapper--search {
  transform: translateY(0.15rem) scale(0.85); }
  @media all and (min-width: 768px) {
    .icon-wrapper--search {
      justify-self: flex-end; } }
  @media all and (min-width: 1024px) {
    .icon-wrapper--search {
      display: none;
      justify-self: auto; } }
.icon-wrapper--account {
  transform: scale(0.85) translateY(0.13rem); }
  @media all and (min-width: 42rem) {
    .icon-wrapper--account {
      order: 20;
      transform: scale(1.1) translateY(-0.195rem);
      justify-self: flex-end; } }
  @media all and (min-width: 78rem) {
    .icon-wrapper--account {
      order: 20;
      transform: scale(1.275) translateY(-0.13rem);
      justify-self: auto; } }
.icon-wrapper--contact {
  display: none; }
  @media all and (min-width: 1024px) {
    .icon-wrapper--contact {
      display: flex;
      order: 30;
      transform: scale(1.15) translateY(0); } }
.icon-wrapper--info {
  display: none; }
  @media all and (min-width: 1024px) {
    .icon-wrapper--info {
      display: flex;
      order: 40;
      transform: scale(1.35) translateY(0.065rem); } }
.icon-wrapper--basket {
  transform: scale(0.9) translateY(0.13rem); }
  @media all and (min-width: 768px) {
    .icon-wrapper--basket {
      justify-self: flex-end; } }
  @media all and (min-width: 1024px) {
    .icon-wrapper--basket {
      order: 50;
      transform: scale(1.3) translateY(0rem);
      justify-self: auto; } }
.icon-wrapper--menu {
  transform: translateY(0.26rem); }
  @media all and (min-width: 1024px) {
    .icon-wrapper--menu {
      display: none; } }
.icon--menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  @media all and (min-width: 768px) {
    .icon--menu {
      justify-self: flex-start; } }
  @media all and (min-width: 1024px) {
    .icon--menu {
      display: none; } }
  .icon--menu .menu-bar::before,
  .icon--menu .menu-bar::after,
  .icon--menu .menu-bar {
    content: '';
    width: 1.3rem;
    height: 0.065rem;
    background: #001D31;
    display: block;
    position: relative;
    transition: all .2s ease; }
  .icon--menu .menu-bar::before {
    top: -0.39rem;
    position: absolute; }
  .icon--menu .menu-bar::after {
    top: 0.39rem;
    position: absolute; }
  .icon--menu.active .menu-bar {
    background: none; }
    .icon--menu.active .menu-bar::before {
      top: 0;
      transform: rotateZ(45deg); }
    .icon--menu.active .menu-bar::after {
      top: 0;
      transform: rotateZ(-45deg); }

.basket--count {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.04rem;
  height: 1.04rem;
  transform: translate(-0.26rem, -0.26rem);
  border-radius: 0.52rem;
  font-size: 0.78rem;
  line-height: 1.105rem;
  color: white;
  font-weight: bold;
  z-index: 999; }
  @media all and (min-width: 55rem) {
    .basket--count {
      top: 50%;
      font-size: 0.6rem; } }
  .basket--count.active {
    background-color: #790C1B; }

button.search--button {
  background: #E0C166; }
  button.search--button:hover {
    background: #002E4D;
    cursor: pointer; }
    button.search--button:hover img {
      filter: invert(100); }
  @media all and (min-width: 1024px) {
    button.search--button {
      position: inherit; } }

.search--wrapper {
  z-index: 1000;
  background: #fff;
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 4.355rem;
  left: 0;
  width: 100%;
  display: none; }
  .search--wrapper.open {
    display: block; }
  @media all and (min-width: 1024px) {
    .search--wrapper {
      display: block;
      position: relative;
      width: 13rem;
      left: auto;
      top: auto;
      box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.15); } }
  @media all and (min-width: 72rem) {
    .search--wrapper {
      width: 15.6rem; } }
  @media all and (min-width: 1024px) {
    .search--wrapper.medium {
      width: 23.4rem;
      left: auto;
      top: auto;
      box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.15); } }
  @media all and (min-width: 72rem) {
    .search--wrapper.medium {
      width: 31.2rem; } }
  .search--wrapper input[type=text] {
    color: #001D31;
    border: none;
    background: none;
    outline: none !important;
    height: 3.25rem;
    line-height: 3.25rem;
    font-size: 0.845rem;
    width: 90%; }
    @media all and (min-width: 1024px) {
      .search--wrapper input[type=text] {
        height: 2.6rem;
        line-height: 2.6rem; } }
    .search--wrapper input[type=text]::placeholder {
      color: #758c9e;
      font-family: "Roboto", sans-serif;
      font-size: 0.845rem; }
  .search--wrapper .search--button {
    margin-right: -1.25rem;
    background: #E0C166;
    border: 0;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1px 12px; }
    .search--wrapper .search--button:hover {
      cursor: pointer; }
    @media all and (min-width: 1024px) {
      .search--wrapper .search--button {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        padding: 0.65rem;
        margin-right: 0; }
        .search--wrapper .search--button:hover {
          background-color: #002E4D; }
          .search--wrapper .search--button:hover img {
            filter: invert(100); } }
    .search--wrapper .search--button img {
      height: 1.3rem;
      max-width: none;
      filter: invert(8%) sepia(22%) saturate(5255%) hue-rotate(181deg) brightness(96%) contrast(101%); }
      @media all and (min-width: 1024px) {
        .search--wrapper .search--button img {
          display: inline-block; } }
    .search--wrapper .search--button span {
      display: none; }
      @media all and (min-width: 1024px) {
        .search--wrapper .search--button span {
          display: none; } }
.search--input-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 1.25rem; }
  @media all and (min-width: 1024px) {
    .search--input-wrapper {
      padding: 0 0.52rem; } }

.menu--main {
  max-height: 28rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: #FAF4E5;
  display: none;
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
  max-width: 30rem; }
  @media all and (min-width: 1024px) {
    .menu--main {
      display: block;
      overflow: visible;
      margin: 0 auto;
      max-width: 57.07rem;
      max-height: none;
      background: none;
      box-shadow: none; } }
  @media all and (min-width: 72rem) {
    .menu--main {
      max-width: 76.7rem; } }
  .menu--main.open {
    display: block; }
.menu--filter {
  display: none; }
  .menu--filter.open {
    display: block; }
.menu .item {
  text-transform: uppercase;
  font-size: 1rem;
  overflow: hidden;
  position: relative;
  font-weight: 500; }
  .menu .item label, .menu .item button, .menu .item input {
    color: #001D31;
    border: none; }
  @media all and (min-width: 1024px) {
    .menu .item {
      text-align: center;
      position: static; } }
  @media all and (min-width: 1024px) {
    .menu .item .item {
      text-align: left; } }
  @media all and (min-width: 1024px) {
    .menu .item .item a {
      font-weight: 400; } }
  @media all and (max-width: 1023px) {
    .menu .item::before {
      content: '';
      display: block;
      position: absolute;
      left: .9375rem;
      right: .9375rem;
      top: 3.1rem;
      height: .063rem;
      background: #D7B144;
      opacity: 0;
      transition: all .2s ease; } }
  .menu .item > * {
    width: 100%; }
  .menu .item a {
    cursor: pointer;
    height: 3.1rem;
    width: 100%;
    display: block;
    line-height: 3.1rem;
    padding: 0 1.875rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    transition: all .2s ease;
    letter-spacing: .063rem;
    color: #001D31;
            /*
            &::before,
            &::after{
                display: inline-block;
                font-family: "Font Awesome 5 Pro"; 
                font-weight: 300;
                font-size: 1.5rem;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                transition: all .2s ease;
                @media all and (min-width: $mobileMenuBreakpoint){
                    display: none;
                }

            }
            &::before{
                content: "\f104";
                left: 0;
                opacity: 0;
            }

            &::after{
                content: "\f105";
                right: 1.875rem;
            }
            */ }
    @media all and (min-width: 1024px) {
      .menu .item a {
        overflow: visible;
        font-size: 0.75rem;
        line-height: 1.1;
        padding: 0.44rem 0.9375rem;
        height: auto;
        overflow: hidden;
        text-overflow: ellipsis; } }
    @media all and (min-width: 72rem) {
      .menu .item a {
        padding: 0.44rem 1.3rem;
        font-size: 0.875rem; } }
    .menu .item a:hover {
      color: #790C1B; }
    .menu .item a .arrow-icon-left,
    .menu .item a .arrow-icon-right {
      position: absolute;
      width: auto;
      height: 12px;
      top: 50%;
      transform: translate(-50%, -50%);
      margin-top: -1px; }
      @media screen and (min-width: 1024px) {
        .menu .item a .arrow-icon-left,
        .menu .item a .arrow-icon-right {
          display: none !important; } }
    .menu .item a .arrow-icon-left {
      display: none; }
    .menu .item a .arrow-icon-right {
      right: 15px; }
  .menu .item.item--has-sub.open > a > .arrow-icon-left {
    display: inline-block;
    transform: translate(-20px, -50%); }
  .menu .item.item--has-sub.open > a > .arrow-icon-right {
    display: none; }
  .menu .item ul {
    max-height: 0;
    overflow: hidden;
    position: relative;
    left: -1.875rem;
    opacity: 0;
    transition: all .2s ease, max-height 0s; }
    @media all and (min-width: 1024px) {
      .menu .item ul {
        max-height: 0;
        left: 0;
        z-index: 1000; } }
    .menu .item ul .item {
      text-transform: none; }
    @media all and (min-width: 1024px) {
      .menu .item ul ul {
        max-height: none;
        left: 0;
        opacity: 1;
        transition: all .2s ease, max-height 0s; } }
  .menu .item.open {
    overflow: visible; }
    .menu .item.open::before {
      opacity: 1; }
    .menu .item.open > a .apply-filter {
      display: block; }
    @media all and (min-width: 1024px) {
      .menu .item.open > a {
        color: #790C1B; } }
    @media all and (max-width: 1023px) {
      .menu .item.open > a {
        padding-left: 3.1rem; }
        .menu .item.open > a::before {
          opacity: 1;
          left: 1.875rem; }
        .menu .item.open > a::after {
          opacity: 0;
          right: 0; } }
    .menu .item.open > ul {
      max-height: 100vh;
      left: 0;
      opacity: 1;
      padding: 0.65rem 0 30px;
      border-bottom-width: 1px;
      transition: all .5s ease, opacity 0s; }
  @media all and (max-width: 1023px) {
    .menu .item.closed {
      display: none; } }
  .menu .item--image {
    text-align: center;
    height: 13rem;
    padding: 1.5rem 0 1rem 1.3rem;
    text-align: left; }
    @media all and (max-width: 1023px) {
      .menu .item--image {
        display: none; } }
  @media all and (min-width: 1024px) {
    .menu .item--separated {
      display: none; } }
  .menu .item--separated::before {
    top: 0;
    opacity: 1;
    transition: none; }
  .menu .item--separated.open::before {
    opacity: 0; }
  .menu .item--filter::before {
    top: 0;
    opacity: 1;
    transition: none; }
  .menu .item--filter .filter--options {
    display: none;
    line-height: 3.1rem;
    padding: 0 1.875rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .menu .item--filter.open::before {
    opacity: 1;
    top: 0; }
  .menu .item--filter.open a {
    padding-left: 1.875rem; }
    .menu .item--filter.open a::before {
      opacity: 0;
      left: 0; }
    .menu .item--filter.open a::after {
      opacity: 1;
      right: 1.875rem; }
  .menu .item--filter.open .filter--options {
    display: block; }
  .menu .item--filter .range-field {
    display: flex;
    flex-direction: row;
    align-items: flex-start; }
    .menu .item--filter .range-field label {
      width: 30%; }
    .menu .item--filter .range-field p {
      width: 70%; }
      .menu .item--filter .range-field p input {
        font-size: 16px;
        padding: 3px; }
  .menu .item--filter.range-filter .save--box .spacer {
    width: 49%;
    display: inline-block; }
  .menu .item--filter.range-filter .save--box .range-filter--save {
    width: 49%;
    background: none;
    border: none;
    font-size: inherit;
    text-align: right;
    display: inline-block;
    color: #D6AD33;
    margin: 0.5rem 0 1rem;
    padding-right: 0;
    text-transform: none;
    line-height: 100%; }
    .menu .item--filter.range-filter .save--box .range-filter--save:hover {
      cursor: pointer; }
.menu .toggle--filter .apply-filter {
  display: none; }
.menu-items {
  position: relative; }
  @media all and (min-width: 1024px) {
    .menu-items {
      display: flex;
      border-bottom: solid 1px #D7B144;
      justify-content: space-between; } }
  @media all and (min-width: 1024px) {
    .menu-items > .item > ul {
      display: flex;
      width: 100%;
      position: absolute !important;
      padding: 0;
      background: #fff;
      margin-top: .063rem;
      box-shadow: 0 0.195rem 0.195rem rgba(0, 0, 0, 0.2);
      border: 1px solid #D7B144;
      border-bottom: 0 solid #D7B144;
      border-top: none;
      max-height: 0; } }
  @media all and (min-width: 1024px) {
    .menu-items > .item > ul > .item {
      width: 100%; } }
  @media all and (min-width: 1024px) {
    .menu-items > .item > ul > .item > a {
      text-transform: uppercase;
      font-weight: 600;
      padding-top: 1.875rem;
      padding-bottom: 1.875rem; }
      .menu-items > .item > ul > .item > a:hover {
        color: #001D31;
        cursor: default; } }
  .menu-items > .item > ul .item--has-icon > a .badge {
    position: absolute;
    top: 0;
    transform: translateY(100%);
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin: 0 0 0 10px; }
    .menu-items > .item > ul .item--has-icon > a .badge.badge-icon {
      top: -15px;
      width: 28px;
      height: auto; }
  @media screen and (min-width: 1024px) {
    .menu-items > .item > ul .item--has-icon > a .badge {
      top: 5px;
      transform: none; }
      .menu-items > .item > ul .item--has-icon > a .badge.badge-icon {
        top: 3px;
        width: 20px; } }
  .menu-items > .item > ul .item--special a {
    font-weight: 600; }

.breadcrumbs {
  font-size: 0.65rem;
  line-height: 0.715rem;
  color: #5D798B;
  display: none;
  max-width: 57.07rem;
  margin: 0 auto;
  padding: 0.325rem 0.845rem;
  opacity: .5; }
  .breadcrumbs span {
    color: #5D798B;
    margin: 0 5px; }
  .breadcrumbs .path {
    padding: 0 0.325rem; }
  @media all and (min-width: 55rem) {
    .breadcrumbs {
      display: block;
      padding-left: 0;
      font-size: 12px; } }
  @media all and (min-width: 72rem) {
    .breadcrumbs {
      max-width: 76.7rem;
      padding: 0.52rem 1.3rem;
      padding-left: 0.35rem; } }
  @media screen and (min-width: 1152px) {
    .breadcrumbs {
      padding-left: 0.65rem; } }

.hero {
  padding: 0 1.3rem 1.3rem;
  max-width: 20.8rem;
  margin: 0 auto; }
  @media all and (min-width: 55rem) {
    .hero {
      padding: 0 0rem 1.3rem;
      max-width: none; } }
  @media all and (min-width: 55rem) {
    .hero--inline-headline .hero--text {
      display: flex;
      flex-direction: row;
      justify-content: center; } }
  .hero--inline-headline h1, .hero--inline-headline h2, .hero--inline-headline h3, .hero--inline-headline h4, .hero--inline-headline h5, .hero--inline-headline h6 {
    text-transform: uppercase; }
    @media all and (min-width: 55rem) {
      .hero--inline-headline h1, .hero--inline-headline h2, .hero--inline-headline h3, .hero--inline-headline h4, .hero--inline-headline h5, .hero--inline-headline h6 {
        padding: 0 0.975rem;
        margin-bottom: 0 !important; } }
  @media all and (min-width: 55rem) {
    .hero--inline-headline p {
      padding-bottom: 0 !important; } }
  .hero--text {
    color: #790C1B;
    font-size: 0.91rem;
    line-height: 1.04rem;
    text-align: center; }
    @media all and (min-width: 55rem) {
      .hero--text {
        background: #fff;
        padding: 1.04rem 0 0.715rem;
        font-size: 1.3rem;
        line-height: 1.56rem; } }
    @media all and (min-width: 72rem) {
      .hero--text {
        background: #fff;
        padding: 1.17rem 0 1.235rem; } }
    .hero--text h1, .hero--text h2, .hero--text h3, .hero--text h4, .hero--text h5, .hero--text h6 {
      color: #001D31;
      font-weight: 500;
      margin-bottom: 0.195rem; }
      @media all and (min-width: 55rem) {
        .hero--text h1, .hero--text h2, .hero--text h3, .hero--text h4, .hero--text h5, .hero--text h6 {
          padding: 0 0.975rem;
          margin-bottom: 1.105rem; } }
      @media all and (min-width: 72rem) {
        .hero--text h1, .hero--text h2, .hero--text h3, .hero--text h4, .hero--text h5, .hero--text h6 {
          margin-bottom: 1.95rem; } }
    .hero--text p {
      font-weight: 400; }
  .hero--detail-text {
    padding: 0.65rem;
    font-size: 0.91rem;
    line-height: 1.43rem; }
    @media all and (min-width: 55rem) {
      .hero--detail-text {
        display: none; } }
  .hero--more-link {
    text-transform: uppercase;
    font-weight: 500; }
    .hero--more-link i {
      margin-left: 0.325rem; }
  .hero .image--desktop {
    display: none; }
    @media all and (min-width: 55rem) {
      .hero .image--desktop {
        display: block; } }
    .hero .image--desktop img {
      width: 100%; }
  .hero .image--mobile {
    text-align: center; }
    @media all and (min-width: 55rem) {
      .hero .image--mobile {
        display: none; } }
    .hero .image--mobile img {
      width: 100%; }

.content {
  max-width: 57.07rem;
  margin: 0 auto; }
  @media all and (min-width: 55rem) {
    .content {
      padding-top: 2.275rem; } }
  @media all and (min-width: 72rem) {
    .content {
      max-width: 76.7rem; } }
  .content .link-to-top {
    font-weight: 500;
    text-transform: uppercase;
    font-size: inherit;
    padding: 0.975rem 0 0; }
    .content .link-to-top:hover {
      color: #790C1B;
      cursor: pointer; }
  .content-wrapped {
    padding: 0 1.3rem; }

.home .article > h1 {
  display: none; }

.content, .footer {
  color: #001D31;
  font-weight: 300; }
  .content strong, .footer strong {
    font-weight: 500; }
  .content p, .footer p {
    padding-bottom: 0.9375rem; }
  .content a, .footer a {
    text-decoration: none;
    color: inherit;
    cursor: pointer; }
    .content a:hover, .footer a:hover {
      color: #790C1B; }
    .content a.button:hover, .footer a.button:hover {
      color: #CC9800; }

.back-button-box .button {
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  display: inline-block;
  width: auto;
  margin-bottom: 15px; }

/* explizite Klassen für Kirstin */
.language {
  font-style: italic; }

.source {
  font-variant: small-caps; }

em {
  font-style: italic; }

.product {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  margin: 0 0.65rem 1.3rem; }
  @media all and (min-width: 55rem) {
    .product {
      margin: 0 0.65rem 1.3rem;
      width: 30%; } }
  @media all and (min-width: 72rem) {
    .product {
      max-width: none;
      width: 25%; } }
  @media all and (min-width: 55rem) {
    .mini-cart .product {
      width: 100%; } }
  @media all and (min-width: 72rem) {
    .mini-cart .product {
      width: 100%; } }
  .product--header {
    text-align: center;
    font-size: 1.04rem;
    min-height: 4.3225rem; }
  .product--title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.845rem 1.3rem 0rem;
    margin-bottom: 0 !important;
    text-transform: none !important;
    height: 6rem; }
    .product--title .erzeuger-name {
      display: block; }
      .product--title .erzeuger-name:hover {
        color: inherit; }
  .product--description {
    text-align: left;
    color: #790C1B;
    padding: 0 1.3rem 0.52rem 0;
    font-weight: 700;
    font-size: 0.65rem;
    line-height: 0.715rem; }
  .product--details {
    background: rgba(245, 234, 204, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: none;
    padding: 0.65rem 1.3rem;
    font-size: 0.845rem;
    line-height: 1.43rem;
    display: none;
    z-index: 400;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px); }
  .product .inhalt {
    font-weight: 600; }
  .product--innerbox {
    position: relative; }
    @media all and (min-width: 55rem) {
      .product--innerbox {
        display: flex;
        flex-direction: column;
        justify-content: space-between; } }
    .product--innerbox .success {
      display: none;
      position: absolute;
      bottom: 0rem;
      height: 4rem;
      width: 100%;
      padding: 0.64rem 2rem;
      text-align: center;
      color: #d6ad33;
      font-weight: 500;
      background-color: #790c1b;
      z-index: 5; }
  .product .product--image .image--wrapper {
    min-height: 18.2rem; }
  .product--image {
    text-align: center;
    padding: 0 0;
    position: relative;
    max-width: 18.2rem;
    margin: 0 auto;
    width: 100%; }
    .product--image:hover {
      cursor: pointer; }
    .product--image img {
      max-height: 18.2rem; }
  @media all and (min-width: 72rem) {
    .product--grid {
      display: flex;
      flex-direction: row;
      justify-content: stretch; }
      .product--grid > * {
        width: 50%; } }
  .product--pricebox {
    z-index: 400; }
    .product--pricebox .pricebox--value {
      font-size: 0.975rem;
      font-weight: 600;
      text-align: right;
      padding-bottom: 0.455rem;
      padding-right: 2rem; }
    .product--pricebox .pricebox--text {
      font-size: 0.65rem;
      line-height: 0.715rem;
      color: #5D798B;
      text-align: right;
      padding-right: 1rem;
      padding-bottom: 0.325rem;
      line-height: 125%;
      padding-bottom: 0; }
      .product--pricebox .pricebox--text p {
        padding-bottom: 0.325rem; }
      @media screen and (min-width: 880px) {
        .product--pricebox .pricebox--text {
          padding-right: 2rem; } }
      .product--pricebox .pricebox--text p {
        padding-bottom: 0;
        line-height: 125%; }
    .product--pricebox .pricebox--alt {
      background: #d6ad33;
      padding: 10px 10px;
      color: #000000 !important;
      white-space: nowrap; }
      .product--pricebox .pricebox--alt a {
        line-height: 0.78rem;
        text-transform: none !important;
        color: #000000 !important;
        font-weight: 500; }
        .product--pricebox .pricebox--alt a:hover {
          color: #790C1B !important;
          font-weight: 700; }
          .product--pricebox .pricebox--alt a:hover strong {
            color: #790C1B !important; }
      .product--pricebox .pricebox--alt strong {
        color: #000000 !important; }
  .product--actions {
    display: flex;
    width: 100%;
    max-width: 18.85rem;
    margin: 5px 0 auto auto;
    justify-content: flex-end; }
  .product.open .product--details {
    display: block; }
  .product .detail--text {
    margin-bottom: 1.3rem;
    color: #790C1B; }
    .product .detail--text:hover {
      color: #790C1B; }
  .product .detail--more-link {
    text-transform: uppercase;
    font-weight: 500; }
    .product .detail--more-link i {
      margin-left: 0.325rem; }
  .product .price {
    /*   &::before{
           content:'à ';
           font-size: rem(10);
           line-height: rem(11);
       } */ }
    .product .price-before {
      font-size: 0.65rem;
      line-height: 0.715rem; }
      .product .price-before .value {
        position: relative; }
        .product .price-before .value::after {
          display: block;
          content: '';
          position: absolute;
          background: url(/assets/img/decor-stroke.png) center center no-repeat;
          top: 0;
          left: 0;
          height: 100%;
          background-size: 100% auto;
          width: 70%;
          filter: invert(14%) sepia(36%) saturate(5732%) hue-rotate(337deg) brightness(81%) contrast(105%); }
  .product .image--badges {
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    height: 0;
    text-align: right; }
    .product .image--badges .badge {
        /*
        &--vegan {
          &::before {
            background: url('/assets/img/badge-vegan.png') center center no-repeat;
            background-size: 100% auto;
            width: 80%;
            left: 20%;
            top: 10%;
          }
        }

        &--coup-de-coeur {
          &::before {
            background: url('/assets/img/logo_coup_de_coeur.png') center center no-repeat;
            background-size: 100% auto;
            width: 80%;
            left: 20%;
            top: 10%;
          }
          &::after {
            background: none;
          }
        }
        */ }
      .product .image--badges .badge--parker-points {
        height: 4.55rem;
        width: 4.55rem;
        position: relative;
        background: #002E4D;
        border-radius: 50%;
        overflow: visible;
        color: #ffffff;
        padding: 0.975rem 0 0;
        position: absolute;
        left: 55%;
        top: 5.2rem; }
        @media all and (min-width: 72rem) {
          .product .image--badges .badge--parker-points {
            top: 11.7rem; } }
        .product .image--badges .badge--parker-points .value {
          font-size: 0.975rem;
          font-weight: bold;
          letter-spacing: 0.10985rem;
          line-height: 1.17rem; }
        .product .image--badges .badge--parker-points .label {
          font-size: 0.65rem;
          letter-spacing: 0.065rem;
          line-height: 0.78rem;
          text-transform: uppercase; }
        .product .image--badges .badge--parker-points::after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          background: url("/assets/img/badge-points.png") center center no-repeat;
          background-size: 100% auto;
          position: absolute;
          top: 13%;
          left: 0;
          opacity: .5;
          filter: invert(100%) sepia(1%) saturate(67%) hue-rotate(55deg) brightness(115%) contrast(100%); }
      .product .image--badges .badge--vegan, .product .image--badges .badge--organic, .product .image--badges .badge--coup-de-coeur {
        position: relative;
        background: none !important;
        overflow: visible;
        margin-bottom: 3px;
        margin-left: auto;
        margin-right: 2rem;
        /*
        &::before {
          content: '';
          display: block;
          width: 145%;
          height: 100%;
          background: url('/assets/img/badge-organic-alt.png') center center no-repeat;
          background-size: 100% auto;
          position: absolute;
          top: 0;
          left: -35%;
          overflow: visible;
        }
        &::after {
          content: '';
          display: block;
          width: 110%;
          height: 110%;
          background: url('/assets/img/stroke-organic.png') center center no-repeat;
          background-size: 100% auto;
          position: absolute;
          top: -5%;
          left: 5%;
          filter: invert(69%) sepia(21%) saturate(896%) hue-rotate(59deg) brightness(86%) contrast(78%);
        }
        */ }
        .product .image--badges .badge--vegan .badge-icon, .product .image--badges .badge--organic .badge-icon, .product .image--badges .badge--coup-de-coeur .badge-icon {
          max-width: 48px;
          height: auto;
          display: inline; }
  .product .product--notice {
    text-align: left; }
  .product .lieferhinweis {
    color: #274b65;
    display: inline-block;
    margin-top: 3px; }
    .product .lieferhinweis .ausverkauft:after,
    .product .lieferhinweis .lieferbar:after,
    .product .lieferhinweis .reservierbar:after,
    .product .lieferhinweis .subskription:after {
      content: ' ';
      display: inline-block;
      width: 12px;
      height: 12px;
      margin-left: 4px;
      vertical-align: middle;
      -moz-border-radius: 6px;
      -webkit-border-radius: 6px;
      border-radius: 6px; }
    .product .lieferhinweis .ausverkauft:after {
      background-color: #790c1b; }
    .product .lieferhinweis .lieferbar:after {
      background-color: #b0d063; }
    .product .lieferhinweis .reservierbar:after {
      background-color: #f08b1e; }
    .product .lieferhinweis .subskription:after {
      background-color: #274b65; }
  .product .pricebox--text .lieferkommentar,
  .product .pricebox--text .liefermenge {
    color: #790C1B;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px 0 3px 2rem;
    font-size: 10.4px;
    font-weight: 600;
    font-family: "Roboto", sans-serif; }
  .product .liefer-infos .liefermenge:hover,
  .product .liefer-infos .lieferkommentar:hover {
    cursor: pointer; }
  .product .amount-selector {
    width: 7.28rem;
    height: 3.25rem;
    position: relative;
    flex: 0 0 auto; }
    .product .amount-selector input {
      border: none;
      width: 100%;
      height: 100%;
      border: 0.065rem solid #93a5b3;
      text-align: center;
      font-weight: 500;
      font-size: 1.17rem;
      padding-right: 1.625rem;
      -webkit-appearance: none;
      border-radius: 0; }
    .product .amount-selector .amount-buttons {
      position: absolute;
      right: 1px;
      top: 0;
      height: 100%;
      width: 3.25rem; }
      .product .amount-selector .amount-buttons button {
        display: block;
        height: 48%;
        width: 100%;
        border: none;
        background: none;
        font-size: 1.625rem;
        position: relative; }
        .product .amount-selector .amount-buttons button i {
          position: absolute;
          left: 0;
          line-height: 0;
          width: 100%; }
      .product .amount-selector .amount-buttons .button-increase {
        bottom: -0.065rem;
        background-image: url("/img/symbol/angle-up.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center; }
      .product .amount-selector .amount-buttons .button-decrease {
        top: 0.065rem;
        background-image: url("/img/symbol/angle-down.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center; }
  .product .order-button {
    border: none;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 0.975rem; }
    .product .order-button--wrapper {
      width: 11.7rem;
      height: 3.25rem; }
  @media all and (min-width: 72rem) {
    .product--wide {
      max-width: 37.7rem; } }
  @media all and (min-width: 72rem) {
    .product--wide img {
      height: 100%;
      max-height: 22.75rem; } }
  .product--wide .image--wrapper {
    padding-top: 1.3rem; }
    @media all and (min-width: 72rem) {
      .product--wide .image--wrapper {
        padding-top: 1.95rem; } }
  .product--wide .product {
    position: relative; }
    .product--wide .product--breadcrumbs {
      font-size: 0.65rem;
      line-height: 0.715rem;
      color: #5D798B;
      padding: 0.65rem 1.3rem 0.65rem;
      display: none; }
      @media all and (min-width: 72rem) {
        .product--wide .product--breadcrumbs {
          display: block;
          padding-left: 0; } }
    .product--wide .product--header {
      padding-bottom: 0.65rem; }
      @media all and (min-width: 72rem) {
        .product--wide .product--header {
          text-align: left;
          padding-left: 0;
          padding-bottom: 0; } }
    @media all and (min-width: 72rem) {
      .product--wide .product--title {
        padding-left: 0; } }
    .product--wide .product--description {
      padding-bottom: 0.065rem; }
      @media all and (min-width: 72rem) {
        .product--wide .product--description {
          text-align: left;
          padding-left: 0; } }
    .product--wide .product--details {
      height: auto; }
      @media all and (min-width: 72rem) {
        .product--wide .product--details {
          display: block;
          position: static;
          background: none;
          padding-left: 0; } }
  .product--wide .order-button--wrapper {
    width: 100%; }
  .product--wide .detail--text {
    margin-bottom: 0; }
  .product.product--default .product--innerbox .product--image .badge.badge--coup-de-coeur::before {
    left: 7px;
    width: 100%; }

/*
<div class="sales-discount"><span><b>10%</b> Rabatt!</span></div>

<div class="sales-discount"><span><b>5 + 1</b> Flasche gratis</span></div>
*/
.product.in-sale .pricebox--value .price {
  color: #790C1B; }

.sales-discount {
  position: absolute;
  left: 0;
  top: 35%;
  background: #950233e9;
  color: #fff !important;
  width: 50%;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 8px 10px; }
  .sales-discount span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600; }
    .sales-discount span b {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.075rem;
      padding-rigth: 3px; }

.desktop-only .sales-discount {
  padding: 13px 10px;
  font-size: 125%; }

.products, .home--products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  @media all and (min-width: 55rem) {
    .products, .home--products {
      margin: 0 -1.75rem; } }
  .products--category, .home--products--category {
    margin-top: 3.25rem; }
  .products .product, .home--products .product {
    flex: 1 1 auto;
    margin: 0 .65rem 1.3rem; }
    @media all and (min-width: 27.625rem) {
      .products .product, .home--products .product {
        max-width: 290px; } }
    @media all and (min-width: 55rem) {
      .products .product, .home--products .product {
        width: 25%; } }
    @media all and (min-width: 72rem) {
      .products .product, .home--products .product {
        width: 20%; } }
    .products .product.product--wide, .home--products .product.product--wide {
      width: 100%; }
      @media all and (min-width: 27.625rem) {
        .products .product.product--wide, .home--products .product.product--wide {
          max-width: 290px; } }
      @media all and (min-width: 55rem) {
        .products .product.product--wide, .home--products .product.product--wide {
          max-width: 600px;
          width: 50%; } }
    .products .product .addon--text, .home--products .product .addon--text {
      display: none; }
    .products .product.big-box-ALT, .home--products .product.big-box-ALT {
      width: 100%; }
      .products .product.big-box-ALT .product--innerbox, .home--products .product.big-box-ALT .product--innerbox {
        display: flex;
        flex-direction: column; }
        .products .product.big-box-ALT .product--innerbox .product--details, .home--products .product.big-box-ALT .product--innerbox .product--details {
          background: none;
          backdrop-filter: none;
          display: block;
          position: relative;
          height: auto;
          order: 2;
          margin-bottom: 10px; }
          .products .product.big-box-ALT .product--innerbox .product--details .detail--text, .home--products .product.big-box-ALT .product--innerbox .product--details .detail--text {
            color: inherit; }
        .products .product.big-box-ALT .product--innerbox .product--image, .home--products .product.big-box-ALT .product--innerbox .product--image {
          order: 1; }
      .products .product.big-box-ALT .addon--text, .home--products .product.big-box-ALT .addon--text {
        display: flex;
        flex-direction: column;
        text-align: center;
        color: #790C1B;
        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
        width: 100%; }
        @media screen and (min-width: 622px) {
          .products .product.big-box-ALT .addon--text, .home--products .product.big-box-ALT .addon--text {
            position: absolute; } }
        .products .product.big-box-ALT .addon--text .addon-text-1, .home--products .product.big-box-ALT .addon--text .addon-text-1 {
          font-weight: 600; }
        .products .product.big-box-ALT .addon--text .addon-text-2, .home--products .product.big-box-ALT .addon--text .addon-text-2 {
          font-weight: 400; }
      @media screen and (min-width: 580px) {
        .products .product.big-box-ALT, .home--products .product.big-box-ALT {
          max-width: none; }
          .products .product.big-box-ALT .product--header, .home--products .product.big-box-ALT .product--header {
            max-width: none; }
          .products .product.big-box-ALT .product--innerbox, .home--products .product.big-box-ALT .product--innerbox {
            max-width: 50%; }
            .products .product.big-box-ALT .product--innerbox .product--details, .home--products .product.big-box-ALT .product--innerbox .product--details {
              position: absolute;
              left: auto;
              right: -100%; }
          .products .product.big-box-ALT .product--actions, .home--products .product.big-box-ALT .product--actions {
            max-width: 50%;
            padding-left: 10px; } }
      @media screen and (min-width: 622px) {
        .products .product.big-box-ALT, .home--products .product.big-box-ALT {
          width: 100%;
          max-width: 600px; } }
  .products-headline, .home--products-headline {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    margin-top: 1.95rem;
    margin-bottom: 1.625rem; }
    .products-headline--inner, .home--products-headline--inner {
      margin: 0 auto;
      max-width: 42.25rem;
      text-align: center;
      padding: 0 0.975rem; }
      .products-headline--inner hr, .home--products-headline--inner hr {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0; }
    .products-headline h1, .products-headline h2, .products-headline h3, .products-headline h4, .products-headline h5, .products-headline h6, .home--products-headline h1, .home--products-headline h2, .home--products-headline h3, .home--products-headline h4, .home--products-headline h5, .home--products-headline h6 {
      color: "Roboto", sans-serif;
      font-size: 1.1rem;
      line-height: 2rem;
      font-weight: 500; }
    .products-headline .subline, .home--products-headline .subline {
      font-size: 0.91rem;
      font-weight: 500;
      line-height: 1.04rem;
      padding: 0.39rem 0;
      display: block;
      color: #5D798B; }
  .products .image--wrapper, .home--products .image--wrapper {
    display: inline-block; }

.footer {
  max-width: 57.07rem;
  border-top: solid 0.063rem #D7B144;
  margin: 2.925rem auto 0;
  padding: 2.0625rem 0 0; }
  @media all and (min-width: 72rem) {
    .footer {
      max-width: 76.7rem; } }
  .footer .size_b, .footer .size_c {
    height: 2.4rem;
    width: auto; }
  @media all and (min-width: 55rem) {
    .footer-columns {
      display: flex;
      justify-content: space-between; } }
  .footer-column {
    padding: 0 0.9375rem 1.875rem; }
    @media all and (min-width: 55rem) {
      .footer-column {
        padding: 0 0.9375rem;
        max-width: 35%; } }
  .footer .copyright-claim {
    padding: 0 0.9375rem 0.9375rem;
    font-size: 0.7rem; }
  .footer ul {
    padding-bottom: 0.9375rem;
    padding-left: 0.65rem; }
    .footer ul li {
      padding-bottom: 0.325rem;
      position: relative; }
      .footer ul li::before {
        content: '- ';
        position: absolute;
        left: -10px; }

.chosen-container-single {
  width: 100% !important; }
  .chosen-container-single .chosen-single {
    background: none;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none !important;
    border: solid 0.065rem #D7B144;
    height: 3.25rem;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 0.91rem;
    line-height: 1.17rem;
    letter-spacing: 0.065rem;
    padding: 0 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2.275rem !important;
    font-weight: 300; }
    .chosen-container-single .chosen-single span {
      margin-right: 0; }
    .chosen-container-single .chosen-single > div {
      background: url("/assets/img/arrow-vertical.png") center center no-repeat;
      background-size: 100% auto;
      width: 15px;
      margin: 0 15px 0 0;
      transform: scaleY(-1);
      filter: invert(18%) sepia(0%) saturate(0%) hue-rotate(277deg) brightness(104%) contrast(74%); }
    .chosen-container-single .chosen-single:hover > div {
      filter: invert(9%) sepia(93%) saturate(3973%) hue-rotate(343deg) brightness(81%) contrast(98%); }
  .chosen-container-single .chosen-drop {
    border-radius: 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border: solid 0.065rem #D7B144;
    border-top: none;
    padding: 0.65rem 0 0.65rem;
    margin-top: -0.585rem; }
.chosen-container-active.chosen-with-drop .chosen-single {
  background: none;
  border: solid 0.065rem #D7B144; }
  .chosen-container-active.chosen-with-drop .chosen-single > div {
    background: url("/assets/img/arrow-vertical.png") center center no-repeat;
    background-size: 100% auto;
    transform: scaleY(1); }
.chosen-container .chosen-results {
  margin: 0;
  padding: 0; }
.chosen-container li.active-result {
  background: none;
  color: inherit;
  font-family: inherit;
  padding: 0.455rem 1.3rem;
  line-height: 1.17rem !important;
  font-weight: 500;
  font-size: 0.91rem; }
  .chosen-container li.active-result.result-selected {
    background: none;
    display: none; }
  .chosen-container li.active-result.highlighted {
    background: none;
    color: #790C1B; }

form > .chosen-container-single {
  margin-top: 20px; }
  form > .chosen-container-single .chosen-single {
    height: 2.6rem; }

.content .sticky-wrapper {
  height: 0 !important; }
  .content .sticky-wrapper .sticky {
    opacity: 0;
    height: 0; }
    .content .sticky-wrapper .sticky.sticky--productbox {
      display: none;
      left: 50%;
      transform: translate(-50%, -10%) scale(0.98);
      z-index: 1000 !important;
      box-shadow: 0 0.065rem 0.065rem rgba(0, 0, 0, 0.1); }
      .content .sticky-wrapper .sticky.sticky--productbox .product--headline {
        font-size: .9rem;
        padding: 0.65rem 1.3rem 0;
        font-weight: 500;
        margin-bottom: 0.455rem; }
  .content .sticky-wrapper.is-sticky .sticky {
    transition: .25s .1s all;
    height: auto;
    opacity: 1;
    transform: translate(-50%, 0) scale(1); }
    .content .sticky-wrapper.is-sticky .sticky.sticky--productbox {
      display: inline-block; }

body > .sticky-wrapper {
  position: relative;
  z-index: 10000; }

.mini-cart {
  background: white;
  box-shadow: 0 0.195rem 0.195rem rgba(0, 0, 0, 0.2);
  border: 1px solid #D7B144;
  display: none;
  max-height: 70vh;
  max-width: 350px;
  overflow: hidden auto;
  padding: 1.3rem;
  position: fixed;
  right: 0;
  top: 80px;
  width: 100%;
  z-index: 16000;
  /*
  &.open {
    display: block;
  }
  */ }
  @media all and (min-width: 55rem) {
    .mini-cart {
      top: 125px; } }
  @media all and (min-width: 72rem) {
    .mini-cart {
      right: 50%;
      top: 175px;
      transform: translateX(38.35rem); } }
  .mini-cart .button {
    display: block;
    margin: 0 auto;
    max-width: 60%;
    padding: 16px 0;
    text-align: center; }
  .mini-cart .product--pricebox .pricebox--value {
    padding: 0; }
  .mini-cart--product {
    border-bottom: 1px solid #CC9800;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
    max-width: none;
    padding: 1.3rem 0; }
    .mini-cart--product-image, .mini-cart--product-text {
      flex: 1 1 auto; }
    .mini-cart--product-image {
      width: 20%; }
      .mini-cart--product-image .product--image {
        padding: 0; }
        .mini-cart--product-image .product--image img {
          max-height: 7.8rem; }
    .mini-cart--product-text {
      padding: 0.325rem;
      width: 80%; }
      .mini-cart--product-text .product--pricebox {
        padding-top: 0.975rem; }
        .mini-cart--product-text .product--pricebox .pricebox--text {
          text-align: left; }
        .mini-cart--product-text .product--pricebox .pricebox--value {
          padding-top: 0.975rem;
          text-align: right; }
          .mini-cart--product-text .product--pricebox .pricebox--value .price::before {
            display: none; }
      .mini-cart--product-text .product--title {
        padding: 0; }
  .mini-cart--products {
    border-top: 1px solid #CC9800;
    margin-top: 1.3rem; }
  .mini-cart--total {
    border-bottom: 1px solid #CC9800;
    display: flex;
    margin-bottom: 1.3rem;
    padding: 0.975rem; }
    .mini-cart--total-text, .mini-cart--total-value {
      flex: 1 1 auto;
      font-size: 0.91rem;
      font-weight: 500; }
    .mini-cart--total-value {
      text-align: right; }

.cart .cart--groupheader {
  background-color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding-left: 1.3rem !important;
  margin-top: 30px; }
.cart .cart--product {
  background-color: white; }
  .cart .cart--product .pricebox--text .lieferbar:after,
  .cart .cart--product .pricebox--text .reservierbar:after,
  .cart .cart--product .pricebox--text .subskription:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    vertical-align: middle;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px; }
  .cart .cart--product .pricebox--text .lieferbar:after {
    background-color: #B0D063; }
  .cart .cart--product .pricebox--text .reservierbar:after {
    background-color: #F08B1E; }
  .cart .cart--product .pricebox--text .subskription:after {
    background-color: #274B65; }
.cart .product--image img {
  max-height: 6.5rem; }
.cart .amount-selector {
  margin: 15px auto;
  width: 6.5rem;
  height: 3.25rem;
  position: relative;
  flex: 0 0 auto; }
  .cart .amount-selector input {
    background-image: none !important;
    border: none;
    width: 100%;
    height: 100%;
    border: 0.065rem solid #93A5B3;
    text-align: center;
    font-weight: 500;
    font-size: 1.17rem;
    padding-right: 1.625rem;
    -webkit-appearance: none;
    border-radius: 0; }
  .cart .amount-selector .amount-buttons {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3.25rem; }
    .cart .amount-selector .amount-buttons button {
      display: block;
      height: 40%;
      width: 100%;
      border: none;
      background: none;
      font-size: 1.625rem;
      position: relative; }
      .cart .amount-selector .amount-buttons button i {
        position: absolute;
        left: 0;
        line-height: 0;
        width: 100%; }
    .cart .amount-selector .amount-buttons .button-increase {
      bottom: -0.13rem;
      background-image: url("/img/symbol/angle-up.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
    .cart .amount-selector .amount-buttons .button-decrease {
      top: 0.585rem;
      background-image: url("/img/symbol/angle-down.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
.cart .cart--intro {
  background-color: #002E4D;
  color: #CC9800;
  font-weight: bold;
  padding: 10px; }
  @media all and (max-width: 879px) {
    .cart .cart--intro {
      margin-bottom: -30px; } }
.cart .cart--free-shipping {
  background-color: #E4E8EA;
  color: #002E4D;
  font-weight: bold;
  margin: 10px 0;
  padding: 10px 20px; }
.cart .cart--header,
.cart .cart--info,
.cart .cart--product,
.cart .cart--shipping-row,
.cart .cart--shipping-title,
.cart .cart--subtotal,
.cart .cart--tax,
.cart .cart--total,
.cart .cart--voucher {
  display: flex;
  flex-wrap: wrap; }
  .cart .cart--header .cart--cell,
  .cart .cart--info .cart--cell,
  .cart .cart--product .cart--cell,
  .cart .cart--shipping-row .cart--cell,
  .cart .cart--shipping-title .cart--cell,
  .cart .cart--subtotal .cart--cell,
  .cart .cart--tax .cart--cell,
  .cart .cart--total .cart--cell,
  .cart .cart--voucher .cart--cell {
    flex: 1 1 auto; }
    .cart .cart--header .cart--cell:nth-child(1),
    .cart .cart--info .cart--cell:nth-child(1),
    .cart .cart--product .cart--cell:nth-child(1),
    .cart .cart--shipping-row .cart--cell:nth-child(1),
    .cart .cart--shipping-title .cart--cell:nth-child(1),
    .cart .cart--subtotal .cart--cell:nth-child(1),
    .cart .cart--tax .cart--cell:nth-child(1),
    .cart .cart--total .cart--cell:nth-child(1),
    .cart .cart--voucher .cart--cell:nth-child(1) {
      order: 1;
      width: 25%; }
    .cart .cart--header .cart--cell:nth-child(2),
    .cart .cart--info .cart--cell:nth-child(2),
    .cart .cart--product .cart--cell:nth-child(2),
    .cart .cart--shipping-row .cart--cell:nth-child(2),
    .cart .cart--shipping-title .cart--cell:nth-child(2),
    .cart .cart--subtotal .cart--cell:nth-child(2),
    .cart .cart--tax .cart--cell:nth-child(2),
    .cart .cart--total .cart--cell:nth-child(2),
    .cart .cart--voucher .cart--cell:nth-child(2) {
      order: 2;
      width: 50%; }
      .cart .cart--header .cart--cell:nth-child(2).full,
      .cart .cart--info .cart--cell:nth-child(2).full,
      .cart .cart--product .cart--cell:nth-child(2).full,
      .cart .cart--shipping-row .cart--cell:nth-child(2).full,
      .cart .cart--shipping-title .cart--cell:nth-child(2).full,
      .cart .cart--subtotal .cart--cell:nth-child(2).full,
      .cart .cart--tax .cart--cell:nth-child(2).full,
      .cart .cart--total .cart--cell:nth-child(2).full,
      .cart .cart--voucher .cart--cell:nth-child(2).full {
        width: 75%; }
    .cart .cart--header .cart--cell:nth-child(3),
    .cart .cart--info .cart--cell:nth-child(3),
    .cart .cart--product .cart--cell:nth-child(3),
    .cart .cart--shipping-row .cart--cell:nth-child(3),
    .cart .cart--shipping-title .cart--cell:nth-child(3),
    .cart .cart--subtotal .cart--cell:nth-child(3),
    .cart .cart--tax .cart--cell:nth-child(3),
    .cart .cart--total .cart--cell:nth-child(3),
    .cart .cart--voucher .cart--cell:nth-child(3) {
      order: 4;
      width: 25%; }
    .cart .cart--header .cart--cell:nth-child(4),
    .cart .cart--info .cart--cell:nth-child(4),
    .cart .cart--product .cart--cell:nth-child(4),
    .cart .cart--shipping-row .cart--cell:nth-child(4),
    .cart .cart--shipping-title .cart--cell:nth-child(4),
    .cart .cart--subtotal .cart--cell:nth-child(4),
    .cart .cart--tax .cart--cell:nth-child(4),
    .cart .cart--total .cart--cell:nth-child(4),
    .cart .cart--voucher .cart--cell:nth-child(4) {
      order: 5;
      width: 25%; }
    .cart .cart--header .cart--cell:nth-child(5),
    .cart .cart--info .cart--cell:nth-child(5),
    .cart .cart--product .cart--cell:nth-child(5),
    .cart .cart--shipping-row .cart--cell:nth-child(5),
    .cart .cart--shipping-title .cart--cell:nth-child(5),
    .cart .cart--subtotal .cart--cell:nth-child(5),
    .cart .cart--tax .cart--cell:nth-child(5),
    .cart .cart--total .cart--cell:nth-child(5),
    .cart .cart--voucher .cart--cell:nth-child(5) {
      order: 6;
      width: 25%; }
    .cart .cart--header .cart--cell:nth-child(6),
    .cart .cart--info .cart--cell:nth-child(6),
    .cart .cart--product .cart--cell:nth-child(6),
    .cart .cart--shipping-row .cart--cell:nth-child(6),
    .cart .cart--shipping-title .cart--cell:nth-child(6),
    .cart .cart--subtotal .cart--cell:nth-child(6),
    .cart .cart--tax .cart--cell:nth-child(6),
    .cart .cart--total .cart--cell:nth-child(6),
    .cart .cart--voucher .cart--cell:nth-child(6) {
      order: 3;
      width: 25%; }
    @media all and (min-width: 55rem) {
      .cart .cart--header .cart--cell:nth-child(1),
      .cart .cart--info .cart--cell:nth-child(1),
      .cart .cart--product .cart--cell:nth-child(1),
      .cart .cart--shipping-row .cart--cell:nth-child(1),
      .cart .cart--shipping-title .cart--cell:nth-child(1),
      .cart .cart--subtotal .cart--cell:nth-child(1),
      .cart .cart--tax .cart--cell:nth-child(1),
      .cart .cart--total .cart--cell:nth-child(1),
      .cart .cart--voucher .cart--cell:nth-child(1) {
        order: 1;
        width: 15%; }
      .cart .cart--header .cart--cell:nth-child(2),
      .cart .cart--info .cart--cell:nth-child(2),
      .cart .cart--product .cart--cell:nth-child(2),
      .cart .cart--shipping-row .cart--cell:nth-child(2),
      .cart .cart--shipping-title .cart--cell:nth-child(2),
      .cart .cart--subtotal .cart--cell:nth-child(2),
      .cart .cart--tax .cart--cell:nth-child(2),
      .cart .cart--total .cart--cell:nth-child(2),
      .cart .cart--voucher .cart--cell:nth-child(2) {
        order: 2;
        width: 36%; }
        .cart .cart--header .cart--cell:nth-child(2).full,
        .cart .cart--info .cart--cell:nth-child(2).full,
        .cart .cart--product .cart--cell:nth-child(2).full,
        .cart .cart--shipping-row .cart--cell:nth-child(2).full,
        .cart .cart--shipping-title .cart--cell:nth-child(2).full,
        .cart .cart--subtotal .cart--cell:nth-child(2).full,
        .cart .cart--tax .cart--cell:nth-child(2).full,
        .cart .cart--total .cart--cell:nth-child(2).full,
        .cart .cart--voucher .cart--cell:nth-child(2).full {
          width: 85%; }
      .cart .cart--header .cart--cell:nth-child(3),
      .cart .cart--info .cart--cell:nth-child(3),
      .cart .cart--product .cart--cell:nth-child(3),
      .cart .cart--shipping-row .cart--cell:nth-child(3),
      .cart .cart--shipping-title .cart--cell:nth-child(3),
      .cart .cart--subtotal .cart--cell:nth-child(3),
      .cart .cart--tax .cart--cell:nth-child(3),
      .cart .cart--total .cart--cell:nth-child(3),
      .cart .cart--voucher .cart--cell:nth-child(3) {
        order: 3;
        width: 15%; }
        .cart .cart--header .cart--cell:nth-child(3) .product--title,
        .cart .cart--info .cart--cell:nth-child(3) .product--title,
        .cart .cart--product .cart--cell:nth-child(3) .product--title,
        .cart .cart--shipping-row .cart--cell:nth-child(3) .product--title,
        .cart .cart--shipping-title .cart--cell:nth-child(3) .product--title,
        .cart .cart--subtotal .cart--cell:nth-child(3) .product--title,
        .cart .cart--tax .cart--cell:nth-child(3) .product--title,
        .cart .cart--total .cart--cell:nth-child(3) .product--title,
        .cart .cart--voucher .cart--cell:nth-child(3) .product--title {
          display: none; }
      .cart .cart--header .cart--cell:nth-child(4),
      .cart .cart--info .cart--cell:nth-child(4),
      .cart .cart--product .cart--cell:nth-child(4),
      .cart .cart--shipping-row .cart--cell:nth-child(4),
      .cart .cart--shipping-title .cart--cell:nth-child(4),
      .cart .cart--subtotal .cart--cell:nth-child(4),
      .cart .cart--tax .cart--cell:nth-child(4),
      .cart .cart--total .cart--cell:nth-child(4),
      .cart .cart--voucher .cart--cell:nth-child(4) {
        order: 4;
        width: 15%; }
        .cart .cart--header .cart--cell:nth-child(4) .product--title,
        .cart .cart--info .cart--cell:nth-child(4) .product--title,
        .cart .cart--product .cart--cell:nth-child(4) .product--title,
        .cart .cart--shipping-row .cart--cell:nth-child(4) .product--title,
        .cart .cart--shipping-title .cart--cell:nth-child(4) .product--title,
        .cart .cart--subtotal .cart--cell:nth-child(4) .product--title,
        .cart .cart--tax .cart--cell:nth-child(4) .product--title,
        .cart .cart--total .cart--cell:nth-child(4) .product--title,
        .cart .cart--voucher .cart--cell:nth-child(4) .product--title {
          display: none; }
      .cart .cart--header .cart--cell:nth-child(5),
      .cart .cart--info .cart--cell:nth-child(5),
      .cart .cart--product .cart--cell:nth-child(5),
      .cart .cart--shipping-row .cart--cell:nth-child(5),
      .cart .cart--shipping-title .cart--cell:nth-child(5),
      .cart .cart--subtotal .cart--cell:nth-child(5),
      .cart .cart--tax .cart--cell:nth-child(5),
      .cart .cart--total .cart--cell:nth-child(5),
      .cart .cart--voucher .cart--cell:nth-child(5) {
        order: 5;
        width: 15%; }
        .cart .cart--header .cart--cell:nth-child(5) .product--title,
        .cart .cart--info .cart--cell:nth-child(5) .product--title,
        .cart .cart--product .cart--cell:nth-child(5) .product--title,
        .cart .cart--shipping-row .cart--cell:nth-child(5) .product--title,
        .cart .cart--shipping-title .cart--cell:nth-child(5) .product--title,
        .cart .cart--subtotal .cart--cell:nth-child(5) .product--title,
        .cart .cart--tax .cart--cell:nth-child(5) .product--title,
        .cart .cart--total .cart--cell:nth-child(5) .product--title,
        .cart .cart--voucher .cart--cell:nth-child(5) .product--title {
          display: none; }
      .cart .cart--header .cart--cell:nth-child(6),
      .cart .cart--info .cart--cell:nth-child(6),
      .cart .cart--product .cart--cell:nth-child(6),
      .cart .cart--shipping-row .cart--cell:nth-child(6),
      .cart .cart--shipping-title .cart--cell:nth-child(6),
      .cart .cart--subtotal .cart--cell:nth-child(6),
      .cart .cart--tax .cart--cell:nth-child(6),
      .cart .cart--total .cart--cell:nth-child(6),
      .cart .cart--voucher .cart--cell:nth-child(6) {
        order: 6;
        width: 4%; }
        .cart .cart--header .cart--cell:nth-child(6) .product--title,
        .cart .cart--info .cart--cell:nth-child(6) .product--title,
        .cart .cart--product .cart--cell:nth-child(6) .product--title,
        .cart .cart--shipping-row .cart--cell:nth-child(6) .product--title,
        .cart .cart--shipping-title .cart--cell:nth-child(6) .product--title,
        .cart .cart--subtotal .cart--cell:nth-child(6) .product--title,
        .cart .cart--tax .cart--cell:nth-child(6) .product--title,
        .cart .cart--total .cart--cell:nth-child(6) .product--title,
        .cart .cart--voucher .cart--cell:nth-child(6) .product--title {
          display: none; } }
.cart .cart--actions {
  padding: 1.3rem 1.3rem 1.3rem 0; }
  .cart .cart--actions::after {
    clear: both;
    content: '';
    display: block; }
  .cart .cart--actions .button {
    display: block;
    vertical-align: bottom;
    height: 50px;
    text-align: center;
    text-transform: uppercase;
    margin: 10px auto;
    padding: 15px;
    width: 100%;
    max-width: 19.5rem; }
    .cart .cart--actions .button.continue {
      background-color: #E4E8EA;
      margin: 10px auto;
      text-transform: none; }
    .cart .cart--actions .button.button-checkout {
      width: 100%;
      max-width: 19.5rem; }
    .cart .cart--actions .button:hover {
      color: #CC9800; }
    @media all and (min-width: 55rem) {
      .cart .cart--actions .button {
        float: right;
        margin-left: 20px;
        margin-top: 0;
        margin-bottom: 0;
        width: auto; }
        .cart .cart--actions .button.continue {
          float: left;
          margin-left: 1.3rem;
          margin-right: 20px;
          margin-top: 0;
          margin-bottom: 0; }
        .cart .cart--actions .button.button-checkout {
          width: 13rem; } }
.cart .cart--header {
  background-color: white;
  display: none;
  padding: 30px 0 5px; }
  @media all and (min-width: 880px) {
    .cart .cart--header {
      margin-bottom: -30px; } }
  @media all and (min-width: 55rem) {
    .cart .cart--header {
      display: flex; } }
  .cart .cart--header .cart--cell {
    font-weight: 700;
    text-align: center; }
    .cart .cart--header .cart--cell.no-wrap {
      white-space: nowrap; }
    .cart .cart--header .cart--cell:nth-child(2) {
      text-align: left; }
    .cart .cart--header .cart--cell:nth-child(4), .cart .cart--header .cart--cell:nth-child(5) {
      text-align: right;
      padding-right: 2rem; }
.cart .cart--groupheader {
  padding-left: 1.3rem;
  padding-bottom: 0.65rem;
  padding-top: 0.65rem; }
  @media all and (min-width: 55rem) {
    .cart .cart--groupheader {
      padding-left: 15%; } }
.cart .cart--product {
  border-top: 1px solid #CC9800;
  padding: 20px 0; }
  .cart .cart--product .cart--cell input[type="number"] {
    border: 1px solid #93A5B3;
    border-radius: 0;
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
    padding: 15px;
    width: 100px; }
  .cart .cart--product .cart--cell.no-wrap {
    white-space: nowrap; }
  .cart .cart--product .cart--cell.cell--amount {
    padding-left: 1.3rem; }
    @media all and (min-width: 55rem) {
      .cart .cart--product .cart--cell.cell--amount {
        padding-left: 0; } }
  .cart .cart--product .cart--cell.cell--price {
    padding-left: 0.975rem; }
    @media all and (min-width: 55rem) {
      .cart .cart--product .cart--cell.cell--price {
        padding-left: 0; } }
  .cart .cart--product .cart--cell.cell--price-total {
    padding-right: 1.3rem; }
    @media all and (min-width: 55rem) {
      .cart .cart--product .cart--cell.cell--price-total {
        padding-right: 0; } }
  @media all and (max-width: 54.999rem) {
    .cart .cart--product .cart--cell.cell--amount, .cart .cart--product .cart--cell.cell--price, .cart .cart--product .cart--cell.cell--price-total {
      text-align: left;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: flex-start; }
      .cart .cart--product .cart--cell.cell--amount .amount-selector, .cart .cart--product .cart--cell.cell--price .amount-selector, .cart .cart--product .cart--cell.cell--price-total .amount-selector {
        margin: 0.325rem auto 0 0; }
      .cart .cart--product .cart--cell.cell--amount .pricebox--value, .cart .cart--product .cart--cell.cell--price .pricebox--value, .cart .cart--product .cart--cell.cell--price-total .pricebox--value {
        text-align: left; } }
  .cart .cart--product .cart--cell .cart--delete {
    display: block;
    padding-top: 15px; }
  .cart .cart--product .cart--cell .product--image {
    padding: 0; }
  .cart .cart--product .cart--cell .product--pricebox {
    padding-top: 15px; }
  .cart .cart--product .cart--cell:nth-child(2) .product--pricebox .pricebox--text {
    text-align: left; }
  .cart .cart--product .cart--cell .product--title {
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px; }
.cart .cart--shipping .cart--shipping-title {
  font-size: 14px;
  font-weight: bold;
  padding: 0 0 10px; }
.cart .cart--shipping .cart--shipping-row {
  padding: 0 0 10px; }
  .cart .cart--shipping .cart--shipping-row:last-child {
    padding: 0 0 20px; }
  .cart .cart--shipping .cart--shipping-row input {
    margin: 0; }
  .cart .cart--shipping .cart--shipping-row label {
    position: relative; }
    .cart .cart--shipping .cart--shipping-row label::after {
      top: 50%;
      left: 0; }
.cart .cart--info,
.cart .cart--tax {
  padding: 0 0 20px; }
.cart .cart--subtotal {
  border-top: 1px solid #CC9800;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 0; }
.cart .cart--total {
  border-top: 1px solid #CC9800;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 0; }
.cart .cart--voucher {
  padding: 20px 0; }
  .cart .cart--voucher .voucher-success {
    font-weight: 500; }
  .cart .cart--voucher .input-voucher--inner {
    display: flex; }
  .cart .cart--voucher input[type="text"] {
    border-radius: 0;
    padding: 11px 15px;
    max-width: 300px;
    box-shadow: none;
    margin-bottom: 1.3rem;
    width: 100%;
    height: 50px;
    border: 0.065rem solid #93A5B3;
    font-size: 0.91rem;
    font-weight: 500;
    -webkit-appearance: none; }
    @media all and (min-width: 55rem) {
      .cart .cart--voucher input[type="text"] {
        margin-bottom: 0; } }
  .cart .cart--voucher .button {
    display: inline-block;
    border: none;
    background: #EBD699;
    font-weight: 500;
    font-size: 0.975rem;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
    transition: all .25s;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    margin-left: 10px;
    width: 210px;
    outline: none !important;
    margin-bottom: 1.3rem; }
    @media all and (min-width: 55rem) {
      .cart .cart--voucher .button {
        margin-bottom: 0; } }
    .cart .cart--voucher .button:hover {
      color: #CC9800; }
  .cart .cart--voucher .cart--cell:nth-child(1) {
    display: none; }
  .cart .cart--voucher .cart--cell.no-wrap {
    white-space: nowrap; }
  .cart .cart--voucher .cart--cell:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; }
  @media all and (min-width: 55rem) {
    .cart .cart--voucher .cart--cell:nth-child(1) {
      display: block; }
    .cart .cart--voucher .cart--cell:nth-child(2) {
      padding-left: 0;
      padding-right: 0;
      width: 85%; } }
.cart .cart--info .cart--cell:nth-child(2),
.cart .cart--product .cart--cell:nth-child(2),
.cart .cart--shipping-row .cart--cell:nth-child(2),
.cart .cart--shipping-title .cart--cell:nth-child(2),
.cart .cart--subtotal .cart--cell:nth-child(2),
.cart .cart--tax .cart--cell:nth-child(2),
.cart .cart--total .cart--cell:nth-child(2),
.cart .cart--voucher .cart--cell:nth-child(2) {
  text-align: left; }
.cart .cart--info .cart--cell.no-wrap,
.cart .cart--product .cart--cell.no-wrap,
.cart .cart--shipping-row .cart--cell.no-wrap,
.cart .cart--shipping-title .cart--cell.no-wrap,
.cart .cart--subtotal .cart--cell.no-wrap,
.cart .cart--tax .cart--cell.no-wrap,
.cart .cart--total .cart--cell.no-wrap,
.cart .cart--voucher .cart--cell.no-wrap {
  white-space: nowrap; }
.cart .cart--info .cart--cell:nth-child(3),
.cart .cart--product .cart--cell:nth-child(3),
.cart .cart--shipping-row .cart--cell:nth-child(3),
.cart .cart--shipping-title .cart--cell:nth-child(3),
.cart .cart--subtotal .cart--cell:nth-child(3),
.cart .cart--tax .cart--cell:nth-child(3),
.cart .cart--total .cart--cell:nth-child(3),
.cart .cart--voucher .cart--cell:nth-child(3) {
  text-align: center; }
.cart .cart--info .cart--cell:nth-child(4),
.cart .cart--product .cart--cell:nth-child(4),
.cart .cart--shipping-row .cart--cell:nth-child(4),
.cart .cart--shipping-title .cart--cell:nth-child(4),
.cart .cart--subtotal .cart--cell:nth-child(4),
.cart .cart--tax .cart--cell:nth-child(4),
.cart .cart--total .cart--cell:nth-child(4),
.cart .cart--voucher .cart--cell:nth-child(4) {
  text-align: center; }
.cart .cart--info .cart--cell:nth-child(5),
.cart .cart--product .cart--cell:nth-child(5),
.cart .cart--shipping-row .cart--cell:nth-child(5),
.cart .cart--shipping-title .cart--cell:nth-child(5),
.cart .cart--subtotal .cart--cell:nth-child(5),
.cart .cart--tax .cart--cell:nth-child(5),
.cart .cart--total .cart--cell:nth-child(5),
.cart .cart--voucher .cart--cell:nth-child(5) {
  text-align: right; }
.cart .cart--info .cart--cell:nth-child(6),
.cart .cart--product .cart--cell:nth-child(6),
.cart .cart--shipping-row .cart--cell:nth-child(6),
.cart .cart--shipping-title .cart--cell:nth-child(6),
.cart .cart--subtotal .cart--cell:nth-child(6),
.cart .cart--tax .cart--cell:nth-child(6),
.cart .cart--total .cart--cell:nth-child(6),
.cart .cart--voucher .cart--cell:nth-child(6) {
  text-align: center; }
.cart .cart--info .cart--cell:nth-child(1),
.cart .cart--shipping-row .cart--cell:nth-child(1),
.cart .cart--shipping-title .cart--cell:nth-child(1),
.cart .cart--subtotal .cart--cell:nth-child(1),
.cart .cart--tax .cart--cell:nth-child(1),
.cart .cart--total .cart--cell:nth-child(1) {
  display: none; }
.cart .cart--info .cart--cell:nth-child(2),
.cart .cart--shipping-row .cart--cell:nth-child(2),
.cart .cart--shipping-title .cart--cell:nth-child(2),
.cart .cart--subtotal .cart--cell:nth-child(2),
.cart .cart--tax .cart--cell:nth-child(2),
.cart .cart--total .cart--cell:nth-child(2) {
  padding-left: 20px;
  padding-right: 20px;
  width: 70%; }
.cart .cart--info .cart--cell:nth-child(3),
.cart .cart--shipping-row .cart--cell:nth-child(3),
.cart .cart--shipping-title .cart--cell:nth-child(3),
.cart .cart--subtotal .cart--cell:nth-child(3),
.cart .cart--tax .cart--cell:nth-child(3),
.cart .cart--total .cart--cell:nth-child(3) {
  width: 10%; }
.cart .cart--info .cart--cell:nth-child(4),
.cart .cart--shipping-row .cart--cell:nth-child(4),
.cart .cart--shipping-title .cart--cell:nth-child(4),
.cart .cart--subtotal .cart--cell:nth-child(4),
.cart .cart--tax .cart--cell:nth-child(4),
.cart .cart--total .cart--cell:nth-child(4) {
  display: none; }
.cart .cart--info .cart--cell:nth-child(5),
.cart .cart--shipping-row .cart--cell:nth-child(5),
.cart .cart--shipping-title .cart--cell:nth-child(5),
.cart .cart--subtotal .cart--cell:nth-child(5),
.cart .cart--tax .cart--cell:nth-child(5),
.cart .cart--total .cart--cell:nth-child(5) {
  width: 20%;
  padding-right: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end; }
  @media all and (min-width: 55rem) {
    .cart .cart--info .cart--cell:nth-child(5),
    .cart .cart--shipping-row .cart--cell:nth-child(5),
    .cart .cart--shipping-title .cart--cell:nth-child(5),
    .cart .cart--subtotal .cart--cell:nth-child(5),
    .cart .cart--tax .cart--cell:nth-child(5),
    .cart .cart--total .cart--cell:nth-child(5) {
      padding-right: 2rem; } }
.cart .cart--info .cart--cell:nth-child(6),
.cart .cart--shipping-row .cart--cell:nth-child(6),
.cart .cart--shipping-title .cart--cell:nth-child(6),
.cart .cart--subtotal .cart--cell:nth-child(6),
.cart .cart--tax .cart--cell:nth-child(6),
.cart .cart--total .cart--cell:nth-child(6) {
  display: none; }
@media all and (min-width: 55rem) {
  .cart .cart--info .cart--cell:nth-child(1),
  .cart .cart--shipping-row .cart--cell:nth-child(1),
  .cart .cart--shipping-title .cart--cell:nth-child(1),
  .cart .cart--subtotal .cart--cell:nth-child(1),
  .cart .cart--tax .cart--cell:nth-child(1),
  .cart .cart--total .cart--cell:nth-child(1) {
    display: block;
    flex: 0 0 1.3rem; }
  .cart .cart--info .cart--cell:nth-child(2),
  .cart .cart--shipping-row .cart--cell:nth-child(2),
  .cart .cart--shipping-title .cart--cell:nth-child(2),
  .cart .cart--subtotal .cart--cell:nth-child(2),
  .cart .cart--tax .cart--cell:nth-child(2),
  .cart .cart--total .cart--cell:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
    width: 48%; }
  .cart .cart--info .cart--cell:nth-child(3),
  .cart .cart--shipping-row .cart--cell:nth-child(3),
  .cart .cart--shipping-title .cart--cell:nth-child(3),
  .cart .cart--subtotal .cart--cell:nth-child(3),
  .cart .cart--tax .cart--cell:nth-child(3),
  .cart .cart--total .cart--cell:nth-child(3) {
    width: 15%; }
  .cart .cart--info .cart--cell:nth-child(4),
  .cart .cart--shipping-row .cart--cell:nth-child(4),
  .cart .cart--shipping-title .cart--cell:nth-child(4),
  .cart .cart--subtotal .cart--cell:nth-child(4),
  .cart .cart--tax .cart--cell:nth-child(4),
  .cart .cart--total .cart--cell:nth-child(4) {
    display: block; }
  .cart .cart--info .cart--cell:nth-child(5),
  .cart .cart--shipping-row .cart--cell:nth-child(5),
  .cart .cart--shipping-title .cart--cell:nth-child(5),
  .cart .cart--subtotal .cart--cell:nth-child(5),
  .cart .cart--tax .cart--cell:nth-child(5),
  .cart .cart--total .cart--cell:nth-child(5) {
    width: 15%; }
  .cart .cart--info .cart--cell:nth-child(6),
  .cart .cart--shipping-row .cart--cell:nth-child(6),
  .cart .cart--shipping-title .cart--cell:nth-child(6),
  .cart .cart--subtotal .cart--cell:nth-child(6),
  .cart .cart--tax .cart--cell:nth-child(6),
  .cart .cart--total .cart--cell:nth-child(6) {
    display: block; } }
@media all and (min-width: 55rem) {
  .cart .cart--shipping-row .cart--cell:nth-child(2) {
    padding-left: 0;
    padding-right: 0; } }
.cart .chosen-container-single .chosen-single {
  border-color: #93A5B3; }

.cart--empty {
  text-align: center;
  max-width: 32.5rem;
  margin: 0 auto; }
  .cart--empty .headline {
    font-weight: 500;
    text-align: center; }

.page--cart .campaign-advice {
  padding: 10px;
  font-weight: 600;
  background: #FFD700; }
  .page--cart .campaign-advice p {
    padding-bottom: 0; }
.page--cart .subskription-advice {
  padding: 0 0 0 1.3rem; }
.page--cart .jaamode--box {
  padding: 0 0 0 1.3rem; }

.checkout-info {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.925rem;
  padding-bottom: 30px; }
  .checkout-info .checkout-info--column {
    flex: 1 1 auto;
    padding: 30px 30px 0;
    width: 100%; }
    .checkout-info .checkout-info--column .checkout-info--title {
      clear: both;
      font-weight: bold;
      text-transform: uppercase; }
      .checkout-info .checkout-info--column .checkout-info--title::after {
        content: '+';
        display: block;
        float: right; }
    .checkout-info .checkout-info--column .checkout-info--text {
      display: none; }
    .checkout-info .checkout-info--column.open .checkout-info--text {
      display: block; }
    .checkout-info .checkout-info--column.open .checkout-info--title::after {
      content: '-'; }
  @media all and (min-width: 55rem) {
    .checkout-info {
      flex-wrap: nowrap;
      padding-bottom: 0; }
      .checkout-info .checkout-info--column {
        padding: 30px;
        width: auto; }
        .checkout-info .checkout-info--column .checkout-info--text {
          display: block; }
        .checkout-info .checkout-info--column .checkout-info--title {
          display: block; }
          .checkout-info .checkout-info--column .checkout-info--title::after {
            display: none; } }

.checkout {
  background-color: white; }
  .checkout .product--image img {
    max-height: 6.5rem; }
  .checkout .amount-selector {
    margin: 15px auto;
    width: 6.5rem;
    height: 3.25rem;
    position: relative;
    flex: 0 0 auto; }
    .checkout .amount-selector input {
      background-image: none !important; }
  .checkout .cart--groupheader {
    background-color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding-left: 1.3rem !important;
    margin-top: 30px; }
  .checkout .checkout--content .checkout--account::after {
    clear: both;
    content: '';
    display: block; }
  .checkout .checkout--content .checkout--account .checkout--account-left,
  .checkout .checkout--content .checkout--account .checkout--account-right {
    float: left;
    width: 100%; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--account .checkout--account-left,
      .checkout .checkout--content .checkout--account .checkout--account-right {
        width: 50%; } }
  .checkout .checkout--content .checkout--account .checkout--account-login-info {
    background-color: #5D798B;
    font-size: 10px;
    margin: 20px 0; }
    .checkout .checkout--content .checkout--account .checkout--account-login-info a {
      float: right; }
    .checkout .checkout--content .checkout--account .checkout--account-login-info p {
      float: left; }
  .checkout .checkout--content .checkout--account .checkout--account-form input[type="text"],
  .checkout .checkout--content .checkout--account .checkout--account-form input[type="password"] {
    border: 1px solid #93A5B3;
    border-radius: 0;
    display: block;
    font-size: 14px;
    margin: 20px 0 0;
    padding: 11px 15px;
    height: 40px;
    width: 100%;
    box-shadow: none; }
  .checkout .checkout--content .checkout--account .checkout--account-form .button {
    display: inline-block;
    vertical-align: bottom;
    height: 50px;
    width: 200px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 15px 0; }
  .checkout .checkout--content .checkout--account .checkout--account-guest {
    border-top: 1px solid #CC9800; }
  .checkout .checkout--content .checkout--account .checkout--account-guest,
  .checkout .checkout--content .checkout--account .checkout--account-login,
  .checkout .checkout--content .checkout--account .checkout--account-register {
    padding: 45px; }
  .checkout .checkout--content .checkout--account .checkout--account-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .checkout .checkout--content .checkout--address .checkout--address-left,
  .checkout .checkout--content .checkout--address .checkout--address-right {
    float: left;
    width: 100%; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--address .checkout--address-left,
      .checkout .checkout--content .checkout--address .checkout--address-right {
        width: 50%; } }
  .checkout .checkout--content .checkout--address .checkout--address-billing,
  .checkout .checkout--content .checkout--address .checkout--shipping {
    padding: 45px 45px 20px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--address .checkout--address-billing,
      .checkout .checkout--content .checkout--address .checkout--shipping {
        padding: 45px; } }
  .checkout .checkout--content .checkout--address .checkout--address-abholer,
  .checkout .checkout--content .checkout--address .checkout--address-shipping,
  .checkout .checkout--content .checkout--address .checkout--address-dhl,
  .checkout .checkout--content .checkout--address .checkout--address-business {
    padding: 20px 0; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--address .checkout--address-abholer,
      .checkout .checkout--content .checkout--address .checkout--address-shipping,
      .checkout .checkout--content .checkout--address .checkout--address-dhl,
      .checkout .checkout--content .checkout--address .checkout--address-business {
        padding: 25px 0; } }
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-dhl-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-dhl-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-dhl-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-dhl-activator {
      display: block; }
      .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-business-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-abholer-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-shipping-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-dhl-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-business-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-abholer-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-shipping-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-dhl-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-business-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-abholer-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-shipping-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-dhl-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-business-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-abholer-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-shipping-activator label::after,
      .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-dhl-activator label::after {
        top: 10px; }
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-abholer .checkout--address-dhl-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping .checkout--address-dhl-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl .checkout--address-dhl-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business .checkout--address-dhl-fields {
      display: none; }
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-dhl-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-dhl-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-dhl-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-business-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-abholer-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-shipping-activator,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-dhl-activator {
      margin-bottom: 10px; }
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-abholer.open .checkout--address-dhl-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-shipping.open .checkout--address-dhl-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-dhl.open .checkout--address-dhl-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-business-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-abholer-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-shipping-fields,
    .checkout .checkout--content .checkout--address .checkout--address-business.open .checkout--address-dhl-fields {
      display: block;
      padding-top: 10px; }
  .checkout .checkout--content .checkout--address .checkout--address-actions {
    clear: both; }
  .checkout .checkout--content .checkout--address .checkout--address-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .checkout .checkout--content .checkout--address .checkout--address-subtitle {
    margin-bottom: 15px; }
  .checkout .checkout--content .checkout--address .checkout--address-actions {
    padding: 15px 45px 0; }
    .checkout .checkout--content .checkout--address .checkout--address-actions::after {
      clear: both;
      content: '';
      display: block; }
    .checkout .checkout--content .checkout--address .checkout--address-actions .button {
      display: block;
      vertical-align: bottom;
      height: 50px;
      width: 100%;
      max-width: 16.25rem;
      text-align: center;
      text-transform: uppercase;
      margin: 20px auto;
      padding: 15px; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--address .checkout--address-actions .button {
          float: right; } }
      .checkout .checkout--content .checkout--address .checkout--address-actions .button.back {
        background-color: #E4E8EA;
        margin-left: auto;
        margin-right: auto; }
        @media all and (min-width: 55rem) {
          .checkout .checkout--content .checkout--address .checkout--address-actions .button.back {
            margin-left: 0;
            margin-right: 10px;
            float: left; } }
  .checkout .checkout--content .checkout--address .checkout--address-text-small {
    color: #5D798B;
    font-size: 10px;
    padding: 0 45px 45px; }
  .checkout .checkout--content .checkout--address input[type="text"] {
    border: 1px solid #93A5B3;
    border-radius: 0;
    font-size: 14px;
    padding: 11px 15px;
    height: 40px;
    margin: 20px 0 0;
    width: 100%;
    box-shadow: none;
    font-weight: 300; }
    .checkout .checkout--content .checkout--address input[type="text"][required="required"] {
      font-weight: 500; }
    .checkout .checkout--content .checkout--address input[type="text"]::placeholder {
      color: #93A5B3; }
    .checkout .checkout--content .checkout--address input[type="text"]:first-child {
      margin: 0; }
  .checkout .checkout--content .checkout--address select.country + .chosen-container {
    margin-top: 20px; }
  @media all and (min-width: 55rem) {
    .checkout .checkout--content .checkout--address .flex-input-wrapper {
      margin-top: -20px; } }
  .checkout .checkout--content .checkout--address .flex-input-wrapper,
  .checkout .checkout--content .checkout--address .chosen-container {
    flex: 1 1 auto;
    width: 100%; }
    .checkout .checkout--content .checkout--address .flex-input-wrapper + select + .chosen-container,
    .checkout .checkout--content .checkout--address .chosen-container + select + .chosen-container {
      margin-left: 20px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--address .flex-input-wrapper + .flex-input-wrapper,
      .checkout .checkout--content .checkout--address .chosen-container + .flex-input-wrapper {
        margin-left: 20px; } }
    .checkout .checkout--content .checkout--address .flex-input-wrapper .chosen-drop,
    .checkout .checkout--content .checkout--address .chosen-container .chosen-drop {
      border: 1px solid #93A5B3;
      border-top: none; }
    .checkout .checkout--content .checkout--address .flex-input-wrapper .chosen-single,
    .checkout .checkout--content .checkout--address .chosen-container .chosen-single {
      border: 1px solid #93A5B3;
      height: 40px; }
  .checkout .checkout--content .checkout--address .checkout--address-form-row {
    display: flex; }
    .checkout .checkout--content .checkout--address .checkout--address-form-row.birthday, .checkout .checkout--content .checkout--address .checkout--address-form-row.prefix {
      flex-wrap: wrap; }
      .checkout .checkout--content .checkout--address .checkout--address-form-row.birthday .chosen-container, .checkout .checkout--content .checkout--address .checkout--address-form-row.prefix .chosen-container {
        flex: 1 1 auto;
        width: 100%; }
        .checkout .checkout--content .checkout--address .checkout--address-form-row.birthday .chosen-container + select + .chosen-container, .checkout .checkout--content .checkout--address .checkout--address-form-row.prefix .chosen-container + select + .chosen-container {
          margin-left: 0;
          margin-top: 20px; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--address .checkout--address-form-row.birthday, .checkout .checkout--content .checkout--address .checkout--address-form-row.prefix {
          flex-wrap: nowrap; }
          .checkout .checkout--content .checkout--address .checkout--address-form-row.birthday .chosen-container + select + .chosen-container, .checkout .checkout--content .checkout--address .checkout--address-form-row.prefix .chosen-container + select + .chosen-container {
            margin-left: 20px;
            margin-top: 0; } }
    .checkout .checkout--content .checkout--address .checkout--address-form-row.checkbox {
      margin-top: 20px; }
    .checkout .checkout--content .checkout--address .checkout--address-form-row.city {
      margin-top: 20px; }
      .checkout .checkout--content .checkout--address .checkout--address-form-row.city .dynamic-label-input, .checkout .checkout--content .checkout--address .checkout--address-form-row.city > input {
        flex: 1 1 auto; }
        .checkout .checkout--content .checkout--address .checkout--address-form-row.city .dynamic-label-input:first-child, .checkout .checkout--content .checkout--address .checkout--address-form-row.city > input:first-child {
          width: 25%; }
        .checkout .checkout--content .checkout--address .checkout--address-form-row.city .dynamic-label-input:last-child, .checkout .checkout--content .checkout--address .checkout--address-form-row.city > input:last-child {
          margin: 0 0 0 20px;
          width: 75%; }
    .checkout .checkout--content .checkout--address .checkout--address-form-row.street {
      margin-top: 20px; }
      .checkout .checkout--content .checkout--address .checkout--address-form-row.street .dynamic-label-input, .checkout .checkout--content .checkout--address .checkout--address-form-row.street > input {
        flex: 1 1 auto; }
        .checkout .checkout--content .checkout--address .checkout--address-form-row.street .dynamic-label-input:first-child, .checkout .checkout--content .checkout--address .checkout--address-form-row.street > input:first-child {
          width: 75%; }
        .checkout .checkout--content .checkout--address .checkout--address-form-row.street .dynamic-label-input:last-child, .checkout .checkout--content .checkout--address .checkout--address-form-row.street > input:last-child {
          margin: 0 0 0 20px;
          width: 25%; }
  .checkout .checkout--content .checkout--address .label--birthday {
    display: block;
    margin: 20px 0 5px 16px; }
    .checkout .checkout--content .checkout--address .label--birthday::after {
      display: none; }
  .checkout .checkout--content .checkout--address label {
    position: relative; }
    .checkout .checkout--content .checkout--address label::after {
      left: 0; }
  .checkout .checkout--content .checkout--address .button {
    margin: 20px 0;
    width: 200px; }
  .checkout .checkout--content .checkout--other .checkout--other-actions {
    clear: both;
    padding: 15px 20px 0; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--other .checkout--other-actions {
        padding: 45px 45px 0; } }
    .checkout .checkout--content .checkout--other .checkout--other-actions::after {
      clear: both;
      content: '';
      display: block; }
    .checkout .checkout--content .checkout--other .checkout--other-actions .button {
      display: block;
      vertical-align: bottom;
      height: 50px;
      text-align: center;
      text-transform: uppercase;
      padding: 15px;
      margin: 20px auto;
      width: 16.25rem; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--other .checkout--other-actions .button {
          float: right; } }
      .checkout .checkout--content .checkout--other .checkout--other-actions .button.back {
        background-color: #E4E8EA;
        margin-left: auto;
        margin-right: auto; }
        @media all and (min-width: 55rem) {
          .checkout .checkout--content .checkout--other .checkout--other-actions .button.back {
            margin-left: 0;
            margin-right: 10px;
            float: left; } }
  .checkout .checkout--content .checkout--other .checkout--other-text-small {
    color: #5D798B;
    font-size: 10px;
    padding: 0 20px 45px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--other .checkout--other-text-small {
        padding: 0 45px 45px; } }
  .checkout .checkout--content .checkout--other .checkout--title {
    font-weight: bold;
    padding: 20px 20px 0;
    text-transform: uppercase; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--other .checkout--title {
        padding: 20px 45px 0; } }
  .checkout .checkout--content .checkout--other .checkout--text {
    padding: 20px 20px 0; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--other .checkout--text {
        padding: 20px 45px 0; } }
  .checkout .checkout--content .checkout--other .checkout--message {
    max-width: 100%;
    padding: 20px 20px 0;
    width: 100%; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--other .checkout--message {
        max-width: 60%;
        padding: 20px 45px 0; } }
    .checkout .checkout--content .checkout--other .checkout--message textarea {
      border: 1px solid #93A5B3;
      border-radius: 0;
      font-size: 14px;
      padding: 11px 15px;
      height: 200px;
      width: 100%; }
      .checkout .checkout--content .checkout--other .checkout--message textarea::placeholder {
        color: #93A5B3; }
  .checkout .checkout--content .checkout--other .checkout--newsletter {
    border-top: 1px solid #CC9800;
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
    padding: 20px 0 20px; }
    .checkout .checkout--content .checkout--other .checkout--newsletter > .checkout--title,
    .checkout .checkout--content .checkout--other .checkout--newsletter > .checkout--text {
      flex: 1 1 auto;
      width: 100%;
      max-width: 800px; }
    .checkout .checkout--content .checkout--other .checkout--newsletter .checkout--column-half {
      padding-top: 20px;
      flex: 1 1 auto;
      width: 100%; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--other .checkout--newsletter .checkout--column-half {
          width: 50%; } }
      .checkout .checkout--content .checkout--other .checkout--newsletter .checkout--column-half label {
        font-weight: bold;
        position: relative;
        margin-left: 20px; }
        @media all and (min-width: 55rem) {
          .checkout .checkout--content .checkout--other .checkout--newsletter .checkout--column-half label {
            margin-left: 45px; } }
        .checkout .checkout--content .checkout--other .checkout--newsletter .checkout--column-half label::after {
          left: 0; }
  .checkout .checkout--content .checkout--payment .checkout--payment-actions {
    clear: both;
    padding: 15px 20px 0; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--payment .checkout--payment-actions {
        padding: 45px 45px 0; } }
    .checkout .checkout--content .checkout--payment .checkout--payment-actions::after {
      clear: both;
      content: '';
      display: block; }
    .checkout .checkout--content .checkout--payment .checkout--payment-actions .button {
      display: block;
      vertical-align: bottom;
      height: 50px;
      text-align: center;
      text-transform: uppercase;
      padding: 15px;
      margin: 20px auto;
      width: 16.25rem; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--payment .checkout--payment-actions .button {
          float: right; } }
      .checkout .checkout--content .checkout--payment .checkout--payment-actions .button.back {
        background-color: #E4E8EA;
        margin-left: auto;
        margin-right: auto; }
        @media all and (min-width: 55rem) {
          .checkout .checkout--content .checkout--payment .checkout--payment-actions .button.back {
            float: left;
            margin-left: 0;
            margin-right: 10px; } }
  .checkout .checkout--content .checkout--payment .checkout--payment-text-small {
    color: #5D798B;
    font-size: 10px;
    padding: 0 20px 45px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--payment .checkout--payment-text-small {
        padding: 0 45px 45px; } }
  .checkout .checkout--content .checkout--payment .checkout--payment-row {
    border-top: 1px solid #CC9800;
    display: flex;
    flex-wrap: wrap;
    padding: 20px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--payment .checkout--payment-row {
        padding: 20px 45px 20px; } }
    .checkout .checkout--content .checkout--payment .checkout--payment-row p a {
      font-weight: bold; }
    .checkout .checkout--content .checkout--payment .checkout--payment-row.voucher p {
      display: block;
      width: 100%; }
    .checkout .checkout--content .checkout--payment .checkout--payment-row.voucher input[type="text"] {
      border: 1px solid #93A5B3;
      border-radius: 0;
      font-size: 14px;
      padding: 11px 15px;
      height: 40px;
      width: 300px;
      box-shadow: none; }
    .checkout .checkout--content .checkout--payment .checkout--payment-row.voucher .button {
      display: inline-block;
      vertical-align: bottom;
      height: 40px;
      width: 130px;
      text-align: center;
      text-transform: uppercase;
      padding: 10px 0; }
    .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-input {
      flex: 1 1 auto;
      width: 100%; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-input {
          width: 30%; } }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-input label {
        font-weight: bold;
        position: relative; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-input label[for="checkbox-save"] {
          font-weight: normal; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-input label::after {
          left: 0; }
    .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-info {
      flex: 1 1 auto;
      margin-top: 20px;
      width: 100%; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-info {
          margin-top: 0;
          width: 70%; } }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-info label {
        font-weight: normal; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-info label::after {
          top: 10px; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-info img {
        max-height: 50px; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-info .checkout--payment-input {
        width: 100%; }
    .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details {
      flex: 0 1 auto;
      width: 50%; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details.creditcard-details, .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details.banktransfer-details {
        display: none; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details.creditcard-details.open, .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details.banktransfer-details.open {
          display: block; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details label {
        font-weight: normal; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-text {
        margin: 20px 0; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form input[type="text"] {
        border: 1px solid #93A5B3;
        border-radius: 0;
        font-size: 14px;
        padding: 11px 15px;
        height: 40px;
        margin: 20px 0 0;
        width: 100%;
        box-shadow: none; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form input[type="text"]::placeholder {
          color: #93A5B3; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .label--valid {
        color: #93A5B3;
        display: block;
        margin: 20px 0 5px 16px; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .label--valid::after {
          display: none; }
      .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .checkout--payment-details-form-row {
        display: flex; }
        .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .checkout--payment-details-form-row .chosen-container {
          flex: 1 1 auto; }
          .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .checkout--payment-details-form-row .chosen-container + select + .chosen-container {
            margin-left: 20px; }
          .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .checkout--payment-details-form-row .chosen-container .chosen-drop {
            border: 1px solid #93A5B3;
            border-top: none; }
          .checkout .checkout--content .checkout--payment .checkout--payment-row .checkout--payment-details .checkout--payment-details-form .checkout--payment-details-form-row .chosen-container .chosen-single {
            border: 1px solid #93A5B3;
            height: 40px; }
  .checkout .checkout--content .checkout--payment .checkout--payment-title {
    padding: 20px;
    font-weight: bold;
    text-transform: uppercase; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--payment .checkout--payment-title {
        padding: 20px 45px 20px; } }
  .checkout .checkout--content .checkout--register {
    padding: 45px;
    position: relative;
    width: 100%; }
    .checkout .checkout--content .checkout--register::after {
      box-sizing: border-box;
      background-image: url("../../../assets/img/checkout-register-image.png");
      background-repeat: no-repeat;
      background-size: contain;
      background-origin: content-box;
      display: block;
      height: 500px;
      position: absolute;
      top: auto;
      left: auto;
      bottom: 0;
      right: 0;
      content: '';
      width: 100%;
      padding: 45px;
      transform: translateX(100%); }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--register {
        width: 50%; }
        .checkout .checkout--content .checkout--register::after {
          display: none; } }
    .checkout .checkout--content .checkout--register .label--birthday {
      display: block;
      margin: 20px 0 5px 16px; }
    .checkout .checkout--content .checkout--register .checkout--register-form-row.checkbox {
      margin-top: 20px;
      position: relative; }
    .checkout .checkout--content .checkout--register .checkout--register-form-row .chosen-container + select + .chosen-container {
      margin-top: 20px; }
    .checkout .checkout--content .checkout--register .checkout--register-form-row .chosen-container .chosen-drop {
      border: 1px solid #93A5B3;
      border-top: none; }
    .checkout .checkout--content .checkout--register .checkout--register-form-row .chosen-container .chosen-single {
      border: 1px solid #93A5B3;
      height: 40px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--register .checkout--register-form-row {
        display: flex; }
        .checkout .checkout--content .checkout--register .checkout--register-form-row .flex-input-wrapper {
          margin-top: -20px; }
        .checkout .checkout--content .checkout--register .checkout--register-form-row .flex-input-wrapper,
        .checkout .checkout--content .checkout--register .checkout--register-form-row .chosen-container {
          flex: 1 1 auto; }
          .checkout .checkout--content .checkout--register .checkout--register-form-row .flex-input-wrapper + select + .chosen-container,
          .checkout .checkout--content .checkout--register .checkout--register-form-row .chosen-container + select + .chosen-container {
            margin-left: 20px;
            margin-top: 0; }
          .checkout .checkout--content .checkout--register .checkout--register-form-row .flex-input-wrapper + .flex-input-wrapper,
          .checkout .checkout--content .checkout--register .checkout--register-form-row .chosen-container + .flex-input-wrapper {
            margin-left: 20px; } }
    .checkout .checkout--content .checkout--register .checkout--register-text-small {
      color: #5D798B;
      font-size: 10px; }
    .checkout .checkout--content .checkout--register .checkout--register-form .label--birthday {
      display: block;
      margin: 20px 0 5px 16px; }
      .checkout .checkout--content .checkout--register .checkout--register-form .label--birthday::after {
        display: none; }
    .checkout .checkout--content .checkout--register .checkout--register-form label {
      position: relative; }
      .checkout .checkout--content .checkout--register .checkout--register-form label::after {
        left: 0; }
    .checkout .checkout--content .checkout--register .checkout--register-form .button {
      margin: 20px 0;
      width: 200px;
      text-transform: uppercase; }
    .checkout .checkout--content .checkout--register input[type="text"], .checkout .checkout--content .checkout--register input[type="password"] {
      border: 1px solid #93A5B3;
      border-radius: 0;
      font-size: 14px;
      padding: 11px 15px;
      height: 40px;
      margin: 20px 0 0;
      width: 100%;
      box-shadow: none; }
      .checkout .checkout--content .checkout--register input[type="text"]::placeholder, .checkout .checkout--content .checkout--register input[type="password"]::placeholder {
        color: #93A5B3; }
    .checkout .checkout--content .checkout--register .checkout--register-title {
      font-weight: bold;
      margin-bottom: 10px;
      text-transform: uppercase; }
    .checkout .checkout--content .checkout--register .checkout--register-text {
      margin-bottom: 20px; }
  .checkout .checkout--content .checkout--check .checkout--title {
    font-weight: bold;
    padding: 20px 45px 20px;
    text-transform: uppercase; }
  .checkout .checkout--content .checkout--check .checkout--header,
  .checkout .checkout--content .checkout--check .checkout--product,
  .checkout .checkout--content .checkout--check .checkout--shipping,
  .checkout .checkout--content .checkout--check .checkout--subtotal,
  .checkout .checkout--content .checkout--check .checkout--tax,
  .checkout .checkout--content .checkout--check .checkout--total,
  .checkout .checkout--content .checkout--check .checkout--voucher {
    display: flex;
    flex-wrap: wrap; }
    .checkout .checkout--content .checkout--check .checkout--header .checkout--cell,
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell,
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell,
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell,
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell,
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell,
    .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell {
      flex: 1 1 auto; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell.right-cell,
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell.right-cell,
      .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell.right-cell,
      .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell.right-cell,
      .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell.right-cell,
      .checkout .checkout--content .checkout--check .checkout--total .checkout--cell.right-cell,
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell.right-cell {
        text-align: right !important;
        padding-bottom: 0.455rem;
        padding-right: 10px; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(1),
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(1),
      .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(1),
      .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(1),
      .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(1),
      .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(1),
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(1) {
        width: 25%; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(2),
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2),
      .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2),
      .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2),
      .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2),
      .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2),
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2) {
        width: 75%; }
        .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(2).full,
        .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2).full,
        .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2).full,
        .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2).full,
        .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2).full,
        .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2).full,
        .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2).full {
          width: 75%; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(3),
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(3),
      .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(3),
      .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(3),
      .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(3),
      .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(3),
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(3) {
        width: 25%; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(4),
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(4),
      .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(4),
      .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(4),
      .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(4),
      .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(4),
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(4) {
        width: 25%; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(5),
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(5),
      .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(5),
      .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(5),
      .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(5),
      .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(5),
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(5) {
        width: 25%; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(1),
        .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(1),
        .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(1),
        .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(1),
        .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(1),
        .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(1),
        .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(1) {
          width: 15%; }
        .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(2),
        .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2),
        .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2),
        .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2),
        .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2),
        .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2),
        .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2) {
          width: 38%; }
          .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(2).full,
          .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2).full,
          .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2).full,
          .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2).full,
          .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2).full,
          .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2).full,
          .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2).full {
            width: 85%; }
        .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(3),
        .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(3),
        .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(3),
        .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(3),
        .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(3),
        .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(3),
        .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(3) {
          width: 15%; }
          .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(3) .product--title,
          .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(3) .product--title,
          .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(3) .product--title,
          .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(3) .product--title,
          .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(3) .product--title,
          .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(3) .product--title,
          .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(3) .product--title {
            display: none; }
        .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(4),
        .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(4),
        .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(4),
        .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(4),
        .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(4),
        .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(4),
        .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(4) {
          width: 15%; }
          .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(4) .product--title,
          .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(4) .product--title,
          .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(4) .product--title,
          .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(4) .product--title,
          .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(4) .product--title,
          .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(4) .product--title,
          .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(4) .product--title {
            display: none; }
        .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(5),
        .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(5),
        .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(5),
        .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(5),
        .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(5),
        .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(5),
        .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(5) {
          width: 15%; }
          .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(5) .product--title,
          .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(5) .product--title,
          .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(5) .product--title,
          .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(5) .product--title,
          .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(5) .product--title,
          .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(5) .product--title,
          .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(5) .product--title {
            display: none; } }
  .checkout .checkout--content .checkout--check .checkout--product {
    border-top: 1px solid #CC9800;
    padding: 20px 0; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell input[type="number"] {
      border: 1px solid #93A5B3;
      border-radius: 0;
      font-size: 14px;
      font-weight: bold;
      margin-top: 15px;
      padding: 15px;
      width: 100px; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell .checkout--delete {
      display: block;
      padding-top: 15px; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell .product--image {
      padding: 0; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell .product--pricebox {
      padding-top: 15px; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text {
      text-align: left; }
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text .lieferbar:after,
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text .reservierbar:after,
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text .subskription:after {
        content: '';
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 4px;
        vertical-align: middle;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px; }
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text .lieferbar:after {
        background-color: #B0D063; }
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text .reservierbar:after {
        background-color: #F08B1E; }
      .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2) .product--pricebox .pricebox--text .subskription:after {
        background-color: #274B65; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell .product--title {
      padding-left: 0;
      padding-right: 0;
      padding-top: 15px;
      text-align: center; }
    .checkout .checkout--content .checkout--check .checkout--product .checkout--cell h4.product--title {
      text-align: left; }
  .checkout .checkout--content .checkout--check .checkout--tax {
    padding: 0 0 20px; }
  .checkout .checkout--content .checkout--check .checkout--subtotal {
    border-top: 1px solid #CC9800;
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0; }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2) {
    font-weight: bold; }
  .checkout .checkout--content .checkout--check .checkout--total {
    border-top: 1px solid #CC9800;
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0; }
  .checkout .checkout--content .checkout--check .checkout--voucher {
    border-top: 1px solid #CC9800;
    padding: 20px 0; }
    .checkout .checkout--content .checkout--check .checkout--voucher input[type="text"] {
      border: 1px solid #93A5B3;
      border-radius: 0;
      font-size: 14px;
      padding: 11px 15px;
      height: 40px;
      width: 300px;
      box-shadow: none; }
    .checkout .checkout--content .checkout--check .checkout--voucher .button {
      display: inline-block;
      vertical-align: bottom;
      height: 40px;
      width: 130px;
      text-align: center;
      text-transform: uppercase;
      padding: 10px 0; }
    .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(1) {
      display: none; }
    .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2) {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(1) {
        display: block; }
      .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
        width: 85%; } }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(1),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(1),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(1),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(1) {
    display: none; }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
    width: 70%; }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(3) {
    width: 10%; }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(4) {
    display: none; }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(5) {
    width: 20%; }
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(6) {
    display: none; }
  @media all and (min-width: 55rem) {
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell.right-cell,
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell.right-cell,
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell.right-cell,
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell.right-cell {
      padding-right: 2rem; }
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(1),
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(1),
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(1),
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(1) {
      display: block; }
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2),
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2),
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2),
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2) {
      padding-left: 0;
      padding-right: 0;
      width: 38%; }
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(3),
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(3),
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(3),
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(3) {
      width: 15%; }
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(4),
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(4),
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(4),
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(4) {
      display: block; }
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(5),
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(5),
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(5),
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(5) {
      width: 15%; }
    .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(6),
    .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(6),
    .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(6),
    .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(6) {
      display: block; } }
  .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(2),
  .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(2) {
    text-align: left; }
  .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(3),
  .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(3) {
    text-align: center; }
  .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(4),
  .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(4) {
    text-align: center; }
  .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(5),
  .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(5) {
    text-align: center; }
  .checkout .checkout--content .checkout--check .checkout--product .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--shipping .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--subtotal .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--tax .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--total .checkout--cell:nth-child(6),
  .checkout .checkout--content .checkout--check .checkout--voucher .checkout--cell:nth-child(6) {
    text-align: center; }
  .checkout .checkout--content .checkout--check .checkout--header {
    border-top: 1px solid #CC9800;
    display: none;
    padding: 30px 0 5px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--check .checkout--header {
        display: flex; } }
    .checkout .checkout--content .checkout--check .checkout--header .checkout--cell {
      font-weight: 600;
      text-align: right;
      padding-right: 2rem; }
      .checkout .checkout--content .checkout--check .checkout--header .checkout--cell:nth-child(2) {
        text-align: left; }
  .checkout .checkout--content .checkout--check .checkout--change {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px; }
    @media all and (min-width: 55rem) {
      .checkout .checkout--content .checkout--check .checkout--change {
        padding: 0 15%; } }
    .checkout .checkout--content .checkout--check .checkout--change-text {
      border-top: 1px solid #CC9800;
      padding: 20px; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--check .checkout--change-text {
          padding: 20px 15%; } }
      .checkout .checkout--content .checkout--check .checkout--change-text .checkout--title {
        padding: 0; }
    .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      padding: 20px;
      width: 50%; }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell:first-child {
        padding-left: 0; }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell:nth-child(3) {
        padding-left: 0; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell {
          padding: 45px;
          width: 25%; }
          .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell:nth-child(3) {
            padding-left: 20px; } }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell:last-child {
        padding-right: 0; }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell .checkout--title {
        padding: 0; }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell .button {
        display: block;
        height: 40px;
        width: 100px;
        text-transform: uppercase;
        padding: 10px 0;
        text-align: center;
        margin-top: 20px; }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell .checkout--text {
        flex: 1 1 auto; }
      .checkout .checkout--content .checkout--check .checkout--change .checkout--change-cell .checkout--change-link {
        flex: 0 0 auto; }
  .checkout .checkout--content .checkout--check .checkout--actions {
    padding: 20px 45px;
    text-align: right; }
    .checkout .checkout--content .checkout--check .checkout--actions-row {
      padding-bottom: 20px; }
    .checkout .checkout--content .checkout--check .checkout--actions .button {
      display: block;
      height: 50px;
      width: 200px;
      text-transform: uppercase;
      padding: 15px 0;
      text-align: center;
      margin: 20px auto 0;
      width: 16.25rem; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--content .checkout--check .checkout--actions .button {
          display: inline-block;
          margin: 20px 0 0; } }
    .checkout .checkout--content .checkout--check .checkout--actions label a {
      font-weight: bold; }
    .checkout .checkout--content .checkout--check .checkout--actions label {
      display: inline-block;
      margin-right: 40px;
      position: relative; }
      .checkout .checkout--content .checkout--check .checkout--actions label::before {
        left: auto;
        right: -25px; }
      .checkout .checkout--content .checkout--check .checkout--actions label::after {
        left: auto !important;
        right: -40px; }
    .checkout .checkout--content .checkout--check .checkout--actions input[type="checkbox"]:checked + label::before {
      left: auto;
      right: -40px; }
  .checkout .checkout--content .checkout--success {
    text-align: center; }
    .checkout .checkout--content .checkout--success .checkout--success-title {
      border-bottom: 1px solid #CC9800;
      color: #002E4D;
      font-weight: bold;
      font-size: 22px;
      padding: 45px 0 10px; }
      .checkout .checkout--content .checkout--success .checkout--success-title .image {
        margin: 0 auto;
        max-width: 600px; }
    .checkout .checkout--content .checkout--success .checkout--success-text {
      padding: 0 30px 0; }
    .checkout .checkout--content .checkout--success .checkout--success-ordernumber {
      padding: 40px 0 20px;
      font-weight: bold; }
    .checkout .checkout--content .checkout--success .checkout--success-details {
      color: #5D798B;
      font-size: 10px;
      padding: 0 0 20px; }
    .checkout .checkout--content .checkout--success .checkout--success-image {
      padding: 45px 0 20px;
      max-width: 600px;
      margin: 0 auto; }
      .checkout .checkout--content .checkout--success .checkout--success-image img {
        display: block;
        height: auto;
        width: auto;
        max-width: 100%;
        max-height: 100%; }
    .checkout .checkout--content .checkout--success .checkout--success-actions {
      padding: 15px 45px 45px;
      max-width: 700px;
      margin: 0 auto; }
      .checkout .checkout--content .checkout--success .checkout--success-actions::after {
        clear: both;
        content: '';
        display: block; }
      .checkout .checkout--content .checkout--success .checkout--success-actions .button {
        display: block;
        vertical-align: bottom;
        height: 50px;
        width: 16.25rem;
        text-align: center;
        text-transform: none;
        margin: 20px auto;
        padding: 15px; }
        @media all and (min-width: 55rem) {
          .checkout .checkout--content .checkout--success .checkout--success-actions .button {
            float: right; } }
        .checkout .checkout--content .checkout--success .checkout--success-actions .button.print {
          background-color: #E4E8EA;
          margin-left: auto;
          margin-right: auto; }
          @media all and (min-width: 55rem) {
            .checkout .checkout--content .checkout--success .checkout--success-actions .button.print {
              margin-left: 0;
              margin-right: 10px;
              float: left; } }
  .checkout .checkout--steps {
    display: flex; }
    .checkout .checkout--steps .checkout--step {
      background-color: #93A5B3;
      color: #EBD699;
      display: none;
      flex: 1 1 auto;
      font-weight: bold;
      padding: 10px;
      width: 100%;
      text-align: center;
      text-transform: uppercase; }
      .checkout .checkout--steps .checkout--step.active {
        background-color: #002E4D;
        display: block; }
      @media all and (min-width: 55rem) {
        .checkout .checkout--steps .checkout--step {
          display: block;
          width: 25%; } }
  .checkout--newsletter .checkout--content .checkout--register {
    padding: 0;
    width: 100%; }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register {
        padding: 0 1.3rem; } }
    .checkout--newsletter .checkout--content .checkout--register::after {
      display: none; }
    .checkout--newsletter .checkout--content .checkout--register .checkbox {
      font-weight: bold; }
    .checkout--newsletter .checkout--content .checkout--register .inputrow label {
      font-weight: bold;
      display: block; }
    .checkout--newsletter .checkout--content .checkout--register .inputrow .chosen-container-single {
      margin: 1.3rem 0 0 !important; }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-50-50 {
        display: flex; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-50-50 > * {
        width: 50%; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-50-50 > *:nth-child(1) {
        margin-right: 1.3rem; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-25-75 {
        display: flex; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-25-75 > *:nth-child(1) {
        width: 25%;
        margin-right: 1.3rem; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-25-75 > *:nth-child(2) {
        width: 75%; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-75-25 {
        display: flex; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-75-25 > *:nth-child(1) {
        width: 75%;
        margin-right: 1.3rem; } }
    @media all and (min-width: 55rem) {
      .checkout--newsletter .checkout--content .checkout--register .inputrow.row-75-25 > *:nth-child(2) {
        width: 25%; } }
    .checkout--newsletter .checkout--content .checkout--register .checkout--register-form-row {
      display: block; }
    .checkout--newsletter .checkout--content .checkout--register button {
      min-width: 16.25rem;
      width: auto; }
    .checkout--newsletter .checkout--content .checkout--register .newsletter--info {
      padding-top: 1.3rem;
      padding-bottom: 1.3rem; }
    @media all and (min-width: 49.92rem) {
      .checkout--newsletter .checkout--content .checkout--register .newsletter--row {
        display: flex;
        width: 100%; } }
    @media all and (min-width: 49.92rem) {
      .checkout--newsletter .checkout--content .checkout--register .newsletter--row .newsletter--col {
        width: 50%;
        margin-bottom: 1.3rem; } }
    @media all and (min-width: 49.92rem) {
      .checkout--newsletter .checkout--content .checkout--register .newsletter--row .newsletter--col:first-child {
        padding-right: 1.3rem; } }
    @media all and (min-width: 49.92rem) {
      .checkout--newsletter .checkout--content .checkout--register .newsletter--row .newsletter--col:last-child {
        padding-left: 1.3rem; } }

.pagination {
  height: 1.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.95rem;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 25px;
  border-top: solid 1px #D7B144;
  padding-top: 30px;
  color: #5D798B; }
  .pagination span,
  .pagination strong,
  .pagination a {
    width: 1.95rem;
    height: 1.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000; }
    .pagination span img,
    .pagination strong img,
    .pagination a img {
      width: auto;
      height: 14px; }
  .pagination .current {
    font-weight: bold; }

#userlink {
  position: relative; }

#userstatus {
  color: #5D798B;
  font-size: 10px;
  line-height: 14px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); }

.user-home--intro {
  background-color: #002E4D;
  color: #CC9800;
  font-weight: bold;
  padding: 0.65rem; }
.user-home--content {
  background: #fff;
  padding: 1.95rem 0 0; }
  @media all and (min-width: 40.95rem) {
    .user-home--content {
      display: flex;
      flex-wrap: wrap; } }
  @media all and (min-width: 72rem) {
    .user-home--content {
      justify-content: center; } }
  .user-home--content .content-cell {
    padding: 0.65rem 1.3rem; }
    @media all and (min-width: 40.95rem) {
      .user-home--content .content-cell {
        width: 50%;
        max-width: 19.5rem;
        display: flex;
        justify-content: space-between;
        flex-direction: column; } }
    .user-home--content .content-cell .headline {
      font-weight: bold;
      margin-bottom: 1.3rem;
      padding: 0;
      text-transform: uppercase; }
    .user-home--content .content-cell .button {
      width: 100%;
      max-width: 19.5rem;
      margin: 0 auto 1.3rem; }

body .uc_cookie_dialog_outer_wrapper {
  z-index: 10000 !important;
  left: 50vw !important;
  top: auto !important;
  bottom: 0 !important;
  transform: translateX(-50%);
  max-width: 100%; }
  body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper {
    border-radius: 0;
    border: solid 1px #D7B144;
    padding: 15px 30px !important;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.3rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 30px !important; }
    @media all and (min-width: 55rem) {
      body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper {
        font-size: 0.875rem;
        line-height: 1.175rem;
        padding-bottom: 15px !important; } }
    body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_title {
      text-align: left;
      font-weight: 500; }
      @media all and (min-width: 55rem) {
        body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_title {
          line-height: 1.375rem; } }
    body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_text {
      margin-bottom: 15px; }
    body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_button {
      font-size: 1rem;
      line-height: 50px;
      border-radius: 0;
      padding: 0;
      height: auto;
      background: #FAF4E5;
      color: #5D798B !important;
      margin-bottom: 10px; }
      @media all and (min-width: 55rem) {
        body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_button {
          font-size: 0.875rem;
          line-height: 30px; } }
      body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_button.uc_cookie_dialog_button_accept_all {
        background: #D7B144;
        color: #001D31 !important; }
    body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_button_wrapper {
      width: 100%;
      display: flex;
      flex-direction: column-reverse; }
      @media all and (min-width: 55rem) {
        body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_button_wrapper {
          width: 45%;
          float: right;
          align-items: flex-end; } }
    body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_checkboxes_wrapper {
      width: 100%;
      margin-bottom: 15px; }
      @media all and (min-width: 55rem) {
        body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_checkboxes_wrapper {
          width: 45%;
          margin-bottom: 0; } }
      body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_checkboxes_wrapper li {
        width: 100%; }
      body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_checkboxes_wrapper label {
        font-size: 1rem;
        line-height: 1.3rem;
        color: #001D31; }
        @media all and (min-width: 55rem) {
          body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_checkboxes_wrapper label {
            font-size: 0.875rem;
            line-height: 1.375rem; } }
    body .uc_cookie_dialog_outer_wrapper .uc_cookie_dialog_inner_wrapper .uc_cookie_dialog_dsgvo_link {
      position: absolute;
      bottom: 5px;
      right: 10px;
      text-decoration: underline; }

#lsresult {
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 100%;
  display: none;
  text-align: right;
  font-weight: 300;
  max-height: 70vh;
  overflow: auto; }
  @media all and (min-width: 55rem) {
    #lsresult {
      font-size: 0.875rem;
      line-height: 1.775rem; } }
  #lsresult > b {
    text-align: left;
    display: block;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.3rem;
    padding: 0.65rem 3.25rem 0.65rem 0.65rem;
    background: #002E4D;
    color: #E0C166;
    border-bottom: solid 3px #E0C166; }
    @media all and (min-width: 55rem) {
      #lsresult > b {
        font-size: 0.875rem;
        line-height: 1.375rem; } }
    #lsresult > b + br {
      display: none; }
  #lsresult > img {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    padding: 10px;
    box-sizing: content-box;
    border-radius: 50%; }
    #lsresult > img:hover {
      background: rgba(255, 255, 255, 0.1); }
  #lsresult br {
    display: block;
    float: right;
    width: 10px;
    height: 10px;
    content: ' '; }
  #lsresult a {
    clear: both;
    text-align: left;
    width: 100%;
    display: block;
    padding: 0.65rem;
    border-top: solid 1px #D7B144;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500; }
    @media all and (min-width: 55rem) {
      #lsresult a {
        font-size: 0.875rem;
        line-height: 1.375rem; } }
    #lsresult a:hover {
      color: #790C1B; }
  #lsresult .search-show-all {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #D6AD33;
    color: #000;
    margin: 5px;
    font-weight: 500;
    font-size: 0.975rem;
    height: 3.25rem;
    transition: all 0.25s;
    cursor: pointer; }
    #lsresult .search-show-all:hover {
      background: #002E4D;
      color: #CC9800;
      cursor: pointer; }

.dynamic-label-input {
  position: relative;
  transition: all .3s ease-out;
  padding-top: 0.1px; }
  .dynamic-label-input .dynamic-label {
    position: absolute !important;
    top: 0;
    left: 0;
    opacity: 0;
    padding-top: 5px;
    padding-left: 16px;
    transition: all .15s ease-out;
    transform: translateY(5px);
    visibility: hidden; }
    .dynamic-label-input .dynamic-label.active {
      transition: all .3s ease-out;
      opacity: 1;
      transform: translateY(0);
      visibility: visible; }
  .dynamic-label-input .has--dynamic-label::placeholder {
    transition: all .15s ease-out; }
  .dynamic-label-input.active {
    padding-top: 10px; }
    .dynamic-label-input.active .has--dynamic-label::placeholder {
      opacity: 0;
      transition: all .3s ease-out;
      transform: translateY(-5px); }

.producers {
  width: 100%;
  max-width: 57.07rem;
  margin: 0 auto;
  display: block; }
  @media all and (min-width: 768px) {
    .producers {
      max-width: 76.7rem; } }
  .producers .producer-legend {
    background: #fff;
    margin: 0 auto 0 !important;
    max-width: 18.2rem;
    padding: 0.845rem 1.3rem; }
    @media all and (min-width: 768px) {
      .producers .producer-legend {
        max-width: 100%;
        padding: 0.845rem 2.6rem; } }
  .producers .producer--direct {
    background: #fff;
    margin: 0 auto 0 !important;
    max-width: 18.2rem;
    padding: 0.845rem 1.3rem; }
    @media all and (min-width: 768px) {
      .producers .producer--direct {
        max-width: 100%;
        padding: 0.845rem 2.6rem; } }
    .producers .producer--direct label {
      width: 100%;
      display: block; }
    @media all and (min-width: 768px) {
      .producers .producer--direct .chosen-container {
        max-width: 540px;
        width: 50%; } }
  .producers .producer--list {
    background: #fff;
    margin: 0 auto 0 !important;
    max-width: 18.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 1.95rem; }
    @media all and (min-width: 768px) {
      .producers .producer--list {
        max-width: 100%;
        padding: 0 1.3rem 1.95rem; } }
    .producers .producer--list .producer {
      padding: 0 1.3rem 1.875rem;
      width: 100%; }
      @media all and (min-width: 768px) {
        .producers .producer--list .producer {
          padding: 0 1.3rem;
          max-width: 32.5%; } }
      @media all and (min-width: 55rem) {
        .producers .producer--list .producer {
          max-width: 24.5%; } }
      .producers .producer--list .producer--header {
        text-align: left;
        border-bottom: 1px solid #D7B144;
        font-size: 0.91rem;
        line-height: 1.04rem;
        font-weight: 500;
        padding: 0.845rem 0 0.845rem 1.3rem;
        text-transform: uppercase;
        margin-bottom: 10px; }
      .producers .producer--list .producer-body {
        padding-bottom: 1.95rem; }
      .producers .producer--list .producer--title {
        padding: 0.325rem 0 0.65rem 1.3rem; }
        .producers .producer--list .producer--title a {
          font-weight: 300; }

.user-history {
  background: #fff;
  padding: 1.95rem 1.3rem; }
  @media all and (min-width: 55rem) {
    .user-history {
      padding: 2.925rem; } }
  .user-history--intro h1, .user-history--intro h2, .user-history--intro h3, .user-history--intro h4, .user-history--intro h5 {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .user-history .order-history--entry {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.3rem; }
    @media all and (min-width: 55rem) {
      .user-history .order-history--entry {
        flex-wrap: nowrap;
        margin-bottom: 0;
        justify-content: stretch; } }
    @media all and (min-width: 55rem) {
      .user-history .order-history--entry:last-child {
        border-bottom: solid 1px #93A5B3;
        margin-bottom: 1.95rem; } }
    .user-history .order-history--entry .entry--cell {
      width: 50%;
      border: solid 1px #93A5B3;
      border-bottom: 0;
      border-right: 0;
      overflow: hidden;
      padding: 0.65rem; }
      @media all and (min-width: 55rem) {
        .user-history .order-history--entry .entry--cell {
          width: auto; } }
      .user-history .order-history--entry .entry--cell .button {
        width: 100%; }
        @media all and (min-width: 55rem) {
          .user-history .order-history--entry .entry--cell .button {
            max-width: 19.5rem; } }
      .user-history .order-history--entry .entry--cell.cell--datetime {
        min-width: 18%; }
      .user-history .order-history--entry .entry--cell.cell--supplier-no {
        width: 100%;
        text-align: right; }
        @media all and (min-width: 55rem) {
          .user-history .order-history--entry .entry--cell.cell--supplier-no {
            width: auto; } }
      .user-history .order-history--entry .entry--cell.cell--price {
        text-align: right; }
      .user-history .order-history--entry .entry--cell.cell--details {
        border: none;
        width: 100%;
        padding: 0; }
        @media all and (min-width: 55rem) {
          .user-history .order-history--entry .entry--cell.cell--details {
            border: solid 1px #93A5B3;
            border-bottom: 0;
            padding: 0.65rem;
            width: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1 1 auto; } }
    .user-history .order-history--entry .entry--label {
      font-weight: bold;
      margin-bottom: 10px; }
  .user-history .order-history--entry {
    border: 1px solid #93A5B3;
    /* ---  set borders per breakpoint  --- */ }
    .user-history .order-history--entry .entry--cell {
      border: 0px solid #93A5B3; }
      .user-history .order-history--entry .entry--cell.cell--supplier-no {
        border-width: 0; }
      .user-history .order-history--entry .entry--cell.cell--datetime {
        border-width: 1px 1px 1px 0; }
      .user-history .order-history--entry .entry--cell.cell--order-no {
        border-width: 1px 0; }
      .user-history .order-history--entry .entry--cell.cell--price {
        border-width: 0; }
      @media all and (min-width: 880px) {
        .user-history .order-history--entry .entry--cell {
          border: 1px solid #93A5B3; }
          .user-history .order-history--entry .entry--cell.cell--supplier-no {
            border-width: 0 1px 0 0; }
          .user-history .order-history--entry .entry--cell.cell--datetime {
            border-width: 0 1px 0 0; }
          .user-history .order-history--entry .entry--cell.cell--order-no {
            border-width: 0 1px 0 0; }
          .user-history .order-history--entry .entry--cell.cell--price {
            border-width: 0 1px 0 0; }
          .user-history .order-history--entry .entry--cell.cell--details {
            border-width: 0; } }
  .user-history .flex-table.row {
    display: flex;
    justify-content: space-between; }
  .user-history .flex-table.wrapper {
    margin-top: 10px;
    margin-bottom: 15px; }
  .user-history .flex-table.head, .user-history .flex-table.item {
    width: 25%; }
    .user-history .flex-table.head:nth-child(1), .user-history .flex-table.item:nth-child(1) {
      width: 20%; }
    .user-history .flex-table.head:nth-child(2), .user-history .flex-table.item:nth-child(2) {
      width: 60%; }
    .user-history .flex-table.head:nth-child(3), .user-history .flex-table.item:nth-child(3) {
      width: 10%; }
    .user-history .flex-table.head:nth-child(4), .user-history .flex-table.item:nth-child(4) {
      width: 15%; }
  .user-history .flex-table.head {
    font-weight: bold;
    border-bottom: solid 1px #ededed;
    margin-bottom: 5px;
    padding: 10px 0 5px;
    white-space: nowrap; }

/* mobile fix */
@media all and (max-width: 767px) {
  .user-history .order-history--entry .entry--cell.cell--details .flex-table.row {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.row:nth-child(n+1) {
      background-color: #fff; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.row:nth-child(2n+1) {
      background-color: #eee; }
  .user-history .order-history--entry .entry--cell.cell--details .flex-table.head {
    width: 50%;
    padding-right: 5px;
    padding-left: 5px; }
  .user-history .order-history--entry .entry--cell.cell--details .flex-table.item {
    width: 50%;
    padding: 0 5px 3px;
    margin-bottom: 5px; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.item.right {
      text-align: right; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.item .product {
      background: none; }
  .user-history .order-history--entry .entry--cell.cell--details .flex-table .add-to-cart-icon {
    text-align: right; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table .add-to-cart-icon img {
      max-width: 25px;
      position: relative;
      top: 2px; } }
/* mobile fix */
@media all and (min-width: 768px) {
  .user-history .order-history--entry .entry--cell.cell--details .flex-table.row {
    padding: 10px 0; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.row:nth-child(n+1) {
      background-color: #fff; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.row:nth-child(2n+1) {
      background-color: #eee; }
  .user-history .order-history--entry .entry--cell.cell--details .flex-table.head {
    padding-right: 5px;
    padding-left: 5px; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.head:nth-child(4) {
      text-align: right; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.head:last-child {
      text-align: right; }
  .user-history .order-history--entry .entry--cell.cell--details .flex-table.item {
    padding: 0 5px 3px;
    margin-bottom: 5px; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.item.right {
      text-align: right; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table.item .product {
      background: none; }
      .user-history .order-history--entry .entry--cell.cell--details .flex-table.item .product .lieferhinweis {
        margin-top: 0; }
  .user-history .order-history--entry .entry--cell.cell--details .flex-table .add-to-cart-icon {
    text-align: right; }
    .user-history .order-history--entry .entry--cell.cell--details .flex-table .add-to-cart-icon img {
      max-width: 25px;
      position: relative;
      top: 2px; } }
.result-sort {
  padding-bottom: 0.65rem; }
  .result-sort--header {
    border-bottom: solid 0.065rem #D7B144;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 1.95rem;
    padding-bottom: 10px;
    margin-bottom: 1.3rem;
    padding-top: 10px;
    align-items: center; }
    @media all and (min-width: 55rem) {
      .result-sort--header {
        padding-left: 2.6rem; } }
  .result-sort--options {
    padding: 0  1.3rem 1.3rem;
    display: flex; }
    .result-sort--options .sort-option {
      margin-right: 1.3rem; }
      .result-sort--options .sort-option a.chosen-single {
        font-weight: 600; }
      .result-sort--options .sort-option .option-value {
        display: flex;
        justify-content: center;
        align-items: center; }
        .result-sort--options .sort-option .option-value a {
          display: flex;
          justify-content: center;
          align-items: center;
          border: solid 1px #D7B144;
          border-right: none;
          padding: 0.325rem 0.65rem; }
          .result-sort--options .sort-option .option-value a:last-child {
            border-right: solid 1px #D7B144; }
          .result-sort--options .sort-option .option-value a:hover {
            color: #790C1B;
            border-color: #790C1B; }
          .result-sort--options .sort-option .option-value a picture {
            width: 1.3rem;
            display: flex;
            justify-content: center;
            overflow: hidden; }
            .result-sort--options .sort-option .option-value a picture img {
              max-width: none;
              width: 3.9rem; }
          .result-sort--options .sort-option .option-value a span {
            width: 2.6rem; }
          .result-sort--options .sort-option .option-value a.up img {
            position: relative;
            top: -5px; }
          .result-sort--options .sort-option .option-value a.down img {
            position: relative;
            bottom: -5px; }

.category--header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #fff;
  margin: 0 auto 0; }
  @media all and (min-width: 27.625rem) {
    .category--header {
      max-width: 18.2rem; } }
  @media all and (min-width: 768px) {
    .category--header {
      width: 100%;
      max-width: 37.7rem; } }
  @media all and (min-width: 55rem) {
    .category--header {
      max-width: 76.7rem; } }
  .category--header h1 {
    font-size: 0.91rem;
    line-height: 1.04rem;
    font-weight: 500;
    margin-bottom: 0.845rem;
    text-transform: uppercase;
    padding: 0.845rem 0; }
  @media all and (min-width: 55rem) {
    .category--header.wide .category--image {
      width: 100%;
      max-width: none; } }
  @media all and (min-width: 55rem) {
    .category--header.wide .category--description {
      width: 100%;
      max-width: none; } }
  .category--header.wide .category--description ul {
    margin-left: 1rem; }
  .category--header.wide .category--description li {
    list-style: disc; }
  .category--header.wide .category--description .footnote {
    font-size: 0.65rem;
    line-height: 0.715rem;
    color: #5D798B; }
  .category--header.wide .category--description sup {
    position: relative;
    vertical-align: baseline;
    top: -0.4em; }
  .category--header.wide .category--description p {
    margin-top: 0.6rem; }
@media all and (min-width: 55rem) {
  .category--image {
    width: 50%;
    max-width: 580px; } }
.category--logo {
  margin: 0 auto 20px;
  max-width: 13rem; }
  @media all and (min-width: 55rem) {
    .category--logo {
      float: right;
      margin: 0 0 20px 20px; } }
.category--description {
  color: #001D31;
  font-size: 0.975rem;
  line-height: 1.43rem;
  font-weight: 300;
  padding: 1.105rem 1.3rem; }
  .category--description::after {
    clear: both;
    content: '';
    display: block; }
  @media all and (min-width: 55rem) {
    .category--description {
      width: 50%;
      padding: 1.3rem 2.925rem 2.6rem 2.6rem; }
      .category--description p {
        font-size: 0.91rem;
        font-weight: 300;
        line-height: 1.43rem; } }
  .category--description h1, .category--description h2, .category--description h3, .category--description h4, .category--description h5, .category--description h6 {
    font-size: 0.91rem;
    line-height: 1.04rem;
    font-weight: 500;
    margin-bottom: 0.845rem;
    text-transform: uppercase; }
  .category--description a {
    font-size: 0.845rem;
    font-weight: 500;
    letter-spacing: 0.0325rem;
    line-height: 1.3rem;
    text-transform: uppercase; }
  .category--description .hide-mobile > *:not(.product-count) {
    display: none; }
    @media screen and (min-width: 55rem) {
      .category--description .hide-mobile > *:not(.product-count) {
        display: block; } }
@media all and (min-width: 55rem) {
  .category .button--filter {
    display: none; } }
.category.erzeuger .button {
  width: 100%;
  padding: 1px 15px;
  display: none; }
  .category.erzeuger .button.active {
    display: inline-block; }
  @media screen and (min-width: 768px) {
    .category.erzeuger .button.btn-top {
      position: relative;
      display: block;
      max-width: 300px;
      width: auto;
      padding: 0 2rem;
      left: 100%;
      transform: translateX(-100%);
      margin-left: 0 !important; } }
  @media screen and (min-width: 768px) {
    .category.erzeuger .button {
      width: auto;
      margin: 0 auto; } }
.category.erzeuger h1 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 125%; }
.category.erzeuger .category--header {
  width: 100% !important; }
.category.erzeuger .category--description {
  width: 100% !important; }
  @media screen and (min-width: 1152px) {
    .category.erzeuger .category--description {
      margin: 0 auto;
      max-width: 800px; } }
  .category.erzeuger .category--description .readmore {
    position: relative; }
    .category.erzeuger .category--description .readmore > div:first-child {
      border: 0 !important;
      padding: 0 !important; }
    .category.erzeuger .category--description .readmore h2 {
      font-size: 0.8rem; }
    .category.erzeuger .category--description .readmore .foto {
      margin: 0 !important; }
      .category.erzeuger .category--description .readmore .foto + p {
        font-size: 0.8rem; }
        .category.erzeuger .category--description .readmore .foto + p strong {
          font-weight: 600; }

.filter-box {
  /* desktop filter dialog */
  display: none; }
  .filter-box.sticky-filter {
    position: absolute;
    left: 50%;
    transform: translate(-50%); }
  @media all and (min-width: 55rem) {
    .filter-box {
      width: 100%;
      flex: 0 0  auto;
      display: block;
      padding: 0.65rem 0 0 0;
      background: #fff; }
      .filter-box.sticky-filter {
        border-bottom: solid 0 #D7B144;
        box-sizing: border-box;
        margin: 0 auto;
        max-height: 0;
        max-width: 57.07rem;
        overflow: hidden;
        opacity: 0;
        transition: opacity .5s; }
        .filter-box.sticky-filter.visible {
          border-bottom-width: 0.065rem;
          max-height: 100px;
          overflow: visible;
          opacity: 1; }
        .filter-box.sticky-filter .chosen-container-single .chosen-single {
          border-top: none; }
        .filter-box.sticky-filter .filter--inpage .item {
          padding-bottom: 10px; }
        .filter-box.sticky-filter .filter--selected {
          padding: 0 1.3rem 10px; }
          .filter-box.sticky-filter .filter--selected .selected-item {
            border: solid 0.065rem lightgrey;
            color: lightgrey;
            cursor: pointer;
            display: inline-block;
            padding: 0 5px; }
            .filter-box.sticky-filter .filter--selected .selected-item::after {
              content: 'x';
              display: inline-block;
              margin-left: 5px; }
            .filter-box.sticky-filter .filter--selected .selected-item + .selected-item {
              margin-left: 5px; }
      .filter-box .soft-linebreak {
        display: block;
        width: 100%;
        height: 1px; }
      .filter-box .filter--inpage .item--filter > h3 {
        display: none; }
      .filter-box .filter--inpage .item--filter-range {
        padding: 0 0 1.3rem 1.3rem; }
        .filter-box .filter--inpage .item--filter-range .chosen-container {
          border: 1px solid #D7B144 !important; }
        .filter-box .filter--inpage .item--filter-range .chosen-single {
          border: 0; }
          .filter-box .filter--inpage .item--filter-range .chosen-single:hover, .filter-box .filter--inpage .item--filter-range .chosen-single:active {
            color: inherit; }
        .filter-box .filter--inpage .item--filter-range .range-filter--content {
          height: 0;
          display: none; }
          .filter-box .filter--inpage .item--filter-range .range-filter--content .save--box .spacer {
            width: 50%; }
          .filter-box .filter--inpage .item--filter-range .range-filter--content .save--box .range-filter--save {
            width: 50%;
            background: none;
            border: none;
            text-align: right;
            display: inline-block;
            color: #D6AD33;
            margin: 0.5rem 0;
            text-transform: none;
            line-height: 100%; }
            .filter-box .filter--inpage .item--filter-range .range-filter--content .save--box .range-filter--save:hover {
              cursor: pointer; }
        .filter-box .filter--inpage .item--filter-range .range-filter--options {
          display: inline-block; }
          .filter-box .filter--inpage .item--filter-range .range-filter--options li .range-field input {
            border: 0 !important;
            border-bottom: 1px solid #999 !important; }
        .filter-box .filter--inpage .item--filter-range.open .chosen-container {
          padding-bottom: 5px; }
        .filter-box .filter--inpage .item--filter-range.open .range-filter--content {
          height: auto;
          display: inline-block; }
          .filter-box .filter--inpage .item--filter-range.open .range-filter--content .result-selected {
            display: flex; }
      .filter-box .filter--inpage .range-filter--options .active-result {
        display: flex;
        flex-direction: row;
        align-items: flex-start; }
      .filter-box .filter--inpage .range-field {
        display: flex;
        flex-direction: row;
        align-items: flex-start; }
        .filter-box .filter--inpage .range-field label {
          width: 35%; }
        .filter-box .filter--inpage .range-field p {
          width: 70%;
          padding-bottom: 2px;
          padding-right: 0.5rem; }
          .filter-box .filter--inpage .range-field p input {
            color: #666;
            font-size: 14px;
            padding: 0 5px 3px;
            width: 100%;
            border: 1px solid #D7B144 !important; } }
  @media all and (min-width: 72rem) {
    .filter-box.sticky-filter {
      background: white;
      max-width: 76.7rem;
      padding-top: 0; } }

.page--catogory .product-count {
  width: 100%;
  margin: 1.5rem auto 30px;
  padding: 0 10px;
  position: relative; }
  @media all and (min-width: 422px) {
    .page--catogory .product-count {
      max-width: 290px;
      padding-left: 0; } }
  @media all and (min-width: 620px) {
    .page--catogory .product-count {
      max-width: 600px; } }
  @media all and (min-width: 880px) {
    .page--catogory .product-count {
      max-width: 57.07rem;
      margin-left: 1.3rem;
      padding-left: 1.3rem; } }
  @media all and (min-width: 1152px) {
    .page--catogory .product-count {
      max-width: 76.7rem; } }

.filter--tags {
  display: flex;
  padding: 0 0 10px 0;
  width: 100%;
  background: none;
  flex-wrap: wrap;
  margin: 0 auto 20px; }
  @media all and (min-width: 442px) {
    .filter--tags {
      max-width: 290px; }
      .filter--tags .filter--tag {
        margin-left: 0; } }
  @media all and (min-width: 580px) {
    .filter--tags {
      max-width: none;
      padding-left: 10px; } }
  @media all and (min-width: 38.75rem) {
    .filter--tags {
      max-width: 600px;
      margin: 0 auto inherit;
      padding-left: 0; }
      .filter--tags .filter--tag {
        margin-left: 10px; } }
  @media all and (min-width: 55rem) {
    .filter--tags {
      max-width: 76.7rem;
      padding: 0 1.75rem; }
      .filter--tags .filter--tag {
        margin-left: 1.3rem;
        margin-right: 0 !important; } }
  @media all and (min-width: 1230px) {
    .filter--tags {
      max-width: 76.7rem;
      padding: 0; }
      .filter--tags .filter--tag {
        margin-left: 1.3rem; } }
  .filter--tags .filter--tag {
    background: #D7B144;
    color: #000;
    height: 50px;
    width: auto;
    padding: 0 30px 0 15px;
    line-height: 50px;
    margin-right: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    border: solid 1px #D7B144;
    cursor: pointer;
    text-transform: capitalize; }
    .filter--tags .filter--tag:last-child {
      margin-right: 0; }
    .filter--tags .filter--tag:hover {
      background: #fff; }
    .filter--tags .filter--tag .tag-icon {
      width: 30px;
      display: inline-block;
      text-align: center;
      position: absolute;
      right: 0;
      top: 0; }
    .filter--tags .filter--tag .x-close {
      position: relative;
      font-size: 80%;
      font-weight: 400;
      font-style: normal; }

.filter-header {
  border-bottom: solid 0.065rem #D7B144;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 1.95rem;
  padding-bottom: 10px;
  margin-bottom: 1.3rem;
  align-items: center; }
  @media all and (min-width: 55rem) {
    .filter-header {
      padding-left: 2.6rem; } }
  .filter-header .filter--select {
    width: 14.04rem;
    margin-bottom: -0.065rem; }
  .filter-header .amount--label {
    font-weight: 700;
    text-transform: uppercase; }
  .filter-header .amount--value {
    font-weight: 600;
    color: #D7B144; }
.filter--inpage {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  position: relative;
  padding-right: 1.3rem; }
  .filter--inpage .item {
    min-width: 13rem;
    max-width: 25%;
    width: 100%;
    padding: 0 1.95rem 2.6rem;
    position: relative; }
    .filter--inpage .item--filter h3 {
      display: none; }
    .filter--inpage .item--filter-select {
      padding: 0 0 1.3rem 1.3rem; }
      .filter--inpage .item--filter-select a {
        padding: 0 1.3rem; }
      .filter--inpage .item--filter-select #sortoption + .chosen-container .chosen-single {
        font-weight: 600; }
    .filter--inpage .item .filter--select.grey .chosen-container .chosen-single,
    .filter--inpage .item .filter--select.grey .chosen-container .chosen-drop,
    .filter--inpage .item .filter--select.grey .chosen-container .chosen-results {
      background: #E4E8EA;
      border: none;
      box-shadow: none;
      color: #001D31; }
    .filter--inpage .item .filter--select.grey .chosen-container .chosen-single:hover {
      color: #790C1B; }
    .filter--inpage .item.full-width {
      width: 100%;
      max-width: 100%; }
    .filter--inpage .item .filter-switch-button {
      background: #E4E8EA;
      text-align: left;
      padding-left: 1.3rem;
      color: #001D31;
      font-size: 0.91rem;
      font-family: "Roboto", sans-serif;
      position: relative;
      width: 100%;
      box-sizing: border-box; }
      .filter--inpage .item .filter-switch-button:hover {
        color: #790C1B; }
      .filter--inpage .item .filter-switch-button::after {
        display: block;
        content: ' ';
        height: 100%;
        width: 0.975rem;
        background: url("/assets/img/arrow-vertical.png") center center no-repeat;
        background-size: 100% auto;
        transform: scaleY(-1);
        position: absolute;
        right: 0.975rem;
        top: 0;
        filter: invert(18%) sepia(0%) saturate(0%) hue-rotate(277deg) brightness(104%) contrast(74%); }
      .filter--inpage .item .filter-switch-button.active::after {
        transform: scaleY(1); }
    .filter--inpage .item .filter-switch-list-container {
      bottom: 1.3rem;
      left: 0;
      padding-left: 1.3rem;
      position: absolute;
      transform: translateY(100%);
      width: 100%;
      z-index: 500; }
    .filter--inpage .item .filter-switch-list {
      background: #E4E8EA;
      box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); }
      .filter--inpage .item .filter-switch-list .item.item--filter {
        max-width: none;
        padding: 1.3rem;
        width: 100%; }
        .filter--inpage .item .filter-switch-list .item.item--filter a {
          padding-left: 0;
          padding-right: 0; }
    .filter--inpage .item--buttons {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      max-width: 100%;
      width: 100%;
      box-sizing: content-box;
      padding: 0;
      justify-content: flex-end; }
      .filter--inpage .item--buttons button {
        width: 100%;
        max-width: 11.7rem; }
    .filter--inpage .item > a {
      font-size: 0.91rem;
      font-weight: 500;
      letter-spacing: 0.065rem;
      line-height: 1.04rem;
      text-transform: uppercase;
      padding-bottom: 0.65rem;
      display: block; }
    .filter--inpage .item li {
      font-size: 0.91rem;
      line-height: 1.04rem;
      letter-spacing: 0.065rem; }
    .filter--inpage .item .switchable {
      display: none; }
      .filter--inpage .item .switchable.visible {
        display: block; }
    .filter--inpage .item .option-list {
      min-height: 2rem; }
      .filter--inpage .item .option-list label {
        line-height: 2rem; }
      .filter--inpage .item .option-list.with-input {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row; }
        .filter--inpage .item .option-list.with-input input[type="checkbox"] + label::after,
        .filter--inpage .item .option-list.with-input input[type="radio"] + label::after {
          top: 21px; }
        .filter--inpage .item .option-list.with-input label {
          line-height: 1.5rem;
          padding-left: 30px;
          padding-right: 0.325rem;
          margin-top: 9px; }
        .filter--inpage .item .option-list.with-input input[type="text"] {
          border-radius: 0;
          font-size: 0.845rem;
          max-width: 30%;
          width: 5.525rem;
          height: 2.6rem;
          margin-left: 0.325rem;
          padding: 0 0.325rem;
          float: right;
          margin-right: -.65rem;
          box-shadow: none; }
    .filter--inpage .item.item--filter-global {
      min-width: 13rem;
      max-width: 50%;
      padding-bottom: 0; }
      .filter--inpage .item.item--filter-global .filter--options {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; }
        @media all and (min-width: 72rem) {
          .filter--inpage .item.item--filter-global .filter--options {
            flex-wrap: nowrap; } }
      .filter--inpage .item.item--filter-global .option-list {
        padding-right: 1.3rem;
        line-height: 2rem; }

.ipp--wrapper .inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0; }
.ipp--wrapper .ipp--label {
  display: block;
  margin-bottom: 1rem; }
.ipp--wrapper .ipp--options {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  max-width: 200px;
  margin: 0 auto;
  color: #5D798B; }
  .ipp--wrapper .ipp--options a {
    color: inherit;
    display: inline-block;
    font-weight: 300; }
    .ipp--wrapper .ipp--options a:hover {
      color: #790C1B; }
    .ipp--wrapper .ipp--options a.current {
      font-weight: 500;
      color: #000; }
      .ipp--wrapper .ipp--options a.current:hover {
        color: #000; }
@media all and (min-width: 442px) {
  .ipp--wrapper .inner {
    display: flex;
    flex-direction: row; }
  .ipp--wrapper .ipp--label {
    display: inline-block;
    width: 48%;
    text-align: right;
    padding-right: 1rem;
    margin-bottom: 0; }
  .ipp--wrapper .ipp--options {
    width: 52%;
    justify-content: normal;
    align-items: flex-start;
    max-width: none;
    padding: 0 1rem; }
    .ipp--wrapper .ipp--options a {
      margin-right: 1rem; } }

.page--product-detail .main-content .product {
  padding-top: 10px; }
  @media screen and (min-width: 880px) {
    .page--product-detail .main-content .product {
      padding-top: 0; } }
  .page--product-detail .main-content .product--detailbox {
    margin: 0 0 1.3rem; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--detailbox {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        background: #ffffff;
        max-width: 100%;
        margin: 0 0 1.3rem; } }
    .page--product-detail .main-content .product--detailbox .product--description {
      font-size: 100%;
      line-height: 125%; }
    .page--product-detail .main-content .product--detailbox .supply-info .product--notice {
      font-size: 0.65rem;
      line-height: 0.715rem;
      color: #5D798B;
      text-align: right;
      padding-right: 1rem;
      padding-bottom: 0.325rem; }
      .page--product-detail .main-content .product--detailbox .supply-info .product--notice p {
        padding-bottom: 0.325rem; }
      @media screen and (min-width: 880px) {
        .page--product-detail .main-content .product--detailbox .supply-info .product--notice {
          padding-right: 2rem; } }
  .page--product-detail .main-content .product--variants {
    display: none;
    padding-bottom: 1.95rem; }
    .page--product-detail .main-content .product--variants.open {
      display: block; }
    .page--product-detail .main-content .product--variants .product--detail-pricebox {
      border-top: solid 0.065rem #D7B144;
      margin-bottom: 1.625rem; }
      .page--product-detail .main-content .product--variants .product--detail-pricebox .supply-info .product--notice {
        text-align: left; }
      .page--product-detail .main-content .product--variants .product--detail-pricebox .product--pricebox {
        margin-top: 0.975rem; }
    @media screen and (max-width: 879px) {
      .page--product-detail .main-content .product--variants.desktop-only {
        display: block !important; }
        .page--product-detail .main-content .product--variants.desktop-only.open {
          display: none !important; }
        .page--product-detail .main-content .product--variants.desktop-only .success {
          display: none; } }
  @media all and (min-width: 55rem) {
    .page--product-detail .main-content .product--mobile-box {
      max-width: none; } }
  .page--product-detail .main-content .product--mobile-box .product--variants {
    margin-top: 1.3rem;
    padding-bottom: 0; }
  .page--product-detail .main-content .product--mobile-box .product--detail-pricebox {
    border-top: none;
    margin-bottom: 1.3rem; }
    .page--product-detail .main-content .product--mobile-box .product--detail-pricebox .pricebox--value {
      font-size: 0.845rem; }
      .page--product-detail .main-content .product--mobile-box .product--detail-pricebox .pricebox--value .inprice-label {
        font-weight: 500; }
      .page--product-detail .main-content .product--mobile-box .product--detail-pricebox .pricebox--value .price {
        font-weight: 700; }
  .page--product-detail .main-content .product .toggle--variants {
    text-align: center;
    font-weight: 500; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product .toggle--variants {
        color: #5D798B; } }
    .page--product-detail .main-content .product .toggle--variants a {
      text-transform: none;
      font-size: 0.78rem;
      line-height: 0.91rem;
      padding: 1.04rem 0;
      display: block; }
  @media all and (min-width: 55rem) {
    .page--product-detail .main-content .product .text-body {
      padding-right: 1.95rem; } }
  .page--product-detail .main-content .product--headline {
    margin-bottom: 0.975rem; }
    .page--product-detail .main-content .product--headline h1, .page--product-detail .main-content .product--headline h2, .page--product-detail .main-content .product--headline h3, .page--product-detail .main-content .product--headline h4, .page--product-detail .main-content .product--headline h5, .page--product-detail .main-content .product--headline h6 {
      font-weight: 600;
      padding: 0.845rem 1.3rem 0.195rem;
      text-align: center; }
      .page--product-detail .main-content .product--headline h1 .erzeuger-name, .page--product-detail .main-content .product--headline h2 .erzeuger-name, .page--product-detail .main-content .product--headline h3 .erzeuger-name, .page--product-detail .main-content .product--headline h4 .erzeuger-name, .page--product-detail .main-content .product--headline h5 .erzeuger-name, .page--product-detail .main-content .product--headline h6 .erzeuger-name {
        display: block; }
    .page--product-detail .main-content .product--headline .subline {
      text-align: center;
      color: #790C1B;
      padding: 0 1.3rem 0.52rem;
      font-weight: 600; }
  .page--product-detail .main-content .product--image {
    text-align: center;
    width: 100%; }
    .page--product-detail .main-content .product--image:hover {
      cursor: auto; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--image {
        width: 42.3%;
        max-width: 32.5rem;
        padding-top: 2.6rem; }
        .page--product-detail .main-content .product--image .image--badges {
          position: absolute;
          left: 0;
          right: 0;
          top: 20px;
          width: 100%;
          height: 0;
          padding: 0;
          margin: 0;
          text-align: right; }
          .page--product-detail .main-content .product--image .image--badges .badge {
            margin-bottom: 1.3rem;
            width: 100%; }
            .page--product-detail .main-content .product--image .image--badges .badge--parker-points {
              height: 4.55rem;
              width: 4.55rem;
              position: relative;
              background: #002E4D;
              border-radius: 50%;
              overflow: visible;
              color: #ffffff;
              padding: 0.975rem 0 0;
              position: absolute;
              left: 55%;
              top: 5.2rem; } }
        @media all and (min-width: 55rem) and (min-width: 72rem) {
          .page--product-detail .main-content .product--image .image--badges .badge--parker-points {
            top: 11.7rem; } }
    @media all and (min-width: 55rem) {
              .page--product-detail .main-content .product--image .image--badges .badge--parker-points .value {
                font-size: 0.975rem;
                font-weight: bold;
                letter-spacing: 0.10985rem;
                line-height: 1.17rem; }
              .page--product-detail .main-content .product--image .image--badges .badge--parker-points .label {
                font-size: 0.65rem;
                letter-spacing: 0.065rem;
                line-height: 0.78rem;
                text-transform: uppercase; }
              .page--product-detail .main-content .product--image .image--badges .badge--parker-points::after {
                content: '';
                display: block;
                width: 100%;
                height: 100%;
                background: url("/assets/img/badge-points.png") center center no-repeat;
                background-size: 100% auto;
                position: absolute;
                top: 13%;
                left: 0;
                opacity: .5;
                filter: invert(100%) sepia(1%) saturate(67%) hue-rotate(55deg) brightness(115%) contrast(100%); }
            .page--product-detail .main-content .product--image .image--badges .badge--vegan, .page--product-detail .main-content .product--image .image--badges .badge--organic, .page--product-detail .main-content .product--image .image--badges .badge--coup-de-coeur {
              position: relative;
              background: none !important;
              overflow: visible;
              margin-bottom: 3px;
              right: 20px; }
              .page--product-detail .main-content .product--image .image--badges .badge--vegan .badge-icon, .page--product-detail .main-content .product--image .image--badges .badge--organic .badge-icon, .page--product-detail .main-content .product--image .image--badges .badge--coup-de-coeur .badge-icon {
                max-width: 52px;
                height: auto; }
        .page--product-detail .main-content .product--image.desktop-only .image--badges {
          left: 0;
          top: 100px; }
          .page--product-detail .main-content .product--image.desktop-only .image--badges .badge {
            width: 100%; }
            .page--product-detail .main-content .product--image.desktop-only .image--badges .badge--parker-points {
              height: 4.55rem;
              width: 4.55rem;
              position: relative;
              background: #002E4D;
              border-radius: 50%;
              overflow: visible;
              color: #ffffff;
              padding: 0.975rem 0 0;
              position: absolute;
              left: 55%;
              top: 5.2rem; } }
        @media all and (min-width: 55rem) and (min-width: 72rem) {
          .page--product-detail .main-content .product--image.desktop-only .image--badges .badge--parker-points {
            top: 11.7rem; } }
    @media all and (min-width: 55rem) {
              .page--product-detail .main-content .product--image.desktop-only .image--badges .badge--parker-points .value {
                font-size: 0.975rem;
                font-weight: bold;
                letter-spacing: 0.10985rem;
                line-height: 1.17rem; }
              .page--product-detail .main-content .product--image.desktop-only .image--badges .badge--parker-points .label {
                font-size: 0.65rem;
                letter-spacing: 0.065rem;
                line-height: 0.78rem;
                text-transform: uppercase; }
              .page--product-detail .main-content .product--image.desktop-only .image--badges .badge--parker-points::after {
                content: '';
                display: block;
                width: 100%;
                height: 100%;
                background: url("/assets/img/badge-points.png") center center no-repeat;
                background-size: 100% auto;
                position: absolute;
                top: 13%;
                left: 0;
                opacity: .5;
                filter: invert(100%) sepia(1%) saturate(67%) hue-rotate(55deg) brightness(115%) contrast(100%); }
            .page--product-detail .main-content .product--image.desktop-only .image--badges .badge.badge--vegan, .page--product-detail .main-content .product--image.desktop-only .image--badges .badge.badge--organic, .page--product-detail .main-content .product--image.desktop-only .image--badges .badge.badge--coup-de-coeur {
              position: relative;
              background: none !important;
              overflow: visible;
              margin-bottom: 3px;
              right: 0; }
              .page--product-detail .main-content .product--image.desktop-only .image--badges .badge.badge--vegan .badge-icon, .page--product-detail .main-content .product--image.desktop-only .image--badges .badge.badge--organic .badge-icon, .page--product-detail .main-content .product--image.desktop-only .image--badges .badge.badge--coup-de-coeur .badge-icon {
                max-width: 72px;
                height: auto;
                display: inline; }
        .page--product-detail .main-content .product--image.red, .page--product-detail .main-content .product--image.rose, .page--product-detail .main-content .product--image.white {
          background: url("/assets/img/product-background-red.png") left center no-repeat;
          background-size: 100% auto;
          background-position-y: 22.75rem; }
        .page--product-detail .main-content .product--image.rose {
          background-image: url("/assets/img/product-background-rose.png"); }
        .page--product-detail .main-content .product--image.white {
          background-image: url("/assets/img/product-background-white.png"); }
        .page--product-detail .main-content .product--image img {
          max-height: none;
          height: 100%;
          max-height: 45.5rem; } }
  .page--product-detail .main-content .product--links {
    padding: 0.975rem 1.3rem 0; }
    .page--product-detail .main-content .product--links a {
      padding: 0.975rem 0;
      font-weight: 500;
      display: block; }
      .page--product-detail .main-content .product--links a:hover {
        color: #790C1B; }
    .page--product-detail .main-content .product--links ul {
      padding: 0 0 0.975rem; }
  .page--product-detail .main-content .product--description-box, .page--product-detail .main-content .product--information {
    color: #001D31;
    font-size: 0.975rem;
    line-height: 1.43rem;
    font-weight: 300;
    padding: 1.105rem 1.3rem 1.105rem;
    text-align: left;
    max-width: 100%;
    background: #ffffff;
    width: 100%; }
    .page--product-detail .main-content .product--description-box .text-body ul, .page--product-detail .main-content .product--information .text-body ul {
      margin-left: 1rem; }
    .page--product-detail .main-content .product--description-box .text-body li, .page--product-detail .main-content .product--information .text-body li {
      list-style: disc; }
    .page--product-detail .main-content .product--description-box .text-body .footnote, .page--product-detail .main-content .product--information .text-body .footnote {
      font-size: 0.65rem;
      line-height: 0.715rem;
      color: #5D798B; }
    .page--product-detail .main-content .product--description-box .text-body sup, .page--product-detail .main-content .product--information .text-body sup {
      position: relative;
      vertical-align: baseline;
      top: -0.4em; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--description-box .text-body, .page--product-detail .main-content .product--information .text-body {
        padding-right: 1.95rem; } }
    .page--product-detail .main-content .product--description-box p, .page--product-detail .main-content .product--information p {
      letter-spacing: 0.04em; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--description-box, .page--product-detail .main-content .product--information {
        max-width: 57.7%;
        padding: 1.3rem 2.925rem 2.6rem 2.6rem; }
        .page--product-detail .main-content .product--description-box p, .page--product-detail .main-content .product--information p {
          font-size: 0.91rem;
          line-height: 1.4rem;
          margin-top: 3px; } }
    .page--product-detail .main-content .product--description-box h1, .page--product-detail .main-content .product--description-box h2, .page--product-detail .main-content .product--description-box h3, .page--product-detail .main-content .product--description-box h4, .page--product-detail .main-content .product--description-box h5, .page--product-detail .main-content .product--description-box h6, .page--product-detail .main-content .product--information h1, .page--product-detail .main-content .product--information h2, .page--product-detail .main-content .product--information h3, .page--product-detail .main-content .product--information h4, .page--product-detail .main-content .product--information h5, .page--product-detail .main-content .product--information h6 {
      font-size: 0.91rem;
      line-height: 1.04rem;
      font-weight: 500;
      margin-bottom: 0.845rem;
      text-transform: uppercase; }
    .page--product-detail .main-content .product--description-box a, .page--product-detail .main-content .product--information a {
      font-size: 0.845rem;
      font-weight: 500;
      letter-spacing: 0.0325rem;
      line-height: 1.3rem;
      text-transform: uppercase; }
    .page--product-detail .main-content .product--description-box strong, .page--product-detail .main-content .product--information strong {
      color: #790C1B; }
    .page--product-detail .main-content .product--description-box span.highlight, .page--product-detail .main-content .product--information span.highlight {
      color: #790C1B; }
  @media all and (min-width: 55rem) {
    .page--product-detail .main-content .product--description-box {
      padding-right: 0; } }
  .page--product-detail .main-content .product--detail-pricebox {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    max-width: none; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--detail-pricebox {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 1.625rem; } }
    .page--product-detail .main-content .product--detail-pricebox .product--title, .page--product-detail .main-content .product--detail-pricebox .product--description, .page--product-detail .main-content .product--detail-pricebox .product--header {
      text-align: left;
      padding-left: 0;
      margin-bottom: 0;
      text-transform: none; }
    .page--product-detail .main-content .product--detail-pricebox .product--header {
      max-width: 15.6rem; }
      .page--product-detail .main-content .product--detail-pricebox .product--header .product--title {
        height: auto; }
      .page--product-detail .main-content .product--detail-pricebox .product--header .lieferkommentar,
      .page--product-detail .main-content .product--detail-pricebox .product--header .liefermenge {
        color: #790C1B;
        font-size: 0.78rem;
        line-height: 0.91rem;
        font-weight: 600;
        font-family: "Roboto", sans-serif;
        padding-top: 1rem; }
    .page--product-detail .main-content .product--detail-pricebox .product--description {
      font-weight: 500; }
    .page--product-detail .main-content .product--detail-pricebox .product--notice {
      font-size: 0.78rem;
      line-height: 0.91rem;
      color: #5D798B;
      padding-bottom: 0; }
    .page--product-detail .main-content .product--detail-pricebox .product--pricebox {
      margin-top: 2.08rem; }
    .page--product-detail .main-content .product--detail-pricebox .pricebox--text a, .page--product-detail .main-content .product--detail-pricebox .pricebox--text p {
      font-size: 0.65rem;
      line-height: 0.715rem;
      text-transform: none; }
  .page--product-detail .main-content .product--breadcrumbs {
    font-size: 0.78rem;
    line-height: 0.91rem;
    margin-bottom: 3.25rem; }
  .page--product-detail .main-content .product--information {
    padding-top: 0;
    padding: 1.105rem 0; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--information {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        flex: 0 0 auto;
        max-width: none; } }
  @media all and (min-width: 55rem) {
    .page--product-detail .main-content .product--summary {
      padding: 0 0.325rem 1.95rem 1.3rem;
      width: 42.3%;
      max-width: 32.5rem; } }
  .page--product-detail .main-content .product--expertise {
    padding-left: 1.3rem; }
    @media all and (min-width: 55rem) {
      .page--product-detail .main-content .product--expertise {
        padding-left: 2.6rem;
        width: 57.7%; } }
    .page--product-detail .main-content .product--expertise table td, .page--product-detail .main-content .product--expertise table th {
      text-align: left;
      padding: 0.325rem 0.975rem 0.325rem 0;
      color: #001D31;
      font-size: 0.975rem;
      line-height: 1.43rem; }
      @media all and (min-width: 55rem) {
        .page--product-detail .main-content .product--expertise table td, .page--product-detail .main-content .product--expertise table th {
          font-size: 0.845rem;
          line-height: 1.43rem; } }
    .page--product-detail .main-content .product--expertise table th {
      font-weight: 500;
      padding-top: 0; }
      .page--product-detail .main-content .product--expertise table th a {
        text-transform: none !important;
        text-decoration: underline; }
    .page--product-detail .main-content .product--expertise .table--spacer {
      height: 1.2rem; }
  @media all and (min-width: 55rem) {
    .page--product-detail .main-content .product .button--filter {
      display: none; } }

.desktop-only .sales-discount {
  padding: 15px 10px;
  top: 350px;
  width: 50%; }

.article {
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 1.105rem 1.3rem;
  color: #001D31;
  background-color: white;
  font-weight: 300; }
  @media all and (min-width: 27.625rem) {
    .article {
      max-width: 18.2rem; } }
  @media all and (min-width: 72rem) {
    .article {
      max-width: 76.7rem; } }
  @media all and (min-width: 768px) {
    .article {
      width: 100%;
      max-width: 37.7rem; } }
  @media all and (min-width: 55rem) {
    .article {
      max-width: 76.7rem;
      padding-top: 2.275rem; } }
  .article ol, .article ul {
    margin-left: 30px; }
    .article ol li, .article ul li {
      margin-bottom: 10px; }
  .article ol {
    list-style-type: decimal; }
  .article ul {
    list-style-type: disc; }
  .article strong {
    font-weight: 500; }
  .article p {
    max-width: 58.5rem;
    padding-bottom: 0.9375rem; }
    .article p strong {
      font-weight: bold; }
  .article a {
    text-decoration: underline !important;
    color: inherit;
    cursor: pointer; }
    .article a:hover {
      color: #790C1B; }
    .article a.button:hover {
      color: #CC9800; }
  .article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
    font-size: 0.91rem;
    line-height: 1.04rem;
    font-weight: 500;
    margin-bottom: 0.845rem;
    text-transform: uppercase;
    max-width: 58.5rem; }
  .article h2 {
    margin-top: 2rem;
    font-size: 1.17rem;
    color: #D7B144; }
  .article h3 {
    margin-top: 2rem;
    color: #790C1B; }
  .article #cms .flex-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; }
  .article #cms .flex-item {
    margin-right: 2rem; }
  .article th {
    padding: 0.5rem 2rem;
    text-align: left;
    background-color: #D7B144; }
  .article td {
    padding: 0.5rem 2rem;
    text-align: center;
    border: 1px solid #D7B144; }
  .article div.icon {
    float: left;
    width: auto;
    margin-right: 2rem;
    margin-bottom: 1rem; }
    .article div.icon img {
      height: 4rem;
      width: auto; }
  .article div.clearfix {
    display: block;
    clear: both; }
  .article .foto.half {
    width: 100%;
    max-width: 606px; }
    .article .foto.half.left {
      float: left;
      margin-right: 2rem; }
      .article .foto.half.left img {
        width: 100%;
        height: auto; }
    .article .foto.half.right {
      float: left;
      margin-right: 2rem; }
      .article .foto.half.right img {
        width: 100%;
        height: auto; }
  .article .foto .legende {
    margin-top: -0.2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6; }
  .article > h1 + .foto.half.left {
    margin: -50px 2rem .5rem -20px; }
    .article > h1 + .foto.half.left + h1 {
      margin-top: -0.845rem; }
  .article #cms #news .item {
    clear: both;
    padding-top: 0.4rem; }
  .article #cms #news h2 {
    margin-top: 0;
    padding-top: 0; }
  .article #cms #news .text {
    margin-left: 12rem;
    padding: 0; }
  .article #cms #news .fotolinks img {
    width: 10rem;
    height: auto;
    float: left; }
  .article #cms li {
    padding-top: 1rem; }
  .article #cms button {
    width: 24rem;
    height: 3rem;
    margin: 3rem 0;
    padding: 0;
    text-transform: uppercase;
    background-color: #CC9800; }
  .article #cms button a {
    display: block;
    padding: 1rem;
    height: 100%; }
  .article #cms button :hover {
    color: #CC9800;
    background-color: #002e4d; }

.katalog {
  max-width: 57.07rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  /* ??
    @media all and (min-width:55rem){
      justify-content: flex-start;
    }
  */ }
  @media all and (min-width: 72rem) {
    .katalog {
      max-width: 76.7rem; } }
  .katalog--content {
    margin-bottom: 1.95rem; }
  .katalog--description {
    color: #001D31;
    font-size: 0.975rem;
    line-height: 1.43rem;
    font-weight: 300;
    padding: 1.105rem 1.3rem; }
    .katalog--description::after {
      clear: both;
      content: '';
      display: block; }
    @media all and (min-width: 55rem) {
      .katalog--description {
        width: 100%; }
        .katalog--description p {
          font-size: 0.91rem;
          font-weight: 300;
          line-height: 1.43rem; } }
    .katalog--description h1, .katalog--description h2, .katalog--description h3, .katalog--description h4, .katalog--description h5, .katalog--description h6 {
      font-size: 0.91rem;
      line-height: 1.04rem;
      font-weight: 500;
      margin-bottom: 0.845rem;
      text-transform: uppercase; }
    .katalog--description a {
      font-size: 0.845rem;
      font-weight: 500;
      letter-spacing: 0.0325rem;
      line-height: 1.3rem;
      text-transform: uppercase; }
  .katalog .link-to-top {
    font-weight: 500;
    text-transform: uppercase;
    font-size: inherit;
    padding: 0.975rem 0 0; }
    .katalog .link-to-top:hover {
      color: #790C1B;
      cursor: pointer; }
  .katalog > table {
    display: block;
    width: 100%; }
    .katalog > table th {
      text-align: left;
      border-bottom: 1px solid #D7B144;
      padding-left: 1.3rem;
      font-size: 0.91rem;
      line-height: 1.04rem;
      font-weight: 500;
      padding-bottom: 0.845rem;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .katalog > table td {
      padding: 0;
      vertical-align: top; }
      .katalog > table td p {
        padding: 0.65rem 0.65rem;
        background: #fff;
        margin: 0 10px; }
        @media all and (min-width: 55rem) {
          .katalog > table td p {
            margin: 0;
            width: 100%; } }
    .katalog > table > tbody {
      display: block; }
      .katalog > table > tbody > tr:first-child {
        display: flex;
        flex-wrap: wrap;
        width: 100%; }
        .katalog > table > tbody > tr:first-child > th {
          width: 100%;
          display: none; }
          @media all and (min-width: 55rem) {
            .katalog > table > tbody > tr:first-child > th {
              width: 33%;
              display: block; } }
        .katalog > table > tbody > tr:first-child > th:nth-child(4) {
          display: none; }
      .katalog > table > tbody > tr:last-child {
        display: flex;
        flex-wrap: wrap;
        width: 100%; }
        .katalog > table > tbody > tr:last-child > td {
          overflow: auto;
          width: 100%; }
          @media all and (min-width: 55rem) {
            .katalog > table > tbody > tr:last-child > td {
              width: 33%;
              max-height: 200px;
              padding: 0 0.65rem 0; } }
          .katalog > table > tbody > tr:last-child > td:nth-child(1)::before, .katalog > table > tbody > tr:last-child > td:nth-child(2)::before, .katalog > table > tbody > tr:last-child > td:nth-child(3)::before, .katalog > table > tbody > tr:last-child > td:nth-child(4)::before {
            display: block;
            text-align: left;
            border-bottom: 1px solid #D7B144;
            font-size: 0.91rem;
            line-height: 1.04rem;
            font-weight: 500;
            padding: 0.845rem 0 0.845rem 1.3rem;
            text-transform: uppercase;
            margin-bottom: 10px; }
            @media all and (min-width: 55rem) {
              .katalog > table > tbody > tr:last-child > td:nth-child(1)::before, .katalog > table > tbody > tr:last-child > td:nth-child(2)::before, .katalog > table > tbody > tr:last-child > td:nth-child(3)::before, .katalog > table > tbody > tr:last-child > td:nth-child(4)::before {
                display: none; } }
          .katalog > table > tbody > tr:last-child > td:nth-child(1)::before {
            content: 'Produktgruppe'; }
          .katalog > table > tbody > tr:last-child > td:nth-child(2)::before {
            content: 'Erzeuger'; }
          .katalog > table > tbody > tr:last-child > td:nth-child(3)::before {
            content: 'Art'; }
          .katalog > table > tbody > tr:last-child > td:nth-child(4)::before {
            content: 'Produkte';
            width: 100%; }
            @media all and (min-width: 55rem) {
              .katalog > table > tbody > tr:last-child > td:nth-child(4)::before {
                display: block; } }
        .katalog > table > tbody > tr:last-child > td:nth-child(4) {
          display: flex;
          width: 100%;
          max-height: none;
          flex-wrap: wrap;
          padding: 1.3rem 0 0; }
          .katalog > table > tbody > tr:last-child > td:nth-child(4) p {
            margin: 0 0.65rem !important; }
  .katalog a :hover {
    color: #D7B144; }
  .katalog a .current {
    color: #D7B144; }
  .katalog .kat_wein_wein {
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
    .katalog .kat_wein_wein .item {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      background: #fff;
      flex: 1 1 auto;
      margin: 0 0.65rem 1.3rem;
      max-width: 290px;
      width: 100%;
      padding: 20px; }
      @media all and (min-width: 55rem) {
        .katalog .kat_wein_wein .item {
          width: 25%; } }
      @media all and (min-width: 72rem) {
        .katalog .kat_wein_wein .item {
          width: 20%; } }
      .katalog .kat_wein_wein .item > img {
        margin-bottom: 20px; }
      .katalog .kat_wein_wein .item .body {
        text-align: right;
        font-size: 0.65rem;
        line-height: 0.715rem;
        color: #5D798B; }
        .katalog .kat_wein_wein .item .body > a {
          font-weight: 600;
          padding: 0.195rem 0 0.91rem;
          font-size: 1.105rem;
          line-height: 1.43rem;
          display: block;
          text-align: center;
          color: #001D31; }
        .katalog .kat_wein_wein .item .body .redbold {
          display: block;
          font-size: 0.975rem;
          line-height: 1.235rem;
          margin-top: 3px;
          color: #790C1B;
          text-align: right;
          font-weight: bold; }
        .katalog .kat_wein_wein .item .body .orderform form {
          display: flex;
          flex-wrap: wrap;
          width: 100%;
          justify-content: flex-end; }
        .katalog .kat_wein_wein .item .body .orderform .preis {
          width: 100%;
          display: block;
          font-size: 0.975rem;
          font-weight: 600;
          color: #001D31;
          padding: 10px 0;
          text-align: right; }
        .katalog .kat_wein_wein .item .body .orderform input[type="text"] {
          height: 30px;
          border: 0.065rem solid #93A5B3;
          text-align: center;
          font-weight: 500;
          font-size: 1.17rem;
          line-height: 50px;
          -webkit-appearance: none;
          border-radius: 0; }
  .katalog .area {
    width: 100%;
    padding: 0 1.3rem 1.3rem; }
    @media all and (min-width: 55rem) {
      .katalog .area {
        width: 33%;
        padding: 0 1.3rem 1.3rem; } }
    .katalog .area .headline {
      text-align: left;
      border-bottom: 1px solid #D7B144;
      padding-left: 1.3rem;
      font-size: 0.91rem;
      line-height: 1.04rem;
      font-weight: 500;
      padding-bottom: 0.845rem;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .katalog .area .itemlist {
      padding: 0;
      vertical-align: top;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: left; }
      .katalog .area .itemlist h3 {
        text-align: left;
        font-size: 0.91rem;
        line-height: 1.04rem;
        font-weight: 500;
        padding-top: 2rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem; }
      .katalog .area .itemlist .item {
        padding: 0.65rem 0.65rem;
        background: #fff;
        width: 100%; }
        @media all and (min-width: 400px) {
          .katalog .area .itemlist .item {
            width: 50%; } }
        @media all and (min-width: 600px) {
          .katalog .area .itemlist .item {
            width: 33.333%; } }
        @media all and (min-width: 700px) {
          .katalog .area .itemlist .item {
            width: 25%; } }
        @media all and (min-width: 55rem) {
          .katalog .area .itemlist .item {
            margin: 0;
            width: 100%; } }
      .katalog .area .itemlist .inactive {
        color: #5D798B; }
    .katalog .area.wein {
      width: 100%;
      padding: 0 1.3rem 1.3rem; }
      .katalog .area.wein .itemlist {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -1.95rem;
        /* ??
            @media all and (min-width: 55rem) {
              justify-content: flex-start;
            }
        */ }
        .katalog .area.wein .itemlist .product {
          margin: 0 0.65rem 1.3rem;
          width: 100%;
          max-width: 17.55rem; }
          .katalog .area.wein .itemlist .product .inner--wrapper {
            margin: 0 0.65rem 0; }
            @media screen and (min-width: 768px) {
              .katalog .area.wein .itemlist .product .inner--wrapper {
                margin: 0 0.65rem 1.3rem; } }
    .katalog .area.erzeuger .itemlist .item {
      width: 100%; }
      @media all and (min-width: 600px) {
        .katalog .area.erzeuger .itemlist .item {
          width: 50%; } }
      @media all and (min-width: 55rem) {
        .katalog .area.erzeuger .itemlist .item {
          width: 100%; } }

.content, .footer {
  color: #001D31;
  font-weight: 300; }
  .content strong, .footer strong {
    font-weight: 500; }
  .content p, .footer p {
    padding-bottom: 0.9375rem; }
  .content a, .footer a {
    text-decoration: none;
    color: inherit;
    cursor: pointer; }
    .content a:hover, .footer a:hover {
      color: #790C1B; }
    .content a.button:hover, .footer a.button:hover {
      color: #CC9800; }

.home .article {
  padding: 0;
  margin: 0 auto;
  background: none;
  max-width: none; }
.home--headline {
  min-height: 4.355rem;
  text-align: center;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  color: #001D31; }
.home--small, .home--large {
  margin-bottom: 1.3rem;
  text-align: left; }
  .home--small .home--headline, .home--large .home--headline {
    font-weight: 700;
    font-size: 1.105rem;
    color: #790C1B;
    text-align: left;
    padding: 1.3rem 1.95rem 0.65rem; }
    .home--small .home--headline strong, .home--large .home--headline strong {
      width: 100%;
      display: block;
      font-weight: 700;
      color: #001D31;
      text-align: left;
      margin-bottom: 1.3rem; }
.home--hero {
  margin-bottom: 0; }
  .home--hero .home--headline {
    color: #001D31;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.65rem 1.3rem 0.65rem; }
.home img {
  display: block; }
.home .dummy {
  margin: 0 0 2.6rem;
  text-align: center;
  line-height: 5.2rem;
  background: #fff; }
.home--highlight {
  background: #001D31;
  color: #D7B144;
  font-size: 0.91rem;
  line-height: 1.3rem;
  font-weight: 500;
  padding: 1.95rem 1.95rem; }
  @media all and (min-width: 49.92rem) {
    .home--highlight {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }
  .home--highlight strong {
    text-transform: uppercase; }
  .home--highlight .highlight--box {
    padding: 0.65rem 0; }
  .home--highlight .box--w100 {
    width: 100%; }
  @media all and (min-width: 49.92rem) {
    .home--highlight .box--w33 {
      width: 33.3333%; } }
  @media all and (min-width: 49.92rem) {
    .home--highlight .box--w75 {
      width: 75%; } }
  @media all and (min-width: 49.92rem) {
    .home--highlight .box--w50 {
      width: 50%; } }
  @media all and (min-width: 49.92rem) {
    .home--highlight .box--w25 {
      width: 25%; } }
.home--cta {
  background: #fff;
  padding: 1.95rem 1.95rem;
  margin-bottom: 1.3rem;
  font-size: 0.975rem;
  font-weight: bold; }
  @media all and (min-width: 49.92rem) {
    .home--cta {
      display: flex;
      flex-wrap: nowrap; } }
  .home--cta .home-cta--text {
    justify-self: flex-start;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2.6rem;
    position: relative; }
    @media all and (max-width: 27.62435rem) {
      .home--cta .home-cta--text {
        margin-bottom: 5.2rem; } }
    @media all and (min-width: 49.92rem) {
      .home--cta .home-cta--text {
        padding-right: 1.95rem;
        margin-bottom: 0; } }
    @media all and (max-width: 27.62435rem) {
      .home--cta .home-cta--text--inner {
        max-height: 100px;
        text-overflow: ellipsis;
        overflow: hidden;
        position: relative; }
        .home--cta .home-cta--text--inner::after {
          display: block;
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          height: 50px;
          width: 100%;
          background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff); } }
    @media all and (max-width: 27.62435rem) {
      .home--cta .home-cta--text.open .home-cta--text--inner {
        max-height: none; }
        .home--cta .home-cta--text.open .home-cta--text--inner::after {
          display: none; } }
    @media all and (max-width: 27.62435rem) {
      .home--cta .home-cta--text::after {
        display: flex;
        content: "Mehr Informationen >";
        text-align: center;
        position: absolute;
        bottom: -35px;
        left: 0;
        width: 100%;
        height: 30px;
        align-items: center;
        justify-content: center; } }
    @media all and (max-width: 27.62435rem) {
      .home--cta .home-cta--text.open::after {
        display: none; } }
  .home--cta .home-cta--linked-image {
    justify-self: flex-end;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.6rem; }
    @media all and (min-width: 39rem) {
      .home--cta .home-cta--linked-image {
        margin-bottom: 0; } }
@media all and (min-width: 49.92rem) {
  .home--box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.6rem; } }
.home--box .home-box--banner {
  margin-bottom: 2.6rem; }
  @media all and (min-width: 49.92rem) {
    .home--box .home-box--banner {
      margin: 0 10px; } }
  @media all and (min-width: 83.2rem) {
    .home--box .home-box--banner {
      margin: 0; } }
.home--container {
  margin: 0 auto;
  overflow: hidden; }
  .home--container a {
    text-decoration: none !important; }
  @media all and (min-width: 49.92rem) {
    .home--container {
      max-width: none; } }
.home--products .product {
  margin-bottom: 2.6rem; }

.products .product.big-box,
.home--container .product.big-box,
.home-products .product.big-box,
.katalog .area.wein .product.big-box {
  width: 100%; }
  .products .product.big-box .product--innerbox,
  .home--container .product.big-box .product--innerbox,
  .home-products .product.big-box .product--innerbox,
  .katalog .area.wein .product.big-box .product--innerbox {
    display: flex;
    flex-direction: column; }
    .products .product.big-box .product--innerbox .product--details,
    .home--container .product.big-box .product--innerbox .product--details,
    .home-products .product.big-box .product--innerbox .product--details,
    .katalog .area.wein .product.big-box .product--innerbox .product--details {
      background: none;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      display: block;
      position: relative;
      height: auto;
      order: 2;
      margin-bottom: 10px; }
      .products .product.big-box .product--innerbox .product--details .detail--text,
      .home--container .product.big-box .product--innerbox .product--details .detail--text,
      .home-products .product.big-box .product--innerbox .product--details .detail--text,
      .katalog .area.wein .product.big-box .product--innerbox .product--details .detail--text {
        color: inherit; }
    .products .product.big-box .product--innerbox .product--image,
    .home--container .product.big-box .product--innerbox .product--image,
    .home-products .product.big-box .product--innerbox .product--image,
    .katalog .area.wein .product.big-box .product--innerbox .product--image {
      order: 1; }
  .products .product.big-box .addon--text,
  .home--container .product.big-box .addon--text,
  .home-products .product.big-box .addon--text,
  .katalog .area.wein .product.big-box .addon--text {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #790C1B;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 6.85rem; }
    @media screen and (min-width: 622px) {
      .products .product.big-box .addon--text,
      .home--container .product.big-box .addon--text,
      .home-products .product.big-box .addon--text,
      .katalog .area.wein .product.big-box .addon--text {
        position: absolute; } }
    .products .product.big-box .addon--text .addon-text-1,
    .home--container .product.big-box .addon--text .addon-text-1,
    .home-products .product.big-box .addon--text .addon-text-1,
    .katalog .area.wein .product.big-box .addon--text .addon-text-1 {
      font-weight: 600; }
    .products .product.big-box .addon--text .addon-text-2,
    .home--container .product.big-box .addon--text .addon-text-2,
    .home-products .product.big-box .addon--text .addon-text-2,
    .katalog .area.wein .product.big-box .addon--text .addon-text-2 {
      font-weight: 400; }
  .products .product.big-box .pricebox--text .lieferkommentar,
  .home--container .product.big-box .pricebox--text .lieferkommentar,
  .home-products .product.big-box .pricebox--text .lieferkommentar,
  .katalog .area.wein .product.big-box .pricebox--text .lieferkommentar {
    white-space: normal;
    overflow: hidden; }
    @media screen and (min-width: 580px) {
      .products .product.big-box .pricebox--text .lieferkommentar,
      .home--container .product.big-box .pricebox--text .lieferkommentar,
      .home-products .product.big-box .pricebox--text .lieferkommentar,
      .katalog .area.wein .product.big-box .pricebox--text .lieferkommentar {
        overflow: initial;
        white-space: normal;
        width: 47%;
        margin-left: 53%;
        overflow: visible; } }
  @media screen and (min-width: 580px) {
    .products .product.big-box,
    .home--container .product.big-box,
    .home-products .product.big-box,
    .katalog .area.wein .product.big-box {
      max-width: none; }
      .products .product.big-box .product--header,
      .home--container .product.big-box .product--header,
      .home-products .product.big-box .product--header,
      .katalog .area.wein .product.big-box .product--header {
        max-width: none; }
      .products .product.big-box .product--innerbox,
      .home--container .product.big-box .product--innerbox,
      .home-products .product.big-box .product--innerbox,
      .katalog .area.wein .product.big-box .product--innerbox {
        max-width: 50%; }
        .products .product.big-box .product--innerbox .product--details,
        .home--container .product.big-box .product--innerbox .product--details,
        .home-products .product.big-box .product--innerbox .product--details,
        .katalog .area.wein .product.big-box .product--innerbox .product--details {
          position: absolute;
          left: auto;
          right: -100%; }
      .products .product.big-box .product--actions,
      .home--container .product.big-box .product--actions,
      .home-products .product.big-box .product--actions,
      .katalog .area.wein .product.big-box .product--actions {
        max-width: 50%;
        padding-left: 10px; } }
  @media screen and (min-width: 622px) {
    .products .product.big-box,
    .home--container .product.big-box,
    .home-products .product.big-box,
    .katalog .area.wein .product.big-box {
      width: 100%;
      max-width: 600px; } }

.content.form .article {
  max-width: none; }
.content.form .contact--content .contact--form-wrapper {
  max-width: 600px; }
.content.form .contact--content .contact--form .contact--form-row input {
  border: 1px solid #93A5B3;
  border-radius: 0;
  font-size: 14px;
  padding: 11px 15px;
  height: 40px;
  margin: 20px 0 0;
  width: 100%;
  box-shadow: none; }
.content.form .contact--content .contact--form .contact--form-row.checkbox {
  margin-top: 20px; }
.content.form .contact--content .contact--form .contact--form-row.textarea {
  margin-top: 20px; }
  .content.form .contact--content .contact--form .contact--form-row.textarea textarea {
    width: 100%;
    box-shadow: none; }
.content.form .contact--content .contact--form .contact--form-row .chosen-container .chosen-single {
  border: 1px solid #93A5B3;
  height: 40px; }
.content.form .contact--content .contact--form button[type=submit] {
  margin-top: 40px; }
.content.form .contact--content .contact--form .contact--text-small {
  color: #5D798B;
  font-size: 10px; }
.content.form .contact--intro {
  line-height: 1.5rem;
  margin: 1.5rem 0; }

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