/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/
[aria-label][role~=tooltip] {
  position: relative;
}

[aria-label][role~=tooltip]::before,
[aria-label][role~=tooltip]::after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  -webkit-transform-origin: top;
          transform-origin: top;
}

[aria-label][role~=tooltip]::before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~=tooltip]::after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~=tooltip]:hover::before,
[aria-label][role~=tooltip]:hover::after,
[aria-label][role~=tooltip]:focus::before,
[aria-label][role~=tooltip]:focus::after {
  opacity: 1;
  pointer-events: auto;
}

/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/
[role~=tooltip][data-microtip-position|=top]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~=tooltip][data-microtip-position|=top]::after {
  margin-bottom: 11px;
}

[role~=tooltip][data-microtip-position|=top]::before {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position|=top]:hover::before {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position|=top]::after {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=top]:hover::after {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=top-left]::after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
          transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-left]:hover::after {
  -webkit-transform: translate3d(calc(-100% + 16px), -5px, 0);
          transform: translate3d(calc(-100% + 16px), -5px, 0);
}

/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=top-right]::after {
  -webkit-transform: translate3d(calc(0% - 16px), 0, 0);
          transform: translate3d(calc(0% - 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-right]:hover::after {
  -webkit-transform: translate3d(calc(0% - 16px), -5px, 0);
          transform: translate3d(calc(0% - 16px), -5px, 0);
}

/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
[role~=tooltip][data-microtip-position|=bottom]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position|=bottom]::after {
  margin-top: 11px;
}

[role~=tooltip][data-microtip-position|=bottom]::before {
  -webkit-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~=tooltip][data-microtip-position|=bottom]:hover::before {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position|=bottom]::after {
  -webkit-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=bottom]:hover::after {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=bottom-left]::after {
  -webkit-transform: translate3d(calc(-100% + 16px), -10px, 0);
          transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-left]:hover::after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
          transform: translate3d(calc(-100% + 16px), 0, 0);
}

/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=bottom-right]::after {
  -webkit-transform: translate3d(calc(0% - 16px), -10px, 0);
          transform: translate3d(calc(0% - 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-right]:hover::after {
  -webkit-transform: translate3d(calc(0% - 16px), 0, 0);
          transform: translate3d(calc(0% - 16px), 0, 0);
}

/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=left]::before,
[role~=tooltip][data-microtip-position=left]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  -webkit-transform: translate3d(10px, -50%, 0);
          transform: translate3d(10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=left]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position=left]::after {
  margin-right: 11px;
}

[role~=tooltip][data-microtip-position=left]:hover::before,
[role~=tooltip][data-microtip-position=left]:hover::after {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=right]::before,
[role~=tooltip][data-microtip-position=right]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  -webkit-transform: translate3d(-10px, -50%, 0);
          transform: translate3d(-10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~=tooltip][data-microtip-position=right]::after {
  margin-left: 11px;
}

[role~=tooltip][data-microtip-position=right]:hover::before,
[role~=tooltip][data-microtip-position=right]:hover::after {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
[role~=tooltip][data-microtip-size=small]::after {
  white-space: initial;
  width: 80px;
}

[role~=tooltip][data-microtip-size=medium]::after {
  white-space: initial;
  width: 150px;
}

[role~=tooltip][data-microtip-size=large]::after {
  white-space: initial;
  width: 260px;
}

/************ Skandinavisk colors ***********/
/******* Aspect ratios *****/
/****** Transition *******/
html {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /* stylelint-disable-line property-no-unknown */
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  height: 100%;
  text-rendering: optimizeLegibility;
}

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

::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

body {
  font-family: "Skandinavisk", sans-serif;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
body.scroll-disabled {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Page wrapper */
.main-page-wrapper {
  position: relative;
  margin: 0 auto;
  padding-top: 92px;
  max-width: 100%;
  min-height: calc(100vh - 253px);
}
@media only screen and (max-width: 1199px) {
  .main-page-wrapper {
    padding-top: 62px;
  }
}

/* Main container wrapper */
.main-container {
  margin: 0 auto;
  max-width: 1980px;
  width: 100%;
}
.main-container:not(.main-container--no-padding), .main-container.main-container--padding-small {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .main-container:not(.main-container--no-padding), .main-container.main-container--padding-small {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.main-container.main-container--padding-medium {
  max-width: 1170px;
}
.main-container.main-container--padding-big {
  max-width: 800px;
}
@media only screen and (max-width: 1199px) {
  .main-container {
    max-width: 100%;
    width: 100%;
  }
}

.translatez {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.visually-hidden,
.hide-text {
  border: 0 !important;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden !important;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.noselect {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.maxcolumn {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1880px;
}
@media only screen and (max-width: 1199px) {
  .maxcolumn {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media only screen and (max-width: 1199px) {
  .main {
    padding-bottom: 50px;
  }
  .pt_storefront .main, .pt_customer-service .main, .pt_product-search-result .main, .pt_store-locator .main {
    padding-bottom: 0;
  }
}

/* sr styling */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.display-none,
.d-none {
  display: none !important;
}

.display-small-mobile {
  display: none !important;
}
@media only screen and (max-width: 560px) {
  .display-small-mobile {
    display: block !important;
  }
}

.hide-small-mobile {
  display: none !important;
}
@media only screen and (min-width: 560px) {
  .hide-small-mobile {
    display: block !important;
  }
}

@media only screen and (min-width: 768px) {
  .display-mobile-only {
    display: none !important;
  }
}

@media only screen and (min-width: 901px) {
  .display-large-mobile-only {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 1200px) {
  .display-mobile-tablet,
.hide-desktop {
    display: none !important;
  }
}

@media only screen and (max-width: 1199px) {
  .hide-mobile-tablet {
    display: none !important;
  }
}

.ie11-only {
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ie11-only {
    display: block;
  }
}

.stop-scrolling {
  overflow: hidden;
}

.backdrop-mask::before {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.37);
  z-index: 200;
}

@media only screen and (max-width: 1199px) {
  .stop-scrolling-on-touch {
    overflow: hidden;
    position: relative;
    touch-action: none;
  }
}

.sticky::before,
.sticky::after {
  content: "";
  display: table;
}

p {
  font-size: 14px;
  line-height: 19px;
}

.h1,
h1 {
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-weight: normal;
}
@media only screen and (max-width: 1199px) {
  .h1,
h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

.h2,
h2 {
  margin: 0;
  font-size: 30px;
  line-height: 35px;
  font-weight: normal;
}
@media only screen and (max-width: 1199px) {
  .h2,
h2 {
    font-size: 18px;
    line-height: 25px;
  }
}

.h3,
h3 {
  margin: 0;
  font-size: 24px;
  line-height: 20px;
  font-weight: normal;
}
@media only screen and (max-width: 1199px) {
  .h3,
h3 {
    font-size: 18px;
    line-height: 15px;
  }
}

.h4,
h4 {
  margin: 0;
  font-size: 18px;
  line-height: 15px;
  font-weight: normal;
}

ul,
li,
nav ul,
nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bold {
  font-family: "SkandinaviskBold", sans-serif;
}

.iconfont-outline {
  color: transparent;
  -webkit-text-stroke-color: #000;
  -webkit-text-stroke-width: 1px;
}

.iconfont-x-circle::before {
  color: transparent;
  -webkit-text-stroke-color: #f00000;
}

.cursor-pointer {
  cursor: pointer;
}

.is-flex {
  display: flex;
}

.is-underline {
  text-decoration: underline;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: "Skandinavisk", sans-serif;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: "Skandinavisk", sans-serif;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 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;
     -moz-appearance: button;
          appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
          appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

/**
   * Show swipers only after initialisation
   */
@font-face {
  font-display: block;
  font-family: "iconfont";
  src: url("../../fonts/icons.woff") format("woff");
}
@font-face {
  font-family: "Skandinavisk";
  src: url("../../fonts/NoirSkandinavisk.woff2") format("woff2");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "SkandinaviskBold";
  src: url("../../fonts/NoirSkandinavisk-Demibold.woff2") format("woff2");
  font-weight: 700;
  font-display: block;
  font-style: normal;
}
[class*=iconfont-]::before {
  color: inherit;
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  position: relative;
  vertical-align: middle;
}

.iconfont-back-arrow::before {
  content: "\f101";
}

.iconfont-bag::before {
  content: "\f102";
}

.iconfont-checkmark::before {
  content: "\f103";
}

.iconfont-chevron-down::before {
  content: "\f104";
}

.iconfont-chevron-right::before {
  content: "\f105";
}

.iconfont-close::before {
  content: "\f106";
}

.iconfont-edit::before {
  content: "\f107";
}

.iconfont-facebook-icon::before {
  content: "\f108";
}

.iconfont-info::before {
  content: "\f109";
}

.iconfont-instagram-icon::before {
  content: "\f10a";
}

.iconfont-main-logo::before {
  content: "\f10b";
}

.iconfont-pinterest-icon::before {
  content: "\f10c";
}

.iconfont-play::before {
  content: "\f10d";
}

.iconfont-search::before {
  content: "\f10e";
}

.iconfont-shopping-bag::before {
  content: "\f10f";
}

.iconfont-spotify-icon::before {
  content: "\f110";
}

.iconfont-trash-outline::before {
  content: "\f111";
}

.iconfont-trash-s::before {
  content: "\f112";
}

.iconfont-user::before {
  content: "\f113";
}

.iconfont-x-circle::before {
  content: "\f114";
}

.iconfont-x::before {
  content: "\f115";
}

.iconfont-youtube-icon::before {
  content: "\f116";
}

.breadcrumb-container {
  border-top: 1px solid #e2e2e2;
  padding: 16px 30px;
  margin-top: 3px;
  color: #525252;
}
@media only screen and (max-width: 1023px) {
  .breadcrumb-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.breadcrumb-container .breadcrumb-list {
  margin-left: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 21px;
}
.breadcrumb-container .breadcrumb-item a {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .breadcrumb-container .breadcrumb-item a {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-container .breadcrumb-item a {
    display: none;
  }
}
.breadcrumb-container .breadcrumb-item a::before, .breadcrumb-container .breadcrumb-item a::after {
  content: "";
  position: absolute;
  background-color: #525252;
  width: 1px;
  height: 9px;
  right: -20px;
}
.breadcrumb-container .breadcrumb-item a::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 1px;
}
.breadcrumb-container .breadcrumb-item a::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-container .breadcrumb-item:nth-last-child(2) a {
    padding-left: 20px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-container .breadcrumb-item:nth-last-child(2) a::before, .breadcrumb-container .breadcrumb-item:nth-last-child(2) a::after {
    left: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-container .breadcrumb-item:nth-last-child(2) a::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-container .breadcrumb-item:nth-last-child(2) a::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .breadcrumb-container .breadcrumb-item:last-child a {
    pointer-events: none;
    font-weight: 600;
  }
}
.breadcrumb-container .breadcrumb-item:last-child a::before, .breadcrumb-container .breadcrumb-item:last-child a::after {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  color: #000;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: 0;
  border-radius: 3px;
}

.btn {
  font-size: 14px;
}

.btn--small {
  font-size: 12px;
}

.btn,
.btn--small {
  font-family: "SkandinaviskBold", sans-serif;
  min-height: 42px;
  padding: 10px 20px;
  line-height: 17px;
  text-align: center;
  text-transform: capitalize;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}
.btn:hover,
.btn--small:hover {
  text-decoration: none;
}
.btn:focus,
.btn--small:focus {
  box-shadow: none;
}
.btn.btn--uppercase,
.btn--small.btn--uppercase {
  text-transform: uppercase;
}
.btn.subscribe-btn,
.btn--small.subscribe-btn {
  transition: all 0.2s ease-out;
  color: #fff;
  border-color: #ac937f;
  background-color: #ac937f;
}
.btn.subscribe-btn:hover, .btn.subscribe-btn:active,
.btn--small.subscribe-btn:hover,
.btn--small.subscribe-btn:active {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}
.btn.btn-black, .btn.black,
.btn--small.btn-black,
.btn--small.black {
  transition: all 0.2s ease-out;
  color: #fff;
  border-color: #000;
  background-color: #000;
}
.btn.btn-black:hover, .btn.btn-black:active, .btn.black:hover, .btn.black:active,
.btn--small.btn-black:hover,
.btn--small.btn-black:active,
.btn--small.black:hover,
.btn--small.black:active {
  border-color: #000;
  background-color: #fff;
  color: #000 !important;
}
.btn.btn-green, .btn.green,
.btn--small.btn-green,
.btn--small.green {
  transition: all 0.2s ease-out;
  color: #fff;
  border-color: #2bc137;
  background-color: #2bc137;
}
.btn.btn-green:hover, .btn.btn-green:active, .btn.green:hover, .btn.green:active,
.btn--small.btn-green:hover,
.btn--small.btn-green:active,
.btn--small.green:hover,
.btn--small.green:active {
  border-color: #2bc137;
  background-color: #fff;
  color: #2bc137 !important;
}
.btn.btn-white, .btn.white,
.btn--small.btn-white,
.btn--small.white {
  transition: all 0.2s ease-out;
  color: #000;
  border-color: #fff;
  background-color: #fff;
}
.btn.btn-white:hover, .btn.btn-white:active, .btn.white:hover, .btn.white:active,
.btn--small.btn-white:hover,
.btn--small.btn-white:active,
.btn--small.white:hover,
.btn--small.white:active {
  border-color: #000;
  background-color: #000;
  color: #fff !important;
}
.btn.btn-outline-black,
.btn--small.btn-outline-black {
  border: 1px solid #000;
}
.btn.btn-outline-white,
.btn--small.btn-outline-white {
  border: 1px solid #fff;
}
.btn.btn-outline-green,
.btn--small.btn-outline-green {
  border: 1px solid #2bc137;
}
.btn.disabled, .btn:disabled, .btn[disabled=disabled],
.btn--small.disabled,
.btn--small:disabled,
.btn--small[disabled=disabled] {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #e2e2e2;
  border-color: #e2e2e2;
  color: #606060;
}

.btn-block {
  width: 100%;
}

.btn-underline {
  text-decoration: underline;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media only screen and (max-width: 767px) {
  .form__row {
    margin: 0 -5px;
  }
}

.form__group {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .form__group {
    padding: 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .form__group.half-not-mobile {
    flex-basis: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .form__group.half-not-mobile-tablet {
    flex-basis: 50%;
  }
}
.form__group.horizontal-align {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  line-height: 1;
}

.form__label {
  display: flex;
  padding: 0;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  word-wrap: break-word;
  position: absolute;
  top: 15px;
  left: 30px;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}
.form__label.form__label--checkbox {
  display: inline;
  position: relative;
  top: unset;
  left: unset;
}
.form__label.form__label--footer {
  pointer-events: auto;
}
.form__label.form__label--small {
  font-size: 10px;
  line-height: 10px;
}
.form__label.form__label--select {
  top: -12px;
  background-color: #fff;
  padding: 3px;
  font-size: 10px;
  color: #606060;
  left: 17px;
}

.invalid-feedback {
  margin-top: 2px;
}

._checkbox-radio .invalid-feedback {
  color: #f00000;
  font-size: 10px;
  line-height: 12px;
}

.newsletter-form-footer .form__label {
  font-size: 10px;
  line-height: 10px;
}

.form__control {
  display: block;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: normal;
  font-family: inherit;
  padding: 15px 20px;
  height: 48px;
  width: 100%;
}
.form__control:focus, .form__control:active {
  outline: none;
}
.form__control.footer-form__input {
  margin-bottom: 0;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.75);
  font-weight: normal;
  font-family: inherit;
  padding: 8px;
  height: 37px;
}
.form__control.form__control--outline-black {
  border-color: #000;
}
.form__control._has_error::-webkit-input-placeholder {
  color: #f00000;
  outline: #f00000;
  border-color: #f00000;
}
.form__control._has_error::-moz-placeholder {
  color: #f00000;
  outline: #f00000;
  border-color: #f00000;
}
.form__control._has_error:-ms-input-placeholder {
  color: #f00000;
  outline: #f00000;
  border-color: #f00000;
}
.form__control._has_error::-ms-input-placeholder {
  color: #f00000;
  outline: #f00000;
  border-color: #f00000;
}
.form__control._has_error, .form__control._has_error:focus, .form__control._has_error::placeholder {
  color: #f00000;
  outline: #f00000;
  border-color: #f00000;
}
.form__control.is-invalid ~ .invalid-feedback {
  color: #f00000;
  font-size: 10px;
  line-height: 12px;
}
.form__control.is-invalid ~ .form__label::before {
  content: "!";
  display: inline-block;
  color: #f00000;
  border: 2px solid #f00000;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  text-align: center;
  vertical-align: text-bottom;
  font-size: 12px;
  line-height: 13px;
}
.form__control::-webkit-input-placeholder {
  color: transparent;
}
.form__control::-moz-placeholder {
  color: transparent;
}
.form__control:-ms-input-placeholder {
  color: transparent;
}
.form__control::-ms-input-placeholder {
  color: transparent;
}
.form__control::placeholder {
  color: transparent;
}
._form-content .form__control::-webkit-input-placeholder {
  color: inherit;
}
._form-content .form__control::-moz-placeholder {
  color: inherit;
}
._form-content .form__control:-ms-input-placeholder {
  color: inherit;
}
._form-content .form__control::-ms-input-placeholder {
  color: inherit;
}
._form-content .form__control::placeholder {
  color: inherit;
}
.form__control:focus ~ .form__label, .form__control:not(:placeholder-shown) ~ .form__label {
  top: -12px;
  background-color: #fff;
  padding: 3px;
  font-size: 10px;
  color: #606060;
  left: 17px;
}
.form__control:focus ~ .form__label::before, .form__control:not(:placeholder-shown) ~ .form__label::before {
  content: "";
  border: 0;
  width: 0;
  height: 0;
}
.form__control.required ~ .form__label::after, .form__control:required ~ .form__label::after {
  content: "*";
  display: inline-block;
}

._error-inner {
  color: #f00000;
  font-size: 10px;
  margin: 5px 0;
}

input[type=checkbox] {
  margin-right: 2px;
  display: inline-block;
  vertical-align: middle;
}

select {
  color: #000;
}

.form__password-info,
.form__terms {
  margin: 0;
  line-height: 24px;
}

.form__terms {
  font-size: 12px;
  color: #606060;
}

.form__terms-link {
  font-family: "SkandinaviskBold", sans-serif;
  text-decoration: underline;
}

.form__checkbox {
  position: absolute;
  opacity: 0;
}
.form__checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.form__checkbox + label::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
}
.form__checkbox:focus + label::before {
  box-shadow: 0 0 0 3px #000 0, 0, 0, 0.12;
}
.form__checkbox:checked + label::before {
  background: #000;
  border: 1px solid #000;
}
.form__checkbox:disabled + label {
  color: #d4d4d4;
  cursor: auto;
}
.form__checkbox:disabled + label::before {
  box-shadow: none;
  background: #d4d4d4;
}
.form__checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: #fff;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.form__select {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e2e2;
  padding: 0 15px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../../img/svg/chevron-down.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.locale-selector {
  display: flex;
}
.footer-row--locale-selector .locale-selector {
  justify-content: space-between;
  margin-bottom: 54px;
  border-bottom: 1px solid #000;
}
.navmenu-link-item .locale-selector {
  position: relative;
}
.navmenu-link-item .locale-selector::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2.5px solid;
  border-left: 2.5px solid;
  vertical-align: middle;
  -webkit-transform: translate(50%, -50%) rotate(225deg);
          transform: translate(50%, -50%) rotate(225deg);
}
.navmenu-link-item .locale-selector::after {
  position: absolute;
  right: 7px;
  top: 7px;
  color: #e2e2e2;
}

.locale-selector__wrapper {
  display: inline-block;
  position: relative;
}
.cart__locale-selector .locale-selector__wrapper::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2.5px solid;
  border-left: 2.5px solid;
  vertical-align: middle;
  -webkit-transform: translate(50%, -50%) rotate(225deg);
          transform: translate(50%, -50%) rotate(225deg);
}
.cart__locale-selector .locale-selector__wrapper::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.cart__locale-selector .locale-selector__wrapper::after {
  position: absolute;
  right: -15px;
  top: 7px;
  color: #e2e2e2;
}

.locale-selector__label,
.locale-selector__select {
  font-size: 14px;
  line-height: 20px;
}

.locale-selector__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  height: auto;
  padding: 0;
  margin: 0;
  width: auto;
  margin-left: 5px;
  font-family: "SkandinaviskBold", sans-serif;
}
.locale-selector__select:focus {
  outline: 0;
}
.footer-row--locale-selector .locale-selector__select {
  width: 140px;
  margin-left: 0;
  font-family: "Skandinavisk", sans-serif;
  margin-bottom: 5px;
  text-align: right;
}
.navmenu-link-item .locale-selector__select {
  flex-grow: 1;
  text-align: left;
  z-index: 1;
}
.cart__locale-selector .locale-selector__select {
  position: relative;
}

.locale-selector__option {
  font-family: inherit;
}

.footer-row--locale-selector .locale-selector__label {
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer-row--locale-selector .locale-selector__label::after {
  content: ":";
  display: inline-block;
  vertical-align: text-bottom;
}

/* stylelint-disable */
/*md

## Spinner

### Spinner Example

```html_example
<div class="veil" style="min-height: 200px;">
    <div class="underlay"></div>
    <div class="spinner">
        <span class="dot1"></span>
        <span class="dot2"></span>
    </div>
</div>
```

*/
/* stylelint-enable */
.image-preloader,
.veil {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}

.image-preloader__underlay,
.spinner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
}

.image-preloader__underlay {
  background-color: transparent;
}

.spinner {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease-in-out;
}

.loading + .image-preloader .image-preloader__spinner::before {
  border-color: transparent;
}
.loading + .image-preloader .image-preloader__spinner::after {
  background-color: transparent;
}

.dot1::before {
  border-color: transparent;
}
.dot1::after {
  background-color: transparent;
}

.loading + .image-preloader .image-preloader__spinner,
.dot1 {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
}
.loading + .image-preloader .image-preloader__spinner::before,
.dot1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  border-width: 3px;
  border-style: solid;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-animation: sk-rotate 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: sk-rotate 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.loading + .image-preloader .image-preloader__spinner::after,
.dot1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-animation: sk-rotate-after 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: sk-rotate-after 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes sk-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  60% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  60% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-rotate-after {
  0% {
    -webkit-transform: translate3d(0, -32px, 0) scale(0, 2);
            transform: translate3d(0, -32px, 0) scale(0, 2);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate3d(0, 0, 0) scale(1.25, 1.25);
            transform: translate3d(0, 0, 0) scale(1.25, 1.25);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0) scale(0, 0);
            transform: translate3d(0, 8px, 0) scale(0, 0);
    opacity: 0;
  }
}
@keyframes sk-rotate-after {
  0% {
    -webkit-transform: translate3d(0, -32px, 0) scale(0, 2);
            transform: translate3d(0, -32px, 0) scale(0, 2);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate3d(0, 0, 0) scale(1.25, 1.25);
            transform: translate3d(0, 0, 0) scale(1.25, 1.25);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0) scale(0, 0);
            transform: translate3d(0, 8px, 0) scale(0, 0);
    opacity: 0;
  }
}
/* stylelint-disable */
/*md
## modal
### Modal Example
```html_example

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-modal="openModal">
  Launch demo modal
</button>

<div class="modal js-modal display-none" id="exampleModal"
    tabindex="-1" role="dialog"
    aria-labelledby="exampleModal"
    aria-hidden="true"
    data-modal="closeModal"
    data-target="#exampleModal">
    <div class="modal__dialog" role="document">
        <div class="modal__content">
            <div class="modal__header">
                <h5 class="modal__title" id="exampleModal">Modal Title</h5>
                <button type="button" class="modal__close-icon iconfont-close"
                    data-dismiss="modal"
                    data-modal="closeModal"
                    data-target="#exampleModal"
                    aria-label="Close"></button>
            </div>
            <div class="modal__body">
                 ...
            </div>
        </div>
    </div>
</div>
```
*/
/* stylelint-enable */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.37);
}
.modal.show {
  background-color: rgba(0, 0, 0, 0.37);
  display: block;
}

.modal-open {
  overflow: hidden;
}

.modal__dialog {
  position: relative;
  width: calc(100% - 40px);
  pointer-events: none;
  max-width: 650px;
  margin: 25px auto;
  min-height: calc(100% - 56px);
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .modal__dialog {
    width: auto;
  }
}
.modal--with-banner .modal__dialog {
  max-width: 600px;
}
@media only screen and (min-width: 1024px) {
  .modal--with-banner .modal__dialog {
    width: calc(100% - 40px);
    max-width: 1144px;
  }
}
.fade .modal__dialog {
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.show .modal__dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal__content {
  overflow-y: auto;
  scrollbar-color: #000 #fff;
  scrollbar-width: thin;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 35px 20px 25px;
  pointer-events: auto;
  background-color: #fff;
  outline: 0;
  max-height: calc(90vh - 50px);
}
.modal__content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modal__content::-webkit-scrollbar-thumb {
  background: #000;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.modal__content::-webkit-scrollbar-track {
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .modal__content {
    padding: 35px;
  }
}
.modal--with-banner .modal__content {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .modal--with-banner .modal__content {
    overflow: hidden;
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .modal__header {
    padding-bottom: 30px;
  }
}

.modal__title {
  margin: 0;
  font-size: 30px;
  line-height: 35px;
  font-weight: normal;
  padding-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .modal__title {
    font-size: 18px;
    line-height: 25px;
  }
}
.modal__title.pointer {
  cursor: pointer;
}

.modal__close-icon {
  margin: 0;
  font-size: 24px;
  line-height: 20px;
  font-weight: normal;
}
@media only screen and (max-width: 1199px) {
  .modal__close-icon {
    font-size: 18px;
    line-height: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  .modal__row {
    display: flex;
    justify-content: space-between;
    max-height: calc(90vh - 50px);
  }
}

@media only screen and (min-width: 1024px) {
  .modal__col--image {
    width: 0.4676573427;
    max-height: 100%;
  }
}

.modal__col--content {
  overflow-y: auto;
  scrollbar-color: #000 #fff;
  scrollbar-width: thin;
  padding: 30px 25px;
}
.modal__col--content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modal__col--content::-webkit-scrollbar-thumb {
  background: #000;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.modal__col--content::-webkit-scrollbar-track {
  background: #fff;
}
@media only screen and (min-width: 1024px) {
  .modal__col--content {
    padding: 65px;
    max-height: calc(90vh - 50px);
    width: 0.5323426573;
  }
}

.error-messaging-plp {
  position: fixed;
  top: 70px;
  left: 50%;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2000;
  text-align: center;
}

.alert {
  padding: 20px 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 2px;
}

.alert__text {
  margin: 0;
  color: #fff;
}

.alert-danger {
  background-color: #901313;
  border: 1px solid #110606;
}

.alert-success {
  background-color: rgba(40, 73, 38, 0.07);
}
.alert-success::before {
  background-color: #284926;
}
.alert-success .alert__title {
  color: #a5dc86;
}
.alert-success .alert__text {
  color: #a5dc86;
}
.alert-success .alert__product-removed {
  color: #000;
}

.alert__btn {
  margin-left: 20px;
  line-height: 23px;
  height: 20px;
  color: #fff;
}

.alert__btn-product {
  color: #000;
}

.message-container {
  padding: 20px 30px;
  margin-bottom: 40px;
  border-radius: 2px;
}
.message-container p {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
}
@media only screen and (max-width: 767px) {
  .message-container {
    min-width: 80%;
  }
}

.message-container--grey {
  background-color: #f4f4f4;
  border: 1px solid #e2e2e2;
}

.message-container--green {
  background-color: #284926;
  border: 1px solid #110606;
  color: #fff;
}

.message-container--red {
  background-color: #901313;
  border: 1px solid #110606;
  color: #fff;
}

.message-container--alert {
  position: fixed;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2000;
  text-align: center;
}

.cookie-dialog-screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 200;
}

.cookie-screen-window .cookie-dialog-content {
  background-color: #000;
}
.cookie-dialog-window .cookie-dialog-content {
  background-color: #fff;
  padding: 25px;
  margin: auto;
  max-width: 100%;
}

.cookie-title {
  font-family: "SkandinaviskBold", sans-serif;
}
.cookie-screen-window .cookie-title {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 22px;
  margin: 0 0 5px;
}
.cookie-dialog-window .cookie-title {
  color: #000;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 15px;
}

.cookie-text {
  line-height: 20px;
}
.cookie-screen-window .cookie-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  margin: 0 0 5px;
  color: #fff;
}
.cookie-dialog-window .cookie-text {
  font-size: 15px;
  margin: 0 0 40px;
  color: #000;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  align-items: flex-start;
  margin: 0 0 40px;
  border-bottom: 2px solid #f4f4f4;
}

.cookie-screen-window {
  background-color: #000;
  position: fixed;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 50%;
  bottom: 10%;
  width: 90%;
  z-index: 205;
  padding: 25px;
}
.cookie-screen-window .cookie-consent-accept:hover {
  background-color: #2bc137;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .cookie-text-description {
    width: 70%;
  }
}

@media only screen and (min-width: 768px) {
  .cookie-text-link-wrapper {
    width: 15%;
  }
}

.read-more {
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "SkandinaviskBold", sans-serif;
  letter-spacing: 1.2px;
  line-height: 13px;
  display: block;
  margin: 12px 0;
}

/* Cookie modal */
.cookie-consent-dialog-content {
  position: fixed;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 20%);
          transform: translate(-50%, 20%);
  width: 50vw;
  z-index: 200;
  /* Switch for Dialogue window */
}
@media only screen and (max-width: 1199px) {
  .cookie-consent-dialog-content {
    width: 70vw;
  }
}
.cookie-consent-dialog-content .slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: #d4d4d4;
  transition: 0.4s;
}
.cookie-consent-dialog-content .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: 0.4s;
}
.cookie-consent-dialog-content .slider.round {
  border-radius: 34px;
}
.cookie-consent-dialog-content .slider.round::before {
  border-radius: 50%;
}
.cookie-consent-dialog-content .slide-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-consent-dialog-content .slide-checkbox:checked + .slider {
  background-color: #2bc137;
}
.cookie-consent-dialog-content .slide-checkbox:focus + .slider {
  box-shadow: 0 0 1px #2bc137;
}
.cookie-consent-dialog-content .slide-checkbox:checked + .slider::before {
  -webkit-transform: translateX(26px);
          transform: translateX(26px);
}
.cookie-consent-dialog-content .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-consent-button-wrapper {
  background-color: #f4f4f4;
  padding: 25px;
}

.close-cookie-bnt {
  position: absolute;
  color: #fff;
  font-size: 26px;
  right: -35px;
  top: -30px;
  width: 36px;
  height: 36px;
  border: 0;
}

.cookie-dialog-window {
  overflow-y: auto;
  scrollbar-color: #000 #fff;
  scrollbar-width: thin;
  background-color: #fff;
  width: 100%;
  z-index: 205;
  padding: 25px 0 0;
  max-height: 75vh;
}
.cookie-dialog-window::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.cookie-dialog-window::-webkit-scrollbar-thumb {
  background: #000;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cookie-dialog-window::-webkit-scrollbar-track {
  background: #fff;
}
.cookie-dialog-window .read-policy-link {
  display: block;
  color: #d4d4d4;
  margin-top: 10px;
  font-family: "SkandinaviskBold", sans-serif;
}
.cookie-dialog-window .read-policy-link:hover {
  color: #000;
}
.cookie-dialog-window .check {
  margin-right: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cookie-dialog-window .check {
    margin-top: 10px;
    margin-bottom: 25px;
  }
}
.cookie-dialog-window .label {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-window .label {
    width: 70%;
    padding-bottom: 50px;
  }
}
.cookie-dialog-window .label-title {
  font-size: 14px;
  font-family: "SkandinaviskBold", sans-serif;
  letter-spacing: 0.4px;
  line-height: 16px;
}
.cookie-dialog-window .label-text {
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 18px;
}

.main-usp-bar {
  background-color: #000;
  color: #fff;
  font-size: 13px;
  line-height: 15px;
  min-height: 36px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .main-usp-bar {
    padding: 0 30px;
  }
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 18px 30px 6px;
}
@media only screen and (max-width: 1199px) {
  .site-nav {
    padding: 16px 16px;
    min-height: 62px;
  }
}

@media only screen and (max-width: 1199px) {
  .logo-home.remove {
    display: none;
  }
}

@media only screen and (max-width: 320px) {
  .header-logo__icon {
    width: 190px;
  }
}

.return-btn {
  display: none;
  font-size: 26px;
  color: #000;
}
.return-btn::before {
  top: -8px;
}
@media only screen and (max-width: 1199px) {
  .return-btn.is-open {
    display: block;
  }
}

.navbar-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu-icon {
  display: block;
}
@media only screen and (max-width: 1199px) {
  .navbar-menu-icon.cart.remove {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar-menu-icon.search, .navbar-menu-icon.user {
    display: none;
  }
  .navbar-menu-icon.search.is-open, .navbar-menu-icon.user.is-open {
    display: flex;
    position: absolute;
    left: 16px;
  }
}
.navbar-menu-icon .search-field {
  width: 90%;
  margin-left: 15px;
  border: 0;
  border-bottom: 2px solid #e2e2e2;
  height: 20px;
  margin-top: 5px;
  line-height: normal;
  transition: 0.25s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .navbar-menu-icon .search-field {
    width: 90%;
  }
}
.navbar-menu-icon .search-field:focus, .navbar-menu-icon .search-field:hover {
  border-color: #000;
  outline: 0;
}

.total-cart-items {
  position: absolute;
  right: -7px;
  top: -5px;
  font-size: 12px;
}

.header-icon {
  cursor: pointer;
  font-size: 22px;
  color: #000;
}
.header-icon.iconfont-search {
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .header-icon.iconfont-search {
    display: none;
  }
}
.header-icon.iconfont-user {
  margin-left: 5px;
  margin-right: 5px;
}
.header-icon.iconfont-shopping-bag {
  margin-left: 22px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-icon.iconfont-shopping-bag {
    margin-left: 0;
    margin-top: -5px;
    display: inline-block;
  }
}

/* navbar icons css */
.icon-wrapper {
  display: flex;
}

.nav-toggler {
  border: 0;
  padding: 2px 2px 2px 10px;
  background-color: transparent;
  cursor: pointer;
  height: 22px;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .nav-toggler {
    display: block;
  }
}
.nav-toggler .bar, .nav-toggler .bar::before, .nav-toggler .bar::after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: #000;
  display: block;
  transition: 0.3s;
}
.nav-toggler .bar::before {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.nav-toggler .bar::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.nav-toggler.is-open .bar {
  background-color: transparent;
}
.nav-toggler.is-open .bar::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.nav-toggler.is-open .bar::after {
  -webkit-transform: translateY(-2px) rotate(-45deg);
          transform: translateY(-2px) rotate(-45deg);
}

.navmenu-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 100%;
  height: 100%;
  padding: 6px 30px 0;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) {
  .navmenu-container {
    overflow-y: inherit;
  }
}
@media only screen and (max-width: 1199px) {
  .navmenu-container {
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    touch-action: pan-y;
    overflow-y: auto;
    overflow-x: hidden;
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px;
    border-top: 1px solid transparent;
    z-index: 15;
    display: none;
  }
  .navmenu-container.is-open {
    border-top: 1px solid transparent;
    height: 100vh;
    display: block;
  }
  .navmenu-container.border-on-top {
    border-top: 1px solid #f4f4f4;
  }
  .navmenu-container.stop-scrolling-y {
    overflow: hidden;
  }
}

.navmenu-link-items {
  display: flex;
  margin-right: 16px;
  font-family: "SkandinaviskBold", sans-serif;
}
.navmenu-link-items:nth-child(2) {
  margin-right: 0;
}
.navmenu-link-items:last-child {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .navmenu-link-items {
    flex-direction: column;
    margin-right: 0;
  }
  .navmenu-link-items:not(:first-child) {
    font-family: "Skandinavisk", sans-serif;
  }
  .navmenu-link-items:nth-child(2) {
    margin: 10px 0;
  }
  .navmenu-link-items:last-child {
    display: block;
    margin: 0 0 130px;
  }
}

.navmenu-link-item {
  padding: 0 18px 18px;
  color: #606060;
  border-bottom: 1px solid transparent;
}
.navmenu-link-item:hover {
  color: #000;
}
@media only screen and (min-width: 1200px) {
  .navmenu-link-item:hover .dropmenu-links-container {
    display: block;
  }
}
@media only screen and (max-width: 1199px) {
  .navmenu-link-item.is-active .dropmenu-links-container {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .navmenu-link-item.is-active.navmenu-container {
    overflow-y: hidden;
  }
}
.navmenu-link-item:first-child {
  padding-bottom: 0;
  padding-left: 0;
}
.navmenu-link-item:last-child {
  padding-right: 0;
}
.navmenu-link-item .locale-selector__label,
.navmenu-link-item .locale-selector__select {
  font-size: 16px;
}
@media only screen and (max-width: 1199px) {
  .navmenu-link-item {
    padding: 12px 0;
  }
  .navmenu-link-item:first-child {
    padding: 12px 0;
  }
}

.dropmenu-links-container {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #fff;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  touch-action: pan-y;
}
@media only screen and (min-width: 1200px) {
  .dropmenu-links-container {
    display: none;
    border-top: 1px solid #e2e2e2;
    min-height: 425px;
  }
}
@media only screen and (max-width: 1199px) {
  .dropmenu-links-container {
    height: calc(100vh - 62px);
    top: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 25;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 30px;
  }
}
.dropmenu-links-container:hover {
  display: block;
}
.dropmenu-links-container:last-child {
  padding-top: 0;
}
@media only screen and (min-width: 1200px) {
  .dropmenu-links-container.about .menu-items {
    justify-content: flex-end;
  }
  .dropmenu-links-container.about .dropmenu-item {
    padding-right: 45px;
  }
}

.dropmenu-item {
  padding: 16px 30px;
  font-family: "Skandinavisk", sans-serif;
  font-size: 16px;
}
.dropmenu-item:last-child {
  padding-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .dropmenu-item {
    padding: 12px 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .dropmenu-item.see-all-link {
    display: none;
  }
}
.dropmenu-item.mobile-dropmenu-item {
  display: none;
  font-family: "SkandinaviskBold", sans-serif;
}
@media only screen and (max-width: 1199px) {
  .dropmenu-item.mobile-dropmenu-item {
    display: block;
    border-bottom: 1px solid #f4f4f4;
    border-top: 1px solid transparent;
  }
}

.dropmenu.image-tiles-drop-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dropmenu.image-tiles-drop-menu .dropmenu-item {
  flex-basis: calc(33.3333333% - 32px);
  width: calc(33.3333333% - 32px);
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  .dropmenu.image-tiles-drop-menu .dropmenu-item {
    flex-basis: calc(50% - 8px);
    width: calc(50% - 8px);
  }
}

@media only screen and (max-width: 1199px) {
  .header-link-item {
    display: block;
  }
  .header-link-item::after {
    color: inherit;
    font-family: "iconfont";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    line-height: 1;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    position: relative;
    vertical-align: middle;
    content: "\f105";
    font-size: 28px;
    color: #e2e2e2;
    display: block;
    right: 10px;
    margin-top: -25px;
    position: absolute;
  }
}

.menu-items {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .menu-items {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.menu-items.image-tiles-menu {
  overflow: hidden;
}

.mini-img-dropdown {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .mini-img-dropdown {
    display: block;
    width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* Home & body image dropdown styling */
.nav-image-box {
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .search-wrapper {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    height: 93px;
    background-color: #fff;
    z-index: 300;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  }
  .search-wrapper.is-active {
    position: absolute;
    top: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .search-wrapper.remove-top {
    position: absolute;
    top: 0;
  }
}
.search-wrapper .site-search {
  padding-top: 35px;
  margin-left: 30px;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .search-wrapper .site-search {
    padding-top: 0;
    margin-left: 0;
  }
}
.search-wrapper .site-search .iconfont-search {
  font-size: 22px;
}

.reset-search-btn {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  height: 22px;
  position: absolute;
  right: 30px;
}
@media only screen and (max-width: 1199px) {
  .reset-search-btn {
    display: none;
  }
}
.reset-search-btn .bar {
  background-color: transparent;
}
.reset-search-btn .bar::before, .reset-search-btn .bar::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  transition: 0.3s;
  background-color: #000;
}
.reset-search-btn .bar::before {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.reset-search-btn .bar::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

@media only screen and (min-width: 1200px) {
  .list-image-wrapper {
    max-width: 500px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .list-image-wrapper {
    max-height: calc(100vh - 70px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 15px;
    touch-action: pan-y;
  }
}

@media only screen and (max-width: 1199px) {
  .navigation-flyout-wrapper {
    padding: 0 16px 120px;
  }
}

/* Fragrance menu styling */
.dropitem-image-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .dropitem-image-wrapper {
    height: calc(100vh - 320px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
.dropitem-image-wrapper .image-tiles-item-wrapper {
  flex-grow: 1;
  width: 33.33%;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .dropitem-image-wrapper .image-tiles-item-wrapper {
    width: calc(50% - 8px);
    justify-content: space-between;
    margin: 16px 16px 0 0;
  }
  .dropitem-image-wrapper .image-tiles-item-wrapper .image-tiles-content-wrapper {
    position: relative;
  }
  .dropitem-image-wrapper .image-tiles-item-wrapper .image-tiles-content-wrapper .image-tiles-holder {
    padding-bottom: 100%;
  }
}
@media only screen and (max-width: 350px) {
  .dropitem-image-wrapper .image-tiles-item-wrapper {
    margin: 4px 0;
    width: 100%;
  }
}
.dropitem-image-wrapper .image-tiles-item-wrapper .image-tiles-dropdown-description {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .dropitem-image-wrapper .image-tiles-item-wrapper .image-tiles-dropdown-description {
    position: absolute;
    color: #fff;
    left: 20px;
    bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .dropitem-image-wrapper .image-tiles-item-wrapper .image-tiles-dropdown-description {
    position: absolute;
    left: 10px;
    bottom: 12px;
  }
}

/************ Skandinavisk colors ***********/
/******* Aspect ratios *****/
/****** Transition *******/
.navigation-text {
  font-size: 16px;
  line-height: 24px;
  font-family: "Skandinavisk", sans-serif;
}

.navigation-text__text {
  font-family: "Skandinavisk", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 1199px) {
  .navigation-text__text {
    padding: 0 16px;
  }
}

.navigation-text__link {
  font-size: 18px;
  line-height: 24px;
}

/************ Skandinavisk colors ***********/
/******* Aspect ratios *****/
/****** Transition *******/
.dropmenu-item__images {
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .dropmenu-item__images {
    height: calc(100vh - 320px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

.image-tiles-content-wrapper {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .image-tiles-holder {
    padding-bottom: 100%;
  }
}

.image-tiles-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}

.image-tiles-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .image-tiles-title {
    font-size: 16px;
  }
}

.image-tiles-subtitle {
  font-size: 14px;
  color: #606060;
}
@media only screen and (max-width: 1199px) {
  .image-tiles-subtitle {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .image-tiles-subtitle {
    font-size: 12px;
  }
}

.image-tiles-dropdown-description {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .image-tiles-dropdown-description {
    position: absolute;
    color: #fff;
    left: 20px;
    bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .image-tiles-dropdown-description {
    position: absolute;
    left: 10px;
    bottom: 12px;
  }
}

/************ Skandinavisk colors ***********/
/******* Aspect ratios *****/
/****** Transition *******/
.image-container-wrapper {
  position: relative;
  width: 650px;
  max-width: 100%;
}
.image-container-wrapper .image-holder {
  padding-bottom: 56.25%;
}
.image-container-wrapper .dropdown-nav-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.image-container-wrapper .nav-image-content {
  position: absolute;
  color: #fff;
  width: 50%;
  top: 20px;
  left: 20px;
  font-size: 18px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .image-container-wrapper .nav-image-content {
    font-size: 14px;
    top: 10px;
    left: 10px;
  }
}
@media only screen and (max-width: 415px) {
  .image-container-wrapper .nav-image-content {
    font-size: 12px;
    top: 10px;
    left: 10px;
  }
}
.image-container-wrapper .nav-image-content .image-content-title {
  margin: 0;
  font-family: "SkandinaviskBold", sans-serif;
}
.image-container-wrapper .nav-image-content .image-content-description {
  margin: 0;
  line-height: 17px;
}
.image-container-wrapper .image-button-wrapper {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 90px);
}
@media only screen and (max-width: 1199px) {
  .image-container-wrapper .image-button-wrapper {
    left: calc(50% - 76px);
    bottom: 10px;
  }
}
.image-container-wrapper .image-button-wrapper .nav-img-btn {
  width: 180px;
}
.image-container-wrapper .image-button-wrapper .nav-img-btn.nav-img-btn--custom-text {
  color: var(--cta-text-color);
}
.image-container-wrapper .image-button-wrapper .nav-img-btn.nav-img-btn--custom-bg {
  background-color: var(--cta-bg-color);
}
.image-container-wrapper .image-button-wrapper .nav-img-btn.nav-img-btn--custom-bg:hover {
  background-color: transparent;
  border: 1px solid var(--cta-bg-color);
  color: var(--cta-bg-color);
}
@media only screen and (max-width: 767px) {
  .image-container-wrapper .image-button-wrapper .nav-img-btn {
    width: 152px;
  }
}

.main-header {
  top: 36px;
  position: absolute;
  background-color: #fff;
  width: 100%;
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
  /* Sticky header classes */
}
.scroll-down .main-header {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  top: 0;
  position: fixed;
}
.scroll-up .main-header {
  -webkit-transform: none;
          transform: none;
  top: 0;
  position: fixed;
}
.scroll-animate .main-header {
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1199px) {
  .main-header {
    min-height: 60px;
  }
}

.footer-logo-wrapper {
  display: block;
  padding-bottom: 30px;
}

.footer-logo-img {
  width: 160px;
  height: 80px;
}

.footer-socials-wrapper {
  margin-left: -5px;
}

.footer-icon-link {
  margin-left: 25px;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.footer-icon-link:first-child {
  margin-left: 0;
}
.footer-icon-link .icon {
  font-size: 24px;
}
.footer-icon-link .icon:hover::before {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.4, 1.4, 1.4);
            transform: scale3d(1.4, 1.4, 1.4);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.4, 1.4, 1.4);
            transform: scale3d(1.4, 1.4, 1.4);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.footer-links-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-links-heading {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
}

.footer-list {
  padding-top: 20px;
}

.footer-link-item {
  font-size: 14px;
  padding-bottom: 6px;
}
.footer-link-item:hover {
  color: #606060;
}

.footer-form-wrapper {
  width: 100%;
  padding: 0;
  font-family: "Skandinavisk", sans-serif;
}
.footer-form-wrapper a {
  -webkit-text-decoration: revert;
          text-decoration: revert;
}

.footer-form__input::-webkit-input-placeholder {
  font-size: 12px;
}

.footer-form__input::-moz-placeholder {
  font-size: 12px;
}

.footer-form__input:-ms-input-placeholder {
  font-size: 12px;
}

.footer-form__input::-ms-input-placeholder {
  font-size: 12px;
}

.footer-form__input::placeholder {
  font-size: 12px;
}

.footer-form__title {
  font-family: "Skandinavisk", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.footer-form__group {
  width: 65%;
  flex-basis: 65%;
}
.footer-form__group label {
  display: none;
}

.footer-form__btn-wrap {
  flex-grow: 1;
}

.footer-form__btn {
  min-height: 37px;
  padding: 0;
  font-family: "Skandinavisk", sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
}
.footer-form__btn:hover {
  border: 1px solid #000;
  border-left: 0;
}

.footer-form__row {
  margin-bottom: 15px;
  display: flex;
}

.footer-form__confirmation {
  display: none;
}

.footer-form-wrapper.was-submitted .footer-form__confirmation {
  display: flex;
  flex-flow: column;
}
.footer-form-wrapper.was-submitted .newsletter-form-footer {
  display: none;
}

.footer-content {
  background-color: #f4f4f4;
  max-width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px;
}
@media only screen and (max-width: 1199px) {
  .footer-container {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-container {
    padding: 0 30px;
  }
}

.footer-column {
  width: 25%;
  padding: 30px 0;
}
@media only screen and (max-width: 1199px) {
  .footer-column {
    width: 50%;
    padding: 30px 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-column {
    width: 100%;
  }
  .footer-column:first-child {
    order: 3;
  }
  .footer-column:last-child {
    order: -1;
  }
}
/*# sourceMappingURL=global.css.map*/