/* Nordrest Volvo Cars */

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

@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;
	--section-width: 130rem;

	/* 	Colors */
	--primary-color: 43, 123, 205;
	--primary-light-color: 188, 214, 241;
	--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: 235, 250, 238;
	--nordrest-green-light-color: 38, 178, 117;;

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

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

.emmas-burgare {
	--primary-color: 191, 75, 63;
	--secondary-color: 244, 238, 228;
}

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

.section-block-wrapper {
	max-width: var(--section-width);
}

/* Speciella paddings */
.py-0 .section-block {
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

/* 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: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
}

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

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

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

/* 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: 80rem;
	margin: 0 auto;
}

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

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

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

@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;
	margin-top: 2rem;
	gap: 2rem;
}

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

.btn {
	display: inline-block;
	min-width: 18rem;
	padding: 1.4rem 2.2rem;
	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(--primary-color));
	border: 1px solid rgb(var(--primary-light-color));
	background-color: rgb(var(--primary-light-color));
}

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

.btn-white-filled:hover {
	color: rgb(var(--black-color));
	border: 2px solid rgb(var(--primary-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;
}

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

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

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

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

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

.bg-primary {
	background-color: rgb(var(--primary-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%);
}

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

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

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

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

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

	.split-content.bg-secondary {
		padding: 2rem;
	}
}

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

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

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

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

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

/* 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 .card-item:hover .image-wrapper::after {
	background: rgba(var(--black-color), .4);
}

.cards-15 .text-wrapper {
	z-index: 1;
	position: relative;
	min-width: 50%;
	padding: 1rem 2rem;
	border-radius: 0 3px 0 0;
	background-color: rgb(var(--secondary-color));
}

.cards-15 .text-wrapper.mw-25 {
	min-width: 25%;
}

.cards-15 .small-title {
	font-size: var(--base-size);
	color: rgb(var(--primary-color));
	padding-bottom: 0;
}

@media only screen and (max-width: 580px) {
	.cards-15 .card-item {
		min-height: 25rem;
	}
}

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

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

/* Crossfade */
.bg-crossfade {
	position: relative;
	background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0) 100%);
}

.fade-slider {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fade-slider div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.fade-slider.slick-slider {
	position: absolute;
}

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

/* Header / Navigation
========================================================================== */
/* Top header */
.top-header {
	display: block;
	padding: 0 1rem;
	background: rgb(var(--primary-color));
	color: rgb(var(--white-color));
	font-size: 1.4rem;
	line-height: 4rem;
	text-align: center;
	text-decoration: none;
	transition: .3s ease;
}

.top-header:hover {
	background-color: rgb(var(--primary-light-color));
	color: rgb(var(--primary-color));
	transition: .3s ease;
}

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

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

/* logo */
.header-logo img {
	padding: 1rem 0;
}

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

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

.TemplateMenu ul {
	width: 22rem;
}

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

.expandable::after {
	position: absolute;
}

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

.header-cta-wrapper .btn {
	min-width: unset;
	padding: 1rem 3rem;
	margin: 0 2rem 0 0;
}

.nordrest-highlight {
	background-color: rgb(var(--nordrest-green-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;
}

.dropdown-list.show .btn {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.dropdown-list {
	position: relative;
	cursor: pointer;
}

.dropdown-list ul {
	display: none;
	position: absolute;
	width: calc(100% - 2rem);
	padding: 0;
	text-align: center;
	list-style: none;
}

.dropdown-list.show ul {
	display: block;
}

.dropdown-list ul .btn {
	width: 100%;
	padding: 1rem;
	border-radius: 0;
}

/* Mobilmeny */
.mobile-menu {
	height: calc(var(--mobile-menu-height) + 4rem);
}

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

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

.mobile-menu .nordrest-highlight {
	min-height: var(--mobile-menu-height);
	padding: 1rem;
	text-align: center;
	justify-content: center;
	border-radius: .8rem;
}

.mobile-menu .header-cta-wrapper {
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
	padding: 2rem 0 0;
	margin: 2rem;
	border-top: 1px solid rgb(var(--gray-light-color));
}

.openmenu {
	display: none;
}

/* Mobile menu Lang selector */
header.mobile-menu .dropdown-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

header.mobile-menu .dropdown-list ul {
	display: flex;
	position: relative;
	width: auto;
}

header.mobile-menu .dropdown-list .btn {
	padding: .7rem 1rem;
	border-radius: .8rem;
	margin: 0 1rem 0 0;
}

header.mobile-menu .dropdown-list .btn:not(.js-lang-active) {
	background-color: rgb(var(--gray-light-color));
	color: rgb(var(--gray-dark-color));
	border-color: rgb(var(--gray-light-color));
}

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

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

/* 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: 55rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 2rem;
    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));
}

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

.top-section .section-title {
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2;
}
.logo-wrapper{
	max-width: 30rem;
	margin: auto;
	margin-bottom: 2rem;
}
@media only screen and (max-width: 1024px) {
	.top-section .section-title {
		font-size: 5rem;
	}
}

@media only screen and (max-width: 580px) {
	.top-section .section-title {
		font-size: 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: 65rem;
	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
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
	min-height: 50rem;
}

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

/* Meddelande / Notis
========================================================================== */
.section-message {
	padding: 2rem;
	text-align: center;
	background-color: rgb(var(--black-color));
} 

.section-message p {
	padding: 0;
	color: rgb(var(--white-color));
}

/* Gallery
========================================================================== */
.section-gallery .section-block {
	padding: 2rem;
}

.section-gallery .section-block-wrapper {
	max-width: none;
}

.gallery-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 20vw);
	gap: 2rem;
}

.gallery-wrapper .gallery-item {
	border-radius: 3px;
	overflow: hidden;
}

.gallery-wrapper .gallery-item:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.gallery-wrapper .gallery-item:nth-child(2) {
	grid-column: 3 / 5;
	grid-row: 1 / 2;
}

.gallery-wrapper .gallery-item:nth-child(3) {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}

.gallery-wrapper .gallery-item:nth-child(4) {
	grid-column: 4 / 5;
	grid-row: 2 / 3;
}

.gallery-wrapper .image-wrapper {
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 1000px) {
	.gallery-wrapper {
		grid-template-rows: repeat(3, 30vw);
		gap: 1rem;
	}

	.gallery-wrapper .gallery-item:nth-child(1) {
		grid-column: 1 / 5;
		grid-row: 1 / 2;
	}

	.gallery-wrapper .gallery-item:nth-child(2) {
		grid-column: 1 / 5;
		grid-row: 3 / 4;
	}

	.gallery-wrapper .gallery-item:nth-child(3) {
		grid-column: 1 / 3;
	}

	.gallery-wrapper .gallery-item:nth-child(4) {
		grid-column: 3 / 5;
	}
}

/* Lunchmeny
========================================================================== */
#menu-content-wrapper #previous,
#menu-content-wrapper #next {
	display: none;
}

.lunch .section-block {
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}

.lunch .section-block-wrapper {
	max-width: none;
}

.lunch .menu-background {
	height: 55rem;
	background-image: url(/assets/images/mat-ovanfran-2000px.jpg);
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

.hojden .menu-background {
	background-image: url(/assets/images/restaurants/hojden/hojden-lokal-2-2000px.jpg);
}

.traffpunkten .menu-background {
	background-image: url(/assets/images/restaurants/traffpunkten/traffpunkten-lokal-2-2000px.jpg);
}

.balansen .menu-background {
	background-image: url(/assets/images/restaurants/balansen/balansen-mat-2000px.jpg);
}

.backyard .menu-background {
	background-image: url(/assets/images/restaurants/backyard/lunchbord-2000px.jpg);
}

.emmas .menu-background {
	background-image: url(/assets/images/restaurants/emmas/emmas-burgare-narbild-1600px.jpg);
}

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

/* Menu Container */
.menu-container {
	width: 100%;
	max-width: 90rem;
	margin: -15rem auto 0;
	padding: 10rem 8rem;
	background-color: rgb(var(--white-color));
	box-shadow: 0 0 4rem rgba(var(--black-color), .05);
	text-align: center;
}

/* Menu Heading */
.menu-heading h3 {
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600;
	padding-bottom: 1.5rem;
	color: rgb(var(--gray-dark-color));
}

.menu-heading h2 {
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 300;
	padding-bottom: .5em;
	color: rgb(var(--black-color));
}

/* Menu Col */
.menu-col {
	padding-top: 4rem;
}

.lunch .menu-item {
	border-bottom: 1px solid rgb(var(--gray-light-color));
	margin-bottom: 1.5rem;
}

/* Menu Col Typografi */
.lunch h6 {
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.4;
	padding: 0 0 .5em;
	color: rgb(var(--primary-color));
}

.lunch h6::after {
	display: block;
	content: "";
	height: .1em;
	width: 4rem;
	margin: 0 auto;
	padding-top: 0.5em;
	border-bottom: 2px solid rgb(var(--primary-color));
}

.lunch p {
	padding-bottom: 0.3em;
}

.lunch .veckans {
	padding-bottom: 1.5em;
}

.lunch .eng-meny,
.lunch .menu-calorie span.eng-meny,
.lunch .menu-calorie span.calorie-value,
.lunch .menu-emission span.eng-meny {
	color: rgb(var(--gray-color));
	font-size: 1.4rem;
	font-style: italic;
	margin-bottom: 1rem;
}

.lunch .menu-calorie p,
.lunch .menu-calorie p span.eng-meny,
.lunch .menu-calorie p span.calorie-value,
.lunch .menu-emission p,
.lunch .menu-emission p span.eng-meny {
	font-size: 1.4rem;
	font-weight: normal;
	margin: 0;
}

.lunch .menu-item span {
	display: inline-block;
	font-weight: 600;
	color: rgb(var(--primary-color));
	font-size: 1.8rem;
}

/* Menu Emissions */
.menu-emission {
	max-width: 30rem;
	margin: 1rem auto 3rem;
}

.menu-emission img {
	max-width: 100%;
}

.klimato .menu-emission img {
	max-width: 8rem;
}

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

/* Menu PDF */
.menu-pdf {
	padding: 3rem;
}

.menu-pdf a {
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600;
	padding-bottom: 1.5rem;
	color: rgb(var(--gray-dark-color));
}

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

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

.lunch .restaurangnamn {
	padding-bottom: 1em;
}

.lunch .veckans-meny {
	padding-bottom: 2em;
}

/* Menu Controller */
.menu-controller,
#menu-content-wrapper {
	text-align: center;
}

.menu-controller {
	margin-top: 3rem;
}

.lunch .btn {
	margin: 1rem;
}

@media only screen and (max-width: 1396px) {
	.menu-background {
		background-attachment: scroll;
		background-size: cover;
		height: 45rem;
		overflow: hidden;
	}
}

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

	.lunch h6 {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 980px) {
	.menu-container {
		margin: -10rem auto 0;
	}
}

@media only screen and (max-width: 768px) {
	.menu-container {
		margin: 0;
		padding: 5rem 3rem;
	}

	.lunch .menu-background {
		height: 35rem;
	}
}

@media only screen and (max-width: 550px) {
	.menu-container {
		text-align: left;
	}

	.menu-heading h2 {
		font-size: 2.5rem;
	}

	.lunch h6 {
		font-size: 1.7rem;
	}

	.lunchmeny h6 {
		text-align: left;
	}

	.lunch h6:after {
		margin: 0;
	}

	.menu-heading h3,
	.menu-pdf a {
		font-size: 1.2rem;
	}
}

/* Meny: Emmas burgare
========================================================================== */
.menu-items-wrapper {
	list-style: none;
	columns: 2;
	column-gap: 6rem;
	padding: 0;
	margin: 0;
}

.menu-items-wrapper>li {
	margin: 0 0 5rem;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.menu-items-wrapper .small-title {
	text-align: center;
	padding-top: 1rem;
}

.menu-course {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-course .menu-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-bottom: 1px dotted rgb(var(--primary-color));
	padding: 0 0 1rem;
	margin: 0 0 1rem;
	text-align: left;
}

.menu-course .text-title {
	display: flex;
	justify-content: space-between;
}

.menu-course .price {
	padding: 0 0 0 2rem;
	margin: 0 0 0 auto;
	font-weight: 700;
	white-space: nowrap;
}

.menu-course p {
	--base-size: 1.4rem;
	padding: 0;
}

@media only screen and (max-width: 800px) {
	.menu-items-wrapper {
		columns: 1;
	}
}

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

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

.footer .section-block-wrapper {
	max-width: none;
}

.footer-container {
	max-width: var(--section-width);
	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(--nordrest-blue-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 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;
	}
}

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

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

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