:root {
  --primary: hsl(3, 72%, 52%);
  --primary-dark: hsl(3, 71%, 45%);
  --primary-light: hsl(3, 80%, 58%);
  --secondary: hsl(42, 98%, 50%);
  --secondary-dark: hsl(42, 98%, 45%);
  --secondary-light: hsl(42, 98%, 58%);
  --primaryGradient: linear-gradient(
    174.55deg,
    var(--primary-light) 6.04%,
    var(--primary-dark) 93.79%
  );
  --bodyBackground: #1b1b1b;
  --dark: hsl(0, 0%, 7%);
  --light: hsl(216, 22%, 95%);
  --white: #fff;
  --gray: hsl(0, 0%, 45.5%);
  --transition: 0.25s all;
  --font-body: "Inter", sans-serif;
  --font-heading: "Raleway", sans-serif;
  --border-radius: 8px;
  --paper: #faf7f2;
}

@media (max-width: 576px) {
  ::-webkit-scrollbar {
    height: 9px;
    background-color: #f5f5f5;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(207, 207, 207);
  }
}
::-moz-selection {
  color: #fff;
  background: var(--primary);
}
::selection {
  color: #fff;
  background: var(--primary);
}

*:focus {
  outline: 1px var(--primary);
}

*:focus-visible {
  outline: 1px var(--primary) !important;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--scroll-padding, 50px);
}

body {
  font-family: var(--font-body);
  background: var(--bodyBackground);
  color: var(--light);
}

img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.5rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 2.4rem;
  }
}

strong {
  font-weight: 700;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

section,
header {
  position: relative;
  z-index: 0;
}

section {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.bg-wrapper {
  position: relative;
  background-attachment: scroll;
  background-position: bottom;
  background-image: url("../images/header-background.jpg");
  background-size: cover;
  z-index: 0;
}
.bg-wrapper::after {
  content: "";
  position: fixed;
  background-color: rgba(0, 0, 0, 0.45);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 2rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 5px;
}
@media (max-width: 575.98px) {
  .btn {
    padding: 0.7rem 1.4rem;
  }
}
.btn:focus {
  outline: 1px var(--primary);
}
.btn i {
  margin-right: 0.5rem;
  opacity: 0.75;
}

.primary-btn {
  background: var(--secondary);
  color: #fff;
  background: var(--primaryGradient);
  -webkit-box-shadow: 0px 22px 32px -18px rgba(168, 22, 18, 0.35);
          box-shadow: 0px 22px 32px -18px rgba(168, 22, 18, 0.35);
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(53, 53, 53, 0.4);
  letter-spacing: 0.08em;
  -webkit-animation-name: order-btn-move;
          animation-name: order-btn-move;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.primary-btn:hover, .primary-btn:focus {
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.secondary-btn {
  color: var(--light);
  background: transparent;
  font-weight: bold;
  border: 2px solid transparent;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: var(--light);
  border: 2px solid var(--gray);
}

.subtitle {
  color: var(--primary);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
}

.custom-container {
  position: relative;
  width: clamp(90%, 100% - 12vw, 100% - 12vw);
  max-width: 1200px;
  margin-inline: auto;
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
.navbar {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .navbar {
    height: 85px;
  }
}
.navbar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--bodyBackground);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (min-width: 992px) {
  .navbar::before {
    background: #181818;
    opacity: 0;
  }
}
.navbar .custom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.navbar #main-nav {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.navbar .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.navbar .navbar-nav .nav-link.order {
  min-width: unset;
}
.navbar .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.4rem 1rem;
  color: var(--light);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar .navbar-nav .nav-link a:hover, .navbar .navbar-nav .nav-link a:focus {
  color: var(--primary);
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link a {
    color: #fff;
  }
}
.navbar .navbar-nav .nav-link.social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.3rem 0 0.8rem;
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.navbar .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .navbar .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.navbar .navbar-nav .nav-link.social a::after {
  display: none;
}
.navbar .navbar-nav .nav-link.social a:hover, .navbar .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.navbar .brand-logo {
  position: relative;
  width: 75px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .navbar .brand-logo {
    top: 0;
    width: 85px;
    opacity: 1;
    pointer-events: all;
    top: 0;
    width: 100px;
  }
}
.navbar .brand-logo img {
  width: 100%;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.sticky::before {
  -webkit-box-shadow: 0 5px 30px rgba(132, 132, 132, 0.1);
          box-shadow: 0 5px 30px rgba(132, 132, 132, 0.1);
}
@media (min-width: 992px) {
  .navbar.sticky::before {
    opacity: 1;
  }
}
.navbar.sticky .navbar-nav .nav-link.order a {
  background: var(--primaryGradient);
  margin: 0;
  padding: 0.4rem 1rem;
  color: #fff;
  border-radius: 0.25rem;
}
.navbar.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.navbar.sticky .navbar-nav .nav-link.order a:hover, .navbar.sticky .navbar-nav .nav-link.order a:focus {
  background-color: var(--primary-dark);
}
.navbar.sticky .navbar-nav .nav-link.social a:hover, .navbar.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.navbar.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .navbar.sticky .brand-logo {
    top: 0;
    width: 85px;
  }
}
.navbar .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.navbar .navbar-toggler:hover, .navbar .navbar-toggler:focus, .navbar .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 7rem 0 0;
}
@media (max-width: 767.98px) {
  .header {
    padding: 7rem 0 4rem;
  }
}
@media (max-width: 767.98px) {
  .header {
    text-align: center;
  }
}
.header .header-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .header .header-grid {
    grid-template-columns: 1fr;
  }
}
.header .header-grid .header-content {
  color: var(--light);
}
.header .header-grid .header-content .upheading {
  display: inline-block;
  color: var(--light);
  background: hsla(0, 0%, 0%, 0.5);
  font-size: 1.3rem;
  font-weight: 300;
  padding: 0.4rem 2rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  border-radius: 2px;
}
.header .header-grid .header-content .heading {
  font-size: 4rem;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .header .header-grid .header-content .heading {
    font-size: 3rem;
  }
}
.header .header-grid .header-content .description {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767.98px) {
  .header .header-grid .header-content .description {
    font-size: 1.1rem;
  }
}
.header .header-grid .header-content .header-btns {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header .header-grid .header-content .header-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    margin: 0;
  }
}
.header .header-grid .header-image {
  position: relative;
}
@media (max-width: 991.98px) {
  .header .header-grid .header-image {
    display: none;
  }
}
.header .header-grid .header-image .main-image {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 16px 120px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}
.header .header-grid .header-image .arrow {
  position: absolute;
  width: 215px;
  height: auto;
  left: -9%;
  bottom: -6%;
  z-index: 2;
}
.header .header-grid .header-image .dots {
  position: absolute;
  width: 480px;
  height: auto;
  left: -8%;
  top: -5%;
  z-index: -1;
}
.header .header-grid .header-image .basil {
  position: absolute;
  width: 160px;
  height: auto;
  right: -16%;
  bottom: 26%;
  z-index: 2;
}
.header .header-grid .header-carousel {
  position: relative;
}
.header .header-grid .header-carousel .owl-carousel .owl-item img {
  height: 100%;
  width: 500px;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
}

#akce {
  background-color: var(--white);
}
#akce .akce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 150px);
  grid-gap: 2rem;
}
#akce .akce-grid div {
  background: peru;
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
#akce .akce-grid div:nth-child(1) {
  grid-column: span 1;
  grid-row: span 3;
}
#akce .akce-grid div:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
}
#akce .akce-grid div:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}
#akce .akce-grid div:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.app {
  padding: 8rem 0;
  color: var(--dark);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .app {
    padding: 2rem 0;
  }
}
.app .app-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: 3rem;
  padding: 4rem;
  border-radius: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--primaryGradient);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .app .app-grid {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}
.app .app-grid .app-content .heading {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 3rem;
  color: var(--light);
}
@media (max-width: 767.98px) {
  .app .app-grid .app-content .heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
.app .app-grid .app-content .app-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .app .app-grid .app-content .app-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.app .app-grid .app-content .app-buttons a {
  width: 170px;
}
.app .app-grid .app-content .app-buttons a:hover, .app .app-grid .app-content .app-buttons a:focus {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.app .app-grid .app-content .app-buttons a img {
  -webkit-filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.2));
}
.app .app-grid .app-image {
  position: relative;
  height: 100%;
}
@media (max-width: 767.98px) {
  .app .app-grid .app-image {
    display: none;
  }
}
.app .app-grid .app-image::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -93px;
  width: 121px;
  height: 168px;
  background-image: url("../images/shine.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.app .app-grid .app-image::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -1px;
  width: 100px;
  height: 100px;
  background-image: url("../images/dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.app .app-grid .app-image .screen-group {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: -175px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .app .app-grid .app-image .screen-group {
    bottom: unset;
  }
}
.app .app-grid .app-image .screen-group img {
  width: 100%;
  -webkit-box-shadow: 25px 0 40px 10px rgba(0, 0, 0, 0.3), 0 0 0 6px #373737;
          box-shadow: 25px 0 40px 10px rgba(0, 0, 0, 0.3), 0 0 0 6px #373737;
  border: 5px solid #262626;
  border-top-width: 18px;
  border-bottom-width: 18px;
  border-radius: 1.2rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.app .app-grid .app-image .screen-group img:nth-child(1) {
  z-index: 2;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.app .app-grid .app-image .screen-group img:nth-child(1):hover {
  -webkit-transform: rotate(-3deg) translateX(-8px);
          transform: rotate(-3deg) translateX(-8px);
}
.app .app-grid .app-image .screen-group img:nth-child(2) {
  z-index: 0;
  margin-left: -3rem;
}
.app .app-grid .app-image .screen-group img:nth-child(2):hover {
  -webkit-transform: scale(1.1) rotate(2deg) translateX(15px);
          transform: scale(1.1) rotate(2deg) translateX(15px);
}

.foodlist {
  position: relative;
  background-image: url("../images/pizza2.jpg");
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.foodlist::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.foodlist .foodlist__wrapper {
  margin: 0;
  width: 100%;
  position: relative;
}
.foodlist #foodlist__heading {
  background: transparent;
  padding: 1.5rem 0;
}
@media (min-width: 576px) {
  .foodlist #foodlist__heading {
    padding: 2rem 0;
  }
}
.foodlist #foodlist__heading .subtitle {
  text-align: center;
}
.foodlist #foodlist__heading h2 {
  margin-bottom: 0.5rem;
  color: var(--light);
  text-align: center;
}
.foodlist #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  color: var(--light);
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodlist #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodlist #foodlist__heading .foodlist__order a {
  color: var(--primary);
  font-weight: bold;
}
.foodlist #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.foodlist #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodlist #foodlist__categories {
  position: sticky;
  top: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .foodlist #foodlist__categories {
    padding: 0;
    margin-left: -5%;
    margin-right: -5%;
  }
}
.foodlist #foodlist__categories:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.foodlist #foodlist__categories:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodlist #foodlist__categories {
    position: relative;
    top: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: unset;
    padding: 1rem 0.5rem;
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .foodlist #foodlist__categories:hover {
    cursor: default;
  }
  .foodlist #foodlist__categories:active {
    cursor: default;
  }
}
.foodlist #foodlist__categories .foodlist__categories__item {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.5rem 1rem;
  margin: 0.45rem;
  border-radius: 50vh;
  background: var(--dark);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  color: var(--light);
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .foodlist #foodlist__categories .foodlist__categories__item {
    padding: 0.75rem 1.9rem;
  }
}
.foodlist #foodlist__categories .foodlist__categories__item:hover, .foodlist #foodlist__categories .foodlist__categories__item:focus {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.foodlist #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary);
  color: #fff;
  -webkit-box-shadow: 0 10px 230px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 230px rgba(0, 0, 0, 0.2);
}
.foodlist #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  padding: 1.8rem 1.3rem;
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .foodlist #foodlist__content {
    padding: 0;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.foodlist #foodlist__content h3 {
  grid-column: 1/-1;
  text-align: center;
  visibility: hidden;
  line-height: 0.1;
}
.foodlist #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  width: 100%;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767.98px) {
  .foodlist #foodlist__content .item-list {
    padding: 1rem;
  }
}
@media (max-width: 575.98px) {
  .foodlist #foodlist__content .item-list {
    gap: 1rem;
  }
}
.foodlist #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (min-width: 576px) {
  .foodlist #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodlist #foodlist__content .item-list__content__name {
  margin-bottom: 0.6rem;
  color: var(--light);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodlist #foodlist__content .item-list__content__name {
    font-size: 1.5rem;
  }
}
.foodlist #foodlist__content .item-list__content__ingredients {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--light);
  opacity: 0.75;
}
@media (min-width: 576px) {
  .foodlist #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodlist #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .foodlist #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodlist #foodlist__content .item-list__image a {
  display: block;
  width: 170px;
  height: auto;
}
@media (max-width: 575.98px) {
  .foodlist #foodlist__content .item-list__image a {
    width: 100px;
  }
}
.foodlist #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
}
.foodlist #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: 1/-1;
  color: var(--light);
  font-size: 1.1rem;
}
.foodlist #loading:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
  font-style: italic;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#onas {
  overflow: hidden;
}
#onas .custom-container .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  #onas .custom-container .about-grid {
    grid-template-columns: 1fr;
    grid-gap: 4rem;
  }
}
#onas .custom-container .about-grid .about-content h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
}
#onas .custom-container .about-grid .about-content p {
  font-size: 1.1rem;
}
@media (max-width: 575.98px) {
  #onas .custom-container .about-grid .about-content p {
    font-size: 1rem;
  }
}
#onas .custom-container .about-grid .about-content p a {
  font-weight: bold;
  color: var(--primary);
}
#onas .custom-container .about-grid .about-image {
  position: relative;
}
#onas .custom-container .about-grid .about-image::before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: -50px;
  width: 150px;
  height: 150px;
  background-image: url("../images/corners.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
#onas .custom-container .about-grid .about-image::after {
  content: "";
  position: absolute;
  top: -75px;
  right: -100px;
  width: 200px;
  height: 150px;
  background-image: url("../images/about-decoration.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
#onas .custom-container .about-grid .about-image img {
  border-radius: 130px 26px 26px 26px;
}

#contact {
  position: relative;
  background: url("../images/contact.jpg") 50% 50%/cover fixed;
  -webkit-box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.6);
          box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.6);
  color: var(--light);
}
@media (min-width: 992px) {
  #contact {
    background-attachment: fixed;
  }
}
#contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
#contact .contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 4rem;
}
@media (max-width: 767.98px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }
}
#contact .contact-grid .contact-info {
  position: relative;
  padding: 2rem;
}
@media (max-width: 767.98px) {
  #contact .contact-grid .contact-info {
    padding: 0;
  }
}
#contact .contact-grid .contact-info h2 {
  margin-bottom: 2.5rem;
}
#contact .contact-grid .contact-info p,
#contact .contact-grid .contact-info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--light);
}
@media (min-width: 768px) {
  #contact .contact-grid .contact-info p,
  #contact .contact-grid .contact-info a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#contact .contact-grid .contact-info p i,
#contact .contact-grid .contact-info a i {
  margin-right: 10px;
}
#contact .contact-grid .contact-info p i::before,
#contact .contact-grid .contact-info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
#contact .contact-grid .contact-info p i.fa-facebook-square::before,
#contact .contact-grid .contact-info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}
#contact .contact-grid .contact-info p i.fa-instagram::before,
#contact .contact-grid .contact-info a i.fa-instagram::before {
  font-size: 1.65rem;
}
#contact .contact-grid .contact-info a {
  font-weight: 700;
}
#contact .contact-grid .contact-info a:hover {
  color: var(--primary-dark);
}
#contact .contact-grid .business-hours {
  margin-top: 2.5rem;
}
#contact .contact-grid .business-hours h3 {
  padding-left: 0.3rem;
}
#contact .contact-grid .business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--light);
  font-size: 1.1rem;
  line-height: 1.8rem;
}
#contact .contact-grid .business-hours li span {
  float: right;
}
#contact .contact-grid .business-hours li:last-child {
  border-bottom: none;
}
#contact .contact-grid .business-hours li.today {
  font-weight: 700;
  background: var(--primary);
}
#contact .contact-grid .business-hours p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  #contact .contact-grid .business-hours p.info {
    font-size: 1rem;
  }
}
#contact .contact-grid .business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  #contact .contact-grid .business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
#contact .contact-grid .contact-map iframe {
  border-radius: 8px;
}

.footer-02 {
  position: relative;
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.footer-02 .info {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.footer-02 .info p strong {
  font-size: 1.1rem;
}
.footer-02 p {
  margin-bottom: 0;
}
.footer-02 a {
  color: #f8f9fa;
  font-weight: 600;
}

.arrow-to-top.arrow-01 {
  cursor: pointer;
  pointer-events: none;
  position: fixed;
  text-align: center;
  z-index: 100;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  right: 40px;
  bottom: 10px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 {
    right: 0;
  }
}
.arrow-to-top.arrow-01.show {
  opacity: 1;
  pointer-events: all;
  bottom: 40px;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01.show {
    bottom: 20px;
  }
}
.arrow-to-top.arrow-01 a {
  text-decoration: none;
  padding: 5px 12px;
  color: #fff;
  background: var(--primary);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
}
.arrow-to-top.arrow-01 a i {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.arrow-to-top.arrow-01 a:hover {
  background: var(--primary) -dark;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.arrow-to-top.arrow-01 a:hover i {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 a:hover {
    background: var(--primary);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .arrow-to-top.arrow-01 a:hover i {
    -webkit-transform: none;
            transform: none;
  }
}

.arrow-to-top.arrow-02,
.home {
  position: fixed;
  right: 3px;
  cursor: pointer;
  text-align: center;
  z-index: 100;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02,
  .home {
    right: 40px;
  }
}
.arrow-to-top.arrow-02 a,
.home a {
  display: inline-block;
  width: 40px;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02 a,
  .home a {
    width: 50px;
  }
}
.arrow-to-top.arrow-02 a:hover,
.home a:hover {
  background: var(--primary-dark);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
}

.arrow-to-top.arrow-02 {
  bottom: 0px;
  opacity: 0;
  pointer-events: none;
}
.arrow-to-top.arrow-02.show {
  bottom: 43px;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02.show {
    bottom: 68px;
  }
}
.arrow-to-top.arrow-02 a {
  padding: 5px 0;
  font-size: 15px;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02 a {
    padding: 6px 0;
    font-size: 18px;
  }
}

.home {
  bottom: 4px;
}
@media (min-width: 576px) {
  .home {
    bottom: 20px;
  }
}
.home a {
  font-size: 15px;
  padding: 4px 0;
}
@media (min-width: 576px) {
  .home a {
    padding: 6px 0;
    font-size: 18px;
  }
}

.mousey {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 2px solid white;
  border-radius: 20px;
  opacity: 0;
  -webkit-animation: mousey 4s ease 3s infinite;
          animation: mousey 4s ease 3s infinite;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@media (min-width: 768px) {
  .mousey {
    display: block;
  }
}
.mousey .scroller {
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background-color: white;
  -webkit-animation: mousey-scroller 4s ease 3s infinite;
          animation: mousey-scroller 4s ease 3s infinite;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}

@keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-webkit-keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}
@keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}
#preloader {
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
  overflow: hidden;
  color: #fff;
}
#preloader img.logo {
  width: 80%;
  max-width: 110px;
  margin-bottom: 20px;
}
#preloader p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#preloader .jumper {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#preloader .jumper > div {
  background: #fff;
  border-radius: 100%;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: jumper 3s 0s linear infinite;
          animation: jumper 3s 0s linear infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
          animation-delay: 0.33333s;
}
#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
          animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.popup {
  height: 100%;
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px;
}
.popup.only-image .popup__body {
  padding: 0;
  background-color: transparent;
  overflow: unset;
}
.popup.only-image .close-btn {
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  top: -15px;
  right: -15px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 500;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.popup__body {
  z-index: 1000;
  height: auto;
  width: auto;
  max-height: 90%;
  background: #fff;
  color: #000;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2rem;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .popup__body {
    width: 90%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.popup__body img {
  display: block;
  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
}
.popup__body p {
  color: var(--dark);
  max-width: 500px;
  text-align: center;
}
.popup__body h3{
  text-align: center;
}
.popup__body a {
  text-decoration: none;
}
.popup__body .close-btn {
  color: var(--dark);
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
}

#error-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  text-align: center;
  background: var(--dark);
  color: #fff;
}
#error-page::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#error-page h1 {
  letter-spacing: 0.1rem;
  line-height: 1;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  #error-page h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  #error-page h1 {
    font-size: 6rem;
  }
}
#error-page h2 {
  margin-bottom: 2rem;
  color: #fff;
  font-family: var(--font-body);
}
#error-page p {
  font-size: 2rem;
  font-weight: 700;
}
#error-page .primary-btn i {
  position: relative;
  left: -5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
#error-page .primary-btn:hover {
  background-color: var(--primary-dark);
}
#error-page .primary-btn:hover i {
  left: -10px;
}

.crossroad {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: url("../images/crossroad/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 0rem 0 4rem;
  z-index: 0;
}
@media (max-width: 575.98px) {
  .crossroad {
    height: 100%;
    overflow-x: hidden;
  }
}
.crossroad::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  inset: 0;
  z-index: -1;
}
.crossroad header {
  padding: 40px 0;
}
.crossroad header .header-content h1 {
  font-weight: 800;
  color: #fff;
  font-size: 46px;
}
.crossroad header .header-content .brand__logo {
  max-width: 300px;
  margin-inline: auto;
  margin-bottom: 20px;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.7));
          filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.7));
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 767.98px) {
  .crossroad header .header-content .brand__logo {
    max-width: 200px;
  }
}
.crossroad header .header-content .heading {
  font-size: 25px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .crossroad header .header-content .heading {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.crossroad header .header-content .heading a {
  color: #fff;
  text-decoration: underline;
}
.crossroad #pobocky {
  padding: 1rem 0;
}
@media (max-width: 575.98px) {
  .crossroad #pobocky {
    padding: 0 0 3.75rem;
  }
}
.crossroad #pobocky [class*=col-] {
  margin-bottom: 30px;
}
.crossroad .pobocka {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 5px;
  background: #fff;
  position: relative;
}
@media (max-width: 767.98px) {
  .crossroad .pobocka {
    height: auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .crossroad .pobocka {
    max-width: 100%;
    min-width: unset;
    margin-bottom: 0;
  }
}
.crossroad .pobocka:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.crossroad .pobocka .pobocka-link {
  text-decoration: none;
  color: #fff;
}
.crossroad .pobocka .pobocka-link .pobocka__img {
  max-height: 240px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.crossroad .pobocka .pobocka__content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95);
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
}
.crossroad .pobocka .pobocka__content .name {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.crossroad .pobocka .pobocka__content .place {
  font-weight: 500;
  margin: 0 0 1rem;
  opacity: 8;
}
.crossroad .pobocka .pobocka__content .meals {
  font-size: 14px;
  font-weight: 500;
}
.crossroad .pobocka .pobocka__content .info .tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
}
.crossroad .pobocka .pobocka__content .info .tel-link:hover {
  color: #cecece;
}
.crossroad .pobocka .pobocka__content .info .tel-link i {
  margin-right: 10px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.crossroad .pobocka .pobocka__content .pobocka h2 {
  text-align: center;
  padding: 15px 5px;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.absolute-btn {
  padding: 7px 15px;
  position: absolute;
  top: 10px;
  right: -10px;
  text-transform: uppercase;
  color: #fff;
  background: rgb(156, 4, 4);
  -webkit-box-shadow: 0 0 5px black;
          box-shadow: 0 0 5px black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
}
.absolute-btn:hover, .absolute-btn:focus {
  text-decoration: none;
  color: #fff;
  background: rgb(125, 9, 9);
}

.order-btn {
  font-size: 16px;
  text-transform: uppercase;
  padding: 9px 20px 9px 58px;
  background: rgb(156, 4, 4);
  font-weight: 600;
  color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px black;
          box-shadow: 0 0 5px black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 1px solid #690303;
}

.order-btn:hover {
  text-decoration: none;
  background: rgb(171, 15, 15);
  color: #ffffff;
}

.order-btn i {
  font-size: 37px;
  width: 55px;
  line-height: 50px;
  position: absolute;
  left: -5px;
  top: 5px;
  -webkit-transform: rotate(-25deg) scale(1);
          transform: rotate(-25deg) scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.order-btn:hover i {
  -webkit-transform: rotate(-20deg) scale(1.3);
          transform: rotate(-20deg) scale(1.3);
}

.sidebar {
  display: none;
  background: rgba(0, 0, 0, 0.67);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.sidebar.show {
  max-width: 35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: visible;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar .settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 7px;
}
.sidebar .settings button {
  margin-bottom: 1rem;
  padding: 0.3rem;
}
.sidebar .settings a {
  text-align: center;
  background: white;
  color: #333;
  margin-bottom: 1rem;
  padding: 0.3rem;
}
.sidebar .settings a.active {
  background: #b51d20;
  color: #fff;
}
.sidebar .settings .widget-settings > button {
  display: block;
  text-align: center;
  background: white;
  color: #333;
  margin-bottom: 5px;
  padding: 5px;
  border: 0;
  font-size: 13px;
  cursor: pointer;
}
.sidebar .settings .widget-settings > button.active {
  background: #b51d20;
  color: #fff;
}
.sidebar .settings .themesettings {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebar .settings .themesettings h5 {
  color: #fff;
  font-size: 0.7rem;
  margin-bottom: 10px;
  text-align: center;
}
.sidebar .settings .themesettings button {
  width: 100%;
  border-right: 1px solid gray;
  font-size: 0.7rem;
  border: 1px solid black;
  cursor: pointer;
}
.sidebar .settings .themesettings button:active {
  background: #b51d20;
  color: #fff;
}
.sidebar .widget-settings {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sidebar .widget-settings > button {
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.sidebar .widget-settings > button:active {
  background: #b51d20;
  color: #fff;
}
.sidebar .widget-settings #obalyBtn {
  margin-right: 10px;
}
.sidebar .close-btn {
  padding: 0.2rem;
  text-align: center;
  background: #1c1c1c;
  font-size: 2rem;
  border: none;
  color: #fff;
  cursor: pointer;
}
.sidebar #foodlist_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem;
  padding: 0 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  margin: 0 0 1rem 0;
}
.sidebar #foodlist_categories.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.sidebar #foodlist_categories .foodlist_cat_item {
  display: block;
  padding: 3px 12px;
  border-radius: 35px;
  background: #fff;
  color: #000000;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 11px;
}
.sidebar #foodlist_categories .foodlist_cat_item:hover, .sidebar #foodlist_categories .foodlist_cat_item:focus {
  -webkit-box-shadow: 0 3px 50px rgba(66, 0, 0, 0.2);
          box-shadow: 0 3px 50px rgba(66, 0, 0, 0.2);
}
.sidebar #foodlist_categories .foodlist_cat_item.selected {
  background: rgb(181, 29, 32);
  color: #fff;
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 50;
}
.bottom-banner #alergeny {
  padding: 20px;
  background-color: #3c1504;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
  -webkit-box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
}
.bottom-banner #alergeny.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-banner #alergeny .alergeny-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom-banner #alergeny .alergeny-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  min-height: 30px;
  max-width: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 0.5rem;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.bottom-banner #alergeny .alergeny-item .icon.first {
  background-color: #e06f1b;
}
.bottom-banner #alergeny .alergeny-item .icon.second {
  background-color: #8a2121;
}
.bottom-banner #alergeny .alergeny-item .icon.third {
  background-color: #0f98ae;
}
.bottom-banner #alergeny .alergeny-item .icon.fourth {
  background-color: #0a8074;
}
.bottom-banner #alergeny .alergeny-item .icon span {
  margin: auto;
  font-weight: bolder;
}
.bottom-banner #alergeny .alergeny-item .alergeny-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}
.bottom-banner #alergeny .alergeny-item .alergeny-content .heading {
  color: #dfc76a;
  font-weight: bolder;
  margin-bottom: 0;
  font-size: 0.6rem;
}
.bottom-banner #alergeny .alergeny-item .alergeny-content .small {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.5rem;
}

#obaly {
  background-color: #fff;
  text-align: center;
  display: none;
  padding: 0.3rem;
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
  color: #262626;
}
#obaly.show {
  display: block;
}
#obaly p {
  margin-bottom: 0;
  font-size: 12px;
}

#food-list,
#vyloha {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
  padding: 0 10px;
  text-shadow: 0px 0px 2px rgb(0, 0, 0);
}
#food-list.owl-item,
#vyloha.owl-item {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#food-list.owl-item .category,
#vyloha.owl-item .category {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  padding: 0 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
#food-list.owl-item .category#blok1,
#vyloha.owl-item .category#blok1 {
  z-index: 10;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#food-list.owl-item .category#blok2,
#vyloha.owl-item .category#blok2 {
  z-index: 9;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
#food-list.two-columns,
#vyloha.two-columns {
  grid-template-columns: 1fr 1fr;
}
#food-list.two-columns h2,
#vyloha.two-columns h2 {
  grid-column: span 2;
}
#food-list h2,
#vyloha h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 22px;
  position: relative;
  grid-column: span 3;
  font-weight: 800;
  font-family: var(--font-body);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  padding: 5px 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  color: #3c1504;
  text-shadow: none;
}
#food-list h2:nth-child(1),
#vyloha h2:nth-child(1) {
  margin-top: 0;
}

#menuboard {
  background-image: url("../images/menuboardy/wood.jpg");
  background-size: cover;
  height: 100vh;
  background-position: 50% 73%;
  position: relative;
  -webkit-box-shadow: inset 0 5px 25px rgba(0, 0, 0, 0.9);
          box-shadow: inset 0 5px 25px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
#menuboard .bg-images {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#menuboard .bg-images::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  -webkit-box-shadow: inset 0 0 180px 0 rgb(0, 0, 0);
  box-shadow: inset 0 0 180px 0 rgb(0, 0, 0);
}
#menuboard .bg-images img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 73%;
     object-position: 50% 73%;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.25s all;
  transition: 0.25s all;
  display: none;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
}
#menuboard .bg-images img.active {
  display: block;
}
#menuboard .logo {
  position: absolute;
  width: 70px;
  top: 4px;
  left: 16%;
  z-index: 2;
  opacity: 0;
}
#menuboard .logo.show {
  opacity: 1;
}
#menuboard .show-categories {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
  padding: 25px;
}
#menuboard a {
  text-decoration: none;
}

#nabidka {
  position: relative;
  z-index: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
}

@-webkit-keyframes slideshow {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 0;
    visibility: visible;
  }
  10% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100% {
    transform: translateX(500%);
    -webkit-transform: translateX(500%);
    -moz-transform: translateX(500%);
    -ms-transform: translateX(500%);
    -o-transform: translateX(500%);
    visibility: hidden;
  }
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 0;
    visibility: visible;
  }
  10% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100% {
    transform: translateX(500%);
    -webkit-transform: translateX(500%);
    -moz-transform: translateX(500%);
    -ms-transform: translateX(500%);
    -o-transform: translateX(500%);
    visibility: hidden;
  }
}
/* End of categories nav */
.item-list {
  font-size: 0.8rem;
  display: block;
  width: 100%;
  margin-bottom: 0;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
}

.item-list-food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2px;
}

.item-list-name {
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

.item-list-price {
  color: #24de24;
  font-weight: 700;
  padding: 0 0 0 5px;
}

.item-list-ingredience {
  font-size: 0.6rem;
  color: #e3e3e3;
  width: 100%;
  padding-bottom: 5px;
}

#loading {
  display: block;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
}

@keyframes itemFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#custom-blok {
  height: 100vh;
  background-color: #fff;
  color: #262626;
}
#custom-blok .custom-content {
  padding: 4rem 2rem;
  font-size: 1rem;
}
#custom-blok .custom-content h2 {
  color: #252525;
  text-align: center;
  font-size: 28px;
  margin-bottom: 2.5rem;
}
#custom-blok .custom-content .christmas-hours {
  list-style-type: none;
  padding: 0;
}
#custom-blok .custom-content .christmas-hours li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px dotted gray;
  margin-bottom: 0.5rem;
}
#custom-blok .custom-content .christmas-hours li span {
  font-weight: bolder;
}
#custom-blok .custom-content .small {
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */