/* Högskolerestauranger AB 7365561273694 KST 144 */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400;1,700&display=swap');

/* 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: 7rem;
    --menu-height-scrolled: 7rem;

    /* 	Colors */
    --primary-color: 96, 108, 56;
    --primary-light-color: 132, 147, 79;
    /* --primary-light-color: 161, 174, 109; */
    /* --primary-light-color: 187, 197, 145; */
    /* --primary-color: 43, 123, 205;
    --primary-light-color: 87, 153, 219; */
    --secondary-color: 243, 239, 233;
    --secondary-dark-color: 234, 226, 215;

    --black-color: 20, 20, 20;
    --gray-color: 110, 110, 110;
    --gray-dark-color: 79, 79, 79;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

    --nordrest-green-color: 38, 178, 117;
    --nordrest-green-light-color: 235, 250, 238;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

.section-block-wrapper {
    max-width: 130rem;
}

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

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

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

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

.p-1 {
    padding: 1rem;
}

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

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

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-4 {
    padding-top: 4rem;
}

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

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

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

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

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

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

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

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

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


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

/* Rubriker */
.section-title {
    font-size: 4rem;
    line-height: 1.4;
    font-weight: 300;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    padding-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}


.text-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    padding-bottom: 2rem;
}

.lunch-font {
    font-size: 2.2rem;
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

/* Ovriga klasser */
.text-block-center {
    max-width: 85rem;
    margin: 0 auto;
}

.mw-80 {
    max-width: 85rem !important;
}

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

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

.m-a {
    margin: auto;
}

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

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

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

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

    .section-title {
        font-size: 2.5rem;
    }

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

    .text-label {
        font-size: 1.2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 2rem;
}

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

.btn {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.2rem;
    margin: .5rem;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    border-radius: .8rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

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

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

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

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
}

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

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

/* Pil effekt */
.btn-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.btn-arrow::before,
.btn-arrow::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-size: 1.6rem;
    font-family: 'Font Awesome 5 Pro';
    line-height: 1em;
    transition: all .4s ease;
}

.btn-arrow::before {
    position: absolute;
    right: 3rem;
    opacity: 0;
}

.btn-arrow:hover:before,
a.card-item:hover .btn-arrow::before {
    right: 0;
    opacity: 1;
    transition: all .4s ease;
}

.btn-arrow:hover::after,
a.card-item:hover .btn-arrow::after {
    transform: translateX(1rem);
    transition: all .4s ease;
    opacity: 0;
}

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

    .btn-wrapper.multiple .btn:not(:last-child) {
        margin-right: 0rem;
        margin-bottom: 2rem;
    }
}

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

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

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

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

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

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

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

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

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

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

.gradient-white-secondary {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--secondary-color)) 50%);
}

.bg-red {
    background-color: rgb(124, 0, 31);
}

.bg-nordrest-blue {
    background: rgb(var(--nordrest-blue-color));
}

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

/* Ovriga */
.invert {
    filter: invert(1);
}

.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

.br-2 {
    border-radius: 2rem;
}



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

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

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

.split-image {
    width: 50%;
}

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

@media screen and (max-width: 1000px) {
    .split-content {
        width: 100%;
        padding: 0 0 5rem;
    }

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

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

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

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
}

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

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

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

@media only screen and (max-width: 1150px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 1000px) {
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }

    .cards-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

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

    /* Bredder */
    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

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

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

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

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

    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem;
    }
}

/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
}

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

.cards-2 p {
    padding-bottom: 1.5rem;
}


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

/* Card 3-4 */
.cards-wrapper.card-3-4 .card-item {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 3rem;
}

.card-3-4 .image-wrapper {
    width: 10rem;
    height: 10rem;
    margin: -2rem 1rem;
    border-radius: 2rem;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
    padding-right: 0;
}

.card-3-5 .contact-item a {
    word-break: break-all;
}

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

@media only screen and (max-width: 420px) {
    .card-3-4 .image-wrapper {
        width: 7rem;
        height: 7rem;
    }
}

/* Cards 15 */
.cards-15 .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    border-radius: 3px;
    overflow: hidden;
}

.cards-15 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cards-15 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .2);
    transition: .3s ease;
}

.cards-15 a.card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .4);
}

.cards-15 .text-wrapper {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 26rem;
    min-height: 16rem;
    /* min-width: 50%; */
    padding: 1rem;
    border-radius: 0 3px 0 0;
    background-color: rgb(var(--secondary-color));
}

.cards-15 .text-wrapper.no-logo {
    height: unset;
}

.cards-15 .text-wrapper img {
    width: 15rem;
}

.cards-15 .small-title {
    font-size: var(--base-size);
    color: rgb(var(--black-color));
}

.cards-15 p {
    font-size: 1.5rem;
}

.cards-15 .arrow-link {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

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

/* Parallax
========================================================================== */
.parallax {
    min-height: 40rem;
    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;
    }
}

/* Grafiska element
========================================================================== */
.mix-blend-darken {
    mix-blend-mode: darken;
}

.border-radius-05 {
    border-radius: 0.5rem;
}

/* 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;
    }
}

/* 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: 2rem;
    overflow: auto;
    background: rgb(var(--secondary-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;
    }
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    background-color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

header .container {
    padding: 0 0 0 5rem;
    margin: 0 auto;
}

/* nav */
.mainmenu {
    position: relative;
}

.TemplateMenu a {
    font-weight: 400;
    font-size: 1.5rem;
    color: rgb(var(--gray-dark-color));
}

.TemplateMenu a:hover,
header.scrolled .TemplateMenu a:hover {
    color: rgb(var(--primary-color));
}

/* dropdown */
.TemplateMenu ul {
    width: 22rem;
}

/* ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/2/restauranger/"] {
    pointer-events: none;
}

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

.nordrest-highlight {
    background-color: rgb(var(--nordrest-green-light-color));
    text-align: right;
    min-height: var(--menu-height);
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
}

.nordrest-highlight p {
    padding: 0;
}

.nordrest-highlight .cta-contact {
    display: block;
    line-height: 1.3;
    font-size: 1.4rem;
}

/* Mobilmeny */
.mobile-menu .header-cta-wrapper {
    margin: 0 auto 0 0;
}

.mobile-menu .nordrest-highlight {
    min-height: var(--mobile-menu-height);
}

.mobile-menu .nordrest-highlight .cta-contact {
    font-size: 1.2rem;
}

@media only screen and (max-width: 1000px) {
    header .container {
        padding: 0 3rem 0 0;
    }
}

@media only screen and (max-width: 580px) {
    header .container {
        padding: 0 2rem 0 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: 43rem;
    max-height: 75vh;
    padding: 1rem;
    border-radius: 0;
    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;
    }
}

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

/* .topsection {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 10rem);
    border: 2rem solid rgb(var(--white-color));
    border-top: 0;
    background-image: linear-gradient(rgb(var(--black-color), .4), rgb(var(--black-color), .4)), url('/assets/images/plattar-tallrik-1920.jpg');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
} */

.top-section h1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
    max-width: 110rem;
    margin-bottom: 2rem;
}

.krav-wrapper {
    max-width: 10rem;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: -5rem;
    background: white;
    border-radius: 2rem;
    margin-left: 5rem;
}

.krav-wrapper img {
    padding: 0.5rem;
}

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

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

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

    .krav-wrapper {
        max-width: 6rem;
        margin-bottom: -3rem;
    }

}

/* Overlay Image
========================================================================== */
.overlay-image {
    position: relative;
}

.overlay-image .image-wrapper {
    position: relative;
    padding-top: 42.25%;
    margin-left: calc(-100vw / 2 + 130rem / 2);
    overflow: hidden;
    border-radius: 0 3px 3px 0;
}

.overlay-image .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay-image .text-wrapper {
    position: absolute;
    bottom: 0;
    max-width: 60rem;
    border-radius: 3px 3px 0 0;
    padding: 4rem;
}

@media only screen and (max-width: 1400px) {
    .overlay-image .image-wrapper {
        margin-left: -5rem;
    }
}

@media only screen and (max-width: 1024px) {
    .overlay-image .image-wrapper {
        margin-left: -3rem;
    }

    .overlay-image .text-wrapper {
        position: relative;
        margin-top: -3rem;
        padding: 3rem;
        border-radius: 3px;
    }
}

@media only screen and (max-width: 580px) {
    .overlay-image .image-wrapper {
        margin: 0 -2rem;
        padding-top: 50%;
        border-radius: 0;
    }

    .overlay-image .text-wrapper {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersidor - generellt
========================================================================== */

/* Hero
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60rem;
    background: rgba(var(--black-color), .5)
}

.hero.bg-primary-light .section-block {
    background: rgba(var(--black-color), .0)
}

.hero .section-title {
    color: rgb(var(--white-color));
    text-align: center;
}

/* ==========================================================================
Undersida: Restauranger > Restaurangsida
========================================================================== */

/* Om restaurangen
========================================================================== */
.section-restaurant .split-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0 2rem 2rem;
}

.section-restaurant .split-content {
    flex-grow: 1;
}

.section-restaurant .split-image.w-30 {
    max-width: 15rem;
}

.nanna-svartz {
    background-image: url('/assets/images/dishes/pesto-pasta-burrata-2000px.jpg');
}

.svarta-rafven {
    background-image: url('/assets/images/dishes/toast-skagen-2000px.jpg');
}

@media only screen and (max-width: 700px) {
    .section-restaurant .split-wrapper {
        padding: 1.5rem;
    }

    .section-restaurant .split-content {
        padding: 0 0 0 1.5rem;
    }

    .section-restaurant p {
        font-size: 1.4rem;
    }

    .section-restaurant .split-image.w-30 {
        width: auto;
        max-width: 10rem;
        min-height: unset;
    }
}

/* Viktigt meddelande
========================================================================== */
.section-message .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.section-message .section-block-wrapper {
    max-width: 80rem;
    padding: 5rem 2rem;
}

/* Boka
========================================================================== */
iframe {
    min-height: 400px !important;
    height: 400px !important;
}

/* Lunchmeny
========================================================================== */
.lunchmeny .section-block {
    padding-top: 0;
}

.lunchmeny .section-block-wrapper {
    max-width: unset;
}

.menu-background {
    height: 45rem;
    /* background-image: url(/assets/images/julbord-2000px.jpg); */
    background-image: url('/assets/images/grona-gronsaker-2000px.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.nanna-svartz-background .menu-background {
    background-image: url(/assets/images/kronartskockor-2000px.jpg);
}

.menu-container {
    width: 90%;
    max-width: 100rem;
    padding: 7rem 4rem;
    margin: -13rem auto 5rem;
    text-align: center;
    border: 2px solid rgb(var(--primary-color));
    background: rgb(var(--white-color));
}

.menu-heading {
    margin-bottom: 2rem;
}

.lunchmeny .menu-item {
    padding: 1rem 0;
}

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

.lunchmeny .menu-description {
    color: #929292;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 10px;
}

.menu-en {
    display: block;
    font-style: italic;
    color: rgb(var(--gray-color));
}

.lunchmeny .menu-border-bottom {
    border-bottom: 1px solid rgb(var(--black-color), 0.4);
    margin: 2rem 0 3rem;
}

.menu-en.text-primary-light {
    color: rgb(var(--primary-light-color));
}

.meny-image {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    max-width: 30rem;
    width: 100%;
}

.green-food:after {
    content: "";
    width: 18px;
    height: 25px;
    background: url(/assets/images/green-food-50px.png);
    background-size: contain;
    display: inline-block;
}

/* Tidigare/senare veckor */
#previous,
#next {
    display: none;
}

/* Knappar */
.menu-pdf,
.menu-controller {
    text-align: center;
}

.menu-pdf {
    margin-bottom: 4rem;
    font-size: 1.5rem;
}

.menu-pdf i {
    margin-right: 1rem;
}

.menu-pdf a {
    text-decoration: none;
}

@media only screen and (max-width: 750px) {
    .menu-background {
        background-size: cover;
        background-attachment: unset;
    }

    .menu-container {
        width: 94%;
        padding: 5rem 2rem;
    }
}


/* 
Undersida Catering
========================================================================== */

/* Tab */
.tab-container {
    padding: 5rem 7rem;
    outline: 1px solid rgb(var(--primary-color));
    outline-offset: -11px;
    border: 5px solid rgb(var(--primary-color));
    background-color: #fff;
}

/* Tabbarna */
.tabs-wrapper {
    margin-bottom: 4rem;
}

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

.tabs-heading {
    display: none;
}

.tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: #333;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3rem;
    cursor: pointer;
}

.tab-active {
    color: rgb(var(--primary-color));
}

/* Innehåll */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-col {
    width: calc((100% / 1) - 2rem);
}

.tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
}

.tab-item .small-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: 1px dotted #e6e6e6;
}

.tab-item .price {
    padding-left: 1rem;
}

.tab-item .description {
    font-size: 1.4rem;
    color: #555;
}

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

    /* Gör menyvalen till dropdown */
    .tabs-wrapper {
        position: relative;
        padding: 1rem 2rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tabs-heading {
        display: block;
    }

    .tabs-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: #FFF;
    }

    .tabs-heading i {
        margin-left: 2rem;
    }

    .tabs-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: #FFF;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    }

    .tabs-wrapper.opened .tabs-list {
        display: block;
    }

    .tab {
        display: block;
        padding: 1.5rem 1rem;
        letter-spacing: normal;
        text-transform: initial;
    }

    /* End dropdown menyval*/
}

@media only screen and (max-width:750px) {
    .tab-col {
        width: 100%;
    }
}

@media only screen and (max-width:480px) {
    .tab-container {
        padding: 5rem 3rem;
    }

    /* Gör menyvalen till dropdown */
    .tabs-wrapper {
        max-width: 100%;
    }

    /* End dropdown menyval*/

    .tab-item .small-title {
        font-size: 1.5rem;
    }

    .tab-item .description {
        font-size: 1.3rem;
    }
}


/* Section-catering ny
========================================================================== */
.section-catering .tab-container {
    padding: 4rem 2rem;
    outline: 1px solid rgb(var(--primary-color));
    outline-offset: -11px;
    border: 5px solid rgb(var(--primary-color));
    background-color: #fff;
    min-height: 50rem;
}

/* Tabbval */
.section-catering .tabs-wrapper {
    margin-bottom: 5rem;
}

.section-catering .tabs-list {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.section-catering .tabs-heading {
    display: none;
}

.section-catering .tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3rem;
    cursor: pointer;
}

.section-catering .menu-tab {
    background: rgb(var(--primary-color));
    margin: 0.2rem;
}

.section-catering .tab-active {
    color: #000000;
}

/* Innehåll */
.section-catering .tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
}

.section-catering .tab-col {
    width: calc((100% / 1) - 2rem);
    margin-top: 1rem;
}

.section-catering .tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.section-catering .tab-item .small-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: 1px dotted #e6e6e6;
    text-align: start;
}

.section-catering .tab-item .prices {
    padding-left: 1rem;
}

.section-catering .tab-item .description {
    font-size: 1.3rem;
    font-style: italic;
    text-align: start;
    color: #555;
}

.section-catering .sub-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.veg::after {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url('/assets/images/icons/veg.png');
    background-size: cover;
    background-position: center;
    margin-left: 5px;
}

.gluten::after {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url('/assets/images/icons/gluten.png');
    background-size: cover;
    background-position: center;
    margin-left: 5px;
}

.laktos::after {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url('/assets/images/icons/laktos.png');
    background-size: cover;
    background-position: center;
    margin-left: 5px;
}

.mjolkfri::after {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url('/assets/images/icons/mjolkfri.png');
    background-size: cover;
    background-position: center;
    margin-left: 5px;
}

.section-catering .tab-item .small-title.justify-start {
    justify-content: start;
}

.allergi-wrapper {
    background: rgba(240, 240, 240, 0.671);
    padding: 2rem;
}
.justify-left{
    justify-content: left !important;
}
@media only screen and (max-width:1080px) {

    .section-catering .col-0,
    .section-catering .col-1 {
        width: 100% !important;
    }

    .section-catering .tabs-wrapper {
        margin: auto;
        margin-bottom: 4rem;
    }
}

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

    /* Tabbval */
    .section-catering .tabs-wrapper {
        position: relative;
        padding: 1rem 2rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .section-catering .tabs-heading {
        display: block;
    }

    .section-catering .tabs-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: #FFF;
    }

    .section-catering .tabs-heading i {
        margin-left: 2rem;
    }

    .section-catering .tabs-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: #FFF;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    }

    .section-catering .tabs-wrapper.opened .tabs-list {
        display: block;
    }

    .section-catering .tab {
        display: block;
        padding: 1.5rem 1rem;
        letter-spacing: normal;
        text-transform: initial;
    }
}

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

    /* Innehåll */
    .section-catering .tab-col {
        width: 100%;
    }
}

@media only screen and (max-width:480px) {
    .section-catering .tab-container {
        padding: 1rem 1rem;
    }

    /* Tabbval */
    .section-catering .tabs-wrapper {
        max-width: 100%;
    }

    /* Innehåll */
    .section-catering .tab-item .small-title {
        font-size: 0.8rem;
    }

    .section-catering .tab-item .description {
        font-size: 0.8rem;
    }
}




/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--black-color));
}

.footer-container {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer Logo */
.footer-logo {
    width: 16rem;
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 0 0 2px 2px;
    background-color: rgb(var(--white-color));
}

.footer-logo img {
    max-height: 5rem;
}


/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 6rem 0 10rem;
    border-bottom: 1px solid rgb(var(--white-color), .2);
}

.footer-menu {
    margin: 1.5rem 0;
}

.footer-menu-large {
    width: 40%;
}

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

.footer-top p,
.footer-top li,
.footer-top a {
    color: rgb(var(--white-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

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

.footer p.small-title {
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(var(--white-color));
}

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

.footer-bottom p {
    font-size: 1.3rem;
    color: rgb(var(--white-color), .5);
}

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

.webbess-stamp img {
    width: 2.5rem;
    filter: invert();
    margin-left: 1rem;
}


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

    .footer-container {
        padding: 0 3rem;
    }

    /* Footer Logo */
    .footer-logo {
        width: 12rem;
        padding: 1rem;
    }

    /* Footer top */
    .footer-menu {
        width: 48%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }

    .section-contact .layout-3 .col-2,
    .section-contact .layout-3 .col-3 {
        padding-top: 2rem;
    }


}

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

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .footer-container {
        padding: 0 2rem;
    }

    /* Footer Logo */
    .footer-logo {
        width: 10rem;
        padding: .5rem .5rem 1rem;
    }

}