/*
Theme Name: Liotrivi Theme
Theme URI:
Author: Monica Saba
Author URI: 
Description: Responsive restaurant theme with Bootstrap
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: liotrivi-theme
*/
:root {
  --dark-black: #000;
  --main-color: #556b2f;
  --main-beige: #ede6d0;

  --size-10: 10px;
  --size-12: 12px;
  --size-13: 13px;
  --size-14: 14px;
  --size-15: 15px;
  --size-16: 16px;
  --size-17: 17px;
  --size-18: 18px;
  --size-20: 20px;
  --size-22: 22px;
  --size-25: 25px;
  --size-28: 28px;
  --size-30: 30px;
  --size-32: 32px;
  --size-33: 33px;
  --size-38: 38px;
  --size-50: 50px;

  /* Container */
  --width-container: 1772px;
}

.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}
@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0px);
  }
}
.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
.snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}
.snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}
.snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}
.snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}
.snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}
.snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}
.snowflake:nth-of-type(7) {
  left: 70%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}
.snowflake:nth-of-type(8) {
  left: 80%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}
.snowflake:nth-of-type(9) {
  left: 90%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}
img.santa-hat {
  width: 45px;
  position: absolute;
  left: -10px;
  transform: rotate(-48deg);
}

/* GLOBAL */
.list-unstiled {
  list-style: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-weight: normal;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: var(--size-16);
  color: var(--main-color);
  background-color: var(--main-beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: var(--width-container);
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 300ms ease-in-out;
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: calc(-0.5 * var(--bs-gutter-x));
  padding-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm {
    max-width: 100%;
    padding-right: calc(-0.5 * var(--bs-gutter-x));
    padding-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm {
    max-width: 100%;
    padding-right: calc(-0.5 * var(--bs-gutter-x));
    padding-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100%;
    padding-right: calc(-0.5 * var(--bs-gutter-x));
    padding-left: calc(-0.5 * var(--bs-gutter-x));
  }
}

@media (min-width: 1200px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1860px;
  }
}
.grid-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 100px;
}
/*TOP BANNER*/

.top-banner .top-banner-image {
  display: grid;
}

.top-banner .top-banner-image * {
  grid-area: 1/-1;
}

.top-banner .top-banner-image figure img {
  aspect-ratio: 1;
  margin: auto;
  display: flex;
}
.top-banner .top-banner-image figure {
  margin-bottom: 0;
}

.top-banner .top-banner-text {
  align-self: center;
}
.top-banner .top-banner-text h1 {
  background-color: rgba(255, 255, 255, 0.7);
  font-size: var(--size-38);
  padding: 10px;
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
}
/*TOP BANNER*/

/*HEADER*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  transition: background 0.3s ease;
  z-index: 9999;
}
header #menu-main-menu li {
  margin-bottom: 0;
  padding-bottom: 0;
}
header #menu-main-menu li:not(:last-child) {
  padding-right: 10px;
}
header #menu-main-menu li a {
  color: white;
  font-size: var(--size-22);
  font-weight: 500;
}
header #menu-main-menu li > a:after {
  content: "";
  height: 1px;
  background-color: white;
  display: block;
  width: 0;
  transition: width 0.3s ease;
}
header #menu-main-menu li.current-menu-item > a:after,
header #menu-main-menu li > a:hover:after {
  width: 100%;
}

.navbar-nav .menu-item-has-children {
  position: relative;
}

.navbar-nav .menu-item-has-children > a {
  display: flex !important;
  align-items: center;
  flex-direction: row-reverse;
}
.navbar-nav .menu-item-has-children > a::before {
  content: "\25BE";
  font-size: 16px;
  transition: transform 0.25s ease;
}
.navbar-nav .menu-item-has-children.open > a::before {
  transform: translateY(0) rotate(180deg);
}

.navbar-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: auto;
  background: black;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.navbar-nav .sub-menu li a {
  padding: 8px 15px;
  display: block;
  color: #333;
  white-space: nowrap;
}
header #menu-main-menu.navbar-nav .sub-menu li a:after {
  content: none !important;
}

.navbar-nav .menu-item-has-children.open > .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 9999;
}
/*HEADER*/

/*FOOTER*/
footer {
  padding: 60px 0 16px;
  text-align: center;
  color: #333;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 40px;
}

footer h3 {
  position: relative;
  font-size: 26px;
  color: var(--main-color);
  margin-bottom: 15px;
}
footer h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  margin: 10px auto 0;
  border-radius: 2px;
}
.footer-column {
  display: flex;
  flex-direction: column;
}
footer .footer-address,
footer a {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
  margin-bottom: 0;
}
footer .footer-address {
  margin-bottom: 0 !important;
}

footer a:hover {
  color: #b38b59;
  fill: #b38b59;
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: var(--main-color);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-links svg:hover {
  fill: #b38b59;
  transform: scale(1.15);
}
.footer-bottom .container {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: var(--main-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #b38b59;
  text-decoration: underline;
}

/*FOOTER*/

/*MENU PAGE*/
.small-info {
  max-width: 1200px;
  margin-top: 60px;
}
.small-info .small-info-text {
  line-height: 2;
  font-weight: bold;
}
.menu-category-section-category {
  scroll-margin-top: 250px;
}
.main-menu-section h4 {
  color: black;
  font-size: var(--size-16);
  margin: 30px 0;
  line-height: 2;
}
.menu-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.dish_name_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.dish_name_wrapper strong {
  color: black;
  font-size: var(--size-18);
}
.dish_description {
  max-width: 80%;
  display: block;
}
.dish_price_separator {
  flex: 1;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
  margin: 0 10px;
}

.dish_price {
  font-weight: bold;
  color: var(--main-color);
  display: flex;
  flex: 1;
  width: 100%;
  align-items: center;
}
.dish_price .price-wrapper {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.dish_price .price-large {
  padding-left: 10px;
}
.dish_price .price-large .price-title,
.dish_price .price-regular .price-title {
  display: none;
}

#category-burgers
  .menu-item.dish-chicken
  .dish_price
  .price-regular
  .price-title,
#category-burgers
  .menu-item.dish-cheese
  .dish_price
  .price-regular
  .price-title,
#category-burgers .menu-item.dish-1 .dish_price .price-regular .price-title,
#category-burgers .menu-item.dish-1 .dish_price .price-large .price-title,
#category-burgers .menu-item.dish-cheese .dish_price .price-large .price-title,
#category-burgers .menu-item.dish-chicken .dish_price .price-large .price-title,
#category-burgers .menu-item:first-child .dish_price .price-large .price-title {
  display: block;
}

#category-burgers .menu-item.dish-1 .dish_price .price_price_wrapper,
#category-burgers .menu-item.dish-cheese .dish_price .price_price_wrapper,
#category-burgers .menu-item.dish-chicken .dish_price .price_price_wrapper {
  flex-direction: row;
  display: flex;
}
.badge svg path,
.badge svg {
  width: 30px;
  height: 30px;
  fill: black;
}
.badge {
  padding: 0;
}
.badge-new svg {
  height: 20px;
  width: 20px;
}
/*MENU PAGE*/

/*CONTACT PAGE*/
.wpcf7-response-output {
  text-align: center;
}
.contact-page-content form {
  max-width: 800px;
  margin: 60px auto 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.page-template-page-contact .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.page-template-page-contact .form-row .column {
  flex: 1;
}
.contact-page-content {
  margin-top: 60px;
}
.contact-page-content h2 {
  text-align: center;
  font-size: var(--size-28);
}

.page-template-page-contact p {
  margin-bottom: 15px;
}
.page-template-page-contact label {
  width: 100%;
  font-size: var(--size-14);
  font-weight: bold;
  color: var(--main-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-template-page-contact .wpcf7-list-item label {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.page-template-page-contact .privacy-consent input {
  width: fit-content !important;
}
.page-template-page-contact .privacy-consent a {
  color: var(--main-color);
  text-decoration: underline;
}
.page-template-page-contact .wpcf7-spinner {
  display: none;
}
.page-template-page-contact p {
  margin-bottom: 0;
}
.page-template-page-contact .form-row:last-child {
  margin-bottom: 0;
}
.page-template-page-contact .privacy-consent .wpcf7-list-item {
  margin-left: 0;
}
.page-template-page-contact input:not([type="submit"]),
.page-template-page-contact select,
.page-template-page-contact textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: var(--size-14);
  transition: border-color 0.3s ease-in-out;
}
.page-template-page-contact input:focus,
.page-template-page-contact select:focus,
.page-template-page-contact textarea:focus {
  border-color: var(--primary-color, #c0c0c0);
  outline: none;
  box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
}
.page-template-page-contact textarea {
  min-height: 150px;
  resize: vertical;
}

.page-template-page-contact .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
.page-template-page-contact .form-row p {
  margin-bottom: 0;
}

.page-template-page-contact .form-row .column {
  flex: 1;
}

.page-template-page-contact .form-row .column br {
  display: none;
}

.page-template-page-contact .form-row .column label {
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
}

.page-template-page-contact input[type="submit"] {
  display: block;
  width: 250px;
  margin: 30px auto 0 auto;
  padding: 15px 30px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: var(--size-14);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-template-page-contact input[type="submit"]:hover {
  background-color: #b38b59;
}
/*CONTACT PAGE*/

/*GALLERY PAGE*/
.gallery-container {
  margin-top: 2px;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item .gallery-item-image {
  display: grid;
}
.gallery-item .gallery-item-image > * {
  grid-area: 1/-1;
}

.gallery-item a {
  display: block;
  line-height: 0;
  position: relative;
  transition: 300ms ease-in-out;
}

.gallery-image-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: 300ms ease-in-out;
}

.gallery-item a:hover .gallery-image-thumb {
  transform: scale(1.1);
}
.image-caption-text {
  align-self: end;
  justify-self: center;
  padding-bottom: 20px;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: 300ms ease-in-out;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  transform: translateY(0);
  overflow: hidden;
  z-index: 8;
}
.gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  background: linear-gradient(0deg, #000000b3, #0000004d 70%, transparent);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item a:hover .image-caption-text {
  opacity: 1;
  transform: translateY(-20px);
}
/*GALLERY PAGE*/

/*ΗΟΜΕPAGE*/
.opening-hours-section {
  padding: 60px 0;
  text-align: center;
}

.opening-hours-section .section-title {
  font-size: var(--size-28);
  margin-bottom: 40px;
  color: var(--main-color);
  position: relative;
}

.opening-hours-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #b38b59;
  margin: 15px auto 0;
  border-radius: 3px;
}

.opening-hours-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  transition: background 0.3s ease;
  cursor: inherit;
}

.opening-hours-list li:hover {
  background: rgba(179, 139, 89, 0.08);
}

.opening-hours-list .day {
  font-weight: 600;
  color: black;
}

.opening-hours-list .hours {
  color: var(--main-color);
  font-style: italic;
}

/* ============ HERO SLIDER ============ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: bottom;
}
.menu-category-swiper .swiper-button-next:after,
.menu-category-swiper .swiper-button-prev:after,
.my-history-swiper .swiper-button-next:after,
.my-history-swiper .swiper-button-prev:after,
.menuSwiper .swiper-button-next:after,
.menuSwiper .swiper-button-prev:after,
.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  color: white;
  font-size: var(--size-20);
  font-weight: 300;
}
.menu-category-swiper .swiper-pagination,
.my-history-swiper .swiper-pagination,
.menuSwiper .swiper-pagination,
.hero-slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-category-swiper .swiper-pagination-bullet,
.my-history-swiper .swiper-pagination-bullet,
.menuSwiper .swiper-pagination-bullet,
.hero-slider .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.menu-category-swiper .swiper-pagination-bullet-active,
.my-history-swiper .swiper-pagination-bullet-active,
.menuSwiper .swiper-pagination-bbullet-active,
.hero-slider .swiper-pagination-bullet-active {
  background-color: white;
  width: 10px;
  height: 10px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.about-image img {
  width: 100%;
  border-radius: 15px;
}

/* ============ MENU CAROUSEL ============ */
.menu-carousel-section {
  padding: 30px 0;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
}
.menuSwiper .swiper-pagination {
  position: unset;
  margin-top: 30px;
}
.menu-carousel {
  display: flex;
}
.menu-carousel-item .menu-title {
  color: white;
  font-size: var(--size-20);
  margin-bottom: 0;
}
.menu-image img {
  width: 50px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.menu-content {
  padding: 20px;
}
.menu-more-wrapper a {
  margin-top: 0;
  color: #ede6d0;
  font-size: var(--size-28);
  padding: 0;
}
.menu-more-wrapper:after {
  content: "";
  height: 3px;
  border-radius: 4px;
  width: 50px;
  margin: 10px auto;
  display: block;
  background-color: #ede6d0;
}
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.read-more-btn:hover {
  background: #8b6b3f;
}
/*ΗΟΜΕPAGE*/

/*ABOUT PAGE*/
.my-history-swiper {
  border-radius: 15px;
}
.history-slider-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.history-slider-wrapper .history-slider-title {
  font-size: var(--size-28);
}
.history-slider-wrapper .swiper-slide img {
  height: 600px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
/*ABOUT PAGE*/

/*MENU PAGE*/
.menu-category-swiper-outer {
  background-color: var(--main-color);
  padding: 5px 0;
  position: sticky;
  top: 111px;
  z-index: 9998;
}
.menu-category-swiper-outer .swiper-slide img {
  filter: brightness(0) invert(1);
  max-width: 38px;
  margin: auto;
}
.menu-category-swiper-outer .swiper-slide h3 {
  color: white;
  font-size: var(--size-18);
}
.menu-category-swiper .swiper-wrapper {
  padding-bottom: 0;
}
.menu-category-swiper .swiper-pagination {
  bottom: 0;
}
.shake:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.main-menu-section {
  margin-top: 60px;
}
.main-menu-section ul {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  grid-auto-flow: dense;
}
.menu-category-section {
  margin-bottom: 20px;
}
.menu-category-section img {
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
#category-burgers ul {
  margin-top: 100px;
}
.main-menu-section .dish-spyrous-burger {
  grid-column: 1 / -1;
  max-width: 46%;
}
.main-menu-section .dish-vegeterian,
.main-menu-section .dish-meatless-vegan,
.main-menu-section .dish-chicken,
.main-menu-section .dish-crunchy-chicken {
  margin-top: 80px;
}
.dish-cheese:before {
  content: "";
  background-image: url("/wp-content/themes/liotrivi-theme/assets/images/beef.png");
  display: flex;
  width: 50px;
  object-fit: cover;
  align-items: center;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-80px);
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.dish-chicken:before {
  content: "";
  background-image: url("/wp-content/themes/liotrivi-theme/assets/images/chicken.png");
  display: flex;
  width: 50px;
  align-items: center;
  height: 50px;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-80px);
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dish-meatless-vegan:before {
  content: "";
  background-image: url("/wp-content/themes/liotrivi-theme/assets/images/leaf.png");
  display: flex;
  width: 50px;
  align-items: center;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-80px);
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-menu-section #category-burgers ul li:last-child {
  grid-column: 1 / -1;
}
.main-menu-section #category-burgers ul li:last-child .dish_name_wrapper {
  justify-content: center;
}
.main-menu-section #category-burgers ul li:last-child .dish_price {
  display: none;
}
/*MENU PAGE*/

/*GDPR PAGE*/
.top-banner-bg {
  background-color: #000;
  color: white;
  padding: 40px 0;
}
.gdpr-page {
  margin-top: 40px;
}
.gdpr-page .container {
  max-width: 1200px;
}
.gdpr-page .gdpr-text a {
  color: inherit;
}
/*GDPR PAGE*/
