:root {
  --font_family_1: 'Encode Sans', sans-serif;
  --font_family_2: 'Kalam', cursive;
  --font_family_3: "Charm", cursive;
  --color_2: #c49304;
  --color_4: black;
  --color_5: red;
  --color_8: #fba922;
  --color_9: whitesmoke;
  --color_green: #409f00;
  --color_red: #ce0000;
  --color_blue: #1200ff;
  --background_color_3: transparent;
  --background_color_4: #c49304;
  --border_color_1: transparent transparent transparent white;
}
html[data-theme="light"] {
  --color_1: #1a1a1a;
  --color_1rgb: rgba(26, 26, 26, 0.07000000000000001);
  --color_3: #1a1a1a;
  --color_6: #f5f5f5;
  --color_7: #31241C;
  --background_color_1: #eff3f5;
  --background_color_2: white;
  --background_color_5: #d8d9d8;
}
html[data-theme="dark"] {
  --color_1: #ddd;
  --color_1rgb: rgba(221, 221, 221, 0.07000000000000001);
  --color_3: white;
  --color_6: #231f20;
  --color_7: #31241C;
  --background_color_1: #121212;
  --background_color_2: #1e1e1e;
  --background_color_5: #000000;
}
* {
  margin: 0;
  padding: 0;
}
html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--background_color_1);
  color: var(--color_1);
  font-family: var(--font_family_1);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
body > div.overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
}
h1 {
  font-family: var(--font_family_3);
  font-size: 50px;
  color: var(--color_1);
}
h2 {
  font-size: 38px;
  margin: 0 0 3vh 0;
  color: var(--color_2);
  font-family: var(--font_family_3);
}
h2 > div.tabAdmin {
  font-weight: normal;
  font: normal 16px/20px Tahoma, Geneva, sans-serif;
}
h3 {
  font-size: 25px;
  margin: 0 0 1vh 0;
  color: var(--color_2);
}
h4 {
  font-size: 20px;
  margin: 0 0 1vh 0;
}
h5 {
  font-size: 20px;
  margin: 0 0 1vh 0;
}
h6 {
  font-size: 20px;
  margin: 0 0 1vh 0;
}
hr {
  border: transparent;
  background: var(--color_2);
  height: 1px;
}
/* Základní styl scrollbaru pro WebKit */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.3);
  border-radius: 10px;
  transition: background-color 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 100, 0.5);
}
/* === ŠIPKY === */
::-webkit-scrollbar-button {
  height: 10px;
  width: 10px;
  background-color: transparent;
  display: block;
}
html[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
}
html[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.35);
}
header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  background: var(--bg-color);
}
.theme-switch {
  position: fixed;
  z-index: 9998;
  right: 1vw;
  top: 1vh;
  transition: opacity 0.4s ease-in-out;
}
.theme-switch.hidden {
  opacity: 0;
  pointer-events: none;
  /* Zabrání interakci, když je skrytý */
}
.theme-switch input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.theme-switch label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 64px;
  height: 26px;
  background: #ccc;
  border-radius: 50px;
  padding: 3px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
}
.theme-switch label .icon {
  width: 20px;
  height: 20px;
  display: flex;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
.theme-switch label .icon img {
  width: 100%;
  height: auto;
}
.theme-switch label .moon {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.theme-switch label .sun {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.theme-switch label::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  top: 0px;
  left: -2px;
  transition: left 0.3s ease;
}
.theme-switch input:checked + label {
  background: #444;
}
.theme-switch input:checked + label::after {
  left: 40px;
}
.theme-switch input:checked + label .moon {
  opacity: 1;
}
.theme-switch input:checked + label .sun {
  opacity: 1;
  filter: invert(100%);
}
#left-menu {
  width: 16vw;
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: var(--background_color_2);
  transition: transform 0.4s ease-in-out;
  transform: translateY(0);
}
#left-menu.hidden {
  transform: translateY(-85px);
}
#left-menu nav {
  width: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#left-menu nav::-webkit-scrollbar {
  display: none;
}
#left-menu nav ul {
  width: 80%;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
}
#left-menu nav li {
  padding: 2% 2%;
  text-align: left;
  border-bottom: 1px solid var(--color_2);
}
#left-menu nav li ul {
  width: 90%;
  margin-left: 10%;
}
#left-menu nav li ul li {
  padding: 2% 0;
}
#left-menu nav a {
  font-family: var(--font_family_3);
  display: block;
  padding: 5px 10px;
  background-color: var(--background_color_3);
  color: var(--color_2);
  font-weight: bold;
  font-size: 25px;
  text-decoration: none;
}
#left-menu nav a:hover {
  color: var(--color_3);
}
#left-menu nav a.active {
  color: var(--color_3);
}
#left-menu nav > ul > li ul li:last-child {
  border-bottom: transparent;
}
.bar-logo > div {
  display: flex;
  align-content: center;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: wrap;
  box-sizing: border-box;
  overflow: hidden;
  width: 16vw;
  padding: 2vh 0.5vw;
  font-family: var(--font_family_2);
}
.bar-logo div.logo {
  flex: 0 0 65%;
  text-align: center;
}
.bar-logo div.logo img {
  width: 70%;
  height: auto;
}
.bar-logo div.text {
  flex: 0 0 35%;
  text-align: center;
  font-weight: bold;
}
.bar-logo div.text p {
  display: block;
  width: 100%;
}
.bar-logo div.text p:nth-of-type(1) {
  font-size: 35px;
}
.bar-logo div.text p:nth-of-type(2) {
  font-size: 28px;
}
.navigation {
  display: flex;
  height: calc(100% - 306px);
  width: 100%;
}
@media (max-width: 1300px) {
  .navigation {
    height: calc(100% - 260px);
  }
}
.language {
  text-align: center;
}
.language img {
  height: 20px;
}
.language > a {
  display: inline-block !important;
  opacity: 0.5;
  margin-left: 7px;
  transition: all 0.3s ease-in-out;
}
.language a:hover {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.language a.active {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
div.menu-btn {
  display: none;
  position: absolute;
  z-index: 10000;
  right: 0px;
  width: 32px;
  padding: 13px 22px 0 0px;
}
div.menu-btn > span > img {
  width: 30px;
}
div.menu-btn > span > div {
  width: 35px;
  height: 5px;
  background-color: var(--background_color_4);
  margin: 6px 0;
}
.pushy {
  width: 230px;
  height: 100%;
  background: var(--background_color_2);
}
.pushy > ul {
  width: 80%;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
}
.pushy > ul > li ul li {
  width: 80%;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
.pushy > ul > li ul li:last-child {
  border-bottom: transparent;
}
.pushy ul li {
  padding: 2% 2%;
  text-align: left;
  border-bottom: 1px solid var(--color_2);
}
.pushy a {
  font-family: var(--font_family_3);
  display: block;
  padding: 5px 10px;
  background-color: var(--background_color_3);
  color: var(--color_2);
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.pushy li:hover > a {
  color: var(--color_3);
}
.pushy a.active {
  color: var(--color_3);
}
.pushy-open-left .pushy {
  border-left: 2px solid var(--color_2);
}
.pushy-open-right .pushy {
  border-left: 2px solid var(--color_2);
}
.pushy-submenu button {
  font-family: var(--font_family_3);
  display: block;
  padding: 5px 10px;
  background-color: var(--background_color_3);
  color: var(--color_2);
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  font-size: 25px;
  text-align: left;
  background: transparent;
  border: 0;
}
.pushy-submenu button:hover {
  color: var(--color_3);
}
#right-section {
  display: inline-block;
  width: calc(100% - 16vw);
  margin-left: 16vw;
  position: relative;
  z-index: 1;
}
.top-header {
  height: 40vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0 0vw;
}
.top-header > .text-bg {
  position: absolute;
  width: 100%;
  content: " ";
  height: 40vh;
  /*background: rgba(0,0,0,.35);*/
}
.top-header > .text-bg > h1 {
  position: absolute;
  z-index: 1;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -75%);
}
.top-header::after {
  position: absolute;
  display: block;
  content: " ";
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, var(--background_color_1) 80%);
  background-size: cover;
  bottom: 0px;
  width: 100%;
  height: 50%;
}
.pushy-submenu > a::after,
.pushy-submenu > button::after {
  border-color: transparent transparent transparent var(--color_2);
}
#content {
  background-color: var(--background_color_1);
  min-height: calc(100vh - 44vh - 30px);
  margin: 0;
  padding: 0vh 6vw;
  position: relative;
}
#content a {
  color: var(--color_2);
}
#content a:hover {
  color: var(--color_3);
}
#content p {
  margin: 3vh 0;
}
#content ul {
  margin-left: 25px;
}
#content ol {
  margin-left: 25px;
}
#content .text img {
  max-width: 100%;
  height: auto !important;
}
#content .box-news {
  display: flex;
  gap: 3%;
  align-items: flex-start;
  flex-wrap: wrap;
}
#content .box-news ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#content .box-news ul li {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 50px;
  padding: 0;
  margin-bottom: 3vh;
  background: var(--background_color_2);
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
}
#content .box-news ul li div {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#content .box-news ul li div:first-child {
  flex: 0 0 80px;
  background: var(--background_color_5);
  text-align: center;
}
#content .box-news ul li div:nth-of-type(3),
#content .box-news ul li div:nth-of-type(4) {
  flex: 0 0 100px;
  background: var(--background_color_5);
}
#content .box-news ul li div:nth-of-type(3) div,
#content .box-news ul li div:nth-of-type(4) div {
  height: 100%;
}
#content .box-news .img img {
  max-height: 100%;
  min-height: 68px;
  width: auto;
  display: block;
}
#content .box-news .text {
  flex-grow: 1;
  justify-content: left;
  padding: 0px 20px;
}
#content .old-arcticle {
  text-align: right;
  margin-bottom: 3%;
}
#content ul.akce {
  display: flex;
  flex-wrap: wrap;
  gap: 4vh 2vw;
  margin: 0 -2vw 4vh 0 !important;
  padding: 0;
}
#content ul.akce li {
  display: flex;
  width: calc(50% - 2vw);
  padding: 0;
  list-style: none;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
}
#content ul.akce li > .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background: var(--background_color_2);
  position: relative;
}
#content ul.akce li > .box > div {
  z-index: 2;
}
#content ul.akce li > .box > div.akce-edit {
  position: absolute;
  right: 10px;
  top: -10px;
}
#content ul.akce li > .box > .akce-desc {
  margin-top: 300px;
  width: 100%;
  padding: 0 !important;
}
#content ul.akce li > .box > .box-bgimg {
  opacity: 1;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#content .msg-aktivita {
  top: 39px;
  left: 39px;
  position: absolute;
}
#content .msg-text {
  border-radius: 10px;
  margin: 0 0 0 10px;
  max-width: 95%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
#content .msg-text p {
  padding: 6px 10px;
  margin: 0;
}
#content .msg-text::after {
  display: block;
  position: absolute;
  left: -12px;
  top: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 12px 7px 0;
  border-color: transparent #9c1919 transparent transparent;
}
#content .akce-text {
  margin: 0 0 0 10px;
  max-width: 95%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  min-width: 100%;
}
#content .akce-text-desc {
  padding: 6px 10px;
  margin: 0;
  position: relative;
  word-spacing: 3px;
  line-height: 25px;
  font-size: 18px;
  min-height: 25px;
  /*background: var(--background_color_2);*/
  backdrop-filter: blur(25px);
  overflow: hidden;
}
#content .msg-text-header {
  display: block;
  font-weight: bold;
  background: #000000;
}
#content .msg-text-header strong {
  display: block;
  color: #ca0000;
}
#content .msg-text-header strong em {
  font-weight: normal;
  color: #d7d7d7;
  font-size: 14px;
}
#content .akce-text-head {
  display: block;
  margin: 0;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: bold;
  background: var(--background_color_5);
}
#content .akce-text-head .price {
  position: absolute;
  right: 10px;
  color: #d7d7d7;
}
#content .akce-text-head strong {
  display: block;
  font-size: larger;
  color: var(--color_2);
  font-family: var(--font_family_2);
}
#content .akce-text-head strong em {
  font-weight: normal;
  font-size: smaller;
  font-family: var(--font_family_1);
  color: var(--color_1);
}
#content .msg-text-content {
  position: relative;
  word-spacing: 3px;
  line-height: 25px;
  font-size: 18px;
  background: rgba(225, 231, 228, 0.2);
  border-radius: 0 0 7px 7px;
  overflow: hidden;
}
#content .akce-web {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  font-weight: bold;
  padding: 4px 9px;
  border: 2px solid var(--color_2);
  border-radius: 14px;
  background: var(--background_color_5);
  transition: all 0.4s ease;
}
#content .akce-web:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color_4);
  border: 2px solid var(--color_4);
  transition: all 0.4s ease;
}
#content .akce-web svg {
  display: block;
  padding: 0px 4px;
  height: 22px;
  width: auto;
}
#content .akce-web:nth-child(2) {
  right: 60px;
}
#content .web-btn-height {
  min-height: 25px;
}
#content ul.akce li > .box > div.akce-edit a,
#content .box-news ul li div:nth-of-type(3) div a.admin,
#content .box-news ul li div:nth-of-type(4) div a.admin,
#content .box-jidelak > ul > li > .price-adm > div:nth-of-type(2) a.admin {
  display: inline-block;
  border: 2px solid var(--color_2);
  background: #231f20;
  padding: 4px 12px;
  margin: 3px;
  transition: all 0.4s ease;
}
#content ul.akce li > .box > div.akce-edit a:hover,
#content .box-news ul li div:nth-of-type(3) div a.admin:hover,
#content .box-news ul li div:nth-of-type(4) div a.admin:hover,
#content .box-jidelak > ul > li > .price-adm > div:nth-of-type(2) a.admin:hover {
  border: 2px solid #231f20;
  background: #231f20;
  transition: all 0.4s ease;
}
#content ul.akce li > .box > div.akce-edit a img,
#content .box-news ul li div:nth-of-type(3) div a.admin img,
#content .box-news ul li div:nth-of-type(4) div a.admin img,
#content .box-jidelak > ul > li > .price-adm > div:nth-of-type(2) a.admin img {
  height: 13px !important;
  width: 13px !important;
}
a {
  color: var(--color_2);
}
a:hover {
  color: var(--color_3);
}
ul.sub-menu {
  position: relative;
  right: auto;
  width: 100%;
  margin: 2vh auto !important;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
ul.sub-menu li {
  width: 11vw;
  margin: 0 1% 2% 1%;
}
ul.sub-menu li > a {
  display: block;
  transition: all 0.5s ease;
  padding: 9px 5%;
  background: #231f20;
  border: 2px solid var(--color_2);
  text-align: center;
  text-decoration: none;
}
ul.sub-menu li:hover > a {
  transition: all 0.5s ease;
  border: 2px solid var(--color_4);
}
.s-menu-space {
  width: 68vw;
}
ul.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2vh 2vw;
  margin-left: 0 !important;
}
ul.gallery li {
  display: flex;
  width: calc(33% - 2vw);
}
ul.gallery li > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--background_color_2);
  text-decoration: none;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  transition: transform 0.5s ease;
}
ul.gallery > li div.box-content img {
  margin: 0;
  width: 100%;
}
ul.gallery > li > a .box-content > img {
  transition: transform 0.5s ease;
}
ul.gallery > li > a:hover {
  transition: all 0.5s ease;
}
ul.gallery > li > a:hover .box-content > img {
  transition: transform 0.5s ease;
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}
ul.gallery > li > a:hover .box-header {
  color: var(--color_1);
  transition: all 0.5s ease;
}
ul.gallery > li > a:hover .box-header em {
  color: var(--color_1);
  transition: all 0.5s ease;
}
ul.gallery-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0 !important;
}
ul.gallery-list li {
  height: 170px;
  flex-grow: 1;
  list-style: none;
  margin: 3px;
  transition: transform 0.5s ease;
}
ul.gallery-list li:hover {
  height: 170px;
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
ul.gallery-list li img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
ul.gallery-list li:last-child {
  flex-grow: 10;
}
.box-header {
  padding: 3% 5% 3% 5%;
  background: var(--background_color_5);
  margin: 0;
  width: 90%;
  font-weight: bold;
}
.box-header em {
  display: block;
  padding: 0 0 1% 0;
  font-size: small;
  text-align: right;
}
.box-content {
  padding: 3% 5%;
  width: 90%;
  overflow: hidden;
}
.box-footer {
  margin-top: auto;
  width: 100%;
  text-align: right;
}
.box-footer > .box-footer-cnt {
  display: inline-block;
  border: 0px solid rgba(255, 255, 255, 0.3);
}
.box-footer > .box-footer-cnt span {
  display: inline-block;
  padding: 0 7px;
}
.box-footer > .box-footer-cnt a {
  display: inline-block;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.box-footer > .box-footer-cnt a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color_4);
  border: 2px solid var(--color_4);
}
form.order > fieldset {
  padding: 2%;
}
form.order .captcha {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 340px;
  margin: 10px 0;
}
form.order input {
  width: 98%;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--color_1);
  padding: 1% 1%;
  margin: 0 auto;
  font-size: 18px;
}
form.order select {
  width: 98%;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--color_1);
  padding: 1% 1%;
  margin: 0 auto;
  font-size: 18px;
  width: 100%;
}
form.order select option {
  color: var(--color_4);
}
form.order select optgroup {
  color: var(--color_4);
}
form.order textarea {
  width: 98%;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--color_1);
  padding: 1% 1%;
  margin: 0 auto;
  font-size: 18px;
}
form.order button {
  opacity: 1;
  transition: all 0.4s linear;
  color: var(--color_2);
  border: 2px solid var(--color_2);
  background: #231f20;
  padding: 10px 13px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin: 0 auto;
}
form.order button > img {
  margin-bottom: -2px;
  height: 15px;
}
form.order button:hover {
  transition: all 0.4s linear;
  color: var(--color_6);
  border: 2px solid #231f20;
  box-shadow: 0px 0px 7px 0px transparent;
  background: var(--color_2);
}
form.order button.warning {
  color: var(--color_red);
  border: 2px solid var(--color_red);
}
form.order button.warning:hover {
  background: var(--color_red);
}
form.order button.active {
  transition: all 0.4s linear;
  color: var(--color_6);
  border: 2px solid #231f20;
  box-shadow: 0px 0px 7px 0px transparent;
  background: var(--color_2);
}
form.order label.error {
  margin-left: 10px;
}
input {
  padding: 7px 10px;
  border-radius: 0;
}
select {
  padding: 7px 10px;
  border-radius: 0;
}
textarea {
  padding: 7px 10px;
  border-radius: 0;
}
button {
  padding: 7px 10px;
  border-radius: 0;
}
form input {
  margin: 0 auto;
}
form textarea {
  margin: 0 auto;
}
form label {
  text-align: left;
  margin: 0 0 1.5em 0;
}
form select {
  margin: 0 2% 2% 2%;
  background: transparent;
  color: var(--color_3);
  transition: all 0.4s linear;
}
form select:hover {
  transition: all 0.4s linear;
}
form p {
  margin: 1.5% 0 0 0;
  width: 100%;
}
input[type=number] {
  max-width: 75px;
}
option {
  margin: 0;
  width: 86%;
  border-radius: 7px 0 0 7px;
  border: 0px solid transparent;
  background: transparent;
  color: var(--color_4);
}
optgroup {
  margin: 0;
  width: 86%;
  border-radius: 7px 0 0 7px;
  border: 0px solid transparent;
  background: transparent;
  color: var(--color_4);
}
div.box-jidelak,
div.orders-recieved {
  margin-bottom: 7vh;
}
div.box-jidelak h4#kat-1,
div.orders-recieved h4#kat-1 {
  font-style: italic;
  font-weight: normal;
  font-size: normal;
}
div.box-jidelak > ul,
div.orders-recieved > ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  width: 100%;
  background: var(--background_color_2);
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
}
div.box-jidelak > ul.order-list .status-button,
div.orders-recieved > ul.order-list .status-button {
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  color: white;
  margin: 11px 7px;
}
div.box-jidelak > ul.order-list .status-text,
div.orders-recieved > ul.order-list .status-text {
  padding: 5px 10px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  display: block;
  text-align: center;
}
div.box-jidelak > ul.order-list .print-button,
div.orders-recieved > ul.order-list .print-button {
  background-color: #6c757d;
}
div.box-jidelak > ul.order-list .status-button[data-status="Zpracovává se"],
div.orders-recieved > ul.order-list .status-button[data-status="Zpracovává se"] {
  background-color: var(--color_blue);
}
div.box-jidelak > ul.order-list .status-button[data-status="Hotová"],
div.orders-recieved > ul.order-list .status-button[data-status="Hotová"] {
  background-color: var(--color_green);
}
div.box-jidelak > ul.order-list .status-button[data-status="Stornováno"],
div.orders-recieved > ul.order-list .status-button[data-status="Stornováno"] {
  background-color: var(--color_red);
}
div.box-jidelak > ul.order-list .status-text.Nová,
div.orders-recieved > ul.order-list .status-text.Nová {
  background-color: var(--color_2);
}
div.box-jidelak > ul.order-list .status-text.Zpracováváse,
div.orders-recieved > ul.order-list .status-text.Zpracováváse {
  background-color: var(--color_blue);
}
div.box-jidelak > ul.order-list .status-text.Hotová,
div.orders-recieved > ul.order-list .status-text.Hotová {
  background-color: var(--color_green);
}
div.box-jidelak > ul.order-list .status-text.Stornováno,
div.orders-recieved > ul.order-list .status-text.Stornováno {
  background-color: var(--color_red);
}
div.box-jidelak > ul.order-list .item-detail-toggle,
div.orders-recieved > ul.order-list .item-detail-toggle {
  cursor: pointer;
  margin-left: 20px;
  color: var(--color_1) !important;
  font-weight: bold;
  padding: 4px 9px;
  border-radius: 10px;
  background: var(--background_color_5);
  transition: all 0.4s ease;
}
div.box-jidelak > ul.order-list .order-item-detail,
div.orders-recieved > ul.order-list .order-item-detail {
  display: none;
  flex-basis: 100%;
  margin-left: 20px;
}
div.box-jidelak > ul > li,
div.orders-recieved > ul > li {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px dashed var(--color_1);
}
div.box-jidelak > ul > li:last-of-type,
div.orders-recieved > ul > li:last-of-type {
  border-bottom: 0px;
}
div.box-jidelak > ul > li > div.order-head,
div.orders-recieved > ul > li > div.order-head {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 1.1fr 0.8fr 0.6fr 0.8fr 80px 120px;
  gap: 10px;
  justify-items: center;
  align-items: center;
  flex-basis: 100%;
}
div.box-jidelak > ul > li > div.order-head > p,
div.orders-recieved > ul > li > div.order-head > p {
  margin: 1vh 0 !important;
}
div.box-jidelak > ul > li.order-item,
div.orders-recieved > ul > li.order-item {
  flex-wrap: wrap;
  padding-bottom: 2vh;
}
div.box-jidelak > ul > li.order-item p,
div.orders-recieved > ul > li.order-item p {
  margin: 1vh 0 !important;
}
div.box-jidelak > ul > li.order-item ul.order-detail-items,
div.orders-recieved > ul > li.order-item ul.order-detail-items {
  width: fit-content;
  list-style: none;
}
div.box-jidelak > ul > li.order-item ul.order-detail-items li,
div.orders-recieved > ul > li.order-item ul.order-detail-items li {
  border-top: 1px dashed var(--color_1);
  padding: 7px;
}
div.box-jidelak > ul > li > .text-desc,
div.orders-recieved > ul > li > .text-desc {
  flex: 0 0 calc(100% - 100px);
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
div.box-jidelak > ul > li > .text-desc > p,
div.orders-recieved > ul > li > .text-desc > p {
  flex: 1;
  /* oba řádky stejné výšky */
  margin: 0 !important;
  padding: 0px 10px;
}
div.box-jidelak > ul > li > .text-desc p:nth-of-type(1),
div.orders-recieved > ul > li > .text-desc p:nth-of-type(1) {
  font-size: larger;
  font-family: var(--font_family_2);
}
div.box-jidelak > ul > li > .text-desc p:nth-of-type(1) > a.img,
div.orders-recieved > ul > li > .text-desc p:nth-of-type(1) > a.img {
  display: inline-flex;
  vertical-align: middle;
  color: var(--color_1) !important;
  font-weight: bold;
  padding: 4px 9px;
  border-radius: 10px;
  background: var(--background_color_5);
  transition: all 0.4s ease;
}
div.box-jidelak > ul > li > .text-desc p:nth-of-type(1) > a.img:hover,
div.orders-recieved > ul > li > .text-desc p:nth-of-type(1) > a.img:hover {
  background: var(--color_2);
  color: var(--color_4) !important;
  transition: all 0.4s ease;
}
div.box-jidelak > ul > li > .text-desc p:nth-of-type(1) > a.img svg,
div.orders-recieved > ul > li > .text-desc p:nth-of-type(1) > a.img svg {
  display: block;
  height: 20px;
  width: auto;
}
div.box-jidelak > ul > li > .text-desc p:nth-of-type(2),
div.orders-recieved > ul > li > .text-desc p:nth-of-type(2) {
  padding-top: 5px;
  font-size: smaller;
}
div.box-jidelak > ul > li > .price-adm,
div.orders-recieved > ul > li > .price-adm {
  background: var(--background_color_5);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  padding: 12px 0;
  gap: 10px;
}
div.box-jidelak > ul > li > .price-adm > div,
div.orders-recieved > ul > li > .price-adm > div {
  width: 100px;
  text-align: center;
}
div.box-jidelak > ul > li > .price-adm > div:nth-of-type(2),
div.orders-recieved > ul > li > .price-adm > div:nth-of-type(2) {
  display: flex;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
}
.menu-container {
  display: flex;
  gap: 4vw;
  /* Mezera mezi sloupci */
}
.menu-container .column {
  flex: 1;
  /* Sloupce zaberou stejný prostor */
}
@media (max-width: 768px) {
  .menu-container {
    flex-direction: column;
    /* Sloupce se pod sebe */
    gap: 0;
    /* Odstraníme mezeru mezi sloupci */
  }
}
div.napojak {
  font-family: var(--font_family_2);
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div.napojak > div.napojak_multi {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
div.napojak > div.napojak_multi .napojak_sekce {
  width: 95%;
}
div.napojak > div.napojak_multi .napojak_sekce:nth-child(2n) {
  margin-left: 5%;
}
div.napojak > div.napojak_multi .napojak_sekce .napojak_obsah ul li:first-child {
  width: 70%;
}
div.napojak .napojak_nadpis h3 > em {
  display: block;
  width: 100% !important;
  margin-top: 0vh;
  font-size: medium;
  font-weight: normal;
  color: var(--color_1);
}
div.napojak > div.napojak_single {
  display: block;
  width: 100%;
}
div.napojak > div.napojak_single .napojak_sekce .napojak_obsah ul li:first-child {
  width: 80%;
}
div.napojak > div.napojak_single .napojak_sekce .napojak_obsah ul li > * {
  min-width: 10%;
}
div.napojak .napojak_sekce .napojak_obsah ul {
  margin-left: 0 !important;
  padding: 0 0 10vh 0;
  list-style-type: none;
}
div.napojak .napojak_sekce .napojak_obsah ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}
div.napojak .napojak_sekce .napojak_obsah ul li > * {
  flex: 0 0 auto;
  min-width: 15%;
  padding: 0%;
}
div.napojak .napojak_sekce .napojak_obsah ul li > span:nth-child(2) {
  text-align: center;
}
div.napojak .napojak_sekce .napojak_obsah ul li > span:nth-child(3) {
  text-align: center;
}
div.napojak .napojak_sekce .napojak_obsah ul li > em {
  display: block;
  width: 75% !important;
  margin-top: 2vh;
  font-size: smaller;
  font-style: normal;
}
div.tabAdmin {
  vertical-align: middle;
  display: inline-block;
  border-radius: 0px;
  cursor: default;
  position: absolute;
  right: 6vw;
  top: -18px;
}
div.tabAdmin a.setAdmin {
  padding: 6px 14px;
  display: inline-block;
  color: var(--color_3);
  border-radius: 0px;
  border: 2px solid var(--color_2);
  text-decoration: none;
  background: #231f20;
  transition: all 0.4s ease;
}
div.tabAdmin a.setAdmin:hover {
  border: 2px solid #231f20;
  background: #231f20;
  transition: all 0.4s ease;
}
div.tabAdmin a.setAdmin img {
  height: 13px !important;
  width: 13px !important;
}
#add-item-button {
  background-color: #888;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
  transition: background-color 0.2s;
}
#add-item-button:hover {
  background-color: #555;
}
.autocomplete-container {
  position: relative;
  display: inline-flex;
  margin-left: 8px;
}
.ui-autocomplete {
  position: absolute;
  z-index: 1000;
  cursor: default;
  padding: 0;
  margin-top: 2px;
  list-style: none;
  background-color: var(--background_color_2);
  border: 1px solid var(--color_1);
  border-radius: 6px;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  max-height: 250px;
  overflow-y: auto;
}
.ui-autocomplete .ui-menu-item {
  padding: 4px 4px;
  border-bottom: 1px dashed var(--color_1);
}
.ui-autocomplete .ui-menu-item:last-child {
  border-bottom: none;
}
.ui-autocomplete .ui-menu-item-wrapper {
  padding: 2px 4px;
}
.ui-autocomplete .ui-menu-item-wrapper:hover {
  background-color: var(--color_2);
  border-radius: 6px;
  color: var(--color_4);
}
.ui-autocomplete .ui-state-active {
  background-color: #f0f0f0 !important;
  border-radius: 6px;
  color: #e21c21 !important;
}
.ingredient-list,
.price-list,
.schedule-list,
.rozvoz-text {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ingredient-list .header-row,
.price-list .header-row,
.schedule-list .header-row,
.rozvoz-text .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.ingredient-list .header-row > div,
.price-list .header-row > div,
.schedule-list .header-row > div,
.rozvoz-text .header-row > div {
  flex: 1;
  padding: 0 10px;
}
.ingredient-list .header-row > div:nth-child(1),
.price-list .header-row > div:nth-child(1),
.schedule-list .header-row > div:nth-child(1),
.rozvoz-text .header-row > div:nth-child(1) {
  flex: 1;
}
.ingredient-list .header-row > div:nth-child(2),
.price-list .header-row > div:nth-child(2),
.schedule-list .header-row > div:nth-child(2),
.rozvoz-text .header-row > div:nth-child(2) {
  flex: 1;
}
.ingredient-list .header-row > div:nth-child(3),
.price-list .header-row > div:nth-child(3),
.schedule-list .header-row > div:nth-child(3),
.rozvoz-text .header-row > div:nth-child(3) {
  flex: 3;
}
.ingredient-list .ingredient-item,
.price-list .ingredient-item,
.schedule-list .ingredient-item,
.rozvoz-text .ingredient-item,
.ingredient-list .price-item,
.price-list .price-item,
.schedule-list .price-item,
.rozvoz-text .price-item,
.ingredient-list .schedule-item,
.price-list .schedule-item,
.schedule-list .schedule-item,
.rozvoz-text .schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 0;
}
.ingredient-list .ingredient-item > div,
.price-list .ingredient-item > div,
.schedule-list .ingredient-item > div,
.rozvoz-text .ingredient-item > div,
.ingredient-list .price-item > div,
.price-list .price-item > div,
.schedule-list .price-item > div,
.rozvoz-text .price-item > div,
.ingredient-list .schedule-item > div,
.price-list .schedule-item > div,
.schedule-list .schedule-item > div,
.rozvoz-text .schedule-item > div {
  flex: 1;
  padding: 0 10px;
}
.ingredient-list .ingredient-item .ingredient-dishes,
.price-list .ingredient-item .ingredient-dishes,
.schedule-list .ingredient-item .ingredient-dishes,
.rozvoz-text .ingredient-item .ingredient-dishes,
.ingredient-list .price-item .ingredient-dishes,
.price-list .price-item .ingredient-dishes,
.schedule-list .price-item .ingredient-dishes,
.rozvoz-text .price-item .ingredient-dishes,
.ingredient-list .schedule-item .ingredient-dishes,
.price-list .schedule-item .ingredient-dishes,
.schedule-list .schedule-item .ingredient-dishes,
.rozvoz-text .schedule-item .ingredient-dishes,
.ingredient-list .ingredient-item .associated-items,
.price-list .ingredient-item .associated-items,
.schedule-list .ingredient-item .associated-items,
.rozvoz-text .ingredient-item .associated-items,
.ingredient-list .price-item .associated-items,
.price-list .price-item .associated-items,
.schedule-list .price-item .associated-items,
.rozvoz-text .price-item .associated-items,
.ingredient-list .schedule-item .associated-items,
.price-list .schedule-item .associated-items,
.schedule-list .schedule-item .associated-items,
.rozvoz-text .schedule-item .associated-items {
  flex: 3;
}
.ingredient-list .ingredient-item input[type="text"],
.price-list .ingredient-item input[type="text"],
.schedule-list .ingredient-item input[type="text"],
.rozvoz-text .ingredient-item input[type="text"],
.ingredient-list .price-item input[type="text"],
.price-list .price-item input[type="text"],
.schedule-list .price-item input[type="text"],
.rozvoz-text .price-item input[type="text"],
.ingredient-list .schedule-item input[type="text"],
.price-list .schedule-item input[type="text"],
.schedule-list .schedule-item input[type="text"],
.rozvoz-text .schedule-item input[type="text"] {
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: var(--color_1);
  background: transparent;
}
.ingredient-list .ingredient-item input[type="text"]:focus,
.price-list .ingredient-item input[type="text"]:focus,
.schedule-list .ingredient-item input[type="text"]:focus,
.rozvoz-text .ingredient-item input[type="text"]:focus,
.ingredient-list .price-item input[type="text"]:focus,
.price-list .price-item input[type="text"]:focus,
.schedule-list .price-item input[type="text"]:focus,
.rozvoz-text .price-item input[type="text"]:focus,
.ingredient-list .schedule-item input[type="text"]:focus,
.price-list .schedule-item input[type="text"]:focus,
.schedule-list .schedule-item input[type="text"]:focus,
.rozvoz-text .schedule-item input[type="text"]:focus {
  outline: none;
  border-color: var(--color_2);
}
.ingredient-list .ingredient-item .dish-tags-container,
.price-list .ingredient-item .dish-tags-container,
.schedule-list .ingredient-item .dish-tags-container,
.rozvoz-text .ingredient-item .dish-tags-container,
.ingredient-list .price-item .dish-tags-container,
.price-list .price-item .dish-tags-container,
.schedule-list .price-item .dish-tags-container,
.rozvoz-text .price-item .dish-tags-container,
.ingredient-list .schedule-item .dish-tags-container,
.price-list .schedule-item .dish-tags-container,
.schedule-list .schedule-item .dish-tags-container,
.rozvoz-text .schedule-item .dish-tags-container,
.ingredient-list .ingredient-item .tags-container,
.price-list .ingredient-item .tags-container,
.schedule-list .ingredient-item .tags-container,
.rozvoz-text .ingredient-item .tags-container,
.ingredient-list .price-item .tags-container,
.price-list .price-item .tags-container,
.schedule-list .price-item .tags-container,
.rozvoz-text .price-item .tags-container,
.ingredient-list .schedule-item .tags-container,
.price-list .schedule-item .tags-container,
.schedule-list .schedule-item .tags-container,
.rozvoz-text .schedule-item .tags-container {
  display: inline-flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  margin-top: 5px;
}
.ingredient-list .ingredient-item .dish-tag,
.price-list .ingredient-item .dish-tag,
.schedule-list .ingredient-item .dish-tag,
.rozvoz-text .ingredient-item .dish-tag,
.ingredient-list .price-item .dish-tag,
.price-list .price-item .dish-tag,
.schedule-list .price-item .dish-tag,
.rozvoz-text .price-item .dish-tag,
.ingredient-list .schedule-item .dish-tag,
.price-list .schedule-item .dish-tag,
.schedule-list .schedule-item .dish-tag,
.rozvoz-text .schedule-item .dish-tag,
.ingredient-list .ingredient-item .associated-tag,
.price-list .ingredient-item .associated-tag,
.schedule-list .ingredient-item .associated-tag,
.rozvoz-text .ingredient-item .associated-tag,
.ingredient-list .price-item .associated-tag,
.price-list .price-item .associated-tag,
.schedule-list .price-item .associated-tag,
.rozvoz-text .price-item .associated-tag,
.ingredient-list .schedule-item .associated-tag,
.price-list .schedule-item .associated-tag,
.schedule-list .schedule-item .associated-tag,
.rozvoz-text .schedule-item .associated-tag {
  background-color: var(--color_2);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
}
.ingredient-list .ingredient-item .dish-tag:hover,
.price-list .ingredient-item .dish-tag:hover,
.schedule-list .ingredient-item .dish-tag:hover,
.rozvoz-text .ingredient-item .dish-tag:hover,
.ingredient-list .price-item .dish-tag:hover,
.price-list .price-item .dish-tag:hover,
.schedule-list .price-item .dish-tag:hover,
.rozvoz-text .price-item .dish-tag:hover,
.ingredient-list .schedule-item .dish-tag:hover,
.price-list .schedule-item .dish-tag:hover,
.schedule-list .schedule-item .dish-tag:hover,
.rozvoz-text .schedule-item .dish-tag:hover,
.ingredient-list .ingredient-item .associated-tag:hover,
.price-list .ingredient-item .associated-tag:hover,
.schedule-list .ingredient-item .associated-tag:hover,
.rozvoz-text .ingredient-item .associated-tag:hover,
.ingredient-list .price-item .associated-tag:hover,
.price-list .price-item .associated-tag:hover,
.schedule-list .price-item .associated-tag:hover,
.rozvoz-text .price-item .associated-tag:hover,
.ingredient-list .schedule-item .associated-tag:hover,
.price-list .schedule-item .associated-tag:hover,
.schedule-list .schedule-item .associated-tag:hover,
.rozvoz-text .schedule-item .associated-tag:hover {
  background-color: var(--color_red);
}
.ingredient-list .ingredient-item .remove-dish > span,
.price-list .ingredient-item .remove-dish > span,
.schedule-list .ingredient-item .remove-dish > span,
.rozvoz-text .ingredient-item .remove-dish > span,
.ingredient-list .price-item .remove-dish > span,
.price-list .price-item .remove-dish > span,
.schedule-list .price-item .remove-dish > span,
.rozvoz-text .price-item .remove-dish > span,
.ingredient-list .schedule-item .remove-dish > span,
.price-list .schedule-item .remove-dish > span,
.schedule-list .schedule-item .remove-dish > span,
.rozvoz-text .schedule-item .remove-dish > span,
.ingredient-list .ingredient-item .remove-tag > span,
.price-list .ingredient-item .remove-tag > span,
.schedule-list .ingredient-item .remove-tag > span,
.rozvoz-text .ingredient-item .remove-tag > span,
.ingredient-list .price-item .remove-tag > span,
.price-list .price-item .remove-tag > span,
.schedule-list .price-item .remove-tag > span,
.rozvoz-text .price-item .remove-tag > span,
.ingredient-list .schedule-item .remove-tag > span,
.price-list .schedule-item .remove-tag > span,
.schedule-list .schedule-item .remove-tag > span,
.rozvoz-text .schedule-item .remove-tag > span {
  margin-left: 5px;
  font-weight: bold;
  font-size: 16px;
}
.menu-rozvoz {
  position: sticky;
  top: 0;
  z-index: 9998;
  background-color: var(--background_color_2);
  padding: 10px 0;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  transition: top 0.4s ease-in-out;
}
.menu-rozvoz a {
  text-decoration: none;
  color: white;
  border: 1px solid var(--background_color_5);
  border-radius: 10px;
  padding: 10px 15px;
  margin: 0 7px;
  display: block;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
.menu-rozvoz a.active {
  color: var(--color_3);
  font-weight: bold;
  background: var(--background_color_5);
}
.menu-inner {
  width: 100%;
  position: relative;
}
.menu-inner ul {
  list-style: none;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 40px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.menu-inner ul::-webkit-scrollbar {
  display: none;
}
.menu-inner .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color_1);
  background-color: var(--background_color_5);
  border: 2px solid var(--color_2);
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  display: block;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease, border-bottom 0.3s ease, opacity 0.3s ease;
}
.menu-inner .nav-arrow > svg {
  color: var(--color_1);
  vertical-align: bottom;
}
.menu-inner .nav-arrow:hover {
  background-color: var(--background_color_2);
  color: var(--color_1);
}
.menu-inner .left-arrow {
  left: 0px;
  transform: rotateY(180deg) translateY(-50%);
}
.menu-inner .right-arrow {
  right: 0px;
}
.menu-inner .hidden {
  opacity: 0;
  pointer-events: none;
}
.rozvoz-container {
  margin-top: 5vh;
  margin-bottom: 17vh;
}
.rozvoz-container span.scroll-target {
  display: block;
  /* Převede span na blokový prvek */
  height: 2px;
  /* Nastaví pevnou výšku pro měření */
  width: 100%;
  /* Šířka 100% pro konzistenci */
}
.rozvoz-container .box-rozvoz {
  margin-bottom: 7vh;
}
.rozvoz-container .box-rozvoz ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4vh 2vw;
  margin: 0 -2vw 0 0 !important;
  padding: 0;
}
@media (max-width: 480px) {
  .rozvoz-container .box-rozvoz ul {
    margin: 0 0 !important;
  }
}
.rozvoz-container .box-rozvoz ul li {
  display: flex;
  width: calc(25% - 2vw);
  padding: 0;
  list-style: none;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
}
@media (max-width: 1200px) {
  .rozvoz-container .box-rozvoz ul li {
    width: calc(33.33% - 2vw);
  }
}
@media (max-width: 768px) {
  .rozvoz-container .box-rozvoz ul li {
    width: calc(50% - 2vw);
  }
}
@media (max-width: 480px) {
  .rozvoz-container .box-rozvoz ul li {
    width: 100%;
  }
}
.rozvoz-container .box-rozvoz ul li > .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background: var(--background_color_2);
  position: relative;
}
.rozvoz-container .box-rozvoz ul li > .box > div {
  z-index: 2;
}
.rozvoz-container .box-rozvoz ul li > .box > div.akce-edit {
  position: absolute;
  right: 10px;
  top: -10px;
}
.rozvoz-container .box-rozvoz ul li > .box > .akce-desc {
  margin-top: 300px;
  width: 100%;
  padding: 0 !important;
}
.rozvoz-container .box-rozvoz ul li > .box > .box-bgimg {
  opacity: 1;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.rozvoz-container .box-rozvoz ul li > .box .add-to-cart-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  display: block;
  font-weight: bold;
  font-size: large;
  padding: 4px 9px;
  border: 2px solid var(--color_2);
  border-radius: 14px;
  background: var(--background_color_5);
}
.rozvoz-container .box-rozvoz ul li > .box .add-to-cart-btn:hover {
  background: var(--color_2);
  color: var(--color_4);
}
.rozvoz-container .box-rozvoz ul li > .box .add-to-cart-btn > img {
  display: block;
  padding: 0px 4px;
  height: 22px;
  opacity: 0.9;
}
li.schedule-item .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin: 0 !important;
}
li.schedule-item .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
li.schedule-item .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  transition: 0.4s;
  border-radius: 24px;
}
li.schedule-item .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #555;
  transition: 0.4s;
  border-radius: 50%;
}
li.schedule-item input:checked + .delivery {
  background-color: var(--color_green);
}
li.schedule-item input:checked + .delivery:before {
  transform: translateX(26px);
}
li.schedule-item input:checked + .closed {
  background-color: var(--color_red);
}
li.schedule-item input:checked + .closed:before {
  transform: translateX(26px);
}
#product-modal,
#cart-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.modal-content {
  position: absolute;
  padding: 2%;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  background: var(--background_color_2);
  top: 8%;
  left: 33%;
  width: 34%;
  height: 76%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .modal-content {
    left: 23%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .modal-content {
    left: 13%;
    width: 70%;
  }
}
@media (max-width: 480px) {
  .modal-content {
    top: 5%;
    left: 3%;
    width: 90%;
    height: 88%;
  }
}
.modal-content .modal-body {
  min-height: 94%;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.modal-content .modal-body > .cart-item {
  width: 100%;
  padding: 3% 0;
  border-bottom: 1px dashed var(--color_1);
}
.modal-content .modal-body > .cart-item:first-of-type {
  border-top: 1px dashed var(--color_1);
}
.modal-content .modal-body > .cart-item .item-info > h4 {
  font-family: var(--font_family_2);
  color: var(--color_2);
  font-weight: bold;
  font-size: larger;
}
.modal-content .modal-body > .cart-item .item-info > h4 small {
  color: var(--color_1);
}
.modal-content .modal-body .header {
  padding-bottom: 4%;
}
.modal-content .modal-body .ingredients-container {
  padding-top: 4%;
}
.modal-content .modal-body .ingredients-container > .head {
  color: var(--color_2);
  font-family: var(--font_family_2);
  font-weight: bold;
}
.modal-content .modal-body .header,
.modal-content .modal-body .ingredients-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.modal-content .modal-body .header > img,
.modal-content .modal-body .ingredients-container > img {
  width: 80%;
  height: 350px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.modal-content .modal-body .header label.ingredients,
.modal-content .modal-body .ingredients-container label.ingredients {
  cursor: pointer;
}
.modal-content .modal-body .header .head-info,
.modal-content .modal-body .ingredients-container .head-info,
.modal-content .modal-body .header label.ingredients,
.modal-content .modal-body .ingredients-container label.ingredients {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: large;
  padding: 1vh 0;
  border-bottom: 1px dashed var(--color_1);
}
.modal-content .modal-body .header .head-info span.gold-color,
.modal-content .modal-body .ingredients-container .head-info span.gold-color,
.modal-content .modal-body .header label.ingredients span.gold-color,
.modal-content .modal-body .ingredients-container label.ingredients span.gold-color {
  color: var(--color_2);
}
.modal-content .modal-body .header .head-info > span:nth-of-type(1),
.modal-content .modal-body .ingredients-container .head-info > span:nth-of-type(1),
.modal-content .modal-body .header label.ingredients > span:nth-of-type(1),
.modal-content .modal-body .ingredients-container label.ingredients > span:nth-of-type(1) {
  flex: 1;
  font-family: var(--font_family_2);
}
.modal-content .modal-body .header .head-info > span:nth-of-type(2),
.modal-content .modal-body .ingredients-container .head-info > span:nth-of-type(2),
.modal-content .modal-body .header label.ingredients > span:nth-of-type(2),
.modal-content .modal-body .ingredients-container label.ingredients > span:nth-of-type(2),
.modal-content .modal-body .header .head-info > small,
.modal-content .modal-body .ingredients-container .head-info > small,
.modal-content .modal-body .header label.ingredients > small,
.modal-content .modal-body .ingredients-container label.ingredients > small {
  flex: 0 0 100px;
  text-align: center;
}
.modal-content .modal-body .header .head-info ipnut,
.modal-content .modal-body .ingredients-container .head-info ipnut,
.modal-content .modal-body .header label.ingredients ipnut,
.modal-content .modal-body .ingredients-container label.ingredients ipnut {
  height: 20px;
  width: 20px;
  min-width: 20px;
  margin-top: 0;
  border: 1px solid rgba(134, 134, 134, 0.2);
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 1px 2px #80574d 1a;
  cursor: pointer;
}
.modal-content .modal-body .header .head-info,
.modal-content .modal-body .ingredients-container .head-info {
  font-weight: bold;
  font-size: larger;
}
.modal-content .modal-body .header .head-desc,
.modal-content .modal-body .ingredients-container .head-desc {
  padding: 1vh 0 0 0;
}
.modal-content .modal-footer {
  padding-top: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-content .modal-footer #add-to-cart-form,
.modal-content .modal-footer .button-finish {
  width: auto;
  /*margin: 0 auto;*/
}
.modal-content .modal-footer #add-to-cart-form > button,
.modal-content .modal-footer .button-finish > button,
.modal-content .modal-footer #add-to-cart-form > a,
.modal-content .modal-footer .button-finish > a {
  color: var(--color_1);
  font-size: large;
  padding: 4px 6px;
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  border: 2px solid var(--color_green);
  border-radius: 10px;
  background: var(--background_color_5);
  cursor: pointer;
  text-decoration: none;
}
.modal-content .modal-footer #add-to-cart-form > button:hover,
.modal-content .modal-footer .button-finish > button:hover,
.modal-content .modal-footer #add-to-cart-form > a:hover,
.modal-content .modal-footer .button-finish > a:hover {
  color: var(--color_4);
  background: var(--color_green);
}
.modal-content > div::-webkit-scrollbar {
  width: 10px;
}
.modal-content > div::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}
.modal-content > div::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.close-modal {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: var(--background_color_5);
  color: var(--color_1);
  border-radius: 50%;
  border: 2px solid var(--color_2);
  font-size: 120%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.close-modal:hover {
  background: var(--background_color_5);
  color: var(--color_1);
  transition: all 0.3s ease-in-out;
}
.shop-cart-button {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 2vh;
  right: 1vw;
  z-index: 9999;
}
.shop-cart-button #ShopCart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  border-radius: 10px;
  border: 2px solid var(--color_green);
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  background: var(--background_color_5);
  padding: 4px 10px;
  color: var(--color_1);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}
.shop-cart-button #ShopCart:hover {
  color: var(--color_4);
  background: var(--color_green);
}
.cart-item > .item-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-item > .item-info > h4 {
  flex: 1;
}
.cart-item > .item-info > .quantity-control-cart {
  flex: 0 0 100px;
  text-align: center;
}
.cart-item > .item-price {
  text-align: right;
  padding-right: 10px;
}
/* CONTROLS */
.modal-footer .quantity-input-group,
.cart-item > .item-info .quantity-control-cart,
.order-summary-container .quantity-control {
  display: flex;
  justify-content: right;
  gap: 0;
  height: 34px;
  overflow: hidden;
  color: whitesmoke;
  font-weight: bold;
  margin-right: 10px;
}
.modal-footer .quantity-input-group > button,
.cart-item > .item-info .quantity-control-cart > button,
.order-summary-container .quantity-control > button,
.modal-footer .quantity-input-group > input[type=number],
.cart-item > .item-info .quantity-control-cart > input[type=number],
.order-summary-container .quantity-control > input[type=number],
.modal-footer .quantity-input-group > .item-quantity,
.cart-item > .item-info .quantity-control-cart > .item-quantity,
.order-summary-container .quantity-control > .item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: default;
}
.modal-footer .quantity-input-group > input[type=number],
.cart-item > .item-info .quantity-control-cart > input[type=number],
.order-summary-container .quantity-control > input[type=number],
.modal-footer .quantity-input-group > .item-quantity,
.cart-item > .item-info .quantity-control-cart > .item-quantity,
.order-summary-container .quantity-control > .item-quantity {
  padding: 0 0;
  text-align: center;
  font-size: large;
  max-width: 26px;
  z-index: 9;
  background: var(--background_color_5) !important;
  color: var(--color_1) !important;
  border: transparent;
  -moz-appearance: textfield;
}
.modal-footer .quantity-input-group > input[type=number]::-webkit-outer-spin-button,
.cart-item > .item-info .quantity-control-cart > input[type=number]::-webkit-outer-spin-button,
.order-summary-container .quantity-control > input[type=number]::-webkit-outer-spin-button,
.modal-footer .quantity-input-group > .item-quantity::-webkit-outer-spin-button,
.cart-item > .item-info .quantity-control-cart > .item-quantity::-webkit-outer-spin-button,
.order-summary-container .quantity-control > .item-quantity::-webkit-outer-spin-button,
.modal-footer .quantity-input-group > input[type=number]::-webkit-inner-spin-button,
.cart-item > .item-info .quantity-control-cart > input[type=number]::-webkit-inner-spin-button,
.order-summary-container .quantity-control > input[type=number]::-webkit-inner-spin-button,
.modal-footer .quantity-input-group > .item-quantity::-webkit-inner-spin-button,
.cart-item > .item-info .quantity-control-cart > .item-quantity::-webkit-inner-spin-button,
.order-summary-container .quantity-control > .item-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modal-footer .quantity-input-group > input[type=number]:focus,
.cart-item > .item-info .quantity-control-cart > input[type=number]:focus,
.order-summary-container .quantity-control > input[type=number]:focus,
.modal-footer .quantity-input-group > .item-quantity:focus,
.cart-item > .item-info .quantity-control-cart > .item-quantity:focus,
.order-summary-container .quantity-control > .item-quantity:focus {
  outline: none;
}
.modal-footer .quantity-input-group > button,
.cart-item > .item-info .quantity-control-cart > button,
.order-summary-container .quantity-control > button {
  z-index: 10;
  padding: 0 5px;
  background: var(--background_color_5);
  border: transparent;
  cursor: pointer;
}
.modal-footer .quantity-input-group > button img,
.cart-item > .item-info .quantity-control-cart > button img,
.order-summary-container .quantity-control > button img {
  height: 25px;
  opacity: 0.8;
}
.modal-footer .quantity-input-group > button:nth-of-type(1),
.cart-item > .item-info .quantity-control-cart > button:nth-of-type(1),
.order-summary-container .quantity-control > button:nth-of-type(1) {
  border-radius: 20px 0 0 20px;
}
.modal-footer .quantity-input-group > button:nth-of-type(2),
.cart-item > .item-info .quantity-control-cart > button:nth-of-type(2),
.order-summary-container .quantity-control > button:nth-of-type(2) {
  border-radius: 0 20px 20px 0;
}
.item-info .btn-remove-item {
  padding: 0 0;
  background: var(--background_color_5);
  border: transparent;
  cursor: pointer;
  border-radius: 50%;
}
.item-info .btn-remove-item img {
  height: 20px;
  opacity: 0.8;
}
/* ALERTS */
.growl-alert {
  position: fixed;
  bottom: 60px;
  right: 2vw;
  z-index: 1050;
  padding: 15px 25px;
  max-width: calc(100% - 4vw - 50px);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.growl-alert.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.growl-alert.success {
  background-color: var(--color_green);
}
.growl-alert.success .alert-icon {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20viewBox%3D%220%200%20640%20640%22%3E%3Cpath%20d%3D%22M530.8%20134.1C545.1%20144.5%20548.3%20164.5%20537.9%20178.8L281.9%20530.8C276.4%20538.4%20267.9%20543.1%20258.5%20543.9C249.1%20544.7%20240%20541.2%20233.4%20534.6L105.4%20406.6C92.9%20394.1%2092.9%20373.8%20105.4%20361.3C117.9%20348.8%20138.2%20348.8%20150.7%20361.3L252.2%20462.8L486.2%20141.1C496.6%20126.8%20516.6%20123.6%20530.9%20134z%22%2F%3E%3C%2Fsvg%3E');
}
.growl-alert.error {
  background-color: var(--color_red);
}
.growl-alert.error .alert-icon {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20viewBox%3D%220%200%20640%20640%22%3E%3Cpath%20d%3D%22M183.1%20137.4C170.6%20124.9%20150.3%20124.9%20137.8%20137.4C125.3%20149.9%20125.3%20170.2%20137.8%20182.7L275.2%20320L137.9%20457.4C125.4%20469.9%20125.4%20490.2%20137.9%20502.7C150.4%20515.2%20170.7%20515.2%20183.2%20502.7L320.5%20365.3L457.9%20502.6C470.4%20515.1%20490.7%20515.1%20503.2%20502.6C515.7%20490.1%20515.7%20469.8%20503.2%20457.3L365.8%20320L503.1%20182.6C515.6%20170.1%20515.6%20149.8%20503.1%20137.3C490.6%20124.8%20470.3%20124.8%20457.8%20137.3L320.5%20274.7L183.1%20137.4z%22%2F%3E%3C%2Fsvg%3E');
}
.growl-alert.info {
  background-color: var(--color_blue);
}
.growl-alert.info .alert-icon {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20viewBox%3D%220%200%20640%20640%22%3E%3Cpath%20d%3D%22M320%20496C342.1%20496%20360%20513.9%20360%20536C360%20558.1%20342.1%20576%20320%20576C297.9%20576%20280%20558.1%20280%20536C280%20513.9%20297.9%20496%20320%20496zM320%2064C346.5%2064%20368%2085.5%20368%20112C368%20112.6%20368%20113.1%20368%20113.7L352%20417.7C351.1%20434.7%20337%20448%20320%20448C303%20448%20289%20434.7%20288%20417.7L272%20113.7C272%20113.1%20272%20112.6%20272%20112C272%2085.5%20293.5%2064%20320%2064z%22%2F%3E%3C%2Fsvg%3E');
}
/* Styly pro ikony (beze změny) */
.alert-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* ORDER PAGE */
main.order-page {
  margin-bottom: 5vh;
}
main.order-page .autocomplete-container {
  margin-left: 0%;
  width: 100%;
}
main.order-page .autocomplete-container > ul {
  margin-top: 35px;
}
main.order-page .page-title {
  text-align: center;
  color: var(--color_2);
  margin-bottom: 30px;
}
main.order-page .order-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  main.order-page .order-grid {
    grid-template-columns: 1fr;
  }
}
main.order-page .order-form-container,
main.order-page .order-summary-container {
  padding: 20px;
  background: var(--background_color_2);
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
  border-radius: 8px;
}
main.order-page .order-form-container .summary-total,
main.order-page .order-summary-container .summary-total {
  margin-bottom: 20px;
}
main.order-page .order-form-container .price-list-name,
main.order-page .order-summary-container .price-list-name {
  margin-top: 15px;
}
main.order-page .order-form-container .price-list-item,
main.order-page .order-summary-container .price-list-item {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px dashed var(--color_1);
}
main.order-page .order-form-container .price-list-item > div:nth-of-type(1),
main.order-page .order-summary-container .price-list-item > div:nth-of-type(1) {
  background: var(--background_color_5);
  display: flex;
  flex: 0 0 85px;
  flex-direction: column-reverse;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  text-align: center;
  padding: 10px;
  gap: 10px;
}
main.order-page .order-form-container .price-list-item > div:nth-of-type(2),
main.order-page .order-summary-container .price-list-item > div:nth-of-type(2) {
  flex: 0 0 calc(100% - 125px);
  display: flex;
  flex-direction: column;
  padding: 10px;
}
main.order-page .order-form-container .price-list-item:first-of-type,
main.order-page .order-summary-container .price-list-item:first-of-type {
  border-top: 1px dashed var(--color_1) !important;
}
main.order-page .form-block {
  margin-bottom: 30px;
}
main.order-page .block-title {
  font-size: 1.5rem;
  color: var(--color_2);
  border-bottom: 2px solid var(--color_2);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
main.order-page .form-group {
  margin-bottom: 15px;
}
main.order-page .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
main.order-page .form-group input[type="text"],
main.order-page .form-group input[type="tel"],
main.order-page .form-group input[type="email"],
main.order-page .form-group input[type="date"],
main.order-page .form-group input[type="time"],
main.order-page .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
main.order-page .delivery-options,
main.order-page .payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main.order-page .delivery-option-text,
main.order-page .payment-option-text {
  font-weight: normal;
}
main.order-page #cash-card-options,
main.order-page #scheduled-time-fields {
  padding-left: 25px;
}
main.order-page #cash-card-options .sub-option,
main.order-page #scheduled-time-fields .sub-option {
  display: block;
  margin-top: 5px;
}
main.order-page .submit-button {
  width: 100%;
  padding: 15px;
  background: var(--color_2);
  color: var(--color_1);
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
main.order-page .submit-button:hover {
  /*background: darken(var(--color_2), 10%);*/
}
main.order-page .order-summary-items {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
main.order-page .summary-item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color_1);
}
main.order-page .summary-item:last-of-type {
  border-bottom: none;
}
main.order-page .summary-item > div.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  /* Zajistí, že zabere celou šířku rodiče */
}
main.order-page .summary-item > div.flex-row .item-name {
  flex: 1;
  font-weight: bold;
}
main.order-page .summary-item > div.full-width-div {
  width: 100%;
  text-align: right;
}
main.order-page .summary-item .item-price {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
main.order-page .item-ingredients {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  color: #555;
}
main.order-page .item-ingredients li {
  margin-left: 20px;
}
main.order-page .summary-total .total-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
main.order-page .summary-total .final-total {
  font-size: 1.2rem;
  font-weight: bold;
  border-top: 2px solid var(--color_2);
  padding-top: 10px;
  margin-top: 10px;
}
.miss-butt {
  margin: 15px 15px 5px;
}
span.missing {
  display: block;
  padding: 5px 15px;
  border-radius: 0px;
  max-width: 90%;
  transition: all 0.4s ease;
}
span.missing:hover {
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: default;
}
.admin-search {
  position: relative;
  overflow: hidden;
  width: 307px;
  margin: 0 auto;
  min-height: 32px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #e8e8e8;
}
#pager {
  background: rgba(225, 231, 228, 0.2);
  text-align: center;
  margin: 0 auto 2% auto;
  display: table;
  border-radius: 0px;
  cursor: default;
  font-size: 0;
}
#pager a {
  text-decoration: none;
}
.pagingCell {
  padding: 10px 17px;
  border-radius: 0px;
  font-size: 18px;
  margin: 0;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  color: var(--color_7);
  opacity: 1;
  transition: all 0.4s linear;
}
.pagingCell:hover {
  background: #31241C;
  color: var(--color_8);
  transition: all 0.4s linear;
}
.points {
  padding: 10px 17px;
  border-radius: 0px;
  font-size: 18px;
  margin: 0;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  color: var(--color_7);
  opacity: 1;
  transition: all 0.4s linear;
  opacity: 0.5;
}
.currentPage {
  padding: 10px 17px;
  border-radius: 0px;
  font-size: 18px;
  margin: 0;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  color: var(--color_7);
  opacity: 1;
  background: #31241C;
  color: var(--color_8);
  transition: all 0.4s linear;
}
ul.faq {
  list-style: none;
  padding: 0;
}
ul.faq li {
  list-style: none;
  padding: 0;
}
.faq li {
  padding: 0px;
}
.ac-text-show {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.ac-text-show::after {
  content: '';
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  top: 50%;
  right: 15px;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent var(--color_1);
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.5s ease;
}
.ac-text-hide {
  overflow-wrap: break-word;
  display: none;
}
.ac-text-show[data-rotate="true"]::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
#accordion {
  margin-bottom: 2vh;
  border-bottom: 1px solid var(--color_2);
}
#accordion .title {
  cursor: pointer;
}
.facebook-feed {
  /*max-width: 800px;*/
  margin: 0 auto 40px;
  /*padding: 0 15px;*/
}
.fb-post-item {
  margin-bottom: 4vh;
  background: var(--background_color_2);
  box-shadow: var(--color_1rgb) 0px 1px 1px, var(--color_1rgb) 0px 2px 2px, var(--color_1rgb) 0px 4px 4px, var(--color_1rgb) 0px 8px 8px, var(--color_1rgb) 0px 16px 16px;
}
.fb-post-date {
  color: var(--color_2);
  font-family: var(--font_family_2);
  background: var(--background_color_5);
  padding: 5px 10px;
  margin: 0 !important;
  font-size: larger;
  font-weight: bold;
}
.fb-post-image {
  margin-bottom: 15px;
  text-align: center;
}
.fb-post-image img {
  max-width: 100%;
  max-height: 400px;
  /*display: block;*/
}
.fb-post-text {
  padding: 10px 15px;
  margin: 0 !important;
}
.fb-post-info {
  font-size: 13px;
  padding: 5px 10px;
  text-align: right;
}
.fb-post-info a {
  text-decoration: none;
  font-weight: bold;
}
.cookie-banner {
  background-color: #333333;
  border-radius: 8px;
  bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  padding: 20px;
  position: fixed;
  right: 20px;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
  width: 300px;
  z-index: 1000;
}
.cookie-banner.visible {
  transform: translateX(0);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner .cookie-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-banner .cookie-content p {
  font-size: 14px;
  margin: 0;
}
.cookie-banner .cookie-content a {
  color: #61dafb;
}
.cookie-banner .cookie-content #cookie-accept-btn {
  background-color: #61dafb;
  border-radius: 5px;
  border: none;
  color: #333333;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
}
#footer {
  background-color: var(--background_color_5);
  min-height: 5vh;
  margin: 0;
  padding: 0vh 0;
}
#footer a {
  color: var(--color_1);
  text-decoration: underline;
}
#footer a:hover {
  text-decoration: none;
}
.main-footer {
  text-align: center;
  margin: 0 auto;
  padding: 2vh 10vw;
}
.main-footer > ul.content {
  margin: 0;
  padding: 0 0 1vh 0;
}
.main-footer > ul.content li {
  display: flex;
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
}
.main-footer > ul.content li iframe {
  width: 100%;
  height: 450px;
}
.main-footer > ul.content li p:nth-of-type(1) {
  font-size: large;
}
.main-footer > ul.content li:nth-of-type(1) p {
  width: 100%;
  text-align: left;
  display: block;
}
.main-footer > ul.content li:nth-of-type(1) a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 27%;
  padding: 2%;
  margin: 2% 1%;
  width: auto;
}
.main-footer > ul.content li:nth-of-type(1) a img {
  height: 40px;
}
.main-footer > ul.content li:nth-of-type(2) p {
  text-align: left;
  display: block;
  width: 100%;
}
.main-footer > ul.content li:nth-of-type(3) p {
  width: 100%;
  text-align: left;
  display: block;
}
.main-footer > ul.content li:nth-of-type(3) a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 27%;
  padding: 2%;
  margin: 2% 1%;
}
.main-footer > ul.content li:nth-of-type(3) a img {
  width: 100%;
}
.main-footer > .copyright {
  text-align: center;
  margin: 0;
}
.main-footer > .copyright > ul.content {
  margin: 0;
  padding: 0;
}
.main-footer > .copyright a.login {
  text-decoration: none !important;
}
.footer-clear {
  min-width: 100%;
  min-height: 100%;
}
.copyright > ul.content {
  display: flex;
  flex-wrap: wrap;
}
.copyright > ul.content li {
  width: 46%;
  width: 50%;
  margin: 0;
  list-style: none;
}
.copyright > ul.content li:nth-of-type(1) {
  justify-content: left;
}
.copyright > ul.content li:nth-of-type(2) {
  justify-content: right;
}
@media (max-height: 480px) {
  ul.gallery-list li {
    height: 80vh;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  ul.gallery-list {
    flex-direction: row;
  }
  ul.gallery-list li {
    height: auto;
    width: 100%;
  }
  ul.gallery-list li img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
/*

// Proměnné
--color_primary: #ffc107;
--color_bg_dark: #1a1a1a;
--color_text: #ffffff;
--color_danger: #dc3545;
--color_success: #28a745;

// Společné pro triggery
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    border: 1.5px solid #fff;
    &.online { background: var(--color_success); }
    &.offline { background: var(--color_danger); }
}

// PC Trigger (Štítek na boku)
.opening-hours-trigger-pc {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 999;
    background: var(--color_bg_dark);
    color: var(--color_primary);
    padding: 15px 10px;
    cursor: pointer;
    border: 1px solid var(--color_primary);
    border-right: none;
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;

    span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    &:hover {
        background: var(--color_primary);
        color: #000;
        padding-right: 20px;
    }

    .status-dot { bottom: 10px; left: 50%; transform: translateX(-50%); }
}

// Mobil Trigger (FAB)
.opening-hours-trigger-mobile {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 55px;
    height: 55px;
    background: var(--color_primary);
    color: #000;
    border-radius: 50%;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    font-size: 24px;

    .status-dot { top: 2px; right: 2px; width: 14px; height: 14px; }
}

// Modal
.modal-oh {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);

    &-content {
        background-color: var(--color_bg_dark);
        margin: 10% auto;
        padding: 25px;
        border: 1px solid var(--color_primary);
        width: 90%;
        max-width: 500px;
        border-radius: 15px;
        position: relative;
        color: var(--color_text);
    }

    &-close {
        position: absolute;
        right: 20px;
        top: 15px;
        font-size: 28px;
        cursor: pointer;
        color: var(--color_primary);
    }
}

.oh-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;

    .oh-row {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: rgba(255,255,255,0.03);
        border-radius: 8px;
        transition: transform 0.2s;

        &.oh-header {
            background: transparent;
            font-weight: bold;
            color: var(--color_primary);
            border-bottom: 2px solid var(--color_primary);
            border-radius: 0;
        }

        &.is-today {
            background: rgba(var(--color_primary, 0.15);
            border: 1px solid var(--color_primary);
            transform: scale(1.02);
            .day-name { color: var(--color_primary); font-weight: bold; }
        }

        &.closed {
            opacity: 0.5;
            .status-text { color: var(--color_danger); font-weight: bold; flex: 2; text-align: center; }
        }
    }

    .oh-cell {
        flex: 1; // Každá buňka zabere stejné místo
        display: flex;
        align-items: center;

        &.day-name {
            font-size: 1.1rem;
            .today-label {
                font-size: 0.7rem;
                background: var(--color_primary);
                color: #000;
                padding: 2px 6px;
                border-radius: 4px;
                margin-left: 10px;
                text-transform: uppercase;
            }
        }
    }

    // Mobilní specifika pro Flexbox
    @media (max-width: 576px) {
        .oh-row:not(.oh-header) {
            flex-wrap: wrap; // Na velmi malých displejích povolí zalomení
            padding: 15px;
        }
        
        .mobile-label {
            display: inline-block;
            font-size: 0.8rem;
            color: #888;
            margin-right: 5px;
        }
        
        .time-range, .delivery-status {
            flex: 1 0 50%; // Na mobilu se dají vedle sebe pod název dne
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .day-name {
            flex: 1 0 100%; // Název dne zabere celý řádek
            border-bottom: 1px solid #333;
            padding-bottom: 5px;
        }
    }
}

.emergency-info-box {
    background: var(--color_danger);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

*/
