@charset "UTF-8";
/*
|--------------------------------------------------------------------------
| Main scss file
|--------------------------------------------------------------------------
| ...
*/
/*
|--------------------------------------------------------------------------
| Base imports
|--------------------------------------------------------------------------
| ...
*/
/* ==========================================================================
   Normalize.scss settings - https://github.com/appleboy/normalize.scss
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import url(./../../vendor/sweetalert/dist/sweetalert.css);
@import url(./../../vendor/pushy/css/pushy.css);
@import url(./../../vendor/slick-1.8.0/slick/slick.css);
@import url(./../../vendor/fancybox-2.1.7/source/jquery.fancybox.css);
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

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

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

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

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

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

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

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

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

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

td,
th {
  padding: 0; }

/*
|--------------------------------------------------------------------------
| Base colors
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Sharetools platform colors
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Notification colors
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Base typography
|--------------------------------------------------------------------------
| ...
*/
html {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  color: #111111; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: "Montserrat", sans-serif; }

h1 {
  font-size: 45px;
  line-height: 47px; }

h2 {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px; }

@media screen and (max-width: 960px) {
  h1 {
    font-size: 35px;
    line-height: 37px; }
  h2 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 22px; } }

.heading {
  display: block;
  margin-bottom: 8px; }

h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
  margin-top: 0; }

p {
  max-width: 830px;
  font-size: 15px;
  line-height: 22px; }

@media screen and (max-width: 960px) {
  p {
    font-size: 14px;
    line-height: 20px; } }

sub {
  font-style: italic;
  line-height: 16px; }

ul,
ol {
  padding: 0;
  padding-left: 20px; }

li {
  margin-bottom: 8px; }

a {
  color: #111111;
  text-decoration: none; }

a:hover {
  text-decoration: none;
  color: #111111; }

address {
  margin-bottom: 35px;
  font-style: normal; }

@media screen and (max-width: 690px) {
  address {
    margin-bottom: 15px; } }

.link-tel,
.link-mail {
  display: block;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 20px !important; }

@media screen and (max-width: 690px) {
  .link-tel,
  .link-mail {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 15px !important; } }

.link-tel {
  margin-bottom: 5px !important;
  color: #796a48; }

::-moz-selection {
  background: #1e1e1e;
  color: #FFFFFF; }

::selection {
  background: #1e1e1e;
  color: #FFFFFF; }

/*
|--------------------------------------------------------------------------
| Utilities imports
|--------------------------------------------------------------------------
| ...
*/
/*
|--------------------------------------------------------------------------
| Utilities general
|--------------------------------------------------------------------------
| ...
*/
.u-group:before,
.u-group:after {
  content: "";
  display: table; }

.u-group:after {
  clear: both; }

.u-group {
  zoom: 1;
  /* ie 6/7 */ }

.u-text-align-center {
  text-align: center !important; }

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

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

.rt-align {
  text-align: right; }

.no-v-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.margin-t0 {
  margin-top: 0; }

.margin-b60 {
  margin-bottom: 40px; }

.u-wide {
  width: 100%;
  max-width: 100%; }

.is-fixed {
  position: fixed; }

.u-float-left {
  float: left; }

.u-float-right {
  float: right; }

.is-visible {
  opacity: 1; }

.desktop-hidden {
  display: none; }

.u-hidden {
  display: none !important; }

.u-hidden\@lg {
  display: none !important; }

@media screen and (max-width: 1162px) {
  .u-hidden\@md {
    display: none !important; }
  .u-visible\@md {
    display: block !important; }
  .u-visible-inline\@md {
    display: inline-block !important; } }

@media screen and (max-width: 640px) {
  .u-hidden\@sm {
    display: none !important; } }

.u-overflowhidden {
  position: fixed;
  width: 100%; }

.u-overflowauto {
  overflow: auto !important; }

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*
|--------------------------------------------------------------------------
| Layout imports
|--------------------------------------------------------------------------
| ...
*/
/*
|--------------------------------------------------------------------------
| Layout grid
|--------------------------------------------------------------------------
| max-width: 1045px - ipad landscape
| max-width: 768 - ipad portrait
*/
html {
  box-sizing: border-box;
  overflow-y: scroll; }

*,
*:before,
*:after {
  box-sizing: inherit; }

.grid {
  position: relative;
  max-width: 1250px;
  padding: 0 20px;
  margin: 0 auto; }
  @media screen and (max-width: 690px) {
    .grid {
      padding: 0 10px; } }
  .grid--wide {
    max-width: 100%;
    padding: 0; }
  .grid--md {
    max-width: 1920px; }
  .grid--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .grid--flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .grid--flex-align {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .grid--more-padding {
    padding-top: 20px !important; }
  .grid--less-padding {
    padding: 15px 0 !important; }
  .grid--no-padding {
    padding: 0 !important; }
  .grid--hidden {
    display: none; }
  .grid--gray {
    padding: 50px 0;
    background: #c5c5c5; }

.grid__col {
  float: left; }
  .grid__col--float-right {
    float: right; }
  .grid__col--float-none {
    float: none;
    margin: 0 auto; }
  .grid__col--no-v-padding {
    padding-top: 0;
    padding-bottom: 0; }
  .grid__col--no-v-margin {
    margin-top: 0;
    margin-bottom: 0; }
  .grid__col--100 {
    float: none;
    width: 100%; }
  .grid__col--90 {
    width: 90%; }
  .grid__col--80 {
    width: 80%; }
  .grid__col--75 {
    width: 75%; }
  .grid__col--70 {
    width: 70%; }
  .grid__col--66 {
    width: 66.666666%; }
  .grid__col--65 {
    width: 65%; }
  .grid__col--60 {
    width: 60%; }
  .grid__col--55 {
    width: 55%; }
  .grid__col--50 {
    width: 50%; }
  .grid__col--49 {
    width: 49%; }
  .grid__col--48 {
    width: 48%; }
  .grid__col--47 {
    width: 47%; }
  .grid__col--46 {
    width: 46%; }
  .grid__col--45 {
    width: 45%; }
  .grid__col--40 {
    width: 40%; }
  .grid__col--35 {
    width: 35%; }
  .grid__col--33 {
    width: 33.333333%; }
  .grid__col--30 {
    width: 30%; }
  .grid__col--25 {
    width: 25%; }
  .grid__col--20 {
    width: 20%; }
  .grid__col--12 {
    width: 12.5%; }
  .grid__col--10 {
    width: 10%; }
  .grid__col--5 {
    width: 5%; }

@media screen and (max-width: 1045px) {
  .grid__col--90 {
    float: none;
    width: 100%; }
  .grid__col--80 {
    float: none;
    width: 100%; }
  .grid__col--75 {
    width: 50%; }
  .grid__col--70 {
    float: none;
    width: 100%; }
  .grid__col--60 {
    float: none;
    width: 100%; }
  .grid__col--40 {
    float: none;
    width: 100%; }
  .grid__col--33 {
    width: 50%; }
  .grid__col--30 {
    float: none;
    width: 100%; }
  .grid__col--25 {
    width: 50%; }
  .grid__col--20 {
    float: none;
    width: 100%; }
  .grid__col--12 {
    width: 50%; }
  .grid__col--10 {
    float: none;
    width: 100%; } }

@media screen and (max-width: 950px) {
  .grid__col--33 {
    float: none;
    width: 100%; } }

@media screen and (max-width: 768px) {
  .grid__col--75 {
    width: 95%;
    margin: 0 auto; }
  .grid__col--50 {
    float: none;
    width: 100%;
    margin: 0 auto; }
  .grid__col--47 {
    float: none;
    width: 100%;
    margin: 0 auto; }
  .grid__col--25 {
    width: 95%;
    margin: 0 auto; }
  .grid__col--12 {
    width: 95%;
    margin: 0 auto; } }

/*
|--------------------------------------------------------------------------
| elements imports
|--------------------------------------------------------------------------
| ...
*/
/*
|--------------------------------------------------------------------------
| Skiplink
|--------------------------------------------------------------------------
| ...
*/
.skiplink {
  position: absolute;
  left: -9999em; }

/*
|--------------------------------------------------------------------------
| No script
|--------------------------------------------------------------------------
| ...
*/
.no-script {
  padding: 12px 0 13px 0;
  text-align: center;
  background: #ffdb7a; }
  .no-script p {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #111111 !important; }

/*
|--------------------------------------------------------------------------
| Browse happy
|--------------------------------------------------------------------------
| ...
*/
.browse-happy p {
  max-width: 100%;
  margin: 0; }

.js .loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #FFFFFF; }

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
| ...
*/
.masthead {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  /* for logout flash message */ }
  .masthead .is-hidden {
    opacity: 0; }

.masthead .top {
  box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 5px;
  height: 62px;
  background-color: #796a48;
  font-weight: 300;
  font-size: 13px;
  line-height: 13px;
  color: #FFFFFF; }
  .masthead .top .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .masthead .top a {
    color: #FFFFFF; }
  .masthead .top .nav-secondary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .masthead .top .nav-secondary ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none; }
  .masthead .top .nav-secondary li {
    float: left;
    padding: 0;
    padding-right: 10px;
    margin: 0;
    margin-right: 10px;
    border-right: 1px solid #FFFFFF; }
  @media screen and (max-width: 580px) {
    .masthead .top .nav-secondary li:first-of-type {
      padding-left: 10px;
      border-left: 1px solid #FFFFFF; } }
  @media screen and (max-width: 480px) {
    .masthead .top .nav-secondary li:nth-of-type(1),
    .masthead .top .nav-secondary li:nth-of-type(2) {
      display: none; } }
  .masthead .top .nav-secondary li:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: none; }
  .masthead .top .nav-secondary ul li a:hover {
    text-decoration: underline; }
  .masthead .top .hamburger--mobile {
    display: none;
    position: relative;
    padding-right: 44px; }
  .masthead .top .hamburger-text {
    position: absolute;
    top: 9px;
    right: 10px; }
  @media screen and (max-width: 480px) {
    .masthead .top .hamburger-text {
      text-transform: uppercase; } }
  .masthead .top .hamburger-box {
    margin-top: 4px; }
  .masthead .top .hamburger-inner, .masthead .top .hamburger-inner::before, .masthead .top .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #FFFFFF; }
  .masthead .top .hamburger-inner::before {
    top: 8px; }
  .masthead .top .hamburger-inner::after {
    bottom: 8px; }
  @media screen and (max-width: 580px) {
    .masthead .top .hamburger--mobile {
      display: block; } }
  .masthead .top .cart-link {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    padding: 10px 20px;
    margin-right: -20px; }
  @media screen and (max-width: 690px) {
    .masthead .top .cart-link {
      padding: 10px 0;
      margin-right: 0; } }
  .masthead .top .cart-link:hover {
    background-color: #594e35; }
  @media screen and (max-width: 690px) {
    .masthead .top .cart-link:hover {
      background-color: #796a48; } }
  .masthead .top .cart-link__icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    background-image: url("../img/shopping-bag.white.svg");
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center; }
  @media screen and (max-width: 580px) {
    .masthead .top .cart-link__icon {
      margin-right: 0; } }
  @media screen and (max-width: 580px) {
    .masthead .top .cart-link__text {
      display: none; } }
  .masthead .top .cart-amount {
    margin-left: 3px; }

.masthead .main {
  background-color: #008fc3;
  background-image: url("../img/ribbon.bkg.png");
  background-repeat: repeat-x;
  background-position: center top;
  color: #FFFFFF; }
  @media screen and (max-width: 1050px) {
    .masthead .main {
      background-position: 80% 0; } }
  @media screen and (max-width: 1050px) {
    .masthead .main {
      background-position: 75% 0; } }
  .masthead .main .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    min-height: 160px;
    padding: 20px; }
  @media screen and (max-width: 1250px) {
    .masthead .main .grid {
      min-height: 120px;
      padding: 0 20px; } }
  @media screen and (max-width: 690px) {
    .masthead .main .grid {
      min-height: 100px; } }
  @media screen and (max-width: 580px) {
    .masthead .main .grid {
      min-height: 80px; } }
  @media screen and (max-width: 380px) {
    .masthead .main .grid {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      min-height: 70px;
      text-align: center; } }
  .masthead .main .logo {
    margin-right: auto; }
  @media screen and (max-width: 1250px) {
    .masthead .main .logo {
      width: 250px; } }
  @media screen and (max-width: 690px) {
    .masthead .main .logo {
      width: 200px; } }
  @media screen and (max-width: 580px) {
    .masthead .main .logo {
      width: 150px;
      margin-left: -3px; } }
  @media screen and (max-width: 380px) {
    .masthead .main .logo {
      margin: 0 auto; } }
  .masthead .main .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  @media screen and (max-width: 1050px) {
    .masthead .main .info {
      display: block; } }
  .masthead .main .info__contact,
  .masthead .main .info__mail,
  .masthead .main .info__delivery {
    display: block;
    margin-right: 65px;
    padding-top: 10px;
    padding-bottom: 10px; }
  @media screen and (max-width: 1260px) {
    .masthead .main .info__contact,
    .masthead .main .info__mail,
    .masthead .main .info__delivery {
      margin-right: 35px; } }
  @media screen and (max-width: 1050px) {
    .masthead .main .info__contact,
    .masthead .main .info__mail,
    .masthead .main .info__delivery {
      margin-right: 0; } }
  .masthead .main .info__contact {
    padding-left: 55px;
    background-image: url("../img/phone-call.svg");
    background-size: auto 45px;
    background-repeat: no-repeat;
    background-position: left center; }
  @media screen and (max-width: 1260px) {
    .masthead .main .info__contact {
      padding-left: 50px;
      background-size: auto 35px; } }
  @media screen and (max-width: 1050px) {
    .masthead .main .info__contact {
      padding: 10px 0;
      background-image: url("../img/phone-call.svg");
      background-size: auto 27px;
      background-repeat: no-repeat;
      background-position: 111px center;
      text-align: right;
      padding: 5px 0;
      padding-right: 45px;
      background-size: auto 19px;
      background-position: 97% center; } }
  @media screen and (max-width: 580px) {
    .masthead .main .info__contact {
      padding-right: 30px; } }
  @media screen and (max-width: 380px) {
    .masthead .main .info__contact {
      display: none; } }
  .masthead .main .info__mail {
    padding-left: 80px;
    background-image: url("../img/message.svg");
    background-size: auto 45px;
    background-repeat: no-repeat;
    background-position: left center; }
  @media screen and (max-width: 1260px) {
    .masthead .main .info__mail {
      padding-left: 67px;
      background-size: auto 35px; } }
  @media screen and (max-width: 1050px) {
    .masthead .main .info__mail {
      padding: 10px 0;
      background-image: url("../img/message.svg");
      background-size: auto 27px;
      background-repeat: no-repeat;
      background-position: 60px center;
      text-align: right;
      padding: 5px 0;
      padding-right: 45px;
      background-size: auto 20px;
      background-position: 98% center; } }
  @media screen and (max-width: 580px) {
    .masthead .main .info__mail {
      display: none; } }
  .masthead .main .info__delivery {
    padding-left: 95px;
    background-image: url("../img/delivery-truck.svg");
    background-size: auto 40px;
    background-repeat: no-repeat;
    background-position: left center;
    margin-right: 0; }
  @media screen and (max-width: 1260px) {
    .masthead .main .info__delivery {
      padding-left: 75px;
      background-size: auto 30px; } }
  @media screen and (max-width: 1050px) {
    .masthead .main .info__delivery {
      display: inline-block;
      padding-left: 50px;
      background-size: auto 20px;
      padding: 5px 0;
      padding-right: 45px;
      background-size: auto 18px;
      background-position: right center; } }
  @media screen and (max-width: 580px) {
    .masthead .main .info__delivery {
      display: none; } }
  .masthead .main .info__top {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 16px;
    color: #111111; }
  .masthead .main .info__extra {
    display: none; }
  @media screen and (max-width: 1260px) {
    .masthead .main .info__top {
      font-size: 16px;
      line-height: 14px; } }
  @media screen and (max-width: 1050px) {
    .masthead .main .info__top {
      margin-bottom: 0;
      font-size: 13px;
      line-height: 11px;
      color: #FFFFFF; }
    .masthead .main .info__extra {
      display: inline-block; } }
  .masthead .main .info__bottom {
    font-size: 13px;
    color: #FFFFFF; }
  @media screen and (max-width: 1050px) {
    .masthead .main .info__bottom {
      display: none; } }

.masthead .bottom {
  position: relative;
  /* z-index: 9998; */
  z-index: 8000;
  height: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
  @media screen and (max-width: 1250px) {
    .masthead .bottom {
      height: 60px; } }
  @media screen and (max-width: 580px) {
    .masthead .bottom {
      height: 62px; } }
  .masthead .bottom .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  @media screen and (max-width: 1250px) {
    .masthead .bottom .grid {
      height: 60px; } }
  .masthead .bottom .hamburger--tablet {
    display: none; }
  .masthead .bottom .hamburger--tablet.has-opacity {
    opacity: 0; }
  .masthead .bottom .hamburger-box {
    margin-top: 6px; }
  @media screen and (max-width: 1250px) {
    .masthead .bottom .hamburger--tablet {
      display: block; } }
  @media screen and (max-width: 580px) {
    .masthead .bottom .hamburger--tablet {
      display: none; } }
  .masthead .bottom .nav-primary {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 65%;
    height: 80px;
    /* attempt to not display extra added "root" menu items because lack of room */
    overflow: hidden;
    opacity: 1; }
  @media screen and (max-width: 1250px) {
    .masthead .bottom .nav-primary {
      display: none; } }
  .masthead .bottom .nav-primary.has-opacity {
    opacity: 0; }
  .masthead .bottom .nav-primary ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  .masthead .bottom .nav-primary li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative;
    float: left;
    padding: 0;
    margin: 0;
    margin-right: 15px;
    height: auto; }
  .masthead .bottom .nav-primary li:last-of-type {
    margin-right: 0; }
  .masthead .bottom .nav-primary li a.nav-primary__new-item {
    color: #008fc3; }
  .masthead .bottom .nav-primary li a.nav-primary__promo-item {
    color: #ea3b20; }
  .masthead .bottom .nav-primary li a.nav-primary__organic-item {
    color: #338A2E; }
  .masthead .bottom .nav-primary li.has-children {
    margin-right: 15px; }
  .masthead .bottom .nav-primary li:last-of-type {
    padding-right: 0; }
  .masthead .bottom .nav-primary li a,
  .masthead .bottom .nav-primary li span.has-children-span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    font-weight: 600;
    height: 80px; }
  .masthead .bottom .nav-primary li span.has-children-span {
    cursor: pointer; }
  .masthead .bottom .nav-primary li span.has-children-span:hover {
    color: #008fc3; }
  .masthead .bottom .nav-primary li.has-children > a:first-of-type,
  .masthead .bottom .nav-primary li.has-children > span.has-children-span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding-right: 40px; }
  .masthead .bottom .nav-primary li.has-children.is-uncollapsed > a :first-of-type {
    color: #008fc3; }
  .masthead .bottom .nav-primary li.has-children > a:first-of-type span {
    display: block; }
  .masthead .bottom .nav-primary li.has-children a {
    position: relative; }
  .masthead .bottom .nav-primary li.has-children .has-children__indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../img/caret-down.white.svg");
    background-color: #c5c5c5;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center center;
    border-radius: 50%;
    margin-right: 20px; }
  .masthead .bottom .nav-primary li.has-children:hover .has-children__indicator {
    transform: rotate(180deg);
    transform-origin: 50% 24%; }
  .masthead .bottom .nav-primary li a:hover,
  .masthead .bottom .nav-primary li a.is-active {
    color: #008fc3; }
  .masthead .bottom .nav-primary__subwrap {
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
    position: absolute;
    z-index: 4;
    top: 82px;
    left: 0;
    width: auto;
    padding: 15px 20px;
    background-color: #FFFFFF;
    border: 1px solid #dfdfdf;
    white-space: nowrap; }
  @media screen and (max-width: 1435px) {
    .masthead .bottom .nav-primary__subwrap {
      left: -100px; } }
  .masthead .bottom .nav-primary li.has-children:hover .nav-primary__subwrap {
    display: block;
    top: 80px; }
  .masthead .bottom .nav-primary__subwrap ul {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top; }
  .masthead .bottom .nav-primary__subwrap ul:last-of-type {
    margin-right: 0; }
  .masthead .bottom .nav-primary__subwrap ul li {
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    text-align: left; }
  .masthead .bottom .nav-primary__subwrap ul li a,
  .masthead .bottom .nav-primary__subwrap ul li span {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
    font-weight: 400;
    text-align: left; }
  .masthead .bottom .nav-primary__subwrap ul li a {
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    padding: 0 4px;
    margin-left: -4px;
    background-color: #FFFFFF; }
  .masthead .bottom .nav-primary__subwrap ul li a:hover,
  .masthead .bottom .nav-primary__subwrap ul li a.is-active {
    background: #c3efff;
    color: #007caa; }
  .masthead .bottom .nav-primary__subcat {
    display: inline-block; }
  .masthead .bottom .nav-primary__subcat:first-of-type {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #008fc3; }
  .masthead .bottom .nav-primary__subcat-title {
    display: block;
    font-weight: 600;
    color: #008fc3;
    text-decoration: underline; }
  .masthead .bottom .form-wrap {
    -webkit-transition: all 0.5s ease-in-out;
    -khtml-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    width: 390px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background-color: #FFFFFF; }
  @media screen and (max-width: 580px) {
    .masthead .bottom .form-wrap {
      display: none; } }
  .masthead .bottom .form-wrap.expanded {
    width: calc(100% - 37px); }
  .masthead .bottom .form-wrap-mobile {
    -webkit-transition: all 0.5s ease-in-out;
    -khtml-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    display: none;
    width: 100%;
    padding-top: 5px;
    position: relative;
    background-color: #FFFFFF; }
  @media screen and (max-width: 580px) {
    .masthead .bottom .form-wrap-mobile {
      display: block; } }
  .masthead .bottom .form--search {
    width: 90%; }
    .masthead .bottom .form--search .form__entry {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      width: 100%;
      margin-bottom: 0; }
    .masthead .bottom .form--search .form__input {
      -webkit-transition: background-color 0.1s ease-in-out;
      -khtml-transition: background-color 0.1s ease-in-out;
      -moz-transition: background-color 0.1s ease-in-out;
      -ms-transition: background-color 0.1s ease-in-out;
      -o-transition: background-color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out;
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -moz-order: 2;
      -ms-flex-order: 2;
      order: 2;
      -webkit-border-radius: 10px;
      -khtml-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      border-radius: 10px;
      width: 389px;
      padding: 13px 40px 13px 15px;
      background-color: transparent;
      border: 2px solid #FFFFFF !important; }
    .masthead .bottom .form--search .form__input:hover {
      background-color: #ebebeb; }
    .masthead .bottom .form--search .form__input:not(:placeholder-shown) {
      background-color: #ebebeb; }
    .masthead .bottom .form--search .form__submit {
      -webkit-transition: all 0.5s ease-in-out;
      -khtml-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -moz-order: 1;
      -ms-flex-order: 1;
      order: 1;
      position: relative;
      width: 40px;
      background-image: url("../img/search.gray.svg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 30px auto;
      background-color: transparent;
      border: none; }
    .masthead .bottom .form--search .form__submit:focus {
      outline: none; }
    .masthead .bottom .form--search .form__close {
      -webkit-transition: all 0.2s ease-in-out;
      -khtml-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      position: absolute;
      top: 7px;
      right: 10px;
      width: 35px;
      height: 35px;
      background-image: url("../img/close.gray.svg");
      background-size: 12px auto;
      background-repeat: no-repeat;
      background-position: center center;
      background-color: transparent;
      opacity: 0; }
  .masthead .bottom .form-wrap.expanded .form--search {
    width: 100%; }
  .masthead .bottom .form-wrap.expanded .form__input {
    width: calc(100% - 40px); }
  .masthead .bottom .form__close.clickable {
    opacity: 1;
    cursor: pointer; }
  .masthead .bottom .form-wrap-mobile .form--search {
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    border: 2px solid #ebebeb; }
  .masthead .bottom .form-wrap-mobile .form__input {
    width: 100%; }

.heroslider {
  max-width: 100%; }
  .heroslider img {
    max-width: 100%;
    width: 100%; }

.heroslider__inner {
  position: relative; }

.heroslider-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

@media screen and (max-width: 880px) {
  .heroslider-overlay {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; } }

.heroslider-overlay__inner {
  width: 870px;
  max-width: 100%;
  color: #FFFFFF;
  overflow: hidden; }

@media screen and (max-width: 1480px) {
  .heroslider-overlay__inner {
    padding: 20px; } }

@media screen and (max-width: 1240px) {
  .heroslider-overlay__inner {
    padding: 10px; } }

@media screen and (max-width: 880px) {
  .heroslider-overlay__inner {
    margin-top: 9%; } }

@media screen and (max-width: 680px) {
  .heroslider-overlay__inner {
    margin-top: 6%; } }

@media screen and (max-width: 580px) {
  .heroslider-overlay__inner {
    margin-top: 3%; } }

.heroslider-overlay__inner span:first-of-type {
  display: inline-block;
  padding: 8px 8px 10px 8px;
  background: #008fc3;
  font-size: 30px;
  line-height: 33px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600; }

.heroslider-overlay__inner h1 {
  margin: 0;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 95px;
  line-height: 100px; }

@media screen and (max-width: 1520px) {
  .heroslider-overlay__inner h1 {
    font-size: 80px;
    line-height: 80px; } }

@media screen and (max-width: 1240px) {
  .heroslider-overlay__inner h1 {
    font-size: 70px;
    line-height: 70px; } }

@media screen and (max-width: 790px) {
  .heroslider-overlay__inner h1 {
    font-size: 50px;
    line-height: 50px; } }

@media screen and (max-width: 580px) {
  .heroslider-overlay__inner h1 {
    font-size: 30px;
    line-height: 30px; } }

.heroslider-overlay__inner p:last-of-type {
  display: block;
  margin-bottom: 39px; }

.heroslider-overlay__inner .button:first-of-type {
  margin-right: 10px; }

@media screen and (max-width: 768px) {
  .heroslider-overlay__inner {
    font-size: 20px; } }

@media screen and (max-width: 1600px) {
  .heroslider-overlay__inner h2 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .heroslider-overlay__inner p:last-of-type {
    margin-bottom: 0; } }

@media screen and (max-width: 1090px) {
  .heroslider-overlay__inner span:first-of-type {
    padding: 4px 4px 5px 4px;
    font-size: 20px;
    line-height: 23px; }
  .heroslider-overlay__inner h2 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 25px; } }

@media screen and (max-width: 880px) {
  .heroslider-overlay__inner .mobile-hidden {
    display: none !important; } }

@media screen and (max-width: 580px) {
  .heroslider-overlay__inner span:first-of-type {
    padding: 2px 2px 3px 2px;
    font-size: 18px;
    line-height: 21px; }
  .heroslider-overlay__inner h2 {
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 20px;
    line-height: 23px; } }

@media screen and (max-width: 380px) {
  .heroslider-overlay__inner span:first-of-type {
    padding: 2px 2px 3px 2px;
    font-size: 16px;
    line-height: 18px; }
  .heroslider-overlay__inner h2 {
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 21px; } }

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
| ...
*/
.hero {
  position: relative;
  height: 500px;
  overflow: hidden; }

@media screen and (max-width: 580px) {
  .hero {
    height: 200px; } }

.hero {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.hero .hero__background-image {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.hero .hero__background-image--1 {
  display: block; }

.hero .hero__overlay {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%; }

.hero .hero__overlay--1 {
  display: block; }

.hero .hero__overlay-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%; }

.hero .hero__overlay-inner {
  width: 870px;
  max-width: 100%;
  color: #FFFFFF;
  overflow: hidden; }

@media screen and (max-width: 1480px) {
  .hero .hero__overlay-inner {
    padding: 20px; } }

@media screen and (max-width: 1240px) {
  .hero .hero__overlay-inner {
    padding: 10px; } }

.hero .hero__overlay-inner span {
  display: inline-block;
  padding: 8px 8px 10px 8px;
  background: #008fc3;
  font-size: 30px;
  line-height: 33px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600; }

.hero .hero__overlay-inner h1 {
  margin: 0;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 95px;
  line-height: 100px; }

@media screen and (max-width: 1520px) {
  .hero .hero__overlay-inner h1 {
    font-size: 80px;
    line-height: 80px; } }

@media screen and (max-width: 1240px) {
  .hero .hero__overlay-inner h1 {
    font-size: 70px;
    line-height: 70px; } }

@media screen and (max-width: 790px) {
  .hero .hero__overlay-inner h1 {
    font-size: 50px;
    line-height: 50px; } }

@media screen and (max-width: 580px) {
  .hero .hero__overlay-inner h1 {
    font-size: 30px;
    line-height: 30px; } }

.hero .hero__overlay-inner p:last-of-type {
  display: block;
  margin-bottom: 39px; }

.hero .hero__overlay-inner .button:first-of-type {
  margin-right: 10px; }

.hero .hero__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  text-decoration: none; }

.hero .hero__nav--left {
  left: 20px;
  background: url("../img/chevron-left.svg") no-repeat center center;
  background-size: 40px 40px; }

.hero .hero__nav--right {
  right: 20px;
  background: url("../img/chevron-right.svg") no-repeat center center;
  background-size: 40px 40px; }

.hero .button--brown:hover {
  background-color: #FFFFFF !important;
  border: 2px solid #796a48 !important;
  color: #796a48 !important; }

.hero .button--ghost:hover {
  background-color: #008fc3;
  border: 2px solid #008fc3;
  color: #FFFFFF; }

@media screen and (max-width: 580px) {
  .hero h3,
  .hero h4,
  .hero p {
    display: none !important; }
  .hero p:first-of-type {
    display: block !important; } }

@media screen and (max-width: 768px) {
  .hero--carousel .hero__overlay-inner {
    font-size: 20px; }
  .hero--carousel .hero__nav--left,
  .hero--carousel .hero__nav--right {
    background-size: 20px 20px; }
  .hero--carousel .hero__nav--left {
    left: 0; }
  .hero--carousel .hero__nav--right {
    right: 0; } }

.hero-sub {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: none;
  height: auto;
  background: #f5edc5;
  color: #796a48; }

@media screen and (max-width: 880px) {
  .hero-sub {
    display: block; } }

.hero-sub .hero-sub__inner {
  display: block;
  padding: 10px; }

.hero-sub .hero-sub__inner--1 {
  display: block; }

.hero-sub p {
  font-size: 13px;
  line-height: 16px; }

.hero-sub p br {
  display: none; }

.hero-sub p:first-of-type {
  margin-top: 0; }

.hero-sub h1 {
  display: none; }

.hero-sub p:last-of-type {
  margin-bottom: 0;
  text-align: center; }

.hero-sub .button--ghost {
  background-color: #008fc3;
  border: none;
  border: 2px solid #008fc3; }

.slider__item {
  display: block; }

.slider__item img {
  display: block;
  width: 100%;
  max-width: 100%; }

.slider__top {
  position: relative; }

.slider__top-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.slider__inner {
  max-width: 100%;
  padding: 0 10px;
  width: 870px; }

.slider__inner span:first-of-type {
  display: inline-block;
  padding: 8px 8px 10px 8px;
  background: #008fc3;
  font-size: 30px;
  line-height: 33px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #FFFFFF; }

@media screen and (max-width: 1075px) {
  .slider__inner span:first-of-type {
    padding: 4px 4px 5px 4px;
    font-size: 20px;
    line-height: 23px; } }

@media screen and (max-width: 580px) {
  .slider__inner span:first-of-type {
    font-size: 16px;
    line-height: 19px; } }

.slider__inner h2:first-of-type {
  color: #FFFFFF; }

@media screen and (max-width: 1260px) {
  .slider__inner h2:first-of-type {
    margin-top: 5px;
    margin-bottom: 5px; } }

@media screen and (max-width: 580px) {
  .slider__inner h2:first-of-type {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 21px; } }

.slider__inner p {
  color: #FFFFFF; }

.slider__inner .button:first-of-type {
  margin-right: 10px; }

.slider__bottom {
  display: none;
  padding: 10px;
  background-color: #f5edc5; }

.slider__bottom p {
  font-size: 13px;
  line-height: 16px;
  color: #796a48; }

.slider__bottom p:first-of-type {
  margin-top: 0; }

.slider__bottom p:first-of-type {
  margin-bottom: 0; }

@media screen and (max-width: 880px) {
  .slider__inner .mobile-hidden {
    display: none !important; }
  .slider__bottom {
    display: block; } }

.slider__bottom .button {
  font-size: 13px;
  line-height: 16px; }

.slider__bottom .button--ghost {
  background-color: #008fc3;
  border: none;
  border: 2px solid #008fc3; }

.buttons-bottom {
  position: absolute;
  width: 100%;
  bottom: 20px; }

@media screen and (max-width: 880px) {
  .buttons-bottom {
    display: none; } }

/*
|--------------------------------------------------------------------------
| carousel
|--------------------------------------------------------------------------
| ...
*/
.carousel {
  position: relative;
  height: 200px; }

.carousel {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }
  .carousel .carousel__background-image {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
  .carousel .carousel__background-image--1 {
    display: block; }
  .carousel .carousel__overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: url("../img/transparent.pixel.black.png"); }
  .carousel .carousel__overlay-inner {
    color: #FFFFFF; }
  .carousel .carousel__overlay-inner .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    height: 200px; }
  .carousel .carousel__overlay-inner h1 {
    display: inline-block;
    padding: 5px;
    margin-bottom: 25px;
    background: #008fc3;
    font-size: 30px;
    line-height: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600; }
  .carousel .carousel__overlay-inner .button:first-of-type {
    display: inline-block; }
  .carousel .carousel__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    text-decoration: none; }
  .carousel .carousel__nav--left {
    left: 20px;
    background: url("../img/chevron-left.svg") no-repeat center center;
    background-size: 40px 40px; }
  .carousel .carousel__nav--right {
    right: 20px;
    background: url("../img/chevron-right.svg") no-repeat center center;
    background-size: 40px 40px; }
  .carousel .button--brown:hover {
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important; }

@media screen and (max-width: 768px) {
  .carousel--carousel .carousel__overlay-inner {
    font-size: 20px; }
  .carousel--carousel .carousel__nav--left,
  .carousel--carousel .carousel__nav--right {
    background-size: 20px 20px; }
  .carousel--carousel .carousel__nav--left {
    left: 0; }
  .carousel--carousel .carousel__nav--right {
    right: 0; } }

.breadcrumbs {
  padding-top: 30px;
  padding-bottom: 20px; }
  @media screen and (max-width: 580px) {
    .breadcrumbs {
      padding-top: 15px;
      padding-bottom: 10px; } }
  .breadcrumbs ul {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none; }
  @media screen and (max-width: 740px) {
    .breadcrumbs ul {
      display: block;
      float: none;
      margin-bottom: 20px; } }
  @media screen and (max-width: 580px) {
    .breadcrumbs ul {
      display: none; } }
  .breadcrumbs li {
    float: left;
    padding: 0;
    margin: 0; }
  .breadcrumbs li a {
    font-weight: 400;
    color: #111111; }
  .breadcrumbs li a:hover {
    color: #008fc3;
    text-decoration: underline; }
  .breadcrumbs li:after {
    content: ">";
    padding: 0 5px;
    color: #c5c5c5; }
  .breadcrumbs li:last-of-type {
    color: #008fc3; }
  .breadcrumbs li:last-of-type a {
    color: #008fc3; }
  .breadcrumbs li:last-of-type:after {
    content: " "; }
  .breadcrumbs .prevnext {
    float: right; }
  @media screen and (max-width: 740px) {
    .breadcrumbs .prevnext {
      display: block;
      float: none; } }
  .breadcrumbs .prevnext a:hover {
    color: #008fc3;
    text-decoration: underline; }
  .breadcrumbs .prevnext a:first-of-type {
    border-right: 1px solid #c5c5c5; }
  @media screen and (max-width: 580px) {
    .breadcrumbs .prevnext a:first-of-type {
      border-right: none; }
    .breadcrumbs .prevnext a:last-of-type {
      float: right; } }

.breadcrumbs--products {
  float: left;
  display: inline-block; }

.products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0; }
  @media screen and (max-width: 1270px) {
    .products {
      padding: 0 10px; } }
  .products .item-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    position: relative;
    width: 25%;
    margin-bottom: 45px;
    box-sizing: border-box; }
  @media screen and (max-width: 1000px) {
    .products .item-container {
      width: 33.333333%; } }
  @media screen and (max-width: 760px) {
    .products .item-container {
      width: 50%; } }
  .products .item-notify {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 0;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border: 2px solid #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase; }
  .products .item-notify--anomaly {
    top: 20px; }
  .products .item-notify--new-dot {
    background-color: #008fc3; }
  .products .item-notify--organic-dot {
    background-color: #338A2E;
    font-size: 10px;
    line-height: 11px; }
  .products .item-notify--promo-dot {
    right: 0;
    left: auto;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #ea3b20; }
  .products .item-notify span {
    color: #FFFFFF; }
  .products .item-container__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    max-width: 88%;
    background: #FFFFFF;
    border: 1px solid #c5c5c5; }
  .products .item-container__inner .item-img {
    position: relative; }
  .products .item-container__inner img {
    width: 100%; }
  .products .item-container__inner img:nth-of-type(2) {
    position: absolute;
    top: 0;
    left: 0; }
  .products .item-container__inner img:nth-of-type(2) {
    display: none; }
  .products .item-content,
  .products .item-bottom {
    margin: 0 15px;
    padding: 15px 0; }
  .products .item-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    border-top: 1px solid #c5c5c5; }
  .products .item-bottom--anomaly {
    display: block; }
  .products .item-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  .products .item-bottom--anomaly .item-price {
    display: block;
    margin-bottom: 10px; }
  .products .item-price__previous {
    display: block;
    text-decoration: line-through; }
  .products .item-bottom--anomaly .item-price__previous {
    display: inline-block;
    float: left; }
  .products .item-price__current {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #008fc3; }
  .products .item-bottom--anomaly .item-price__current {
    display: inline-block;
    float: right; }
  .products .item-bottom--anomaly .item-price__current--no-promo {
    display: block;
    float: none;
    text-align: center; }
  @media screen and (max-width: 490px) {
    .products .item-bottom--anomaly .item-price {
      display: block !important; }
    .products .item-bottom--anomaly .item-price__previous,
    .products .item-bottom--anomaly .item-price__current {
      display: block;
      width: 100%;
      float: none;
      text-align: center; }
    .products .item-bottom--anomaly .item-action--in-cart {
      margin: 0 auto; } }
  .products .item-action--in-cart {
    min-width: 160px; }
  @media screen and (max-width: 1160px) {
    .products .item-action--in-cart {
      display: block;
      min-width: auto;
      width: 40px;
      padding: 0; }
    .products .item-action--in-cart span {
      display: none; } }
  .products .item-action--in-cart a {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    display: block;
    padding: 0;
    padding: 11px;
    padding-left: 30px;
    padding-right: 10px;
    background-color: transparent;
    background-image: url("../img/shopping-bag.black.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 12px center;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    text-transform: lowercase; }
  @media screen and (max-width: 1160px) {
    .products .item-action--in-cart a {
      width: 40px;
      height: 40px;
      padding: 10px;
      background-color: #ebebeb;
      background-image: url("../img/shopping-bag.black.svg");
      background-size: 12px;
      background-repeat: no-repeat;
      background-position: center center; } }
  .products .item-bottom--anomaly .item-action--in-cart a {
    width: 100%;
    text-align: right; }
  .products .item-action--in-cart a:hover {
    background-color: #ebebeb; }

/* =============================================================================
   gmaps
============================================================================= */
.gmaps {
  height: 500px; }
  .gmaps a,
  .gmaps .gmnoprint,
  .gmaps .gm-style-cc {
    display: none; }
  .gmaps--mobile {
    display: none; }
  @media screen and (max-width: 860px) {
    .gmaps {
      display: none; }
      .gmaps--mobile {
        display: block; }
      .gmaps--mobile img {
        width: 100%; } }

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
| ...
*/
.footer {
  background-color: #008fc3;
  background-image: url("../img/ribbon.bkg.png");
  background-repeat: repeat-x;
  background-position: center bottom; }

.footer__newsletter {
  background-size: cover;
  background-position: center -780px; }
  @media screen and (max-width: 690px) {
    .footer__newsletter {
      background-size: auto; } }
  .footer__newsletter .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    min-height: 245px; }
  @media screen and (max-width: 1140px) {
    .footer__newsletter .grid {
      display: block;
      padding: 20px;
      min-height: auto; } }
  @media screen and (max-width: 690px) {
    .footer__newsletter .grid {
      padding: 10px; } }
  @media screen and (max-width: 1140px) {
    .footer__newsletter .grid__col--50 {
      display: block;
      width: 100%; } }
  @media screen and (max-width: 690px) {
    .footer__newsletter .grid__col--50:first-of-type {
      text-shadow: 1px 1px #FFFFFF; } }
  .footer__newsletter .heading {
    font-size: 35px;
    font-weight: 600; }
  @media screen and (max-width: 690px) {
    .footer__newsletter .heading {
      font-size: 20px;
      line-height: 24px; } }
  .footer__newsletter .form--newsletter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    float: right; }
    @media screen and (max-width: 1140px) {
      .footer__newsletter .form--newsletter {
        float: left; } }
    @media screen and (max-width: 554px) {
      .footer__newsletter .form--newsletter {
        width: 100%; } }
    .footer__newsletter .form--newsletter .form__entry {
      -webkit-border-radius: 50px;
      -khtml-border-radius: 50px;
      -moz-border-radius: 50px;
      -ms-border-radius: 50px;
      -o-border-radius: 50px;
      border-radius: 50px;
      position: relative;
      width: 100%;
      margin-bottom: 0;
      padding-right: 100px;
      background-color: #FFFFFF; }
    @media screen and (max-width: 554px) {
      .footer__newsletter .form--newsletter .form__entry {
        width: 100%;
        padding-right: 0;
        background-color: transparent; } }
    .footer__newsletter .form--newsletter .form__input {
      -webkit-transition: background-color 0.1s ease-in-out;
      -khtml-transition: background-color 0.1s ease-in-out;
      -moz-transition: background-color 0.1s ease-in-out;
      -ms-transition: background-color 0.1s ease-in-out;
      -o-transition: background-color 0.1s ease-in-out;
      transition: background-color 0.1s ease-in-out;
      width: 410px;
      border: 2px solid #FFFFFF !important;
      font-size: 14px; }
    @media screen and (max-width: 554px) {
      .footer__newsletter .form--newsletter .form__input {
        -webkit-border-radius: 50px;
        -khtml-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        border-radius: 50px;
        width: 100%; } }
    @media screen and (max-width: 420px) {
      .footer__newsletter .form--newsletter .form__input {
        font-size: 10px; } }
    .footer__newsletter .form--newsletter .form__submit {
      -webkit-transition: all 0.5s ease-in-out;
      -khtml-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      position: absolute;
      top: 0;
      right: 0;
      padding-top: 13px;
      padding-bottom: 13px; }
    @media screen and (max-width: 554px) {
      .footer__newsletter .form--newsletter .form__submit {
        position: relative;
        width: 100%; } }
    .footer__newsletter .form--newsletter .form__submit:hover {
      background-color: #008fc3;
      color: #FFFFFF; }
    .footer__newsletter .form--newsletter .form__entry-error {
      -webkit-border-top-left-radius: 25px;
      -webkit-border-top-right-radius: 50px;
      -webkit-border-bottom-right-radius: 50px;
      -webkit-border-bottom-left-radius: 50px;
      -moz-border-radius-topleft: 25px;
      -moz-border-radius-topright: 50px;
      -moz-border-radius-bottomright: 50px;
      -moz-border-radius-bottomleft: 50px;
      border-top-left-radius: 25px;
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
      border-bottom-left-radius: 50px;
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      width: 100.3%;
      background-color: rgba(255, 255, 255, 0.8);
      border: 2px solid rgba(255, 255, 255, 0.8); }
    @media screen and (max-width: 554px) {
      .footer__newsletter .form--newsletter .form__entry-error {
        -webkit-border-radius: 50px;
        -khtml-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        border-radius: 50px; } }
    .footer__newsletter .form--newsletter .form__entry-error span {
      display: inline-block;
      width: 100%;
      padding: 12px 15px 11px 15px;
      font-size: 14px;
      font-weight: 600; }
    @media screen and (max-width: 554px) {
      .footer__newsletter .form--newsletter .form__entry-error span {
        padding: 11px 15px 11px 15px; } }
    @media screen and (max-width: 420px) {
      .footer__newsletter .form--newsletter .form__entry-error span {
        padding: 8px 15px 8px 15px;
        font-size: 10px; } }

.footer__nav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding-top: 35px;
  padding-bottom: 120px;
  color: #FFFFFF; }
  @media screen and (max-width: 640px) {
    .footer__nav {
      padding-top: 10px; } }
  @media screen and (max-width: 1140px) {
    .footer__nav .grid__col--50 {
      padding: 0 20px; }
    .footer__nav .grid__col--70 .grid__col--50 {
      padding: 0; }
    .footer__nav .grid__col--30 {
      margin-bottom: 25px; } }
  @media screen and (max-width: 1045px) {
    .footer__nav {
      padding-bottom: 15px; }
      .footer__nav .grid__col--25:last-of-type {
        display: none; }
      .footer__nav .desktop-hidden {
        display: block; } }
  @media screen and (max-width: 690px) {
    .footer__nav .grid__col--25 {
      font-size: 13px;
      line-height: 15px; } }
  @media screen and (max-width: 580px) {
    .footer__nav .grid__col--25 {
      width: 100%;
      padding: 0; }
    .footer__nav .grid__col--50 {
      display: none; } }
  .footer__nav-heading {
    display: block;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #111111; }
  @media screen and (max-width: 690px) {
    .footer__nav-heading {
      margin-bottom: 15px;
      font-size: 16px; } }
  .footer__nav-block {
    margin-bottom: 45px; }
  @media screen and (max-width: 690px) {
    .footer__nav-block {
      margin-bottom: 25px; } }
  .footer__nav-block table {
    width: 95%; }
  .footer__nav a {
    color: #FFFFFF; }
  .footer__nav .social {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #796a48;
    border-radius: 50%; }
  .footer__nav .social:hover {
    background-color: #FFFFFF; }
  .footer__nav .social--facebook {
    background-image: url("../img/facebook-f.blue.svg");
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: center; }
  .footer__nav .social--twitter {
    background-image: url("../img/twitter.blue.svg");
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: center; }
  .footer__nav .social--instagram {
    background-image: url("../img/instagram.blue.svg");
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: center; }
  .footer__nav .social--pinterest {
    background-image: url("../img/pinterest-p.blue.svg");
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: center; }
  .footer__nav .social--blogger {
    background-image: url("../img/blogger.blue.svg");
    background-repeat: no-repeat;
    background-size: 73px auto;
    background-position: -16px -17px; }
  .footer__nav ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  .footer__nav li {
    padding: 0;
    margin: 0;
    margin-bottom: 5px; }
  .footer__nav a {
    font-size: 13px;
    line-height: 15px; }
  .footer__nav a:hover {
    color: #111111; }

.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 80px; }
  @media screen and (max-width: 960px) {
    .footer__bottom {
      font-size: 13px;
      line-height: 15px; } }
  @media screen and (max-width: 740px) {
    .footer__bottom {
      display: block;
      min-height: 110px; } }
  .footer__bottom .footer__copyright-credits br {
    display: none; }
  @media screen and (max-width: 740px) {
    .footer__bottom .footer__copyright-credits {
      display: block;
      width: 100%;
      margin-bottom: 15px;
      text-align: center; } }
  @media screen and (max-width: 340px) {
    .footer__bottom .footer__copyright-credits span {
      display: none; }
    .footer__bottom .footer__copyright-credits br {
      display: block; } }
  .footer__bottom .footer__payment-methods {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  @media screen and (max-width: 740px) {
    .footer__bottom .footer__payment-methods {
      display: block;
      text-align: center; }
    .footer__bottom .footer__payment-methods div {
      margin: 0 auto;
      margin-top: 10px; } }
  .footer__bottom .footer__payment-methods span {
    margin-right: 10px; }
  .footer__bottom img {
    max-width: 100%; }
  .footer__bottom .ideal {
    display: inline-block;
    width: 35px;
    margin-right: 10px; }
  .footer__bottom .mastercard {
    display: inline-block;
    width: 51px;
    margin-right: 10px; }
  .footer__bottom .paypal {
    display: inline-block;
    width: 70px;
    margin-right: 10px; }
  .footer__bottom .maestro {
    display: inline-block;
    width: 51px;
    margin-right: 0; }
  .footer__bottom .bancontact {
    display: inline-block;
    width: 43px;
    margin-right: 3px; }

.flash-message-wrap {
  padding: 0 20px; }

.flash-message,
.alert-message {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  display: block;
  max-width: 100% !important;
  padding: 14px 15px 14px 15px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  text-align: left; }
  .flash-message--no-margin,
  .alert-message--no-margin {
    margin-bottom: 0; }
  .flash-message span,
  .alert-message span {
    display: block;
    max-width: 95%; }
  .flash-message p,
  .alert-message p {
    display: block;
    max-width: 90%; }
  .flash-message p:first-of-type,
  .alert-message p:first-of-type {
    margin-top: 0; }
  .flash-message p:last-of-type,
  .alert-message p:last-of-type {
    margin-bottom: 0; }
  .flash-message a,
  .alert-message a {
    font-weight: 600;
    text-decoration: underline; }
  .flash-message a:hover,
  .alert-message a:hover {
    text-decoration: none !important; }
  .flash-message b.sad-smiley-face,
  .alert-message b.sad-smiley-face {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400; }
  .flash-message--error a,
  .alert-message--error a {
    color: #FFFFFF !important; }
  .flash-message--success a,
  .alert-message--success a {
    color: green !important; }
  .flash-message--error,
  .alert-message--error {
    background: #e45d50 !important;
    border: 2px solid #e45d50 !important; }
  .flash-message--success,
  .alert-message--success {
    background: #d5ebd5;
    border: 2px solid #d5ebd5;
    color: green; }
  .flash-message--notification,
  .alert-message--notification {
    background: #ffdb7a;
    border: 2px solid #ffdb7a;
    color: #111111; }
  .flash-message__inner,
  .alert-message__inner {
    float: left;
    width: 90%; }
  .flash-message--logout .flash-message__inner,
  .alert-message--logout .flash-message__inner, .flash-message--logout
  .alert-message__inner,
  .alert-message--logout
  .alert-message__inner {
    width: 98%; }
  .flash-message__close,
  .alert-message__close {
    text-decoration: none !important; }
  .flash-message__close--notification,
  .alert-message__close--notification {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-image: url("../img/close.black.svg");
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent; }
  .flash-message__close--notification:hover,
  .alert-message__close--notification:hover {
    background-color: #fab700;
    text-decoration: none !important; }
  .flash-message__close--error,
  .alert-message__close--error {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    top: 7px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url("../img/close.white.svg");
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent; }
  .flash-message__close--error:hover,
  .alert-message__close--error:hover {
    background-color: #dd3424; }
  .flash-message__close--success,
  .alert-message__close--success {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    top: 7px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url("../img/close.black.svg");
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent; }
  .flash-message__close--success:hover,
  .alert-message__close--success:hover {
    background-color: #7fc17f; }

.alert-message {
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  display: none;
  max-width: 1250px;
  padding: 0;
  margin: 0; }
  .alert-message p {
    font-size: 13px;
    line-height: 15px; }
  @media screen and (max-width: 580px) {
    .alert-message p {
      font: 11px;
      line-height: 13px; } }
  .alert-message .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 14px 20px;
    min-height: 50px; }
  .alert-message__close--notification {
    position: relative;
    top: 0;
    right: -9px; }

.cookiemsg-visible .alert-message {
  display: block; }

.flash-message--logout {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 0;
  left: 0;
  margin: auto;
  /* width: 98%; */
  width: 99%;
  max-width: 1280px !important;
  padding: 13px;
  margin: auto;
  font-size: 13px;
  border: 1px solid green; }
  .flash-message--logout .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 10px 20px;
    min-height: 50px; }
  .flash-message--logout .flash-message__close--logout:hover {
    text-decoration: none; }

/*
|--------------------------------------------------------------------------
| Forms
|--------------------------------------------------------------------------
| ...
*/
.form__fieldset {
  padding: 0;
  margin: 0;
  border: none; }

.form__entry {
  margin-bottom: 10px; }

.form__entry--50 {
  width: 48%; }

.form__entry--float-left {
  float: left; }

.form__entry--float-right {
  float: right; }

.form__label {
  display: block;
  margin-bottom: 5px;
  font-style: normal !important;
  line-height: 22px;
  cursor: pointer !important; }

.form__label--payment {
  padding: 12px 0; }

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="number"],
.form select {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #FFFFFF;
  border: none;
  border: 2px solid #dfdfdf;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  padding: 13px 15px;
  color: #111111; }

.form select {
  background: transparent; }

.form input[type="submit"] {
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #008fc3;
  border: none;
  border: 2px solid #008fc3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  padding: 11px 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #111111; }

.form input[type="submit"]:hover {
  background-color: transparent;
  color: #008fc3; }

.form__input--invalid {
  background: #f5e2e5 !important;
  border: 2px solid #e45d50 !important; }

.form input[type="number"] {
  width: 60px;
  padding-left: 10px;
  padding-right: 4px; }

.form input[type=number]::-webkit-inner-spin-button,
.form input[type=number]::-webkit-outer-spin-button {
  opacity: 1 !important; }

.form input[type="submit"] {
  width: auto; }

.form textarea {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #FFFFFF;
  border: none;
  border: 2px solid #dfdfdf;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  padding: 13px 15px;
  color: #111111;
  resize: none; }

.form__textarea--invalid {
  background: #f5e2e5 !important;
  border: 2px solid #e45d50 !important; }

.form input[type=number]:hover::-webkit-inner-spin-button,
.form input[type=number]:hover::-webkit-outer-spin-button {
  opacity: 1; }

.form input[type="submit"] {
  color: #FFFFFF; }

.form input[type="submit"]:focus {
  outline: none; }

.form__styled-select {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: #FFFFFF url(../img/chevron-down.gray.svg) no-repeat 97% 50%;
  background-size: 10px 10px;
  border: 2px solid #dfdfdf; }

.form__styled-select--invalid {
  margin-bottom: 15px;
  background: #f5e2e5 url(../img/chevron-down.gray.svg) no-repeat 97% 50%;
  background-size: 18px 18px; }

.form__select {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 110%;
  height: 44px;
  padding: 0 12px !important;
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  color: #111111 !important;
  cursor: pointer;
  line-height: 20px; }

.form__number--disabled {
  opacity: .5; }

.form input[type="checkbox"],
.form input[type="radio"] {
  display: none; }

.form .test {
  display: block !important; }

.form input[type="checkbox"] + label span,
.form input[type="radio"] + label span {
  -webkit-transition: border 0.2s ease-in-out;
  -khtml-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 2px 7px 7px 0;
  vertical-align: middle;
  border: 1px solid #d2d2d2;
  cursor: pointer; }

.form input[type="checkbox"] + label:hover span,
.form input[type="radio"] + label:hover span {
  border: 1px solid #111111; }

.form input[type="checkbox"] + label span:focus,
.form input[type="radio"] + label span:focus {
  display: none; }

.form input[type="checkbox"]:checked + label span,
.form input[type="radio"]:checked + label span {
  background: url("../img/check.black.svg") no-repeat center center;
  background-size: 12px auto; }

.form input[type="checkbox"]:last-of-type,
.form input[type="checkbox"]:last-of-type {
  margin-bottom: 0; }

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

.form__label--checkbox span {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.form label:hover {
  cursor: pointer; }

.form .form__entry-error {
  display: none;
  margin-top: 0;
  color: #e45d50; }

.form .error-message {
  color: #FFFFFF; }

.content--register .flash-message--js {
  display: none; }

.flash-message--checkout-register {
  display: none; }

.form--delivery .grid:nth-of-type(2) {
  margin-bottom: 45px; }

@media screen and (max-width: 800px) {
  .form--delivery .form__entry--buttons a,
  .form--delivery .form__entry--buttons .button {
    display: block !important;
    width: 100% !important;
    text-align: center; }
  .form--delivery .form__entry--buttons a {
    margin-bottom: 10px; } }

@media screen and (max-width: 1045px) {
  .form--summary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .form--summary .grid__col--20,
    .form--summary .grid__col--75 {
      display: block;
      float: none;
      width: 100%; }
    .form--summary .grid__col--20 {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -moz-order: 1;
      -ms-flex-order: 1;
      order: 1;
      margin-bottom: 10px; }
    .form--summary .grid__col--75 {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -moz-order: 2;
      -ms-flex-order: 2;
      order: 2; }
    .form--summary__top {
      display: block;
      position: relative; } }

@media screen and (max-width: 1000px) {
  .form--summary .form__entry--buttons .button {
    display: block;
    float: none;
    width: 100%;
    text-align: center; }
  .form--summary .form__entry--buttons .button:nth-of-type(1) {
    margin-bottom: 10px; } }

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
| ...
*/
button {
  outline: none;
  box-shadow: none !important;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none; }

.button {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  display: inline-block;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #008fc3;
  border: none;
  border: 2px solid #008fc3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  padding: 11px 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFFFF !important; }

.button:hover,
.button.is-active {
  background: #FFFFFF !important;
  border: 2px solid #008fc3;
  color: #008fc3 !important;
  text-decoration: none !important; }

.button--no-fade:hover {
  background: #008fc3;
  color: #FFFFFF;
  text-decoration: none !important; }

.button--brown {
  background: #796a48;
  border: 2px solid #796a48 !important; }

.button--brown:hover {
  background: #FFFFFF !important;
  color: #796a48 !important; }

.button--ghost {
  background: transparent;
  border: 2px solid #FFFFFF; }

.button--blue {
  background: #FFFFFF;
  border: 2px solid #008fc3;
  color: #008fc3 !important; }

.button--blue:hover {
  background: #FFFFFF;
  border: 2px solid #FFFFFF !important;
  color: #008fc3; }

.button--disabled {
  opacity: .5; }

.button--disabled:hover {
  background: #008fc3;
  border: 2px solid #008fc3;
  color: #FFFFFF; }

.button--invalid {
  background: #e45d50;
  border: 2px solid #e45d50; }

.button--invalid:hover {
  background: #FFFFFF;
  border: 2px solid #e45d50;
  color: #e45d50; }

.button--empty-cart {
  position: relative;
  padding-left: 50px; }
  .button--empty-cart .icon {
    position: absolute;
    top: 11px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url("../img/trash.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 19px auto; }
  .button--empty-cart:hover .icon {
    background-image: url("../img/trash.blue.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 19px auto; }

@-moz-document url-prefix() {}.account-buttons {
  border-bottom: 1px solid #dfdfdf; }
  @media screen and (max-width: 440px) {
    .account-buttons {
      border-bottom: none; } }
  .account-buttons a {
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    display: inline-block;
    padding: 10px;
    border: 1px solid #dfdfdf;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: -1px; }
  .account-buttons a.is-active,
  .account-buttons a:hover {
    background: #008fc3;
    border: 1px solid #008fc3;
    color: #FFFFFF;
    text-decoration: none !important; }
  @media screen and (max-width: 440px) {
    .account-buttons a {
      -webkit-border-top-left-radius: 0;
      -webkit-border-top-right-radius: 0;
      -webkit-border-bottom-right-radius: 0;
      -webkit-border-bottom-left-radius: 0;
      -moz-border-radius-topleft: 0;
      -moz-border-radius-topright: 0;
      -moz-border-radius-bottomright: 0;
      -moz-border-radius-bottomleft: 0;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      display: block;
      max-width: 100%;
      margin-bottom: 0;
      border: 1px solid #dfdfdf; }
    .account-buttons a.is-active,
    .account-buttons a:hover {
      background: #008fc3;
      border-bottom: 1px solid #008fc3;
      color: #FFFFFF;
      text-decoration: none !important; } }

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */ }

/* Modal Content/Box */
.modal-content {
  -webkit-animation: showSweetAlert 0.3s;
  -khtml-animation: showSweetAlert 0.3s;
  -moz-animation: showSweetAlert 0.3s;
  -ms-animation: showSweetAlert 0.3s;
  -o-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
  max-width: 800px;
  height: 500px;
  padding: 10px;
  background-color: white;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  font-family: 'Montserrat Alternates', sans-serif;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: scroll; }

@media screen and (max-width: 580px) {
  .modal-content {
    padding: 0; } }

.modal-content__flash {
  display: none;
  position: absolute;
  bottom: 68px;
  left: 0;
  width: 100%; }

.modal-content__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: #ebebeb; }

.button--modal-cancel {
  background-color: #ededed !important;
  color: #a0a0a0 !important;
  border: none;
  border: 2px solid #c6c6c6; }

.button--modal-cancel:hover {
  background-color: #008fc3 !important;
  color: #FFFFFF !important;
  border: none;
  border: 2px solid #008fc3; }

.modal-content__iframe {
  width: 100%;
  height: 400px;
  border: none;
  overflow-y: scroll; }

/* The Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #111111;
  font-size: 28px;
  font-weight: bold; }

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer; }

.paginator,
.shpaginator {
  width: 100%;
  padding: 0 24px;
  margin-top: -21px; }
  .paginator ul,
  .shpaginator ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none; }
  .paginator li,
  .shpaginator li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    float: left;
    min-width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
    margin-left: 5px;
    background-color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600; }
  .paginator li a,
  .paginator span,
  .shpaginator li a,
  .shpaginator span {
    display: block;
    min-width: 40px;
    border: 1px solid #c5c5c5;
    text-align: center;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600; }
  .paginator li a,
  .shpaginator li a {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out; }
  .paginator li span,
  .paginator li.active a,
  .shpaginator li span,
  .shpaginator li.active a {
    background-color: #ebebeb;
    cursor: default; }
  .paginator li.active a:hover,
  .shpaginator li.active a:hover {
    background-color: #ebebeb !important;
    border: 1px solid #c5c5c5 !important;
    color: #111111 !important; }
  .paginator li a:hover,
  .shpaginator li a:hover {
    background-color: #008fc3;
    border: 1px solid #008fc3;
    color: #FFFFFF !important; }
  .paginator a,
  .shpaginator a {
    display: block;
    line-height: 37px; }
  .paginator .disabled,
  .shpaginator .disabled {
    display: none; }

.paginator__ul {
  display: none; }

.pushy {
  background: #f5edc5 !important;
  color: #796a48 !important;
  font-size: 14px; }
  .pushy ul {
    list-style: none !important;
    padding: 0 !important; }
  .pushy ul:first-child {
    margin-top: 5 !important; }
  .pushy li {
    padding: 0 5px !important;
    margin-bottom: 0; }
  .pushy .pushy-submenu li {
    padding: 0 !important; }
  .pushy span {
    display: block;
    color: #b3b3b1;
    padding: 15px 30px;
    text-decoration: none; }
  .pushy .pushy-link a,
  .pushy .pushy-link--heading span {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 7px 15px;
    font-weight: 600;
    color: #796a48 !important; }
  .pushy .pushy-link.pushy-link--new-item a {
    color: #008fc3 !important; }
  .pushy .pushy-link.pushy-link--promo-item a {
    color: #ea3b20 !important; }
  .pushy .pushy-link.pushy-link--organic-item a {
    color: #338A2E !important; }
  .pushy .pushy-link--heading span {
    font-weight: 600;
    text-decoration: underline; }
  .pushy .pushy-link a:hover,
  .pushy .pushy-link a.is-active {
    background: #796a48 !important;
    color: #FFFFFF !important; }
  .pushy .pushy-submenu ul {
    background-color: #eee09a;
    border-bottom: 1px solid #796a48; }
  .pushy .pushy-link--sub {
    padding-left: 20px;
    padding-right: 20px; }
  .pushy button {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 9px 15px !important;
    font-weight: 600;
    color: #796a48 !important; }
  .pushy button:hover {
    background: #796a48 !important;
    color: #FFFFFF !important; }
  .pushy .pushy-submenu-open ul {
    max-height: 1700px; }

.swipe-indicator {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin-bottom: 10px;
  padding: 12px 14px 13px 14px;
  background: #ffdb7a;
  border: 2px solid #ffdb7a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }
  .swipe-indicator span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 20px;
    height: 20px;
    background-image: url("../img/hand.svg");
    background-size: 19px auto;
    background-repeat: no-repeat;
    background-position: center center; }

@media screen and (max-width: 780px) {
  .form--cart .swipe-indicator {
    display: block;
    position: relative; }
  .form--summary .swipe-indicator {
    position: relative;
    display: block;
    width: 100%; } }

@media screen and (max-width: 640px) {
  .form--cart .swipe-indicator {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 10px; } }

@media screen and (max-width: 480px) {
  .my-orders .swipe-indicator {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 10px; } }

@media screen and (max-width: 525px) {
  .my-orders__top--anomaly .swipe-indicator {
    position: relative;
    display: block !important;
    width: 100%;
    margin-bottom: 10px; } }

@media screen and (max-width: 410px) {
  .my-orders__top .swipe-indicator {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 10px; } }

.checkout {
  margin-bottom: 65px; }

@media screen and (max-width: 520px) {
  .checkout {
    margin-bottom: 35px; } }

.checkout .steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.checkout .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 25%;
  height: 70px; }

.checkout .step__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  background-color: #ebebeb;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #a0a0a0; }

@media screen and (max-width: 520px) {
  .checkout .step__number {
    margin-top: -12px; } }

.checkout .step.-active .step__number {
  background-color: #008fc3;
  color: #FFFFFF; }

.checkout .step.-completed .step__number {
  background-color: #7fc17f;
  background-image: url("../img/check.white.svg");
  background-position: center center;
  background-size: 15px auto;
  background-repeat: no-repeat;
  color: #FFFFFF; }

.checkout .step__title {
  font-size: 12px;
  line-height: 14px; }

@media screen and (max-width: 520px) {
  .checkout .step__title {
    display: none; } }

.checkout .separator {
  margin-top: -46px;
  height: 1px;
  background-color: #ebebeb; }

/*
|--------------------------------------------------------------------------
| general
|--------------------------------------------------------------------------
*/
.content {
  padding-bottom: 35px; }
  .content h1 .check {
    color: #00cd00; }
  .content h1 .times {
    color: #e45d50; }
  .content a {
    color: #008fc3;
    font-weight: 600; }
  .content a:hover {
    text-decoration: underline; }

/*
|--------------------------------------------------------------------------
| modules imports
|--------------------------------------------------------------------------
*/
.sect-home .content {
  padding-top: 35px;
  padding-bottom: 75px; }
  .sect-home .content .content__block {
    position: relative;
    min-height: 320px;
    background-size: cover;
    color: #FFFFFF; }
  .sect-home .content .content__block--margin-bottom {
    margin-bottom: 50px; }
  @media screen and (max-width: 790px) {
    .sect-home .content .content__block {
      display: block;
      float: none;
      width: 100%;
      height: 350px; }
    .sect-home .content .content__block:first-of-type {
      margin-bottom: 20px; } }
  .sect-home .content .content__block:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url("../img/transparent.pixel.black.png");
    content: ''; }
  .sect-home .content .content__block .button:hover {
    border: 2px solid #FFFFFF;
    color: #FFFFFF; }
  .sect-home .content .content__block-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 45px; }
  @media screen and (max-width: 790px) {
    .sect-home .content .content__block-inner {
      padding: 20px; } }
  .sect-home .content .content__block-inner--wide {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    background-size: cover; }
  .sect-home .content .content__block-inner p:last-of-type {
    margin-bottom: 35px; }
  .sect-home .content .grid__col--100:nth-of-type(2) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin: 35px 0;
    text-align: center; }

.sect-pages-contact .content .grid__col--100:first-of-type {
  margin-bottom: 70px; }

@media screen and (max-width: 1140px) {
  .sect-pages-contact .content .grid__col--35,
  .sect-pages-contact .content .grid__col--65 {
    display: block;
    width: 100%; } }

.sect-pages-contact .content .heading {
  display: block;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #111111; }

.sect-pages-contact .content .link-mail {
  color: #008fc3 !important; }

.sect-pages-contact .content .grid__col--100 .grid__col--35 table {
  width: 100%; }

.sect-pages-contact .content .grid__col--100 .grid__col--35 div {
  margin-bottom: 35px; }

@media screen and (max-width: 580px) {
  .sect-pages-contact .content .form--contact .form__entry--50 {
    display: block;
    float: none;
    width: 100%; } }

.sect-pages-contact .content .form__entry--button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.sect-pages-contact .content .form__entry--button div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2;
  overflow: hidden; }

.sect-pages-contact .content .form__entry--button div label {
  width: 0px;
  color: #FFFFFF;
  overflow: hidden(); }

.sect-pages-contact .content .form__entry div .form__input {
  width: 0px;
  background-color: transparent !important;
  border: 2px solid transparent !important; }

.sect-pages-contact .content .form__entry--button .button {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1;
  height: 48px; }

.sect-pages-contact .content .form__entry--button .button:hover {
  color: #008fc3 !important; }

.sect-basic_products-index .content {
  padding-top: 35px;
  padding-bottom: 35px; }

.filter-trigger-mobile {
  position: relative;
  display: none;
  padding: 12px 10px;
  padding-right: 40px;
  margin-bottom: 2px;
  border: 1px solid #c5c5c5;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  cursor: pointer; }
  @media screen and (max-width: 800px) {
    .filter-trigger-mobile {
      display: block; } }
  .filter-trigger-mobile .filter-indicator {
    position: absolute;
    top: 10px;
    right: -15px;
    display: block;
    width: 25px;
    height: 25px;
    /* margin-left: -20px; */
    background-image: url(../img/filter.gray.svg);
    /* background-color: #c5c5c5; */
    background-repeat: no-repeat;
    background-size: 15px auto;
    background-position: center center;
    margin-right: 20px; }

.filters {
  margin-bottom: 36px;
  min-height: 45px;
  max-width: 1208px;
  padding: 0; }
  @media screen and (max-width: 1270px) {
    .filters {
      padding: 0 10px; } }
  .filters .form--filter__inner {
    position: relative; }
  .filters .category-dropdown-list__subwrap {
    display: inline-block;
    vertical-align: top; }
  @media screen and (max-width: 800px) {
    .filters .category-dropdown-list__subwrap {
      width: 100%; } }
  .filters .category-dropdown {
    display: block;
    padding: 12px 10px;
    padding-right: 40px;
    border: 1px solid #c5c5c5;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    cursor: pointer; }
  .filters .category-dropdown-list {
    display: none;
    position: absolute;
    z-index: 1;
    top: 47px;
    left: 0px;
    padding: 10px 5px;
    background: #FFFFFF;
    border: 1px solid #c5c5c5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap; }
  .filters .category-dropdown-list--1 {
    min-width: 150px; }
  .filters .category-dropdown-list--2 {
    min-width: 122px; }
  .filters .category-dropdown-list--sort-order {
    min-width: 137px; }
  @media screen and (max-width: 800px) {
    .filters .category-dropdown-list--1 {
      min-width: auto;
      width: 100%; }
    .filters .category-dropdown-list--2 {
      min-width: auto;
      width: 100%; }
    .filters .category-dropdown-list--sort-order {
      min-width: auto;
      width: 100%; } }
  .filters .category-dropdown-list--amount {
    left: auto;
    right: 0; }
  .filters .category-dropdown-list .form__entry {
    margin-bottom: 0; }
  .filters .category-dropdown-list .faux-checkbox {
    -webkit-transition: border 0.2s ease-in-out;
    -khtml-transition: border 0.2s ease-in-out;
    -moz-transition: border 0.2s ease-in-out;
    -ms-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #d7d7d7;
    cursor: pointer; }
  .filters .category-dropdown-list .faux-checkbox.is-checked {
    background: url("../img/check.black.svg") no-repeat center center;
    background-size: 12px auto; }
  .filters .category-dropdown-list a {
    -webkit-transition: background-color 0.2s ease-in-out;
    -khtml-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    display: block;
    position: relative;
    padding-top: 2px;
    padding-right: 4px;
    padding-bottom: 2px;
    padding-left: 25px;
    background-color: #FFFFFF;
    font-size: 13px; }
  .filters .category-dropdown-list a:hover {
    background-color: #ebebeb; }
  .filters .category-dropdown-list a:hover .faux-checkbox {
    border: 1px solid #111111; }
  @media screen and (max-width: 800px) {
    .filters .filters__group:first-of-type {
      float: none;
      width: 100%; }
    .filters .filters__group:first-of-type .form--filter {
      display: none; }
    .filters .filters__group:last-of-type {
      display: none; } }
  .filters .form--filter {
    float: left;
    margin-right: 10px; }
  @media screen and (max-width: 800px) {
    .filters .form--filter {
      float: none;
      display: block;
      width: 100%; } }
  .filters .form--filter:last-of-type {
    margin-right: 0; }
  .filters .filters__group .filter--filter:last-of-type {
    margin-right: 0; }
  .filters div.last-of-type .filter:last-of-type {
    margin-right: 0; }
  .filters .indicator {
    position: absolute;
    top: 16px;
    right: -10px;
    display: block;
    width: 15px;
    height: 15px;
    margin-left: -20px;
    background-image: url("../img/caret-down.white.svg");
    background-color: #c5c5c5;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center center;
    border-radius: 50%;
    margin-right: 20px; }
  .filters .is-uncollapsed .indicator {
    -webkit-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1; }
  .filters .amount {
    margin-left: 5px;
    color: #111111; }

.sect-basic_products-detail .content {
  padding-top: 10px;
  padding-bottom: 65px; }
  .sect-basic_products-detail .content .grid__col--100:first-of-type {
    margin-bottom: 25px; }
  .sect-basic_products-detail .content .grid__col--49 {
    margin-bottom: 25px; }
  .sect-basic_products-detail .content .grid__col--49:first-of-type {
    position: relative; }
  @media screen and (max-width: 740px) {
    .sect-basic_products-detail .content .grid__col--49 {
      display: block;
      float: none;
      width: 100%; } }
  .sect-basic_products-detail .content .product-meta {
    min-height: 502px;
    padding: 30px;
    margin-bottom: 10px;
    border: 1px solid #dfdfdf; }
  @media screen and (max-width: 740px) {
    .sect-basic_products-detail .content .product-meta {
      padding: 15px; } }
  .sect-basic_products-detail .content .product-meta-bottom a {
    padding-bottom: 5px;
    border-bottom: 1px solid #008fc3; }
  .sect-basic_products-detail .content .product-meta-bottom a:hover {
    border-bottom: 1px solid transparent;
    text-decoration: none; }
  .sect-basic_products-detail .content .product-meta-bottom a:last-of-type {
    float: right; }
  .sect-basic_products-detail .content .product-meta h1 {
    font-size: 25px;
    line-height: 25px; }
  .sect-basic_products-detail .content .product-meta__block {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #dfdfdf; }
  .sect-basic_products-detail .content .product-meta__block:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }
  .sect-basic_products-detail .content .product-meta__block .heading {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px; }
  .sect-basic_products-detail .content .product-meta__block > form:first-of-type {
    margin-bottom: 25px; }
  .sect-basic_products-detail .content .product-meta div p,
  .sect-basic_products-detail .content .product-meta div ul,
  .sect-basic_products-detail .content .product-meta div ol {
    margin-top: 0; }
  .sect-basic_products-detail .content .product-meta div p:last-of-type,
  .sect-basic_products-detail .content .product-meta div ul:last-of-type,
  .sect-basic_products-detail .content .product-meta div ol:last-of-type {
    margin-bottom: 0; }
  .sect-basic_products-detail .content .product-meta__price-wrap {
    margin-bottom: 10px; }
  .sect-basic_products-detail .content .product-meta__price--previous {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    text-decoration: line-through;
    color: #a0a0a0; }
  .sect-basic_products-detail .content .product-meta__price--current {
    display: block;
    font-size: 35px;
    font-weight: 600;
    color: #008fc3; }
  .sect-basic_products-detail .content .product-meta__amount {
    float: left; }
  .sect-basic_products-detail .content .product-meta__amount .form__number {
    font-weight: 600; }
  .sect-basic_products-detail .content .product-meta__button {
    float: right; }
  .sect-basic_products-detail .content .fabric-amount,
  .sect-basic_products-detail .content .fabric-price {
    font-weight: 600; }
  .sect-basic_products-detail .content .item-notify {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    top: -25px;
    left: 0;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border: 2px solid #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase; }
  .sect-basic_products-detail .content .item-notify--promo-dot {
    background-color: #ea3b20;
    left: auto;
    right: 0;
    font-size: 16px !important; }
  @media screen and (max-width: 740px) {
    .sect-basic_products-detail .content .item-notify--promo-dot {
      left: 0;
      right: auto; }
    .sect-basic_products-detail .content .item-notify--promo-dot-anom1 {
      top: 25px; }
    .sect-basic_products-detail .content .item-notify--promo-dot-anom2 {
      top: 75px; } }
  .sect-basic_products-detail .content .item-notify--new-dot {
    background-color: #008fc3; }
  .sect-basic_products-detail .content .item-notify--organic-dot {
    background-color: #338A2E;
    font-size: 10px;
    line-height: 11px !important; }
  .sect-basic_products-detail .content .item-notify--anomaly {
    top: 25px; }
  .sect-basic_products-detail .content .item-notify span {
    color: #FFFFFF; }
  .sect-basic_products-detail .content .image-mobile {
    display: none; }
  .sect-basic_products-detail .content .content__block {
    position: relative;
    min-height: 320px;
    background-size: cover;
    color: #FFFFFF; }
  .sect-basic_products-detail .content .content__block:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url("../img/transparent.pixel.black.png");
    content: ''; }
  .sect-basic_products-detail .content .content__block-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 45px; }
  .sect-basic_products-detail .content .content__block-inner--wide {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start; }
  .sect-basic_products-detail .content .content__block-inner p:last-of-type {
    margin-bottom: 35px; }
  .sect-basic_products-detail .content .cat-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  .sect-basic_products-detail .content .cat-wrapper li {
    float: left;
    padding: 0;
    margin: 0;
    margin-bottom: 5px; }
  .sect-basic_products-detail .content .cat-wrapper a {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #008fc3;
    border: 1px solid #008fc3;
    border-radius: 15px;
    color: #FFFFFF;
    font-size: 11px; }
  .sect-basic_products-detail .content .cat-wrapper a:hover {
    background: transparent;
    color: #008fc3;
    text-decoration: none; }
  .sect-basic_products-detail .content .zoomContainer {
    width: 590px !important; }
  .sect-basic_products-detail .content .zoom-wrapper {
    overflow: hidden;
    max-width: 590px !important;
    margin-bottom: 10px; }
  .sect-basic_products-detail .content .zoomWrapper {
    width: 590px !important; }
  .sect-basic_products-detail .content .zoom-container img {
    max-width: 100%;
    border: 1px solid #dfdfdf; }
  .sect-basic_products-detail .content .image-view__link {
    display: none; }
  .sect-basic_products-detail .content .image-view__link--1 {
    display: block; }
  .sect-basic_products-detail .content .image-view__link img {
    max-width: 100%;
    border: 1px solid #dfdfdf; }

.zoomLens {
  opacity: 0 !important; }

.zoomWindowContainer {
  display: none !important; }

.sect-orders-account .content .account__buttons {
  padding-top: 25px;
  padding-bottom: 0; }

.sect-forgot-password .content {
  padding-top: 35px;
  padding-bottom: 35px; }

.sect-orders-myorders .my-orders-table-wrap {
  overflow-x: scroll;
  width: 500px; }

@media screen and (max-width: 525px) {
  .sect-orders-myorders .my-orders-table-wrap {
    width: 100%; } }

.sect-orders-myorders .my-orders-table {
  width: 500px;
  background: #FFFFFF; }

.sect-orders-myorders .my-orders-table thead {
  background-color: #008fc3;
  border: 1px solid #008fc3;
  color: #FFFFFF; }

.sect-orders-myorders .my-orders-table thead th {
  padding: 10px;
  text-align: center; }

.sect-orders-myorders .my-orders-table tbody tr td {
  border: 1px solid #dfdfdf; }

.sect-orders-myorders .my-orders-table tbody tr:nth-of-type(even) {
  background-color: #f8f8f8; }

.sect-orders-myorders .my-orders-table tbody tr:hover {
  background-color: #ebebeb; }

.sect-orders-myorders .my-orders-table tbody td {
  padding: 10px;
  text-align: center; }

.sect-orders-myorders .my-orders-table .td-link {
  padding: 0; }

.sect-orders-myorders .my-orders-table .td-link a {
  background-image: url("../img/search.black.svg");
  background-position: center center;
  background-size: 20px auto;
  background-repeat: no-repeat;
  display: block;
  height: 43px; }

.sect-orders-myorders .my-orders-table .td-link a:hover {
  text-decoration: none; }

.order-detail-table-wrap {
  overflow-x: scroll; }

.order-detail-table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse; }
  .order-detail-table thead {
    background: #008fc3;
    color: #FFFFFF; }
  .order-detail-table thead th {
    border: 1px solid #008fc3;
    padding: 10px;
    text-align: left; }
  .order-detail-table thead .th-last {
    text-align: right; }
  .order-detail-table tbody td {
    padding: 10px;
    border: 1px solid #dfdfdf; }
  .order-detail-table tbody td.td-empty {
    border: 1px solid #FFFFFF; }
  .order-detail-table tbody tr td.td-empty:nth-of-type(2) {
    border-right: 1px solid #dfdfdf; }
  .order-detail-table tbody .td-number {
    text-align: center; }
  .order-detail-table tbody .td-date {
    width: 30%;
    text-align: left; }
  .order-detail-table tbody .td-price {
    width: 60%;
    text-align: center;
    color: #060600;
    text-align: left; }
  .order-detail-table tbody .td-link {
    width: 2%;
    text-align: center; }
  .order-detail-table tbody .td-last {
    text-align: right; }
  .order-detail-table tbody .tr-separator {
    line-height: 2px; }
  .order-detail-table tbody .tr-separator td {
    background: #dfdfdf;
    padding: 0px; }

.order-detail-table--info {
  width: 90%; }
  @media screen and (max-width: 1045px) {
    .order-detail-table--info {
      max-width: 480px; } }
  @media screen and (max-width: 570px) {
    .order-detail-table--info {
      width: 100%; } }
  .order-detail-table--info td {
    vertical-align: top; }
  .order-detail-table--info td:nth-of-type(1) {
    width: 20%;
    background: #008fc3;
    border: 1px solid #008fc3;
    color: #FFFFFF; }
  .order-detail-table--info td:nth-of-type(2) {
    width: 80%;
    border: 1px solid #dfdfdf; }
  .order-detail-table--info p {
    text-align: right; }

.order-detail-table--products tbody tr td:nth-of-type(1) {
  width: 65%; }

.order-detail-table--products tbody tr td:nth-of-type(2) {
  width: 10%; }

.order-detail-table--products tbody tr td:nth-of-type(3) {
  width: 15%; }

.order-detail-table--products tbody tr td:nth-of-type(4) {
  width: 10%; }

.cart-table-wrap {
  width: 100%;
  overflow: hidden; }

@media screen and (max-width: 790px) {
  .cart-table-wrap {
    overflow-x: scroll; } }

.cart-table {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  min-width: 740px; }
  .cart-table thead {
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px; }
    .cart-table thead tr {
      background: #ebebeb; }
    .cart-table thead th {
      padding: 15px 10px;
      font-weight: 400;
      text-align: left; }
    .cart-table thead .th-image {
      width: 100px; }
    .cart-table thead .th-price {
      width: 130px;
      text-align: left; }
    .cart-table thead .th-amount {
      width: 100px;
      text-align: center; }
    .cart-table thead .th-subtotal {
      width: 100px; }
    .cart-table thead .th-remove {
      width: 60px; }
  .cart-table tbody tr {
    background: #FFFFFF;
    border-bottom: 1px solid #ebebeb; }
  .cart-table tbody td {
    padding: 10px;
    font-weight: 400;
    text-align: left; }
  .cart-table tbody .td-image {
    width: 100px; }
  .cart-table tbody .td-image img {
    width: 100px; }
  .cart-table tbody .td-productname a {
    -webkit-transition: color 0.2s ease-in-out;
    -khtml-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    color: #111111; }
  .cart-table tbody .td-productname a:hover {
    color: #ebebeb; }
  .cart-table tbody .td-price {
    width: 100px;
    text-align: left; }
  .cart-table tbody .td-amount {
    width: 90px;
    text-align: center; }
  .cart-table tbody .td-amount input[type="number"] {
    border: 1px solid #ebebeb !important; }
  .cart-table tbody .td-subtotal {
    width: 87px; }
  .cart-table tbody .td-remove {
    width: 60px;
    text-align: center; }
  .cart-table tbody .td-remove a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    padding-bottom: 2px;
    background-color: #dfdfdf;
    background-image: url(../img/close.black.svg);
    background-size: 10px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border-radius: 50%; }
  .cart-table tbody .td-remove a:hover {
    background-color: #e45d50;
    background-image: url(../img/close.white.svg);
    background-size: 10px auto;
    background-repeat: no-repeat;
    background-position: center center; }
  .cart-table tfoot tr {
    background: #FFFFFF; }
  .cart-table tfoot tr:nth-of-type(2) td {
    padding-top: 15px;
    padding-bottom: 15px; }
  .cart-table tfoot td {
    padding: 10px;
    font-weight: 400;
    text-align: left; }
  .cart-table tfoot .td-info {
    text-align: right; }
  .cart-table tfoot .td-info b,
  .cart-table tfoot .td-info--total-amount b,
  .cart-table tfoot .td-info--total b,
  .cart-table tfoot .td-info--shippingcosts b {
    color: #111111 !important; }
  .cart-table tfoot .td-info--free-shipping {
    padding-top: 0;
    font-size: 12px;
    line-height: 12px; }
  .cart-table tfoot .td-price {
    width: 112px; }
  .cart-table tfoot .td-info--total {
    color: #d2d2d2; }
  .cart-table tfoot .tr-last {
    background: #ebebeb; }

.cart__coupon {
  position: relative;
  /* for .form__entry--absolute positioning */
  float: left;
  width: 35%; }

.cart__buttons {
  float: right; }

.cart__coupon button:hover {
  background-color: #008fc3 !important;
  border: 2px solid #008fc3 !important;
  color: #FFFFFF !important; }

.cart #js-coupon {
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 10px;
  height: 48px; }

.cart .form__entry-error {
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 50px;
  -webkit-border-bottom-right-radius: 50px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 50px;
  -moz-border-radius-bottomright: 50px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 10px;
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 102%;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.8); }

.cart .form__entry-error span {
  display: inline-block;
  width: 100%;
  padding: 12px 15px 11px 15px;
  font-weight: 600; }

.cart .form__entry--coupon {
  width: 75%; }

.cart .form__entry--absolute {
  position: absolute;
  top: 0;
  right: 0%; }

.cart .button--coupon-check {
  white-space: nowrap; }

.cart .form__entry-success--coupon {
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  display: inline-block;
  padding: 12px 14px 13px 14px;
  background: #ffdb7a;
  border: 2px solid #ffdb7a;
  color: #111111 !important; }

.cart .grid:last-of-type {
  padding-top: 25px; }

@media screen and (max-width: 1130px) {
  .cart__buttons, .cart__coupon {
    float: none;
    width: 100%; }
  .cart__coupon .form__entry {
    width: 100%; }
  .cart #js-coupon {
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px; }
  .cart .form__entry-error {
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 100%; }
  .cart__buttons {
    width: 100%; }
  .cart .form__entry--absolute {
    position: relative;
    left: 0; }
  .cart .form__entry--absolute .button {
    width: 100%; }
  .cart .form__entry-success--coupon {
    width: 100%;
    margin-bottom: 10px; }
  .cart__buttons .button {
    display: block;
    width: 100%;
    text-align: center; }
  .cart__buttons .button:first-of-type {
    margin-bottom: 10px; }
  .cart .button--back:last-of-type {
    margin-bottom: 10px; } }

.cart-empty {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #c5c5c5;
  min-height: 200px;
  width: 100%;
  padding: 10px;
  padding-bottom: 23px; }
  .cart-empty__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
  .cart-empty img {
    max-width: 100px;
    margin: 0 auto; }
  .cart-empty p {
    max-width: 100%; }
  .cart-empty__bottom {
    text-align: center; }

.sweet-alert.cartpopup h2 {
  margin-bottom: 10px !important; }

.sweet-alert.cartpopup button {
  background-color: #008fc3 !important;
  color: #FFFFFF;
  border: 2px solid #008fc3 !important; }

.sweet-alert.cartpopup p {
  padding: 0 10px !important; }

.cart-notif {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 10px;
  background-color: #ffdb7a;
  border: 1px solid #ffd461;
  font-size: 12px;
  line-height: 14px; }

.cart-notif a {
  font-weight: 600;
  color: #007caa; }

.cart-notif--mobile {
  display: none;
  margin-bottom: 12px; }

@media screen and (max-width: 1130px) {
  .cart-notif--desktop {
    display: none; }
  .cart-notif--mobile {
    display: block; } }

.delivery .form__entry--vat {
  display: none;
  margin-bottom: 15px; }

.delivery__buttons {
  padding-top: 25px;
  padding-bottom: 0; }

.summary .form__styled-select {
  margin-bottom: 20px; }

.summary .deliveryMethodsWrap,
.summary .bpostCollectionWrap {
  border: 1px solid transparent; }

.summary .deliveryMethodsWrap {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background: #f8f8f8;
  padding: 10px;
  padding-right: 5px;
  margin-bottom: 5px; }

.summary .deliveryMethodsWrap .form__entry:last-of-type {
  margin-bottom: 0; }

.summary .deliveryMethodsWrap .form__entry label,
.summary .giftwrapWrap .form__entry label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: top;
  -ms-flex-align: top;
  -webkit-align-items: top;
  -moz-align-items: top;
  align-items: top;
  line-height: 18px; }

.summary .deliveryMethodsWrap .form__entry label span,
.summary .giftwrapWrap .form__entry label span {
  border: 1px solid #cacaca; }

.summary .bpostCollectionWrap {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background: #ffdb7a;
  padding: 10px;
  margin-bottom: 13px; }

.summary .bpostCollectionWrap a {
  color: #111111 !important; }

.sect-faq-index .faqitems__group .grid__col--faqitems-item {
  width: 792px;
  margin-top: 0;
  margin-bottom: 20px; }

@media screen and (max-width: 832px) {
  .sect-faq-index .faqitems__group .grid__col--faqitems-item {
    width: 100%; } }

.sect-faq-index .faqitems__heading {
  -webkit-transition: background 0.2s ease-in-out;
  -khtml-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: block;
  position: relative;
  padding: 10px;
  padding-right: 30px;
  border: 1px solid #c5c5c5;
  font-size: 15px;
  line-height: 16px; }

@media screen and (max-width: 720px) {
  .sect-faq-index .faqitems__heading {
    font-size: 16px;
    line-height: 18px; } }

.sect-faq-index .faqitems__heading:hover {
  border: 1px solid #008fc3;
  color: #111111;
  text-decoration: none; }

.sect-faq-index .faqitems__heading.is-active {
  background: #008fc3;
  border: 1px solid #008fc3;
  color: #FFFFFF; }

.sect-faq-index .faqitems__chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 21px;
  height: 20px;
  background-image: url("../img/chevron-right.dark.svg");
  background-position: center center;
  background-size: 8px auto;
  background-repeat: no-repeat; }

.sect-faq-index .faqitems__heading.is-active .faqitems__chevron {
  background-image: url("../img/chevron-down.white.svg");
  background-position: center center;
  background-size: 13px auto;
  background-repeat: no-repeat; }

.sect-faq-index .faqitems__fulltext {
  display: none;
  max-width: 792px;
  margin-bottom: 20px; }

@media screen and (max-width: 960px) {
  .sect-faq-index .faqitems__fulltext {
    margin: 0 auto !important; } }

@media screen and (max-width: 840px) {
  .sect-faq-index .faqitems__fulltext {
    max-width: 100%; } }

.sect-faq-index .faqitems__fulltext.is-uncollapsed {
  display: block; }

.sect-faq-index .faqitems-item img {
  max-width: 100%;
  margin-bottom: 25px; }

.sect-faq-index .faqitems-item__back {
  display: block;
  margin-bottom: 20px;
  color: #008fc3; }

.sect-faq-index .grid--faqitems-aside-wrap {
  position: relative; }

.sect-faq-index .faqitems-item__back {
  display: block;
  margin-bottom: 20px;
  color: #008fc3; }

.grid--no-faqitems p:last-of-type {
  margin: 0; }

/*
|--------------------------------------------------------------------------
| Vendors imports
|--------------------------------------------------------------------------
| ...
*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #796a48;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

@media screen and (min-width: 1250px) {
  .pushy {
    display: none; } }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Montserrat Alternates', sans-serif;
  width: 490px;
  padding: 10px 0 0 0;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #575757;
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 10px 0 25px 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 28px;
  display: block; }

.sweet-alert p {
  color: #575757;
  font-size: 15px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert fieldset {
  border: none;
  position: relative; }

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s; }

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s; }

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px; }

.sweet-alert .sa-error-container p {
  display: inline-block; }

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s; }

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px; }

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed; }

.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd; }

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd; }

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd; }

.sweet-alert.show-input input {
  display: block; }

.sweet-alert .sa-button-container {
  padding: 10px 10px 20px 10px;
  background-color: #ebebeb; }

.sweet-alert .sa-button-or {
  font-style: italic; }

@media screen and (max-width: 520px) {
  .sweet-alert .sa-button-or {
    display: none; } }

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative; }

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden; }

.sweet-alert button {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background-color: #ededed !important;
  color: #a0a0a0;
  border: none;
  border: 2px solid #c6c6c6;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 50px;
  padding: 11px 25px;
  margin: 10px 0 0 0;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #008fc3 !important;
  border: 2px solid #008fc3;
  color: #FFFFFF; }

.sweet-alert button:active {
  background-color: #FFFFFF; }

.sweet-alert button.cancel {
  background-color: #008fc3 !important;
  border: 2px solid #008fc3 !important;
  color: #FFFFFF !important; }

.sweet-alert button.cancel:hover {
  background-color: #FFF !important;
  border: 2px solid #008fc3;
  color: #008fc3 !important; }

.sweet-alert button.cancel:active {
  background-color: #49d492;
  border: 2px solid #49d492;
  color: #575757; }

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default; }

.sweet-alert button.confirm[disabled] {
  color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

/*
|--------------------------------------------------------------------------
| Namespaces - http://csswizardry.com/2015/03/more-transparent-ui-code-with-namespaces/
|--------------------------------------------------------------------------
| o-: Signify that something is an Object, and that it may be used in any number of unrelated contexts to the one you can currently see it in. Making modifications to these types of class could 
| potentially have knock-on effects in a lot of other unrelated places. Tread carefully.
|
| c-: Signify that something is a Component. This is a concrete, implementation-specific piece of UI. All of the changes you make to its styles should be detectable in the context you’re currently 
| looking at. Modifying these styles should be safe and have no side effects.
|
| u-: Signify that this class is a Utility class. It has a very specific role (often providing only one declaration) and should not be bound onto or changed. It can be reused and is not tied to any 
| specific piece of UI. You will probably recognise this namespace from libraries and methodologies like SUIT.
|
| t-: Signify that a class is responsible for adding a Theme to a view. It lets us know that UI Components’ current cosmetic appearance may be due to the presence of a theme.
|
| s-: Signify that a class creates a new styling context or Scope. Similar to a Theme, but not necessarily cosmetic, these should be used sparingly—they can be open to abuse and lead to poor CSS if
| not used wisely.
|
| is-, has-: Signify that the piece of UI in question is currently styled a certain way because of a state or condition. This stateful namespace is gorgeous, and comes from SMACSS. It tells us that
| the DOM currently has a temporary, optional, or short-lived style applied to it due to a certain state being invoked.
|
| _: Signify that this class is the worst of the worst—a hack! Sometimes, although incredibly rarely, we need to add a class in our markup in order to force something to work. If we do this, we need 
| to let others know that this class is less than ideal, and hopefully temporary (i.e. do not bind onto this).
|
| js-: Signify that this piece of the DOM has some behaviour acting upon it, and that JavaScript binds onto it to provide that behaviour. If you’re not a developer working with JavaScript, leave these 
| well alone.
|
| qa-: Signify that a QA or Test Engineering team is running an automated UI test which needs to find or bind onto these parts of the DOM. Like the JavaScript namespace, this basically just reserves 
| hooks in the DOM for non-CSS purposes.
*/
