@charset "UTF-8";
:root {
  --MainBackground: #2B2E44;
  --MainBackgroundNote: #e0e0e0;
  --MainBackgroundFade: #3a3b42;
  --HeaderBackgrond: #D9DADC;
  --ListBackground:#e4e4e4;
  --MobilField: #E8E8EB;
  --MobilBackground: linear-gradient(#2E324D, #010117);
  --SpecialDayColor: #cc5500;
  --SpecialDayColorDark: #aa4700;
  --ApiTextColor: #ff7b00;
  --DarkBackground: #545458;
  --LightBackground: #EFEFEF;
  --InputBackground: #F7F7F7;
  --InputBackgroundInactive: #f5f5f5;
  --InputBackgroundEdit: #f3f3e7;
  --MenuItemBackground: #FFFFFF;
  --BorderColor: #707070;
  --LineboderColor: #c5c5c5;
  --ButtonTextColor: #ffffff;
  --TextColorDark: #000000;
  --TextColorLocked: rgba(0,0,0,0.75);
  --TextColorLogo: #ffffff;
  --TimeBarColor: #B2B5C8;
  --FontMain: "Montserrat", Sans-Serif;
  --FontSecond: "Open Sans";
}

/* montserrat-regular - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/montserrat-v26-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/montserrat-v26-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/montserrat-v26-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Montserrat-bold.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  font-style: normal;
  font-weight: 800;
  src: url("fonts/montserrat-v29-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  font-style: normal;
  font-weight: 900;
  src: url("fonts/montserrat-v29-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/open-sans-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/open-sans-v40-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/open-sans-v40-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/open-sans-v40-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  font-display: swap !important;
}

html {
  scroll-behavior: smooth !important;
}

body:has(dialog[open]) {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at center, #545458 0%, #3e3e41 100%);
  font-family: var(--FontMain);
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  outline: 1px black dashed;
  outline-offset: 2px;
}

a:focus {
  text-decoration: underline;
}

.mbot24 {
  margin-bottom: 24px !important;
}

.mbot36 {
  margin-bottom: 36px !important;
}

.mbot48 {
  margin-bottom: 48px !important;
}

@media (width <= 540px) {
  .menugowrapper {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "contentscreen";
  }
  h1 {
    font-size: clamp(24px, 5vw, 40px) !important;
    margin-top: 16px;
    margin-bottom: 32px;
  }
}
@media (width <= 500px) {
  .listwrapper {
    column-count: 1;
  }
}
@media (width > 500px) and (width <= 700px) {
  .listwrapper {
    column-count: 2;
  }
}
@media (width > 700px) {
  .listwrapper {
    column-count: 3;
  }
}
@media (width > 540px) {
  h1 {
    margin-bottom: 32px;
  }
  .menugowrapper {
    grid-template-columns: 1fr minmax(30%, 940px) 1fr;
    grid-template-rows: 10px auto;
    grid-template-areas: ". . ." ". contentscreen ." !important;
  }
}
.blurstart {
  animation: blurFadeIn 1s ease forwards;
}

.menugowrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 0;
  background: radial-gradient(circle at center, #545458 0%, #3e3e41 100%);
  display: grid;
  gap: 0rem;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper {
    overflow: hidden;
    grid-template-columns: 100%;
    grid-template-areas: "topsidegrid" "contentgrid" "." "bottomgrid";
    background-image: none !important;
    border: 0px;
  }
  .menugowrapper .paperwrapper .content {
    padding-bottom: 0px !important;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper {
    grid-template-columns: 40px auto 40px;
    grid-template-areas: ". topsidegrid ." ". contentgrid ." ". . ." ". bottomgrid .";
    border: 3px solid var(--MainBackground);
  }
}
.menugowrapper .paperwrapper {
  grid-area: contentscreen;
  background: var(--LightBackground);
  background-attachment: fixed;
  background-size: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  max-width: 100%;
  position: relative;
  display: grid;
  gap: 0rem;
  grid-template-rows: auto 1fr 5px 120px;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .topside {
    min-height: 110px;
  }
  .menugowrapper .paperwrapper .topside h1 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    margin-top: 0px;
    padding: 20px 0px;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .topside {
    position: relative;
    height: auto;
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .menugowrapper .paperwrapper .topside h1 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 30px;
  }
}
.menugowrapper .paperwrapper .content, .menugowrapper .paperwrapper .bottomside {
  max-width: 100% !important;
}
.menugowrapper .paperwrapper .topside {
  grid-area: topsidegrid;
  width: 100%;
}
.menugowrapper .paperwrapper .topside h1 {
  grid-area: menuicon;
  background: var(--MainBackground);
  color: var(--TextColorLogo);
  font-family: var(--FontMain);
  font-weight: 400;
  font-size: 36px;
  line-height: 32px;
}
.menugowrapper .paperwrapper .topside h2 {
  display: none;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .topside .menuback {
    width: 100%;
    margin-top: 95px;
    margin-bottom: 40px;
    position: relative;
    margin-left: 12px;
    z-index: 20;
  }
  .menugowrapper .paperwrapper .topside .menuback a, .menugowrapper .paperwrapper .topside .menuback #backCategory, .menugowrapper .paperwrapper .topside .menuback .printer {
    background: var(--MainBackground);
    padding: 12px 12px 10px 12px;
    color: var(--TextColorLogo);
  }
  .menugowrapper .paperwrapper .topside .menuback .pointback:after {
    content: " ";
    background-image: url(icons/triangle-fill.svg);
    display: block;
    width: 18px !important;
    height: 18px !important;
    background-size: 18px 18px !important;
    vertical-align: bottom;
    transform: rotate(-90deg);
    position: absolute;
    top: 8px; /* Move it 50px down */
    filter: brightness(0) invert(1);
    margin-right: 6px;
  }
  .menugowrapper .paperwrapper .topside .menuback .pointbacktext {
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    padding-left: 24px;
    margin-top: 5px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.add a {
    background: var(--LightBackground);
    border: 1px dashed var(--MainBackground);
    padding: 7px 11px 8px 11px;
    color: var(--TextColorDark);
    line-height: 26px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.added a {
    padding: 8px 12px 9px 12px;
    background: var(--MainBackground);
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite {
    position: absolute !important;
    display: inline-block;
    right: 28px;
    top: 5px;
    padding: 0px 0px !important;
    font-weight: 500;
    font-size: 20px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite a:focus {
    text-decoration: underline;
    outline: none;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite a:hover {
    text-decoration: underline;
    outline: none;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.add a:before {
    content: " ";
    background-image: url(icons/plus-circle-dotted.svg);
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    background-size: 22px 22px !important;
    vertical-align: middle;
    transform: rotate(-90deg);
    margin-top: -2px;
    margin-right: 10px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.added a:before {
    content: " ";
    background-image: url(icons/star-fill.svg);
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    background-size: 22px 22px !important;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
  }
  .menugowrapper .paperwrapper .topside .menuback .printer {
    display: none;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .topside .menuback {
    margin-top: 1px;
    width: 100%;
    position: relative;
    z-index: 10;
  }
  .menugowrapper .paperwrapper .topside .menuback .printer {
    background: var(--ListBackground);
    border-radius: 10px;
  }
  .menugowrapper .paperwrapper .topside .menuback .printer a {
    padding: 10px 12px;
    background: var(--ListBackground);
  }
  .menugowrapper .paperwrapper .topside .menuback .printer a:hover {
    background: var(--HeaderBackgrond);
  }
  .menugowrapper .paperwrapper .topside .menuback .printer:hover {
    background: var(--HeaderBackgrond);
  }
  .menugowrapper .paperwrapper .topside .menuback a, .menugowrapper .paperwrapper .topside .menuback #backCategory {
    background: var(--ListBackground);
    padding: 10px 12px;
    border-radius: 10px;
  }
  .menugowrapper .paperwrapper .topside .menuback a, .menugowrapper .paperwrapper .topside .menuback #backCategory:hover, .menugowrapper .paperwrapper .topside .menuback .printer:hover {
    background: var(--HeaderBackgrond);
  }
  .menugowrapper .paperwrapper .topside .menuback .pointback:after {
    content: " ";
    background-image: url(icons/triangle-fill.svg);
    display: block;
    width: 13px !important;
    height: 13px !important;
    background-size: 13px 13px !important;
    vertical-align: middle;
    transform: rotate(-90deg);
    margin-top: -2px;
    margin-right: 5px;
  }
  .menugowrapper .paperwrapper .topside .menuback .pointbacktext {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.add a {
    background: var(--ListBackground);
    border: 1px dashed var(--MainBackground);
    padding: 10px 11px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.added a {
    padding: 9px 10px;
    background: var(--ListBackground);
    border: 2px solid var(--MainBackground);
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite {
    position: absolute !important;
    display: inline-block;
    right: 0px;
    top: 0px;
    font-weight: 500;
    font-size: 16px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite a:focus {
    text-decoration: underline;
    outline: none;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite a:hover {
    text-decoration: underline;
    outline: none;
    background: var(--HeaderBackgrond);
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.add a:before {
    content: " ";
    background-image: url(icons/plus-circle-dotted.svg);
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    background-size: 22px 22px !important;
    vertical-align: middle;
    transform: rotate(-90deg);
    margin-top: -2px;
    margin-right: 10px;
  }
  .menugowrapper .paperwrapper .topside .menuback .favorite.added a:before {
    content: " ";
    background-image: url(icons/star-fill.svg);
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    background-size: 22px 22px !important;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 10px;
    filter: invert(13%) sepia(5%) saturate(5047%) hue-rotate(196deg) brightness(97%) contrast(85%);
  }
  .menugowrapper .paperwrapper .topside .menuback .printer {
    position: absolute !important;
    display: inline-block;
    right: 128px;
    top: 0px;
    font-weight: 500;
    font-size: 16px;
  }
}
.menugowrapper .paperwrapper .topside .menuback {
  width: 100%;
  padding-bottom: 4px;
}
.menugowrapper .paperwrapper .topside .menuback .printer a:focus {
  text-decoration: underline;
  outline: none;
}
.menugowrapper .paperwrapper .topside .menuback .printer a:hover {
  text-decoration: underline;
  outline: none;
}
.menugowrapper .paperwrapper .topside .menuback a:focus {
  text-decoration: none;
  outline: none;
}
.menugowrapper .paperwrapper .topside .menuback a:focus .pointbacktext {
  text-decoration: underline;
}
.menugowrapper .paperwrapper .topside .menuback a:hover {
  outline: none;
  text-decoration: none;
}
.menugowrapper .paperwrapper .topside .menuback a:hover .pointbacktext {
  text-decoration: underline;
}
.menugowrapper .paperwrapper .topside .menuback div {
  display: inline-block;
}
.menugowrapper .paperwrapper .content {
  grid-area: contentgrid;
  padding-bottom: 72px;
  height: auto;
  width: 100%;
  position: relative;
  display: grid;
  gap: 0rem;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  grid-template-areas: ". columncontent .";
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .content .listwrapper .contentgroup .contentheader {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 20px;
  }
  .menugowrapper .paperwrapper .content .listwrapper .contentgroup .contentitem {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .content .listwrapper .contentgroup .contentheader {
    font-weight: 600;
    margin-bottom: 8px;
  }
  .menugowrapper .paperwrapper .content .listwrapper .contentgroup .contentitem {
    margin-bottom: 4px;
  }
}
.menugowrapper .paperwrapper .content .listwrapper {
  grid-area: columncontent;
  padding-top: 50px;
  position: relative;
}
.menugowrapper .paperwrapper .content .listwrapper .contentgroup {
  break-inside: avoid;
  margin-bottom: 40px;
  border-left: 1px dashed var(--LineboderColor);
  padding-left: 20px;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .bottomside {
    background: var(--MainBackground);
    height: fit-content;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .bottomside {
    border-top: 1px dashed var(--LineboderColor);
  }
}
.menugowrapper .paperwrapper .bottomside {
  grid-area: bottomgrid;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .bottomside .footercontainer {
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: auto !important;
    grid-template-areas: ". subadmin .";
    padding-bottom: 50px;
  }
  .menugowrapper .paperwrapper .bottomside .footercontainer .info, .menugowrapper .paperwrapper .bottomside .footercontainer .apps {
    display: none;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .bottomside .footercontainer {
    grid-template-columns: 30px repeat(4, 1fr) 30px;
    grid-template-rows: auto;
    grid-template-areas: ". subapps subinfo subinfo subadmin .";
  }
}
.menugowrapper .paperwrapper .bottomside .footercontainer {
  margin-top: 20px;
  height: auto;
  width: 100%;
  position: relative;
  display: grid;
  gap: 0rem;
}
.menugowrapper .paperwrapper .bottomside .footercontainer .apps {
  grid-area: subapps;
}
.menugowrapper .paperwrapper .bottomside .footercontainer .info {
  grid-area: subinfo;
}
.menugowrapper .paperwrapper .bottomside .footercontainer .admin {
  grid-area: subadmin;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem {
    padding-top: 10px;
    padding-bottom: 36px;
  }
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem .header {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 4px;
    text-align: right;
    color: var(--TextColorLogo);
  }
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem a .text {
    color: var(--TextColorLogo);
  }
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem .text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2px;
    text-align: right;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem .header {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 4px;
  }
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem a .text:hover {
    text-decoration: underline !important;
    cursor: pointer;
  }
  .menugowrapper .paperwrapper .bottomside .footercontainer .footeritem .text {
    font-weight: 400;
    margin-bottom: 2px;
  }
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .sitecontent {
    max-width: 100vw;
    min-width: 100vw;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .sitecontent {
    max-width: 100%;
    min-width: 100% !important;
  }
}
.menugowrapper .paperwrapper .sitecontent {
  width: 100%;
  grid-column: 2;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .sitecontent .weekmenu {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
    padding-bottom: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu:has(.specialday) {
    border-top: 4px solid var(--SpecialDayColor);
    border-bottom: 4px solid var(--SpecialDayColor);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu {
    border-top: 4px solid var(--MainBackground);
    border-bottom: 4px solid var(--MainBackground);
    margin-top: 44px;
    background: var(--ListBackground);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menucollection .menuline {
    font-weight: 400 !important;
    font-size: 18px;
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo {
    width: auto;
    margin-bottom: 24px;
    padding-top: 16px;
    padding-bottom: 24px;
    padding-left: 16px;
    background: var(--MainBackground);
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo .top {
    font-family: var(--FontMain);
    font-weight: 600;
    font-size: 20px;
    color: var(--TextColorLogo);
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo .android {
    display: block;
    margin-top: 12px;
    color: white;
    width: fit-content;
    font-weight: 500;
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo .android:before {
    content: " ";
    margin-bottom: -5px;
    background-image: url(icons/google-play.svg);
    position: relative;
    display: inline-block;
    width: 24px !important;
    height: 24px;
    background-size: 24px 24px !important;
    margin-right: 12px;
    filter: brightness(0) invert(1);
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo .ios {
    display: block;
    margin-top: 12px;
    color: white;
    width: fit-content;
    font-weight: 500;
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo .android:hover, .menugowrapper .paperwrapper .sitecontent .appinfo .ios:hover {
    outline-color: white;
    outline-offset: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo .ios:before {
    content: " ";
    margin-bottom: -5px;
    background-image: url(icons/apple.svg);
    position: relative;
    display: inline-block;
    width: 24px !important;
    height: 24px;
    background-size: 24px 24px !important;
    margin-right: 12px;
    filter: brightness(0) invert(1);
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .sitecontent .weekmenu {
    border-bottom: 1px dashed var(--LineboderColor);
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-bottom: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem.specialday .dateitem:before {
    background: var(--SpecialDayColor);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu:has(.specialday) .menuitem.specialday .dateitem::before {
    background: var(--SpecialDayColor);
  }
  .menugowrapper .paperwrapper .sitecontent .appinfo {
    display: none;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu {
    margin-top: 42px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem {
    background: unset !important;
    padding: 0px !important;
    width: calc(100% - 24px) !important;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem {
    background: var(--ListBackground);
    padding: 16px 24px;
    border-radius: 10px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .weekday {
    margin-top: 4px;
    padding-left: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .dateday {
    padding-left: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menucollection {
    padding-left: 20px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menucollection .menuline {
    font-weight: 500 !important;
    font-size: 16px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menucollection:last-child {
    padding-top: 8px;
  }
}
.menugowrapper .paperwrapper .sitecontent .daymenu, .menugowrapper .paperwrapper .sitecontent .weekmenu {
  width: 100%;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem:nth-child(even), .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem:nth-child(even) {
    background: var(--ListBackground);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem.specialday .menucollection .menuline, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem.specialday .menucollection .menuline {
    border-left: 5px solid var(--SpecialDayColor);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem {
    padding: 16px 12px;
    margin-left: 0px;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-template-areas: "dateitem" "menucollection";
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem {
    width: 100%;
    grid-area: dateitem;
    padding-bottom: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .weekday, .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .dateday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .weekday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .dateday {
    width: auto;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    margin-right: 0px !important;
    text-align: left;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .weekday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .weekday {
    font-weight: 700;
    font-size: 22px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .dateday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .dateday {
    font-weight: 400;
    font-size: 20px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .dateday:before, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .dateday:before {
    content: " - ";
    margin-left: 4px;
    margin-right: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection {
    grid-area: menucollection;
    padding-top: 2px;
    padding-left: 0px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection .menuline, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection .menuline {
    margin-bottom: 12px;
    margin-left: 0px;
    font-size: 18px;
    padding-left: 16px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-left: 5px solid var(--MainBackground);
    word-wrap: break-word;
    word-break: normal;
    width: 100%;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection .menuline .foodgroup, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection .menuline .foodgroup {
    font-weight: 600;
    color: var(--MainBackground);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection .menuline:last-child, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection .menuline:last-child {
    margin-bottom: 4px;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem {
    grid-template-columns: 115px auto;
    margin-bottom: 16px;
    margin-right: 20px;
    padding: 16px 24px;
    width: calc(100% - 48px);
    background: var(--ListBackground);
    border-radius: 10px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem:before, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem:before {
    content: " ";
    width: 12px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 10px 0px 0px 10px;
    background: var(--MainBackground);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .weekday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .weekday {
    margin-left: 10px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .dateday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .dateday {
    margin-left: 10px;
    text-align: left !important;
    font-weight: 400;
    font-size: 16px;
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection .menuline, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection .menuline {
    margin-bottom: 12px;
    margin-left: 20px;
    border-bottom: 1px dashed var(--LineboderColor);
  }
  .menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection .menuline .foodgroup, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection .menuline .foodgroup {
    font-weight: 600;
    color: var(--MainBackground);
  }
}
.menugowrapper .paperwrapper .sitecontent .daymenu .menuitem.specialday .dateitem .weekday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem.specialday .dateitem .weekday {
  color: var(--SpecialDayColor);
}
.menugowrapper .paperwrapper .sitecontent .daymenu .menuitem.specialday .menucollection .menuline .foodgroup, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem.specialday .menucollection .menuline .foodgroup {
  color: var(--SpecialDayColor);
}
.menugowrapper .paperwrapper .sitecontent .daymenu .menuitem, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem {
  height: auto;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0rem;
}
.menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .weekday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .weekday {
  color: var(--TextColorDark);
  font-family: var(--FontMain);
}
.menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .dateitem .dateday, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .dateitem .dateday {
  color: var(--TextColorDark);
  font-family: var(--FontMain);
}
.menugowrapper .paperwrapper .sitecontent .daymenu .menuitem .menucollection .menuline, .menugowrapper .paperwrapper .sitecontent .weekmenu .menuitem .menucollection .menuline {
  width: fit-content;
  width: calc(100% - 40px);
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .sitecontent .pickandchoose {
    margin-top: 36px;
    width: 100%;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepicktext {
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 22px;
    font-family: var(--FontMain);
    margin-bottom: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer {
    display: flex;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer a:focus:not(:active) {
    background-color: transparent;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer div {
    flex: 1 1 0;
    display: inline-block;
    color: var(--TextColorDark);
    font-family: var(--FontMain);
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    background: var(--ListBackground);
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer div:hover {
    cursor: pointer;
    text-decoration: underline;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .before, .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .after {
    margin-top: 4px;
    padding: 6px 4px 2px 4px;
    height: 28px;
    border-top: 2px dashed var(--BorderColor);
    border-bottom: 2px dashed var(--BorderColor);
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .before:hover, .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .after:hover {
    background: var(--HeaderBackgrond);
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .weeknumber {
    font-weight: 700;
    background: var(--MainBackground);
    border-radius: 5px;
    color: var(--TextColorLogo);
    padding: 13px 12px;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .before:before {
    content: " ";
    background-image: url(icons/triangle-fill.svg);
    display: inline-block;
    width: 14px !important;
    height: 14px !important;
    background-size: 14px 14px !important;
    vertical-align: middle;
    transform: rotate(-90deg);
    margin-top: -2px;
    margin-right: 10px;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .after:after {
    content: " ";
    background-image: url(icons/triangle-fill.svg);
    display: inline-block;
    width: 14px !important;
    height: 14px !important;
    background-size: 14px 14px !important;
    vertical-align: middle;
    transform: rotate(90deg);
    margin-top: -2px;
    margin-left: 10px;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .sitecontent .pickandchoose {
    margin-top: 64px;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepicktext {
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--FontMain);
    margin-bottom: 4px;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer {
    width: 100%;
    background: var(--ListBackground);
    border-radius: 10px;
    display: flex;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer div:focus:not(:active) {
    background-color: transparent;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer div {
    flex: 1 1 0;
    color: var(--TextColorDark);
    font-family: var(--FontMain);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 12px;
    text-align: center;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer div:hover {
    text-decoration: underline;
    border-radius: 10px;
    cursor: pointer;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .weeknumber {
    font-weight: 700;
    background: var(--MainBackground);
    border-radius: 10px;
    color: var(--TextColorLogo);
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .before:before {
    content: " ";
    background-image: url(icons/triangle-fill.svg);
    display: inline-block;
    width: 12px !important;
    height: 12px !important;
    background-size: 12px 12px !important;
    vertical-align: middle;
    transform: rotate(-90deg);
    margin-top: -2px;
    margin-right: 10px;
  }
  .menugowrapper .paperwrapper .sitecontent .pickandchoose .datepickcontainer .after:after {
    content: " ";
    background-image: url(icons/triangle-fill.svg);
    display: inline-block;
    width: 12px !important;
    height: 12px !important;
    background-size: 12px 12px !important;
    vertical-align: middle;
    transform: rotate(90deg);
    margin-top: -2px;
    margin-left: 10px;
  }
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .sitecontent .messagewrapper {
    border-top: 4px solid var(--MainBackground);
    padding-top: 30px;
    background: var(--ListBackground);
    padding-bottom: 80px !important;
  }
}
.menugowrapper .paperwrapper .sitecontent .messagewrapper {
  width: 100%;
  padding-bottom: 30px;
}
@media (width <= 600px) {
  .menugowrapper .paperwrapper .sitecontent .messagewrapper .message {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 20px;
  }
}
@media (width > 600px) {
  .menugowrapper .paperwrapper .sitecontent .messagewrapper .message {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.print-footer, .printfoot {
  display: none;
}

.logobox {
  display: none;
}

@page :first {
  margin-top: 0px; /* t.ex. större topmarginal på första sidan */
}
@page {
  size: A4 portrait;
  margin: 0mm;
}
@media print {
  .appinfo {
    display: none;
  }
  body, html {
    margin: 0px;
    padding: 0px;
    height: 100%;
  }
  body * {
    visibility: hidden;
  }
  * {
    overflow: visible !important;
    box-shadow: none !important; /* ibland syns skuggor som lurar scroll */
  }
  #fetchQuery {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 0px;
    height: 0px;
    z-index: -1;
  }
  .menucollection {
    break-inside: avoid;
    page-break-inside: avoid; /* för äldre webbläsare */
    margin-left: unset !important;
    padding-left: unset !important;
  }
  .menugowrapper {
    position: static !important;
  }
  .paperwrapper {
    display: flex !important;
    flex-direction: column;
    min-height: 100vh;
  }
  .menugowrapper .paperwrapper .content {
    flex: 1 1 auto;
    min-height: 0;
    padding-bottom: 0 !important;
  }
  .menugowrapper .paperwrapper .content *:last-child {
    margin-bottom: 0 !important;
  }
  .topside {
    position: relative !important;
    min-width: 100% !important;
  }
  .sitecontent {
    display: block !important;
    margin-left: unset !important;
    padding-left: unset !important;
  }
  h1.titlebar {
    background: unset !important;
    margin-top: 32px !important;
    margin-right: unset !important;
    margin-left: 30px !important;
    font-weight: 700 !important;
    color: var(--MainBackground) !important;
    margin-bottom: unset !important;
    padding-bottom: unset !important;
    padding-left: unset !important;
    max-width: 65%;
  }
  h2 {
    display: block !important;
    width: auto;
    color: var(--MainBackground);
    font-family: var(--FontMain);
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    padding: unset !important;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 32px !important;
  }
  .logobox {
    position: absolute;
    top: 30px;
    right: 50px;
    height: 80px;
    width: 200px;
    overflow: hidden;
    display: flex;
    align-items: flex-start; /* align top */
    justify-content: flex-end; /* align right */
  }
  .logobox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* keeps ratio, no cropping */
  }
  .menuback, .daymenu, .pickandchoose, .bottomside {
    display: none;
    height: 0px !important;
  }
  .weekmenu .menuitem {
    max-width: 87% !important;
    margin-left: 0px;
    margin-bottom: 8px !important;
    background: unset !important;
    border-bottom: 1px var(--LineboderColor) dashed !important;
    margin-left: 30px !important;
    margin-right: 30px !important;
    border-radius: unset !important;
  }
  .weekmenu .menuitem .dateitem:before {
    display: none !important;
    padding-left: unset !important;
    margin-left: unset !important;
  }
  .weekmenu .menuitem .dateitem {
    padding-left: unset !important;
    margin-left: unset !important;
  }
  .weekmenu .menuitem {
    padding-left: unset !important;
    margin-left: 30px !important;
  }
  .weekmenu .menuitem .dateitem .weekday, .weekmenu .menuitem .dateitem .dateday {
    padding-left: unset !important;
    margin-left: unset !important;
    font-size: 18px !important;
  }
  .menuitem .menucollection {
    margin-left: unset !important;
    padding-left: unset !important;
  }
  .menuitem .menucollection .menuline:before {
    content: "-";
    margin-right: 10px;
    display: inline-block;
  }
  .menuitem .menucollection .menuline {
    border-bottom: unset !important;
    font-size: 16px !important;
    font-weight: 500;
    margin-bottom: 3px;
  }
  .menugowrapper, .menugowrapper * {
    visibility: visible;
    border: 0px !important;
  }
  .weekmenu {
    height: auto;
    margin-bottom: unset !important;
    padding-bottom: unset !important;
    padding-left: unset !important;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
  }
  .dateitem:before {
    display: none;
  }
  .messagewrapper {
    height: auto;
    position: relative;
    margin-top: unset !important;
    padding-top: unset !important;
  }
  .messagewrapper .message {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    font-weight: 500;
  }
  .menugowrapper {
    position: static !important;
    display: block;
    width: 100%;
    overflow: visible !important;
    background-attachment: scroll !important; /* prevents issues with fixed bg on print */
  }
  /* Optional: remove background for ink-saving or clean output */
  .menugowrapper {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    background: white !important;
  }
  .menugowrapper .paperwrapper {
    background-image: unset !important;
    background: unset;
  }
  .printfoot {
    display: flex !important;
    margin: 0 !important;
    padding: 0 15mm;
    height: 300px;
    break-inside: avoid;
    page-break-before: auto;
    page-break-after: auto;
    margin-top: auto;
    align-items: flex-end;
    padding-bottom: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 88% !important;
  }
  .printfoot .left {
    height: 100px;
    width: auto;
    flex: 1 1 0;
    padding-bottom: 9px;
  }
  .printfoot .left .logobox {
    position: relative;
    height: 70px;
    width: 180px;
    overflow: hidden;
    display: flex;
    align-items: flex-start; /* align top */
    justify-content: flex-start; /* align right */
    margin-left: 36px;
  }
  .printfoot .left .logobox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* keeps ratio, no cropping */
  }
  .printfoot .printqr {
    display: flex;
    flex-direction: column; /* text under koden */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 1 1 0;
  }
  .printfoot .printqr svg {
    max-height: 80px; /* så texten också ryms */
    max-width: 100%;
    height: auto;
    width: auto;
  }
  .printfoot .printqr .scanmeplease {
    margin-top: 4px;
    font-size: 18px;
    color: var(--MainBackground);
    font-family: var(--FontMain);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .printfoot .logotext {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 8px;
    flex: 1 1 0;
    color: var(--MainBackground);
    font-family: var(--FontMain);
    font-weight: 600;
    padding-bottom: 0px;
    font-size: 24px;
  }
  ::-webkit-scrollbar {
    display: none !important;
  }
}
@media (width <= 512px) {
  .register {
    column-count: unset !important;
    column-gap: unset !important;
    border-left: unset !important;
    border-right: unset !important;
  }
  .register .itemlist {
    padding-left: 0px !important;
  }
  .bottomleft, .bottomright {
    width: 50% !important;
  }
  .bottomleft .leftwrapper, .bottomright .leftwrapper {
    margin-left: 12% !important;
  }
  .bottomcenter {
    display: none !important;
  }
}
@media (width > 0px) and (width <= 768px) {
  .topwrapper {
    min-width: 240px;
    max-width: 960px;
    padding-left: 50px;
    padding-right: 30px;
  }
  .menufullwrapper {
    min-width: 240px;
    max-width: 960px;
    padding-left: 50px;
    padding-right: 30px;
    flex-direction: column;
  }
  .menufullwrapper .publicsearch {
    width: 100% !important;
  }
  .menufullwrapper .publicsearch .searchfield {
    width: calc(100% - 18px);
  }
  .menufullwrapper .publicsearch .searchfield input {
    width: calc(100% - 16px);
  }
  .menufullwrapper .publicfavorite {
    margin-top: 40px;
    width: 100%;
  }
  .menufullwrapper .publicfavorite .favoritewrapper {
    margin-left: 0px;
    margin-right: auto;
    width: calc(100% - 34px);
  }
  .menufullwrapper .publicfavorite .favoritewrapper .favoriteitem {
    width: 100%;
    display: block;
  }
  .registerwrapper {
    min-width: 240px;
    max-width: 960px;
    padding-left: 50px;
    padding-right: 30px;
  }
  .registerwrapper .register {
    column-count: 2;
    column-gap: 20px;
  }
  .registerwrapper .register .itemlist {
    padding-left: 30px;
  }
  .bottomwrapper {
    min-width: 240px;
    max-width: 960px;
    padding-left: 50px;
    padding-right: 30px;
  }
}
@media (width > 768px) {
  .topwrapper {
    min-width: 560px;
    max-width: 960px;
    padding-left: 40px;
    padding-right: 60px;
  }
  .appinfo {
    margin-top: -4px !important;
    margin-bottom: 12px !important;
    padding-left: 16px !important;
    padding-top: 4px !important;
    width: auto;
    border: unset !important;
  }
  .appinfo .top {
    display: inline-block !important;
    margin-right: 32px;
    font-size: 18px !important;
  }
  .appinfo .android {
    margin-right: 24px;
  }
  .appinfo .ios::before, .appinfo .android:before {
    display: inline-block !important;
  }
  .appinfo .ios, .appinfo .android {
    display: inline-block !important;
  }
  .menufullwrapper {
    min-width: 560px;
    max-width: 960px;
    padding-left: 40px;
    padding-right: 60px;
    flex-direction: row;
  }
  .menufullwrapper .publicsearch {
    width: 100% !important;
  }
  .menufullwrapper .publicsearch .searchfield {
    width: calc(100% - 20px);
  }
  .menufullwrapper .publicsearch .searchfield input {
    width: calc(100% - 16px);
    max-width: 800px;
    min-width: 300px;
  }
  .menufullwrapper .publicsearch .searchfield .resultbox {
    width: 100%;
    min-width: 344px !important;
  }
  .menufullwrapper .publicfavorite {
    width: 30%;
  }
  .menufullwrapper .publicfavorite .favoritewrapper {
    margin-left: auto;
    margin-right: 0px;
    width: fit-content;
  }
  .menufullwrapper .publicfavorite .favoritewrapper .favoriteitem {
    width: 300px;
    display: block;
  }
  .registerwrapper {
    min-width: 560px;
    max-width: 960px;
    padding-left: 40px;
    padding-right: 60px;
  }
  .registerwrapper .register {
    column-count: 3;
    column-gap: 40px;
  }
  .registerwrapper .register .itemlist {
    padding-left: 30px;
  }
  .bottomwrapper {
    min-width: 560px;
    max-width: 960px;
    padding-left: 40px;
    padding-right: 60px;
  }
}
.publicmenugo {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas: "topmenu" "options" "register" "bottombar";
}
.publicmenugo .publictop {
  grid-area: topmenu;
  background: var(--MainBackground);
}
.publicmenugo .publictop .topwrapper .publicheader {
  font-family: var(--FontMain);
  font-size: 48px;
  color: var(--TextColorLogo);
}
.publicmenugo .publictop .topwrapper .publicslogan {
  font-family: var(--FontSecond);
  font-size: 16px;
  color: var(--TextColorLogo);
}
.publicmenugo .publictop .topwrapper .publicslogan .shortlogo {
  display: inline-block;
}
.publicmenugo .publictop .appinfo {
  width: auto;
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 20px;
  margin-bottom: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 26px;
}
.publicmenugo .publictop .appinfo .top {
  font-family: var(--FontMain);
  font-weight: 500;
  font-size: 20px;
  color: var(--TextColorLogo);
}
.publicmenugo .publictop .appinfo .android {
  display: block;
  margin-top: 12px;
  color: white;
  width: fit-content;
}
.publicmenugo .publictop .appinfo .android:before {
  content: " ";
  margin-bottom: -5px;
  background-image: url(icons/google-play.svg);
  position: relative;
  display: inline-block;
  width: 24px !important;
  height: 24px;
  background-size: 24px 24px !important;
  margin-right: 12px;
  filter: brightness(0) invert(1);
}
.publicmenugo .publictop .appinfo .ios {
  display: block;
  margin-top: 12px;
  color: white;
  width: fit-content;
}
.publicmenugo .publictop .appinfo .android:hover, .publicmenugo .publictop .appinfo .ios:hover {
  outline-color: white;
  outline-offset: 4px;
}
.publicmenugo .publictop .appinfo .ios:before {
  content: " ";
  margin-bottom: -5px;
  background-image: url(icons/apple.svg);
  position: relative;
  display: inline-block;
  width: 24px !important;
  height: 24px;
  background-size: 24px 24px !important;
  margin-right: 12px;
  filter: brightness(0) invert(1);
}
.publicmenugo .publicmenu {
  grid-area: options;
  background: var(--MainBackground);
  display: block;
  padding-bottom: 40px;
}
.publicmenugo .publicmenu .menufullwrapper {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch {
  display: inline-block;
  width: 70%;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .header {
  font-family: var(--FontMain);
  font-size: 18px;
  font-weight: 600;
  color: var(--TextColorLogo);
  margin-bottom: 8px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield {
  position: relative;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .inputholder {
  width: calc(100% - 28px);
  background: var(--InputBackground);
  border-radius: 5px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .inputholder::before {
  content: " ";
  background-image: url(icons/search.svg);
  display: inline-block;
  width: 18px !important;
  height: 18px !important;
  background-size: 18px 18px !important;
  vertical-align: top;
  position: absolute;
  top: 10px;
  left: 10px;
  filter: invert(13%) sepia(5%) saturate(5047%) hue-rotate(196deg) brightness(97%) contrast(85%);
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield input {
  font-family: var(--FontSecond);
  font-size: 16px;
  color: var(--TextColorDark);
  background: var(--InputBackground);
  padding: 8px 8px;
  border-radius: 5px;
  border: 0px;
  margin-left: 28px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield input:focus {
  outline: 0px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox {
  width: 100%;
  margin-top: 3px;
  background: var(--InputBackground);
  font-family: var(--FontSecond);
  font-size: 16px;
  color: var(--TextColorDark);
  border-radius: 5px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item {
  padding: 8px 8px;
  border-bottom: 1px dashed var(--LineboderColor);
  padding-left: 28px;
  margin-left: 8px;
  margin-right: 8px;
  animation: SearchFade 175ms linear;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item a:hover div {
  text-decoration: underline;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item a:focus {
  outline: 1px dashed var(--DarkBackground) !important;
  outline-offset: 3px !important;
  display: block;
  width: fit-content;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item a:focus .title {
  font-weight: 500;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item .kommun {
  font-size: 12px;
  font-weight: 600;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item:last-child {
  border-bottom: 0px;
  padding-bottom: 9px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item:hover {
  background: var(--ListBackground);
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 36px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item:hover:first-child {
  border-radius: 5px 5px 0px 0px;
}
.publicmenugo .publicmenu .menufullwrapper .publicsearch .searchfield .resultbox .item:hover:last-child {
  border-radius: 0px 0px 5px 5px;
}
.publicmenugo .publicmenu .menufullwrapper .publicfavorite {
  display: inline-block;
  width: 100%;
}
.publicmenugo .publicmenu .menufullwrapper .publicfavorite .favoritewrapper .header {
  font-family: var(--FontMain);
  font-size: 18px;
  font-weight: 600;
  color: var(--TextColorLogo);
  margin-bottom: 8px;
}
.publicmenugo .publicmenu .menufullwrapper .publicfavorite .favoritewrapper .favoriteitem {
  background: var(--InputBackground);
  padding: 8px 8px;
  border-radius: 5px;
  margin-bottom: 4px;
}
.publicmenugo .publicmenu .menufullwrapper .publicfavorite .favoritewrapper .favoriteitem:hover {
  background: var(--ListBackground);
  border: 0px;
  outline: 0px;
  text-decoration: underline;
}
.publicmenugo .publicmenu .menufullwrapper .publicfavorite .favoritewrapper .favoriteitem:before {
  content: " ";
  background-image: url(icons/star-fill.svg);
  display: inline-block;
  width: 18px !important;
  height: 18px !important;
  background-size: 18px 18px !important;
  vertical-align: top;
  margin-left: 6px;
  margin-right: 12px;
}
.publicmenugo .publicregister {
  grid-area: register;
  background: var(--LightBackground);
  padding-top: 40px;
  padding-bottom: 60px;
}
.publicmenugo .publicregister .registerwrapper:has(a.backbutton) .header {
  margin-bottom: 0px;
}
.publicmenugo .publicregister .registerwrapper:has(a.backbutton) a.backbutton {
  margin-top: 8px;
  margin-bottom: 16px;
  display: block;
  width: fit-content;
  background: var(--MainBackground);
  color: var(--LightBackground);
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 500;
}
.publicmenugo .publicregister .registerwrapper:has(a.backbutton) .register .itemlist .municipalityitem {
  margin-bottom: 2px;
}
.publicmenugo .publicregister .registerwrapper {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.publicmenugo .publicregister .registerwrapper .header {
  font-family: var(--FontMain);
  font-size: 18px;
  font-weight: 600;
  color: var(--TextColorDark);
  margin-bottom: 16px;
}
.publicmenugo .publicregister .registerwrapper .register {
  column-rule: 1px dashed var(--LineboderColor);
  border-left: 1px dashed var(--LineboderColor);
  border-right: 1px dashed var(--LineboderColor);
}
.publicmenugo .publicregister .registerwrapper .register .itemlist {
  break-inside: avoid;
  margin-bottom: 40px;
}
.publicmenugo .publicregister .registerwrapper .register .itemlist .region {
  font-family: var(--FontMain);
  font-size: 16px;
  font-weight: 600;
  color: var(--TextColorDark);
  margin-bottom: 2px;
}
.publicmenugo .publicregister .registerwrapper .register .itemlist a.municipalityitem {
  width: auto;
  display: block;
}
.publicmenugo .publicbottom {
  grid-area: bottombar;
  background: var(--MainBackground);
  padding-top: 30px;
  padding-bottom: 30px;
}
.publicmenugo .publicbottom .bottomwrapper {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
}
.publicmenugo .publicbottom .bottomwrapper .bottomleft {
  width: 30%;
}
.publicmenugo .publicbottom .bottomwrapper .bottomleft .leftwrapper {
  margin-left: 30%;
  margin-right: auto;
}
.publicmenugo .publicbottom .bottomwrapper .bottomcenter {
  width: 40%;
}
.publicmenugo .publicbottom .bottomwrapper .bottomright {
  width: 30%;
}
@media (width <= 600px) {
  .publicmenugo .publicbottom .bottomwrapper .bottomright .rightwrapper {
    display: none;
  }
}
.publicmenugo .publicbottom .bottomwrapper .bottomright .rightwrapper {
  margin-right: 30%;
  margin-left: auto;
  width: fit-content;
}
.publicmenugo .publicbottom .bottomwrapper div div .header {
  font-family: var(--FontMain);
  font-size: 18px;
  font-weight: 600;
  color: var(--TextColorLogo);
}
.publicmenugo .publicbottom .bottomwrapper div div .item {
  font-family: var(--FontSecond);
  font-size: 16px;
  color: var(--TextColorLogo);
}

.paperwrapper.blurstart.mobile {
  background: var(--MainBackground);
  grid-template-columns: 100% !important;
  grid-template-areas: "topsidegrid" "contentgrid" "." "bottomgrid" !important;
  background-image: none !important;
  border: 0px !important;
  max-width: 100vw;
}

.publicmenugo {
  max-width: 100% !important;
}

.mobiltop.publictop .topwrapper {
  margin-left: 22px;
  margin-right: unset;
  padding-top: 12px;
  padding-bottom: 24px;
  padding-left: unset;
  padding-right: unset;
}
.mobiltop.publictop .topwrapper .publicheader {
  font-weight: 500;
  font-size: 52px;
}
.mobiltop.publictop .topwrapper .publicslogan {
  font-weight: 500;
  font-size: 18px;
  padding-left: 4px;
  margin-top: -4px;
}

.publicregister:has(.favoritelistwrapper) {
  background: var(--MainBackground);
  padding-top: 28px;
  padding-bottom: unset;
}

.publicmenu.mobilemenu {
  padding-bottom: unset;
}
.publicmenu.mobilemenu .todaydate {
  color: var(--TextColorLogo);
  margin-left: 28px;
  font-size: 20px;
  padding-left: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-left: 3px solid var(--TextColorLogo);
  word-wrap: break-word;
  word-break: normal;
  width: fit-content;
  font-weight: 500;
}
.publicmenu.mobilemenu .todaydate .infotext {
  font-weight: 600;
  display: inline-block;
}
.publicmenu.mobilemenu .todaydate #todaylabel {
  display: inline-block;
  font-weight: 400;
}

.favoritelistwrapper .publicfavorite .menuitem.specialday .menuitem_headertext {
  color: var(--SpecialDayColor) !important;
}
.favoritelistwrapper .publicfavorite .menuitem.specialday .menucollection .menuline {
  border-left: 3px solid var(--SpecialDayColor);
}
.favoritelistwrapper .publicfavorite .menuitem {
  position: relative;
  background: var(--MobilField);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  margin-left: 8px;
  margin-right: 8px;
}
.favoritelistwrapper .publicfavorite .menuitem a:hover, .favoritelistwrapper .publicfavorite .menuitem a:hover:before {
  outline: 0px;
  text-decoration: underline;
}
.favoritelistwrapper .publicfavorite .menuitem .menuitem_headertext {
  display: inline-block;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-weight: 600;
  font-size: 19px;
  max-width: calc(100% - 90px);
  white-space: nowrap; /* Gör så att texten inte radbryts */
  overflow: hidden; /* Döljer överflödig text */
  text-overflow: ellipsis;
}
.favoritelistwrapper .publicfavorite .menuitem .menuitem_headertext:before {
  position: absolute;
  top: 18px;
  right: 46px;
  content: "Öppna";
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-weight: 600;
  font-size: 16px;
}
.favoritelistwrapper .publicfavorite .menuitem .menuitem_headertext:after {
  content: " ";
  background-image: url(icons/arrow-down-right-square.svg);
  display: block;
  position: absolute;
  width: 22px !important;
  height: 22px !important;
  background-size: 22px 22px !important;
  filter: invert(17%) sepia(12%) saturate(1559%) hue-rotate(195deg) brightness(93%) contrast(92%);
  transform: rotate(-90deg);
  margin-top: -4px;
  right: 16px;
  top: 17px;
}
.favoritelistwrapper .publicfavorite .menuitem .menuseparator {
  height: 1px;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 10px;
  border-bottom: 2px var(--MainBackground) dashed;
}
.favoritelistwrapper .publicfavorite .menuitem .menucollection {
  margin-top: 12px;
}
.favoritelistwrapper .publicfavorite .menuitem .menucollection .menuline {
  margin-bottom: 12px;
  margin-left: 2px;
  font-size: 16px;
  padding-left: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-left: 3px solid var(--MainBackground);
  word-wrap: break-word;
  word-break: normal;
  width: 100%;
}
.favoritelistwrapper .publicfavorite .menuitem .menucollection .menuline .foodgroup {
  font-weight: 600;
  color: var(--MainBackground);
}

.bottombuttonarea {
  background: var(--MobilField);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 8px;
}
.bottombuttonarea a:hover {
  outline: 0px;
}
.bottombuttonarea a {
  display: flex;
  align-items: center;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-size: 20px;
  word-wrap: break-word;
  word-break: normal;
  width: 100%;
}
.bottombuttonarea a .iconblock {
  display: inline-block;
  height: 100%;
  padding-right: 8px;
  margin-right: 12px;
  border-right: 2px solid var(--MainBackground);
}
.bottombuttonarea a .iconblock .addicon {
  content: " ";
  background-image: url(icons/plus-circle-dotted.svg);
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  background-size: 32px 32px !important;
  vertical-align: middle;
  margin: 4px 8px;
}
.bottombuttonarea a .textblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bottombuttonarea a .textblock .text {
  display: block;
  margin-left: 2px;
}
.bottombuttonarea a .textblock .text .header {
  display: inline-block;
  font-weight: 600;
}

.mobilapptop.publictop {
  border-bottom: 2px var(--LineboderColor) dashed;
}
.mobilapptop.publictop .topwrapper {
  margin-left: 22px;
  margin-right: unset;
  padding-top: 12px;
  padding-bottom: 24px;
  padding-left: unset;
  padding-right: unset;
}
.mobilapptop.publictop .topwrapper .publicheader {
  font-weight: 500;
  font-size: 52px;
}
.mobilapptop.publictop .topwrapper .publicslogan {
  font-weight: 500;
  font-size: 18px;
  padding-left: 4px;
  margin-top: -4px;
}
.mobilapptop.publictop .goback {
  background: var(--MobilField);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 12px;
  margin-left: 8px;
  margin-right: 8px;
}
.mobilapptop.publictop .goback a:hover {
  outline: 0px;
}
.mobilapptop.publictop .goback a {
  display: flex;
  align-items: center;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-size: 20px;
  word-wrap: break-word;
  word-break: normal;
  width: 100%;
}
.mobilapptop.publictop .goback a .iconblock {
  display: inline-block;
  height: 100%;
  padding-right: 8px;
  margin-right: 12px;
  border-right: 2px solid var(--MainBackground);
}
.mobilapptop.publictop .goback a .iconblock .backicon {
  content: " ";
  background-image: url(icons/box-arrow-left.svg);
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  background-size: 32px 32px !important;
  vertical-align: middle;
  margin: 4px 8px;
}
.mobilapptop.publictop .goback a .textblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobilapptop.publictop .goback a .textblock .text {
  display: block;
  margin-left: 2px;
}
.mobilapptop.publictop .goback a .textblock .text .header {
  display: inline-block;
  font-weight: 600;
}

.publicmenu.mobilapp {
  padding-top: 32px;
  padding-bottom: 16px;
}
.publicmenu.mobilapp .todaydate {
  color: var(--TextColorLogo);
  margin-left: 28px;
  font-size: 20px;
  padding-left: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-left: 3px solid var(--TextColorLogo);
  word-wrap: break-word;
  word-break: normal;
  width: fit-content;
  font-weight: 500;
}
.publicmenu.mobilapp .todaydate .infotext {
  font-weight: 600;
  display: inline-block;
}
.publicmenu.mobilapp .menufullwrapper {
  margin-left: unset;
  margin-right: unset;
  padding-left: 8px;
  padding-right: 8px;
  max-width: unset !important;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .header {
  color: var(--TextColorLogo);
  font-size: 20px;
  font-weight: 600;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield {
  width: 100% !important;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .inputholder {
  background: var(--MobilField);
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .inputholder input {
  background: var(--MobilField);
  width: calc(100% - 88px);
  font-size: 18px;
  margin-left: 52px;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .inputholder::before {
  top: 15px;
  left: 15px;
  height: 28px !important;
  width: 28px !important;
  background-size: 28px 28px !important;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .resultbox .item {
  padding-left: 2px;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .resultbox .item .title {
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-weight: 500;
  font-size: 18px;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .resultbox .item .kommun {
  font-size: 16px;
  font-weight: 400;
}
.publicmenu.mobilapp .menufullwrapper .publicsearch .searchfield .resultbox .item:hover {
  padding-left: 10px;
}

.publicregister .nofavorites {
  border-radius: 8px;
  border: 2px dashed var(--BorderColor);
  padding: 16px;
  margin-bottom: 28px;
  margin-left: 8px;
  margin-right: 8px;
}
.publicregister .nofavorites .top, .publicregister .nofavorites .instruction {
  color: var(--MobilField);
  font-family: var(--FontMain);
  word-wrap: break-word;
  word-break: normal;
}
.publicregister .nofavorites .top {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
}
.publicregister .nofavorites .instruction {
  font-style: italic;
  font-size: 18px;
  display: inline-block;
}
.publicregister .nofavorites .instruction .expo {
  display: inline-block;
}
.publicregister .nofavorites .instruction:after {
  content: " ";
  background-image: url(icons/star-fill.svg);
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  background-size: 16px 16px !important;
  vertical-align: top;
  margin-left: 8px;
  margin-top: 2px;
  filter: invert(100%) sepia(57%) saturate(248%) hue-rotate(180deg) brightness(93%) contrast(98%);
}

.publicregister.mobilapp {
  background: var(--MainBackground);
  padding-bottom: unset;
}
.publicregister.mobilapp .registerwrapper {
  margin-left: unset;
  margin-right: unset;
  padding-left: unset;
  padding-right: unset;
  max-width: unset;
}
.publicregister.mobilapp .registerwrapper .header {
  margin-left: 8px;
  color: var(--TextColorLogo);
  font-size: 20px;
  font-weight: 600;
}
.publicregister.mobilapp .registerwrapper a.header.backbutton {
  background: var(--MobilField) !important;
  color: var(--MainBackground) !important;
  font-family: var(--FontMain) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px;
  padding: 10px 14px !important;
  padding-top: 13px !important;
}
.publicregister.mobilapp .registerwrapper .backbutton:before {
  content: " ";
  background-image: url(icons/caret-left-fill.svg);
  display: inline-block;
  width: 20px !important;
  height: 20px !important;
  background-size: 20px 20px !important;
  vertical-align: middle;
  margin-top: -5px !important;
  margin-bottom: -2px !important;
  margin-left: -5px !important;
  margin-right: 5px !important;
  filter: invert(17%) sepia(12%) saturate(1559%) hue-rotate(195deg) brightness(93%) contrast(92%);
}
.publicregister.mobilapp .registerwrapper .register {
  column-rule: unset;
  border-left: unset;
  border-right: unset;
  column-count: unset;
  column-gap: unset;
  width: 100%;
}
.publicregister.mobilapp .registerwrapper .register .itemlist {
  position: relative;
  background: var(--MobilField);
  border-radius: 8px;
  padding: 16px;
  padding-left: 16px !important;
  margin-bottom: 16px;
  margin-left: 8px;
  margin-right: 8px;
}
.publicregister.mobilapp .registerwrapper .register .itemlist .region {
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-weight: 600;
  font-size: 20px;
}
.publicregister.mobilapp .registerwrapper .register .itemlist .region:after {
  content: " ";
  height: 1px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 12px;
  border-bottom: 2px var(--MainBackground) dashed;
  display: block;
}
.publicregister.mobilapp .registerwrapper .register .itemlist .municipalityitem {
  margin-bottom: 12px !important;
  margin-left: 2px;
  font-size: 16px;
  padding-left: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-left: 3px solid var(--MainBackground);
  word-wrap: break-word;
  word-break: normal;
  width: 100%;
  font-weight: 500;
}

.publicbottom.mobilapp {
  padding-bottom: 0px;
  padding-top: 8px;
  border-top: 2px var(--LineboderColor) dashed;
}
.publicbottom.mobilapp .goback {
  background: var(--MobilField);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 8px;
}
.publicbottom.mobilapp .goback a:hover {
  outline: 0px;
}
.publicbottom.mobilapp .goback a {
  display: flex;
  align-items: center;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-size: 20px;
  word-wrap: break-word;
  word-break: normal;
  width: 100%;
}
.publicbottom.mobilapp .goback a .iconblock {
  display: inline-block;
  height: 100%;
  padding-right: 8px;
  margin-right: 12px;
  border-right: 2px solid var(--MainBackground);
}
.publicbottom.mobilapp .goback a .iconblock .backicon {
  content: " ";
  background-image: url(icons/box-arrow-left.svg);
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  background-size: 32px 32px !important;
  vertical-align: middle;
  margin: 4px 8px;
}
.publicbottom.mobilapp .goback a .textblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.publicbottom.mobilapp .goback a .textblock .text {
  display: block;
  margin-left: 2px;
}
.publicbottom.mobilapp .goback a .textblock .text .header {
  display: inline-block;
  font-weight: 600;
}

.topsidemobile {
  grid-area: topsidegrid;
  background: var(--MainBackground);
  border-bottom: 2px var(--LineboderColor) dashed;
  margin-bottom: 12px;
}
.topsidemobile .titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--TextColorLogo);
  font-family: var(--FontMain);
  font-weight: 500;
  font-size: clamp(1rem, 8vw, 3.5rem) !important;
  width: 100%;
  padding: 18px 0; /* ta bort sidmarginaler så centrerar bättre */
  margin: 0; /* nollställ marginalerna */
  text-align: center;
  white-space: normal; /* tillåt radbrytning */
  overflow-wrap: break-word; /* bryt långa ord om det behövs */
}
.topsidemobile .menuback .favorite a:focus {
  text-decoration: none !important;
}
.topsidemobile .menuback .favorite.added a .iconblock .icon {
  content: " ";
  background-image: url(icons/star-fill.svg);
  display: inline-block;
  width: 28px !important;
  height: 28px !important;
  background-size: 28px 28px !important;
  vertical-align: top;
  margin-left: 11px;
  margin-right: 9px;
  margin-top: 6px;
  margin-bottom: 6px;
  filter: invert(17%) sepia(12%) saturate(1559%) hue-rotate(195deg) brightness(93%) contrast(92%);
}
.topsidemobile .menuback .favorite.add a .iconblock .icon {
  content: " ";
  background-image: url(icons/star.svg);
  display: inline-block;
  width: 28px !important;
  height: 28px !important;
  background-size: 28px 28px !important;
  vertical-align: top;
  margin-left: 11px;
  margin-right: 9px;
  margin-top: 6px;
  margin-bottom: 6px;
  filter: invert(17%) sepia(12%) saturate(1559%) hue-rotate(195deg) brightness(93%) contrast(92%);
}
.topsidemobile .menuback .pickandchoose {
  width: 100%;
  margin-bottom: 12px;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-size: 20px;
  word-wrap: break-word;
  font-weight: 500;
}
.topsidemobile .menuback .pickandchoose .datepicktext {
  display: none;
}
.topsidemobile .menuback .pickandchoose .datepickcontainer {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: var(--MobilField);
  border-radius: 8px;
  margin-left: 8px;
  margin-right: 8px;
}
.topsidemobile .menuback .pickandchoose .datepickcontainer .before:hover, .topsidemobile .menuback .pickandchoose .datepickcontainer .after:hover {
  cursor: pointer;
  text-decoration: underline;
}
.topsidemobile .menuback .pickandchoose .datepickcontainer .before {
  background: var(--MobilField);
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 8px 10px 8px;
  border-radius: 8px 0px 0px 8px;
  display: inline-block;
}
.topsidemobile .menuback .pickandchoose .datepickcontainer .before:before {
  content: " ";
  background-image: url(icons/triangle-fill.svg);
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  background-size: 16px 16px !important;
  vertical-align: middle;
  transform: rotate(-90deg);
  margin-top: -3px;
  margin-right: 14px;
  filter: invert(13%) sepia(22%) saturate(1154%) hue-rotate(195deg) brightness(96%) contrast(86%);
}
.topsidemobile .menuback .pickandchoose .datepickcontainer .weeknumber {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0px;
  border-radius: 8px;
  background: var(--MainBackground);
  color: var(--MobilField);
  margin-top: 2px;
  margin-bottom: 2px;
  z-index: 2;
}
.topsidemobile .menuback .pickandchoose .datepickcontainer .after {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 8px 10px 8px;
  border-radius: 0px 8px 8px 0px;
  background: var(--MobilField);
  display: inline-block;
}
.topsidemobile .menuback .pickandchoose .datepickcontainer .after:after {
  content: " ";
  background-image: url(icons/triangle-fill.svg);
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  background-size: 16px 16px !important;
  vertical-align: middle;
  transform: rotate(90deg);
  margin-top: -3px;
  margin-left: 14px;
  filter: invert(13%) sepia(22%) saturate(1154%) hue-rotate(195deg) brightness(96%) contrast(86%);
}
.topsidemobile .menuback .bigbutton, .topsidemobile .menuback .favorite {
  background: var(--MobilField);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 12px;
  margin-left: 8px;
  margin-right: 8px;
}
.topsidemobile .menuback .bigbutton #backCategory, .topsidemobile .menuback .bigbutton .favoriteclass, .topsidemobile .menuback .favorite #backCategory, .topsidemobile .menuback .favorite .favoriteclass {
  display: flex;
  align-items: center;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-size: 20px;
  word-wrap: break-word;
  word-break: no;
}
.topsidemobile .menuback .bigbutton #backCategory .iconblock, .topsidemobile .menuback .bigbutton .favoriteclass .iconblock, .topsidemobile .menuback .favorite #backCategory .iconblock, .topsidemobile .menuback .favorite .favoriteclass .iconblock {
  display: inline-block;
  height: 100%;
  padding-right: 8px;
  margin-right: 12px;
  border-right: 2px solid var(--MainBackground);
}
.topsidemobile .menuback .bigbutton #backCategory .iconblock .backicon, .topsidemobile .menuback .bigbutton .favoriteclass .iconblock .backicon, .topsidemobile .menuback .favorite #backCategory .iconblock .backicon, .topsidemobile .menuback .favorite .favoriteclass .iconblock .backicon {
  content: " ";
  background-image: url(icons/box-arrow-left.svg);
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  background-size: 32px 32px !important;
  vertical-align: middle;
  margin: 4px 8px;
}
.topsidemobile .menuback .bigbutton #backCategory .textblock, .topsidemobile .menuback .bigbutton .favoriteclass .textblock, .topsidemobile .menuback .favorite #backCategory .textblock, .topsidemobile .menuback .favorite .favoriteclass .textblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.topsidemobile .menuback .bigbutton #backCategory .textblock .text, .topsidemobile .menuback .bigbutton .favoriteclass .textblock .text, .topsidemobile .menuback .favorite #backCategory .textblock .text, .topsidemobile .menuback .favorite .favoriteclass .textblock .text {
  display: block;
  margin-left: 2px;
}
.topsidemobile .menuback .bigbutton #backCategory .textblock .text .header, .topsidemobile .menuback .bigbutton .favoriteclass .textblock .text .header, .topsidemobile .menuback .favorite #backCategory .textblock .text .header, .topsidemobile .menuback .favorite .favoriteclass .textblock .text .header {
  display: inline-block;
  font-weight: 600;
}
.topsidemobile .menuback .favorite {
  display: block !important;
  position: relative !important;
}

.contentmobile {
  background: var(--MainBackground);
}
.contentmobile .sitecontent.mobile {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile > .menuitem:nth-child(odd) {
  border-left: unset !important;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile {
  margin-bottom: 0px !important;
  padding-bottom: 0px;
  border-bottom: 0px;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem {
  grid-template-columns: auto !important;
  grid-template-rows: auto auto !important;
  grid-template-areas: "dateitem" "menucollection" !important;
  background: var(--MobilField);
  padding: 16px;
  margin-left: 8px !important;
  margin-right: 8px !important;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 0px !important;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem .dateitem:before {
  display: none;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem .dateitem:after {
  content: " ";
  height: 1px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 12px;
  border-bottom: 2px var(--MainBackground) dashed;
  display: block;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem .dateitem .weekday {
  display: inline-block !important;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem .dateitem .dateday {
  display: inline-block !important;
  margin-left: 4px !important;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem .dateitem .dateday:before {
  content: " - ";
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.contentmobile .sitecontent.mobile .weekmenu.mobile .menuitem:nth-child(even) {
  background: var(--MobilField) !important;
}
@media (width > 600px) {
  .contentmobile .sitecontent.mobile .weekmenu.mobile .menucollection .menuline {
    margin-left: 10px !important;
  }
}
.contentmobile .sitecontent.mobile .messagewrappermobile {
  background: var(--MobilField);
  padding: 16px;
  margin-left: 8px !important;
  margin-right: 8px !important;
  border-radius: 8px;
}
.contentmobile .sitecontent.mobile .messagewrappermobile .messageheader {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}
.contentmobile .sitecontent.mobile .messagewrappermobile .message {
  font-size: 18px;
}

.bottomside.mobile {
  border-top: unset !important;
}
.bottomside.mobile .menuback {
  grid-column: span 6;
  margin-bottom: 20px;
}
.bottomside.mobile .menuback .favorite.added a .iconblock .icon {
  content: " ";
  background-image: url(icons/star-fill.svg);
  display: inline-block;
  width: 28px !important;
  height: 28px !important;
  background-size: 28px 28px !important;
  vertical-align: top;
  margin-left: 11px;
  margin-right: 9px;
  margin-top: 6px;
  margin-bottom: 6px;
  filter: invert(17%) sepia(12%) saturate(1559%) hue-rotate(195deg) brightness(93%) contrast(92%);
}
.bottomside.mobile .menuback .favorite.add a .iconblock .icon {
  content: " ";
  background-image: url(icons/star.svg);
  display: inline-block;
  width: 28px !important;
  height: 28px !important;
  background-size: 28px 28px !important;
  vertical-align: top;
  margin-left: 11px;
  margin-right: 9px;
  margin-top: 6px;
  margin-bottom: 6px;
  filter: invert(17%) sepia(12%) saturate(1559%) hue-rotate(195deg) brightness(93%) contrast(92%);
}
.bottomside.mobile .menuback .bigbutton, .bottomside.mobile .menuback .favorite {
  background: var(--MobilField);
  border-radius: 8px;
  padding: 8px;
  margin-left: 8px;
  margin-right: 8px;
}
.bottomside.mobile .menuback .bigbutton #backCategory, .bottomside.mobile .menuback .bigbutton .favoriteclass, .bottomside.mobile .menuback .favorite #backCategory, .bottomside.mobile .menuback .favorite .favoriteclass {
  display: flex;
  align-items: center;
  color: var(--MainBackground);
  font-family: var(--FontMain);
  font-size: 20px;
  word-wrap: break-word;
  word-break: no;
}
.bottomside.mobile .menuback .bigbutton #backCategory .iconblock, .bottomside.mobile .menuback .bigbutton .favoriteclass .iconblock, .bottomside.mobile .menuback .favorite #backCategory .iconblock, .bottomside.mobile .menuback .favorite .favoriteclass .iconblock {
  display: inline-block;
  height: 100%;
  padding-right: 8px;
  margin-right: 12px;
  border-right: 2px solid var(--MainBackground);
}
.bottomside.mobile .menuback .bigbutton #backCategory .iconblock .backicon, .bottomside.mobile .menuback .bigbutton .favoriteclass .iconblock .backicon, .bottomside.mobile .menuback .favorite #backCategory .iconblock .backicon, .bottomside.mobile .menuback .favorite .favoriteclass .iconblock .backicon {
  content: " ";
  background-image: url(icons/box-arrow-left.svg);
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  background-size: 32px 32px !important;
  vertical-align: middle;
  margin: 4px 8px;
}
.bottomside.mobile .menuback .bigbutton #backCategory .textblock, .bottomside.mobile .menuback .bigbutton .favoriteclass .textblock, .bottomside.mobile .menuback .favorite #backCategory .textblock, .bottomside.mobile .menuback .favorite .favoriteclass .textblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bottomside.mobile .menuback .bigbutton #backCategory .textblock .text, .bottomside.mobile .menuback .bigbutton .favoriteclass .textblock .text, .bottomside.mobile .menuback .favorite #backCategory .textblock .text, .bottomside.mobile .menuback .favorite .favoriteclass .textblock .text {
  display: block;
  margin-left: 2px;
}
.bottomside.mobile .menuback .bigbutton #backCategory .textblock .text .header, .bottomside.mobile .menuback .bigbutton .favoriteclass .textblock .text .header, .bottomside.mobile .menuback .favorite #backCategory .textblock .text .header, .bottomside.mobile .menuback .favorite .favoriteclass .textblock .text .header {
  display: inline-block;
  font-weight: 600;
}
.bottomside.mobile .menuback .favorite {
  display: block !important;
  position: relative !important;
}
.bottomside.mobile .footercontainer {
  margin-top: 10px !important;
  border-top: 2px var(--LineboderColor) dashed;
  padding-top: 16px;
  grid-template-areas: ". subadmin ." !important;
}
.bottomside.mobile .footercontainer .footeritem {
  display: none;
}

/*# sourceMappingURL=paintsapp.css.map */
