.js-category:not(.active) {
  display: none;
}
body {
  background: url(https://www.goodlunch.cz/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fbg.ffd737a1.webp&w=1920&q=75) repeat-x;
  background-color: #192234;
  color: #fff;
  font-size: 16px;
  font-family: Arial, ans-serif;
  padding: 0 20px 0 20px;
}
h1 {
  color: #d49e68;
  font-size: 30px;
  text-align: center;
}
h2 {
  color: #d49e68;
  font-size: 25px;
}
ul#categories {
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #d49e68;
}
ul#categories li {
  list-style: none;
  display: inline-block;
}
ul#categories li a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
ul#categories li.active a {
  color: #d49e68;
}
#frm-orderForm {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.msg {
  color: salmon;
  font-size: 0.9em;
  display: block;
  margin: 0;
}
.msg a, .msg a:visited, .msg a:active, .msg a:focus {
  color: inherit;
}
.msg a:hover {
  text-decoration: none;
}
.delivery-time-box .msg {
  margin-top: 15px;
}
.items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.js-product.is-hidden {
  display: none;
}
.item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid #534b49;
  text-align: center;
  border-radius: 30px;
  padding: 0 0 100px 0;
  position: relative;
}
.item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  box-sizing: border-box;
  border: 5px solid #111722;
  border-radius: 30px;
}
.item h3 {
  font-size: 20px;
  padding: 10px;
}
.item p {
  padding: 10px;
}
.quantity-control {
  white-space: nowrap;
}
.item .quantity-control {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
.item p.price {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.quantity-control input {
  background-color: #111722;
  border: 1px solid #d49e68;
  border-radius: 20px;
  color: #d49e68;
  padding: 5px;
  text-align: center;
  font-size: 20px;
  width: 60px;
}
.quantity-control button {
  background-color: #111722;
  border: 1px solid #d49e68;
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  text-align: center;
  font-size: 20px;
  width: 36px;
  cursor: pointer;
}
.quantity-control button:hover {
  color: #d49e68;
}
.cart {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.cart-inner {
  display: contents;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-item > td {
  padding: 10px 5px;
  border-bottom: 1px solid #534b49;
  vertical-align: middle;
}
.cart-item:last-child > td {
  border-bottom: 0;
}
.cart-item__image {
  width: 0px;
}
.cart-item__image img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.cart-item__name {
  font-weight: 600;
}
.cart-item__total {
  font-weight: 600;
  text-align: right;
}
.cart-item .cart-item__actions {
  width: 0px;
  padding-left: 15px;
}
.cart-item__label {
  display: none;
}
.cart-item__actions button {
  appearance: none;
  background: unset;
  color: #fff;
  padding: 5px;
  display: inline-block;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}
.cart-item__actions button:hover {
  text-decoration: underline;
}
.msg.--closed {
  color: crimson;
}
.logo {
  float: left;
}
.logo img {
  width: 180px;
  height: auto;
}
@media (max-width: 767px) {
  .cart-table {
    display: block;
  }
  .cart-table td {
    text-align: center;
  }
  .cart-table tbody {
    display: contents;
  }
  .cart-item {
    display: flex;
    flex-flow: row wrap;
    border-bottom: 1px solid #534b49;
    gap: 10px 10px;
    padding: 10px 0
  }
  .cart-item:last-child {
    border-bottom: 0;
  }
  .cart-item > td {
    border-bottom: 0;
    padding: 0;
  }
  .cart-item__image {
    width: 100%;
  }
  .cart-item__name {
    text-align: center;
    width: 100%;
    /*align-self: center;
  flex: 1 1 calc(100% - 76px);*/
    padding-left: 5px;
  }
  .cart-item__amount {
    flex: 0 0 100%;
  }
  .cart-item__total {
    margin-left: auto;
  }
  .cart-item .cart-item__actions {
    width: auto;
  }
  .cart-item__label {
    display: block;
    text-align: start;
    font-weight: normal;
    font-size: 0.85em;
  }
}
.price {
  text-align: center;
  padding: 30px;
  font-size: 20px;
}
.price .js-total-price-wovat {
  margin-top: 5px;
  font-size: 16px;
}
.after-delivery-time.is-inactive {
  pointer-events: none;
}
.after-delivery-time.is-inactive {
  filter: blur(3px);
  position: relative;
}
.order-box {
  text-align: center;
  background: #1f293d;
  padding: 40px;
  border: 1px solid #d49e68;
  max-width: 600px;
  margin: auto;
  border-radius: 30px;
  margin-bottom: 40px;
}
.order-box :is(input[type=text], input[type=number], input[type=date], input[type=password], input[type=email], select) {
  text-align: center;
  background: #111722;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #3c3531;
  max-width: 100%;
  margin-top: 5px;
  border-radius: 10px;
  width: 200px;
}
.order-box input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.order-box textarea {
  text-align: center;
  background: #111722;
  color: #fff;
  padding: 40px;
  border: 1px solid #3c3531;
  width: 100%;
  margin: auto;
  margin-top: 5px;
  border-radius: 20px;
}
.order-box button[type="submit"] {
  background-color: #d49e68;
  border: 0px;
  color: #111722;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  width: 300px;
  cursor: pointer;
  margin: 30px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
}
.tar {
  text-align: right;
}
#frm-signOutForm {
  display: inline-block;
}
#frm-signOutForm button {
  background: #fff;
  color: #000;
  border-radius: 5px;
  border: 0px;
  padding: 2px 5px;
  text-decoration: none;
  font-size: 16px;
  margin-left: 20px;
}
a.btnlink {
  background: #fff;
  color: #000;
  border-radius: 5px;
  border: 0px;
  padding: 3px 5px;
  text-decoration: none;
  font-size: 16px;
  margin-left: 20px;
}
.quick-date-btns {
  display: block;
}
.quick-date-btns .btn {
  background: #fff;
  color: #000;
  border-radius: 5px;
  border: 0px;
  padding: 3px 5px;
  text-decoration: none;
  font-size: 16px;
  margin: 10px 10px 0 10px;
  cursor: pointer;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.has-image {
  position: relative;
}
.item__flags {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 110px;
  text-align: left;
}
.flag {
  width: 50px;
  height: 50px;
  background-size: 50px 50px !important;
  margin: 0 8px 8px 0;
  display: inline-block;
}
.flag span {
  text-indent: -99999px;
  display: block;
}
.flag.flag-vegetarianske {
  background: url(../images/ivegetarian.png) no-repeat;
}
.flag.flag-veganske {
  background: url(../images/ivegan.png) no-repeat;
}
.flag.flag-bezlaktozove {
  background: url(../images/imilk.png) no-repeat;
}
.flag.flag-bezlepkove {
  background: url(../images/igf.png) no-repeat;
}
.white {
  color: #fff;
}
.thx {
  text-align: center;
}
@media (max-width: 1024px) {
  .items {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 768px) {
  .items {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.datepicker {
  color: #363636;
  border: 1px solid #3c3531;
}
.datepicker-cell.day.closed {
  color: crimson;
}
.datepicker-cell.day.closed:is(.prev,.next) {
  color: salmon;
}
.sign-in-footer {
  text-align: center;
}
.sign-in-footer a {
  display: block;
  color: #fff;
  text-decoration: underline;
}
.sign-in-footer a:hover {
  text-decoration: none;
}
