/* Crispy Franchise Empire AB */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 76, 158, 200;
    --primary-dark-color: 17, 16, 26;

    --accent-beige-color: 227, 220, 194;
    --accent-orange-color: 255, 165, 0;
    --accent-red-color: 195, 15, 22;

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

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

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

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

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

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

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

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

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

.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;
    width: 450px;
    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;
}

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

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

.popup-header .small-title {
    padding: 0.5rem;
    margin: 0;
    font-size: 2.5rem;
}

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

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

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

/* Layout
========================================================================== */
.section-wrapper {
    overflow: hidden;
}

.section-block {
    padding: 10rem 5rem;
}

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

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

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

/* Margins */

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

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

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

@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: 'Manrope', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: .3em;
    font-size: 1.9rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
}

.section-title {
    padding-bottom: .5em;
    font-size: 4.3rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
    font-family: 'Rubik', sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
}

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

/* Pills */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style: none;
    text-align: center;
}

.list-pills li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 2rem;
    margin: .5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-radius: 2rem;
    font-family: 'Rubik', sans-serif;
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1rem;
        font-size: 1.4rem;
    }
}

/* List-check */
.list-check {
    padding: 0 0 0 1rem;
    list-style: none;
}

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

.list-check.text-white li,
.list-check.text-white li::before {
    color: rgb(var(--text-color-color));
}

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

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

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

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

.icon-text i {
    margin-right: 5px;
}

@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.5rem;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    transition: all .4s ease;
}

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

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

.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(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

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

.arrow-link::after {
    content: ' \f061';
    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;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

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

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.5rem;
}

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

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

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

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

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

.bg-gold {
    background: linear-gradient(45deg, #d9ab07, #d1b200)
}

.bg-silver {
    background: linear-gradient(45deg, #ededed, #bdbdbd)
}

.bg-platina {
    background: linear-gradient(45deg, #808080, #636161)
}

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Video ratio */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
}

.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 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    background-color: rgb(var(--black-color), .4)
}

/* Bilder */
.parallax-abstract {
    background-image: url('/assets/images/abstrakt-bla-2000px.jpg');
}

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

/* Card 1-1 */
.card-1-1 .contact-item a {
    font-size: 1.5rem;
    text-decoration: none;
    word-break: break-all;
    transition: .3s ease;
}

.card-1-1 .contact-item a:hover {
    color: rgb(var(--primary-color));
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 55vh;
    padding: 2rem 2rem 1rem 2rem;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-6 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--black-color), .6);
    transition: .5s ease;
}

.card-3-6 .card-item:not(.no-hover):hover .image-wrapper::after {
    background: rgb(var(--black-color), .2);
}

.card-3-6 img {
    transition: .5s ease;
}

.card-3-6 .card-item:not(.no-hover):hover img {
    transform: scale(1.03);
    transition: .5s ease;
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
    width: 100%;
    transition: .5s ease;
}

.card-3-6 .card-item:not(.no-hover):hover .card-body {
    opacity: 0;
}

@media only screen and (max-width: 580px) {
    .card-3-6 .card-item {
        min-height: 45vh;
    }
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.split-content {
    width: calc(50% - 2rem);
    padding: 5rem;
}

.split-image {
    width: calc(50% - 2rem);
    min-height: 55vh;
}

/* Centrera content */
.split-wrapper .align-center {
    display: flex;
    flex-wrap: wrap;
    align-items: 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%;
        padding: 3rem;
    }

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

    .split-wrapper .text-block-center {
        max-width: 100%;
    }

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

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

/* Header / Navigation
========================================================================== */
/* Top header */
.top-header {
    z-index: 1;
    position: relative; 
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}

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

.top-header a {
    margin: 0 0 0 3rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    transition: .2s ease;
}

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

@media only screen and (max-width: 580px) {
    .top-header a {
        font-size: 1.2rem;
        margin: 0 0 0 1.5rem;
    }
}

/* Header */
header {
    border-bottom: 1px solid rgb(var(--accent-beige-color));
}

.EditMode header .container {
    max-width: none;
}

/* Logo */
.header-logo {
    min-width: 12rem;
}

.header-logo img,
header.scrolled .header-logo img {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 12rem;
    max-height: unset;
    background-color: rgb(var(--white-color));
}

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

.TemplateMenu a {
    font-weight: 500;
    font-size: 1.6rem;
    color: rgb(var(--black-color));
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
}

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

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0 0 0 2rem;
    line-height: 1;
    white-space: nowrap;
}

/* Mobilmeny */
.mobile-menu .header-logo img,
.mobile-menu.scrolled .header-logo img {
    width: 8rem;
    height: 10rem;
    max-height: unset;
}

.mobile-menu .Navigator {
    max-height: 70vh;
    overflow: auto; 
}

@media only screen and (max-width: 1500px) {
    header {
        padding: 0 2rem;
    }

    /* Header logo */
    .header-logo {
        min-width: 11rem;
    }

    /* Header CTA */
    .header-cta-wrapper {
        margin-left: 0;
    }

    .header-cta-wrapper .btn {
        margin-left: 1rem;
    }
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper {
        margin-right: 2rem;
    }

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

    .header-cta-wrapper>li:nth-child(2) {
        display: none;
    }
}

@media only screen and (max-width: 440px) {
    /* Header logo */
    .mobile-menu .header-logo img,
    .mobile-menu.scrolled .header-logo img {
        top: 1rem;
        width: 6rem;
        height: 8rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height) - 4rem - 7rem);
    background-color: rgb(var(--black-color), .5);
}

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

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

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

@media only screen and (max-width: 1600px) {
    .top-section .section-block {
        min-height: calc(100vh - var(--menu-height) - 4rem - 5rem);
    }

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

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

    .top-section p {
        max-width: 100%;
        font-size: 1.5rem;
    }
} 

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

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

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

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

/* Banner
========================================================================== */
.section-banner {
    padding: 2rem 0;
    overflow: hidden;
}

.section-banner a {
    text-decoration: none;
}

.section-banner .small-title {
    font-size: 2.1rem;
}

.section-banner .arrow-link {
    font-size: inherit;
}

/* Marquee */
.marquee {
    z-index: 1;
    position: relative;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media only screen and (max-width: 1600px) {
    .section-banner {
        padding: 1rem 0;
    }

    .section-banner .small-title {
        font-size: 1.9rem;
    }
}

@media only screen and (max-width: 980px) {
    /* Marquee */
    .marquee {
        animation: marquee 10s linear infinite; 
    }
}

/* Pizza / Burgare / Räksallad
========================================================================== */
@media only screen and (max-width: 680px) {
    .section-items .card-3-6 .image-wrapper::after,
    .section-items .card-3-6 .card-item:hover .image-wrapper::after {
        background: rgb(var(--black-color), .1)
    }

    .section-items .card-3-6 .card-item:not(.no-hover):hover img {
        transform: none;
    }

    .section-items .card-body {
        display: none;
    }
}
 
/* Parallax med ett citat
========================================================================== */
.section-title {
    display: block; 
}

.section-quote .section-block {
    display: flex;
    justify-content: center;
    background: rgb(var(--gray-light-color));
}

.section-quote .section-title {
    padding: 0;
    font-size: 4rem;
    text-align: center;
    text-transform: uppercase;
    color: rgba(var(--accent-orange-color));
}

.glow, .glow-mobile {
    border-right: solid 3px rgba(var(--primary-color));
    white-space: nowrap;
    overflow: hidden;
    font-size: 28px;
    color: rgba(255, 255, 255, .70);
    animation: 
        animated-text 10s steps(50, end) infinite, 
        animated-cursor 600ms steps(50, end) infinite; 
}


/* Text animation */
@keyframes animated-text {
    0% {
        width: 0; 
    }
    40% {
        width: 100%; 
    }
    80% {
        width: 100%; 
    }
    100% {
        width: 0; 
    }
}
/* Cursor animation */
@keyframes animated-cursor {
    0% {
        border-right-color: transparent;
    }
    50% {
        border-right-color: rgba(var(--primary-color));
    }
    100% {
        border-right-color: rgba(var(--primary-color));
    }
}

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

@media only screen and (max-width: 780px) {
    .section-quote .section-title {
        display: none;
    }
}

/* Mobilversion */
.text-container {
    display: inline-block;
    position: relative; 
  }

.section-title-mobile {
    display: none;
}

@media only screen and (max-width: 780px) {
    .section-title-mobile {
        display: block;
    }
    
    .section-quote .section-title-mobile {
        padding: 0;
        font-size: 2.4rem;
        text-transform: uppercase;
        color: rgba(var(--accent-orange-color));
        font-weight: 800;
        font-family: 'Rubik', sans-serif;
    }
}

/* Ladda ner appen
========================================================================== */
/* Ladda ner-knappar */
.btn-download img {
    height: 5rem;
    padding: 1rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    border-radius: 3rem;
    background: rgb(var(--white-color));
    box-shadow: 0 0 10px rgb(var(--black-color), .2);
    transition: .3s ease;
}

.btn-download:hover img {
    box-shadow: 0 0 10px rgb(var(--black-color), .4);
}

@media only screen and (max-width: 580px) {
    .btn-download img {
        height: 4.2rem;
        margin-right: 1rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 50vh;
    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: 40rem; 
    }

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

/* ==========================================================================
Undersida: Restauranger
========================================================================== */
.section-restaurants .card-3-6 .card-item {
    justify-content: space-between;
    padding: 2rem;
}

.card-3-6 .order-wrapper {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.card-3-6 .order-wrapper a {
    width: 6rem;
    margin: 5px;
}

@media only screen and (max-width: 1100px) {
    .section-restaurants .card-3-6 .section-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
Undersida: Restauranger > Restaurangundersida
========================================================================== */ 

/* Kontaktuppgifter
========================================================================== */
/* Bestall online */
.section-restaurant-contact .order-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-restaurant-contact .order-wrapper a {
    width: 11rem;
    margin: 1rem;
    box-shadow: 1px 1px 10px rgb(var(--black-color), .2);
    border-radius: 50%;
    text-align: center;
    transition: .3s ease;
}

.section-restaurant-contact .order-wrapper a:hover {
    box-shadow: 1px 1px 10px rgb(var(--black-color), 0);
}

.order-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 11rem;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50%;
    overflow: hidden;
}

.order-circle2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50%;
    overflow: hidden;
}

/* Kontaktuppgifter */
.section-restaurant-contact .contact-info {
    margin-top: 3rem;
}

.section-restaurant-contact .contact-info a {
    font-size: 2.3rem;
    text-decoration: none;
    transition: .3s ease;
}

.section-restaurant-contact .contact-info a:hover {
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 1400px) {
    /* Ikoner */
    .section-restaurant-contact .order-wrapper a {
        width: 8rem;
    }

    .order-circle {
        width: 8rem;
        height: 8rem;
    }
}

@media only screen and (max-width: 1000px) {
    /* Karta */
    .split-map iframe {
        min-height: 40rem;
    }
}

@media only screen and (max-width: 500px) {
    /* Ikoner */
    .section-restaurant-contact .order-wrapper a {
        width: 6rem;
        margin: 5px;
        font-size: 1.2rem;
    }

    .order-circle {
        width: 6rem;
        height: 6rem;
    }

    /* Kontaktuppgifter */
    .section-restaurant-contact .contact-info a {
        font-size: 1.5rem;
    }
} 

/* ==========================================================================
Undersida: Make n bake
========================================================================== */
.steps {
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    column-count: 2;
    column-gap: 10rem;
}

.steps li {
    margin: 1rem 0;
}

@media only screen and (max-width: 580px) {
    .steps {
        column-count: 1;
        column-gap: 0;
    }
}

/* Selma
========================================================================== */
.video-wrapper {
    position: relative;
}

.selma-wrapper {
    display: block;
    width: 110rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: .4s ease;
    background: rgba(var(--black-color), .2);
}

.video-wrapper:hover .play-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(var(--black-color), .7);
}

.play-overlay em {
    color: rgb(var(--white-color));
    font-size: 6rem;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay em {
    font-size: 3.5rem;
}

.play-overlay p {
    display: inline-block;
    color: rgb(var(--white-color));
    margin-left: 1.5rem;
    font-size: 0;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay p {
    font-size: 2rem;
}

/* ==========================================================================
Undersida: Catering
========================================================================== */
.primary-overlay .image-wrapper::after {
    background: linear-gradient(45deg, rgb(var(--primary-color), .95), rgb(var(--primary-color), .5));
}

/* ==========================================================================
Undersida: Crispy Loyalty Club
========================================================================== */
.silver-overlay {
    background: linear-gradient(135deg, rgb(192, 192, 192), rgb(224, 224, 224), rgb(248, 248, 248));
}

.gold-overlay {
    background: linear-gradient(135deg, rgb(217, 171, 7, .9), rgb(217, 171, 7, .5));
}

.platina-overlay {
    background: linear-gradient(135deg, rgb(90, 90, 90), rgb(150, 150, 150), rgb(200, 200, 200));
}

.section-loyalty .cards-wrapper:not(.w-100) {
    margin-left: 20rem;
    margin-right: 20rem;
    padding-bottom: 4rem;
}

.section-loyalty .card-1-1 .card-body {
    border: 1px solid rgb(var(--black-color), .1);
    border-top: 0;
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    min-height: 22rem;
}

.section-loyalty .card-1-1 .card-header {
    padding: 2rem;
    padding-left: 3rem;
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
}

.section-loyalty .card-1-1 img {
    max-height: 10rem;
}

@media only screen and (max-width: 1200px) {
    .section-loyalty .cards-wrapper:not(.w-100) {
        margin-left: 8rem;
        margin-right: 8rem;
    }
}


@media only screen and (max-width: 980px) {
    .section-loyalty .cards-wrapper:not(.w-100) {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section-loyalty .card-1-1 .small-title {
        font-size: 5rem;
    }
}


/* ==========================================================================
Undersida: The Crispy Story
========================================================================== */
/* Timeline */
.timeline-wrapper {
    position: relative;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgb(var(--gray-light-color));
}

.timeline-item {
    position: relative;
    width: 40%;
    padding: 2rem;
    background: rgb(var(--primary-dark-color));
    border-radius: 2rem;
}

.timeline-item.item-left {
    margin: 0 0 0 auto;
}

.timeline-item:before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 122.5%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
    border: 4px solid rgb(var(--white-color));
    transform: translateY(-50%);
}

.item-left.timeline-item:before {
    left: -27.5%;
}

@media only screen and (max-width: 980px) {
    .timeline-wrapper::before {
        left: 1rem;
    }

    .timeline-item {
        width: 100%;
        padding: 5rem 7rem;
        background: transparent
    }

    .timeline-item:before,
    .item-left.timeline-item:before {
        left: -.5rem;
    }

    .timeline-item .section-title {
        padding-bottom: 1rem;
        font-size: 2.7rem;
    }

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

    .timeline-item .text-center {
        text-align: left;
    }
}

@media only screen and (max-width: 680px) {
    .timeline-item {
        padding: 2rem 0 2rem 4rem;
    }
}

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

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

/* Footer header */
.footer-header {
    width: 100%;
}

.footer .section-title {
    color: rgb(var(--black-color));
}

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

.footer-menu {
    width: 23%; 
    margin: 0 0 6rem;
}

.footer-menu.socials {
    width: 10rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;  
}

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

.footer .socials li {
    text-align: right;
}

.footer .logos img {
    display: block;
    width: 16rem;
    margin: 0 auto;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
}

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

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

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

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

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

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

    .footer .logos img {
        margin: 0;
    }

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

    .footer .socials li {
        display: inline-block;
        text-align: left;
    }
}

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

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

    .footer .socials li {
        display: inline-block;
    }
}

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

    /* Footer header */
    .footer-header p {
        font-size: 1.7rem;
    }

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

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