/* Koffsan */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700&family=Yeseva+One&display=swap');

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;
    --section-width: 150rem;

    /* 	Colors */
    --primary-color: 25, 28, 58;
    --secondary-color: 254, 179, 94;

    --black-color: 20, 20, 20;
    --gray-dark-color: 61, 61, 61;
    --gray-color: 162, 167, 170;
    --gray-light-color: 245, 243, 238;
    --white-color: 255, 255, 255;

    --red-color: 113, 10, 10;

    /* 	Typography */
    --base-size: 1.8rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1200;
    --mobile-menu-height: 12rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

/* Layout
========================================================================== */
.section-block {
    padding: 15rem 7rem;
}

/* Speciella paddings */
.p-2 {
    padding: 2rem !important;
}

.p-4 {
    padding: 4rem !important;
}

.pt--5 .section-block,
.pt--5:not(.section-wrapper) {
    padding-top: -5rem;
}

.pt-5 .section-block,
.pt-5:not(.section-wrapper) {
    padding-top: 5rem;
}

.pt-3 .section-block,
.pt-3:not(.section-wrapper) {
    padding-top: 3rem;
}

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

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

.pr-0 .section-block {
    padding-right: 0;
}

.pb-5 {
    padding-bottom: 5rem;
}

.p-0 .section-block {
    padding: 0;
}

.pl-0 .section-block {
    padding-left: 0;
}


/* Speciella margins */
.mt-0 {
    margin-top: 0;
}

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

.mt-5 {
    margin-top: 5rem;
}

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

.mb-5 {
    margin-bottom: 5rem;
}

.mt--10 {
    margin-top: -10rem;
}

/* Speciella bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 6rem 4rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
}

/* Rubriker */
.section-title {
    font-size: 5.5rem;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 4rem;
    color: rgb(var(--gray-dark-color));
    font-family: 'Yeseva One', cursive;
}

.small-title,
.section-menu h6 {
    font-size: 2.4rem;
    padding-bottom: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(var(--gray-dark-color));
    font-family: 'Yeseva One', cursive;
}

.text-label {
    font-size: 1.5rem;
    color: rgb(var(--secondary-color));
    padding-bottom: 2rem;
}

.big-title {
    font-size: 6.5rem;
}

/* Brödtext och länkar */
p,
li {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 400;
}

/* Övriga klasser */
.text-smaller {
    font-size: 1.5rem;
}

.ingress {
    font-size: 2.2rem;
    font-weight: 400;
    padding-bottom: 1.5rem;
}

.text-block-center {
    max-width: 80rem;
    margin: 0 auto;
}

.text-block {
    max-width: 65rem;
}

.text-block-center p {
    max-width: 70rem;
    margin: 0 auto;
}

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

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

.text-center,
.text-center * {
    text-align: center;
}

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

@media only screen and (max-width: 980px) {
    .section-title {
        font-size: 4rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        padding-bottom: 2rem;
        font-size: 3.2rem;
    }
}

/* Knappar och speciella länkar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-wrapper .btn {
    margin: .5rem;
}

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

.btn {
    display: inline-block;
    min-width: 16rem;
    padding: 1.7rem 2.8rem;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0;
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.btn-accent-green-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

.btn-secondary-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

.btn-secondary-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-border {
    color: rgb(var(--primary-color));
    background-color: transparent;
    border: 1px solid rgb(var(--primary-color));
}

.btn-primary-border:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-white-border {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

.btn-white-border:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

/* Länk med pil */
.arrow-link {
    padding-right: 1rem;
    font-weight: 500;
}

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .3s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .3s ease;
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

/* Färger
========================================================================== */
/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Bakgrundsfärger */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-light {
    background-color: rgb(var(--primary-light-color), .2);
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}




/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(1);
    color: white;
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(0);
}

/* Innehåll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 45rem;
    max-height: calc(100vh - 12rem);
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

.popup-wrapper .btn-wrapper {
    margin-top: 1rem;
}

@media only screen and (max-width: 450px) {
    .popup-window {
        padding: 2rem 3rem 2rem 2rem;
    }

    .icon-close-popup {
        top: 1rem;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* Specifika bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

/* Bredder for specifika cards */
.cards-wrapper.w-25-0 .card-item {
    width: calc(100% / 4);
}

.cards-wrapper.w-33-0 .card-item {
    width: calc(100% / 3);
}

.cards-wrapper .card-item.w-100 {
    width: calc(100% - 2rem);
    margin: 1rem;
}

@media only screen and (max-width: 1050px) {

    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
    }

    .cards-wrapper.w-25-0 .card-item {
        width: calc(100% / 3);
    }
}

@media only screen and (max-width: 900px) {
    .cards-wrapper.w-25-0 .card-item {
        width: calc(100% / 2);
    }
}

@media only screen and (max-width: 750px) {

    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .cards-wrapper.w-25-0 .card-item {
        width: 100%;
    }
}

/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
    background-color: rgb(var(--gray-light-color));
}

.cards-2 .small-title {
    padding-bottom: 1rem;
}

.cards-2 p,
.cards-2 li {
    font-size: 1.6rem;
}

.cards-2 .card-item.red {
    background-color: rgb(var(--red-color));
}

.cards-2 .card-item.red p {
    color: rgb(var(--white-color));
    padding: 0;
}

.cards-2 .card-item.red .opacity {
    opacity: 0.7;
    padding-bottom: 1rem;
    line-height: 0.8;
}


@media only screen and (max-width: 580px) {
    .cards-2 .card-item {
        padding: 2rem;
    }
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 8rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Specifika bredder */
.split-wrapper .w-40 {
    width: 40%;
}

.split-wrapper .w-60 {
    width: 60%;
}

@media screen and (max-width: 1100px) {

    .split-content,
    .split-wrapper .w-40,
    .split-wrapper .w-60 {
        width: 100%;
    }

    .split-image {
        width: 100%;
        min-height: 30rem;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        padding: 0 0 3rem 0;
    }
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height) - 4rem);
    background: linear-gradient(90deg, rgb(var(--black-color), .25) 0%, rgb(var(--black-color), .25), rgb(var(--black-color), .25) 100%);
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1200px) {
    .bg-image {
        margin-top: calc(-1 * var(--mobile-menu-height));
    }
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

/* Parallax
========================================================================== */
.parallax {
    min-height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* WebbEss Stamp
========================================================================== */
.webbess-stamp {
    min-width: 20rem;
}

.webbess-stamp a {
    padding: 0;
    font-size: 1.3rem;
    font-weight: 400;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.webbess-stamp img {
    max-width: 3rem;
    margin-left: 1rem;

}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    background-color: transparent;
}

header.scrolled {
    background-color: rgb(var(--white-color));
}

header .container {
    max-width: none;
}

/* top header */
.top-header {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 4rem;
    border-bottom: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    overflow: hidden;
    transition: .3s ease;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    padding: .5rem 2rem;
    margin: 0;
    list-style: none;
}

.top-header a {
    padding: 0 1rem;
    font-size: 1.4rem;
    color: rgb(var(--primary-color));
}

header:not(.scrolled, .active-menu) .top-header a {
    color: rgb(var(--white-color));
}

.top-header a i {
    margin-right: 1rem;
}

/* Logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
}

.header-logo a {
    font-size: 2.9rem;
    color: rgb(var(--white-color));
    font-weight: 300;
    font-family: 'Yeseva One', cursive;
    transition: .3s ease;
}

header.scrolled .header-logo a,
header.scrolled .TemplateMenu a,
.mobile-menu .mainmenu a,
.mobile-menu .mainmenu .header-logo a,
.mobile-menu.active-menu .header-logo a {
    color: rgb(var(--black-color));
}

/* nav */
body:not(.EditMode) nav.mainmenu ul.TemplateMenu>li:first-child {
    display: none;
}

.TemplateMenu a {
    font-weight: 500;
    font-size: 1.55rem;
    color: rgb(var(--white-color));
}

.TemplateMenu a:hover,
header.scrolled .TemplateMenu a:hover,
.TemplateMenu li.active>a,
.TemplateMenu ul a:hover {
    color: rgb(var(--secondary-color));
}

/* header cta  */
.header-cta-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    padding: 1rem 2rem;
    margin: 0 .5rem;
}

/* Mobilmeny */
header.mobile-menu .header-logo {
    flex-grow: 1;
}

.mobile-menu .mainmenu a,
.mobile-menu .mainmenu .header-logo a,
.mobile-menu.active-menu .header-logo a {
    color: rgb(var(--black-color));
}

.mobile-menu .mainmenu a,
.mobile-menu .mainmenu .header-logo a,
.mobile-menu.active-menu .header-logo a {
    color: rgb(var(--black-color));
}

.mobile-menu .header-cta-wrapper {
    margin-right: 1rem;
}

.mobile-menu .header-cta-wrapper .btn {
    min-width: 10rem;
    padding: 1rem;
    font-size: 1.45rem;
}

/* ==========================================================================
Startsida
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height) - 4rem);
    background-color: rgb(var(--black-color), .2);
}

.top-section .section-block {
    padding-bottom: 9rem;
}

.top-section .section-block-wrapper {
    max-width: 95rem;
    margin: 0;
}

.top-section h1 {
    padding-bottom: 1.5rem;
    font-size: 8rem;
    color: rgb(var(--white-color));
}

.top-section p {
    padding-bottom: 0;
    color: rgb(var(--white-color));
    font-size: 2.3rem;
    font-weight: 300;
}

@media only screen and (max-width: 1200px) {
    .top-section {
        margin-top: calc(-1 * var(--mobile-menu-height) - 4rem);
    }

    .top-section h1 {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section h1 {
        font-size: 3.2rem;
    }

    .top-section p {
        font-size: 1.9rem;
    }

    .top-section .btn-wrapper {
        flex-wrap: wrap;
    }

    .top-section .btn-wrapper .btn {
        width: 100%;
        margin: .5rem 0;
    }
}



/* Modal som öppnas automatiskt
========================================================================== */
  body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color),.7);
  }

  body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 1rem;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%,-50%);
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
  }

  @media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
      padding: 3rem 2rem;
    }
  }

/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    display: none;
}

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
}

@media only screen and (max-width: 450px) {
    .modal {
        padding: 3rem 2rem;
    }

    .blocker {
        padding: 1rem;
    }
}



/* Julbord
========================================================================== */
.info-card {
    position: relative;
    padding: 7rem 5rem 5rem;
    border-radius: 1rem;
}

.snow-cap::before,
.snow-cap-top::before {
    content: '';
    display: block;
    position: absolute;
    top: -2rem;
    left: -3px;
    right: 0;
    height: 10rem;
    background: url(/assets/images/seasons/snow-cap-small-1.svg) no-repeat 10% 0,
        url(/assets/images/seasons/snow-cap-small-2.svg) no-repeat 95% 0;
}

.snow-cap::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2.5vw;
    left: 0;
    right: 0;
    height: 5vw;
    background: url('/assets/images/seasons/snow-cap-big.svg') no-repeat 0 0;
    background-size: 100% 5vw;
}

.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.text-wrapper.relative {
    position: relative;
}

.fa-snowflake {
    color: rgb(var(--white-color), .7);
    position: absolute;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

@media only screen and (max-width: 1025px) {
    .info-card {
        position: relative;
        padding: 5rem 2rem 2rem;
        border-radius: 1rem;
        margin-top: 0rem !important;
    }

    .snow-cap::before,
    .snow-cap-top::before {
        content: '';
        display: block;
        position: absolute;
        top: -1rem;
        left: -3px;
        right: 0;
        height: 5rem;
        background: url(/assets/images/seasons/snow-cap-small-1.svg) no-repeat 10% 0,
            url(/assets/images/seasons/snow-cap-small-2.svg) no-repeat 95% 0;
    }
}

.snowflakes-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: .5;
    pointer-events: none;
}

.fa-snowflake {
    color: #fff !important;
    position: absolute;
    top: -20px;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

@media only screen and (max-width: 600px) {
    .section-auto-modal .close-modal {
        top: 0;
        right: 0;
    }

    .section-auto-modal .ingress {
        font-size: 1.7rem;
    }
}

/* Var catering (.section-catering)
========================================================================== */
.section-catering .split-image {
    max-height: 95vh;
}

.section-catering .split-content {
    padding-right: 0;
}

@media only screen and (max-width: 1100px) {
    .section-catering .section-block {
        padding-right: 0;
        padding-bottom: 0;
    }

    .section-catering .split-wrapper {
        flex-direction: column-reverse;
    }

    .section-catering .split-content {
        padding-left: 4rem;
    }

    .section-catering .split-image {
        height: 40rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-catering .split-content {
        padding: 5rem 2rem;
    }
}

/* .section-lunchmeny
========================================================================== */
.EditMode .section-menu {
    padding-top: 20rem;
}

.section-menu .menu-background {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 65rem;
    background-image: url(/assets/images/man-ater-mat-restaurant-2000.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.menu-container {
    margin: 62px 14% 0px;
    margin-top: -15rem;
    background-color: #fff;
    box-shadow: 0 0 4rem rgb(var(--black-color), .06);
    padding: 10rem 8rem;
    box-sizing: border-box;
    text-align: center;
}

.section-menu .kravmarke {
    width: 8rem;
    margin-bottom: 2rem;
}

.section-menu .menu-heading .section-title {
    font-size: 4rem;
}

.section-menu .small-title,
.section-menu h6 {
    padding-top: 1.5rem;
    font-size: 2.2rem;
}

.section-menu .small-title:after {
    content: "";
    display: block;
    width: 40px;
    height: .1em;
    padding-top: 0.5em;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.section-menu p {
    font-size: 1.6rem;
    padding-bottom: 0.3em !important;
    font-family: 'Mulish', sans-serif;
}

.menu-wrapper .eng-meny {
    color: #929292;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 10px;
}

/* Dolj veckan innan och efter nuvarande */
#menu-content-wrapper #previous,
#menu-content-wrapper #next {
    display: none;
}

/* Knappar */
.menu-controller,
.IndexPage .menu-pdf {
    display: none;
}

/* Menyer för utskrift */
.menu-admin-wrapper {
    padding: 3.5rem;
}

.menu-admin-wrapper .week-box {
    padding-bottom: 1rem;
}

.menu-pdf a {
    margin-bottom: 1em;
}

.menu-pdf a:hover {
    text-decoration: underline;
}

.menu-pdf .fal {
    padding-right: 1.5rem;
    font-size: 2.2rem;
    color: rgb(var(--primary-color));
}

.flag-heading {
    display: flex;
    justify-content: space-between;
    max-width: 40rem;
    margin: auto;
}

.flag-wrapper {
    max-width: 10rem;
}

.flag-intro {
    margin: auto;
}

@media only screen and (max-width: 1200px) {
    .section-menu .menu-background {
        min-height: 35rem;
        background-attachment: scroll;
        background-size: cover;
        background-position: center bottom;
    }

    .menu-container {
        width: 95%;
        padding: 5rem 2rem;
        margin: -10rem auto 0;
    }
}

/* .section-business
========================================================================== */
.section-business .split-image {
    min-height: 85vh;
    max-height: 95vh;
}

.section-business .split-content {
    padding-left: 0;
}

@media only screen and (max-width: 1100px) {
    .section-business .section-block {
        padding-left: 0;
        padding-bottom: 0;
    }

    .section-business .split-wrapper {
        flex-direction: column-reverse;
    }

    .section-business .split-content {
        padding-left: 4rem;
    }

    .section-business .split-image {
        min-height: unset;
        max-height: 40rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-business .split-content {
        padding: 5rem 2rem;
    }
}

/* ==========================================================================
Undersidor 
========================================================================== */
/* Generell hero
========================================================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-60 {
    min-height: 60vh !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: -1;
    background-color: rgb(var(--black-color), .2) !important;
}

.hero.transparent {
    background: rgb(var(--black-color), .25);
}

.hero-wrap {
    max-width: 80rem;
}

.hero .section-block {
    padding-bottom: 10rem;
}

.hero .text-label {
    display: block;
    color: rgb(var(--white-color));
    padding-bottom: .5rem;
}

.hero .section-title {
    display: block;
    color: rgb(var(--white-color));
    font-size: 7rem;
    padding-bottom: 1.5rem;
}

.hero .small-title {
    color: rgb(var(--white-color));
}

.hero p,
.hero a {
    color: rgb(var(--white-color));
    font-size: 2rem;
    max-width: 70rem;
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        padding-bottom: 5rem;
    }

    .hero .section-title {
        font-size: 4.5rem;
    }

    .hero p,
    .hero a {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
Undersida: Viktig info
========================================================================== */
.section-rutiner .split-image {
    max-height: 85vh;
}

@media only screen and (max-width: 1100px) {
    .section-rutiner .section-block {
        padding-top: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .section-rutiner .split-content {
        padding: 5rem 2rem;
    }
}

/* ==========================================================================
Undersida: Picknick
========================================================================== */

.text-block-picknic {
    max-width: 90rem;
    padding: 4rem;
    margin-top: -20rem !important;
    z-index: 2 !important;
    margin: auto;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 1rem 4rem rgb(var(--black-color), .06);

}

@media only screen and (max-width: 1030px) {
    .text-block-picknic {
        margin-top: -10rem !important;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer-container {
    padding: 0 2rem;
}

/* Footer top */
.footer-top {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer li {
    display: inline-block;
    margin-right: 3rem;
    font-size: 1.6rem;
}

.footer a {
    text-decoration: none;
    transition: .2s ease;
}

.footer a:hover {
    color: rgb(var(--primary-color));
}

.footer em {
    color: rgb(var(--secondary-color));
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

.footer-bottom p {
    font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}


@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer li {
        display: block;
    }
}

@media only screen and (max-width: 450px) {

    /* Footer top */
    .footer-top {
        padding: 1.5rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 1.5rem 0;
    }
}