/* Rounded */
@font-face {
  font-family: Primary;
  src: url(/ui/system/font/Poppins-Regular.ttf);
}

@font-face {
  font-family: Primary;
  font-weight: 500;
  src: url(/user-data/factories/551/madegentle.otf); /* propojení­ na umí­stění­ souboru */
}

/* STYLE DIFF*/

.map-container .gradient-btn{
  color:white;
}
 
.toppanel::before {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}
/*
.bottom-btn, .toppanel-btn {
  filter: invert(1) sepia(1) saturate(10) hue-rotate(-110deg) brightness(0.7);
}
*/
.bottom-btn-cart {
  --icon-cart_empty-white: url(/ui/system/icons/gray/cart_empty.svg);
  --icon-cart_empty-gray: url(/ui/system/icons/gray/cart_empty.svg);
}
:root {
  --icon-orders-white: url(/ui/system/icons/gray/orders.svg);
  --icon-heart-white: url(/ui/system/icons/gray/heart.svg);
  --icon-heart_active-white: url(/ui/system/icons/gray/heart_active.svg);
  --icon-customer-white: url(/ui/system/icons/gray/customer.svg);
  --icon-menu_list-white: url(/ui/system/icons/gray/menu_list.svg);
}


.item::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -4%;
    width: 110%;
    height: 108%;
    border: 2px solid #c70028; /* Ohraničení s barvou */
    border-radius: 15px; /* Pokud má prvek zaoblené rohy */
    opacity: 0; /* Skryté na začátku */
    transition: opacity 0.3s ease-in-out; /* Plynulé objevení */
    pointer-events: none; /* Zabrání interakci s pseudo-elementem */
}
.item:hover::after {
    opacity: 1; /* Viditelné při hover */
}
.cart-box .item:hover::after {
  opacity: 0;
}

.item-photo-content::before, .item-buy-now, .food-type-button {
  transition: all 0.3s ease-in-out; /* Plynulé objevení */
}
.item:hover .item-photo-content::before, .item:hover .item-buy-now {
  scale: 1.1;
}

.extended-menu .food-types .food-type-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px; /* Tloušťka podtržení */
    background-color: #c70028; /* Barva podtržení */
    transition: all 0.3s ease; /* Plynulá animace */
}
.extended-menu .food-types .food-type-button:hover::before {
    width: 100%; /* Zvětší šířku na celou délku divu */
    transition: all 0.3s ease; /* Plynulá animace */
}

.items .item .item-photo-content-bottom > h4 {
  font-size: 1.45rem;
}
.items .items-title h2, .items .daily-menu-day {
  font-size: 2rem;
}

.toppanel .multiapp-back{
  background-image: var(--icon-pointer-gray);
}

@media (max-width: 768px) {
  .mini-banners-box {
    display: none;
  }
  .item::after {
      content: '';
      position: absolute;
      top: 0;
      left: -4%;
      width: 108%;
      height: 102%;
      border: 2px solid #c70028;
      border-radius: 15px;
      opacity: 1;
      transition: opacity 0.3s ease-in-out;
      pointer-events: none;
  }
}