/* ***** Fonts ***** */
/* ***** Google fonts ***** */
@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap&subset=latin-ext");
/* ***** Font weight variables ***** */
/* ***** Colors ***** */
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

@media (min-width: 22.5em) {
  .d-sm-block {
    display: block;
  }
  .d-sm-none {
    display: none;
  }
}
@media (min-width: 68.75em) {
  .d-lg-block {
    display: block;
  }
  .d-lg-none {
    display: none;
  }
}
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.absolute-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.h-100 {
  height: 100%;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

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

.justify-content-center {
  justify-content: center;
}

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

.justify-content-end {
  justify-content: flex-end;
}

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

.align-items-end {
  align-items: flex-end;
}

.align-self-end {
  align-self: flex-end;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.order-1 {
  order: 1;
}

.order-0 {
  order: 0;
}

.g-col-1 {
  grid-template-columns: 1fr;
}

.g-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.g-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.g-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-sm {
  gap: 0.75em;
}

.gap-base {
  gap: 1.25em;
}

@media (min-width: 22.5em) {
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-self-sm-center {
    align-self: center;
  }
  .flex-sm-grow-1 {
    flex-grow: 1;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-0 {
    order: 0;
  }
  .g-col-sm-1 {
    grid-template-columns: 1fr;
  }
  .g-col-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-col-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-col-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gap-sm-sm {
    gap: 0.75em;
  }
  .gap-sm-base {
    gap: 1.25em;
  }
}
@media (min-width: 68.75em) {
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-self-lg-center {
    align-self: center;
  }
  .flex-lg-grow-1 {
    flex-grow: 1;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-0 {
    order: 0;
  }
  .g-col-lg-1 {
    grid-template-columns: 1fr;
  }
  .g-col-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-col-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-col-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gap-lg-sm {
    gap: 0.75em;
  }
  .gap-lg-base {
    gap: 1.25em;
  }
}
.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 10;
}

.z-100 {
  z-index: 100;
}

.z-1000 {
  z-index: 1000;
}

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

.m-auto {
  margin: auto;
}

.ms-auto {
  margin-left: auto;
}

.me-auto {
  margin-right: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.p-0 {
  padding: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.ps-0 {
  padding-left: 0;
}

.pe-0 {
  padding-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.m-0 {
  margin: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.ms-0 {
  margin-left: 0;
}

.me-0 {
  margin-right: 0;
}

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

.mb-0 {
  margin-bottom: 0;
}

.p-sm {
  padding: 0.75em;
}

.px-sm {
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.py-sm {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

.ps-sm {
  padding-left: 0.75em;
}

.pe-sm {
  padding-right: 0.75em;
}

.pt-sm {
  padding-top: 0.75em;
}

.pb-sm {
  padding-bottom: 0.75em;
}

.m-sm {
  margin: 0.75em;
}

.mx-sm {
  margin-left: 0.75em;
  margin-right: 0.75em;
}

.my-sm {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.ms-sm {
  margin-left: 0.75em;
}

.me-sm {
  margin-right: 0.75em;
}

.mt-sm {
  margin-top: 0.75em;
}

.mb-sm {
  margin-bottom: 0.75em;
}

.p-base {
  padding: 1.25em;
}

.px-base {
  padding-left: 1.25em;
  padding-right: 1.25em;
}

.py-base {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

.ps-base {
  padding-left: 1.25em;
}

.pe-base {
  padding-right: 1.25em;
}

.pt-base {
  padding-top: 1.25em;
}

.pb-base {
  padding-bottom: 1.25em;
}

.m-base {
  margin: 1.25em;
}

.mx-base {
  margin-left: 1.25em;
  margin-right: 1.25em;
}

.my-base {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.ms-base {
  margin-left: 1.25em;
}

.me-base {
  margin-right: 1.25em;
}

.mt-base {
  margin-top: 1.25em;
}

.mb-base {
  margin-bottom: 1.25em;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #f5f6fa;
}
body.disabled-scroll, body.navigation-expand {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media all and (max-width: 63.937em) {
  body.path-cart {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

/**
 * Header
 * Styled in header.scss
 */
/**
 * Main
 */
.layout-container {
  margin: 0;
}
body.category-menu-open:not(.path-frontpage) .layout-container .page-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(46, 56, 64, 0.8);
  z-index: 5;
}
.layout-container > .intro {
  max-width: 85.375em;
  margin: 0 auto;
  padding: 0;
}
.path-frontpage .layout-container > .intro {
  display: flex;
  flex-flow: column nowrap;
}
@media all and (min-width: 48em) {
  .path-frontpage .layout-container > .intro {
    flex-flow: row nowrap;
  }
}
body:not(.path-frontpage) .layout-container > .intro {
  position: relative;
}
body:not(.path-frontpage) .layout-container > .intro .left {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
}
body.category-menu-open:not(.path-frontpage) .layout-container > .intro .left {
  display: block;
}
.layout-container > .intro .left {
  display: none;
  width: 100%;
}
@media all and (min-width: 48em) {
  .layout-container > .intro .left {
    display: block;
    max-width: 23.625em;
    flex-shrink: 0;
    -webkit-box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
    -moz-box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
    box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
    z-index: 7;
    background-color: #f5f6fa;
  }
}
.layout-container > .intro .right {
  width: 100%;
  background-color: #fff;
}
@media all and (min-width: 48em) {
  .layout-container > .intro .right .region-intro-right {
    position: relative;
    height: 100%;
  }
  .layout-container > .intro .right .region-intro-right > div {
    width: 100%;
  }
}
.layout-container > .main-wrapper > .main {
  max-width: 83.875rem;
  margin: 0 auto;
  padding: 0 1rem;
}
body.path-cart .layout-container > .main-wrapper > .main, body.path-product .layout-container > .main-wrapper > .main, body.path-checkout .layout-container > .main-wrapper > .main {
  max-width: none;
  margin: 0;
  padding: 0;
}
body.path-product .layout-container > .main-wrapper > .main .layout-header {
  max-width: 83.875rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media all and (min-width: 48em) {
  .layout-container > .main-wrapper > .main .layout-content {
    display: flex;
    flex-flow: row nowrap;
  }
  .layout-container > .main-wrapper > .main .layout-content .region-sidebar {
    width: 20.625em;
    flex-shrink: 0;
  }
  .product-list .layout-container > .main-wrapper > .main .layout-content .region-sidebar {
    padding-right: 0.625em;
    border-right: 0.063em solid #aeb8c8;
  }
  .layout-container > .main-wrapper > .main .layout-content .region-content {
    width: 100%;
  }
  .page-node-type-article .layout-container > .main-wrapper > .main .layout-content .region-content, .page-node-type-page .layout-container > .main-wrapper > .main .layout-content .region-content {
    width: calc(100% - 20.625em);
    max-width: 40.625em;
  }
  .page-node-type-page .layout-container > .main-wrapper > .main .layout-content .region-content {
    margin-left: auto;
    margin-right: auto;
  }
}

/**
 * Footer
 */
.layout-container > .footer {
  padding-top: 1.875em;
  border-top: 0.063em solid #aeb8c8;
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer {
    max-width: 80.125em;
    margin: 0 auto;
    padding: 0 1em;
    padding-top: 0;
    border-top: none;
  }
}
@media all and (max-width: 78.062em) {
  .layout-container > .footer .footer-inner {
    max-width: 80.125em;
    margin: 0 auto;
    padding: 0 1em;
  }
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner {
    padding-top: 3.125em;
    border-top: 0.063em solid #aeb8c8;
  }
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
.path-checkout .layout-container > .footer .footer-inner .top {
  display: none;
}
.layout-container > .footer .footer-inner .top .col-3 {
  border-bottom: 0.063em solid #aeb8c8;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3 {
    flex: 0 1 auto;
    width: calc(33.33% - 0.688em);
    border-right: 0.063em solid #aeb8c8;
    border-bottom: none;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .footer .footer-inner .top .col-3 {
    width: calc(25% - 0.688em);
  }
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner .top .col-3 {
    height: 100%;
    padding-right: 0.688em;
  }
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3:first-child {
    width: 100%;
    margin-bottom: 2em;
    border-right: none;
    border-bottom: 0.063em solid #aeb8c8;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .footer .footer-inner .top .col-3:first-child {
    width: calc(25% - 0.688em);
    padding-right: 0.688em;
    border-right: 0.063em solid #aeb8c8;
    border-bottom: none;
  }
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner .top .col-3:first-child {
    margin-bottom: 0;
  }
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3:last-child {
    border-right: none;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact {
  padding-bottom: 1.125em;
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact {
    padding-bottom: 0;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact a {
  color: inherit;
}
.layout-container > .footer .footer-inner .top .col-3 .contact .address {
  padding-bottom: 1.063em;
  border-bottom: 0.063em solid #aeb8c8;
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .address {
    border-bottom: none;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .address .company-name {
  display: flex;
  align-items: center;
  line-height: 1.095em;
  margin-bottom: 0.5em;
  font-size: 1.313em;
  font-weight: 700;
  color: #1f2326;
  letter-spacing: -0.025em;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .address .company-name {
    margin-bottom: 0.762em;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .address .company-name:before {
  content: "";
  display: inline-block;
  width: 2.619em;
  height: 1em;
  margin-right: 0.25em;
  background: transparent url("../../logo.svg") no-repeat 0 0;
  background-size: 2.619em auto;
}
.layout-container > .footer .footer-inner .top .col-3 .contact .address .address-line-1 {
  line-height: 1.313em;
  font-size: 1em;
  color: #1f2326;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .address .address-line-1 {
    font-size: 1.063em;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #2e3840;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .address .address-line-2 {
  line-height: 1.313em;
  margin-bottom: 0.25em;
  font-size: 1em;
  color: #1f2326;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .address .address-line-2 {
    font-size: 1.063em;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #2e3840;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .address .address-line-3 {
  line-height: 1.4em;
  font-size: 0.625em;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .address .address-line-3 {
    line-height: 1.308em;
    font-size: 0.813em;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .opening-hours {
  display: flex;
  align-items: center;
  margin-top: 0.813em;
  margin-bottom: 0.75em;
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .opening-hours {
    display: inline-block;
    min-width: 16.875em;
    margin-top: 0;
    margin-bottom: 2em;
    padding-top: 0.813em;
    border-top: 0.063em solid #aeb8c8;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .opening-hours:before {
  content: "";
  display: inline-block;
  width: 0.938em;
  height: 0.938em;
  margin-right: 0.438em;
  background: transparent url("../img/icons/clock.svg") no-repeat 0 0;
  background-size: 0.938em 0.938em;
}
.layout-container > .footer .footer-inner .top .col-3 .contact .phone,
.layout-container > .footer .footer-inner .top .col-3 .contact .mobile,
.layout-container > .footer .footer-inner .top .col-3 .contact .email {
  line-height: 1.286em;
  font-size: 0.875em;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .top .col-3 .contact .phone,
  .layout-container > .footer .footer-inner .top .col-3 .contact .mobile,
  .layout-container > .footer .footer-inner .top .col-3 .contact .email {
    font-size: 1em;
  }
}
.layout-container > .footer .footer-inner .top .col-3 .contact .phone .label,
.layout-container > .footer .footer-inner .top .col-3 .contact .mobile .label,
.layout-container > .footer .footer-inner .top .col-3 .contact .email .label {
  line-height: 1.5em;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #a3a077;
}
.layout-container > .footer .footer-inner .top .col-3 .contact .phone {
  line-height: 1.438em;
  min-width: 8.75em;
}
.layout-container > .footer .footer-inner .top .col-3 .contact .mobile {
  line-height: 1.438em;
}
.layout-container > .footer .footer-inner .top .col-3 .contact .email {
  line-height: 1.438em;
}
.layout-container > .footer .footer-inner .bottom {
  display: flex;
  flex-flow: column wrap;
  margin-top: 0.75em;
  padding-bottom: 1em;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .bottom {
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-top: 2em;
  }
}
@media all and (min-width: 78.125em) {
  .layout-container > .footer .footer-inner .bottom {
    margin-top: 7em;
  }
}
.path-checkout .layout-container > .footer .footer-inner .bottom {
  margin-top: 0;
}
.layout-container > .footer .footer-inner .bottom .copyright {
  font-size: 0.625em;
  order: 2;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .bottom .copyright {
    line-height: 1.25em;
    font-size: 1em;
    color: #243e63;
    order: 1;
  }
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .bottom .copyright br {
    display: none;
  }
}
.layout-container > .footer .footer-inner .bottom .footer-menu {
  margin-bottom: 2.313em;
  order: 1;
}
@media all and (min-width: 48em) {
  .layout-container > .footer .footer-inner .bottom .footer-menu {
    margin-bottom: 0;
    order: 2;
  }
}

.field--label-inline .field__label {
  float: left;
  margin-right: 0.25em;
}
.field--label-inline .field__label:after {
  content: ": ";
}

body {
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2e3840;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.cke_editable a,
body.cke_editable a:link,
body.cke_editable a:active,
body.cke_editable a:visited,
.node--view-mode-full .field--name-field-content a,
.node--view-mode-full .field--name-field-content a:link,
.node--view-mode-full .field--name-field-content a:active,
.node--view-mode-full .field--name-field-content a:visited,
.layout-container a,
.layout-container a:link,
.layout-container a:active,
.layout-container a:visited {
  color: #3089fd;
  text-decoration: none;
}
body.cke_editable a:hover,
.node--view-mode-full .field--name-field-content a:hover,
.layout-container a:hover {
  text-decoration: underline;
  color: #3089fd;
}
body.cke_editable h1,
body.cke_editable h2,
body.cke_editable .h2,
body.cke_editable h3,
body.cke_editable h4,
.node--view-mode-full .field--name-field-content h1,
.node--view-mode-full .field--name-field-content h2,
.node--view-mode-full .field--name-field-content .h2,
.node--view-mode-full .field--name-field-content h3,
.node--view-mode-full .field--name-field-content h4,
.layout-container h1,
.layout-container h2,
.layout-container .h2,
.layout-container h3,
.layout-container h4 {
  font-weight: 700;
  color: #1f2326;
  letter-spacing: -0.025em;
}
body.cke_editable h1,
.node--view-mode-full .field--name-field-content h1,
.layout-container h1 {
  line-height: 1.143em;
  font-size: 1.75em;
  margin: 0 0 0.75em;
}
@media all and (min-width: 48em) {
  body.cke_editable h1,
  .node--view-mode-full .field--name-field-content h1,
  .layout-container h1 {
    line-height: 1.053em;
    font-size: 2.375em;
    letter-spacing: -0.04em;
  }
}
body.cke_editable h2,
body.cke_editable .h2,
.node--view-mode-full .field--name-field-content h2,
.node--view-mode-full .field--name-field-content .h2,
.layout-container h2,
.layout-container .h2 {
  line-height: 1.25em;
  font-size: 1.5em;
}
@media all and (min-width: 48em) {
  body.cke_editable h2,
  body.cke_editable .h2,
  .node--view-mode-full .field--name-field-content h2,
  .node--view-mode-full .field--name-field-content .h2,
  .layout-container h2,
  .layout-container .h2 {
    line-height: 1.143em;
    font-size: 1.75em;
    letter-spacing: -0.025em;
  }
}
body.cke_editable h3,
.node--view-mode-full .field--name-field-content h3,
.layout-container h3 {
  line-height: 1.278em;
  font-size: 1.125em;
}
@media all and (min-width: 48em) {
  body.cke_editable h3,
  .node--view-mode-full .field--name-field-content h3,
  .layout-container h3 {
    line-height: 1em;
    font-size: 1.438em;
    letter-spacing: -0.036em;
  }
}
body.cke_editable h4,
.node--view-mode-full .field--name-field-content h4,
.layout-container h4 {
  line-height: 1.438em;
  font-size: 1em;
}
@media all and (min-width: 48em) {
  body.cke_editable h4,
  .node--view-mode-full .field--name-field-content h4,
  .layout-container h4 {
    line-height: 1.15em;
    font-size: 1.25em;
    letter-spacing: -0.025em;
  }
}

strong {
  font-weight: 700;
}
strong > i {
  font-style: italic;
}

i {
  font-style: italic;
}

p {
  line-height: 1.286em;
  font-size: 0.875em;
  margin-top: 0;
  margin-bottom: 1em;
}
@media all and (min-width: 48em) {
  p {
    line-height: 1.313em;
    font-size: 1em;
  }
}
p + p {
  margin-bottom: 1em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/**
 *  Lists
 */
body.cke_editable ol,
body.cke_editable ul,
.node--type-page.node--view-mode-full ol,
.node--type-page.node--view-mode-full ul,
.node--type-article.node--view-mode-full ol,
.node--type-article.node--view-mode-full ul {
  margin-top: 0;
  margin-bottom: 1em;
  padding: 0 0 0 2.444em;
}
body.cke_editable ol li,
body.cke_editable ul li,
.node--type-page.node--view-mode-full ol li,
.node--type-page.node--view-mode-full ul li,
.node--type-article.node--view-mode-full ol li,
.node--type-article.node--view-mode-full ul li {
  line-height: 1.333em;
  letter-spacing: -0.025em;
  margin: 0.556em 0 0.556em 0;
  list-style: none;
}
body.cke_editable ul li::before,
.node--type-page.node--view-mode-full ul li::before,
.node--type-article.node--view-mode-full ul li::before {
  content: "";
  display: inline-block;
  width: 0.444em;
  height: 0.444em;
  background: #2e3840;
  background-size: 0.444em 0.444em;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  margin: 0 0.889em 0 -1.333em;
}
body.cke_editable ul li.check,
.node--type-page.node--view-mode-full ul li.check,
.node--type-article.node--view-mode-full ul li.check {
  margin: 0 0 1.111em 0;
  max-width: 23.333em;
  font-weight: 500;
  color: #2e3840;
}
body.cke_editable ul li.check::before,
.node--type-page.node--view-mode-full ul li.check::before,
.node--type-article.node--view-mode-full ul li.check::before {
  content: "";
  display: inline-block;
  width: 0.889em;
  height: 0.667em;
  background: transparent url("../img/icons/check.svg") no-repeat 0 0;
  background-size: 0.889em 0.667em;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: 0 0.889em 0 -1.778em;
}
body.cke_editable ol,
.node--type-page.node--view-mode-full ol,
.node--type-article.node--view-mode-full ol {
  counter-reset: item;
}
body.cke_editable ol li::before,
.node--type-page.node--view-mode-full ol li::before,
.node--type-article.node--view-mode-full ol li::before {
  display: inline-block;
  content: counter(item) ".";
  counter-increment: item;
  width: 1em;
  margin: 0 0.056em 0 -1.056em;
  font-family: Arial, Helvetica, sans-serif;
}

/**
* Tables
*/
table {
  border-collapse: separate;
  border-spacing: 0 0.25em;
  width: 100%;
  margin: 2em 0;
  padding-bottom: 0.625em;
  border: none;
  /**
   * Specification table
   */
}
@media all and (max-width: 64em) {
  table {
    display: block;
    overflow-x: auto;
  }
}
@media all and (max-width: 64em) {
  table:not(.views-table) {
    white-space: nowrap;
  }
}
table caption {
  line-height: 1em;
  margin: 0 0 0.5em;
  font-size: 1.278em;
  font-weight: 700;
  text-align: left;
  color: #2e3840;
}
table thead tr th {
  line-height: 1.286em;
  padding: 0 1.429em;
  font-size: 0.777em;
  font-weight: 400;
  text-align: left;
  color: #243e63;
  border: none;
}
table tbody tr {
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
}
table tbody tr th {
  padding: 0.875em 1.111em;
  font-weight: 300;
  text-align: left;
  color: #3089fd;
  border: none;
  border-left: 0.167em solid #aeb8c8;
  -webkit-border-top-left-radius: 0.222em;
  -webkit-border-bottom-left-radius: 0.222em;
  -moz-border-radius-topleft: 0.222em;
  -moz-border-radius-bottomleft: 0.222em;
  border-top-left-radius: 0.222em;
  border-bottom-left-radius: 0.222em;
  background-color: #fff;
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
}
table tbody tr td {
  padding: 0.875em 1.111em;
  border: none;
  background-color: #fff;
}
table tbody tr td:first-child {
  border-left: 0.167em solid #aeb8c8;
  -webkit-border-top-left-radius: 0.222em;
  -webkit-border-bottom-left-radius: 0.222em;
  -moz-border-radius-topleft: 0.222em;
  -moz-border-radius-bottomleft: 0.222em;
  border-top-left-radius: 0.222em;
  border-bottom-left-radius: 0.222em;
}
table tbody tr td:last-child {
  -webkit-border-top-right-radius: 0.222em;
  -webkit-border-bottom-right-radius: 0.222em;
  -moz-border-radius-topright: 0.222em;
  -moz-border-radius-bottomright: 0.222em;
  border-top-right-radius: 0.222em;
  border-bottom-right-radius: 0.222em;
}
.specification table {
  width: 100%;
  margin-top: 0.9375em;
  border-collapse: collapse;
}
.specification table caption {
  margin-bottom: 1em;
}
.specification table tbody tr {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.specification table tbody tr th {
  padding: 0.625em 0.5em;
  font-weight: 700;
  text-align: left;
  color: #2e3840;
  border: none;
  border-right: 0.0625em solid #cecece;
  border-bottom: 0.0625em solid #cecece;
  border-left: none;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #fff;
  -webkit-box-shadow: none;
}
@media all and (min-width: 768px) {
  .specification table tbody tr th {
    width: 180px;
  }
}
.specification table tbody tr td {
  width: 100%;
  padding: 0.625em 0.5em;
  border: none;
  border-bottom: 0.0625em solid #cecece;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  .specification table tbody tr td {
    width: auto;
  }
}
.specification table tbody tr td:first-child {
  border-left: none;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.specification table tbody tr td:last-child {
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.specification table tbody tr:hover th,
.specification table tbody tr:hover td {
  color: #fff;
  background-color: #3089fd;
}
.specification table tbody tr:last-child th,
.specification table tbody tr:last-child td {
  border-bottom: none;
}

/**
 * Ajax loader
 */
.ajax-progress-throbber {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 50;
}
.ajax-progress-throbber .throbber {
  display: block;
  width: 2.5em;
  height: 2.5em;
  margin: 6.25em auto;
  padding: 0;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
  background: #2e3840;
  z-index: 100;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

button::-moz-focus-inner {
  border: 0;
}

p.contact-info.company-name {
  font-size: 1.167em;
  font-weight: 700;
  margin-bottom: 0.75em;
}
p.contact-info.company-name img {
  vertical-align: middle;
}
p.contact-info.company-address, p.contact-info.opening-hours {
  font-size: 1em;
}
p.contact-info.company-address small, p.contact-info.opening-hours small {
  font-size: 0.875em;
}
p.contact-info.opening-hours:before {
  content: "";
  display: inline-block;
  background: transparent url("../img/icons/clock-light.svg") no-repeat 50% 50%;
  background-size: 1em 1em;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.5em;
}

[class^=icon-]:before, [class*=" icon-"]:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.75em;
  vertical-align: middle;
  background-size: 1em auto;
}

.icon-arrow-left::before {
  width: 1.313em;
  height: 0.938em;
  background: transparent url("../img/icons/arrow-left.svg") no-repeat 0 0;
  background-size: 1.313em 0.938em;
}

.icon-c-warning::before {
  width: 1.625em;
  height: 1.625em;
  background: transparent url("../img/icons/c-warning.svg") no-repeat 0 0;
  background-size: 1.625em 1.625em;
}

.icon-clock::before {
  width: 0.938em;
  height: 0.938em;
  background: transparent url("../img/icons/clock.svg") no-repeat 0 0;
  background-size: 0.938em 0.938em;
}

.icon-close::before {
  width: 1.125em;
  height: 1.125em;
  background: transparent url("../img/icons/close.svg") no-repeat 0 0;
  background-size: 1.125em 1.125em;
}

.icon-down-arrow::before {
  width: 1.063em;
  height: 0.625em;
  background: transparent url("../img/icons/down-arrow.svg") no-repeat 0 0;
  background-size: 1.063em 0.625em;
}

.icon-arrow-left::before {
  width: 0.625em;
  height: 1.063em;
  background: transparent url("../img/icons/left-arrow.svg") no-repeat 0 0;
  background-size: 0.625em 1.063em;
}

.icon-arrow-right::before {
  width: 0.625em;
  height: 1.063em;
  background: transparent url("../img/icons/right-arrow.svg") no-repeat 0 0;
  background-size: 0.625em 1.063em;
}

.icon-arrow-right-blue::before {
  width: 0.625em;
  height: 1.063em;
  background: transparent url("../img/icons/right-arrow-blue.svg") no-repeat 0 0;
  background-size: 0.625em 1.063em;
}

.icon-download::before {
  width: 1.25em;
  height: 1.438em;
  background: transparent url("../img/icons/download.svg") no-repeat 0 0;
  background-size: 1.25em 1.438em;
}

.icon-e-add::before {
  width: 1.375em;
  height: 1.375em;
  background: transparent url("../img/icons/e-add.svg") no-repeat 0 0;
  background-size: 1.375em 1.375em;
}

.icon-e-remove::before {
  width: 1.063em;
  height: 1.063em;
  background: transparent url("../img/icons/e-remove.svg") no-repeat 0 0;
  background-size: 1.063em 1.063em;
}

.icon-e-remove-gray::before {
  width: 1.063em;
  height: 1.063em;
  background: transparent url("../img/icons/e-remove-gray.svg") no-repeat 0 0;
  background-size: 1.063em 1.063em;
}

.icon-e-remove-white::before {
  width: 0.875em;
  height: 0.875em;
  background: transparent url("../img/icons/e-remove-white.svg") no-repeat 0 0;
  background-size: 0.875em 0.875em;
}

.icon-grid-interface::before {
  width: 1.313em;
  height: 1.313em;
  background: transparent url("../img/icons/grid-interface.svg") no-repeat 0 0;
  background-size: 1.313em 1.313em;
}

.icon-magnifier::before {
  width: 1.563em;
  height: 1.563em;
  background: transparent url("../img/icons/magnifier.svg") no-repeat 0 0;
  background-size: 1.563em 1.563em;
}

.icon-menu-open::before {
  width: 1.563em;
  height: 1.063em;
  background: transparent url("../img/icons/menu-open.svg") no-repeat 0 0;
  background-size: 1.563em 1.063em;
}

.icon-reload::before {
  width: 1.125em;
  height: 1.125em;
  background: transparent url("../img/icons/reload.svg") no-repeat 0 0;
  background-size: 1.125em 1.125em;
}

.icon-right-arrow-dark::before {
  width: 0.5em;
  height: 0.813em;
  background: transparent url("../img/icons/right-arrow-dark.svg") no-repeat 0 0;
  background-size: 0.5em auto;
}

.icon-right-arrow-light::before {
  width: 0.5em;
  height: 0.813em;
  background: transparent url("../img/icons/right-arrow-light.svg") no-repeat 0 0;
  background-size: 0.5em auto;
}

.icon-shopping-cart::before {
  width: 1.5em;
  height: 1.5em;
  background: transparent url("../img/icons/shopping-cart.svg") no-repeat 0 0;
  background-size: 1.5em 1.5em;
}

.icon-user::before {
  width: 1.375em;
  height: 1.5em;
  background: transparent url("../img/icons/user.svg") no-repeat 0 0;
  background-size: 1.375em 1.5em;
}

.btn, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .filters .footer ul.links li a, .checkout-pane-login .form-submit, .commerce-checkout-flow .form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input, #block-medihum-search form .form-item-keyword .search-suggestions .more a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a, .form-submit.btn {
  display: inline-flex;
  line-height: 1.278em;
  margin-bottom: 0.625em;
  padding: 0.563em 0.75em 0.563em;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #f5f6fa !important;
  border: 0.125rem solid #3089fd;
  letter-spacing: -0.025em;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #3089fd;
  box-shadow: 0 0.167em 0.333em rgba(0, 0, 0, 0.1607843137);
  cursor: pointer;
}
@media all and (min-width: 48em) {
  .btn, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .filters .footer ul.links li a, .checkout-pane-login .form-submit, .commerce-checkout-flow .form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input, #block-medihum-search form .form-item-keyword .search-suggestions .more a,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .more a, .form-submit.btn {
    margin-bottom: 1em;
    padding-right: 1.111em;
    padding-left: 1.111em;
    font-size: 1.125rem;
    border-radius: 0.111em;
    -moz-border-radius: 0.111em;
    -webkit-border-radius: 0.111em;
  }
}
.btn:hover, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button:hover, .filters .footer ul.links li a:hover, .checkout-pane-login .form-submit:hover, .commerce-checkout-flow .form-submit:hover, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit:hover, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener:hover, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener:hover, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input:hover, #block-medihum-search form .form-item-keyword .search-suggestions .more a:hover,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a:hover, .form-submit.btn:hover {
  text-decoration: none !important;
  color: #f5f6fa !important;
}
.btn.btn-inline, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .filters .footer ul.links li a.btn-inline, .checkout-pane-login .btn-inline.form-submit, .commerce-checkout-flow .btn-inline.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-inline.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-inline.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-inline.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-inline, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label input.button, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.button, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-inline, #block-medihum-search form .form-item-keyword .search-suggestions .more .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label a.button, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label #block-medihum-search form .form-item-keyword .search-suggestions .more a.button,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-inline,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label a.button,
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.button, .form-submit.btn.btn-inline {
  display: inline-flex;
}
.btn.btn-center, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-center.button, .filters .footer ul.links li a, .checkout-pane-login .btn-center.form-submit, .commerce-checkout-flow .btn-center.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-center.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .filters .footer ul.links li a.form-submit, .filters .footer ul.links li .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper a.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-center.filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters .footer ul.links li a.filters-opener, .filters .footer ul.links li .view-products.view-display-id-page_1 .header-wrapper .view-filters a.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-center.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters .footer ul.links li a.filters-opener, .filters .footer ul.links li .view-products.view-display-id-page_2 .header-wrapper .view-filters a.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-center, #block-medihum-search form .form-item-keyword .search-suggestions .more a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a, .form-submit.btn.btn-center {
  justify-content: center;
}
.btn.btn-big, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-big.button, .filters .footer ul.links li a.btn-big, .checkout-pane-login .btn-big.form-submit, .commerce-checkout-flow .btn-big.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-big.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-big.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-big.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-big, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-big,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-big, .form-submit.btn.btn-big {
  justify-content: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1.438rem;
  letter-spacing: -0.036rem;
  box-shadow: 0 0.188rem 0.375rem rgba(0, 0, 0, 0.1607843137);
}
.btn.btn-small, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-small.button, .filters .footer ul.links li a.btn-small, .checkout-pane-login .btn-small.form-submit, .commerce-checkout-flow .btn-small.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-small.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-small.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-small.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-small, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-small,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-small, .form-submit.btn.btn-small {
  font-size: 1rem;
}
.btn.btn-white, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-white.button, .filters .footer ul.links li a.btn-white, .filters .footer ul.links li a.cancel, .checkout-pane-login .btn-white.form-submit, .commerce-checkout-flow .btn-white.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-white.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .filters .footer ul.links li a.form-submit.cancel, .filters .footer ul.links li .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper a.form-submit.cancel, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-white.filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters .footer ul.links li a.filters-opener.cancel, .filters .footer ul.links li .view-products.view-display-id-page_1 .header-wrapper .view-filters a.filters-opener.cancel, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-white.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters .footer ul.links li a.filters-opener.cancel, .filters .footer ul.links li .view-products.view-display-id-page_2 .header-wrapper .view-filters a.filters-opener.cancel, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-white, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-white, #block-medihum-search form .form-item-keyword .search-suggestions .more .filters .footer ul.links li a.cancel, .filters .footer ul.links li #block-medihum-search form .form-item-keyword .search-suggestions .more a.cancel,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-white,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .filters .footer ul.links li a.cancel,
.filters .footer ul.links li #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.cancel, .form-submit.btn.btn-white {
  color: #2e3840 !important;
  border-color: #243e63;
  background-color: #fff;
  box-shadow: none;
}
.btn.btn-white:hover, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-white.button:hover, .filters .footer ul.links li a.btn-white:hover, .filters .footer ul.links li a.cancel:hover, .checkout-pane-login .btn-white.form-submit:hover, .commerce-checkout-flow .btn-white.form-submit:hover, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-white.form-submit:hover, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .filters .footer ul.links li a.form-submit.cancel:hover, .filters .footer ul.links li .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper a.form-submit.cancel:hover, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-white.filters-opener:hover, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-white.filters-opener:hover, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-white:hover, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-white:hover, #block-medihum-search form .form-item-keyword .search-suggestions .more .filters .footer ul.links li a.cancel:hover, .filters .footer ul.links li #block-medihum-search form .form-item-keyword .search-suggestions .more a.cancel:hover,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-white:hover,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .filters .footer ul.links li a.cancel:hover,
.filters .footer ul.links li #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.cancel:hover, .form-submit.btn.btn-white:hover {
  color: #2e3840 !important;
}
.btn.btn-white-blue, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-white-blue.button, .filters .footer ul.links li a.btn-white-blue, .checkout-pane-login .btn-white-blue.form-submit, .commerce-checkout-flow .btn-white-blue.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-white-blue.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-white-blue.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-white-blue.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-white-blue, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-white-blue,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-white-blue, .form-submit.btn.btn-white-blue {
  color: #3089fd !important;
  border-color: #3089fd;
  background-color: #fff;
  box-shadow: none;
}
.btn.btn-white-blue:hover, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-white-blue.button:hover, .filters .footer ul.links li a.btn-white-blue:hover, .checkout-pane-login .btn-white-blue.form-submit:hover, .commerce-checkout-flow .btn-white-blue.form-submit:hover, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-white-blue.form-submit:hover, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-white-blue.filters-opener:hover, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-white-blue.filters-opener:hover, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-white-blue:hover, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-white-blue:hover,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-white-blue:hover, .form-submit.btn.btn-white-blue:hover {
  color: #3089fd !important;
}
.btn.btn-with-icon, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-with-icon.button, .filters .footer ul.links li a.btn-with-icon, .checkout-pane-login .btn-with-icon.form-submit, .commerce-checkout-flow .btn-with-icon.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-with-icon.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-with-icon, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .view-products.view-display-id-page_1 .header-wrapper .view-filters input.filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .view-products.view-display-id-page_2 .header-wrapper .view-filters input.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.filters-opener, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-with-icon, #block-medihum-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_1 .header-wrapper .view-filters a.filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters #block-medihum-search form .form-item-keyword .search-suggestions .more a.filters-opener, #block-medihum-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_2 .header-wrapper .view-filters a.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters #block-medihum-search form .form-item-keyword .search-suggestions .more a.filters-opener,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-with-icon,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_1 .header-wrapper .view-filters a.filters-opener,
.view-products.view-display-id-page_1 .header-wrapper .view-filters #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.filters-opener,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_2 .header-wrapper .view-filters a.filters-opener,
.view-products.view-display-id-page_2 .header-wrapper .view-filters #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.filters-opener, .form-submit.btn.btn-with-icon {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  background-position: 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem auto;
}
.btn.btn-with-icon--e-add, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-with-icon--e-add.button, .filters .footer ul.links li a.btn-with-icon--e-add, .checkout-pane-login .btn-with-icon--e-add.form-submit, .commerce-checkout-flow .btn-with-icon--e-add.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-with-icon--e-add.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-with-icon--e-add.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-with-icon--e-add.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-with-icon--e-add, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-with-icon--e-add,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-with-icon--e-add, .form-submit.btn.btn-with-icon--e-add {
  background-image: url("../img/icons/e-add.svg");
}
.btn.btn-with-icon--download, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-with-icon--download.button, .filters .footer ul.links li a.btn-with-icon--download, .checkout-pane-login .btn-with-icon--download.form-submit, .commerce-checkout-flow .btn-with-icon--download.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-with-icon--download.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .btn-with-icon--download.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .btn-with-icon--download.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-with-icon--download, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-with-icon--download,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-with-icon--download, .form-submit.btn.btn-with-icon--download {
  background-image: url("../img/icons/download.svg");
}
.btn.btn-with-icon--setup-preferences-white, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .btn-with-icon--setup-preferences-white.button, .filters .footer ul.links li a.btn-with-icon--setup-preferences-white, .checkout-pane-login .btn-with-icon--setup-preferences-white.form-submit, .commerce-checkout-flow .btn-with-icon--setup-preferences-white.form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .btn-with-icon--setup-preferences-white.form-submit, .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.btn-with-icon--setup-preferences-white, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .view-products.view-display-id-page_1 .header-wrapper .view-filters input.filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.filters-opener, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .view-products.view-display-id-page_2 .header-wrapper .view-filters input.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input.filters-opener, #block-medihum-search form .form-item-keyword .search-suggestions .more a.btn-with-icon--setup-preferences-white, #block-medihum-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_1 .header-wrapper .view-filters a.filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters #block-medihum-search form .form-item-keyword .search-suggestions .more a.filters-opener, #block-medihum-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_2 .header-wrapper .view-filters a.filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters #block-medihum-search form .form-item-keyword .search-suggestions .more a.filters-opener,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a.btn-with-icon--setup-preferences-white,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_1 .header-wrapper .view-filters a.filters-opener,
.view-products.view-display-id-page_1 .header-wrapper .view-filters #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.filters-opener,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .view-products.view-display-id-page_2 .header-wrapper .view-filters a.filters-opener,
.view-products.view-display-id-page_2 .header-wrapper .view-filters #block-kajakshop-search form .form-item-keyword .search-suggestions .more a.filters-opener, .form-submit.btn.btn-with-icon--setup-preferences-white {
  background-image: url("../img/icons/setup-preferences-white.svg");
}
.btn--add-to-cart-small, .variation.variation--view-mode--accessory a .content .bottom .form-submit, .form-submit.btn--add-to-cart-small {
  width: 3.75rem;
  height: 3rem;
  border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  font-size: 0 !important;
  box-shadow: 0 0.167rem 0.333rem rgba(0, 0, 0, 0.1607843137);
  cursor: pointer;
  background-image: url("../img/icons/e-add-cart.svg"), url("../img/icons/shopping-cart-add.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: calc(50% + 0.125rem) center, center center;
}
.btn--add-to-cart-small.in-cart, .variation.variation--view-mode--accessory a .content .bottom .in-cart.form-submit, .form-submit.btn--add-to-cart-small.in-cart {
  border-color: #72C472;
  background: #72C472 url("../img/icons/check-solid.svg") no-repeat center center;
  background-size: 1.75rem auto;
}

/**
 * Buttons
 */
.form-submit {
  display: inline-flex;
  line-height: 1.278em;
  margin: 0 0 0.625em;
  padding: 0.563em 0.75em 0.563em;
  font-size: 1rem;
  font-weight: 700;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  text-align: center;
  text-decoration: none;
  color: #2e3840;
  border: 0.125rem solid;
  letter-spacing: -0.025em;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #fff;
  box-shadow: none;
  cursor: pointer;
}
@media all and (min-width: 48em) {
  .form-submit {
    margin-bottom: 1em;
    padding-right: 1.111em;
    padding-left: 1.111em;
    font-size: 1.125rem;
    border-radius: 0.111em;
    -moz-border-radius: 0.111em;
    -webkit-border-radius: 0.111em;
  }
}
.form-submit:hover {
  text-decoration: none;
  color: #2e3840;
}
.form-submit.button--primary {
  color: #f5f6fa;
  border-color: #3089fd;
  background-color: #3089fd;
  box-shadow: 0 0.167em 0.333em rgba(0, 0, 0, 0.1607843137);
}
.form-submit.button--primary:hover {
  color: #f5f6fa;
}

label.form-required:after {
  content: "*";
  margin-left: 0.1em;
}

/**
 * Text inputs
 */
textarea {
  width: 100%;
  padding: 0.5em;
}

.field--type-image.form-wrapper {
  max-width: 25.625em;
}

.form-type-textfield, .stripe-form .form-item,
.form-type-password,
.form-type-email,
.form-type-tel,
.form-type-number,
.form-type-url {
  position: relative;
  max-width: 25.625em;
}
.form-type-textfield label, .stripe-form .form-item label,
.form-type-password label,
.form-type-email label,
.form-type-tel label,
.form-type-number label,
.form-type-url label {
  position: absolute;
  top: 0.625em;
  left: 0.571em;
  display: inline-block;
  max-width: 100%;
  line-height: 1.286em;
  margin-bottom: 0;
  padding: 0 0.286em;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #2e3840;
  cursor: pointer;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.form-type-textfield input, .stripe-form .form-item input,
.form-type-password input,
.form-type-email input,
.form-type-tel input,
.form-type-number input,
.form-type-url input {
  max-width: 100%;
  width: 100%;
  height: 2.625em;
  margin: 0;
  padding: 0 0.688em;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #2e3840;
  border: 0.063em solid #aeb8c8;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-type-textfield input:focus + label, .stripe-form .form-item input:focus + label,
.form-type-password input:focus + label,
.form-type-email input:focus + label,
.form-type-tel input:focus + label,
.form-type-number input:focus + label,
.form-type-url input:focus + label {
  top: -0.571em;
  font-size: 0.875em;
  background-color: #f5f6fa;
}
.form-type-textfield.filled .form-text + label, .stripe-form .filled.form-item .form-text + label,
.form-type-textfield.filled .form-email + label,
.stripe-form .filled.form-item .form-email + label,
.form-type-textfield.filled .form-tel + label,
.stripe-form .filled.form-item .form-tel + label,
.form-type-textfield.filled .form-url + label,
.stripe-form .filled.form-item .form-url + label,
.form-type-password.filled .form-text + label,
.form-type-password.filled .form-email + label,
.form-type-password.filled .form-tel + label,
.form-type-password.filled .form-url + label,
.form-type-email.filled .form-text + label,
.form-type-email.filled .form-email + label,
.form-type-email.filled .form-tel + label,
.form-type-email.filled .form-url + label,
.form-type-tel.filled .form-text + label,
.form-type-tel.filled .form-email + label,
.form-type-tel.filled .form-tel + label,
.form-type-tel.filled .form-url + label,
.form-type-number.filled .form-text + label,
.form-type-number.filled .form-email + label,
.form-type-number.filled .form-tel + label,
.form-type-number.filled .form-url + label,
.form-type-url.filled .form-text + label,
.form-type-url.filled .form-email + label,
.form-type-url.filled .form-tel + label,
.form-type-url.filled .form-url + label {
  top: -0.571em;
  font-size: 0.875em;
  background-color: #f5f6fa;
}
.form-type-textfield .clear-input, .stripe-form .form-item .clear-input,
.form-type-password .clear-input,
.form-type-email .clear-input,
.form-type-tel .clear-input,
.form-type-number .clear-input,
.form-type-url .clear-input {
  display: none;
  position: absolute;
  top: 0.625em;
  right: 0;
  cursor: pointer;
}
.form-type-textfield .clear-input:before, .stripe-form .form-item .clear-input:before,
.form-type-password .clear-input:before,
.form-type-email .clear-input:before,
.form-type-tel .clear-input:before,
.form-type-number .clear-input:before,
.form-type-url .clear-input:before {
  background-size: 0.8755em auto;
}
.form-type-textfield.focus.filled .clear-input, .stripe-form .focus.filled.form-item .clear-input,
.form-type-password.focus.filled .clear-input,
.form-type-email.focus.filled .clear-input,
.form-type-tel.focus.filled .clear-input,
.form-type-number.focus.filled .clear-input,
.form-type-url.focus.filled .clear-input {
  display: block;
}
.form-type-textfield .description, .stripe-form .form-item .description,
.form-type-password .description,
.form-type-email .description,
.form-type-tel .description,
.form-type-number .description,
.form-type-url .description {
  margin-top: 0.25em;
  font-size: 0.75em;
  font-weight: 400;
}

/**
 * Select
 */
.form-type-select label, .form-type-language-select label {
  display: block;
  line-height: 1.313em;
  margin-bottom: 0;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #2e3840;
}
.form-type-select .select-wrapper, .form-type-language-select .select-wrapper {
  position: relative;
  display: inline-block;
  max-width: 22.5em;
  overflow: hidden;
  cursor: pointer;
}
.form-type-select .select-wrapper .form-select, .form-type-language-select .select-wrapper .form-select {
  position: relative;
  width: 100%;
  height: 2.813rem;
  padding: 0 2.188em 0 0.625em;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #2e3840;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
}
.form-type-select .select-wrapper .form-select option, .form-type-language-select .select-wrapper .form-select option {
  padding: 0.75em 0 0.75em 0.875em;
  color: #2e3840;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
}
.form-type-select .select-wrapper .form-select:focus, .form-type-language-select .select-wrapper .form-select:focus {
  border: none;
}
.form-type-select .select-wrapper select::-ms-expand, .form-type-language-select .select-wrapper select::-ms-expand {
  visibility: hidden;
}
.form-type-select .select-wrapper:before, .form-type-language-select .select-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  max-width: 22.5em;
  width: 100%;
  height: 2.813rem;
  border: 0.125em solid #243e63;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
}
.form-type-select .select-wrapper:after, .form-type-language-select .select-wrapper:after {
  position: absolute;
  top: 1.125em;
  right: 0.625em;
  content: "";
  width: 0.875em;
  height: 0.625em;
  background: transparent url("../img/icons/down-arrow.svg") no-repeat 0 0;
  background-size: 0.875em auto;
  z-index: 1;
}

/**
 * Radios
 */
.form-type-radio {
  position: relative;
}
.form-type-radio input {
  display: none;
}
.form-type-radio input:checked + label:before {
  background: transparent url("../img/icons/radio-checked.svg") no-repeat 0 0;
}
.form-type-radio label {
  position: relative;
  display: inline-block;
  padding-left: 1.875em;
}
.form-type-radio label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.625em;
  height: 1.625em;
  background: transparent url("../img/icons/radio.svg") no-repeat 0 0;
}
.form-type-radio label:hover {
  cursor: pointer;
}
/**
 * Checkbox, Radio
 */
.facets-widget-checkbox .facet-item,
.form-type-checkbox {
  position: relative;
}
.facets-widget-checkbox .facet-item input, .facets-widget-checkbox .facet-item label:before,
.form-type-checkbox input,
.form-type-checkbox label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
}
.facets-widget-checkbox .facet-item input,
.form-type-checkbox input {
  opacity: 0 !important;
}
.facets-widget-checkbox .facet-item input:checked + label:before,
.form-type-checkbox input:checked + label:before {
  border: none;
  background: transparent url("../img/icons/i-check.svg") no-repeat 0 0;
}
.facets-widget-checkbox .facet-item label,
.form-type-checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 1.875em;
}
.facets-widget-checkbox .facet-item label:before,
.form-type-checkbox label:before {
  content: "";
  border-radius: 0.125em;
  -moz-border-radius: 0.125em;
  -webkit-border-radius: 0.125em;
  border: solid 0.125em #243E63;
  background-color: #fff;
}
.facets-widget-checkbox .facet-item label:hover,
.form-type-checkbox label:hover {
  cursor: pointer;
}
/**
 * Other
 */
::-ms-clear {
  display: none;
}

::-ms-reveal {
  display: none;
}

.form-item {
  margin-bottom: 1em;
}

.form-actions {
  margin-top: 1em;
}
.form-actions:first-child {
  margin-top: 0;
}
.form-actions > * {
  margin-right: 1rem;
}
.form-actions > *:last-child {
  margin-right: 0;
}

div.address-container-inline {
  max-width: 25.625em;
  display: flex;
  flex-direction: row;
}
div.address-container-inline > .form-item {
  display: block;
  margin-right: 1em;
  /*&.form-item-medihum-order-shipping-address-profile-address-0-address-locality,
  &.form-item-medihum-order-billing-address-profile-address-0-address-locality {
    max-width: 17.75em;
  }*/
}
div.address-container-inline > .form-item:last-child {
  margin-right: 0;
}
div.address-container-inline [class*=address-postal-code] {
  width: 12em;
}

.form-item[class*=address-line2] {
  display: none;
}

.stripe-form .form-item {
  display: inline-flex;
  flex-direction: column;
  margin-right: 1rem;
}
.stripe-form .form-item label {
  order: -1;
  position: static;
}
.stripe-form .form-item .form-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.form-type-textarea {
  display: flex;
  flex-direction: column;
}
.form-type-textarea label {
  order: -1;
}

.request-price-form .variation {
  margin-bottom: 1rem;
  width: calc(50% - 1rem);
  min-width: 250px;
}
.request-price-form .top-fields {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.request-price-form .top-fields > * {
  width: calc(50% - 2rem);
  min-width: 250px;
  max-width: none;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
}
.request-price-form .top-fields > * label {
  position: static;
  order: -1;
  background-color: transparent !important;
  font-size: 1em !important;
}

body {
  overflow-x: hidden;
}

.page--user .page-title,
.page--address-book .page-title,
.page--user-orders .page-title {
  padding-top: 58px;
}
.page--user .layout-content,
.page--address-book .layout-content,
.page--user-orders .layout-content {
  padding-bottom: 100px;
}

.path-user .user-form {
  margin-top: 58px;
}
.path-user .layout-content {
  padding-bottom: 100px;
}

.page--address-book-action .layout-content {
  padding-bottom: 100px;
}

[class*="--narrow"] {
  margin-right: auto !important;
  margin-left: auto !important;
  max-width: 750px;
}

.medihum-box {
  padding: 22px 1em;
  background: #fff;
  border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
}

.page-title--form-box,
.form-box {
  padding-right: 16px;
  padding-left: 16px;
}
@media all and (min-width: 48em) {
  .page-title--form-box,
  .form-box {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.form-box {
  padding-top: 16px;
  padding-bottom: 16px;
  border: 0.063em solid #aeb8c8;
  border-radius: 0.25em;
  background-color: #f1f2f8;
}
@media all and (min-width: 48em) {
  .form-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.form-box .form-actions {
  max-width: 25.625em;
}
.form-box .form-submit {
  justify-content: center;
  margin-bottom: 0;
  width: 100%;
}
.form-box .form-actions {
  display: flex;
}
.form-box .form-actions .btn, .form-box .form-actions .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .form-box .form-actions .button, .form-box .form-actions .filters .footer ul.links li a, .filters .footer ul.links li .form-box .form-actions a, .form-box .form-actions .checkout-pane-login .form-submit, .checkout-pane-login .form-box .form-actions .form-submit, .form-box .form-actions .commerce-checkout-flow .form-submit, .commerce-checkout-flow .form-box .form-actions .form-submit, .form-box .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .cart.cart-form form .form-box .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .form-box .form-actions .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .form-box .form-actions .filters-opener, .form-box .form-actions .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .form-box .form-actions .filters-opener, .form-box .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-box .form-actions input, .form-box .form-actions #block-medihum-search form .form-item-keyword .search-suggestions .more a, #block-medihum-search form .form-item-keyword .search-suggestions .more .form-box .form-actions a,
.form-box .form-actions #block-kajakshop-search form .form-item-keyword .search-suggestions .more a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .form-box .form-actions a {
  flex-grow: 1;
  flex-basis: 0;
  justify-content: center;
  margin-bottom: 0;
}
.form-box .form-actions .btn:not(:last-child), .form-box .form-actions .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button:not(:last-child), .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .form-box .form-actions .button:not(:last-child), .form-box .form-actions .filters .footer ul.links li a:not(:last-child), .filters .footer ul.links li .form-box .form-actions a:not(:last-child), .form-box .form-actions .checkout-pane-login .form-submit:not(:last-child), .checkout-pane-login .form-box .form-actions .form-submit:not(:last-child), .form-box .form-actions .commerce-checkout-flow .form-submit:not(:last-child), .commerce-checkout-flow .form-box .form-actions .form-submit:not(:last-child), .form-box .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit:not(:last-child), .cart.cart-form form .form-box .form-actions .buttons-wrapper .checkout-wrapper .form-submit:not(:last-child), .form-box .form-actions .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener:not(:last-child), .view-products.view-display-id-page_1 .header-wrapper .view-filters .form-box .form-actions .filters-opener:not(:last-child), .form-box .form-actions .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener:not(:last-child), .view-products.view-display-id-page_2 .header-wrapper .view-filters .form-box .form-actions .filters-opener:not(:last-child), .form-box .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input:not(:last-child), .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-box .form-actions input:not(:last-child), .form-box .form-actions #block-medihum-search form .form-item-keyword .search-suggestions .more a:not(:last-child), #block-medihum-search form .form-item-keyword .search-suggestions .more .form-box .form-actions a:not(:last-child),
.form-box .form-actions #block-kajakshop-search form .form-item-keyword .search-suggestions .more a:not(:last-child),
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .form-box .form-actions a:not(:last-child) {
  margin-right: 5px;
}
.form-box .form-actions .btn:not(:first-child), .form-box .form-actions .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button:not(:first-child), .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .form-box .form-actions .button:not(:first-child), .form-box .form-actions .filters .footer ul.links li a:not(:first-child), .filters .footer ul.links li .form-box .form-actions a:not(:first-child), .form-box .form-actions .checkout-pane-login .form-submit:not(:first-child), .checkout-pane-login .form-box .form-actions .form-submit:not(:first-child), .form-box .form-actions .commerce-checkout-flow .form-submit:not(:first-child), .commerce-checkout-flow .form-box .form-actions .form-submit:not(:first-child), .form-box .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit:not(:first-child), .cart.cart-form form .form-box .form-actions .buttons-wrapper .checkout-wrapper .form-submit:not(:first-child), .form-box .form-actions .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener:not(:first-child), .view-products.view-display-id-page_1 .header-wrapper .view-filters .form-box .form-actions .filters-opener:not(:first-child), .form-box .form-actions .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener:not(:first-child), .view-products.view-display-id-page_2 .header-wrapper .view-filters .form-box .form-actions .filters-opener:not(:first-child), .form-box .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input:not(:first-child), .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-box .form-actions input:not(:first-child), .form-box .form-actions #block-medihum-search form .form-item-keyword .search-suggestions .more a:not(:first-child), #block-medihum-search form .form-item-keyword .search-suggestions .more .form-box .form-actions a:not(:first-child),
.form-box .form-actions #block-kajakshop-search form .form-item-keyword .search-suggestions .more a:not(:first-child),
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .form-box .form-actions a:not(:first-child) {
  margin-left: 5px;
}

.ajax-progress-fullscreen {
  width: 50px;
  height: 50px;
}

.free-shipping-remaining-price {
  color: #0bb7a5;
  font-weight: bold;
  font-size: 120%;
}

.breadcrumb li:before {
  display: none;
}

/* Block */
#block-medihum-local-tasks {
  max-width: 83.875rem;
  margin: 0 auto;
  padding: 0 1rem;
}

#block-categoryinfoforproductsearch {
  margin-bottom: 1.25em;
}

@media all and (min-width: 48em) {
  .path-produkty #block-medihum-page-title {
    margin-bottom: 2.5em;
  }
}

#block-frontpagefullwidthslidersk, #block-topproductssk {
  max-width: 78.125em;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

#block-medihum-branding a.site-logo,
#block-kajakshop-branding a.site-logo {
  text-decoration: none;
}
@media all and (min-width: 68.75em) {
  #block-medihum-branding a.site-logo,
  #block-kajakshop-branding a.site-logo {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
}
#block-medihum-branding a.site-logo img,
#block-kajakshop-branding a.site-logo img {
  width: 6.875em;
}
@media all and (min-width: 68.75em) {
  #block-medihum-branding a.site-logo img,
  #block-kajakshop-branding a.site-logo img {
    width: 11.875em;
    margin-left: -0.625em;
  }
}
#block-medihum-branding a.site-logo .slogan,
#block-kajakshop-branding a.site-logo .slogan {
  display: none;
}
@media all and (min-width: 68.75em) {
  #block-medihum-branding a.site-logo .slogan,
  #block-kajakshop-branding a.site-logo .slogan {
    display: block;
    line-height: 1.2em;
    font-size: 0.625em;
    font-weight: 500;
    text-transform: uppercase;
    color: #aeb8c8;
  }
}

.block-category-children {
  margin-bottom: 3em;
}
.block-category-children h2 {
  line-height: 1.278em;
  font-size: 1.125em;
}
@media all and (min-width: 48em) {
  .block-category-children h2 {
    font-size: 1.313em;
    font-weight: 500;
  }
}
.block-category-children ul.links {
  margin: 0 0 0 2em;
  padding: 0;
}
.block-category-children ul.links li {
  list-style: none outside none;
  margin: 0 0 0.625em;
  padding: 0;
}
@media all and (min-width: 48em) {
  .block-category-children ul.links li {
    margin-bottom: 0.167em;
    font-size: 1.125em;
  }
}
.block-category-children ul.links li:last-child {
  margin-bottom: 0;
}
.block-category-children ul.links li a {
  color: #1f2326;
}
.block-category-children ul.links.expanded li.hidden {
  display: block;
}

.block-category-info .category-header {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 48em) {
  .block-category-info .category-header {
    padding-left: 21.875em;
    padding-right: 1.25em;
  }
}
.block-category-info .category-header__title {
  margin-bottom: 0.5em;
}
@media all and (min-width: 48em) {
  .block-category-info .category-header__title {
    width: 100%;
    line-height: 1.053em;
    font-size: 2.375em;
  }
}
.block-category-info .category-header__description .custom-readmore-content::before {
  background: transparent;
}

#block-kajakshop-category-menu,
#block-medihum-category-menu {
  position: relative;
  display: none;
  z-index: 5;
  /* **** Common **** */
  /* **** First level **** */
}
@media all and (min-width: 68.75em) {
  #block-kajakshop-category-menu,
  #block-medihum-category-menu {
    display: block;
  }
}
#block-kajakshop-category-menu:before,
#block-medihum-category-menu:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-left: 0.9em solid transparent;
  border-right: 0.9em solid transparent;
  border-bottom: 1em solid #f5f6fa;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -0.9em;
}
#block-kajakshop-category-menu ul,
#block-medihum-category-menu ul {
  margin: 0;
  padding: 0;
}
#block-kajakshop-category-menu ul li,
#block-medihum-category-menu ul li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
#block-kajakshop-category-menu ul li a .label,
#block-medihum-category-menu ul li a .label {
  max-width: 14em;
}
#block-kajakshop-category-menu > ul,
#block-medihum-category-menu > ul {
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}
#block-kajakshop-category-menu > ul > li,
#block-medihum-category-menu > ul > li {
  position: relative;
  /* **** Second level **** */
}
#block-kajakshop-category-menu > ul > li > a,
#block-medihum-category-menu > ul > li > a {
  display: flex;
  align-items: center;
  height: 2.444em;
  line-height: 1.222em;
  padding-left: 1.944em;
  font-size: 1.125em;
  font-weight: 500;
  color: #1f2326;
  border-top: 0.056em solid transparent;
  border-bottom: 0.056em solid transparent;
}
#block-kajakshop-category-menu > ul > li > a:before,
#block-medihum-category-menu > ul > li > a:before {
  content: "";
  position: absolute;
  top: 0.056em;
  right: -0.056em;
  display: none;
  width: 0.167em;
  height: 2.333em;
  background-color: #fff;
  z-index: 10;
}
#block-kajakshop-category-menu > ul > li > a:after,
#block-medihum-category-menu > ul > li > a:after {
  flex-grow: 1;
  content: "";
  width: 0.5em;
  height: 0.813em;
  background: transparent url("../img/icons/right-arrow-light.svg") no-repeat calc(100% - 1em) 0;
  background-size: 0.5em auto;
}
#block-kajakshop-category-menu > ul > li > a .icon,
#block-medihum-category-menu > ul > li > a .icon {
  margin-right: 0.75em;
  display: inline-block;
  min-width: 2em;
  text-align: center;
}
#block-kajakshop-category-menu > ul > li.d-hover > a,
#block-medihum-category-menu > ul > li.d-hover > a {
  border-color: rgba(174, 184, 200, 0.5019607843);
  background-color: #fff;
}
#block-kajakshop-category-menu > ul > li.d-hover > a:before,
#block-medihum-category-menu > ul > li.d-hover > a:before {
  display: block;
}
#block-kajakshop-category-menu > ul > li.d-hover > ul,
#block-medihum-category-menu > ul > li.d-hover > ul {
  display: flex;
}
#block-kajakshop-category-menu > ul > li > ul,
#block-medihum-category-menu > ul > li > ul {
  display: none;
  flex-wrap: wrap;
  position: absolute;
  top: -3.75em;
  left: 100%;
  width: 58.313em;
  max-width: calc(100vw - 23.625em);
  padding: 2.188em 1.875em 0;
  border: 1px solid #ccc;
  background-color: #fff;
  z-index: 5;
}
#block-kajakshop-category-menu > ul > li > ul > li,
#block-medihum-category-menu > ul > li > ul > li {
  padding-right: 2em;
  margin-bottom: 2.5em;
  clear: both;
  width: 25%;
  text-align: center;
  /* **** Third level **** */
}
#block-kajakshop-category-menu > ul > li > ul > li.no-link,
#block-medihum-category-menu > ul > li > ul > li.no-link {
  display: none;
}
#block-kajakshop-category-menu > ul > li > ul > li > a .thumbnail,
#block-medihum-category-menu > ul > li > ul > li > a .thumbnail {
  display: block;
  padding-top: 100px;
  position: relative;
}
#block-kajakshop-category-menu > ul > li > ul > li > a .thumbnail img,
#block-medihum-category-menu > ul > li > ul > li > a .thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}
#block-kajakshop-category-menu > ul > li > ul > li > a .label,
#block-medihum-category-menu > ul > li > ul > li > a .label {
  display: block;
  line-height: 1.222em;
  margin-top: 0.556em;
  margin-bottom: 0.556em;
  font-size: 1.125em;
  font-weight: 700;
  color: #1f2326;
}
#block-kajakshop-category-menu > ul > li > ul > li > a .label:hover,
#block-medihum-category-menu > ul > li > ul > li > a .label:hover {
  text-decoration: underline;
}
#block-kajakshop-category-menu > ul > li > ul > li > ul,
#block-medihum-category-menu > ul > li > ul > li > ul {
  width: 100%;
}
#block-kajakshop-category-menu > ul > li > ul > li > ul > li.no-link,
#block-medihum-category-menu > ul > li > ul > li > ul > li.no-link {
  display: none;
}
#block-kajakshop-category-menu > ul > li > ul > li > ul > li > a,
#block-medihum-category-menu > ul > li > ul > li > ul > li > a {
  line-height: 1.375em;
  font-size: 1em;
  color: #1f2326;
  letter-spacing: -0.02em;
}
#block-kajakshop-category-menu > ul > li > ul > li.has-thumbnail > ul,
#block-medihum-category-menu > ul > li > ul > li.has-thumbnail > ul {
  padding-left: 4.75em;
}
#block-kajakshop-category-menu > ul > li:nth-child(1) > ul,
#block-medihum-category-menu > ul > li:nth-child(1) > ul {
  top: -0.62em;
}
#block-kajakshop-category-menu > ul > li:nth-child(2) > ul,
#block-medihum-category-menu > ul > li:nth-child(2) > ul {
  top: -3.35em;
}
#block-kajakshop-category-menu > ul > li.top-produkty,
#block-medihum-category-menu > ul > li.top-produkty {
  display: none;
}

.block-checkout-navigation {
  background: #2e3840;
}
.block-checkout-navigation ul.links {
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
  padding: 1.063em 1em 0.938em;
  overflow-x: auto;
  counter-reset: nav;
}
@media all and (min-width: 48em) {
  .block-checkout-navigation ul.links {
    justify-content: center;
  }
}
.block-checkout-navigation ul.links li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  list-style: none outside none;
  margin: 0;
  padding: 0;
  font-size: 1.125em;
  font-weight: 700;
  color: #fff;
}
@media all and (min-width: 48em) {
  .block-checkout-navigation ul.links li {
    font-size: 1.25em;
  }
}
@media all and (min-width: 60em) {
  .block-checkout-navigation ul.links li {
    font-size: 1.625em;
  }
}
.block-checkout-navigation ul.links li:after {
  content: "";
  width: 1.313em;
  height: 0.938em;
  margin: 0 0.5em;
  background: transparent url("../img/icons/arrow-left.svg") no-repeat 0 0;
  background-size: 1.313em 0.938em;
}
@media all and (max-width: 47.937em) {
  .block-checkout-navigation ul.links li:last-child {
    padding-right: 1em;
  }
}
.block-checkout-navigation ul.links li:last-child:after {
  display: none;
}
.block-checkout-navigation ul.links li a {
  white-space: nowrap;
  color: #fff;
}
.block-checkout-navigation ul.links li a:hover {
  text-decoration: none;
}
.block-checkout-navigation ul.links li a.disabled {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}
.block-checkout-navigation ul.links li a:before {
  counter-increment: nav;
  content: counters(nav, "") ".";
  margin-right: 0.25em;
}

.block-facets-summary {
  margin-top: 1.625em;
}
@media all and (min-width: 48em) {
  .block-facets-summary {
    margin-left: 2em;
  }
}
.block-facets-summary ul:not(.contextual-links) {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
}
.block-facets-summary ul:not(.contextual-links) li {
  list-style: none outside none;
  margin: 0 0.625em 0.625em 0;
  padding: 0.563em 0.375em;
  border: 0.063em solid #0bb7a5;
  border-radius: 0.125em;
  -moz-border-radius: 0.125em;
  -webkit-border-radius: 0.125em;
  background-color: #00CEA4;
}
.block-facets-summary ul:not(.contextual-links) li a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.block-facets-summary ul:not(.contextual-links) li a:hover {
  text-decoration: none;
}
.block-facets-summary ul:not(.contextual-links) li a .facet-item__status {
  display: block;
  width: 0.875em;
  height: 0.875em;
  color: transparent;
  background: transparent url("../img/icons/e-remove-white.svg") no-repeat 0 0;
  background-size: 0.875em 0.875em;
}
.block-facets-summary ul:not(.contextual-links) li a .facet-item__value {
  line-height: 1em;
  margin-right: 0.714em;
  font-size: 0.875em;
  font-weight: 500;
  color: #fff;
}
.block-facets-summary ul:not(.contextual-links) li.facet-summary-item--clear {
  order: 100;
  border: none;
  background-color: transparent;
}
@media all and (max-width: 47.937em) {
  .block-facets-summary ul:not(.contextual-links) li.facet-summary-item--clear {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
}
.block-facets-summary ul:not(.contextual-links) li.facet-summary-item--clear a {
  line-height: 1em;
  font-size: 0.875em;
  color: #3089fd;
}

.footer-menu .block-menu > ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.footer-menu .block-menu > ul > li {
  display: flex;
  align-items: center;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
.footer-menu .block-menu > ul > li:after {
  content: "";
  width: 0.375em;
  height: 0.375em;
  margin: 0 0.625em;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #aeb8c8;
}
@media all and (min-width: 48em) {
  .footer-menu .block-menu > ul > li:after {
    margin: 0 0.75em;
    background-color: #243e63;
  }
}
.footer-menu .block-menu > ul > li:last-child:after {
  display: none;
}
.footer-menu .block-menu > ul > li a {
  line-height: 1.286em;
  font-size: 0.875em;
  text-decoration: none;
  color: #2e3840;
}
@media all and (min-width: 48em) {
  .footer-menu .block-menu > ul > li a {
    line-height: 1.25em;
    font-size: 1em;
    color: #243e63;
  }
}
.footer-menu .block-menu > ul > li a:hover {
  text-decoration: underline;
}
.footer-menu .block-menu > ul ul {
  display: none;
}

.footer .top .block ul.menu {
  margin: 0;
  padding: 0;
}
.footer .top .block ul.menu li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
.footer .top .block > ul.menu > li > span {
  display: block;
  line-height: 1.438em;
  padding: 0.875em 0;
  font-size: 1em;
  font-weight: 700;
  color: #1f2326;
}
@media all and (min-width: 48em) {
  .footer .top .block > ul.menu > li > span {
    padding-top: 0;
    font-size: 1.313em;
  }
}
.footer .top .block > ul.menu > li > span:before {
  content: "";
  display: inline-block;
  width: 1.063em;
  height: 0.625em;
  margin-right: 1.188em;
  background: transparent url("../img/icons/down-arrow.svg") no-repeat 0 0;
  background-size: 1.063em 0.625em;
  cursor: pointer;
}
@media all and (min-width: 48em) {
  .footer .top .block > ul.menu > li > span:before {
    display: none;
  }
}
.footer .top .block > ul.menu > li > ul {
  display: none;
  margin: 0 0 0 2.25em;
  padding: 0;
}
@media all and (min-width: 48em) {
  .footer .top .block > ul.menu > li > ul {
    display: block;
    margin-left: 0;
  }
}
.footer .top .block > ul.menu > li > ul > li {
  list-style: none outside none;
  margin: 0 0 0.625em;
  padding: 0;
}
@media all and (min-width: 48em) {
  .footer .top .block > ul.menu > li > ul > li {
    margin-bottom: 1em;
  }
}
.footer .top .block > ul.menu > li > ul > li > a {
  text-decoration: none;
  color: #1f2326;
}
@media all and (min-width: 48em) {
  .footer .top .block > ul.menu > li > ul > li > a {
    color: #2e3840;
  }
}
.footer .top .block > ul.menu > li > ul > li > a:hover {
  text-decoration: underline;
}
.footer .top .block > ul.menu > li > ul > li ul {
  display: none;
}
.footer .top .block > ul.menu > li.expand > span:before {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.footer .top .block > ul.menu > li.expand > ul {
  display: block;
}

#block-medihum-language-switcher,
#block-kajakshop-language-switcher {
  display: none;
  margin-top: 4em;
  margin-left: 1em;
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher,
  #block-kajakshop-language-switcher {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    margin-top: 0;
    padding: 0.25em 0.25em 0;
    cursor: pointer;
  }
}
.mobile-menu-wrapper.depth-0 #block-medihum-language-switcher,
.mobile-menu-wrapper.depth-0 #block-kajakshop-language-switcher {
  display: flex;
}
#block-medihum-language-switcher .current-language,
#block-kajakshop-language-switcher .current-language {
  margin: 0 0.889em 0 0;
  font-size: 1.125em;
  font-weight: 500;
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher .current-language,
  #block-kajakshop-language-switcher .current-language {
    position: relative;
    width: 100%;
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    color: #fff;
    z-index: 1;
  }
  #block-medihum-language-switcher .current-language:before,
  #block-kajakshop-language-switcher .current-language:before {
    content: "";
    display: inline-block;
    vertical-align: sub;
    width: 1.333em;
    height: 1.333em;
    margin-right: 0.375em;
    background-size: 1.333em auto;
  }
  #block-medihum-language-switcher .current-language:after,
  #block-kajakshop-language-switcher .current-language:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-top: -0.188em;
    margin-left: 0.313em;
    border-style: solid;
    border-width: 0.313em 0.281em 0 0.281em;
    border-color: #aeb8c8 transparent transparent transparent;
    vertical-align: middle;
  }
  #block-medihum-language-switcher .current-language[hreflang=sk]::before,
  #block-kajakshop-language-switcher .current-language[hreflang=sk]::before {
    background: transparent url("../img/flags/24/sk.png") no-repeat 0 0;
  }
  #block-medihum-language-switcher .current-language[hreflang=cs]::before,
  #block-kajakshop-language-switcher .current-language[hreflang=cs]::before {
    background: transparent url("../img/flags/24/cz.png") no-repeat 0 0;
  }
}
#block-medihum-language-switcher ul.links,
#block-kajakshop-language-switcher ul.links {
  margin: 0;
  padding: 0;
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher ul.links,
  #block-kajakshop-language-switcher ul.links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.875em 0.25em 0.25em;
    width: 100%;
    background-color: #305283;
  }
}
#block-medihum-language-switcher ul.links li,
#block-kajakshop-language-switcher ul.links li {
  list-style: none outside none;
  margin: 0 1em 0 0;
  padding: 0;
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher ul.links li,
  #block-kajakshop-language-switcher ul.links li {
    margin: 0;
  }
}
#block-medihum-language-switcher ul.links li a,
#block-kajakshop-language-switcher ul.links li a {
  font-size: 1.125em;
  font-weight: 500;
  text-decoration: none;
  color: rgba(46, 56, 64, 0.5);
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher ul.links li a,
  #block-kajakshop-language-switcher ul.links li a {
    font-size: 1em;
    font-weight: 700;
    color: #fff;
  }
  #block-medihum-language-switcher ul.links li a:before,
  #block-kajakshop-language-switcher ul.links li a:before {
    content: "";
    display: inline-block;
    vertical-align: sub;
    width: 1.333em;
    height: 1.333em;
    margin-right: 0.375em;
    background-size: 1.333em auto;
  }
  #block-medihum-language-switcher ul.links li a[hreflang=sk]::before,
  #block-kajakshop-language-switcher ul.links li a[hreflang=sk]::before {
    background: transparent url("../img/flags/24/sk.png") no-repeat 0 0;
  }
  #block-medihum-language-switcher ul.links li a[hreflang=cs]::before,
  #block-kajakshop-language-switcher ul.links li a[hreflang=cs]::before {
    background: transparent url("../img/flags/24/cz.png") no-repeat 0 0;
  }
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher:hover ul.links,
  #block-kajakshop-language-switcher:hover ul.links {
    display: block;
  }
}
@media all and (min-width: 68.75em) {
  #block-medihum-language-switcher:hover ul.links li,
  #block-kajakshop-language-switcher:hover ul.links li {
    margin-left: -0.25em;
    margin-right: -0.25em;
    padding: 0 0.25em;
  }
}

#block-medihum-main-menu,
#block-kajakshop-main-menu {
  display: none;
}
@media all and (min-width: 68.75em) {
  #block-medihum-main-menu,
  #block-kajakshop-main-menu {
    display: block;
  }
}
#block-medihum-main-menu > ul.menu,
#block-kajakshop-main-menu > ul.menu {
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
}
#block-medihum-main-menu > ul.menu > li,
#block-kajakshop-main-menu > ul.menu > li {
  list-style: none outside none;
  margin: 0 1.125em 0 0;
  padding: 0;
}
#block-medihum-main-menu > ul.menu > li:last-child,
#block-kajakshop-main-menu > ul.menu > li:last-child {
  margin-right: 0;
}
#block-medihum-main-menu > ul.menu > li ul,
#block-kajakshop-main-menu > ul.menu > li ul {
  display: none;
}
#block-medihum-main-menu > ul.menu > li > a,
#block-kajakshop-main-menu > ul.menu > li > a {
  line-height: 1.313em;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  color: #aeb8c8;
}
@media all and (min-width: 68.75em) {
  #block-medihum-main-menu > ul.menu > li > a,
  #block-kajakshop-main-menu > ul.menu > li > a {
    line-height: 1.5em;
  }
}
#block-medihum-main-menu > ul.menu > li > a:hover,
#block-kajakshop-main-menu > ul.menu > li > a:hover {
  text-decoration: underline;
}

#block-medihum-search form,
#block-kajakshop-search form {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
}
#block-medihum-search form .form-item-keyword,
#block-kajakshop-search form .form-item-keyword {
  position: relative;
  flex-grow: 1;
  max-width: 455px;
  margin: 0;
  /**
   * Suggestions
   */
}
#block-medihum-search form .form-item-keyword input,
#block-kajakshop-search form .form-item-keyword input {
  width: 100%;
  height: 3.111em;
  margin: 0;
  padding: 0 1.222em;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1.125em;
  border: 0.111em solid #aeb8c8;
  border-right: none;
  color: #243E63;
  -webkit-border-top-left-radius: 0.222em;
  -webkit-border-bottom-left-radius: 0.222em;
  -moz-border-radius-topleft: 0.222em;
  -moz-border-radius-bottomleft: 0.222em;
  border-top-left-radius: 0.222em;
  border-bottom-left-radius: 0.222em;
  background-color: #fff;
  outline: none;
}
#block-medihum-search form .form-item-keyword input:focus,
#block-kajakshop-search form .form-item-keyword input:focus {
  outline: none;
}
#block-medihum-search form .form-item-keyword ::placeholder,
#block-kajakshop-search form .form-item-keyword ::placeholder {
  color: #243e63;
  opacity: 1; /* Firefox */
}
#block-medihum-search form .form-item-keyword :-ms-input-placeholder,
#block-kajakshop-search form .form-item-keyword :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #243e63;
}
#block-medihum-search form .form-item-keyword ::-ms-input-placeholder,
#block-kajakshop-search form .form-item-keyword ::-ms-input-placeholder { /* Microsoft Edge */
  color: #243e63;
}
#block-medihum-search form .form-item-keyword .icon-e-remove-gray,
#block-kajakshop-search form .form-item-keyword .icon-e-remove-gray {
  position: absolute;
  top: 1.063em;
  right: 0;
  cursor: pointer;
}
.search-overlay #block-medihum-search form .form-item-keyword:before,
.search-overlay #block-kajakshop-search form .form-item-keyword:before {
  content: "";
  position: absolute;
  bottom: -0.938em;
  left: 3.75em;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.906em 1em 0.906em;
  border-color: transparent transparent #f5f6fa;
  z-index: 1;
}
@media all and (min-width: 68.75em) {
  .search-overlay #block-medihum-search form .form-item-keyword:before,
  .search-overlay #block-kajakshop-search form .form-item-keyword:before {
    bottom: -1.875em;
  }
}
@media all and (min-width: 68.75em) {
  .search-overlay #block-medihum-search form .form-item-keyword:after,
  .search-overlay #block-kajakshop-search form .form-item-keyword:after {
    content: "";
    display: block;
    position: fixed;
    top: 11.875em;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(46, 56, 64, 0.8);
    z-index: 4;
  }
}
.adminimal-admin-toolbar.search-overlay #block-medihum-search form .form-item-keyword:after,
.adminimal-admin-toolbar.search-overlay #block-kajakshop-search form .form-item-keyword:after {
  top: 16.5em;
}
#block-medihum-search form .form-item-keyword .search-suggestions,
#block-kajakshop-search form .form-item-keyword .search-suggestions {
  position: fixed;
  top: 10.563em;
  right: 0;
  left: 0;
  display: flex;
  flex-flow: column nowrap;
  width: 100vw;
  height: calc(100vh - 10.563em);
  padding: 1.875em 1em;
  background-color: #f5f6fa;
  z-index: 5;
}
@media all and (max-width: 68.687em) {
  #block-medihum-search form .form-item-keyword .search-suggestions,
  #block-kajakshop-search form .form-item-keyword .search-suggestions {
    overflow-y: auto;
  }
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions,
  #block-kajakshop-search form .form-item-keyword .search-suggestions {
    position: fixed;
    top: 11.875em;
    bottom: 0;
    left: calc(50% - 32.5em);
    flex-flow: row wrap;
    width: 65em;
    height: 34.5em;
    padding: 1.875em 1.875em;
    background-image: linear-gradient(to right, transparent 0%, transparent calc(100% - 20.313em), #F1F2F8 calc(100% - 20.313em), #F1F2F8 100%);
    overflow-y: hidden;
  }
}
.path-frontpage #block-medihum-search form .form-item-keyword .search-suggestions,
.path-frontpage #block-kajakshop-search form .form-item-keyword .search-suggestions {
  top: 14.563em;
  height: calc(100vh - 14.563em);
}
@media all and (min-width: 68.75em) {
  .path-frontpage #block-medihum-search form .form-item-keyword .search-suggestions,
  .path-frontpage #block-kajakshop-search form .form-item-keyword .search-suggestions {
    top: 11.875em;
    height: 34.5em;
  }
}
@media all and (min-width: 68.75em) {
  .adminimal-admin-toolbar #block-medihum-search form .form-item-keyword .search-suggestions, .adminimal-admin-toolbar.path-frontpage #block-medihum-search form .form-item-keyword .search-suggestions,
  .adminimal-admin-toolbar #block-kajakshop-search form .form-item-keyword .search-suggestions,
  .adminimal-admin-toolbar.path-frontpage #block-kajakshop-search form .form-item-keyword .search-suggestions {
    top: 16.5em;
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .icon-e-remove,
#block-kajakshop-search form .form-item-keyword .search-suggestions .icon-e-remove {
  position: absolute;
  top: 1.75em;
  right: 1em;
  cursor: pointer;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .icon-e-remove,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .icon-e-remove {
    top: 1em;
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .icon-e-remove:before,
#block-kajakshop-search form .form-item-keyword .search-suggestions .icon-e-remove:before {
  margin-right: 0;
}
#block-medihum-search form .form-item-keyword .search-suggestions .left,
#block-kajakshop-search form .form-item-keyword .search-suggestions .left {
  order: 1;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .left,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .left {
    width: calc(100% - 20.313em);
    margin-right: 1.875em;
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .left .products > h3,
#block-kajakshop-search form .form-item-keyword .search-suggestions .left .products > h3 {
  line-height: 1.333em;
  margin: 0 0 0.667em 0;
  font-size: 1.125em;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .left .products .view-content,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .left .products .view-content {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .left .products .view-content .views-row,
#block-kajakshop-search form .form-item-keyword .search-suggestions .left .products .view-content .views-row {
  margin-bottom: 0.625em;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .left .products .view-content .views-row,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .left .products .view-content .views-row {
    width: calc(50% - 0.375em);
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .left .products .view-content .views-row:last-child,
#block-kajakshop-search form .form-item-keyword .search-suggestions .left .products .view-content .views-row:last-child {
  margin-bottom: 0;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right {
  order: 3;
  margin-top: 0.938em;
  padding: 1.563em 2.063em;
  background-color: #F1F2F8;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .right,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .right {
    order: 2;
    width: 18.438em;
    margin-top: 0;
    padding-top: 0;
    background-color: transparent;
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .producers,
#block-medihum-search form .form-item-keyword .search-suggestions .right .product-categories,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .producers,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .product-categories {
  width: 100%;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .producers > h3,
#block-medihum-search form .form-item-keyword .search-suggestions .right .product-categories > h3,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .producers > h3,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .product-categories > h3 {
  line-height: 1.333em;
  margin: 0 0 0.444em 0;
  font-size: 1.125em;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .producers .views-row,
#block-medihum-search form .form-item-keyword .search-suggestions .right .product-categories .views-row,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .producers .views-row,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .product-categories .views-row {
  margin-bottom: 0.313em;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .producers .views-row a,
#block-medihum-search form .form-item-keyword .search-suggestions .right .product-categories .views-row a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .producers .views-row a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .product-categories .views-row a {
  font-size: 1em;
  color: #2e3840;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .producers .views-row a mark,
#block-medihum-search form .form-item-keyword .search-suggestions .right .product-categories .views-row a mark,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .producers .views-row a mark,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .product-categories .views-row a mark {
  background-color: rgba(11, 183, 165, 0.2);
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .articles,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .articles {
  margin-top: 2.5em;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .articles > h3,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .articles > h3 {
  line-height: 1.333em;
  margin: 0 0 0.444em 0;
  font-size: 1.125em;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .articles .views-row,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .articles .views-row {
  margin-bottom: 0.313em;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .articles .views-row a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .articles .views-row a {
  font-size: 1em;
  color: #2e3840;
}
#block-medihum-search form .form-item-keyword .search-suggestions .right .articles .views-row a mark,
#block-kajakshop-search form .form-item-keyword .search-suggestions .right .articles .views-row a mark {
  background-color: rgba(11, 183, 165, 0.2);
}
#block-medihum-search form .form-item-keyword .search-suggestions .more,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more {
  order: 2;
  margin-top: 1.375em;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .more,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .more {
    order: 3;
    width: calc(100% - 20.313em);
  }
}
#block-medihum-search form .form-item-keyword .search-suggestions .more a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more a {
  font-size: 1.125em;
}
@media all and (min-width: 68.75em) {
  #block-medihum-search form .form-item-keyword .search-suggestions .more a,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .more a {
    max-width: 12.5em;
    margin: 0 auto;
  }
}
#block-medihum-search form .form-submit,
#block-kajakshop-search form .form-submit {
  width: 3.625em;
  height: 3.5em;
  margin: 0;
  padding: 0;
  font-size: 1em;
  border: none;
  color: transparent;
  -webkit-border-top-right-radius: 0.25em;
  -webkit-border-bottom-right-radius: 0.25em;
  -moz-border-radius-topright: 0.25em;
  -moz-border-radius-bottomright: 0.25em;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
  background: #3089fd url("../img/icons/magnifier.svg") no-repeat center center;
  background-size: 1.563em 1.563em;
  cursor: pointer;
}

#block-medihum-seo-text-frontpage,
#block-kajakshop-seo-text-frontpage {
  max-width: 78.125em;
  margin: 3em auto;
  padding: 0;
}

#block-medihum-article-category-links {
  margin-bottom: 1em;
}
@media all and (min-width: 48em) {
  #block-medihum-article-category-links {
    margin-bottom: 0;
    margin-top: 0.625em;
  }
}
#block-medihum-article-category-links > h2 {
  font-size: 1.313em;
  font-weight: 500;
  line-height: 0.857em;
  color: #2e3840;
  margin: 0 0 0.286em 0;
}
#block-medihum-article-category-links ul.links {
  margin: 0;
  padding: 0 0 0 2.063em;
}
#block-medihum-article-category-links ul.links > li {
  display: inline-block;
  width: 100%;
  list-style: none;
  margin-top: 0.313em;
}
#block-medihum-article-category-links ul.links > li a {
  text-decoration: none;
  font-size: 1.125em;
  line-height: 1.333em;
  letter-spacing: -0.02em;
  color: #1f2326;
  font-weight: 400;
}
#block-medihum-article-category-links ul.links > li a:hover {
  color: #3089fd;
}

.path-cart #block-kajakshop-breadcrumbs,
.path-cart #block-medihum-breadcrumbs {
  display: none;
}
#block-kajakshop-breadcrumbs nav.breadcrumb,
#block-medihum-breadcrumbs nav.breadcrumb {
  margin: 1.25em 0;
}
#block-kajakshop-breadcrumbs nav.breadcrumb ol,
#block-medihum-breadcrumbs nav.breadcrumb ol {
  margin: 0;
  padding: 0;
}
@media all and (min-width: 48em) {
  #block-kajakshop-breadcrumbs nav.breadcrumb ol,
  #block-medihum-breadcrumbs nav.breadcrumb ol {
    display: flex;
  }
}
#block-kajakshop-breadcrumbs nav.breadcrumb ol li,
#block-medihum-breadcrumbs nav.breadcrumb ol li {
  list-style: none;
  display: none;
}
#block-kajakshop-breadcrumbs nav.breadcrumb ol li a,
#block-medihum-breadcrumbs nav.breadcrumb ol li a {
  font-size: 1em;
  line-height: 1.125em;
  color: #3089fd;
  font-weight: 500;
}
@media all and (max-width: 47.938em) {
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:last-child,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:last-child {
    display: block;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:last-child a,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:last-child a {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:last-child a:before,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:last-child a:before {
    content: "";
    display: inline-block;
    width: 0.426em;
    height: 0.831em;
    background: transparent url("../img/icons/left-arrow.svg") no-repeat 0 0;
    background-size: 0.426em 0.831em;
    margin-right: 0.5em;
  }
}
@media all and (min-width: 48em) {
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li,
  #block-medihum-breadcrumbs nav.breadcrumb ol li {
    display: flex;
    align-items: center;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:after,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:after {
    content: "";
    display: inline-block;
    width: 0.426em;
    height: 0.831em;
    background: transparent url("../img/icons/right-arrow.svg") no-repeat 0 0;
    background-size: 0.426em 0.831em;
    margin: 0 1em;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li a,
  #block-medihum-breadcrumbs nav.breadcrumb ol li a {
    font-size: 1.125em;
    line-height: 1.333em;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:first-child a,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:first-child a {
    text-indent: -999999px;
    width: 0.868em;
    height: 0.911em;
    position: relative;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:first-child a:before,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:first-child a:before {
    content: "";
    display: inline-block;
    width: 0.868em;
    height: 0.911em;
    background: transparent url("../img/icons/house.svg") no-repeat 0 0;
    background-size: 0.868em 0.911em;
    position: absolute;
    top: 0;
    left: 0;
  }
  #block-kajakshop-breadcrumbs nav.breadcrumb ol li:last-child:after,
  #block-medihum-breadcrumbs nav.breadcrumb ol li:last-child:after {
    display: none;
  }
}

#block-kajakshop-feature-icons-front,
#block-medihum-feature-icons-front {
  max-width: 78.125em;
  margin: 0 auto;
  padding: 0;
}
#block-kajakshop-feature-icons-front .feature-icons,
#block-medihum-feature-icons-front .feature-icons {
  display: flex;
  justify-content: space-between;
  max-width: 28.125em;
  margin: 1.5em auto;
}
@media all and (min-width: 48em) {
  #block-kajakshop-feature-icons-front .feature-icons,
  #block-medihum-feature-icons-front .feature-icons {
    max-width: 58.75em;
    margin: 3.75em auto;
  }
}
#block-kajakshop-feature-icons-front .feature-icons .item,
#block-medihum-feature-icons-front .feature-icons .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 48em) {
  #block-kajakshop-feature-icons-front .feature-icons .item,
  #block-medihum-feature-icons-front .feature-icons .item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
#block-kajakshop-feature-icons-front .feature-icons .item span.icon,
#block-medihum-feature-icons-front .feature-icons .item span.icon {
  flex-shrink: 0;
  width: 3.5em;
  height: 3.5em;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background-color: #0bb7a5;
  position: relative;
}
@media all and (min-width: 48em) {
  #block-kajakshop-feature-icons-front .feature-icons .item span.icon,
  #block-medihum-feature-icons-front .feature-icons .item span.icon {
    width: 3.875em;
    height: 3.875em;
  }
}
#block-kajakshop-feature-icons-front .feature-icons .item span.icon:before,
#block-medihum-feature-icons-front .feature-icons .item span.icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
@media all and (min-width: 48em) {
  #block-kajakshop-feature-icons-front .feature-icons .item span.icon:before,
  #block-medihum-feature-icons-front .feature-icons .item span.icon:before {
    transform: translate(-50%, -50%) scale(1.15);
    -ms-transform: translate(-50%, -50%) scale(1.15);
    -webkit-transform: translate(-50%, -50%) scale(1.15);
  }
}
#block-kajakshop-feature-icons-front .feature-icons .item span.icon.icon-boxes:before,
#block-medihum-feature-icons-front .feature-icons .item span.icon.icon-boxes:before {
  background: transparent url("../img/icons/3pack.svg") no-repeat 0 0;
  background-size: 2.063em, 1.688em;
  width: 2.063em;
  height: 1.688em;
}
#block-kajakshop-feature-icons-front .feature-icons .item span.icon.icon-delivery:before,
#block-medihum-feature-icons-front .feature-icons .item span.icon.icon-delivery:before {
  background: transparent url("../img/icons/delivery-fast.svg") no-repeat 0 0;
  background-size: 2em, 1.875em;
  width: 2em;
  height: 1.875em;
}
#block-kajakshop-feature-icons-front .feature-icons .item span.icon.icon-safe-shield:before,
#block-medihum-feature-icons-front .feature-icons .item span.icon.icon-safe-shield:before {
  background: transparent url("../img/icons/privacy.svg") no-repeat 0 0;
  background-size: 1.813em, 2.188em;
  width: 1.813em;
  height: 2.188em;
}
#block-kajakshop-feature-icons-front .feature-icons .item span.icon.icon-badge:before,
#block-medihum-feature-icons-front .feature-icons .item span.icon.icon-badge:before {
  background: transparent url("../img/icons/cockade.svg") no-repeat 0 0;
  background-size: 2.063em, 2.25em;
  width: 2.063em;
  height: 2.25em;
}
#block-kajakshop-feature-icons-front .feature-icons .item span.label,
#block-medihum-feature-icons-front .feature-icons .item span.label {
  max-width: 5.833em;
  font-size: 0.75em;
  line-height: 1.083em;
  text-align: center;
  color: #243e63;
  margin-top: 0.417em;
}
@media all and (min-width: 48em) {
  #block-kajakshop-feature-icons-front .feature-icons .item span.label,
  #block-medihum-feature-icons-front .feature-icons .item span.label {
    font-size: 0.875em;
    text-transform: uppercase;
    line-height: 1.143em;
    margin-top: 0;
    margin-left: 0.429em;
    text-align: left;
    max-width: 10em;
    color: #869197;
    font-weight: 500;
  }
}

#block-medihum-kajakshop-frontpage,
#block-medihum-brands-frontpage {
  max-width: 78.125em;
  margin: 6.25em auto;
  padding: 0;
}
@media all and (min-width: 48em) {
  #block-medihum-kajakshop-frontpage,
  #block-medihum-brands-frontpage {
    margin: 5.625em auto;
  }
}
#block-medihum-kajakshop-frontpage h2,
#block-medihum-brands-frontpage h2 {
  text-align: center;
  margin: 0 0 0.625em 0;
  font-weight: 500;
}

.block-frontpage-slider .flickity-slider > .field__item {
  width: 100%;
}
.block-frontpage-slider .field--name-field-paragraphs > .field__item:nth-child(n+2) {
  display: none;
}
.region-content .block-frontpage-slider {
  margin-top: 1.25em;
}

#block-medihum-frontpage-text .field--name-body {
  margin-top: 1em;
  padding: 1.25em;
}

#block-medihum-magazine-block-frontpage {
  max-width: 78.125em;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
#block-medihum-magazine-block-frontpage > h2 {
  display: none;
}
@media all and (min-width: 48em) {
  #block-medihum-magazine-block-frontpage > h2 {
    display: block;
    font-size: 1.75em;
    line-height: 1.143em;
    margin: 0 0 0.714em 0;
    letter-spacing: -0.025em;
    font-weight: 700;
  }
}

#block-frontpageabout .field--name-body {
  padding: 1.25em;
}

/* Content && Products */
body.cke_editable > *,
.node--view-mode-full .field--name-field-content > * {
  font-size: 1.125em;
  color: #243e63;
  line-height: 1.444em;
}
body.cke_editable .media--type-image img,
.node--view-mode-full .field--name-field-content .media--type-image img {
  max-width: 100%;
}

.node--type-page.node--view-mode-full {
  max-width: 40.625em;
  margin: 0 auto;
}

.node--type-article.node--view-mode-full {
  margin-bottom: 3.25em;
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-full {
    margin-bottom: 6.25em;
  }
}
.node--type-article.node--view-mode-full .node__header {
  display: flex;
  justify-content: space-between;
  margin: 0.625em 0;
}
@media all and (min-width: 31.25em) {
  .node--type-article.node--view-mode-full .node__header {
    align-items: center;
  }
}
.node--type-article.node--view-mode-full .node__header .meta {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 31.25em) {
  .node--type-article.node--view-mode-full .node__header .meta {
    flex-direction: row;
  }
}
.node--type-article.node--view-mode-full .node__header .meta .date {
  font-size: 0.875em;
  letter-spacing: 0;
  color: #243e63;
}
.node--type-article.node--view-mode-full .node__header .meta .read-time {
  display: flex;
  align-items: center;
  font-size: 0.875em;
  letter-spacing: 0;
  color: #243e63;
  margin-top: 0.357em;
}
@media all and (min-width: 31.25em) {
  .node--type-article.node--view-mode-full .node__header .meta .read-time {
    margin-left: 1em;
    margin-top: 0;
  }
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-full .node__header .meta .read-time {
    margin-left: 2.143em;
  }
}
.node--type-article.node--view-mode-full .node__header .meta .read-time::before {
  content: "";
  display: inline-block;
  width: 0.786em;
  height: 0.786em;
  background: transparent url("../img/icons/clock-gray.svg") no-repeat 0 0;
  background-size: 0.786em 0.786em;
  margin-right: 0.429em;
}
.node--type-article.node--view-mode-full .node__header .field--name-field-category {
  background-color: #0bb7a5;
  color: #fff;
  font-size: 0.75em;
  line-height: 1.333em;
  font-weight: 700;
  padding: 0.208em 0.625em 0.208em 0.625em;
  border-radius: 1.25em;
  -moz-border-radius: 1.25em;
  -webkit-border-radius: 1.25em;
  height: 1.917em;
}
@media all and (min-width: 31.25em) {
  .node--type-article.node--view-mode-full .node__header .field--name-field-category {
    height: auto;
  }
}
.node--type-article.node--view-mode-full .node__content .field--name-field-lead {
  font-size: 1.313em;
  line-height: 1.238em;
  font-weight: 500;
  color: #243e63;
}
.node--type-article.node--view-mode-full .node__content .field--name-field-image {
  margin: 1.875em 0;
}
.node--type-article.node--view-mode-full .node__content .field--name-field-image img {
  width: 100%;
}
.node--type-article.node--view-mode-teaser-box-big {
  max-width: 20em;
  padding: 0.625em 0.313em;
}
@media all and (min-width: 42.5em) {
  .node--type-article.node--view-mode-teaser-box-big {
    width: 50%;
  }
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-big {
    width: 33.333333%;
    max-width: none;
  }
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-big {
    width: 50%;
    min-height: 25em;
    padding: 1.063em 0.313em;
  }
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper {
  height: 100%;
  background-color: #fff;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__header {
  position: relative;
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__header .field--name-field-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.25em 0.25em 0 0;
  -moz-border-radius: 0.25em 0.25em 0 0;
  -webkit-border-radius: 0.25em 0.25em 0 0;
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__header .field--name-field-category {
  position: absolute;
  top: 0.875em;
  left: 1.25em;
  background-color: #0bb7a5;
  color: #fff;
  font-size: 0.75em;
  line-height: 1.333em;
  font-weight: 700;
  padding: 0.208em 0.625em 0.208em 0.625em;
  border-radius: 1.25em;
  -moz-border-radius: 1.25em;
  -webkit-border-radius: 1.25em;
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__header .read-time {
  position: absolute;
  right: 1.25em;
  bottom: 0.875em;
  color: #fff;
  font-size: 0.875em;
  line-height: 1.286em;
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content {
  padding: 0.875em 1.25em 1.563em 1.25em;
  background-color: #fff;
  border-radius: 0 0 0.25em 0.25em;
  -moz-border-radius: 0 0 0.25em 0.25em;
  -webkit-border-radius: 0 0 0.25em 0.25em;
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .date {
  font-size: 0.875em;
  color: #243e63;
  line-height: 1.286em;
  margin-bottom: 0.571em;
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .title a {
  display: block;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.438em;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #1f2326;
  margin-bottom: 0.313em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .title a {
    font-size: 1.938em;
    line-height: 1.065em;
    font-weight: 500;
    margin-bottom: 0;
  }
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .lead {
  font-size: 0.875em;
  color: #869197;
  line-height: 1.286em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .lead {
    color: #243e63;
    padding: 0.5em 0;
  }
}
.node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .read__more {
  display: none;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper {
    display: flex;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__header {
    overflow: hidden;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__header .field--name-field-image img {
    min-width: 25em;
    border-radius: 0.25em 0 0 0.25em;
    -moz-border-radius: 0.25em 0 0 0.25em;
    -webkit-border-radius: 0.25em 0 0 0.25em;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content {
    padding: 1em 1.375em;
    max-width: 13.75em;
    position: relative;
    border-radius: 0 0.25em 0.25em 0;
    -moz-border-radius: 0 0.25em 0.25em 0;
    -webkit-border-radius: 0 0.25em 0.25em 0;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .read__more {
    display: block;
    position: absolute;
    bottom: 1em;
    left: 1.25em;
    font-size: 1em;
    line-height: 1.125em;
    color: #3089fd;
    font-weight: 500;
    text-decoration: none;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .read__more::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.813em;
    background: transparent url("../img/icons/right-arrow-bold.svg") no-repeat 0 0;
    background-size: 0.5em 0.813em;
    margin-left: 0.375em;
    -webkit-transition: margin-left 0.2s ease-in-out;
    -moz-transition: margin-left 0.2s ease-in-out;
    -ms-transition: margin-left 0.2s ease-in-out;
    -o-transition: margin-left 0.2s ease-in-out;
    transition: margin-left 0.2s ease-in-out;
    position: relative;
    top: 0.1em;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .read__more:hover {
    text-decoration: underline;
  }
  .node--type-article.node--view-mode-teaser-box-big .content__wrapper .node__content .read__more:hover::after {
    margin-left: 0.99em;
  }
}
.node--type-article.node--view-mode-teaser-box-small {
  max-width: 20em;
  padding: 0.625em 0.313em;
}
@media all and (min-width: 42.5em) {
  .node--type-article.node--view-mode-teaser-box-small {
    width: 50%;
  }
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-small {
    width: 33.333333%;
    max-width: none;
  }
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small {
    width: 25%;
    min-height: 25em;
    padding: 1.063em 0.313em;
  }
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper {
  height: 100%;
  background-color: #fff;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__header {
  position: relative;
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__header .field--name-field-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.25em 0.25em 0 0;
  -moz-border-radius: 0.25em 0.25em 0 0;
  -webkit-border-radius: 0.25em 0.25em 0 0;
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__header .field--name-field-category {
  position: absolute;
  top: 0.875em;
  left: 1.25em;
  background-color: #0bb7a5;
  color: #fff;
  font-size: 0.75em;
  line-height: 1.333em;
  font-weight: 700;
  padding: 0.208em 0.625em 0.208em 0.625em;
  border-radius: 1.25em;
  -moz-border-radius: 1.25em;
  -webkit-border-radius: 1.25em;
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__header .read-time {
  position: absolute;
  right: 1.25em;
  bottom: 0.875em;
  color: #fff;
  font-size: 0.875em;
  line-height: 1.286em;
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content {
  padding: 0.875em 1.25em 1.563em 1.25em;
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .date {
  font-size: 0.875em;
  color: #243e63;
  line-height: 1.286em;
  margin-bottom: 0.571em;
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .title a {
  display: block;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.438em;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #1f2326;
  margin-bottom: 0.313em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .title a {
    font-size: 1.313em;
    line-height: 1.095em;
    font-weight: 500;
  }
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .lead {
  font-size: 0.875em;
  color: #869197;
  line-height: 1.286em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .lead {
    color: #243e63;
    padding: 0.3em 0;
  }
}
.node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .read__more {
  display: none;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper {
    position: relative;
  }
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__header {
    position: relative;
  }
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .read__more {
    display: block;
    position: absolute;
    bottom: 1em;
    left: 1.25em;
    font-size: 1em;
    line-height: 1.125em;
    color: #3089fd;
    font-weight: 500;
    text-decoration: none;
  }
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .read__more::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.813em;
    background: transparent url("../img/icons/right-arrow-bold.svg") no-repeat 0 0;
    background-size: 0.5em 0.813em;
    margin-left: 0.375em;
    -webkit-transition: margin-left 0.2s ease-in-out;
    -moz-transition: margin-left 0.2s ease-in-out;
    -ms-transition: margin-left 0.2s ease-in-out;
    -o-transition: margin-left 0.2s ease-in-out;
    transition: margin-left 0.2s ease-in-out;
    position: relative;
    top: 0.1em;
  }
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .read__more:hover {
    text-decoration: underline;
  }
  .node--type-article.node--view-mode-teaser-box-small .content__wrapper .node__content .read__more:hover::after {
    margin-left: 0.99em;
  }
}
.node--type-article.node--view-mode-teaser-box-small-dark {
  max-width: 20em;
  padding: 0.625em 0.313em;
}
@media all and (min-width: 42.5em) {
  .node--type-article.node--view-mode-teaser-box-small-dark {
    width: 50%;
  }
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-small-dark {
    width: 33.333333%;
    max-width: none;
  }
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small-dark {
    width: 25%;
    min-height: 25em;
    padding: 1.063em 0.313em;
  }
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper {
  height: 100%;
  background-color: #243e63;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  min-height: 21.609em;
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper {
    min-height: auto;
  }
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__header {
  padding: 0.875em 1em 1.563em 1em;
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__header .field--name-field-category {
  display: inline-block;
  background-color: #0bb7a5;
  color: #fff;
  font-size: 0.75em;
  line-height: 1.333em;
  font-weight: 700;
  padding: 0.208em 0.625em 0.208em 0.625em;
  border-radius: 1.25em;
  -moz-border-radius: 1.25em;
  -webkit-border-radius: 1.25em;
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content {
  padding: 0.875em 1.25em 1.563em 1.25em;
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .date {
  font-size: 0.875em;
  color: #fff;
  line-height: 1.286em;
  margin-bottom: 0.571em;
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .title a {
  display: block;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.438em;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.313em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .title a {
    font-size: 1.313em;
    line-height: 1.095em;
    font-weight: 500;
  }
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .lead {
  font-size: 0.875em;
  color: #fff;
  line-height: 1.429em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .lead {
    padding: 0.3em 0;
  }
}
.node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .read__more {
  display: none;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper {
    position: relative;
  }
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__header {
    position: relative;
  }
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .read__more {
    display: block;
    position: absolute;
    bottom: 1em;
    left: 1.25em;
    font-size: 1em;
    line-height: 1.125em;
    color: #3089fd;
    font-weight: 500;
    text-decoration: none;
  }
  .node--type-article.node--view-mode-teaser-box-small-dark .content__wrapper .node__content .read__more:hover {
    text-decoration: underline;
  }
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper {
  height: 100%;
  background-color: #fff;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper:after {
  display: block;
  content: "";
  width: 9.375em;
  height: 0.313em;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  color: #243e63;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper:after {
    display: none;
  }
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__header {
  position: relative;
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__header .field--name-field-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.25em 0.25em 0 0;
  -moz-border-radius: 0.25em 0.25em 0 0;
  -webkit-border-radius: 0.25em 0.25em 0 0;
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content {
  padding: 0.625em 0.625em 1.2em 0.625em;
  min-height: 9.375em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content {
    padding: 0.875em 1.125em 1.25em 1.125em;
    min-height: 13.375em;
    justify-content: flex-start;
  }
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .title a {
  display: block;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.438em;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #1f2326;
  margin-bottom: 0.313em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .title a {
    font-size: 1.313em;
    line-height: 1.095em;
    font-weight: 500;
  }
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .lead {
  font-size: 0.875em;
  color: #869197;
  line-height: 1.286em;
}
@media all and (min-width: 64em) {
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .lead {
    color: #243e63;
    padding: 0.3em 0;
  }
}
.node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .read__more {
  display: none;
}
@media all and (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper {
    position: relative;
  }
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__header {
    position: relative;
  }
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .read__more {
    display: block;
    position: absolute;
    bottom: 2.2em;
    left: 1.125em;
    font-size: 1em;
    line-height: 1.125em;
    color: #3089fd;
    font-weight: 500;
    text-decoration: none;
  }
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .read__more::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.813em;
    background: transparent url("../img/icons/right-arrow-bold.svg") no-repeat 0 0;
    background-size: 0.5em 0.813em;
    margin-left: 0.375em;
    -webkit-transition: margin-left 0.2s ease-in-out;
    -moz-transition: margin-left 0.2s ease-in-out;
    -ms-transition: margin-left 0.2s ease-in-out;
    -o-transition: margin-left 0.2s ease-in-out;
    transition: margin-left 0.2s ease-in-out;
    position: relative;
    top: 0.1em;
  }
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .read__more:hover {
    text-decoration: underline;
  }
  .node--type-article.node--view-mode-teaser-box-front .content__wrapper .node__content .read__more:hover::after {
    margin-left: 0.99em;
  }
}

.node--type-catalogue.node--view-mode-teaser-box-front .content__wrapper {
  background-color: #243e63;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  -webkit-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.29);
}
.node--type-catalogue.node--view-mode-teaser-box-front .content__wrapper .node__header .field--name-field-image img {
  display: block;
  max-width: 100%;
  border-radius: 0.25em 0.25em 0 0;
  -moz-border-radius: 0.25em 0.25em 0 0;
  -webkit-border-radius: 0.25em 0.25em 0 0;
}
.node--type-catalogue.node--view-mode-teaser-box-front .content__wrapper .node__content {
  padding: 0.625em 0.625em 1.2em 0.625em;
  min-height: 9.375em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (min-width: 48em) {
  .node--type-catalogue.node--view-mode-teaser-box-front .content__wrapper .node__content {
    padding: 0.875em 1.125em 1.25em 1.125em;
    min-height: 13.375em;
  }
}
.node--type-catalogue.node--view-mode-teaser-box-front .content__wrapper .node__content .title .field--name-title {
  color: #fff;
  font-size: 1.125em;
  line-height: 1.111em;
  font-weight: 500;
}
.node--type-catalogue.node--view-mode-teaser-box-front .content__wrapper .node__content .download__attachment {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0;
  color: #2e3840;
}

.product {
  /**
   * View mode full
   */
  /**
   * View mode teaser
   */
}
.product.product--view-mode--full .content__wrapper {
  background-color: #fff;
}
.product.product--view-mode--full .content__wrapper .product-info {
  max-width: 80.125em;
  margin: 0 auto;
  padding: 0 1em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
  }
}
.product.product--view-mode--full .content__wrapper .product-info h1.title {
  line-height: 1.143em;
  margin: 0 -0.571em;
  padding: 0 0.571em 0.813em 0.571em;
  font-size: 1.75em;
  font-weight: 700;
  color: #1f2326;
  letter-spacing: -0.025em;
  background-color: #F5F6FA;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info h1.title {
    width: 15.263em;
    line-height: 1.053em;
    margin: 0.605em 0 0.342em;
    padding: 0;
    font-size: 2.375em;
    letter-spacing: -0.04em;
    background-color: transparent;
  }
}
@media all and (min-width: 60em) {
  .product.product--view-mode--full .content__wrapper .product-info h1.title {
    float: right;
    width: calc(50% - 0.658em);
  }
}
@media all and (min-width: 75em) {
  .product.product--view-mode--full .content__wrapper .product-info h1.title {
    width: 15.263em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .gallery {
  position: relative;
  margin: 0 -1em;
  padding-top: 1.563em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .gallery {
    float: left;
    width: 31.25em;
    min-height: 10em;
    margin: 0;
  }
}
@media all and (min-width: 60em) {
  .product.product--view-mode--full .content__wrapper .product-info .gallery {
    width: calc(50% - 1.563em);
  }
}
@media all and (min-width: 75em) {
  .product.product--view-mode--full .content__wrapper .product-info .gallery {
    width: 36.25em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .gallery .nav {
  display: none;
  position: relative;
  float: left;
  height: 18.125em;
  padding: 0.125em 0.625em 0.125em 0.125em;
  overflow: hidden;
  z-index: 1;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .gallery .nav {
    display: block;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .gallery .nav .field__item {
  margin-bottom: 0.813em;
  padding: 0.125em;
  border: 0.063em solid #ECEEEF;
  cursor: pointer;
}
.product.product--view-mode--full .content__wrapper .product-info .gallery .nav .field__item:hover, .product.product--view-mode--full .content__wrapper .product-info .gallery .nav .field__item.is-nav-selected {
  outline: 0.188em solid #3089fd;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .gallery .slider {
    max-width: 100%;
    margin-left: 6.875em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .gallery .slider .field__item {
  width: 100%;
}
.product.product--view-mode--full .content__wrapper .product-info .gallery .slider .field__item img {
  max-width: 100%;
}
.product.product--view-mode--full .content__wrapper .product-info .gallery .field--name-field-discount {
  position: absolute;
  top: 0;
  left: 1em;
  width: 3.889em;
  padding: 0.167em 0;
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #ff7f00;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .gallery .field--name-field-discount {
    top: 0.962em;
    left: 4.231em;
    padding: 0.231em 0;
    font-size: 1.625em;
    color: #bc2213;
    background-color: #ffd918;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content {
  margin: 1.125em 0 0;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content {
    margin-top: 0.625em;
    clear: left;
  }
}
@media all and (min-width: 60em) {
  .product.product--view-mode--full .content__wrapper .product-info .content {
    float: right;
    width: calc(50% - 1.563em);
    clear: none;
  }
}
@media all and (min-width: 75em) {
  .product.product--view-mode--full .content__wrapper .product-info .content {
    width: 36.25em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline {
  display: flex;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline > * {
  margin-left: 0.5em;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline > *:first-child {
  margin-left: 0;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .sku {
  flex-grow: 1;
  display: flex;
  line-height: 1.429em;
  color: #2e3840;
  font-size: 0.875em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .inline .sku {
    flex-grow: 0;
    font-size: 1.125em;
    margin-right: 1.889em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .sku .label {
  margin-right: 0.429em;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .sku .field__item {
  font-weight: 500;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .producer {
  line-height: 1.125em;
  font-size: 1em;
  font-weight: 500;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .inline .producer {
    line-height: normal;
    font-size: 1.125em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .producer a {
  color: #1f2326;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .flag {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.125em;
  font-size: 1em;
  font-weight: 700;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .inline .flag {
    line-height: normal;
    font-size: 1.125em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .flag .field__item {
  display: inline;
  text-transform: uppercase;
  color: #ff7f00;
}
.product.product--view-mode--full .content__wrapper .product-info .content .inline .flag .field__item:not(:empty):before {
  content: "|";
  color: #2e3840;
  font-weight: 500;
  margin-left: 0.313em;
  margin-right: 0.313em;
}
.product.product--view-mode--full .content__wrapper .product-info .content .excerpt {
  line-height: 1.286em;
  margin-top: 0.714em;
  font-size: 0.875em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .excerpt {
    line-height: 1.313em;
    font-size: 1em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .excerpt a.read-more {
  font-weight: 500;
  color: #3089fd;
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions {
  margin-top: 0.813em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions {
    margin-top: 1.25em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price {
  margin-bottom: 0.75em;
  text-align: center;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price {
    margin-bottom: 0.875em;
    padding-left: 2.813em;
    text-align: left;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .field--name-list-price {
  display: inline;
  line-height: 1.286em;
  font-size: 0.875em;
  color: #aeb8c8;
  text-decoration: line-through;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .field--name-list-price {
    display: block;
    font-size: 1.125em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .field--name-price {
  display: inline-block;
  line-height: 1.25em;
  font-size: 1.5em;
  font-weight: 700;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .field--name-price {
    margin: 0 0.167em 0 0;
    font-size: 2.375em;
    letter-spacing: -0.035em;
  }
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .field--name-price.price-for-request {
    font-size: 1.5em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .tax-label {
  display: inline;
  line-height: 1.286em;
  font-size: 0.875em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .product-price .tax-label {
    font-size: 1.125em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner {
  margin-right: -1em;
  margin-left: -1em;
  padding: 0.625em 1em;
  background-color: #f5f6fa;
  clear: right;
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner {
    position: relative;
    margin-right: 0;
    margin-left: 0;
    padding: 1.125em 0 1.125em 0;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-field-stock-info,
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-field-in-stock {
  float: right;
  line-height: 1.143em;
  font-size: 0.875em;
  font-weight: 700;
  color: #0bb7a5;
  margin-top: 2.25em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-field-stock-info,
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-field-in-stock {
    position: absolute;
    top: 2.286em;
    right: 1.762em;
    float: none;
    line-height: 1.333em;
    font-size: 1.313em;
    font-weight: 400;
    margin-top: 0;
  }
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .field--name-purchased-entity {
    width: 100%;
    min-height: 6.188em;
    margin-bottom: 1.125em;
    padding-left: 1.125em;
    padding-right: 2.375em;
    padding-bottom: 1.125em;
    border-bottom: 0.125em solid #fff;
  }
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .field--name-purchased-entity .attribute-widgets {
    display: flex;
    flex-flow: row wrap;
    padding-right: 8.75em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .field--name-purchased-entity .attribute-widgets .form-item {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .field--name-purchased-entity .attribute-widgets .form-item:last-child {
  margin-bottom: 0;
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .field--name-quantity {
  text-align: center;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .field--name-quantity {
    display: block;
    margin-right: 1em;
    padding-left: 1.125em;
  }
}
@media all and (max-width: 47.937em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions {
    padding: 1.125em 1em;
    background-color: rgba(245, 246, 250, 0.9);
    z-index: 4;
  }
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions {
    margin-right: 2.375em;
  }
}
@media all and (min-width: 68.75em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions {
    width: 17.5em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input {
  width: 100%;
  margin-bottom: 0;
  font-size: 1.125em;
  justify-content: center;
  cursor: pointer;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input {
    height: 2.8em;
    font-size: 1.25em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .message {
  display: flex;
  align-items: center;
  padding-top: 1em;
  clear: both;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .content__wrapper .product-info .message {
    padding-top: 2.5em;
  }
}
.product.product--view-mode--full .content__wrapper .product-info .message p {
  margin: 0;
  font-size: 0.875em;
}
.product.product--view-mode--full .content__wrapper .product-info .message p a {
  font-weight: 500;
}
.product.product--view-mode--full .meta__wrapper {
  padding-top: 1.563em;
  background-color: #fff;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper {
    padding-top: 2em;
  }
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs {
    margin-top: 0;
    margin-bottom: 1em;
    border-bottom: 0.25em solid #f5f6fa;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs ul.links {
  max-width: 80.125em;
  margin: 0 auto;
  padding: 0 1em;
  padding: 0;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs ul.links {
    display: flex;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs ul.links li {
  list-style: none outside none;
  margin: 0 0 1em;
  padding: 0 1em;
  border-bottom: 0.188em solid #f5f6fa;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs ul.links li {
    margin-bottom: 0;
    border-bottom: none;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs ul.links li a {
  position: relative;
  line-height: 1.278em;
  padding: 0.278em 0;
  font-size: 1.125em;
  font-weight: 700;
  color: #1f2326;
  letter-spacing: -0.025em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs ul.links li a {
    padding-right: 0.944em;
    padding-left: 0.944em;
    font-size: 1.625em;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs ul.links li a:after {
  position: absolute;
  right: 0;
  bottom: -0.167em;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0.188rem;
  background-color: #0bb7a5;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs ul.links li a:after {
    height: 0.25rem;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs ul.links li a:hover, .product.product--view-mode--full .meta__wrapper .tabs ul.links li a:focus {
  text-decoration: none;
  background-color: transparent;
}
.product.product--view-mode--full .meta__wrapper .tabs ul.links li a.active:after, .product.product--view-mode--full .meta__wrapper .tabs ul.links li a:hover:after {
  width: 100%;
}
.product.product--view-mode--full .meta__wrapper .tabs-content {
  max-width: 80.125em;
  margin: 0 auto;
  padding: 0 1em;
  padding-top: 0.25em;
  padding-bottom: 1.5em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs-content {
    padding-bottom: 5.625em;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs-content > div {
  display: none;
}
.product.product--view-mode--full .meta__wrapper .tabs-content > div.active {
  display: block;
}
.product.product--view-mode--full .meta__wrapper .tabs-content > div > h3 {
  line-height: 1em;
  margin: 0 0 0.435em 0;
  font-size: 1.125em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--full .meta__wrapper .tabs-content > div > h3 {
    font-size: 1.438em;
  }
}
.product.product--view-mode--full .meta__wrapper .tabs-content > div > h3:not(:first-of-type) {
  margin: 0.435em 0 0.435em 0;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .description:not(.downloads) .field--name-body p:last-child {
  margin-bottom: 0;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .description .field--name-field-documents .field__item {
  margin-bottom: 12px;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .description .field--name-field-documents .field__item a {
  padding-bottom: 8px;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .description .field--name-field-documents .field__item a span {
  display: inline-block;
  position: relative;
  top: 5px;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .description .field--name-field-documents .field__item a:hover {
  text-decoration: none;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .description .field--name-field-documents .field__item a:hover span {
  border-bottom: 1px solid;
}
.product.product--view-mode--full .meta__wrapper .tabs-content .videos .field--name-field-videos .field__item {
  text-align: center;
  margin-bottom: 12px;
}
.product.product--view-mode--full .footer__wrapper {
  padding-bottom: 3.75em;
}
.product.product--view-mode--full .footer__wrapper .similar-products-wrapper {
  max-width: 80.125em;
  margin: 0 auto;
  padding: 0 1em;
  margin-top: 2em;
}
.product.product--view-mode--full .footer__wrapper .similar-products-wrapper > h3 {
  line-height: 1.25em;
  margin: 0 0 0.667em;
  font-size: 1.5em;
  font-weight: 700;
}
.product.product--view-mode--teaser {
  position: relative;
  min-width: 18em;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--teaser {
    width: 18.75em;
  }
}
.product.product--view-mode--teaser > a {
  display: flex;
  min-height: 6.313em;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--teaser > a {
    flex-flow: column wrap;
  }
}
.product.product--view-mode--teaser > a:hover {
  text-decoration: none;
}
.product.product--view-mode--teaser > a .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.625em;
  padding: 0.5em 0;
  background-color: #F9F9FB;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--teaser > a .image-wrapper {
    width: 100%;
  }
}
.product.product--view-mode--teaser > a .image-wrapper img {
  display: block;
  max-width: 100%;
  mix-blend-mode: multiply;
}
.product.product--view-mode--teaser > a .content {
  flex-grow: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-left: 0.625em;
  padding: 0.5em 0.75em 0.5em 0;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--teaser > a .content {
    margin-left: 0;
    padding: 0.813em 1.313em;
  }
}
.product.product--view-mode--teaser > a .content .top > h3 {
  line-height: 1.143em;
  margin: 0;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2e3840;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--teaser > a .content .top > h3 {
    font-size: 1.313em;
  }
}
.product.product--view-mode--teaser > a .content .top .inline {
  display: flex;
}
.product.product--view-mode--teaser > a .content .top .inline .sku {
  line-height: 1.333em;
  font-size: 0.75em;
  color: #243e63;
}
.product.product--view-mode--teaser > a .content .top .inline .flag {
  margin-top: 0.083em;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7f00;
}
.product.product--view-mode--teaser > a .content .field--name-field-stock-info,
.product.product--view-mode--teaser > a .content .field--name-field-in-stock {
  font-size: 0.75em;
  color: #0bb7a5;
}
@media all and (min-width: 48em) {
  .product.product--view-mode--teaser > a .content .field--name-field-stock-info,
  .product.product--view-mode--teaser > a .content .field--name-field-in-stock {
    margin-top: 1.625em;
    font-size: 1em;
  }
}
.product.product--view-mode--teaser > a .content .bottom {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.product.product--view-mode--teaser > a .content .bottom .product-price .field--name-price {
  line-height: 1.313em;
  font-size: 1em;
  font-weight: 700;
  color: #2e3840;
  letter-spacing: -0.02em;
}
.product.product--view-mode--teaser > a .content .bottom .product-price .tax-label {
  display: none;
}

/* Views */
.view-brands.view-display-id-frontpage_block .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  border-top: 0.063em solid #f5f6fa;
  border-bottom: 0.063em solid #f5f6fa;
}
.view-brands.view-display-id-frontpage_block .view-content .views-row {
  margin: -0.063em 0;
}
.view-brands.view-display-id-frontpage_block .view-content .views-row .views-field-field-image {
  border: 0.063em solid #f5f6fa;
}
.view-brands.view-display-id-frontpage_block .view-content .views-row .views-field-field-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.125em;
  height: 3em;
}
.view-brands.view-display-id-frontpage_block .view-content .views-row .views-field-field-image a img {
  display: block;
  height: auto;
  max-width: 3.875em;
  max-height: 2.125em;
}

.view-magazine.view-display-id-block_frontpage {
  position: revert;
}
.view-magazine.view-display-id-block_frontpage .view-header {
  position: absolute;
  right: 0;
  bottom: 21.25em;
  z-index: 3;
}
@media all and (min-width: 48em) {
  .view-magazine.view-display-id-block_frontpage .view-header {
    position: absolute;
    top: 0.75em;
    left: 15em;
  }
}
.view-magazine.view-display-id-block_frontpage .view-header a.views-display-link-overview {
  display: block;
  font-size: 1em;
  line-height: 1.125em;
  color: #3089fd;
  font-weight: 500;
  text-decoration: none;
}
.view-magazine.view-display-id-block_frontpage .view-header a.views-display-link-overview::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.813em;
  background: transparent url("../img/icons/right-arrow-bold.svg") no-repeat 0 0;
  background-size: 0.5em 0.813em;
  margin-left: 0.375em;
  -webkit-transition: margin-left 0.2s ease-in-out;
  -moz-transition: margin-left 0.2s ease-in-out;
  -ms-transition: margin-left 0.2s ease-in-out;
  -o-transition: margin-left 0.2s ease-in-out;
  transition: margin-left 0.2s ease-in-out;
  position: relative;
  top: 0.1em;
}
.view-magazine.view-display-id-block_frontpage .view-header a.views-display-link-overview:hover {
  text-decoration: underline;
}
.view-magazine.view-display-id-block_frontpage .view-header a.views-display-link-overview:hover::after {
  margin-left: 0.99em;
}
.view-magazine.view-display-id-block_frontpage .view-content {
  margin: -1.4em 0;
  position: relative;
}
@media all and (min-width: 48em) {
  .view-magazine.view-display-id-block_frontpage .view-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: -1.063em -0.313em;
  }
}
.view-magazine.view-display-id-block_frontpage .view-content span.slick-arrow {
  cursor: pointer;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.9019607843);
  border: 0.063em solid #AEB8C8;
  width: 3.125em;
  height: 5em;
  display: flex !important;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
}
.view-magazine.view-display-id-block_frontpage .view-content span.slick-arrow i::before {
  margin: 0;
  display: block;
}
.view-magazine.view-display-id-block_frontpage .view-content span.slick-arrow.slick-disabled {
  display: none !important;
}
.view-magazine.view-display-id-block_frontpage .view-content span.slick-arrow.arrow-left {
  position: absolute;
  bottom: 7.75em;
  left: -1em;
  border-radius: 0 0.25em 0.25em 0;
  -moz-border-radius: 0 0.25em 0.25em 0;
  -webkit-border-radius: 0 0.25em 0.25em 0;
}
.view-magazine.view-display-id-block_frontpage .view-content span.slick-arrow.arrow-right {
  position: absolute;
  right: -1em;
  bottom: 7.75em;
  border-radius: 0.25em 0 0 0.25em;
  -moz-border-radius: 0.25em 0 0 0.25em;
  -webkit-border-radius: 0.25em 0 0 0.25em;
}
.view-magazine.view-display-id-block_frontpage .view-content .slick-list {
  margin: 0 -1em;
}
@media all and (min-width: 48em) {
  .view-magazine.view-display-id-block_frontpage .view-content .slick-list {
    margin: 0;
  }
}
.view-magazine.view-display-id-block_frontpage .view-content .views-row.catalogue {
  max-width: 16.75em;
  padding: 1.4em 0.438em;
  margin: 0 auto;
}
@media all and (min-width: 48em) {
  .view-magazine.view-display-id-block_frontpage .view-content .views-row.catalogue {
    max-width: none;
    width: 33.333333%;
    padding: 1.063em 0.313em;
    margin: 0;
  }
}
@media all and (min-width: 64em) {
  .view-magazine.view-display-id-block_frontpage .view-content .views-row.catalogue {
    width: 25%;
  }
}
.view-magazine.view-display-id-block_frontpage .view-content .views-row.article {
  max-width: 16.75em;
  padding: 1.4em 0.438em;
  position: relative;
}
.view-magazine.view-display-id-block_frontpage .view-content .views-row.article.slick-slide {
  opacity: 0.5;
}
.view-magazine.view-display-id-block_frontpage .view-content .views-row.article.slick-slide.slick-current {
  opacity: 1;
}
@media all and (min-width: 48em) {
  .view-magazine.view-display-id-block_frontpage .view-content .views-row.article {
    max-width: none;
    width: 33.333333%;
    padding: 1.063em 0.313em;
  }
  .view-magazine.view-display-id-block_frontpage .view-content .views-row.article:after {
    display: none;
  }
}
@media all and (min-width: 64em) {
  .view-magazine.view-display-id-block_frontpage .view-content .views-row.article {
    width: 25%;
  }
}
.view-magazine.view-display-id-overview {
  margin-bottom: 3em;
}
.view-magazine.view-display-id-overview .view-filters {
  margin: 1em 0 1.875em 0;
}
@media all and (min-width: 64em) {
  .view-magazine.view-display-id-overview .view-filters {
    margin: 2.5em 0 1.625em 0;
  }
}
.view-magazine.view-display-id-overview .view-filters .form-radios:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup {
  display: flex;
  flex-wrap: wrap;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item {
  margin-right: 0.625em;
  margin-top: 0.625em;
  float: left;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item:last-child {
  margin-right: 0;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item input {
  display: none;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item input[checked=checked] + label, .view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item input:hover + label, .view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item input:focus + label {
  color: #fff;
  cursor: pointer;
  background-color: #00CEA4;
  border-color: #0bb7a5;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item input + label {
  font-size: 0.875em;
  padding: 0.357em 0.714em;
  line-height: 1.429em;
  color: #243e63;
  background-color: #F1F2F8;
  border: 0.071em solid #AEB8C8;
  -webkit-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;
  border-radius: 0.143em;
  -moz-border-radius: 0.143em;
  -webkit-border-radius: 0.143em;
  display: block;
}
.view-magazine.view-display-id-overview .view-filters .fieldgroup .form-item input + label:before {
  display: none;
}
.view-magazine.view-display-id-overview .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: -0.625em -0.313em;
}
@media all and (min-width: 42.5em) {
  .view-magazine.view-display-id-overview .view-content {
    justify-content: flex-start;
  }
}
@media all and (min-width: 64em) {
  .view-magazine.view-display-id-overview .view-content {
    margin: -1.063em -0.313em;
  }
}

.view-product-accessories.view-display-id-embed .view-content .views-row {
  margin-right: 1.25em;
}
.view-product-accessories.view-display-id-embed_alternative .view-content .views-row {
  width: 100%;
  margin-right: 1em;
  margin-bottom: 1.25em;
}
@media all and (min-width: 360px) {
  .view-product-accessories.view-display-id-embed_alternative .view-content .views-row {
    width: 18.75em;
  }
}

.view-product-slider .view-content.flickity-enabled {
  max-width: 58.375em;
  margin: 0 auto;
  padding: 0.75em 0;
  overflow: hidden;
}
@media all and (min-width: 48em) {
  .view-product-slider .view-content.flickity-enabled {
    padding: 1.5em 0;
  }
}
.view-product-slider .view-content.flickity-enabled .flickity-viewport .flickity-slider .views-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 7.5em;
}
@media all and (min-width: 48em) {
  .view-product-slider .view-content.flickity-enabled .flickity-viewport .flickity-slider .views-row {
    width: 9.5em;
  }
}
.view-product-slider .view-content.flickity-enabled .flickity-viewport .flickity-slider .variation {
  width: 100%;
}

.view-products {
  /**
   * Recommended products
   */
  /**
   * Products category && Search results
   */
}
.view-products.view-display-id-block_1 {
  margin: 0 -1em;
  padding: 1em 1em 0;
  background-color: #f1f2f8;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-block_1 {
    margin-right: 0;
    margin-left: 0;
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}
.view-products.view-display-id-block_1 .view-header h2 {
  line-height: 1.278em;
  margin: 0 0 0.333em;
  font-size: 1.125em;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-block_1 .view-header h2 {
    font-size: 1.313em;
    font-weight: 500;
  }
}
.view-products.view-display-id-block_1 .view-content {
  padding-bottom: 1em;
  border-bottom: 0.063em solid #aeb8c8;
  /**
   * Hide message about required accessories
   */
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-block_1 .view-content {
    border-bottom: none;
  }
}
.view-products.view-display-id-block_1 .view-content .variation.variation--view-mode--cart-box .accessory-message {
  display: none;
}
.view-products.view-display-id-block_1 .view-content .show-more {
  margin: 15px auto 0 auto;
  text-align: center;
  display: block;
}
.view-products.view-display-id-block_1 .view-content .show-more span {
  position: relative;
}
.view-products.view-display-id-block_1 .view-content .show-more span:before {
  position: absolute;
  top: 0.25rem;
  left: -1.25rem;
  content: "";
  display: block;
  width: 0.5rem;
  height: 1rem;
  background: transparent url("../img/icons/right-arrow.svg") no-repeat 0 0;
  background-size: 0.45rem auto;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.view-products.view-display-id-block_1 .view-content.expanded .views-row.hidden {
  display: block;
}
.view-products.view-display-id-block_1 .view-content.expanded .show-more span:before {
  position: absolute;
  top: 0.2rem;
  left: -1.25rem;
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 .header-wrapper, .view-products.view-display-id-page_2 .header-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
    margin-left: 1.25em;
    padding: 0 1.25em;
    background-color: #f1f2f8;
  }
}
.view-products.view-display-id-page_1 .header-wrapper .view-header, .view-products.view-display-id-page_2 .header-wrapper .view-header {
  padding: 1em 0;
  text-align: center;
  color: #1f2326;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 .header-wrapper .view-header, .view-products.view-display-id-page_2 .header-wrapper .view-header {
    font-size: 1.125em;
    text-align: left;
  }
}
.view-products.view-display-id-page_1 .header-wrapper .view-filters, .view-products.view-display-id-page_2 .header-wrapper .view-filters {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0 -1em;
  padding: 1.125em 1em;
  background-color: #f1f2f8;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 .header-wrapper .view-filters, .view-products.view-display-id-page_2 .header-wrapper .view-filters {
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
  }
}
.view-products.view-display-id-page_1 .header-wrapper .view-filters .form-actions, .view-products.view-display-id-page_2 .header-wrapper .view-filters .form-actions {
  display: none;
}
.view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener {
  margin-right: 1em;
  padding-top: 0.688em;
  padding-right: 0.75em;
  padding-bottom: 0.625em;
  background-size: 1.125rem auto;
  height: 2.813rem;
  margin-bottom: 0;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener {
    display: none;
  }
}
.view-products.view-display-id-page_1 .header-wrapper .view-filters label,
.view-products.view-display-id-page_1 .header-wrapper .view-filters .form-item-price-min,
.view-products.view-display-id-page_1 .header-wrapper .view-filters .form-item-price-max, .view-products.view-display-id-page_2 .header-wrapper .view-filters label,
.view-products.view-display-id-page_2 .header-wrapper .view-filters .form-item-price-min,
.view-products.view-display-id-page_2 .header-wrapper .view-filters .form-item-price-max {
  display: none;
}
.view-products.view-display-id-page_1 .header-wrapper .view-filters .form-item, .view-products.view-display-id-page_2 .header-wrapper .view-filters .form-item {
  margin-bottom: 0;
}
.view-products.view-display-id-page_1 .view-content, .view-products.view-display-id-page_2 .view-content {
  margin-top: 1em;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 .view-content, .view-products.view-display-id-page_2 .view-content {
    padding-left: 1.25em;
  }
}
.view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper, .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper {
  display: flex;
  flex-flow: row wrap;
}
.view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper:after, .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper:after {
  display: none;
}
.view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper .views-row, .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper .views-row {
  margin-bottom: 1.25em;
  width: 100%;
}
@media all and (min-width: 22.5em) {
  .view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper .views-row, .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper .views-row {
    width: calc(50% - 0.313em);
    margin-right: 0.625em;
  }
  .view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper .views-row:nth-child(2n+0), .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper .views-row:nth-child(2n+0) {
    margin-right: 0;
  }
}
@media all and (min-width: 68.75em) {
  .view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper .views-row, .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper .views-row {
    width: calc(33.333% - 0.5em);
    margin-right: 0.75em;
  }
  .view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper .views-row:nth-child(2n+0), .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper .views-row:nth-child(2n+0) {
    margin-right: 0.75em;
  }
  .view-products.view-display-id-page_1 .view-content .views-infinite-scroll-content-wrapper .views-row:nth-child(3n+0), .view-products.view-display-id-page_2 .view-content .views-infinite-scroll-content-wrapper .views-row:nth-child(3n+0) {
    margin-right: 0;
  }
}
.view-products.view-display-id-page_1 nav.pager, .view-products.view-display-id-page_2 nav.pager {
  margin-bottom: 2em;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 nav.pager, .view-products.view-display-id-page_2 nav.pager {
    margin-left: 1.25em;
  }
}
.view-products.view-display-id-page_1 .load-more, .view-products.view-display-id-page_2 .load-more {
  margin: 1em 0;
}
@media all and (min-width: 48em) {
  .view-products.view-display-id-page_1 .header-wrapper {
    margin-top: 1em;
  }
}

.view-commerce-user-orders.view-display-id-block_1 {
  padding-bottom: 70px;
}
.view-commerce-user-orders__summary {
  display: inline-flex;
  align-items: center;
  width: 9em;
  height: 74px;
  margin-bottom: 3px;
  padding-left: 1em;
  background-color: #f1f2f8;
  font-weight: 700;
}
.view-commerce-user-orders .view-filters {
  position: absolute;
  display: inline-flex;
  align-items: center;
  width: calc(100% - 9em);
  height: 74px;
  margin-bottom: 3px;
  background-color: #f1f2f8;
}
.view-commerce-user-orders .view-filters .form-item {
  margin-bottom: 0;
}
.view-commerce-user-orders .view-filters + .view-empty {
  padding: 10px 1em 10px;
  background-color: #f1f2f8;
}
.view-commerce-user-orders .view-filters + .view-content {
  padding: 10px 0.5em 35px;
  background-color: #f1f2f8;
}
@media (min-width: 480px) {
  .view-commerce-user-orders .view-filters + .view-content {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.view-commerce-user-orders .view-filters + .view-content table {
  margin: 0;
  padding: 0;
}
.view-commerce-user-orders .view-filters + .view-content table thead .views-field-total-price__number {
  text-align: right;
}
@media (max-width: 479px) {
  .view-commerce-user-orders .view-filters + .view-content table th.views-field-order-number {
    font-size: 0;
  }
}
.view-commerce-user-orders .view-filters + .view-content table tbody tr:hover td a {
  text-decoration: none;
}
.view-commerce-user-orders .view-filters + .view-content table tbody tr:hover td.views-field-order-number a {
  text-decoration: underline;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td {
  padding: 0;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td a {
  display: flex;
  padding: 13px 0.25em 11px;
}
@media (min-width: 768px) {
  .view-commerce-user-orders .view-filters + .view-content table tbody td a {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-order-number {
  width: 10%;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-placed {
  width: 10%;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-placed a {
  color: #2e3840;
  font-weight: 500;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-total-price__number {
  width: 10%;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-total-price__number a {
  color: #243e63;
  justify-content: flex-end;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-state {
  width: 100%;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-nothing {
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-nothing a {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  color: #2e3840;
  font-weight: 500;
}
.view-commerce-user-orders .view-filters + .view-content table tbody td.views-field-nothing .order-item-image + .views-field-nothing__text {
  margin-left: 12px;
}
@media (max-width: 479px) {
  .view-commerce-user-orders .view-filters + .view-content .views-field-field-oberon-state, .view-commerce-user-orders .view-filters + .view-content .views-field-nothing {
    display: none !important;
  }
}
.view-commerce-user-orders .view-filters + .view-content .order-icon-link {
  text-align: right;
}
.view-commerce-user-orders .view-filters + .view-content .order-icon-link a {
  display: inline-flex;
}
@media (min-width: 480px) {
  .view-commerce-user-orders .view-filters + .view-content .order-icon-link {
    display: none;
  }
}
.view-commerce-user-orders__state--completed {
  color: #72c472 !important;
}

/* Paragraphs */
.paragraph--type--slides .field--name-field-image {
  background-color: #b6c1ec;
}
.paragraph--type--slides .field--name-field-image img {
  display: block;
  width: 100%;
}
.paragraph--type--slides .field--name-field-custom-text-desktop,
.paragraph--type--slides .field--name-field-custom-text-mobile {
  padding: 0.5rem 1rem;
}
.paragraph--type--slides .field--name-field-button {
  margin: auto 0 0 auto;
}
.paragraph--type--slides .field--name-field-button .btn, .paragraph--type--slides .field--name-field-button .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .paragraph--type--slides .field--name-field-button .button, .paragraph--type--slides .field--name-field-button .filters .footer ul.links li a, .filters .footer ul.links li .paragraph--type--slides .field--name-field-button a, .paragraph--type--slides .field--name-field-button .checkout-pane-login .form-submit, .checkout-pane-login .paragraph--type--slides .field--name-field-button .form-submit, .paragraph--type--slides .field--name-field-button .commerce-checkout-flow .form-submit, .commerce-checkout-flow .paragraph--type--slides .field--name-field-button .form-submit, .paragraph--type--slides .field--name-field-button .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .paragraph--type--slides .field--name-field-button .form-submit, .paragraph--type--slides .field--name-field-button #block-medihum-search form .form-item-keyword .search-suggestions .more a, #block-medihum-search form .form-item-keyword .search-suggestions .more .paragraph--type--slides .field--name-field-button a,
.paragraph--type--slides .field--name-field-button #block-kajakshop-search form .form-item-keyword .search-suggestions .more a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .paragraph--type--slides .field--name-field-button a, .paragraph--type--slides .field--name-field-button .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .paragraph--type--slides .field--name-field-button input, .paragraph--type--slides .field--name-field-button .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .paragraph--type--slides .field--name-field-button .filters-opener, .paragraph--type--slides .field--name-field-button .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .paragraph--type--slides .field--name-field-button .filters-opener {
  margin-bottom: 0;
  margin-right: 2rem;
}

/* Other */
.added-to-cart-modal .added-to-cart-modal-inner .product-wrapper {
  margin-bottom: 2.188em;
  padding: 0.313em;
  border-radius: 0.375em;
  -moz-border-radius: 0.375em;
  -webkit-border-radius: 0.375em;
  border: 0.063em solid #3089fd;
  background-color: #D1ECF0;
}
.added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner {
  position: relative;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}
@media all and (min-width: 25em) {
  .added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner {
    display: flex;
    justify-content: space-between;
  }
}
.added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner .product-prices {
  padding: 0.8125em 0.625em 0 0;
}
.added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner .product-prices .total-price {
  font-size: 1.125em;
  font-weight: 700;
  text-align: right;
}
.added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner .product-prices .unit-price,
.added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner .product-prices .quantity {
  font-size: 0.625rem;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}
@media all and (min-width: 64em) {
  .added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner .product-prices .unit-price,
  .added-to-cart-modal .added-to-cart-modal-inner .product-wrapper .product-wrapper-inner .product-prices .quantity {
    font-size: 1rem;
  }
}
.added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper {
  display: flex;
  flex-flow: column wrap;
}
@media all and (min-width: 48em) {
  .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper {
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 1.75em;
  }
}
@media all and (min-width: 48em) {
  .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .btn, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .button, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .filters .footer ul.links li a, .filters .footer ul.links li .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper a, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .checkout-pane-login .form-submit, .checkout-pane-login .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .form-submit, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .commerce-checkout-flow .form-submit, .commerce-checkout-flow .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .form-submit, .added-to-cart-modal .added-to-cart-modal-inner .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .cart.cart-form form .form-actions .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .checkout-wrapper .form-submit, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper #block-medihum-search form .form-item-keyword .search-suggestions .more a, #block-medihum-search form .form-item-keyword .search-suggestions .more .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper a,
  .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper #block-kajakshop-search form .form-item-keyword .search-suggestions .more a,
  #block-kajakshop-search form .form-item-keyword .search-suggestions .more .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper a, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper input, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .filters-opener, .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper .filters-opener {
    font-size: 1.313em;
  }
}
.added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper a.close-modal {
  margin-bottom: 0.813rem;
}
@media all and (min-width: 48em) {
  .added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper a.close-modal {
    margin-bottom: 0;
  }
}
.added-to-cart-modal .added-to-cart-modal-inner .buttons-wrapper a.order-now {
  margin-bottom: 0;
}
.added-to-cart-modal .added-to-cart-modal-inner .mandatory-accessories-wrapper,
.added-to-cart-modal .added-to-cart-modal-inner .recommended-accessories-wrapper {
  display: none;
  margin: 0 -2em;
  padding: 1.5em 2em 2em;
  border-top: 0.125em solid rgba(46, 56, 64, 0.5);
  background-color: #F1F2F8;
}
@media all and (min-width: 48em) {
  .added-to-cart-modal .added-to-cart-modal-inner .mandatory-accessories-wrapper,
  .added-to-cart-modal .added-to-cart-modal-inner .recommended-accessories-wrapper {
    display: block;
  }
}
.added-to-cart-modal .added-to-cart-modal-inner .mandatory-accessories-wrapper > h3,
.added-to-cart-modal .added-to-cart-modal-inner .recommended-accessories-wrapper > h3 {
  line-height: 1em;
  margin-top: 0;
  font-size: 1.438em;
}
.added-to-cart-modal .added-to-cart-modal-inner .mandatory-accessories-wrapper .flickity-button.next,
.added-to-cart-modal .added-to-cart-modal-inner .recommended-accessories-wrapper .flickity-button.next {
  right: -2em;
}

.cart.cart-form {
  max-width: 83.875rem;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: #f5f6fa;
  z-index: 7;
}
@media all and (max-width: 63.937em) {
  .cart.cart-form {
    position: fixed;
    top: 9.125em;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
  }
}
.cart.cart-form form {
  padding: 0 0 7.5em;
}
.cart.cart-form form .header {
  margin-top: 1.188em;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .header {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    margin-top: 1.5em;
  }
}
.cart.cart-form form .header a.back-link {
  line-height: 1.125em;
  font-size: 1em;
  font-weight: 500;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .header a.back-link {
    flex-grow: 1;
    width: 100%;
    font-size: 1.125em;
  }
}
.cart.cart-form form .header a.back-link:before {
  content: "";
  display: inline-block;
  width: 0.625em;
  height: 1.063em;
  margin-right: 0.25em;
  background: transparent url("../img/icons/left-arrow.svg") no-repeat 0 0;
  background-size: 0.438em 1.063em;
  vertical-align: sub;
}
.cart.cart-form form .header a.back-link:hover {
  text-decoration: none;
}
.cart.cart-form form .header h1 {
  line-height: 1.143em;
  margin: 0.393em 0;
  font-size: 1.75em;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .header h1 {
    margin-right: 0.75em;
    font-size: 2.375em;
  }
}
.cart.cart-form form .header .items-total-price {
  display: block;
  line-height: 1.286em;
  font-size: 0.875em;
  text-align: right;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .header .items-total-price {
    margin-bottom: 1em;
    font-size: 1.313em;
    font-weight: 500;
  }
}
.cart.cart-form form .order-items-wrapper {
  margin-top: 0.563em;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .order-items-wrapper {
    padding: 0.563em 1.5em 0.938em;
    background-color: #F1F2F8;
  }
}
@media all and (max-width: 63.937em) {
  .cart.cart-form form .order-items-wrapper table.views-table {
    display: block;
    overflow-x: unset;
  }
  .cart.cart-form form .order-items-wrapper table.views-table thead {
    display: none;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody {
    display: block;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody tr {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 0.625em;
    box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td {
    display: block;
    padding-right: 0.667em;
    padding-left: 0.667em;
    font-weight: 700;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-purchased-entity {
    flex-grow: 1;
    padding-right: 2em;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.field--name-quantity {
    width: 11rem;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-field-stock-info {
    display: none;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-total-price__number {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: calc(100% - 11rem);
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-remove-button {
    position: absolute;
    top: 0;
    right: 0;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-remove-button .form-submit {
    width: 1.063rem;
    height: 1.375rem;
    background: transparent url("../img/icons/cart-remove.svg") no-repeat 0 0;
    background-size: 1.063rem auto;
  }
}
@media all and (min-width: 64em) {
  .cart.cart-form form .order-items-wrapper table.views-table {
    border-spacing: 0 0.5em;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-purchased-entity {
    padding: 0;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-field-stock-info {
    white-space: nowrap;
  }
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-remove-button .form-submit {
    width: 1.188rem;
    height: 1.5rem;
    background: transparent url("../img/icons/cart-remove.svg") no-repeat 0 0;
    background-size: 1.188rem auto;
  }
}
.cart.cart-form form .order-items-wrapper table.views-table {
  overflow-x: unset;
}
.cart.cart-form form .order-items-wrapper table.views-table tbody tr {
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #fff;
}
.cart.cart-form form .order-items-wrapper table.views-table tbody td {
  font-size: 1em;
  border-left: none;
  background-color: transparent;
}
.cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-purchased-entity {
  width: 100%;
}
.cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-field-stock-info {
  color: #0bb7a5;
}
.cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-total-price__number {
  font-size: 1.125em;
  font-weight: 700;
  text-align: right;
}
.cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-total-price__number .unit-price {
  font-size: 0.625rem;
  font-weight: 400;
  white-space: nowrap;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-total-price__number .unit-price {
    font-size: 1rem;
  }
}
.cart.cart-form form .order-items-wrapper table.views-table tbody td.views-field-remove-button .form-submit {
  border: none;
  font-size: 0;
  cursor: pointer;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price {
  display: none;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .order-items-wrapper .field--name-total-price {
    display: block;
  }
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .order-total-line-label {
  margin-right: 0.25em;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .sk-store .order-total-line-value {
  min-width: 15rem;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .cs-store .order-total-line-value {
  min-width: 21rem;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .order-total-line-value {
  font-size: 1.25em;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .order-total-line__total {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: flex-end;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .order-total-line__total .order-total-line-label {
  line-height: 1.095em;
  margin-bottom: 0.143em;
  font-size: 1.313em;
}
.cart.cart-form form .order-items-wrapper .field--name-total-price .order-total-line__total .order-total-line-value {
  line-height: 1.053em;
  font-size: 2.375em;
}
.cart.cart-form form .form-actions:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions {
    margin-top: 1em;
  }
}
.cart.cart-form form .form-actions > .form-submit {
  display: none;
}
@media all and (min-width: 35em) {
  .cart.cart-form form .form-actions .form-submit {
    float: left;
  }
}
.cart.cart-form form .form-actions > .form-submit {
  background: transparent url("../img/icons/reload.svg") no-repeat 0 0;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
  }
}
@media all and (max-width: 63.937em) {
  .cart.cart-form form .form-actions .buttons-wrapper a.back-link {
    display: block;
    line-height: 1.125em;
    margin-top: 1em;
    font-size: 1em;
    font-weight: 500;
  }
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper a.back-link {
    display: inline-flex;
    line-height: 1.278em;
    margin: 0 1em 0 0;
    padding: 0.563em 1.111em 0.563em;
    font-size: 1.313rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #2e3840 !important;
    border: 0.125rem solid #243e63;
    letter-spacing: -0.025em;
    border-radius: 0.111em;
    -moz-border-radius: 0.111em;
    -webkit-border-radius: 0.111em;
    background-color: #fff;
    cursor: pointer;
  }
}
.cart.cart-form form .form-actions .buttons-wrapper a.back-link:before {
  content: "";
  display: inline-block;
  width: 0.625em;
  height: 1.063em;
  margin-right: 0.25em;
  background: transparent url("../img/icons/left-arrow.svg") no-repeat 0 0;
  background-size: 0.438em 1.063em;
  vertical-align: sub;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper a.back-link:before {
    display: none;
  }
}
.cart.cart-form form .form-actions .buttons-wrapper a.back-link:hover {
  text-decoration: none;
}
.cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1em 1em 0.5em;
  font-size: 13px;
  line-height: 23px;
}
@media all and (min-height: 30em) and (max-width: 63.937em) {
  .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1607843137);
    -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1607843137);
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1607843137);
    background-color: #F1F2F8;
  }
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper {
    padding: 0;
  }
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .count {
    display: none;
  }
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .price-wrapper {
    display: none;
  }
}
.cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .price-wrapper .label {
  margin-right: 0.5em;
}
.cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .price-wrapper .price {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.53px;
  color: #1f2326;
}
.cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit {
  display: block;
  width: 100%;
  margin-top: 0.25em;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
}
@media all and (min-width: 64em) {
  .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit {
    display: flex;
    flex-grow: initial;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.313rem;
  }
}

.cart-empty-page {
  margin: 2em 0;
  font-weight: 500;
  text-align: center;
}

.cookiesjsr-banner {
  z-index: 1000000;
  border-top: 1px solid var(--banner-font-color);
  width: auto;
  right: 0;
}
@media (min-width: 992px) {
  .cookiesjsr-banner {
    padding: 1em;
  }
}

.cookiesjsr-layer--overlay {
  z-index: 1000001;
}

.cookiesjsr-layer {
  z-index: 1000002;
}

.cookiesjsr-btn {
  width: calc(100% - 1.25em);
}

.cookiesjsr-banner--text {
  font-size: 0.7rem;
}

.cookiesjsr-links, .cookiesjsr-service-group--tab {
  font-weight: 600;
}

.cookiesjsr-banner--info {
  margin-bottom: 0;
}

.cookiesjsr-service-group--intro {
  font-size: 0.8rem;
  line-height: 1.4;
}

.cookiesjsr-service--always-on span {
  padding: 0.3rem 0.7rem;
}

.cookiesjsr-service--description h3 {
  font-size: 1rem;
}

#cookiesjsr {
  --banner-bg-color: #243e63;
  --banner-font-color: #fff;
  --btn-bg-color: #243e63;
  --btn-inv-font-color: #243e63;
  --btn-inv-border-color: #243e63;
  --btn-prime-font-color: #243e63;
  --btn-prime-inv-border-color: #243e63;
  --btn-prime-inv-bg-color: #243e63;
  --layer-header-font-color: #243e63;
  --layer-tab-font-color: #243e63;
  --layer-tab-active-bg-color: #f5f6fa;
  --layer-tab-active-font-color: #2e3840;
  --layer-bg-dark: #243e63;
  --layer-font-dark: #243e63;
  --layer-footer-font-color: #243e63;
  --switch-bg-on: #3089fd;
  --switch-always-on-font-color: #3089fd;
  --switch-handle-color: #243e63;
  --switch-border-color: #243e63;
}

.cookies-docs + .cookies-docs {
  margin-top: 2em;
}
.cookies-docs > h2 {
  margin-bottom: 0.75em;
}
.cookies-docs .cookies-docs-service--info {
  margin-top: 1em;
}

.commerce-checkout-flow {
  max-width: 48.875em;
  margin: 0 auto;
  padding: 0 1em;
  margin-top: 2em;
}
@media all and (min-width: 48em) {
  .commerce-checkout-flow {
    margin-top: 3.5em;
  }
}
.commerce-checkout-flow .layout-checkout-form .tabs {
  margin-bottom: 2em;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li:first-child a {
  -webkit-border-top-left-radius: 0.25em;
  -webkit-border-bottom-left-radius: 0.25em;
  -moz-border-radius-topleft: 0.25em;
  -moz-border-radius-bottomleft: 0.25em;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li:last-child a {
  -webkit-border-top-right-radius: 0.25em;
  -webkit-border-bottom-right-radius: 0.25em;
  -moz-border-radius-topright: 0.25em;
  -moz-border-radius-bottomright: 0.25em;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.111em 1.111em;
  min-height: 2.667em;
  line-height: 1.111em;
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  color: #2e3840;
  border: 0.111em solid #243e63;
  background-color: #fff;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li a:not(.active) {
  box-shadow: 0 0.167em 0.333em rgba(0, 0, 0, 0.1607843137);
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li a.active {
  color: #f5f6fa;
  border-color: #3089fd;
  background-color: #3089fd;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li a.active:after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 0.75em);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.611em 0.75em 0 0.75em;
  border-color: #3089fd transparent transparent transparent;
}
.commerce-checkout-flow .layout-checkout-form .tabs ul.links li a:hover {
  text-decoration: none;
}
.commerce-checkout-flow .layout-checkout-form .tabs-content .section {
  display: none;
}
.commerce-checkout-flow .layout-checkout-form .tabs-content .section.active {
  display: block;
}
.commerce-checkout-flow.step-login .form-actions {
  display: none;
}
.commerce-checkout-flow .form-actions {
  text-align: center;
  margin: 1em auto 3em;
}
.commerce-checkout-flow .form-actions .form-submit {
  margin: 1em auto;
}
.commerce-checkout-flow .form-actions .link--previous {
  display: block;
  font-size: 0.875em;
  max-width: 18em;
}
@media all and (min-width: 48em) {
  .commerce-checkout-flow .form-actions .link--previous {
    font-size: 1em;
    max-width: 100%;
  }
}
.commerce-checkout-flow .form-actions .link--previous a {
  text-decoration: underline;
  color: #2e3840;
}
.commerce-checkout-flow .form-actions .link--previous a:hover, .commerce-checkout-flow .form-actions .link--previous a:focus {
  text-decoration: none;
}
@media all and (min-width: 48em) {
  .commerce-checkout-flow .form-item-medihum-create-account-conditions {
    margin-left: 3.125em;
  }
}
.commerce-checkout-flow .form-submit {
  width: 100%;
  margin-top: 2em;
  margin-bottom: 3em;
  padding: 0.5em 2.125em;
  font-size: 1.125rem;
  letter-spacing: -0.036rem;
  box-shadow: 0 0.188rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  justify-content: center;
}
@media all and (min-width: 48em) {
  .commerce-checkout-flow .form-submit {
    font-size: 1.3125rem;
    width: auto;
  }
}

/**
 * Contact information
 */
.checkout-pane-contact-information .form-item:last-child {
  margin-bottom: 0;
}

/**
 * Shipping address
 */
.checkout-pane-medihum-order-shipping-address {
  /*.address-container-inline > .form-item {
    display: block;
    margin-right: 0;
  }*/
}
.checkout-pane-medihum-order-shipping-address .fieldset-wrapper > .form-wrapper > div:last-child .form-item {
  margin-bottom: 0;
}

/**
 * Billing address
 */
.checkout-pane-medihum-order-billing-address .field--name-field-ic-dph .form-item {
  margin-bottom: 0;
}

/**
 * Create account
 */
.checkout-pane-medihum-create-account {
  padding-top: 1.25em;
  /*border-top: .063em solid $color-gray-dark;*/
}
.checkout-pane-medihum-create-account .form-item-medihum-create-account-register {
  margin-bottom: 2em;
}
.checkout-pane-medihum-create-account .form-item-medihum-create-account-conditions label p {
  margin: 0;
  font-size: 1rem;
}
.checkout-pane-medihum-create-account .form-item-medihum-create-account-conditions label a {
  text-decoration: underline;
}

@media (min-width: 780px) {
  .checkout-pane-login {
    display: flex;
    justify-content: space-between;
  }
}
.checkout-pane-login .form-submit {
  width: 100%;
}

/**
 * Returning customer form
 */
fieldset.form-wrapper__returning-customer .fieldset-wrapper > * {
  max-width: none;
}
fieldset.form-wrapper__returning-customer .fieldset-wrapper .description {
  display: none;
}
fieldset.form-wrapper__returning-customer .fieldset-wrapper .form-submit {
  margin-bottom: 1em;
}
fieldset.form-wrapper__returning-customer .fieldset-wrapper > a {
  display: flex;
  justify-content: center;
}

/**
 * Shipping information
 */
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > legend,
  .checkout-pane.checkout-pane-medihum-payment-information > legend {
    margin-left: 0;
    padding: 0 1.5rem;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper {
  padding: 0;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: transparent;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper {
    margin-top: 0.25em;
    margin-right: 1.5em;
    margin-left: 1.5em;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset {
  margin: 0;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset legend,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset legend {
  display: none;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper {
  padding: 0;
  border: none;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.313em;
  padding: 0.875em 0.5em 0.563em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background: #fff;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item {
    padding: 1.188em 1.063em;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label {
  position: relative;
  width: 100%;
  min-height: 1.625em;
  padding-left: 2.25em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .label,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .label {
  display: block;
  line-height: 1.222em;
  font-weight: 700;
  font-size: 1.125em;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .label,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .label {
    width: 12.5em;
    font-size: 1em;
    font-weight: 400;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .stripe-payments-image,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .stripe-payments-image {
  height: 1.625em;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .description,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .description {
  display: block;
  font-size: 0.875em;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .description,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .description {
    width: 12.5em;
    text-align: right;
    font-size: 1.125em;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price {
  font-weight: 700;
}
@media all and (max-width: 47.937em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price {
    font-weight: 400;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price:before,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item label .price:before {
  content: "+";
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item > .description,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .selector-wrapper fieldset .fieldset-wrapper .form-radios .form-item > .description {
  display: none;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper {
  display: none;
  padding: 0.563em 0.375em;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-header,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-header {
  display: flex;
  justify-content: space-between;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-header .label p,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-header .label p {
  line-height: 1.125em;
  font-size: 1em;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-header .edit-address,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-header .edit-address {
  font-size: 0.875em;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-header .edit-address a,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-header .edit-address a {
  text-decoration: underline;
  color: #2e3840;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-header .edit-address a,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-header .edit-address a {
    color: #3089fd;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-header .edit-address a:hover,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-header .edit-address a:hover {
  text-decoration: none;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content {
  width: 100%;
  padding: 0.813em 1.125em 1.25em 0.938em;
  font-size: 1em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background: #fff;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content,
  .checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content {
    width: 17.5em;
    margin-right: auto;
    margin-left: auto;
  }
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content .field--name-address,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content .field--name-address {
  margin-bottom: 1em;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content p,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content p {
  margin: 0;
  font-size: 1rem;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content p .given-name,
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content p .family-name,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content p .given-name,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content p .family-name {
  font-size: 1.125rem;
  font-weight: 700;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content .field.field--label-inline .field__label,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content .field.field--label-inline .field__label {
  margin-right: 3px;
  font-weight: 500;
}
.checkout-pane.checkout-pane-medihum-shipping-information > .fieldset-wrapper .address-wrapper .address-content .field.field--label-inline .field__label:after,
.checkout-pane.checkout-pane-medihum-payment-information > .fieldset-wrapper .address-wrapper .address-content .field.field--label-inline .field__label:after {
  content: ":";
}
.checkout-pane.checkout-pane-medihum-shipping-information.expanded > .fieldset-wrapper,
.checkout-pane.checkout-pane-medihum-payment-information.expanded > .fieldset-wrapper {
  margin-top: 0;
  margin-right: 1.25rem;
  margin-left: 1.25rem;
  padding: 0.25em;
  border: 0.063em solid #3089fd;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #D1F0ED;
}
.checkout-pane.checkout-pane-medihum-shipping-information.expanded > .fieldset-wrapper .address-wrapper,
.checkout-pane.checkout-pane-medihum-payment-information.expanded > .fieldset-wrapper .address-wrapper {
  display: block;
}
.checkout-pane.checkout-pane-medihum-shipping-information.expanded > .fieldset-wrapper .form-type-radio,
.checkout-pane.checkout-pane-medihum-payment-information.expanded > .fieldset-wrapper .form-type-radio {
  display: none !important;
}
.checkout-pane.checkout-pane-medihum-shipping-information.expanded > .fieldset-wrapper .form-type-radio.active,
.checkout-pane.checkout-pane-medihum-payment-information.expanded > .fieldset-wrapper .form-type-radio.active {
  display: block !important;
}

.checkout-pane.checkout-pane-medihum-payment-information {
  margin-top: 3em;
}
@media all and (min-width: 48em) {
  .checkout-pane.checkout-pane-medihum-payment-information {
    margin-top: 4.5em;
  }
}

@media all and (min-width: 64em) {
  .checkout-pane-order-summary,
  .checkout-pane-order-note {
    margin-left: 1.5em;
    margin-right: 1.5em;
  }
}

.checkout-pane-order-summary .expand-summary {
  display: flex;
  line-height: 1.125em;
  margin: 0.75em 0;
  color: #3089fd;
}
.checkout-pane-order-summary .expand-summary:after {
  content: "";
  width: 1.125em;
  height: 0.813em;
  background: transparent url("../img/icons/right-arrow-dark.svg") no-repeat 50% 50%;
  background-size: 0.5em auto;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  align-self: center;
  margin: 0 0 0 0.25em;
}
@media all and (min-width: 64em) {
  .checkout-pane-order-summary .expand-summary {
    justify-content: flex-start;
    margin-left: 1.4em;
  }
  .checkout-pane-order-summary .expand-summary:after {
    order: -1;
    margin: 0 0.25em 0 0;
  }
}
.checkout-pane-order-summary .checkout-order-summary table {
  width: 100%;
  margin: 0.75em 0;
  padding: 0;
  display: none;
  overflow-x: unset;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr {
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #fff;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr td {
  font-size: 1em;
  border-left: none;
  background-color: transparent;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr td.product {
  padding: 0;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr td.price, .checkout-pane-order-summary .checkout-order-summary table tbody tr td.qty {
  vertical-align: baseline;
  white-space: nowrap;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr td.price {
  text-align: right;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr td.price .total-price {
  font-size: 1.3125em;
  font-weight: 700;
}
.checkout-pane-order-summary .checkout-order-summary table tbody tr td.price .unit-price {
  white-space: nowrap;
}
@media all and (min-width: 64em) {
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td.price .unit-price {
    font-size: 1rem;
  }
}
@media all and (max-width: 63.937em) {
  .checkout-pane-order-summary .checkout-order-summary table thead {
    display: none;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody {
    display: block;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr {
    position: relative;
    display: block;
    margin-bottom: 0.625em;
    box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td {
    display: block;
    font-size: 1em;
    padding: 0;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td.price, .checkout-pane-order-summary .checkout-order-summary table tbody tr td.qty {
    position: absolute;
    bottom: 0.5em;
    font-weight: 700;
    font-size: 1em;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td.price {
    right: 0.5em;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td.price .total-price {
    font-size: 1em;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td.price .unit-price {
    display: none;
  }
  .checkout-pane-order-summary .checkout-order-summary table tbody tr td.qty {
    left: 7em;
  }
}
@media all and (min-width: 64em) {
  .checkout-pane-order-summary .checkout-order-summary table {
    border-spacing: 0 0.5em;
  }
}
@media all and (min-width: 48em) {
  .checkout-pane-order-summary .checkout-order-summary table {
    margin: 1em 0;
  }
}
.checkout-pane-order-summary .checkout-order-summary .order-total-summary {
  margin-top: 0.75em;
  padding-top: 0.75em;
  border-top: 1px solid #aeb8c8;
}
.checkout-pane-order-summary.expanded .expand-summary:after {
  transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.checkout-pane-order-summary.expanded .checkout-order-summary table {
  display: table;
}
@media all and (max-width: 63.937em) {
  .checkout-pane-order-summary.expanded .checkout-order-summary table {
    display: block;
  }
}
@media all and (min-width: 48em) {
  .checkout-pane-order-summary.expanded .checkout-order-summary .order-total-summary {
    border-top-width: 0;
    padding-top: 0;
  }
}
.checkout-pane-order-summary .sk-store .order-total-line-value {
  width: 15rem;
}
.checkout-pane-order-summary .cs-store .order-total-line-value {
  width: 18rem;
}
.checkout-pane-order-summary .order-total-line__total .order-total-line-value {
  font-size: 2em;
}

.checkout-checkbox-narrow {
  max-width: 18em;
  text-align: center;
  margin: 3em auto 1em;
}
@media all and (min-width: 48em) {
  .checkout-checkbox-narrow {
    max-width: 22em;
  }
}

.checkout-pane-completion-message {
  margin-bottom: 4em;
}
.checkout-pane-completion-message .footer a.back-link {
  line-height: 1.125em;
  font-size: 1em;
  font-weight: 500;
}
@media all and (min-width: 64em) {
  .checkout-pane-completion-message .footer a.back-link {
    flex-grow: 1;
    width: 100%;
    font-size: 1.125em;
  }
}
.checkout-pane-completion-message .footer a.back-link:before {
  content: "";
  display: inline-block;
  width: 0.625em;
  height: 1.063em;
  margin-right: 0.25em;
  background: transparent url("../img/icons/left-arrow.svg") no-repeat 0 0;
  background-size: 0.438em 1.063em;
  vertical-align: sub;
}
.checkout-pane-completion-message .footer a.back-link:hover {
  text-decoration: none;
}

.checkout-complete__payment-instructions {
  display: flex;
  flex-wrap: wrap;
}
.checkout-complete__payment-instructions .payment-instructions-label {
  margin-right: 0.25em;
}
.checkout-complete__payment-instructions .payment-instructions-instructions {
  font-weight: bold;
  color: #3089fd;
}

/**
 * Flickity buttons
 */
.flickity-button {
  cursor: pointer;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.9019607843);
  border: 0.063em solid #aeb8c8;
  width: 3.125em;
  height: 5em;
  display: flex !important;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
}
.flickity-button .flickity-button-icon {
  display: none;
}
.flickity-button:before {
  display: block;
  margin: 0;
  content: "";
  width: 0.625em;
  height: 1.063em;
}
.flickity-button:disabled {
  display: none !important;
}
.flickity-button.previous {
  position: absolute;
  bottom: 7.75em;
  left: 0;
  border-radius: 0 0.25em 0.25em 0;
  -moz-border-radius: 0 0.25em 0.25em 0;
  -webkit-border-radius: 0 0.25em 0.25em 0;
  border-left-width: 0;
}
.flickity-button.previous:before {
  background: transparent url("../img/icons/left-arrow.svg") no-repeat 0 0;
  background-size: 0.625em 1.063em;
}
.flickity-button.next {
  position: absolute;
  right: 0;
  bottom: 7.75em;
  border-radius: 0.25em 0 0 0.25em;
  -moz-border-radius: 0.25em 0 0 0.25em;
  -webkit-border-radius: 0.25em 0 0 0.25em;
  border-right-width: 0;
}
.flickity-button.next:before {
  background: transparent url("../img/icons/right-arrow.svg") no-repeat 0 0;
  background-size: 0.625em 1.063em;
}

/**
 * Flickity dots
 */
ol.flickity-page-dots {
  position: relative;
  bottom: auto;
  margin-top: 0.375em;
}
ol.flickity-page-dots .dot {
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.313em;
  margin-left: 0.313em;
  background-color: rgba(112, 112, 112, 0.5);
}
ol.flickity-page-dots .dot.is-selected {
  background-color: #707070;
}

/**
 * Quantity field -/+
 */
.field--name-quantity .form-type-number {
  display: inline-flex;
  align-items: center;
  height: 3.5em;
  border: 0.125em solid #243e63;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #fff;
}
.field--name-quantity .form-type-number label {
  display: none;
}
.field--name-quantity .form-type-number .field-prefix,
.field--name-quantity .form-type-number .field-suffix {
  width: 2.813em;
}
.field--name-quantity .form-type-number .field-prefix span,
.field--name-quantity .form-type-number .field-suffix span {
  display: block;
  height: 3.5em;
  color: transparent;
  cursor: pointer;
}
.field--name-quantity .form-type-number .field-prefix {
  background: transparent url("../img/icons/e-delete.svg") no-repeat center center;
}
.field--name-quantity .form-type-number input.form-number {
  width: 2.867em;
  height: 2.476em;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1.313em;
  text-align: center;
  color: #2e3840;
  border: none;
  border-right: 0.048em solid #243e63;
  border-left: 0.048em solid #243e63;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.field--name-quantity .form-type-number input[type=number]::-webkit-inner-spin-button,
.field--name-quantity .form-type-number input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.field--name-quantity .form-type-number .field-suffix {
  background: transparent url("../img/icons/e-plus.svg") no-repeat center center;
}

/**
 * UI dialog
 */
.ui-dialog {
  max-width: 64em;
  box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
  position: fixed;
  top: 50% !important;
  transform: translateY(-50%);
  /* ***** Specific for Add to cart modal ***** */
}
@media all and (max-width: 47.937em) {
  .ui-dialog {
    left: 0 !important;
    width: 100% !important;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
  }
}
.ui-dialog .ui-dialog-titlebar {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-right: 1em;
  padding-left: 1em;
  border: none;
  background-color: #fff;
}
@media all and (min-width: 48em) {
  .ui-dialog .ui-dialog-titlebar {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  line-height: 1.095em;
  font-size: 1.313em;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #243e63;
}
@media all and (min-width: 48em) {
  .ui-dialog .ui-dialog-titlebar .ui-dialog-title {
    font-size: 1.625em;
  }
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  top: 1.5em;
  right: 2em;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon {
  width: 1.063em;
  height: 1.063em;
  background: transparent url("../img/icons/e-remove-gray.svg") no-repeat 0 0;
  background-size: 1.063em 1.063em;
}
.ui-dialog .ui-dialog-content {
  padding: 0 1em 1em;
}
@media all and (min-width: 48em) {
  .ui-dialog .ui-dialog-content {
    padding: 0 2em;
  }
}
.ui-dialog.cart-modal .ui-dialog-titlebar .ui-dialog-title {
  color: #72c472;
  white-space: normal;
}

.ui-widget {
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

.ui-widget-overlay {
  background-color: rgba(46, 56, 64, 0.9);
  opacity: 1;
  filter: alpha(opacity=100); /* For IE8 and earlier */
}

/**
 * Filters
 */
.filters {
  display: none;
}
.filters.mobile-expanded {
  display: block;
}
@media all and (max-width: 47.937em) {
  .filters {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f5f6fa;
    z-index: 10;
  }
}
@media all and (min-width: 48em) {
  .filters {
    display: block;
  }
}
@media all and (max-width: 47.937em) {
  .filters .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    height: 4.375em;
    padding: 0 1em;
    background-color: #fff;
    z-index: 12;
  }
}
.filters .header > h2 {
  margin-top: 0;
  font-size: 1.313em;
  font-weight: 500;
  color: #2e3840;
}
@media all and (max-width: 47.937em) {
  .filters .header > h2 {
    margin-bottom: 0;
  }
}
@media all and (min-width: 48em) {
  .filters .header > h2 {
    font-weight: 700;
  }
}
.filters .header > h2:before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.813rem;
  background: transparent url("../img/icons/setup-preferences.svg") no-repeat 0 0;
  background-size: 1.125rem 1.125rem;
}
.filters .header .close-filters {
  cursor: pointer;
}
@media all and (min-width: 48em) {
  .filters .header .close-filters {
    display: none;
  }
}
@media all and (max-width: 47.937em) {
  .filters .content {
    position: relative;
    height: calc(100vh - 5.813em);
    padding-top: 4.375em;
    padding-right: 1em;
    padding-left: 1em;
    overflow-y: auto;
  }
}
@media all and (max-width: 47.937em) {
  .filters .content:after {
    content: "";
    position: fixed;
    bottom: 5.813em;
    left: 0;
    width: 100%;
    height: 3em;
    background: transparent linear-gradient(0deg, #f5f6fa 0%, rgba(245, 246, 250, 0) 100%) 0 0 no-repeat padding-box;
    pointer-events: none;
  }
}
.filters .content .block-facet--checkbox,
.filters .content .block-facet--links,
.filters .content .block-facet--dropdown,
.filters .content .block-price-range-filter,
.filters .content .item-list__other_filters_checkbox > .facet-item {
  border-top: 0.063em solid #aeb8c8;
}
@media all and (max-width: 47.937em) {
  .filters .content .block-facet--checkbox:first-child,
  .filters .content .block-facet--links:first-child,
  .filters .content .block-facet--dropdown:first-child,
  .filters .content .block-price-range-filter:first-child {
    border-top: none;
  }
}
.filters .content .block-facet-blockfacet-product-new:not(.hidden) + .block-facet-blockfacet-product-discounted,
.filters .content .block-facet-blockfacet-product-new-2:not(.hidden) + .block-facet-blockfacet-product-discounted-2 {
  border-top: none;
}
.filters .content .block-facets.expanded h2:after,
.filters .content .block-facets .expanded h2:after, .filters .content .block-facets.block-facet-blockfacet-product-new h2:after, .filters .content .block-facets.block-facet-blockfacet-product-new-2 h2:after, .filters .content .block-facets.block-facet-blockcena-na-vyziadanie h2:after, .filters .content .block-facets.block-facet-blockcena-na-vyziadanie-1 h2:after, .filters .content .block-facets.block-facet-blockfacet-product-discounted h2:after, .filters .content .block-facets.block-facet-blockproduct-states h2:after, .filters .content .block-facets.block-facet-blockfacet-product-discounted-2 h2:after {
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.filters .content .block-facets.expanded .price-range-filter-inner,
.filters .content .block-facets.expanded .facets-widget-checkbox,
.filters .content .block-facets .expanded .price-range-filter-inner,
.filters .content .block-facets .expanded .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockfacet-product-new .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockfacet-product-new .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockfacet-product-new-2 .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockfacet-product-new-2 .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockcena-na-vyziadanie .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockcena-na-vyziadanie .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockcena-na-vyziadanie-1 .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockcena-na-vyziadanie-1 .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockfacet-product-discounted .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockfacet-product-discounted .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockproduct-states .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockproduct-states .facets-widget-checkbox, .filters .content .block-facets.block-facet-blockfacet-product-discounted-2 .price-range-filter-inner,
.filters .content .block-facets.block-facet-blockfacet-product-discounted-2 .facets-widget-checkbox {
  margin: 1em 0;
  display: block;
}
.filters .content .block-facets h2 {
  position: relative;
  font-size: 1.313em;
  margin: 0.76em 0;
  color: #2e3840;
  cursor: pointer;
}
@media all and (min-width: 48em) {
  .filters .content .block-facets h2 {
    font-weight: 500;
  }
}
.filters .content .block-facets h2:after {
  position: absolute;
  top: 0;
  right: 0.75rem;
  content: "";
  display: block;
  width: 0.625rem;
  height: 1.125rem;
  background: transparent url("../img/icons/right-arrow.svg") no-repeat 0 0;
  background-size: 0.625rem auto;
  transform: rotate(-270deg);
  -ms-transform: rotate(-270deg);
  -webkit-transform: rotate(-270deg);
}
.filters .content .price-range-filter-inner,
.filters .content .facets-widget-checkbox {
  display: none;
}
.filters .content .facets-widget-checkbox ul {
  margin: 0;
  padding: 0;
}
.filters .content .facets-widget-checkbox ul li {
  list-style: none outside none;
  margin: 1em 0;
  padding: 0;
}
.filters .content .facets-widget-checkbox ul li:last-child {
  margin-bottom: 0;
}
.filters .footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5.813em;
  padding: 1em;
  background-color: #fff;
  z-index: 12;
}
@media all and (min-width: 48em) {
  .filters .footer {
    display: none;
  }
}
.filters .footer ul.links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}
.filters .footer ul.links li {
  list-style: none outside none;
  width: calc(50% - 0.25em);
  margin: 0;
  padding: 0;
}
.filters .footer ul.links li a {
  margin-bottom: 0;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
/**
 * UI slider
 */
.ui-slider.ui-slider-horizontal {
  max-width: 270px;
  height: 0.313rem;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border: none;
  background-color: #aeb8c8;
}
.ui-slider.ui-slider-horizontal .ui-slider-range {
  background-color: #243e63;
}
.ui-slider.ui-slider-horizontal .ui-slider-handle {
  top: -0.625rem;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 0 0.188rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 0.188rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0 0.188rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  background-color: #3089fd;
}

/**
 * Price range filter
 */
.price-range-filter-inner input {
  display: inline-block;
  width: 6.25em;
  margin: 1.375em 0 0;
  padding: 0.625em 0.688em 0.563em;
  font-family: "DM Sans", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 1em;
  color: #243e63;
  border: 0.063em solid #243e63;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.price-range-filter-inner .separator {
  display: inline-block;
  vertical-align: middle;
  width: 3.125em;
  height: 0.063em;
  margin: 0 0.375em 0 0.125em;
  background-color: #aeb8c8;
}
.price-range-filter-inner input[type=number]::-webkit-inner-spin-button,
.price-range-filter-inner input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.checkout-pane {
  margin-bottom: 1em;
}
@media all and (min-width: 48em) {
  .checkout-pane {
    margin-bottom: 2.5em;
  }
}

/**
 * Fieldset (checkout pane)
 */
fieldset.checkout-pane {
  width: 100%;
  margin: 0 0 1.5em;
  padding: 0;
  border: none;
}
fieldset.checkout-pane legend {
  line-height: 1.111em;
  margin: 0 0 0.444em 0;
  padding: 0;
  font-size: 1.5em;
  font-weight: 700;
  color: #1f2326;
  letter-spacing: -0.025em;
}
@media all and (min-width: 48em) {
  fieldset.checkout-pane legend {
    margin-bottom: 0.316em;
    margin-left: 1.316em;
    font-size: 2.375em;
  }
}
fieldset.checkout-pane .fieldset-wrapper {
  padding: 1em;
  border: 0.063em solid #aeb8c8;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  background-color: #f1f2f8;
}
@media all and (min-width: 48em) {
  fieldset.checkout-pane .fieldset-wrapper {
    padding: 1.625em 3.125em;
  }
}
fieldset.checkout-pane .expand-options {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.125em;
  margin-top: 0.875em;
  color: #3089fd;
}
@media all and (min-width: 48em) {
  fieldset.checkout-pane .expand-options {
    justify-content: flex-start;
    margin-left: 3.125em;
  }
}
fieldset.checkout-pane .expand-options:before {
  content: "";
  margin-right: 0.5em;
  width: 0.5em;
  height: 0.813em;
  background: transparent url("../img/icons/right-arrow-dark.svg") no-repeat 0 0;
  background-size: 0.5em auto;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@media all and (min-width: 48em) {
  fieldset.checkout-pane .expand-options:before {
    margin-right: 0.5em;
  }
}

/**
 * Shipping profile
 */
#edit-shipping-information-shipping-profile {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 0.5em;
  padding-top: 2em;
}
#edit-shipping-information-shipping-profile > div .given-name,
#edit-shipping-information-shipping-profile > div .family-name {
  font-size: 1.125em;
  font-weight: 700;
}
#edit-shipping-information-shipping-profile .form-submit {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.875em;
  text-decoration: underline;
  border: none;
  background: transparent;
  cursor: pointer;
}
#edit-shipping-information-shipping-profile .form-submit:hover {
  text-decoration: none;
}

ul.tabs.primary {
  margin: 0.75em 0;
}

.colors-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-top: -0.5rem;
  margin-bottom: 0.05rem;
}
.colors-wrapper > * {
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

body:not(.show-variation-colors) .colors-wrapper-variation {
  display: none;
}

.show-variation-colors .colors-wrapper-product {
  display: none;
}

.field--type-color-field-type {
  display: flex;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  overflow: hidden;
}
.field--type-color-field-type .field__item {
  width: 50%;
}
.field--type-color-field-type .color_field__swatch {
  display: block;
}

.address > span {
  margin-right: 0.25em;
}

.lightgallery-item {
  position: relative;
  cursor: pointer;
}
.lightgallery-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  height: 20px;
  width: 20px;
  background-image: url("../img/icons/magnifier-dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-readmore-wrapper {
  display: flex;
  flex-direction: column;
  height: 50px;
  min-height: 50px;
  margin-bottom: 1em;
  position: relative;
  overflow: hidden;
}
.custom-readmore-wrapper.initialized {
  overflow: initial;
}

.custom-readmore-content {
  position: relative;
}
.custom-readmore-content:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3em;
  background: linear-gradient(transparent 0%, #f5f6fa 100%);
}
.custom-readmore-content.open {
  margin-bottom: 1em;
}
.custom-readmore-content.open:before {
  background: none;
}

.custom-readmore-toggle {
  position: absolute;
  top: 100%;
}
.custom-readmore-toggle i {
  margin-right: 0.5em;
}

.layout-container > .header {
  z-index: 7;
}
.search-overlay .layout-container > .header {
  z-index: 8;
}
@media all and (max-width: 68.687em) {
  .layout-container > .header {
    padding-top: 5.625em;
    -webkit-transition: padding-top 0.3s ease;
    -moz-transition: padding-top 0.3s ease;
    -ms-transition: padding-top 0.3s ease;
    -o-transition: padding-top 0.3s ease;
    transition: padding-top 0.3s ease;
  }
  .path-frontpage .layout-container > .header {
    padding-top: 14.563em;
  }
  .path-frontpage.mobile-frontpage-header-hide .layout-container > .header {
    padding-top: 5.625em;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .header {
    position: relative;
    height: 11.875em;
    background-color: #243e63;
  }
  .layout-container > .header:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0.25em;
    background: transparent linear-gradient(90deg, #306BFD 0%, #00CD9D 100%) 0% 0% no-repeat padding-box;
  }
}
.layout-container > .header:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 0;
  background: #2e3840;
  z-index: 8;
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.navigation-expand .layout-container > .header:after {
  width: 100%;
  opacity: 0.8;
  filter: alpha(opacity=80); /* For IE8 and earlier */
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner {
    max-width: 83.875rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    padding-top: 1.063em;
  }
}
@media all and (max-width: 68.687em) {
  .layout-container > .header .header-inner .header-top {
    position: fixed;
    top: 1.75em;
    right: 0;
    left: 0;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: center;
    height: 3.875em;
    padding: 0 1em 0.25em;
    box-shadow: 0 0.188em 0.375em rgba(0, 0, 0, 0.1607843137);
    background-color: #243e63;
    z-index: 10;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    -moz-transition: height 0.3s ease;
    -ms-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .header-top {
    margin-right: 1.75em;
  }
}
@media all and (min-width: 75em) {
  .layout-container > .header .header-inner .header-top {
    width: 20em;
  }
}
@media all and (max-width: 68.687em) {
  .path-frontpage .layout-container > .header .header-inner .header-top {
    height: 12.813em;
  }
}
@media all and (max-width: 68.687em) {
  .path-frontpage.navigation-expand .layout-container > .header .header-inner .header-top, .path-frontpage.mobile-frontpage-header-hide .layout-container > .header .header-inner .header-top {
    height: 3.875em;
  }
}
@media all and (max-width: 68.687em) {
  .path-frontpage.mobile-search-open .layout-container > .header .header-inner .header-top {
    height: 12.813em !important;
  }
}
@media all and (max-width: 68.687em) {
  .mobile-search-open .layout-container > .header .header-inner .header-top {
    height: 8.813em;
  }
}
.layout-container > .header .header-inner .header-top:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0.25em;
  background: transparent linear-gradient(90deg, #306BFD 0%, #00CD9D 100%) 0% 0% no-repeat padding-box;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .header-top:after {
    display: none;
  }
}
.layout-container > .header .header-inner .header-top .open-menu-btn {
  width: 1.563em;
  cursor: pointer;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .header-top .open-menu-btn {
    display: none;
  }
}
.layout-container > .header .header-inner .header-top .branding {
  margin-left: 1em;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .header-top .branding {
    margin-bottom: 1.313em;
    margin-left: 0;
  }
}
.layout-container > .header .header-inner .header-top .mobile-header-icons {
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 1;
  justify-content: flex-end;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .header-top .mobile-header-icons {
    display: none;
  }
}
.layout-container > .header .header-inner .header-top .mobile-header-icons > div,
.layout-container > .header .header-inner .header-top .mobile-header-icons a {
  cursor: pointer;
}
.path-frontpage .layout-container > .header .header-inner .header-top .mobile-header-icons > div.icon-magnifier,
.path-frontpage .layout-container > .header .header-inner .header-top .mobile-header-icons a.icon-magnifier {
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.path-frontpage.mobile-search-open .layout-container > .header .header-inner .header-top .mobile-header-icons > div.icon-magnifier, .path-frontpage.mobile-frontpage-header-hide .layout-container > .header .header-inner .header-top .mobile-header-icons > div.icon-magnifier,
.path-frontpage.mobile-search-open .layout-container > .header .header-inner .header-top .mobile-header-icons a.icon-magnifier,
.path-frontpage.mobile-frontpage-header-hide .layout-container > .header .header-inner .header-top .mobile-header-icons a.icon-magnifier {
  opacity: 1;
  filter: alpha(opacity=100); /* For IE8 and earlier */
}
.layout-container > .header .header-inner .header-top .mobile-header-icons > div.icon-shopping-cart,
.layout-container > .header .header-inner .header-top .mobile-header-icons a.icon-shopping-cart {
  position: relative;
}
.layout-container > .header .header-inner .header-top .mobile-header-icons > div.icon-shopping-cart .counter,
.layout-container > .header .header-inner .header-top .mobile-header-icons a.icon-shopping-cart .counter {
  position: absolute;
  top: -0.667em;
  right: -0.667em;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 0.75em;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #0bb7a5;
}
.layout-container > .header .header-inner .header-top .mobile-header-icons > div.icon-shopping-cart .amount,
.layout-container > .header .header-inner .header-top .mobile-header-icons a.icon-shopping-cart .amount {
  display: none;
}
.layout-container > .header .header-inner .header-top .mobile-header-icons > div:before,
.layout-container > .header .header-inner .header-top .mobile-header-icons a:before {
  margin-right: 1.5em;
}
.layout-container > .header .header-inner .header-top .mobile-header-icons > div:last-child::before,
.layout-container > .header .header-inner .header-top .mobile-header-icons a:last-child::before {
  margin-right: 0;
}
.layout-container > .header .header-inner .header-top .mobile-header-icons__user {
  position: relative;
}
.layout-container > .header .header-inner .header-top .mobile-header-icons__user:hover .mobile-user-links {
  display: block;
}
.layout-container > .header .header-inner .header-top .mobile-user-links {
  display: none;
  position: fixed;
  top: 75px;
  right: 0;
  z-index: 1;
  width: 150px;
  background-color: #fff;
  box-shadow: 0 0 5px #777;
}
.layout-container > .header .header-inner .header-top .mobile-user-links:before {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}
.layout-container > .header .header-inner .header-top .mobile-user-links a {
  display: block;
  padding: 1em;
  color: #2e3840;
  border-bottom: 1px solid #aeb8c8;
}
.layout-container > .header .header-inner .header-top .mobile-user-links a:last-child {
  border-bottom: none;
}
@media all and (max-width: 68.687em) {
  body:not(.path-frontpage) .layout-container > .header .header-inner .header-top .catalog-wrapper {
    display: none;
  }
}
.layout-container > .header .header-inner .header-top .catalog-wrapper a {
  width: 100%;
  max-width: 20rem;
}
@media all and (max-width: 68.687em) {
  .layout-container > .header .header-inner .header-top .catalog-wrapper a {
    max-width: 25.875rem;
    margin: 0 auto;
  }
}
@media all and (max-width: 68.687em) {
  .layout-container > .header .header-inner .header-top .catalog-wrapper {
    width: 100%;
    margin-top: 0.563em;
  }
}
@media all and (max-width: 68.687em) {
  .layout-container > .header .header-inner .header-top .search-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0.563em 0 0;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .header-top .search-wrapper {
    position: absolute;
    right: 27.688em;
    bottom: 1.438em;
    left: 20.5em;
  }
}
@media all and (min-width: 75em) {
  .layout-container > .header .header-inner .header-top .search-wrapper {
    left: 22.813em;
  }
}
@media all and (max-width: 68.687em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper {
    position: fixed;
    top: 5.625em;
    bottom: 0;
    left: -100%;
    width: calc(100vw - 3.125em);
    padding-top: 0.25em;
    box-shadow: 0.188em 0.375em 0.375em rgba(0, 0, 0, 0.1607843137);
    background-color: #fff;
    z-index: 10;
    overflow-y: auto;
    -webkit-transition: left 0.3s ease;
    -moz-transition: left 0.3s ease;
    -ms-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper {
    flex-grow: 1;
    margin-top: 2.125em;
  }
}
.navigation-expand .layout-container > .header .header-inner .mobile-menu-wrapper {
  left: 0;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .mobile-menu-wrapper-inner {
    display: none;
  }
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .close-menu-btn {
  display: none;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-content: center;
  }
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact {
  display: flex;
  align-items: center;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact:after {
    content: "";
    width: 0.063em;
    height: 1.5em;
    margin-left: 1.25em;
    margin-right: 1.25em;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media all and (max-width: 68.687em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    justify-content: center;
    height: 2em;
    font-size: 0.875em;
    font-weight: 400;
    text-align: center;
    color: #f5f6fa;
    background-color: #0bb7a5;
    z-index: 10;
  }
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact,
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact a {
  color: #f5f6fa;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact .item {
  display: block;
  line-height: 1.25em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact .item:first-child {
  font-size: 1.125em;
  font-weight: 700;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact .item:last-child {
  font-size: 1em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact .separator:after {
  content: "";
  display: inline-block;
  width: 0.375em;
  height: 0.375em;
  margin: 0 0.5em;
  font-weight: 700;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #fff;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .contact .separator:after {
    display: block;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .navigation-wrapper .menu-wrapper .region-navigation {
    display: flex;
    flex-flow: row nowrap;
    flex-grow: 1;
    justify-content: space-between;
  }
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-content: flex-end;
    justify-content: flex-end;
    padding-top: 1.75em;
  }
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper,
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a {
  display: none;
}
@media all and (min-width: 68.75em) {
  .layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper,
  .layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a {
    display: block;
    height: 3.5em;
    margin-left: 0.625em;
    padding: 0.5em 0.75em;
    border: 0.063em solid rgba(174, 184, 200, 0.2509803922);
    border-radius: 0.25em;
    -moz-border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
  }
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper .right .label,
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right .label {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.5);
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper {
  display: flex;
  align-items: center;
  width: 14.313em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper .right > * {
  margin-left: 1em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper .right > *:first-child {
  margin-left: 0;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper a:hover {
  text-decoration: none;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper a:hover .layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper__account {
  color: #fff;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .user-menu-wrapper__account {
  font-weight: 700;
  color: #fff;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper.empty .right .label {
  font-size: 1em;
  margin-top: 9px;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a {
  width: 10.063em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a:hover {
  text-decoration: none;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .left {
  float: left;
  position: relative;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .left > div {
  margin-top: 0.5em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .left .counter {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-content: center;
  justify-content: center;
  min-width: 1.75em;
  height: 1.75em;
  padding: 0 0.2em;
  line-height: 1.75em;
  font-size: 0.75em;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #0bb7a5;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right {
  margin-left: 2.45em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right .amount {
  font-weight: 700;
  color: #fff;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right .amount[data-length="12"] {
  font-size: 0.9em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right .amount[data-length="13"] {
  font-size: 0.85em;
}
.layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right .amount[data-length="14"], .layout-container > .header .header-inner .mobile-menu-wrapper .subnavigation-wrapper .cart-wrapper a .right .amount[data-length="15"] {
  font-size: 0.8em;
}

/**
 * Global
 */
.caption.caption-drupal-media {
  margin: 0 0 1.5em;
}

/**
 * Image
 */
.media--type-image.media--view-mode-default {
  margin-bottom: 1.5em;
}
.media--type-image.media--view-mode-default.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.media--type-image.media--view-mode-default.align-left {
  margin-right: 1em;
}
.media--type-image.media--view-mode-default.align-right {
  margin-left: 1em;
}
.media--type-image.media--view-mode-default + figcaption {
  margin-top: -0.75em;
}

.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner {
  background: transparent;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul {
  margin: 0;
  padding: 0 1em 0 0;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li {
  margin: 0;
  padding: 0;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul {
  padding-left: 1em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul.menu--depth-2 li {
  margin-left: 2em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul.menu--depth-2 li.header, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul.menu--depth-2 li.no-link {
  margin-left: -1em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li {
  border-bottom: 0.063em solid #aeb8c8;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.header {
  align-items: center;
  margin-left: -1em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.header a {
  padding: 0;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.header .title {
  line-height: 1em;
  padding-right: 0;
  padding-left: 0;
  font-size: 0.777em;
  font-weight: 700;
  color: #2e3840;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link {
  margin-right: -1em;
  margin-left: -1em;
  padding: 0.938em 1em 0.125em;
  background-color: #f5f6fa;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label span {
  display: block;
  line-height: 1.278em;
  margin-bottom: 0.444em;
  font-size: 1.125em;
  font-weight: 700;
  color: #1f2326;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button {
  margin-left: 2em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li .thumbnail {
  display: none;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul {
  margin: 0;
  padding: 0 1em 0 0;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li {
  margin: 0;
  padding: 0;
  border-top: 0.063em solid #aeb8c8;
  border-bottom: 0.063em solid #aeb8c8;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li:first-child {
  display: block;
  padding: 0.923em 0 1.077em 1.429em;
  font-size: 0.875em;
  font-weight: 700;
  color: #2e3840;
  border: none;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li:last-child {
  border-bottom: 0.063em solid #aeb8c8;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li.menu-item {
  margin-left: 3.125em;
  border-top: none;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li.menu-item > a {
  font-weight: 400;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li a {
  padding: 0.611em 0 0.556em;
  font-size: 1.125em;
  font-weight: 500;
  text-decoration: none;
  color: #2e3840;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li a:hover {
  background: transparent;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li a span.icon {
  margin-right: 0.438em;
  vertical-align: middle;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li a span.icon img {
  max-width: 1.25em;
  max-height: 1.25em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li a .label {
  vertical-align: middle;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li > a.next {
  padding-left: 1.111em;
}
.layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner > ul > li > a.next:before {
  content: "";
  margin-right: 0.611em;
  width: 1.056em;
  height: 1.056em;
  background: transparent url("../img/icons/grid-interface.svg") no-repeat 0 0;
  background-size: 1.056em 1.056em;
}

.slinky-menu {
  overflow: hidden;
  transform: translateZ(0);
}
.slinky-menu > ul {
  left: 0;
  position: relative;
  transform: translateZ(0);
}
.slinky-menu ul,
.slinky-menu li {
  list-style: none;
  margin: 0;
}
.slinky-menu ul {
  width: 100%;
}
.slinky-menu a {
  align-items: center;
  display: flex;
}
.slinky-menu a span {
  flex: 1;
  line-height: 1.4;
}
.slinky-menu li ul {
  display: none;
  left: 100%;
  position: absolute;
  top: 0;
}
.slinky-menu .header {
  display: flex;
}
.slinky-menu .header .title {
  flex: 1;
  line-height: 1.4;
  margin: 0;
  order: 1;
}

.slinky-theme-default {
  background: #f6f7f8;
}
.slinky-theme-default .title {
  color: #333;
  padding: 1em;
}
.slinky-theme-default li {
  line-height: 1;
}
.slinky-theme-default a:not(.back) {
  color: #333;
  padding: 1em;
}
.slinky-theme-default a:not(.back):hover {
  background: rgba(90, 200, 250, 0.25);
}
.slinky-theme-default a:not(.back):active {
  background: rgba(90, 200, 250, 0.5);
}
.slinky-theme-default .next::after,
.slinky-theme-default .back::before {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMC4xMjEiIGhlaWdodD0iMTcuNDE0IiB2aWV3Qm94PSIwIDAgMTAuMTIxIDE3LjQxNCI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6bm9uZTtzdHJva2U6IzI0M2U2MztzdHJva2Utd2lkdGg6MnB4O308L3N0eWxlPjwvZGVmcz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjcwNyAxNi43MDcpIHJvdGF0ZSgtOTApIj48cGF0aCBjbGFzcz0iYSIgZD0iTTAsMCw4LDhsOC04Ii8+PC9nPjwvc3ZnPg==) center no-repeat;
  background-size: 0.5em auto;
  content: "";
  height: 1em;
  transition: 200ms;
  width: 1em;
}
.slinky-theme-default .next::after {
  margin-left: 1em;
}
.slinky-theme-default .back::before {
  padding: 1em;
  transform: scaleX(-1);
}
.slinky-theme-default .next:hover::after,
.slinky-theme-default .back:hover::before {
  opacity: 0.75;
}
.slinky-theme-default .next:active::after,
.slinky-theme-default .back:active::before {
  opacity: 1;
}

.variation {
  /**
   View mode search box
   */
  /**
   * View mode accessories
   */
  /**
    * View mode cart box and Recommended box
    */
  /**
    * View mode Recommended box
    */
  /**
   * View mode cart
   */
  /**
   * View mode teaser
   */
  /**
       * View mode new products
       */
  /**
       * View mode top products
       */
}
.variation.variation--view-mode--search-box {
  position: relative;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}
.variation.variation--view-mode--search-box a {
  display: flex;
  min-height: 6.313em;
  text-decoration: none;
}
.variation.variation--view-mode--search-box a:hover {
  text-decoration: none;
}
.variation.variation--view-mode--search-box a .image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 6.625em;
  padding: 0.5em 0;
  -webkit-border-top-left-radius: 0.25em;
  -webkit-border-bottom-left-radius: 0.25em;
  -moz-border-radius-topleft: 0.25em;
  -moz-border-radius-bottomleft: 0.25em;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
  background-color: #f9f9fb;
}
.variation.variation--view-mode--search-box a .image img {
  display: block;
  mix-blend-mode: multiply;
}
.variation.variation--view-mode--search-box a .content {
  flex-grow: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-left: 0.625em;
  padding: 0.5em 0.75em 0.5em 0;
}
.variation.variation--view-mode--search-box a .content .top > h3 {
  line-height: 1.143em;
  margin: 0;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2e3840;
}
.variation.variation--view-mode--search-box a .content .top > h3 mark {
  background-color: rgba(11, 183, 165, 0.2);
}
.variation.variation--view-mode--search-box a .content .top .field--name-sku {
  line-height: 1.333em;
  font-size: 0.75em;
  color: #243e63;
}
.variation.variation--view-mode--search-box a .content .top .field--name-field-discount {
  position: absolute;
  top: 0.714em;
  left: 0;
  line-height: 1.286em;
  padding: 0.214em 0.429em 0.071em 0.357em;
  font-size: 0.875em;
  font-weight: 700;
  color: #bc2213;
  letter-spacing: -0.02em;
  background-color: #ffd918;
}
.variation.variation--view-mode--search-box a .content .top .labels .singular-label {
  line-height: 1.333em;
  margin-top: 0.083em;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7f00;
}
.variation.variation--view-mode--search-box a .content .bottom {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.variation.variation--view-mode--search-box a .content .bottom .field--name-price {
  line-height: 1.313em;
  font-size: 1em;
  font-weight: 700;
  color: #2e3840;
  letter-spacing: -0.02em;
}
.variation.variation--view-mode--accessory {
  width: 100%;
  height: 100%;
  padding: 0 0 0 0.5em;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  border: 0.063em solid #e2e2e2;
  background-color: #f9f9fb;
}
@media all and (min-width: 22.5em) {
  .variation.variation--view-mode--accessory {
    width: 20.375em;
  }
}
.variation.variation--view-mode--accessory a {
  display: flex;
  min-height: 10em;
  text-decoration: none;
}
.variation.variation--view-mode--accessory a:hover {
  text-decoration: none;
}
.variation.variation--view-mode--accessory a .image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 6.625em;
  width: 6.625em;
  padding: 0.5em 0;
  background-color: #f9f9fb;
}
.variation.variation--view-mode--accessory a .image img {
  display: block;
  max-width: 100%;
  mix-blend-mode: multiply;
}
.variation.variation--view-mode--accessory a .content {
  flex-grow: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-left: 0.625em;
  padding: 0.5em 0.75em 0.5em 0;
}
.variation.variation--view-mode--accessory a .content .top > h3 {
  line-height: 1.143em;
  margin: 0;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2e3840;
}
.variation.variation--view-mode--accessory a .content .top > h3 mark {
  background-color: rgba(11, 183, 165, 0.2);
}
.variation.variation--view-mode--accessory a .content .top .inline {
  display: flex;
  align-items: center;
}
.variation.variation--view-mode--accessory a .content .top .inline .field--name-sku {
  line-height: 1.333em;
  margin-right: 0.417em;
  font-size: 0.75em;
  color: #243e63;
}
.variation.variation--view-mode--accessory a .content .top .inline .labels {
  margin-left: 0.5em;
}
.variation.variation--view-mode--accessory a .content .top .inline .singular-label {
  line-height: 1.333em;
  margin-top: 0.083em;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7f00;
}
.variation.variation--view-mode--accessory a .content .top .field--name-field-stock-info,
.variation.variation--view-mode--accessory a .content .top .field--name-field-in-stock {
  line-height: 1.143em;
  margin-top: 0.167em;
  font-size: 0.75em;
  color: #0bb7a5;
}
.variation.variation--view-mode--accessory a .content .bottom {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0.75em;
}
.variation.variation--view-mode--accessory a .content .bottom .product-price {
  display: flex;
  align-items: flex-end;
  flex-flow: row wrap;
}
.variation.variation--view-mode--accessory a .content .bottom .product-price .field--name-list-price {
  flex: 0 0 100%;
  line-height: 1.667em;
  margin-right: 0.417em;
  font-size: 0.75em;
  text-decoration: line-through;
  color: #aeb8c8;
}
.variation.variation--view-mode--accessory a .content .bottom .product-price .field--name-price {
  flex: 0 0 100%;
  line-height: 1em;
  font-size: 1.125em;
  font-weight: 700;
  color: #2e3840;
  letter-spacing: -0.02em;
}
.variation.variation--view-mode--accessory a .content .bottom .product-price .tax-label {
  line-height: 1em;
  font-size: 0.625em;
  color: #243e63;
}
.variation.variation--view-mode--cart-box .inner-wrapper a, .variation.variation--view-mode--recommended-box .inner-wrapper a {
  display: flex;
  min-height: 6.313em;
  text-decoration: none;
}
.variation.variation--view-mode--cart-box .inner-wrapper a:hover, .variation.variation--view-mode--recommended-box .inner-wrapper a:hover {
  text-decoration: none;
}
.variation.variation--view-mode--cart-box .inner-wrapper a .image, .variation.variation--view-mode--recommended-box .inner-wrapper a .image {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 6.625em;
  padding: 0.5em 0;
  -webkit-border-top-left-radius: 0.25em;
  -webkit-border-bottom-left-radius: 0.25em;
  -moz-border-radius-topleft: 0.25em;
  -moz-border-radius-bottomleft: 0.25em;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
  background-color: #f9f9fb;
}
.variation.variation--view-mode--cart-box .inner-wrapper a .image img, .variation.variation--view-mode--recommended-box .inner-wrapper a .image img {
  display: block;
  mix-blend-mode: multiply;
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content, .variation.variation--view-mode--recommended-box .inner-wrapper a .content {
  flex-grow: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-left: 0.625em;
  padding: 0.5em 0.75em 0.5em 0;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content, .variation.variation--view-mode--recommended-box .inner-wrapper a .content {
    flex-flow: row wrap;
    padding-right: 1.438em;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .inline .labels, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .inline .labels {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5em;
  flex-wrap: wrap;
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .inline .labels .singular-label:not(:empty)::before, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .inline .labels .singular-label:not(:empty)::before {
  content: "|";
  margin: 0 0.5em;
  color: #2e3840;
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .top > h3, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .top > h3 {
  line-height: 1.143em;
  margin: 0 0 0.143em;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2e3840;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .top > h3, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .top > h3 {
    line-height: 1.095em;
    margin-top: 0.333em;
    font-size: 1.313em;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom {
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-field-discount, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-field-discount {
  line-height: 1.286em;
  padding: 0.214em 0.429em 0.071em 0.357em;
  font-size: 0.875em;
  font-weight: 700;
  color: #bc2213;
  letter-spacing: -0.02em;
  background-color: #ffd918;
}
@media all and (max-width: 47.937em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-field-discount, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-field-discount {
    position: absolute;
    top: 0.714em;
    left: 0;
  }
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-field-discount, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-field-discount {
    margin-top: 0.167em;
    margin-right: 0.667em;
    padding-bottom: 0.214em;
    font-size: 1.125em;
    font-weight: 500;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-list-price, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-list-price {
  line-height: 1.667em;
  margin-right: 0.417em;
  font-size: 0.75em;
  text-decoration: line-through;
  color: #aeb8c8;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-list-price, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-list-price {
    display: none;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-price, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-price {
  line-height: 1.313em;
  font-size: 1em;
  font-weight: 700;
  color: #2e3840;
  letter-spacing: -0.02em;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .field--name-price, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .field--name-price {
    line-height: 1.095em;
    margin-top: 0.333em;
    font-size: 1.313em;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .tax-label, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .tax-label {
  display: none;
  width: 100%;
  margin: 0.25em 0;
  line-height: 1em;
  font-size: 0.875em;
  text-align: right;
  color: #2e3840;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .tax-label, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .tax-label {
    display: block;
  }
}
.variation.variation--view-mode--cart-box .inner-wrapper a .content .bottom .additional-info, .variation.variation--view-mode--recommended-box .inner-wrapper a .content .bottom .additional-info {
  font-size: 0.8125em;
  color: #2e3840;
}
.variation.variation--view-mode--recommended-box {
  padding: 0.313em;
  border-radius: 0.375em;
  -moz-border-radius: 0.375em;
  -webkit-border-radius: 0.375em;
}
.cart-modal .variation.variation--view-mode--recommended-box {
  border: 0.063em solid #3089fd;
  background-color: #d1ecf0;
}
.variation.variation--view-mode--recommended-box .inner-wrapper {
  position: relative;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}
.variation.variation--view-mode--cart, .variation.variation--view-mode--summary {
  display: flex;
}
.variation.variation--view-mode--cart .image, .variation.variation--view-mode--summary .image {
  flex: 0 0 6.625em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.625em;
  padding: 0.5em 0;
  -webkit-border-top-left-radius: 0.25em;
  -webkit-border-bottom-left-radius: 0.25em;
  -moz-border-radius-topleft: 0.25em;
  -moz-border-radius-bottomleft: 0.25em;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
  background-color: #f9f9fb;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--cart .image, .variation.variation--view-mode--summary .image {
    width: 9em;
  }
}
.variation.variation--view-mode--cart .image img, .variation.variation--view-mode--summary .image img {
  display: block;
  mix-blend-mode: multiply;
}
.variation.variation--view-mode--cart .content, .variation.variation--view-mode--summary .content {
  flex-grow: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-left: 0.625em;
  padding: 0;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--cart .content, .variation.variation--view-mode--summary .content {
    flex-flow: row nowrap;
    padding-right: 1.438em;
  }
}
.variation.variation--view-mode--cart .content .top > h3, .variation.variation--view-mode--summary .content .top > h3 {
  line-height: 1.143em;
  margin: 0 0 0.143em;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--cart .content .top > h3, .variation.variation--view-mode--summary .content .top > h3 {
    line-height: 1.095em;
    margin-top: 0.333em;
    font-size: 1.313em;
  }
}
.variation.variation--view-mode--cart .content .top > h3 a, .variation.variation--view-mode--summary .content .top > h3 a {
  color: #2e3840;
}
.variation.variation--view-mode--cart .content .top .meta, .variation.variation--view-mode--summary .content .top .meta {
  display: flex;
  align-items: flex-end;
}
.variation.variation--view-mode--cart .content .top .meta .field--name-sku, .variation.variation--view-mode--summary .content .top .meta .field--name-sku {
  line-height: 1.333em;
  margin-right: 0.417em;
  font-size: 0.75em;
  color: #aeb8c8;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--cart .content .top .meta .field--name-sku, .variation.variation--view-mode--summary .content .top .meta .field--name-sku {
    line-height: 1.25em;
    font-size: 1em;
  }
}
.variation.variation--view-mode--cart .content .top .meta .field--name-sku:not(:last-child):after, .variation.variation--view-mode--summary .content .top .meta .field--name-sku:not(:last-child):after {
  content: "|";
  margin-left: 0.5em;
}
.variation.variation--view-mode--cart .content .top .meta .field--name-producer, .variation.variation--view-mode--summary .content .top .meta .field--name-producer {
  line-height: 1.333em;
  margin-top: 0.083em;
  font-size: 0.75em;
  text-transform: uppercase;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--cart .content .top .meta .field--name-producer, .variation.variation--view-mode--summary .content .top .meta .field--name-producer {
    line-height: 1.25em;
    font-size: 1em;
  }
}
.variation.variation--view-mode--cart .content .top .field--name-field-stock-info,
.variation.variation--view-mode--cart .content .top .field--name-field-in-stock, .variation.variation--view-mode--summary .content .top .field--name-field-stock-info,
.variation.variation--view-mode--summary .content .top .field--name-field-in-stock {
  line-height: 1.143em;
  margin-top: 0.167em;
  font-size: 0.75em;
  color: #0bb7a5;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--cart .content .top .field--name-field-stock-info,
  .variation.variation--view-mode--cart .content .top .field--name-field-in-stock, .variation.variation--view-mode--summary .content .top .field--name-field-stock-info,
  .variation.variation--view-mode--summary .content .top .field--name-field-in-stock {
    display: none;
  }
}
.variation.variation--view-mode--cart .accessory-message, .variation.variation--view-mode--summary .accessory-message {
  margin: 1em 0;
}
.variation.variation--view-mode--teaser {
  position: relative;
  height: 100%;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.variation.variation--view-mode--teaser a:hover {
  text-decoration: none;
}
.variation.variation--view-mode--teaser .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5em 0;
  -webkit-border-top-left-radius: 0.25em;
  -webkit-border-top-right-radius: 0.25em;
  -moz-border-radius-topleft: 0.25em;
  -moz-border-radius-topright: 0.25em;
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
  background-color: #f9f9fb;
}
.variation.variation--view-mode--teaser .image img {
  display: block;
  max-width: 100%;
  mix-blend-mode: multiply;
}
.variation.variation--view-mode--teaser .image .field--name-field-discount {
  position: absolute;
  top: 0.714em;
  left: 0;
  line-height: 1.286em;
  padding: 0.214em 0.429em 0.071em 0.357em;
  font-size: 0.875em;
  font-weight: 700;
  color: #bc2213;
  letter-spacing: -0.02em;
  background-color: #ffd918;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .image .field--name-field-discount {
    margin-top: 0.167em;
    margin-right: 0.667em;
    padding-bottom: 0.214em;
    font-size: 1.125em;
    font-weight: 500;
  }
}
.variation.variation--view-mode--teaser .content {
  display: flex;
  flex-flow: row wrap;
  flex-grow: 1;
  justify-content: space-between;
  min-height: 11em;
  padding: 0.5em;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content {
    padding: 0.5em 1em 1em;
    min-height: 16em;
  }
}
.variation.variation--view-mode--teaser .content .top > h3 {
  line-height: 1.143em;
  margin: 0 0 0.143em;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .top > h3 {
    line-height: 1.095em;
    margin-top: 0.333em;
    margin-bottom: 0.333em;
    font-size: 1.313em;
  }
}
.variation.variation--view-mode--teaser .content .top > h3 a {
  color: #2e3840;
}
.variation.variation--view-mode--teaser .content .top .field--name-body {
  position: relative;
  line-height: 1.25em;
  min-height: 3.75em;
  font-size: 0.75em;
  color: #243e63;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .top .field--name-body {
    line-height: 1.214em;
    min-height: 3.643em;
    font-size: 0.875em;
  }
}
.variation.variation--view-mode--teaser .content .bottom {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-end;
  width: 100%;
}
.variation.variation--view-mode--teaser .content .bottom > * {
  width: 100%;
}
.variation.variation--view-mode--teaser .content .bottom .field--name-field-stock-info,
.variation.variation--view-mode--teaser .content .bottom .field--name-field-in-stock {
  line-height: 1.143em;
  margin-top: 0.167em;
  font-size: 0.75em;
  color: #0bb7a5;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .field--name-field-stock-info,
  .variation.variation--view-mode--teaser .content .bottom .field--name-field-in-stock {
    line-height: 1.25em;
    font-size: 1em;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price {
  display: flex;
  align-content: center;
  flex-flow: row wrap;
  margin-bottom: 0.375em;
  min-height: 3em;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price {
    margin-bottom: 0.688em;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price .field--name-field-discount {
  line-height: 1.667em;
  margin-right: 0.5em;
  font-size: 0.75em;
  color: #ff7f00;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .field--name-field-discount {
    line-height: 1.286em;
    font-size: 0.875em;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price .product-price-top {
  display: flex;
  width: 100%;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .product-price-top {
    margin-bottom: 0.125em;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price .product-price-top .field--name-list-price {
  line-height: 1.667em;
  margin-right: 0.417em;
  font-size: 0.75em;
  text-decoration: line-through;
  color: #aeb8c8;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .product-price-top .field--name-list-price {
    line-height: 1.286em;
    font-size: 0.875em;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom {
  width: 100%;
}
@media all and (min-width: 60em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom .field--name-price {
  line-height: 1em;
  font-size: 1.125em;
  font-weight: 700;
  color: #2e3840;
  letter-spacing: -0.02em;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom .field--name-price {
    font-size: 1.3em;
  }
}
@media all and (min-width: 60em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom .field--name-price {
    line-height: 1em;
    margin-right: 0.308em;
    font-size: 1.5em;
  }
}
.variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom .tax-label {
  line-height: 1em;
  font-size: 0.625em;
  color: #243e63;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .content .bottom .product-price .product-price-bottom .tax-label {
    font-size: 0.875em;
  }
}
.variation.variation--view-mode--teaser .content .bottom form {
  display: flex;
  justify-content: space-between;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity {
  position: relative;
  height: 2.9375em;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number {
  width: 5.3125em;
  height: 2.9375em;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .field-prefix,
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .field-suffix {
  position: absolute;
  right: 0;
  width: 2.3125em;
  background-size: 0.6875em auto;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .field-prefix span,
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .field-suffix span {
  height: 1.4375em;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .field-prefix {
  bottom: 0;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .form-number {
  height: 2.6875em;
  font-size: 1em;
  border-left: 0;
}
.variation.variation--view-mode--teaser .content .bottom form .field--name-quantity .form-type-number .field-suffix {
  top: 0;
  border-bottom: 0.0625em #243e63 solid;
}
.variation.variation--view-mode--teaser .content .bottom .form-submit {
  margin-bottom: 0;
  padding-right: 1em;
  padding-left: 1em;
}
.variation.variation--view-mode--teaser .content .additional-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1.1538461538em;
  font-size: 0.8125em;
  color: #2e3840;
}
.variation.variation--view-mode--teaser .content .additional-info .min-price {
  padding: 0.25em 0.625em;
  color: #bc2213;
}
.variation.variation--view-mode--teaser .content .additional-info .min-price.sale {
  background-color: #ffd918;
}
.variation.variation--view-mode--teaser .inline, .variation.variation--view-mode--cart-box .inline, .variation.variation--view-mode--recommended-box .inline {
  display: flex;
  align-items: flex-end;
  align-items: center;
}
.variation.variation--view-mode--teaser .inline .field, .variation.variation--view-mode--cart-box .inline .field, .variation.variation--view-mode--recommended-box .inline .field {
  line-height: 1.333em;
  font-size: 0.75em;
  margin-right: 0.417em;
  margin-top: 0.083em;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--teaser .inline, .variation.variation--view-mode--cart-box .inline, .variation.variation--view-mode--recommended-box .inline {
    margin-bottom: 0.313em;
  }
  .variation.variation--view-mode--teaser .inline .field, .variation.variation--view-mode--cart-box .inline .field, .variation.variation--view-mode--recommended-box .inline .field {
    line-height: 1.25em;
    font-size: 1em;
    margin-right: 0;
  }
  .variation.variation--view-mode--teaser .inline .field:not(:empty):before, .variation.variation--view-mode--cart-box .inline .field:not(:empty):before, .variation.variation--view-mode--recommended-box .inline .field:not(:empty):before {
    content: "|";
    margin-left: 0.5em;
    margin-right: 0.5em;
    color: #243e63;
    font-weight: normal;
  }
  .variation.variation--view-mode--teaser .inline .field:first-child:before, .variation.variation--view-mode--cart-box .inline .field:first-child:before, .variation.variation--view-mode--recommended-box .inline .field:first-child:before {
    content: none;
  }
  .variation.variation--view-mode--teaser .inline .field:first-child:empty + .field:before, .variation.variation--view-mode--cart-box .inline .field:first-child:empty + .field:before, .variation.variation--view-mode--recommended-box .inline .field:first-child:empty + .field:before {
    content: none;
  }
  .variation.variation--view-mode--teaser .inline .field:last-child:after, .variation.variation--view-mode--cart-box .inline .field:last-child:after, .variation.variation--view-mode--recommended-box .inline .field:last-child:after {
    display: none;
  }
}
.variation.variation--view-mode--teaser .inline .field--name-sku, .variation.variation--view-mode--cart-box .inline .field--name-sku, .variation.variation--view-mode--recommended-box .inline .field--name-sku {
  color: #243e63;
}
.variation.variation--view-mode--teaser .inline .labels .singular-label, .variation.variation--view-mode--cart-box .inline .labels .singular-label, .variation.variation--view-mode--recommended-box .inline .labels .singular-label {
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7f00;
}
.variation.variation--view-mode--teaser .inline .field--name-field-stock-info,
.variation.variation--view-mode--teaser .inline .field--name-field-in-stock, .variation.variation--view-mode--cart-box .inline .field--name-field-stock-info,
.variation.variation--view-mode--cart-box .inline .field--name-field-in-stock, .variation.variation--view-mode--recommended-box .inline .field--name-field-stock-info,
.variation.variation--view-mode--recommended-box .inline .field--name-field-in-stock {
  margin-top: 0.167em;
  color: #0bb7a5;
}
.variation.variation--view-mode--summary {
  white-space: normal;
}
.variation.variation--view-mode--summary .image {
  flex: 0 0 6.25em;
  width: 6.25em;
  height: 6.25em;
  padding: 0;
}
.variation.variation--view-mode--summary .content {
  padding: 0.5em;
  padding-left: 0;
}
@media all and (min-width: 64em) {
  .variation.variation--view-mode--summary .content .top > h3 {
    font-size: 1.125em;
  }
}
.variation.variation--view-mode--mini {
  position: relative;
}
.variation.variation--view-mode--mini .stickers-wrapper {
  position: absolute;
  top: 0.5rem;
  left: 0;
  pointer-events: none;
}
.variation.variation--view-mode--mini .stickers-wrapper .singular-label:not(:empty) {
  font-weight: 500;
  padding: 0.25em;
  font-size: 1rem;
  background-color: #ffd918;
  margin-bottom: 0.25em;
}
.variation.variation--view-mode--mini .field--name-field-gallery {
  margin-bottom: 0.5rem;
}
.variation.variation--view-mode--mini .field--name-field-gallery img {
  width: 100%;
}
.variation.variation--view-mode--mini .field--name-title {
  text-align: center;
}
.variation.variation--view-mode--mini .field--name-title a {
  text-decoration: none;
  font-size: 0.875em;
  line-height: 1.143em;
  letter-spacing: 0.02em;
  color: #1f2326;
  font-weight: 500;
}
.variation.variation--view-mode--mini .field--name-title a:hover {
  text-decoration: underline;
}
@media all and (min-width: 48em) {
  .variation.variation--view-mode--mini .field--name-title a {
    font-size: 1em;
    line-height: 1.222em;
  }
}
.variation.variation--view-mode--new-products img {
  width: auto;
}
.variation.variation--view-mode--top-products img {
  width: auto;
}
.variation .accessory-message {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0.5em 0;
  font-weight: 400;
  clear: both;
}
.variation .accessory-message p {
  margin: 0;
  font-size: 0.75em;
}
@media all and (min-width: 48em) {
  .variation .accessory-message p {
    font-size: 0.875em;
  }
}
.variation .accessory-message p a {
  font-weight: 500;
}

.variation-detail-link-wrapper {
  width: 100%;
  margin-top: auto;
  padding-top: 1em;
}
.variation-detail-link-wrapper a {
  margin-bottom: 0;
}

ul.pager__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
}
ul.pager__items li {
  margin: 0.25em;
  padding: 0;
  list-style: none outside none;
}
@media all and (min-width: 48em) {
  ul.pager__items li {
    margin-top: 0;
    margin-bottom: 0;
  }
}
ul.pager__items li.pager__item a {
  display: block;
  font-size: 0.875em;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  border: 0.0625em solid #aeb8c8;
  background-color: #fff;
  color: #243e63;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
}
ul.pager__items li.pager__item a:hover, ul.pager__items li.pager__item a:focus {
  text-decoration: none;
  border-color: #243e63;
}
ul.pager__items li.pager__item.is-active a {
  border-color: #0bb7a5;
  background-color: #F1F2F8;
}
ul.pager__items li.pager__break {
  flex-basis: 100%;
  height: 0;
}
@media all and (min-width: 48em) {
  ul.pager__items li.pager__break {
    flex-basis: auto;
  }
}
ul.pager__items li.pager__item--previous, ul.pager__items li.pager__item--next {
  flex-grow: 2;
  flex-basis: 0;
}
ul.pager__items li.pager__item--previous > a, ul.pager__items li.pager__item--previous > span, ul.pager__items li.pager__item--next > a, ul.pager__items li.pager__item--next > span {
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1607843137);
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  border: 0.125em solid #243e63;
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
  padding: 0.75em 1em;
  display: block;
  width: auto;
  height: auto;
}
@media all and (min-width: 48em) {
  ul.pager__items li.pager__item--previous > a, ul.pager__items li.pager__item--previous > span, ul.pager__items li.pager__item--next > a, ul.pager__items li.pager__item--next > span {
    display: inline-block;
    font-size: 1.125em;
    height: 3em;
    line-height: 3em;
    padding-top: 0;
    padding-bottom: 0;
  }
}
ul.pager__items li.pager__item--previous > a, ul.pager__items li.pager__item--next > a {
  color: #fff;
  background-color: #243e63;
}
ul.pager__items li.pager__item--previous > a:hover, ul.pager__items li.pager__item--previous > a:focus, ul.pager__items li.pager__item--next > a:hover, ul.pager__items li.pager__item--next > a:focus {
  text-decoration: none;
}
ul.pager__items li.pager__item--previous > span, ul.pager__items li.pager__item--next > span {
  color: #243e63;
  background-color: #fff;
}
@media all and (min-width: 48em) {
  ul.pager__items li.pager__item--previous > span, ul.pager__items li.pager__item--next > span {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
  }
}
ul.pager__items li.pager__item--previous > span span, ul.pager__items li.pager__item--next > span span {
  display: none;
}
ul.pager__items li.pager__item--previous {
  order: 100;
}
ul.pager__items li.pager__item--previous > a, ul.pager__items li.pager__item--previous > span {
  text-align: left;
}
ul.pager__items li.pager__item--previous > a:before, ul.pager__items li.pager__item--previous > span:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.75em;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  background: transparent url("../img/icons/right-arrow-dark.svg") no-repeat 50% 50%;
  background-size: 0.5em auto;
  margin-right: 0.5em;
}
ul.pager__items li.pager__item--previous > a:before {
  background: transparent url("../img/icons/right-arrow-white.svg") no-repeat 50% 50%;
}
@media all and (min-width: 48em) {
  ul.pager__items li.pager__item--previous {
    order: 0;
  }
}
ul.pager__items li.pager__item--next {
  order: 101;
}
ul.pager__items li.pager__item--next > a, ul.pager__items li.pager__item--next > span {
  text-align: right;
}
ul.pager__items li.pager__item--next > a:after, ul.pager__items li.pager__item--next > span:after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.75em;
  background: transparent url("../img/icons/right-arrow-dark.svg") no-repeat 50% 50%;
  background-size: 0.5em auto;
  margin-left: 0.5em;
}
ul.pager__items li.pager__item--next > a:after {
  background: transparent url("../img/icons/right-arrow-white.svg") no-repeat 50% 50%;
}
@media all and (min-width: 48em) {
  ul.pager__items li.pager__item--next {
    order: 0;
  }
}

.load-more {
  display: flex;
  justify-content: center;
  align-items: center;
}
.load-more ul.pager {
  margin: 0;
  padding: 0;
}
.load-more ul.pager li.pager__item {
  margin: 0;
  padding: 0;
}
.load-more ul.pager li.pager__item a {
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.1607843137);
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  border: 0.125em solid #243e63;
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
  padding: 0.75em 1em;
  display: block;
  color: #fff;
  background-color: #243e63;
}
.load-more ul.pager li.pager__item a:hover, .load-more ul.pager li.pager__item a:focus {
  text-decoration: none;
}
.load-more ul.pager li.pager__item a:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.75em;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  background: transparent url("../img/icons/right-arrow-white.svg") no-repeat 50% 50%;
  background-size: 0.5em auto;
  margin-right: 0.5em;
}
@media all and (min-width: 48em) {
  .load-more ul.pager li.pager__item a {
    display: inline-block;
    font-size: 1.125em;
    height: 3em;
    line-height: 3em;
    padding-top: 0;
    padding-bottom: 0;
  }
}

nav.pager {
  background-color: #F1F2F8;
  margin-top: 1em;
  padding: 0.75em;
}

.order-teaser {
  margin-bottom: 20px;
}
.order-teaser__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-teaser__title {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: 700;
}
@media (min-width: 480px) {
  .order-teaser__title {
    font-size: 1.5em;
  }
}
.order-teaser__items {
  margin-top: 18px;
}
.order-teaser__btn .btn, .order-teaser__btn #block-medihum-search form .form-item-keyword .search-suggestions .more a, #block-medihum-search form .form-item-keyword .search-suggestions .more .order-teaser__btn a,
.order-teaser__btn #block-kajakshop-search form .form-item-keyword .search-suggestions .more a,
#block-kajakshop-search form .form-item-keyword .search-suggestions .more .order-teaser__btn a, .order-teaser__btn .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions input, .product.product--view-mode--full .content__wrapper .product-info .content .cart-actions .cart-actions-inner .field--name-variations form .form-actions .order-teaser__btn input, .order-teaser__btn .view-products.view-display-id-page_1 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_1 .header-wrapper .view-filters .order-teaser__btn .filters-opener, .order-teaser__btn .view-products.view-display-id-page_2 .header-wrapper .view-filters .filters-opener, .view-products.view-display-id-page_2 .header-wrapper .view-filters .order-teaser__btn .filters-opener, .order-teaser__btn .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .form-submit, .cart.cart-form form .form-actions .buttons-wrapper .checkout-wrapper .order-teaser__btn .form-submit, .order-teaser__btn .commerce-checkout-flow .form-submit, .commerce-checkout-flow .order-teaser__btn .form-submit, .order-teaser__btn .checkout-pane-login .form-submit, .checkout-pane-login .order-teaser__btn .form-submit, .order-teaser__btn .filters .footer ul.links li a, .filters .footer ul.links li .order-teaser__btn a, .order-teaser__btn .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .button, .layout-container > .header .mobile-menu-wrapper .mobile-menu-wrapper-inner ul li ul li.no-link .label .order-teaser__btn .button {
  justify-content: center;
}

.field--name-order-number.field--label-inline {
  display: flex;
  align-items: center;
}
.field--name-order-number.field--label-inline .field__label {
  margin-right: 15px;
}
.field--name-order-number.field--label-inline .field__item p {
  margin-bottom: 0;
}

.order-user {
  margin-bottom: 25px;
  padding-top: 35px;
  padding-bottom: 50px;
}
@media (max-width: 479px) {
  .order-user {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.order-user__order {
  padding: 10px;
  background: #f1f2f8;
}
@media (min-width: 768px) {
  .order-user__order {
    padding: 25px 33px;
  }
}
.order-user .order-total-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.5em;
}
.order-user .order-total-line:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .order-user .order-total-line {
    font-size: 1.3125em;
  }
}
.order-user .order-total-line-label {
  display: inline-flex;
  margin-right: 1em;
}
.order-user .order-total-line-value {
  display: inline-flex;
  width: unset;
}
.order-user .order-total-line__total {
  font-weight: 700;
}
.order-user .order-total-line__total .order-total-line-label {
  font-size: 1.3125em;
  line-height: 1.4375em;
}
.order-user .order-total-line__total .order-total-line-value {
  font-size: 1.5em;
  line-height: 40px;
}
@media (min-width: 768px) {
  .order-user .order-total-line__total .order-total-line-value {
    font-size: 2em;
  }
}
.order-user .order-total-line__subtotal {
  font-weight: 400;
}
.order-user .order-total-line__subtotal .order-total-line-label,
.order-user .order-total-line__subtotal .order-total-line-value {
  color: #243e63;
}
.order-user__order-header {
  display: flex;
  justify-content: flex-end;
  padding: 0 1em 8px;
}
.order-user__item-buy-again {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.order-user__item-buy-again .form-submit {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .order-user__item-buy-again {
    display: none;
  }
}
.order-user__order-header-quantity, .order-user__order-header-price {
  width: 12%;
  color: #243e63;
  font-size: 0.875em;
  line-height: 1.125em;
}
.order-user__order-header-price {
  text-align: center;
}
.order-user__item {
  display: flex;
  margin-bottom: 4px;
  min-height: 111px;
  padding: 0;
  justify-content: space-between;
}
.order-user__item > * {
  padding: 22px 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .order-user__item > * {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.order-user__item-image {
  position: relative;
  width: 144px;
  max-width: 20%;
  background: #f9f9fb;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
@media (max-width: 479px) {
  .order-user__item-image {
    display: none;
  }
}
.order-user__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.order-user__item-title {
  width: 500px;
  max-width: 40%;
  margin-right: auto;
}
@media (min-width: 480px) {
  .order-user__item-title {
    max-width: 30%;
  }
}
.order-user__item-title h4 {
  margin-top: 0;
  margin-bottom: 0;
}
.order-user__item-sku {
  color: #aeb8c8;
  font-size: 1em;
  line-height: 1.1875em;
}
.order-user__item-count {
  display: flex;
  align-items: center;
  font-size: 1em;
  line-height: 1.8125em;
  white-space: nowrap;
}
.order-user__item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}
.order-user__item-total-price {
  font-weight: 700;
  line-height: 1.8125em;
  width: 6em;
}
@media (min-width: 768px) {
  .order-user__item-total-price {
    font-size: 1.3125em;
  }
}
.order-user__item-unit-price {
  font-size: 1em;
  line-height: 1.8125em;
}
.order-user .order-total-summary {
  margin-top: 15px;
}
.order-user__btn-back {
  margin-bottom: 55px;
  width: 325px;
}

.customer-info {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-left: -1rem;
  margin-right: -1rem;
}
.customer-info__label {
  margin-bottom: 7px;
  color: #a3a077;
  font-size: 0.875em;
  line-height: 1.125em;
  text-transform: uppercase;
}
.customer-info .customer-info-item {
  padding: 8px 1rem;
  width: 100%;
}
.customer-info .customer-info-item:after {
  content: "";
  display: block;
  padding-top: 1rem;
  border-bottom: 0.063em solid #aeb8c8;
  order: 100;
}
.customer-info .customer-info-item:last-child:after {
  display: none;
}
@media (min-width: 600px) {
  .customer-info .customer-info-item {
    width: 50%;
  }
  .customer-info .customer-info-item:after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .customer-info .customer-info-item {
    width: 25%;
  }
}
.customer-info .customer-info__note {
  font-style: italic;
}
@media (min-width: 1200px) {
  .customer-info__payment {
    border-right: 0.063em solid #aeb8c8;
  }
}
.customer-info__shipping {
  display: flex;
  flex-direction: column;
}
.customer-info .field--name-shipping-method,
.customer-info .profile--type--billing .organization {
  margin-bottom: 4px;
  color: #1f2326;
  font-weight: 700;
  font-size: 1.2125em;
  line-height: 1.4375em;
}
.customer-info .profile--type--shipping,
.customer-info .profile--type--billing {
  order: 12;
  padding-right: 95px;
  font-size: 1.125em;
  line-height: 1.4375em;
}
.customer-info .profile--type--shipping .address,
.customer-info .profile--type--billing .address {
  margin-bottom: 0;
}
.customer-info .profile--type--shipping .address__label,
.customer-info .profile--type--billing .address__label {
  color: #243e63;
  font-size: 0.875em;
  line-height: 1.4375em;
}
.customer-info .profile--type--billing .given-name,
.customer-info .profile--type--billing .family-name,
.customer-info .profile--type--billing .family-name + br {
  display: none;
}
.customer-info .profile--type--billing .field--label-inline {
  display: flex;
}
.customer-info .profile--type--billing .field--label-inline .field__label {
  padding-right: 6px;
}

.order-item-image {
  margin-right: 5px;
  padding: 6px 0;
}
.order-item-image:last-child {
  margin-right: 0;
}
.order-item-image__wrapper-large .field--name-order-items {
  display: flex;
  flex-wrap: wrap;
}
.order-item-image__wrapper-large .order-item-image {
  margin-right: 9px;
  margin-bottom: 9px;
  padding: 0;
}
.order-item-image__wrapper-large .order-item-image__image {
  width: 63px;
  height: 45px;
}
.order-item-image__wrapper-large .order-item-image__quantity {
  display: flex;
}
.order-item-image__image {
  position: relative;
  width: 50px;
  height: 36px;
  background: #f9f9fb;
}
.order-item-image__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.order-item-image__quantity {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
  width: 21px;
  height: 21px;
  background: #243e63;
  border-radius: 10px;
  color: #f5f6fa;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 0.875em;
}

.order__detail-row {
  display: flex;
  justify-content: space-between;
}
.order__detail {
  min-width: 50%;
  max-width: calc(100% - 215px - 50px);
}
.order__detail--order-user {
  min-width: 100%;
  max-width: unset;
  margin-bottom: 12px;
}
.order__detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.order__detail-wrapper:after {
  display: block;
  content: "";
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 0.063em solid #aeb8c8;
}
.order__info {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .order__info:not(:last-child) {
    border-right: 0.063em solid #aeb8c8;
  }
}
.order__info-title {
  color: #243e63;
  font-size: 1em;
  line-height: 1.25em;
}
@media (max-width: 767px) {
  .order__info-placed, .order__info-total {
    width: 50%;
  }
}
.order__info-placed {
  border-right: 0.063em solid #aeb8c8;
}
.order__info-value {
  font-weight: 700;
  line-height: 1.75em;
}
@media (min-width: 480px) {
  .order__info-value {
    font-size: 1.3125em;
  }
}
.order__info-state {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.5em;
}
.order__info-state--Completed {
  color: #0bb7a5;
}
.order__info-buy-again {
  text-align: right;
}
@media (max-width: 767px) {
  .order__info-buy-again {
    width: 100%;
    order: -1;
  }
}
@media (min-width: 768px) {
  .order__info-buy-again {
    margin-left: auto;
  }
}

.user__local-tasks .block-local-tasks-block {
  position: relative;
  background: #fff;
}
.user__local-tasks .block-local-tasks-block:before {
  content: "";
  position: absolute;
  top: 0;
  width: 300%;
  height: 100%;
  background: #fff;
  border-bottom: 0.063em solid #aeb8c8;
}
.user__local-tasks .block-local-tasks-block:before {
  left: -100%;
}
.user__local-tasks .block-local-tasks-block .tabs.primary {
  margin: 0 !important;
  padding-top: 16px;
  overflow: hidden;
}
.user__local-tasks .block-local-tasks-block .tabs.primary > li {
  margin-right: 32px;
}
.user__local-tasks .block-local-tasks-block .tabs.primary a {
  position: relative;
  padding: 6px 7px;
  color: #2e3840;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.5em;
}
.user__local-tasks .block-local-tasks-block .tabs.primary a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #0bb7a5;
  transform: translateY(2px);
  transition: transform 0.3s;
}
.user__local-tasks .block-local-tasks-block .tabs.primary a:hover {
  background: transparent;
  color: #0bb7a5;
  text-decoration: none;
  transition: all 0.3s;
}
.user__local-tasks .block-local-tasks-block .tabs.primary a:hover:after {
  z-index: 1;
  transform: translateY(0);
}
.user__local-tasks .block-local-tasks-block .tabs.primary a:focus {
  background: transparent;
  outline: none;
}
.user__local-tasks .block-local-tasks-block .tabs.primary a.is-active {
  background: transparent;
  color: #0bb7a5;
}
.user__local-tasks .block-local-tasks-block .tabs.primary a.is-active:after {
  z-index: 1;
  transform: translateY(0);
}

.address-book__container {
  margin-bottom: 30px;
  padding: 1rem;
  border: 0.063em solid #aeb8c8;
  border-radius: 0.25em;
  background-color: #f1f2f8;
}
.address-book__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.address-book__title {
  margin: 0 1em 1rem 0;
}
.address-book__add-link {
  margin: 0;
}
.address-book__add-link:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 13px;
  background-image: url("../img/icons/e-add.svg");
  background-repeat: no-repeat;
}
.address-book__profiles {
  flex-wrap: wrap;
  justify-content: unset;
  margin-left: -1rem;
  margin-right: -1rem;
}
.address-book__profile {
  flex: none;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  width: 345px;
  max-width: calc(100% - 2rem);
  border-left: 0.167em solid #aeb8c8;
  border-top-left-radius: 0.222em;
  border-bottom-left-radius: 0.222em;
  background: #fff;
  box-shadow: 0 0.063em 0.188em rgba(0, 0, 0, 0.1607843137);
}
.address-book__profile summary {
  padding: 5px 15px 30px 10px;
}
.address-book__profile summary:hover {
  cursor: pointer;
}
.address-book__profile summary:focus {
  outline: none;
}
.address-book__profile .field--label-inline {
  display: flex;
  flex-wrap: wrap;
}
.address-book__profile .field--label-inline .field__label {
  padding-right: 0.25em;
}
.address-book__operations {
  margin: 0;
}
.address-book__operations a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 15px 12px 10px;
  border-top: 0.063em solid #aeb8c8;
}
.address-book__operations a:hover {
  text-decoration: none;
}
.address-book__operations a:hover span,
.address-book__operations a:hover svg {
  opacity: 1;
}
.address-book__operations a:hover span {
  color: #3089fd;
}
.address-book__operations a span,
.address-book__operations a svg {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.address-book__operations a span {
  color: #243e63;
}
.address-book__operations a svg {
  margin-right: 8px;
}

#edit-address-0-address, [id*=edit-address-0-address--] {
  display: flex;
  flex-direction: column;
}
#edit-address-0-address .form-type-select, [id*=edit-address-0-address--] .form-type-select {
  position: relative;
}
#edit-address-0-address .form-type-select .select-wrapper, [id*=edit-address-0-address--] .form-type-select .select-wrapper {
  display: block;
  max-width: 25.625em;
}
#edit-address-0-address .form-type-select .select-wrapper:before, [id*=edit-address-0-address--] .form-type-select .select-wrapper:before {
  max-width: 25.625em;
  height: 2.625em;
  border: 0;
}
#edit-address-0-address .form-type-select select, [id*=edit-address-0-address--] .form-type-select select {
  height: 2.625em !important;
  border: 0.063em solid #aeb8c8 !important;
  border-radius: 0;
}
#edit-address-0-address .form-type-select select:focus, [id*=edit-address-0-address--] .form-type-select select:focus {
  outline: none;
}
#edit-address-0-address .form-type-select label, [id*=edit-address-0-address--] .form-type-select label {
  position: absolute;
  z-index: 2;
  top: -0.571em;
  left: 8px;
  padding: 0 0.286em;
  background-color: #f5f6fa;
  font-size: 0.875em;
  line-height: 1.286em;
  font-weight: 400;
}

.social-login__wrapper {
  display: flex;
  max-width: calc(25.625em + 10px);
  margin: -5px;
}
.social-login__btn-wrapper {
  flex-grow: 1;
  flex-basis: 0;
  justify-content: center;
  padding: 0 5px;
}
.social-login__btn {
  width: 100%;
  height: 47px;
  margin-bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.social-login__btn--facebook {
  background-image: url("../img/socials/facebook.jpg");
}
.social-login__btn--google {
  background-image: url("../img/socials/google.jpg");
}
.social-login__divider {
  width: 100%;
  max-width: 25.625em;
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #aeb8c8;
  line-height: 0.1em;
  text-align: center;
}
.social-login__divider span {
  background: #f1f2f8;
  padding: 0 10px;
}

details.address-book__profile {
  transition: all 0.3s ease-out;
  max-height: var(--details-height-closed);
  overflow: hidden;
}
details.address-book__profile[open] {
  max-height: var(--details-height-open);
}
details.address-book__profile summary {
  position: relative;
  list-style: none;
}
details.address-book__profile summary::-webkit-details-marker {
  display: none;
}
details.address-book__profile summary:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  display: block;
  width: 16px;
  height: 10px;
  background-image: url("../img/icons/down-arrow.svg");
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
details.address-book__profile .details-wrapper {
  transition: all 0.3s ease-out;
  max-height: var(--details-content-height-closed);
  overflow: hidden;
  display: block;
}
details.address-book__profile.is--open .details-wrapper {
  max-height: var(--details-content-height-open);
}
details.address-book__profile.is--open summary:after {
  transform: rotate(-180deg);
  transition: all 0.3s ease;
}

.tablefield-wrapper > table {
  width: auto;
  white-space: nowrap;
}
.tablefield-wrapper > table thead > tr > th {
  padding: 6px 40px 6px 0;
  line-height: normal;
  font-weight: bold;
  font-size: initial;
  border: none;
}
.tablefield-wrapper > table tbody > tr {
  box-shadow: none;
}
.tablefield-wrapper > table tbody > tr > td {
  padding: 6px 40px 6px 0;
}
.tablefield-wrapper > table tbody > tr > td:first-child {
  border: none;
}
.tablefield-wrapper > table tbody > tr > th {
  box-shadow: none;
  border: none;
  color: initial;
  font-weight: bold;
  border: none;
  padding: 6px 40px 6px 0;
}

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