/* Fabrikoren Restaurang AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 231, 214, 201;
    --secondary-color: 46, 72, 88;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;
    --blue-color: 20, 92, 178;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 150rem;

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

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

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

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

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

/* Paddings */
.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

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

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pb-2 .section-block,
.pb-2:not(.section-wrapper) {
    padding-bottom: 2rem;
}

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

.pb-10 .section-block,
.pb-10:not(.section-wrapper) {
    padding-bottom: 10rem;
}

/* Margins */
.mt-0 {
    margin-top: 0rem;
}
.mt-1{
    margin-top: 1rem;
}

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

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

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

/* Specifika breddar */
.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

@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: "Open Sans", sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(var(--gray-dark-color));
    font-family: "Marcellus", serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Marcellus", serif;
}

.ingress {
    font-size: 1.8rem;
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

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

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

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

.text-decorative {
    font-family: "Playwrite AU VIC", cursive;
    font-weight: 300;
}

/* List-check */
.list-check {
    list-style: none;
}

.list-check {
    padding: 0;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}


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

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

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

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

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

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

.btn-wrapper.center {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    max-width: 20rem;
    padding: 1.4rem 3rem;
    margin: 7px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 3rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
    text-transform: uppercase;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--gray-dark-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--gray-dark-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-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(--secondary-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: transparent;
}

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

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

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

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

/* Dropdown-knapp */
.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper.opened {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    top: 4rem;
    left: -1px;
    width: calc(100% + 2px);
    max-height: 50vh;
    background: rgb(var(--primary-color));
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    overflow: auto;
}

.dropdown-wrapper.opened .dropdown {
    display: block;
}

.dropdown a {
    padding: 10px 5px;
    text-decoration: none;
    transition: .3s ease;
}

.dropdown a:hover {
    text-decoration: underline;
}


/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
}
.arrow-link.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Marcellus", serif;
}

.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;
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    background-color: rgb(var(--primary-light-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

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

    .btn-wrapper.center .btn {
        margin: auto;
        margin-bottom: 1rem;
    }

    .btn-wrapper.center {
        display: flex;
        flex-direction: column;
    }
}

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Borders */
.border-bottom-secondary {
    border-bottom: 4px solid rgb(var(--secondary-color));
}

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

/* Osymetrist border radius */
.blob {
    border-radius: 55% 45% 47% 53% / 52% 36% 64% 48%;
}

/* Animerad blob */
.morph {
    animation: morph 2s linear infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
    background-color: rgb(var(--black-color), .4)
}

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

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .4)
}

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

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

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

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

a.card-item {
    transition: .3s ease;
    text-decoration: none;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

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

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 1-2 */
.card-1-2 .card-item {
	display: flex;
	flex-direction: column;
}

.card-1-2 .card-body {
	flex-grow: 1;
	min-height: 38rem;
}

.card-1-2 .card-footer {
	display: flex;
	padding: 0 2rem 1rem;
	margin: auto 0 0;
	background: #223956;
}

.card-1-2 .quote-sign {
	width: 7rem;
	height: 7rem;
	padding: 1.5rem;
	margin: -1.5rem 2rem 0 0;
	border-radius: 50%;
	border: 0.3rem solid rgb(var(--gray-light-color));
}

.card-1-2 .card-footer p {
	padding: 1rem 0;
	font-size: 1.4rem;
	font-weight: 700;
}

.card-1-2 .card-footer span {
	display: block;
	text-transform: uppercase;
}

/* Card 2-1 */
.card-2-1 a.card-item:hover {
    background: rgb(var(--primary-light-color));
}

.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 5rem;
}

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

@media only screen and (max-width: 750px) {
    .card-2-1.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
}

.card-2-4 .card-header p {
    font-size: 3rem;
    font-weight: 700;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 2rem 3rem;
    align-content: center;
}

@media only screen and (max-width: 480px) {
    .card-2-4 .card-header {
        width: 8rem;
    }

    .card-2-4 .card-header p {
        font-size: 2.3rem;
    }

    .card-2-4 .card-body {
        padding: 2rem;
    }
}

.card-3-1 .image-wrapper {
    height: 30rem;
}

/* 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: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

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

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

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 0 0 3rem;
    }

    .split-wrapper.bg-primary .split-content,
    .split-wrapper.bg-secondary .split-content {
        padding: 3rem 2rem;
    }

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

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


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

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

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

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

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

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

/* InnehÃ¥ll */
.info-popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    width: 380px;
    max-width: calc(100% - 2rem);
    max-height: calc(100vh - 12rem);
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 3px;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    transition: opacity .3s ease, bottom .3s ease;
}

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

.info-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.info-popup-header .text-title {
    padding: 0;
    line-height: 1;
}

.info-icon-close-popup {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.info-icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

.info-popup-content {
    padding: 1rem 2rem 3rem;
    max-height: 30rem;
    overflow: auto;
}


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

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

/* Knappar */
.sub-christmas .popup-button {
    position: absolute;

}
.popup-button {
    /*position: absolute;*/
    top: 20%;
    left: 80%;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--white-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(12, 28, 36, 0.584);
    cursor: pointer;
    z-index: 10;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    color: rgb(62, 89, 69);;
    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);
}

.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);
    margin: 0 2rem;
    border-radius: 2px;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    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: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

.popup-head .image-wrapper {
    position: absolute;
    top: -4rem;
    left: 25%;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(var(--white-color));
    transform: translateX(-50%);
}

.popup-body {
    max-width: 33rem;
    padding: 2rem 4rem 1.5rem 1.5rem;
}

.popup-body p {
    padding: 0;
    font-size: 1.4rem;
}

/* 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: 45rem;
    max-height: 100vh;
    padding: 0rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 2rem;
    overflow: auto;
    transform: translate(-50%, -50%);
    background: rgba(var(--white-color));
}

.section-auto-modal .close-modal {
    position: absolute;
    top: .2rem;
    right: 1rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: rgba(var(--black-color));
}

body:not(.EditMode) .section-auto-modal-jul .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 65rem;
    padding: 4rem;
    border-radius: 2rem;
    overflow: auto;
    background-image: url(/assets/images/christmas/flare-lights-1000px.jpg);
    background-size: cover;
    transform: translate(-50%, -50%);
}
.section-auto-modal.section-auto-modal-jul .close-modal {
  color: rgb(var(--white-color));
}
.section-auto-modal-jul .modal-jul-logo{
    max-width: 18rem;
    margin: auto;
}

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


/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    max-width: 45rem;
    max-height: 75vh;
    padding: 0;
    border-radius: 2rem;
    box-shadow: none;
    overflow: auto;
    background: transparent;
}

.blocker {
    z-index: 100;
}

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

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

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

    .blocker {
        padding: 1rem;
    }
}

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

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

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

.mobile-menu .TemplateMenu {
    padding-bottom: 10rem;
}

/* Dolj hem */
body:not(.EditMode) .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* CTA  */
.header-cta-wrapper {
    z-index: 9;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 2rem;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

.mobile-menu .header-cta-wrapper {
    margin: 0;
}

.flag-wrapper img{
    display: inline-block;
    width: 2.5rem;
    height: 2.7rem;
    margin-right: 4px;
    border-radius: 50%;
    margin-top: 0.7rem;
}


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

    /* CTA */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section.bg-image {
    overflow: visible;
}

.top-section .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background-color: rgb(var(--black-color), .6);
    background-image: url(/assets/images/graphics/wave-2.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.top-section .fabrikoren-logo {
    max-height: 19rem;
    margin-bottom: 6rem;
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section .text-block-center {
    max-width: 105rem;
}

.top-section .section-title {
    font-size: 5rem;
    margin-bottom: 3rem;
}

.top-section p {
    max-width: 70rem;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 600;
}

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

    .top-section .fabrikoren-logo {
        max-height: 10rem;
        margin-bottom: 3rem;
    }

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

    .top-section p {
        font-size: var(--base-size);
    }
}

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

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

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 20rem;
    height: 6.8rem;
    background-image: url(/assets/images/graphics/arrow-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    transform: translateX(-50%);
}

.bouncing-arrow {
    position: relative;
    bottom: -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgb(var(--secondary-color));
    text-decoration: none;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 2rem;
    font-weight: 300;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.arrow-animate {
    position: absolute;
    left: 50%;
    bottom: -4rem;
    width: 9rem;
    transform: translateX(-50%);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@media only screen and (max-width: 1200px) {
    .top-section .section-block {
        background-size: 100% 5rem;
    }

    .bouncing-arrow-wrapper {
        width: 11rem;
    }

    .arrow-animate {
        display: none;
    }
}

/* Bildspel
========================================================================== */
.section-scroll {
    overflow: hidden;
    position: relative;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    margin: 0 1rem;
    transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
    transform: scale(.9);
}

/* Instagram 
========================================================================== */
.instagram {
    overflow: hidden;
}

/* Google 
========================================================================== */
.google {
    overflow: hidden;
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40rem;
    text-align: center;
    background-color: rgb(var(--black-color), .5);
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

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

/* CTA-sektion (.section-cta)
========================================================================== */
.cta-wrapper {
    width: 100%;
    padding: 8rem 5rem;
    text-decoration: none;
    background: rgb(var(--primary-color));
    transition: .5s ease;
}

.cta-wrapper:hover {
    background: rgb(var(--primary-light-color));
}

.cta-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 150rem;
    margin: 0 auto;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

@media only screen and (max-width: 1025px) {
    .cta-inner {
        flex-direction: column;
    }

    .cta-wrapper .btn-wrapper {
        margin-top: 2rem;
    }
}

/* ==========================================================================
Undersidor: Lunchmeny, Kvallsmeny & Dryckmeny
========================================================================== */
.meny-top-section .section-block-wrapper {
    padding-bottom: 25rem;
}

/* Ruta med box-shadow langst ner */
.cutout-shadow-wrapper {
    position: relative;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -25rem;
}

.cutout-shadow-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 1rem 2rem rgba(var(--black-color),.1);
}

.cutout-shadow {
    z-index: 1;
    position: relative;
    padding: 0.1rem;
    background-color: rgb(var(--white-color));
    border-radius: .5rem .5rem 0 0;
}

@media only screen and (max-width: 580px) {
    .meny-top-section .section-block-wrapper {
        padding-bottom: 13rem;
    }

    .cutout-shadow-wrapper {
        margin-top: -13rem;
    }
}

/* ==========================================================================
Undersidor:JVS Event & Studio
========================================================================== */
.jvs-logo {
    max-width: 15rem;
    margin-bottom: 3rem;
}

/* kort */
.jvs-wrapper .image-wrapper {
    height: 45rem;
}

.jvs-wrapper .card-body {
    padding: 2rem 2rem 0 2rem;
}

.jvs-wrapper .btn-wrapper {
    padding: 0 2rem 2rem 2rem;
}

@media only screen and (max-width: 580px) {
    .jvs-wrapper .image-wrapper {
        height: 30rem;
    }
}

/* ==========================================================================
Undersidor:JVS Event & Studio > undersidor
========================================================================== */
/* lista, info om lokalerna */
.row-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.row-list li:not(:last-child)::after {
    content: '|';
    position: relative;
    display: inline-block;
    margin: 0 1rem;
}

@media only screen and (max-width: 680px) {
    .row-list li {
        width: 100%;
    }

    .row-list li:not(:last-child)::after {
        display: none;
    }
}

/* ==========================================================================
Undersida: Nyhetsbrev
========================================================================== */
.section-newsletter iframe {
    width: 100%;
    min-height: 55rem;
    height: 100%;
    border: none;
}

.section-newsletter iframe .breadbig {
    font-family: inherit;
    font-size: var(--base-size);
}

@media only screen and (max-width: 1000px) {
    .section-newsletter .split-wrapper .split-content {
        max-width: none;
        padding: 4rem 3rem;
    }

    .section-newsletter iframe {
        min-height: 45rem;
    }
}

@media only screen and (max-width: 500px) {
    .section-newsletter .split-wrapper .split-content {
        padding: 3rem 1rem;
    }

    .section-newsletter iframe {
        min-height: 50rem;
    }
}

@media only screen and (max-width: 370px) {
    .section-newsletter iframe {
        min-height: 55rem;
    }
}

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
/* karta */
.map {
    font-size: 0;
}

@media only screen and (max-width: 580px) {
    .map iframe {
        height: 40rem;
    }
}

/* ==========================================================================
Undersida: Landningsida - Julbord (sidklassnamn: sub-christmas)
========================================================================== */
/*.sub-christmas header:not(.scrolled) {
    opacity: 0;
}

.sub-christmas header.scrolled {
    background: rgb(var(--white-color), .9);
}
*/
/* Top-section
========================================================================== */
.sub-christmas .top-section {
    margin-top: calc(var(--menu-height)* -1);
}

.sub-christmas .top-section .section-block {
    min-height: 95vh;
    background-color: rgb(var(--black-color), .45);
    background-image: url(/assets/images/christmas/graphics/wave.svg);
}

.sub-christmas .bg-video-wrapper {
    position: fixed;
}

.btn-snow,
.sub-christmas .ContactSubmit {
    position: relative;
    color: rgb(var(--white-color));
    border-color: rgb(169, 16, 16);
    background-color: rgb(169, 16, 16);
}

.btn-snow::before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    left: -3px;
    right: 0;
    height: 23px;
    background: url('/assets/images/christmas/graphics/snow-left.png') no-repeat 0 0,
        url('/assets/images/christmas/graphics/snow-middle.png') no-repeat 50% 0,
        url('/assets/images/christmas/graphics/snow-right.png') no-repeat 100% 0;
}

/* Erbjudande
========================================================================== */
.offer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
    padding-top: 4rem;
}

.offer-wrapper-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.079); 
    backdrop-filter: blur(6px); 
    border-radius: 10px;
    padding: 2rem;
-webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 85%);
}

.offer-wrapper p {
    font-size: 2.1em;
    font-weight: 300;
    
}

.offer-wrapper .text-block {
    align-self: center;
    width: calc(100% - 20rem);
    margin-left: -4rem;
}

.top-section .small-title {
    font-size: 2.7rem;
}

@media only screen and (max-width: 980px) {
    .offer-wrapper {
        flex-direction: column;
    }

    .offer-wrapper .text-block {
        margin-left: 0;
    }

    .offer-wrapper .text-block {
        width: calc(100% - 15rem);
        padding-left: 3rem;
    }
}

@media only screen and (max-width: 750px) {
    .offer-wrapper .section-title {
        font-size: 2.8rem;
    }
}

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

    .offer-wrapper .text-block {
        width: calc(100% - 0rem);
        padding-left: 2rem;
    }

    .offer-wrapper .section-title {
        font-size: 1.6rem;
    }
}


/* Om
========================================================================== */
.sub-christmas .bg-green {
    background: rgb(62, 89, 69);
}

.text-split .text-block-center {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5rem;
}

.text-split .small-title {
    font-size: 3rem;
    line-height: 1.7;
}

.text-split::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--black-color), .45);
}

.sub-christmas .card-1-1 .card-item {
    position: relative;
    background-color: rgb(var(--white-color), .8);
}

.sub-christmas .card-1-1 .card-item::before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    left: -3px;
    right: 0;
    height: 23px;
    background: url('/assets/images/christmas/graphics/snow-left.png') no-repeat 0 0,
        url('/assets/images/christmas/graphics/snow-middle.png') no-repeat 50% 0,
        url('/assets/images/christmas/graphics/snow-right.png') no-repeat 100% 0;
}

/* List-christmas */
.list-christmas {
    padding: 0;
    list-style: none;
}

.list-christmas li::before {
    content: '\f2dc';
    position: relative;
    top: -2px;
    padding: 0 1rem 0 0;
    color: rgb(169, 16, 16);
    font-weight: 300;
    font-size: 1.3rem;
    font-family: 'Font Awesome 5 Pro';
}

/* Boka
========================================================================== */
.section-book {
    background-color: rgb(var(--black-color), .45);
}

.section-book .section-block-wrapper {
    position: relative;
    max-width: 70rem;
    padding: 5rem 7rem;
    background: rgb(var(--black-color), .8);
}

.section-book .section-block-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    left: -3px;
    right: 0;
    height: 23px;
    background: url('/assets/images/christmas/graphics/snow-left.png') no-repeat 0 0,
        url('/assets/images/christmas/graphics/snow-middle.png') no-repeat 50% 0,
        url('/assets/images/christmas/graphics/snow-right.png') no-repeat 100% 0;
}

.section-book .ContactForm p {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}

.section-book .ContactForm .checkbox-option label {
    color: rgb(var(--white-color));
}

/* ==========================================================================
Undersida: Sa har tycker vara gaster
========================================================================== */
/* Bildspel (.section-gallery)
========================================================================== */
.section-gallery {
	overflow: hidden;
}

.section-gallery .card-item {
	margin: 0 1rem;
	transition: all .3s ease;
	border-radius: 8px;
    background-color: rgb(var(--primary-color), .2);
}

.section-gallery .card-item .card-footer {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.section-gallery .card-item[aria-hidden="true"] {
	opacity: .5;
	transform: scale(.9);
}

/* Slick Slider */
.section-gallery .slick-list {
	width: calc(100% - 3rem);
	overflow: visible;
}

.section-gallery .slick-dots {
	margin-bottom: -7rem !important;
}

.section-gallery .slick-prev {
	left: -2rem !important;
}

.section-gallery .slick-next {
	right: -2rem !important;
}

/* Knappar */
.section-gallery .slick-arrow {
	z-index: 2;
	position: absolute;
	top: 50%;
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background-color: rgb(var(--secondary-color));
	opacity: .95;
	transform: translateY(-50%);
}

.section-gallery .slick-prev {
	left: 4rem;
}

.section-gallery .slick-next {
	right: 4rem;
}

.section-gallery .slick-arrow::after {
	font-weight: 300;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1024px) {
	/* Slick Slider */
	.section-gallery .slick-list {
		width: calc(100% - 3rem);
	}
}

@media only screen and (max-width: 580px) {
	.slick-list {
		width: 100% !important;
	}

	/* Card */
	.slick-event .card-item {
		margin: 0;
	}

	/* Pilar */
	.section-gallery .slick-arrow {
		width: 3.5rem;
		height: 3.5rem;
	}

	.section-gallery .slick-prev {
		left: 3rem;
	}

	.section-gallery .slick-next {
		right: 3rem;
	}
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--secondary-color));
    padding: 0 5rem;
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 10rem;
}

.footer-menu {
    width: 21%;
    margin: 0 0 3rem;
}

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

.footer .text-label {
    color: rgb(var(--white-color));
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--white-color), .7);
    text-decoration: none;
}

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

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

.footer-bottom p,
.footer-bottom a:not(.circle-icon) {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color), .7);
}

/* Social Menu */
.social-menu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0 0 1rem;
    margin: 0;
}

.social-menu li {
    margin: 0 1rem 0 0;
}

.social-menu .circle-icon {
    background-color: rgb(var(--primary-color), .7);
    color: rgb(var(--secondary-color));
    font-size: 0;
}

.social-menu .circle-icon:hover {
    background-color: rgb(var(--white-color));
    color: rgb(var(--primary-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

    .footer-top {
        padding: 5rem 0;
    }

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

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}