/*!
 * Project: Sesam Interior — Custom Theme
 * Owner / Author: Johan (Sesam Interior AB)
 * Year: 2025
 * File: style.min.css (licensed & adapted for Sesam Interior AB)
 *
 * Legal note:
 *  - Proprietary font-face definitions removed (Akkurat, Times.ttf).
 *  - Uses open-license Google Fonts: Inter (sans), Lora (serif).
 *  - Replace ../img/* assets with your own files/logos to avoid IP issues.
 *  - This file is customized for Sesam Interior AB and may not be resold as-is by third parties.
 *  - Unique ID: SI-JOHAN-20251109-001
 */

/* Open-license fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Lora:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-highlight-color: transparent
}

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

audio,
iframe,
video {
    display: block
}

#wrapper {
    overflow: hidden
}

.inner {
    max-width: 1600px;
    margin: auto;
    padding: 0 3rem
}

.inner--s {
    max-width: 600px
}

.inner--m {
    max-width: 900px
}

.inner--l {
    max-width: 1200px
}

.inner--min {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.inner--mid {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.inner--max {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.none {
    display: none
}

.static {
    position: static
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.fixed {
    position: fixed
}

.center--x,
.center--y,
.center--xy {
    position: absolute
}

.center--x {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.center--y {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.center--xy {
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0)
}

.scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.m--0 {
    margin: 0
}

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

.mt--1 {
    margin-top: 1rem
}

.mt--2 {
    margin-top: 2rem
}

.mt--3 {
    margin-top: 3rem
}

.mt--4 {
    margin-top: 4rem
}

.mr--1 {
    margin-right: 1rem
}

.mr--2 {
    margin-right: 2rem
}

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

.mb--1 {
    margin-bottom: 1rem
}

.mb--2 {
    margin-bottom: 2rem
}

.mb--3 {
    margin-bottom: 3rem
}

.mb--4 {
    margin-bottom: 4rem
}

.ml--1 {
    margin-left: 1rem
}

.ml--2 {
    margin-left: 2rem
}

.p--0 {
    padding: 0
}

.p--1 {
    padding: 1rem
}

.p--2 {
    padding: 2rem
}

.p--3 {
    padding: 3rem
}

.iframe {
    position: relative;
    padding-bottom: 56.25%
}

.iframe > iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.cover {
    background: center center/cover no-repeat
}

.flx {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.aic {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.ais {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.aie {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.jcc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.jcb {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.jca {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.jcs {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.jce {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.flx--col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.flx--col-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.flx--row-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.flx--wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flx--1 {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.grid {
    display: grid
}

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

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

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

.grid--5 {
    grid-template-columns: repeat(5,1fr)
}

.grid--6 {
    grid-template-columns: repeat(6,1fr)
}

.grid--gap-1 {
    grid-gap: 1rem
}

.grid--gap-2 {
    grid-gap: 2rem
}

.grid--gap-3 {
    grid-gap: 3rem
}

.grid--gap-4 {
    grid-gap: 4rem
}

.grid--gap-5 {
    grid-gap: 5rem
}

body,
button,
html,
input,
textarea {
    font: 300 16px 'Inter', sans-serif;
    line-height: 19px;
    color: #000;
    -webkit-font-smoothing: antialiased
}

.text--small {
    font-size: .875rem
}

.text--smaller {
    font-size: .875em
}

.text--big {
    font-size: 2rem
}

.text--bigger {
    font-size: 2em
}

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

.text--lower {
    text-transform: lowercase
}

.text--black {
    color: #000
}

.text--white {
    color: #fff
}

.bold,
b,
strong {
    font-family: 'Inter', sans-serif;
    font-weight: 700
}

.normal {
    font-family: 'Inter', sans-serif;
    font-weight: 400
}

.akkurat {
    font-family: 'Inter', sans-serif
}

.times {
    font-family: 'Lora', serif
}

.ta--c {
    text-align: center
}

.ta--l {
    text-align: left
}

.ta--r {
    text-align: right
}

a .link {
    color: #fff;
    text-decoration: none
}

.cursor--default {
    cursor: default
}

.cursor--move {
    cursor: move
}

.cursor--not-allowed {
    cursor: not-allowed
}

.cursor--pointer {
    cursor: pointer
}

.h1,
.h2,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    font-weight: 400
}

h3,
h4 {
    font-family: 'Inter', sans-serif
}

.h1,
h1 {
    font-size: 2.5rem;
    line-height: 3rem
}

.h2,
h2 {
    font-size: 1.75rem;
    line-height: 2.25rem;
    letter-spacing: 2px
}

.h3,
h3 {
    font-size: 1.5rem;
    line-height: 2rem
}

.h4,
h4 {
    font-size: 1rem
}

p+* {
    margin-top: 2rem
}

*+p {
    margin-top: .5rem
}

p+p {
    margin-top: 2rem
}

ol,
ul {
    margin: 2rem 0;
    padding-left: 3rem
}

ul:first-child {
    margin-top: 0
}

ul:last-child {
    margin-bottom: 0
}

button,
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox
}

input[type=radio] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio
}

@media only screen and (min-width: 1025px) {
    .l--hide {
        display: none!important
    }
}

@media only screen and (min-width: 768px) and (max-width:1024px) {
    .m--hide {
        display: none!important
    }

    .m-grid--1 {
        grid-template-columns: repeat(1,1fr)
    }

    .m-grid--2 {
        grid-template-columns: repeat(2,1fr)
    }

    .m-grid--3 {
        grid-template-columns: repeat(3,1fr)
    }

    .m-grid--4 {
        grid-template-columns: repeat(4,1fr)
    }

    .m-grid--gap-1 {
        grid-gap: 1rem
    }

    .m-grid--gap-2 {
        grid-gap: 2rem
    }

    .m-grid--gap-3 {
        grid-gap: 3rem
    }
}

@media only screen and (max-width: 767px) {
    body,
    button,
    html,
    input,
    textarea {
        font-size: 14px
    }

    h2 {
        font-size: 1.5rem
    }

    .inner {
        padding: 0 1.5rem
    }

    .inner--min {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .inner--mid {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }

    .inner--max {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .s--hide {
        display: none!important
    }

    .s-grid--1 {
        grid-template-columns: repeat(1,1fr)
    }

    .s-grid--2 {
        grid-template-columns: repeat(2,1fr)
    }

    .s-grid--3 {
        grid-template-columns: repeat(3,1fr)
    }

    .s-grid--gap-1 {
        grid-gap: 1rem
    }

    .s-grid--gap-2 {
        grid-gap: 2rem
    }

    .s-grid--gap-3 {
        grid-gap: 3rem
    }
}

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

.link {
    letter-spacing: 1px
}

sup {
    font-size: .5em;
    position: relative;
    right: -.25em
}

hr {
    height: 1px;
    background: #fff;
    border: none;
    margin: 4rem 0
}

.text--black {
    color: #0f0f0f
}

.text--gray {
    color: #f1f1f1
}

.bg--black {
    background-color: #0f0f0f
}

.bg--gray {
    background-color: #f1f1f1
}

blockquote {
    font-size: 2.5rem;
    line-height: 3rem;
    font-style: italic;
    font-family: 'Lora', serif;
    max-width: 600px;
    margin: auto
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s
}

.header .inner {
    position: relative;
    z-index: 30;
    background: #0f0f0f
}

.header--sticky {
    position: fixed;
    z-index: 50;
    -webkit-box-shadow: 0 0 .5rem rgba(0,0,0,.4);
    box-shadow: 0 0 .5rem rgba(0,0,0,.4)
}

.header+main,
.header+section {
    padding-top: 83px
}

.header a,
.hero__link {
    font-size: 14px
}

.header .flx a+a {
    margin-left: 1rem
}

.header__logo {
    z-index: 2;
    width: 200px;
    height: 70px
}

.header__logo a,
.header__logo img {
    display: block;
    width: 100%;
    height: 100%
}

.a {
    position: relative
}

.a::after {
    content: '';
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    right: -22px;
    top: 50%;
    background: url(../img/chevron-right--gray.svg) center center/100% no-repeat;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s
}

.a--open {
    z-index: 100
}

.a--open::after {
    -webkit-transform: translateY(-50%) rotate(270deg);
    -ms-transform: translateY(-50%) rotate(270deg);
    transform: translateY(-50%) rotate(270deg)
}

.border--white {
    border-bottom: 1px solid #fff;
    padding-bottom: 4rem
}

.menu {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 83px;
    background: #0f0f0f;
    width: 600px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .6s,-webkit-box-shadow .6s;
    transition: -webkit-transform .6s,-webkit-box-shadow .6s;
    -o-transition: transform .6s,box-shadow .6s;
    transition: transform .6s,box-shadow .6s;
    transition: transform .6s,box-shadow .6s,-webkit-transform .6s,-webkit-box-shadow .6s
}

.menu--open {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0 0 1rem #0f0f0f;
    box-shadow: 0 0 1rem #0f0f0f
}

@media screen and (min-width: 1600px) {
    .menu {
        left: calc((100% - 1600px)/2 - 600px);
        left: calc((100% - 1600px)/2)
    }

    .menu--open {
        left: calc((100% - 1600px)/2)
    }
}

.menu__top {
    padding: 4rem 8rem 4rem 3rem
}

.menu__btm {
    padding: 3rem;
    padding-top: 0
}

.nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.nav__left {
    margin-right: 6rem
}

.menu__top a,
.nav__title {
    display: block;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f1f1f1;
    min-width: 140px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff
}

.nav__title {
    display: inline-block;
    margin-bottom: 1rem
}

.menu__btm a {
    display: inline-block;
    min-width: 140px;
    font-size: 12px;
    letter-spacing: 1px
}

.menu__btm a+a {
    margin-left: 6rem
}

.hero {
    position: relative
}

.hero::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 0;
    background: #fff;
    left: 50%;
    bottom: -30px;
    -webkit-animation: spike_hero 1s 0s ease-in-out forwards;
    animation: spike_hero 1s 0s ease-in-out forwards
}

.hero--more::after {
    -webkit-animation: spike_more 3s 3;
    animation: spike_more 3s 3;
    -webkit-animation-delay: 0s!important;
    animation-delay: 0s!important;
    height: 60px
}

.hero--more::before {
    content: 'MORE';
    position: absolute;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 50px;
    color: #fff;
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
    -webkit-animation: more 9s forwards;
    animation: more 9s forwards
}

@-webkit-keyframes more {
    0% { opacity: 0 }
    20% { opacity: 1 }
    80% { opacity: 1 }
    100% { opacity: 0 }
}

@keyframes more {
    0% { opacity: 0 }
    20% { opacity: 1 }
    80% { opacity: 1 }
    100% { opacity: 0 }
}

.body--frontpage .hero::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

@-webkit-keyframes spike_hero {
    from { height: 0 }
    to { height: 60px }
}

@keyframes spike_hero {
    from { height: 0 }
    to { height: 60px }
}

@-webkit-keyframes spike_more {
    0% { bottom: -30px }
    50% { bottom: -15px }
    100% { bottom: -30px }
}

@keyframes spike_more {
    0% { bottom: -30px }
    50% { bottom: -15px }
    100% { bottom: -30px }
}

.hero__img {
    position: relative;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden
}

.hero__img__img.hero--animate {
    -webkit-transform: translate(-50%,-50%) scale(1.1);
    -ms-transform: translate(-50%,-50%) scale(1.1);
    transform: translate(-50%,-50%) scale(1.1)
}

.hero__img__img {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #0f0f0f center center/cover no-repeat;
    -webkit-transition: -webkit-transform 10s linear;
    transition: -webkit-transform 10s linear;
    -o-transition: transform 10s linear;
    transition: transform 10s linear;
    transition: transform 10s linear, -webkit-transform 10s linear
}

.hero__img,
.hero__img__img {
    margin: auto;
    padding-bottom: 46%
}

.hero__img__heading {
    z-index: 1;
    font-size: 6rem;
    line-height: 6rem;
    color: #fff
}

.body--frontpage .hero__img__heading {
    -webkit-animation: hero_heading 1s 2s ease-in-out;
    animation: hero_heading 1s 2s ease-in-out
}

@-webkit-keyframes hero_heading {
    from { top: 30% }
    to { top: 50% }
}

@keyframes hero_heading {
    from { top: 30% }
    to { top: 50% }
}

.hero__img__logo {
    z-index: 1;
    width: 400px
}

.hero__link {
    position: absolute
}

.hero__link:first-child {
    left: 1.5rem;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left
}

.hero__link:last-child {
    right: 1.5rem;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right
}

@media screen and (min-width: 768px) {
    .single-supplier .hero__img,
    .single-supplier .hero__img__img {
        padding-bottom:40%
    }
}

.hero__img-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto
}

.hero__img-wrapper img {
    display: block;
    max-height: 550px;
    margin: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.hero__img-wrapper::before,
.hero__img-wrapper::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    width: 80px;
    height: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.hero__img-wrapper::before {
    left: -40px;
    background: linear-gradient(to right,rgba(15,15,15,1) 50%,rgba(15,15,15,0))
}

.hero__img-wrapper::after {
    right: -40px;
    background: linear-gradient(to left,rgba(15,15,15,1) 50%,rgba(15,15,15,0))
}

@media screen and (max-width: 1200px) {
    .hero__img-wrapper::before,
    .hero__img-wrapper::after {
        display:none
    }
}

.img {
    position: relative;
    overflow: hidden
}

.img > img {
    position: absolute;
    display: block;
    min-width: 100%;
    min-height: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.img--50 { padding-bottom: 50% }
.img--65 { padding-bottom: 65% }
.img--100 { padding-bottom: 100% }
.img--140 { padding-bottom: 140% }

.split {
    position: relative;
    overflow: hidden
}

.split+.split {
    margin-top: 8rem
}

.split__text {
    position: absolute;
    z-index: 2;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 42%;
    height: 100%;
    left: 0;
    text-shadow: 0 0 4px rgba(15,15,15,.2)
}

.split::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 42%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to right,rgba(15,15,15,1) 80%,rgba(0,0,0,0))
}

.split--reverse::after {
    background: linear-gradient(to left,rgba(15,15,15,1) 80%,rgba(0,0,0,0));
    left: auto;
    right: 0
}

.split__img {
    width: 70%;
    padding-bottom: 40%;
    margin-left: auto
}

.split--reverse .split__text {
    left: auto;
    right: 0
}

.split--reverse .split__img {
    margin-left: 0;
    margin-right: auto
}

.ul {
    position: relative;
    font-size: 75px;
    line-height: 75px;
    padding-bottom: 2rem;
    margin-bottom: 2rem
}

.ul::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 180px;
    max-width: 100%;
    background: #fff
}

.slides {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.slides--snap {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.slides--snap > * {
    scroll-snap-align: start
}

.slides__slide {
    position: relative;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-bottom: 50%;
    text-align: center
}

.slides .times {
    font-size: 4rem;
    line-height: 4.5rem
}

.slides-i {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem
}

.slides-i__item {
    width: 20px;
    height: 2px;
    background: #ddd
}

.slides-i__item+.slides-i__item {
    margin-left: .5rem;
    cursor: pointer
}

.slides-i__item--active {
    background: #0f0f0f
}

.shop {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 3rem
}

.shop__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.shop__item__title {
    position: relative;
    padding-bottom: 1rem;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 1rem
}

.shop__item__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 2px;
    background: #0f0f0f
}

.shop__item__img {
    display: block;
    padding-bottom: 134%;
    background: #f7f7f7 center center/cover no-repeat;
    margin-top: auto
}

.shop__item__link {
    text-align: right;
    margin-top: 1rem
}

.shop__item__link a {
    position: relative;
    display: inline-block;
    color: #0f0f0f;
    padding-bottom: .5rem
}

.shop__item__link a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background: #0f0f0f
}

.shop__item__link a:hover::after {
    -webkit-animation: link_line .3s forwards;
    animation: link_line .3s forwards
}

@-webkit-keyframes link_line {
    from { width: 0 }
    to { width: 100% }
}

@keyframes link_line {
    from { width: 0 }
    to { width: 100% }
}

.insta {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 3rem
}

.insta__box {
    background: center center/cover no-repeat;
    padding-bottom: 100%
}

.leverantörer {
    position: relative;
    overflow: hidden
}

.leverantör+.leverantör {
    margin-top: 6rem
}

.leverantör::before,
.leverantör::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 25%;
    height: 100%;
    top: 0
}

.leverantör::before {
    left: 0;
    background: linear-gradient(to right,rgba(15,15,15,.75) 60%,rgba(15,15,15,0))
}

.leverantör::after {
    right: 0;
    background: linear-gradient(to left,rgba(15,15,15,.75) 60%,rgba(15,15,15,0))
}

.leverantör .ul {
    position: absolute;
    z-index: 2;
    top: 2rem
}

.leverantörer__img {
    max-width: 70%;
    margin: auto;
    padding-bottom: 40%
}

.leverantörer__link {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 2rem
}

#brands {
    text-align: center
}

#brands a+a {
    margin-left: 1rem
}

.leverantörer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.leverantör-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-right: 4rem
}

.leverantörer-logo {
    display: block;
    max-width: 280px
}

.leverantörer-text {
    max-width: 600px
}

.leverantörer-grid img {
    display: block
}

.leverantörer-grid__btm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2rem
}

.leverantörer-grid__btm > div {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.leverantörer-grid__btm > div+div {
    margin-left: 2rem
}

.loading {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    -webkit-animation: loading 1s 2s ease-in-out forwards;
    animation: loading 1s 2s ease-in-out forwards
}

@-webkit-keyframes loading {
    from { height: 100% }
    to { height: 83px }
}

@keyframes loading {
    from { height: 100% }
    to { height: 83px }
}

.loading__logo {
    position: fixed;
    z-index: 200;
    width: 200px;
    height: 70px;
    left: 50%;
    top: 50%;
    -webkit-animation: loading_logo 1s 2s ease-in-out forwards;
    animation: loading_logo 1s 2s ease-in-out forwards;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.loading__logo img {
    display: block;
    width: 100%;
    height: 100%
}

@-webkit-keyframes loading_logo {
    from { top: 50% }
    to { top: 42px }
}

@keyframes loading_logo {
    from { top: 50% }
    to { top: 42px }
}

.loading::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 0;
    left: 50%;
    background: #fff;
    -webkit-animation: spike 2s;
    animation: spike 2s
}

@-webkit-keyframes spike {
    0% { height: 0; bottom: 0 }
    50% { height: 100px; bottom: 0 }
    100% { height: 0; bottom: 140px }
}

@keyframes spike {
    0% { height: 0; bottom: 0 }
    50% { height: 100px; bottom: 0 }
    100% { height: 0; bottom: 140px }
}

.animate--run {
    -webkit-animation: animate 1s forwards;
    animation: animate 1s forwards
}

.animate--pre {
    position: relative;
    opacity: 0
}

.animate--run.split .split__text {
    -webkit-animation: animate_split 1s;
    animation: animate_split 1s
}

.animate--run.supplier .ul {
    -webkit-animation: animate_supplier 1s;
    animation: animate_supplier 1s
}

@-webkit-keyframes animate {
    from { top: 6rem; opacity: 0 }
    to { top: 0; opacity: 1 }
}

@keyframes animate {
    from { top: 6rem; opacity: 0 }
    to { top: 0; opacity: 1 }
}

@-webkit-keyframes animate_split {
    from { top: -2rem; opacity: 0 }
    to { top: 0; opacity: 1 }
}

@keyframes animate_split {
    from { top: -2rem; opacity: 0 }
    to { top: 0; opacity: 1 }
}

@-webkit-keyframes animate_supplier {
    from { top: 0; opacity: 0 }
    to { top: 2rem; opacity: 1 }
}

@keyframes animate_supplier {
    from { top: 0; opacity: 0 }
    to { top: 2rem; opacity: 1 }
}

.footer__heading {
    margin-bottom: 1.5rem
}

.footer__cols > div+div:not(.footer__logo),
.footer__cols__cols > div+div {
    margin-left: 4rem
}

.footer__cols__nav a+a {
    margin-top: 1.5rem
}

.footer__logo {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto;
    width: 170px
}

.vertical {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width: 768px) and (max-width:1024px) {
    .hero__img,
    .hero__img__img {
        padding-bottom:60%
    }

    .hero__img__heading {
        font-size: 4rem;
        line-height: 4.5rem
    }

    .ul {
        font-size: 3rem;
        line-height: 3.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem
    }

    .ul::after {
        width: 100px
    }

    .slides .times {
        font-size: 3rem;
        line-height: 3.5rem
    }

    .footer__logo {
        margin: auto;
        margin-bottom: 2rem
    }

    .footer__cols {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media only screen and (max-width: 767px) {
    .header {
        height:70px
    }

    .header+main,
    .header+section {
        padding-top: 70px
    }

    .header .flx,
    .header .inner {
        height: 100%
    }

    .header__logo,
    .loading__logo {
        width: 150px
    }

    @-webkit-keyframes loading {
        from { height:100% }
        to { height:70px }
    }

    @keyframes loading {
        from { height:100% }
        to { height:70px }
    }

    @-webkit-keyframes loading_logo {
        from { top:50% }
        to { top:35px }
    }

    @keyframes loading_logo {
        from { top:50% }
        to { top:35px }
    }

    .menu {
        position: fixed;
        width: 100%;
        height: calc(100% - 70px);
        top: 70px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .menu__top {
        padding: 2rem
    }

    .nav {
        display: block
    }

    .nav__left,
    .nav__right {
        margin: 0
    }

    .nav__left a {
        padding: .5rem 0;
        margin: 0;
        border: 0
    }

    .nav__right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        margin-top: 2rem
    }

    .nav__right a {
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        letter-spacing: 1px;
        margin: 0
    }

    .nav__right a,
    .nav__title {
        padding-bottom: .5rem
    }

    .nav__title {
        min-width: calc(50% - 1rem)
    }

    .menu__btm {
        padding: 2rem
    }

    .menu__btm a+a {
        margin-left: 2rem
    }

    .toggle {
        position: relative;
        width: 30px;
        height: 16px;
        cursor: pointer
    }

    .toggle > span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        -webkit-transition: top .3s .3s,-webkit-transform .3s;
        transition: top .3s .3s,-webkit-transform .3s;
        -o-transition: transform .3s,top .3s .3s;
        transition: transform .3s,top .3s .3s;
        transition: transform .3s,top .3s .3s,-webkit-transform .3s
    }

    .toggle > span:first-child {
        top: 0
    }

    .toggle > span:last-child {
        top: 14px;
        background: #f1f1f1
    }

    .toggle--open > span {
        -webkit-transition: top .3s,-webkit-transform .3s .3s;
        transition: top .3s,-webkit-transform .3s .3s;
        -o-transition: transform .3s .3s,top .3s;
        transition: transform .3s .3s,top .3s;
        transition: transform .3s .3s,top .3s,-webkit-transform .3s .3s
    }

    .toggle--open > span:first-child {
        top: 7px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .toggle--open > span:last-child {
        top: 7px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hero__img,
    .hero__img__img {
        padding-bottom: 100%
    }

    .hero--landscape .hero__img,
    .hero--landscape .hero__img__img {
        padding-bottom: 65%
    }

    .hero__img__heading {
        font-size: 3rem;
        line-height: 3rem;
        margin-top: -12px
    }

    .leverantörer-logo {
        margin: 2rem 0
    }

    .leverantörer-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .leverantörer-heading {
        margin-right: 0
    }

    .leverantörer-grid__btm {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .leverantörer-grid__btm > div+div {
        width: 100%;
        margin: 0;
        margin-top: 2rem
    }

    .leverantörer-grid__btm img {
        width: 100%!important;
        height: auto!important
    }

    .ul {
        font-size: 2.5rem;
        line-height: 2.5rem;
        padding-bottom: 1rem;
        letter-spacing: 1px
    }

    .ul::after {
        height: 1px;
        width: 120px
    }

    .split {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .split::after {
        width: 100%;
        height: 4rem;
        background: linear-gradient(to bottom,rgba(15,15,15,1),rgba(0,0,0,0))
    }

    .split__text {
        position: static;
        width: 100%;
        margin-top: 1rem
    }

    .split .ul {
        position: absolute;
        top: 0;
        margin: 0
    }

    .split__img {
        width: 100%;
        padding-bottom: 65%;
        margin-top: 1.5rem
    }

    .split+.split {
        margin-top: 4rem
    }

    .leverantörer+.leverantörer {
        margin-top: 3rem
    }

    .leverantörer__img {
        max-width: none;
        padding-bottom: 65%
    }

    .leverantörer::before {
        background: linear-gradient(to right,rgba(15,15,15,.5) 5%,rgba(15,15,15,0))
    }

    .leverantörer::after {
        background: linear-gradient(to left,rgba(15,15,15,.5) 5%,rgba(15,15,15,0))
    }

    #toggle-brands {
        position: relative;
        display: inline-block;
        cursor: pointer;
        padding-right: 2rem
    }

    #toggle-brands::after {
        content: '';
        position: absolute;
        width: 22px;
        height: 22px;
        right: 0;
        top: 50%;
        background: url(../img/chevron-right--gray.svg) center center/100% no-repeat;
        -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s
    }

    #toggle-brands.open::after {
        -webkit-transform: translateY(-50%) rotate(270deg);
        -ms-transform: translateY(-50%) rotate(270deg);
        transform: translateY(-50%) rotate(270deg)
    }

    #brands {
        text-align: left;
        display: none
    }

    #brands a {
        display: block;
        margin: 0!important;
        margin-top: .25rem!important
    }

    .slides {
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }

    .slides__slide {
        padding-bottom: 110%
    }

    .slides-i {
        margin-bottom: 1rem
    }

    .slides .times {
        font-size: 3rem;
        line-height: 3.5rem
    }

    .shop {
        grid-template-columns: repeat(2,1fr);
        grid-gap: 2rem
    }

    .shop__item__title {
        font-size: .875em
    }

    .insta {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        overflow: auto;
        margin-top: -2rem
    }

    .insta__box {
        width: 100%;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    blockquote {
        font-size: 2rem;
        line-height: 2.5rem
    }

    .footer {
        font-size: 13px
    }

    .footer__cols__cols {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3,auto);
        grid-template-rows: 2;
        grid-gap: 1rem;
        margin: 0!important
    }

    .footer__cols__cols > * {
        margin: 0!important
    }

    .footer__logo {
        width: 120px;
        margin: auto;
        margin-bottom: 2rem
    }

    .footer__logo img {
        display: block;
        width: 100%;
        height: 100%
    }

    .footer__heading {
        margin-bottom: .25rem
    }
}
