/** ---------- colors ---------- **/
/** ---------- height ---------- **/
/** includes **/
/** ---------- colors ---------- **/
/** ---------- height ---------- **/
.order_view {
  background-color: #1c3f5e;
}
.order_view .box-suite-time {
  background-color: #617c94;
  color: white;
  top: -20px;
}
.order_view .btn-done {
  position: absolute;
  right: 1.5rem;
  top: -20px;
  z-index: 10;
  clip: auto;
  padding: 8px;
  background-color: #617c94;
  border-radius: 0.25rem;
}
.order_view .btn-done svg {
  fill: white;
  width: 37px;
  height: 37px;
}
.order_view .btn-info {
  background-color: #617c94;
  border-color: #617c94;
  color: white;
}

:root {
  --dark-blue: #1c3f5e;
  --mid-blue: rgba(28, 63, 94, 0.5);
  --light-blue: #617c94;
  --gold: #d9b341;
  --footer-height: 8rem;
}

body {
  font-family: Helvetica, sans-serif;
}
body h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
body h1.big {
  font-size: 5rem;
}
body h2 {
  font-size: 2rem;
  color: white;
}
body h3 {
  font-size: 1.5rem;
  color: white;
}
body p {
  font-size: 1.5rem;
  margin-bottom: 0;
}
body .bg-blue {
  background-color: #1c3f5e;
}
body .text-black {
  color: #3c3c3c;
}
body .box-price {
  left: 25px;
  right: 25px;
  bottom: 25px;
}
body .btn-secondary {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #617c94;
  border: none;
  border-radius: 4rem;
  padding: 1rem 3.7rem;
  font-size: 2rem;
  white-space: nowrap;
  z-index: 10;
  align-content: center;
  line-height: 1;
}
body .btn-secondary:hover {
  background-color: #d9b341;
}
body .btn-warning {
  background-color: #d9b341;
  border: none;
  color: white;
}
body .btn-back {
  color: white;
  position: relative;
  background-color: #617c94;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 2rem 0.5rem 3rem;
  margin-right: 1rem;
  font-size: 1.2rem;
  width: auto;
  text-decoration: none;
}
body .btn-back svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
body .btn-back:hover {
  cursor: pointer;
}
body .btn-back:hover svg {
  left: 10px;
}
body .btn-delete {
  color: white;
  position: relative;
  background-color: #617c94;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 3rem 0.5rem 2rem;
  margin-right: 1rem;
  font-size: 1.2rem;
  width: auto;
  text-decoration: none;
}
body .btn-delete svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
body .btn-delete:hover {
  cursor: pointer;
}
body .btn-delete:hover svg {
  top: 47%;
}
body .btn-delete-product:hover {
  cursor: pointer;
}
body .btn-add {
  color: #d9b341;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: transform 0.1s ease-out;
}
body .btn-add:hover {
  color: #d9b341;
}
body .btn-add:active {
  transform: scale(0.9);
}
body .btn-quantity {
  background-color: white;
  border: none;
  color: #d9b341;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.1s ease-out;
}
body .btn-quantity.big {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}
body .btn-quantity:hover {
  color: #d9b341;
}
body .btn-quantity:active {
  transform: scale(0.9);
}
body .btn-close {
  width: 2rem;
  height: 2rem;
  background-size: 2rem;
  opacity: 0.8;
}
body .bg-primary {
  background-color: #1c3f5e !important;
}
body .bg-secondary {
  background-color: #617c94 !important;
}
body #product .col-4 {
  margin-bottom: 200px;
}
body #product .food-categories {
  display: flex;
  gap: 2rem;
  border: none;
  margin-bottom: 100px;
}
body #product .food-categories .nav-link {
  color: white;
  background-color: #617c94;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  margin-right: 1rem;
  font-size: 1.2rem;
}
body #product .food-categories .nav-link.active {
  border-radius: 2rem;
  background-color: #d9b341;
  outline: none;
}
body #product .food-item {
  background-color: #617c94;
  background-position: center;
  padding: 1rem;
  margin-top: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  place-items: center;
}
body #product .food-item h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
body #product .food-item p {
  font-size: 0.9rem;
  margin-bottom: 3rem;
}
body #product .food-image {
  width: 290px;
  height: 290px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  position: relative;
  top: -125px;
  margin-bottom: -50px;
}

.time-display {
  font-size: 4.2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  line-height: 1;
}

.nav-link {
  color: white !important;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0;
}

.cat-btn:hover {
  cursor: pointer;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 0;
}

.left-nav .nav-link.active {
  background-color: #1c3f5e;
}

.left-nav .nav-link:hover {
  background-color: rgba(28, 63, 94, 0.5);
  border: none;
}

.items .card {
  border: none;
  border-radius: 0;
  aspect-ratio: 1/0.8;
  overflow: visible;
}

.card-body {
  padding-bottom: 40px;
}

.image-placeholder {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/* ---------------------------------- */
.left-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: var(--footer-height);
  width: 25%;
  overflow-y: auto;
}

.main-content {
  height: calc(100vh - var(--footer-height));
  overflow-y: hidden;
}

.tab-content {
  height: 100%;
}

.tab-pane {
  height: 100%;
  overflow-y: auto;
  padding: 1rem 1rem var(--footer-height) 1rem;
}

/* Scrollbar styles for .tab-pane */
.tab-pane {
  scrollbar-width: thin;
  scrollbar-color: #1c3f5e #1c3f5e;
}

.tab-pane::-webkit-scrollbar {
  width: 10px;
}

.tab-pane::-webkit-scrollbar-track {
  background: #1c3f5e;
}

.tab-pane::-webkit-scrollbar-thumb {
  background-color: #1c3f5e;
  border-radius: 6px;
  border: 3px solid #1c3f5e;
}

/* ------------------------------------------- */
#foodTabContent {
  padding-top: 2rem;
}

/* footer */
/* Ensure the cart footer is above the scrollable content */
.cart-footer {
  height: var(--footer-height);
  z-index: 1000;
  background-color: #617c94 !important;
  align-content: center;
}

.settings-icon {
  width: 3rem;
  aspect-ratio: 1/1;
  filter: brightness(0) invert(1);
}

.process-flow {
  place-content: center;
  gap: 4rem;
}

.footer-btn {
  background-color: #d9b341;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.8rem 8rem 0.8rem 4rem;
  border-radius: 4rem;
  position: relative;
}

.footer-btn:hover {
  color: white;
}

.footer-btn .badge {
  background-color: white;
  color: #d9b341;
  font-size: 2rem;
  padding: 0.6rem 1.8rem;
  border-radius: 25px;
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}

.process-flow {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 4rem;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  white-space: nowrap;
}

.content-wrapper {
  padding-top: 1rem;
  padding-right: 20px;
}

.veen-spa-logo {
  height: 110px;
  position: relative;
  top: -1rem;
  right: -1rem;
}

.image-placeholder {
  background-image: url("../assets/img/thumb.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
  position: relative;
}

/* cart style */
#bestellung .items {
  overflow: hidden;
  gap: 2rem;
}

#bestellung .item-row {
  background-color: #617c94;
  display: flex;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
}

#bestellung .item-image {
  width: 10%;
  aspect-ratio: 1;
  position: relative;
  left: -45px;
  border-radius: 50%;
  display: flex;
  margin-right: 15px;
}

.cart-item-content {
  display: flex;
  flex-direction: row;
  width: 87%;
  align-items: center;
  min-width: 500px;
}

#bestellung .item-name {
  flex-grow: 1;
  color: white;
  width: fit-content;
}

#bestellung .item-quantity {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  width: fit-content;
}

#bestellung .quantity {
  margin: 0 24px;
  padding-top: 3px;
  color: white;
  width: fit-content;
}

#bestellung .item-price {
  font-weight: bold;
  min-width: 80px;
  text-align: right;
  color: white;
}

/* product-select-stage */
#ambiente .items {
  margin-top: 100px;
}

/* scroll */
.main-content {
  height: 100vh;
  overflow: hidden;
}

.tab-pane-content {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

/* Ensure the scrollbar doesn't affect layout */
.tab-pane-content {
  scrollbar-width: thin;
  scrollbar-color: #1c3f5e #1c3f5e;
}

/* Webkit browsers like Chrome, Safari */
.tab-pane-content::-webkit-scrollbar {
  width: 10px;
}

.tab-pane-content::-webkit-scrollbar-track {
  background: #1c3f5e;
}

.tab-pane-content::-webkit-scrollbar-thumb {
  background-color: #1c3f5e;
  border-radius: 6px;
  border: 3px solid #1c3f5e;
}

/*# sourceMappingURL=main.css.map */
