* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  /* VARIABLES */
  /* Shadow */
  --SHADOWS: 0 4px 8px 0 rgba(21,21,21,.2);
  --MODAL-SHADOW: 0 8px 8px 5px rgba(0, 0, 0, 0.2);
  --BTN-GLOW: 0 8px 24px 0 rgba(255,235,167,.2);
  --BTN-HOVER-ACTIVE: 0 8px 24px 0 rgba(214, 31, 31, 0.446);
  --LI-GLOW: 0px 0px 10px red; /* text-shadow */
  /* Padding */
  --MARGIN: 1.5rem;
  /* Color */
  --BG-COLOR: #302A26;
  --BG-COLOR-MODAL: #535353;
  --MAIN-COLOR: #ffeba7;
  --FONT-COLOR: #ffeba7;
  --P-COLOR: #bebebe;
  --BG-COLOR-CARD: #404040;
  --FORM-COLOR: #232323;
  --ACCENT-COLOR: #8b0000;
  --ACCENT-RED: #fc0000;
  --CELL-LI-ACTIVE: #ffffff;
  --PNG-COLOR: invert(86%) sepia(39%) saturate(404%) hue-rotate(336deg) brightness(104%) contrast(104%);
}

body {
  background: var(--BG-COLOR);
  font-family: "poppins", sans-serif;
  font-weight: 300;
  max-width: 2000px;
  margin: auto;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
}
body ul {
  list-style-type: none;
}
body header {
  width: 100%;
  height: 5rem;
  max-width: 2020px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 30;
}
body header .logo {
  font-size: 1.2rem;
  margin: 1.5rem 2rem;
  color: var(--MAIN-COLOR);
  text-decoration: none;
  font-weight: 700;
}
body header .logo span {
  color: var(--ACCENT-RED);
}
body header .menu {
  min-width: 1.9rem;
  max-width: 1.9rem;
  margin: 0rem 2.1rem 0 0.5rem;
  fill: var(--MAIN-COLOR);
}
body header .menu:hover {
  fill: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body header nav {
  background-color: var(--BG-COLOR);
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 38%;
  z-index: 2;
  text-transform: uppercase;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
body header nav .nav-list {
  list-style-type: none;
  padding: 0%;
  margin-top: 8em;
}
body header nav .nav-list .nav-links {
  color: var(--FONT-COLOR);
  text-decoration: none;
  padding: 0.75em 2em;
  display: block;
  width: 100%;
}
body header nav .nav-list .nav-links:hover {
  color: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body header .close {
  float: right;
  margin-top: 1.8rem;
  margin-right: 1.92rem;
  width: 1.7rem;
  height: 1.7rem;
  z-index: 2;
  fill: var(--MAIN-COLOR);
}
body header .close:hover {
  fill: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body header .open-nav {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
body .bg {
  background-color: var(--BG-COLOR-MODAL);
  background-image: url(../bakgrund/strokes.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  -webkit-box-shadow: var(--MODAL-SHADOW);
          box-shadow: var(--MODAL-SHADOW);
  display: grid;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42rem;
  width: 90vw;
  max-width: 90rem;
}
body .bg .meat-list {
  text-align: center;
  list-style-type: none;
  line-height: 1.6rem;
}
body .bg .meat-list a {
  color: var(--FONT-COLOR);
  text-decoration: none;
}
body .bg .meat-list a:hover {
  color: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  bottom: 0.1px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
  margin-top: 1.2rem;
  background-color: var(--BG-COLOR);
  -webkit-box-shadow: 0 0 15px 12px var(--BG-COLOR);
          box-shadow: 0 0 15px 12px var(--BG-COLOR);
  z-index: 30;
}
body footer .gk-link {
  cursor: pointer;
  text-decoration: none;
  color: var(--MAIN-COLOR);
  z-index: 30;
}
body footer .gk-link:hover {
  text-shadow: var(--BTN-GLOW);
}
@media only screen and (min-width: 920px) {
  body header {
    height: 6rem;
    margin: auto;
  }
  body header .logo {
    margin-left: 5.9rem;
  }
  body header .menu {
    margin-right: 4.9rem;
  }
  body nav .close {
    margin-top: 2.1rem;
    margin-right: 4.4rem;
  }
}/*# sourceMappingURL=restauranger.css.map */