:root {
  --white-color: #c8c8c8;
  --primary-color: #ff8b00;
}

body {
  font-family: "peyda";
  background: #202020;
  background: #000;
}

a {
  color: var(--white-color);
}

svg {
  fill: #e5e5e5;
}

#menu-topbar {
  height: 50px;
  background: #202020;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  justify-content: flex-end;
}

.topbar-my-account {
  color: #cdcdcd;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.topbar-my-account svg {
  width: 20px;
  height: 20px;
  fill: #fdfdfd;
}

.price {
  font-family: "kalameh";
  font-weight: 300;
}

.burger-menu-button {
  display: none;
}

.burger-menu-button svg path {
  stroke: #ffffff;
  stroke-width: 1.8px;
}

/* menu header */
.menu-header {}

.header-top {
  display: flex;
  padding: 3rem 1.5rem 1rem;
  gap: 0.4rem;
  flex-direction: column;
  align-items: center;
}

.header-logo {
  width: 50%;
}

.header-logo img {
  width: 100%;
  filter: drop-shadow(0px -4px 8px #000000b8);
  width: 100%;
  padding: 1rem;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.header-logo img {
  border-radius: 1.2rem;
}

.header-intro {
  width: 90%;
}

.restaurant-name {
  font-size: 2rem;
  color: #cfcfcf;
  text-align: center;
}

.header-intro p {
  font-size: 0.9rem;
  color: #b5b5b5;
  text-align: justify;
}

/* Restaurant Status Styles */
.restaurant-status {
  display: flex;
  flex-direction: column;
  /* gap: 0.3rem; */
  margin-top: 0.8rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-indicator svg {
  flex-shrink: 0;
}

.status-open {
  color: #4caf50;
}

.status-closed {
  color: #f44336;
}

.working-hours {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.2rem;
}

.overview {
  margin-top: 4rem;
  color: var(--white-color);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overview__title {
  display: flex;
  gap: 0.4rem;
}

.overview__title svg {
  width: 20px;
  height: 20px;
  fill: #5e5e5e;
}

.menu-overview {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.menu-overview__title {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 0.3rem;
  justify-content: center;
}

.menu-overview__title svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.overview__categories {
  width: 100%;
  padding: 1rem 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  row-gap: 1rem;
}

.overview__category {
  /* width: calc((100% - 2rem) / 3); */
  width: calc((100% - 10%) / 3);
  max-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem;
  /* background: #363636; */
  border-radius: 1rem;
  cursor: pointer;
  padding-bottom: 0.2rem;
}

.overview__category__name,
.categories-nav__category__name {
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}

.overview__category img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.65rem;
  border: 2px solid #565656;
}

.overview__button {
  background: #363636;
  width: 90%;
  display: flex;
  justify-content: center;
  padding: 0.6rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.overview__category__name {
  color: var(--white-color);
}

.overview__button {
  color: var(--white-color);
}

#menu-wrapper {
  background-image: url("/img/wall8.jpg");
}

/* nav */
.categories-nav-container {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 8;
}

.categories-nav {
  display: flex;
  overflow-x: scroll;
  width: 100%;
  gap: 2rem;
  padding: 1rem 7%;
  flex-direction: row-reverse;
  margin-bottom: 4rem;
  background: #000000;
  position: relative;
  padding-top: 1.5rem;
  border-bottom: 3px solid #555555;
  box-shadow: 0 2px 20px 10px #000000ab;
  flex-direction: row;
}

.all-categories {
  position: absolute;
  background: #555555;
  top: 142px;
  right: 50%;
  z-index: 10;
  transform: translateX(50%);
  padding: 0.2rem 0.6rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  font-size: 0.8rem;
}

.categories-nav__category {
  transition: all 0.4s ease-in-out;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 0.2rem;
  filter: grayscale(0.3);
  opacity: 0.8;
}

.category-link-active {
  transform: scale(1.2);
  filter: grayscale(0);
  opacity: 1;
}

.categories-nav__category img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2rem;
  border: 2px solid #565656;
}

.category-link-active img {
  border: 2px solid #757575;
}

.categories-container {
  color: #fdfdfd;
  padding-bottom: 6rem;
}

.category-container {
  padding-top: 155px;
  margin-top: -155px;
}

.category__name {
  text-align: center;
  margin: 1.3rem;
  font-size: 1.3rem;
}

.category {
  padding: 6%;
  transition: all 0.4s ease-in-out;
  /* opacity: .6; */
}

.active-category {
  /* opacity: 1; */
}

.items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.item {
  padding: 1rem;
  border: 2px solid #ffffff14;
  border-radius: 1.5rem;
  background: #000000;
}

.item-top {
  display: flex;
  gap: 1rem;
}

.item__image {
  width: 40%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.item__image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* border-radius: 50%; */
  border-radius: 30%;
  aspect-ratio: 1 / 1;
}

.item__info {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item__name {
  font-weight: bold;
  font-size: 1.1rem;
}

.item__contents {
  font-size: 0.72rem;
  font-weight: normal;
  color: #dcdcdc;
  margin-top: 0.2rem;
}

.price-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
}

.item_price_value {
  font-size: 1rem;
}

.item__price__inner {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.item__price__toman svg {
  width: 19px;
  height: 19px;
  fill: #ffffff;
}

.add-item-button {
  font-family: "peyda";
  padding: 0.1rem 0.5rem;
  background: #ffffff;
  border: none;
  border-radius: 0.4rem;
  outline: none;
  cursor: pointer;
}

.item-variables {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid #ffffff30;
  margin-top: 0.9rem;
}

.variable {
  display: flex;
  justify-content: space-between;
}

.variable_price_value {
  font-size: 0.9rem;
}

.variable__name {
  font-size: 0.92rem;
  min-width: 30%;
}

.item__tag img {
  height: 20px;
}

.item__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
  color: #c7c7c7;
}

.item__tag {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.category-link-active {
  transform: scale(1.2);
  filter: grayscale(0);
  opacity: 1;
}

/* view item popup */
.view-item-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.313);
  z-index: 60;
  backdrop-filter: blur(6px);
  display: none;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.view-item {
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  width: 80%;
  position: fixed;
  top: 50%;
  background: #2d2d2d;
  right: 50%;
  transform: translate(50%, -50%);
  max-width: 350px;
  border-radius: 2rem;
  color: #e8e8e8;
  box-shadow: 0 0 40px 0px #00000070;
  border: 2px solid #434343;
  padding-bottom: 0.6rem;
  /* overflow-y: scroll; */
  max-height: 80vh;
}

.view-item__image {
  padding: 1rem 1rem 0rem;
}

.view-item__image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 3px 9px 3px #0000003d;
  max-height: 40vh;
  object-fit: cover;
}

.view-item__info {
  padding: 1rem;
  padding-top: 0;
}

.view-item__info__name {
  font-size: 1.2rem;
  padding: 1.2rem 0 0.1rem;
}

.view-item__info__contents {
  font-size: 0.9rem;
  color: #cccccc;
  text-align: justify;
}

.view-item__close {
  width: 35px;
  height: 35px;
  position: absolute;
  top: -46px;
  right: 20px;
  cursor: pointer;
}

.view-item__close svg {
  width: 100%;
  height: 100%;
  fill: #fdfdfd;
  filter: drop-shadow(0px 0px 6px #000);
}

.view-item__pricearea {
  text-align: center;
  display: flex;
  font-size: 1.3rem;
  gap: 0.2rem;
  justify-content: center;
}

.view-item__pricearea svg {
  width: 24px;
  height: 24px;
}

.view-item__action {
  padding: 0.5rem 0.7rem;
  justify-content: center;
  display: flex;
}

.view-item__action button {
  width: 100%;
  padding: 0.4rem;
  font-family: "peyda";
  border-radius: 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  border: navajowhite;
  outline: none;
}

.view-item__variables {
  padding: 0 1rem 1rem;
}

.view-item__variables .variable_price_value {
  font-size: 1rem;
}

.show-modal {
  /* transition: all .4s ease-in-out; */
  opacity: 1 !important;
  display: flex !important;
}

.show-modal .view-item {
  /* transform: translate(50%, calc(-50% - 50px)); */
  transform: translate(50%, -50%);
  /* transition: all .4s ease-in-out; */
}

.qty-control-container {
  display: flex;
  /* gap: .4rem; */
}

.qty-plus {
  padding: 0.4rem;
  width: 28px;
  height: 28px;
  background-image: url(/img/plus3.png);
  background-size: 18px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

.qty-minus {
  padding: 0.4rem;
  width: 28px;
  height: 28px;
  background-image: url(/img/minus.png);
  background-size: 18px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

.qty-value {
  font-size: 1.2rem;
  margin-top: 3px;
}

.single-price {
  border-top: 1px solid #ffffff30;
  margin-top: 0.5rem;
}

/* bottom navbar */
.bottom-navbar {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 0);
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 50;
  border-top: 4px solid #303030;
  /* box-shadow: 0 -3px 20px -2px #000000; */
}

.bottom-nav {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.3rem;
  gap: 0.35rem;
  justify-content: flex-end;
  cursor: pointer;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.bottom-nav__icon {
  height: 60%;
}

.bottom-nav__icon img,
.bottom-nav__icon svg {
  height: 100%;
  max-width: 24px;
  fill: #e2e2e2;
}

.restaurant-logo {
  border-radius: 20%;
}

.restaurant-logo img {
  background: #fdfdfd;
}

.bottom-nav__anchor {
  font-size: 0.75rem;
  text-align: center;
  line-height: 0.7;
  color: #dfdfdf;
}

.orders-icon {
  width: 53px;
  background: #f7f7f7;
  height: 53px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -23px;
  transition: all 0.3s ease-in-out;
}

#waiter-nav .bottom-nav__icon img {
  filter: invert(1);
  max-width: 32px;
}

.orders-icon svg {
  fill: #161616;
  max-width: 28px;
  transition: all 0.3s ease-in-out;
}

.bottom-nav-orders-anchor2 {
  display: none;
}

.orders-nav__active .orders-icon {
  background: #ff6c00;
}

.orders-nav__active svg {
  fill: #eaeaea;
}

.orders-nav__active .bottom-nav-orders-anchor1 {
  display: none;
}

.orders-nav__active .bottom-nav-orders-anchor2 {
  display: block;
  font-weight: bold;
}

.cart-items-count {
  /* position: absolute; */
  width: 18px;
  background: #f2f2f2;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  top: 30px;
  right: -5px;
  font-size: 0.75rem;
  color: #363636;
  padding-top: 2px;
  display: none;
  transition: all 0.3s ease-in-out;
  font-family: "kalameh";
}

.orders-nav__active .cart-items-count {
  display: flex;
}

.open-orders-count {
  width: 18px;
  background: #f2f2f2;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  top: 30px;
  right: -5px;
  font-size: 0.75rem;
  color: #363636;
  padding-top: 2px;
  display: none;
  transition: all 0.3s ease-in-out;
  font-family: "kalameh";
}

.sector {
  width: 100%;
  height: 100lvh;
  background: #2e2e2e;
  position: fixed;
  top: 115%;
  z-index: 30;
  transition: all 0.4s ease-out;
  color: #ececec;
}

.active-sector {
  top: 0;
}

.back {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.back svg {
  width: 20px;
  height: 20px;
  fill: #e2e2e2;
}

.sector-header {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem;
  border-bottom: 1px solid #ffffff3d;
}

.sector__title {
  font-size: 1.1rem;
}

.sector-container {
  padding: 1rem;
  overflow-y: auto;
  height: inherit;
  padding-bottom: 11rem;
}

.order-place {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  padding: 1rem 0.2rem;
  gap: 0.5rem;
}

.order-place__body {
  display: flex;
  /* align-items: center; */
  gap: 1rem;
  margin-top: 0.6rem;
  width: 100%;
  justify-content: unset;
}

.order-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.4rem;
  border-radius: 1rem;
  border: 3px solid #ffffff1a;
  border-radius: 0.8rem;
  background: #414141;
  width: 100px;
  gap: 0.3rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
}

.order-place__icon-img {
  width: 50px;
  filter: invert(0.9);
}

.order-type input[type="radio"] {
  display: none;
}

.order-type:has(input[type="radio"]:checked) {
  border-color: #ff9900;
  background: #ffaf0014;
}

.order-place__icon {
  width: 60px;
  background: #4e4e4e;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}

.order-place__icon img {
  width: 80%;
  filter: invert(0.9);
}

.order-place__place {
  font-size: 0.9rem;
  font-family: "kalameh";
}

.change-place-button {
  background: none;
  border: none;
  font-family: "peyda";
  color: #ffb800;
  cursor: pointer;
  padding: 0.3rem 0;
  font-size: 0.75rem;
}

.order-place__title {
  font-weight: bold;
}

.cart {
  padding: 0.5rem;
  /* background: #3e3e3e; */
  border-radius: 1rem;
  margin-bottom: 0.6rem;
  /* border: 2px solid #555555; */
  margin-top: 1rem;
}

.cart-item__image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 1.1rem;
}

.cart__header {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.cart-items {
  width: 100%;
}

.cart-item {
  display: flex;
  gap: 1rem;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #494949;
  padding-bottom: 0.6rem;
}

.cart-item__variable {
  font-size: 0.8rem;
  color: #cdcdcd;
  margin-right: 0.4rem;
}

.cart-item__details {
  flex-grow: 1;
  gap: 0.1rem;
  display: flex;
  flex-direction: column;
}

.cart-item__price {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.cart-item__price__control {
  display: flex;
  gap: 0.3rem;
}

.cart-item__price__value {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: #cdcdcd;
}

.toman {
  font-size: 0.7rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cart-desc textarea {
  width: 100%;
  height: 70px;
  background: #3b3b3b;
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 0.7rem;
  font-family: "peyda";
  border: 1px solid #636363;
  color: #e9e9e9;
  font-size: 0.9rem;
}

.cart-desc textarea:focus {
  outline: 2px solid rgb(150, 150, 150);
}

.cart-desc {
  display: flex;
  flex-direction: column;
  margin-top: 2.3rem;
}

.cart-detail__price svg {
  width: 18px;
  height: 18px;
  fill: #d0d0d0;
}

.cart-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0;
  margin: 1rem 0 0.5rem;
}

.cart-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d7d7d7;
  font-size: 0.8rem;
}

.cart-detail__price {
  display: flex;
  gap: 0.2rem;
}

.cart-detail-total {
  font-size: 1rem;
  border-top: 1px solid #525252;
  padding-top: 0.7rem;
  margin-top: 0.2rem;
}

.btn {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 0.6rem;
  font-family: "peyda";
  font-size: 0.9rem;
  cursor: pointer;
  background: #585858;
  color: #d8d8d8;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.submit-button {
  background: #ff6c00;
  color: #fdfdfd;
  font-size: 1rem;
}

.no-bg {
  background: none;
  height: 25px;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: #dcdcdc;
  font-size: 1.1rem;
}

.empty-cart img {
  width: 150px;
  filter: invert(0.75);
}

.cart .other-buttons {
  margin-top: 2rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  padding: 0.5rem 0.8rem;
  border: 3px solid #ffffff1a;
  border-radius: 0.8rem;
  background: #414141;
  position: relative;
}

.payment-method__desc {
  font-size: 0.8rem;
  color: #ababab;
}

.payment-methods input {
  display: none;
}

.radio-circle {
  height: 24px;
  width: 24px;
  border: 3px solid #ff9900;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.radio-circle::after {
  content: "";
  display: block;
  height: 11px;
  width: 11px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff9900;
  opacity: 0;
  transition: opacity 0.2s;
}

.payment-radio-input:checked~.payment-method-label .radio-circle::after {
  opacity: 1;
}

.payment-method-label {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
}

.payment-details__title {
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.payment-details {
  padding: 2.5rem 0.3rem 1.3rem;
}

.login-modal-wrapper {
  position: fixed;
  background: #0000005e;
  top: 0;
  bottom: 0;
  z-index: 1000;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.login-modal {
  background: #3d3d3d;
  width: 86%;
  padding: 1rem;
  border-radius: 1rem;
  color: #fdfdfd;
  border: 3px solid #5d5d5d;
  position: relative;
}

.login-modal__title {
  text-align: center;
  color: rgb(232, 232, 232);
}

.get-number__number {
  display: flex;
  flex-direction: column;
  margin-top: 0.8rem;
  border-top: 1px solid #ffffff21;
  padding-top: 0.8rem;
}

#phone-number {
  background: #636363;
  border: 2px solid #7b7b7b;
  height: 40px;
  border-radius: 0.7rem;
  text-align: center;
  direction: ltr;
  font-size: 1rem;
  font-family: "kalameh";
  outline: none;
  color: #d8d8d8;
  letter-spacing: 1px;
}

#phone-number:focus {
  border: 3px solid #a9a9a9;
}

.get-number__number label {
  font-size: 0.8rem;
  color: #dfdfdf;
  margin-bottom: 0.4rem;
}

.login-modal__buttons {
  margin-top: 1rem;
}

.login-modal-close {
  position: absolute;
  top: -40px;
  fill: #e4e4e4;
  cursor: pointer;
}

.login-modal-close svg {
  width: 25px;
  height: 25px;
}

.login-modal__buttons button {
  font-size: 1rem;
}

.insert-otp-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.insert-otp-container__title {
  font-size: 0.8rem;
  color: #dfdfdf;
  gap: 0.2rem;
}

.otp-inputs {
  display: flex;
  gap: 0.7rem;
  flex-direction: row-reverse;
  justify-content: center;
}

.otp-inputs input {
  width: 40px;
  height: 40px;
  background: #7b7b7b;
  border: none;
  border-radius: 0.9rem;
  outline: none;
  text-align: center;
  font-weight: bold;
  font-family: "kalameh";
  color: #e9e9e9;
  font-size: 1.3rem;
  padding-top: 5px;
  direction: ltr;
}

.otp-inputs input:focus {
  border: 3px solid #a9a9a9;
}

.resend-otp__timer {
  font-family: "kalameh";
  margin-left: 0.2rem;
}

.insert-otp-container__title {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.change-number-button {
  background: none;
  border: none;
  color: #ffa200;
  cursor: pointer;
  padding: 0.3rem 0;
  font-size: 0.7rem;
  font-family: "dana";
  margin-right: 0.3rem;
  line-height: 0.3;
}

.resend-otp {
  font-size: 0.7rem;
  color: #dfdfdf;
}

.otp-area__title {
  text-align: center;
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.change-order-type-modal-wrapper {
  position: fixed;
  background: #0000005e;
  top: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(9px);
  max-width: 480px;
}

.change-order-type-modal {
  background: #3d3d3d;
  width: 86%;
  padding: 1rem;
  border-radius: 1rem;
  color: #fdfdfd;
  position: relative;
}

.change-place-label {
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  border: 2px solid #6e6e6e;
  border-radius: 0.9rem;
  background: #555555;
}

.order-recieve-type {
  margin: 1rem 0;
}

.order-recieve-type__desc {
  font-size: 0.8rem;
  color: #b4b4b4;
}

.order-recieve-type input {
  display: none;
}

.order-recieve-type input:checked+label {}

.change-order-type-modal__close svg {
  width: 30px;
  height: 30px;
  fill: #d0d0d0;
}

.change-order-type-modal__close {
  position: absolute;
  top: -40px;
  cursor: pointer;
}

.order-recieve-type-input:checked~.change-place-label .radio-circle::after {
  opacity: 1;
}

.order-recieve-type__title {
  position: relative;
  padding-right: 2rem;
  margin-bottom: 0.4rem;
}

.radio-circle-place {
  right: 0;
}

.recieve-table {
  display: block;
  justify-content: center;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid #ffffff26;
}

.recieve-table label {
  font-size: 0.8rem;
}

.table-place-select {
  width: 100%;
  height: 40px;
  background: #929292;
  border-radius: 0.7rem;
  color: #fdfdfd;
  font-weight: bold;
  font-family: "kalameh";
  padding: 0rem 0.3rem;
  outline: none;
}

.table-number-select {
  width: 100%;
  height: 40px;
  background: #929292;
  border-radius: 0.7rem;
  color: #fdfdfd;
  font-weight: bold;
  font-family: "kalameh";
  padding: 0rem 0.3rem;
  outline: none;
}

.show-with-animation {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#clear-cart {
  background: none;
  border: none;
  font-family: "kalameh";
  color: #adadad;
  font-size: 0.68rem;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  background: #3c3c3c;
  border-radius: 0.7rem;
}

#clear-cart:hover {
  color: #ffa200;
}

.order-progress {
  padding: 1rem;
  background: #ffffff0d;
  border-radius: 0.7rem;
}

.progress-body {
  background: #6b6b6b;
  width: 100%;
  height: 8px;
  border-radius: 1rem;
  margin-top: 0.5rem;
}

.progress-thumb {
  height: 100%;
  background: #ff7c42;
  width: 20%;
  border-radius: 1rem;
}

.success-order-items svg {
  width: 1rem;
  height: 1rem;
  fill: #f1f1f1;
}

.success-order-icon {
  display: flex;
  justify-content: center;
}

.success-order-icon img {
  width: 150px;
}

.success-text {
  text-align: center;
}

.success-order-code {
  text-align: center;
  margin: 0 0 1rem;
}

.order-detail {
  display: flex;
  justify-content: space-between;
  margin: 0.3rem 0;
}

.order-details {
  padding: 1.2rem 0rem;
  background: #ffffff0d;
  padding: 1rem;
  border-radius: 1rem;
}

.success-order-items li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.success-order__item__name {
  font-size: 0.82rem;
  font-weight: normal;
  display: flex;
  gap: 0.5rem;
}

.success-order__item__price {
  display: flex;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.itm__qty {
  font-family: "kalameh";
  color: rgb(173, 173, 173);
  font-size: 0.8rem;
}

.success-order-items__title {
  margin-bottom: 0.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  font-weight: normal;
  margin-top: -0.3rem;
}

.success-order-items {
  margin: 1rem 0 2rem;
  background: #ffffff0d;
  padding: 1rem;
  border-radius: 1rem;
}

.order-detail span:first-child {
  font-size: 0.82rem;
  color: rgb(222 222 222);
}

.order-detail span:nth-child(2) {
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.seperator {
  width: 100%;
  height: 1px;
  background: #7b7b7b;
  margin: 1rem 0 0.3rem;
}

.bold {
  font-weight: bold;
}

.order-status {
  font-size: 0.9rem;
}

.success-order-code {
  font-size: 0.75rem;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  color: #848484;
}

.final-price-row {
  color: #fff;
}

/* .final-price-row div{
    font-size: 0.85rem;
} */

.total-price-row div {
  font-size: 0.7rem !important;
}

.progress {
  display: flex;
  justify-content: center;
  position: relative;
}

.donut {
  width: 70%;
  transform: rotate(270deg);
}

circle {
  transition: all 1s linear;
}

#c1 {
  transition: all 1s linear;
  stroke: #585858;
  stroke-width: 1;
  stroke-linecap: round;
  fill: transparent;
}

#c2 {
  transition: all 1s linear;
  stroke: #ff6822;
  stroke-width: 1.5;
  stroke-linecap: round;
  fill: transparent;
}

.progress-icon {
  width: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.progress-icon img {
  width: 100%;
}

.progress-icon svg {
  width: 100%;
}

.sand-top,
.sand-bottom,
.sand-clock {
  will-change: transform;
  transform-origin: 50% 30px;
}

.sand-clock {
  -webkit-animation: clock 4.5s 1.875s ease-in-out infinite;
  animation: clock 4.5s 1.875s ease-in-out infinite;
  transform-origin: 50% 50%;
  width: 80px;
  height: 100px;
  fill: #fff;
}

.sand-top {
  -webkit-animation: clock-sand-top 4.5s ease-in-out infinite;
  animation: clock-sand-top 4.5s ease-in-out infinite;
}

.sand-bottom {
  -webkit-animation: clock-sand-bottom 4.5s ease-in-out infinite;
  animation: clock-sand-bottom 4.5s ease-in-out infinite;
  transform: scale(0);
}

@-webkit-keyframes clock {

  20%,
  50% {
    transform: rotate(180deg);
  }

  70%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes clock {

  20%,
  50% {
    transform: rotate(180deg);
  }

  70%,
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes clock-sand-top {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes clock-sand-top {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes clock-sand-bottom {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes clock-sand-bottom {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.not-payed {
  color: #ff4022;
  font-weight: bold;
}

.payed {
  color: #30e400;
  font-weight: bold;
}

.order-status-text {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.order--code {
  font-family: "kalameh";
  letter-spacing: 2px;
}

.success-order-counter {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  gap: 0.4rem;
}

.order--counter {
  color: var(--primary-color);
  font-size: 1.4rem;
  line-height: 1.3;
}

.cooking-icon,
.order-done-icon,
.order-cancel-icon {
  width: 100px;
}

.order-ready-icon {
  width: 130px;
}

.view-order-payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.open-orders {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1rem 0 3.5rem;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0 3rem;
}

.closed-order {
  display: flex;
  padding: 0.7rem 0.4rem;
  background: #3e3e3e;
  border-radius: 0.9rem;
  gap: 0.5rem;
  cursor: pointer;
  border: 2px solid #ffffff21;
}

.closed-order__progress {
  text-align: center;
  font-weight: bold;
  font-size: 0.8rem;
  width: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #ffffff21;
  padding-left: 0.5rem;
  color: #dedede;
}

.closed-order__body {
  display: flex;
  flex-direction: column;
  width: 57%;
  flex-grow: 1;
  gap: 0.3rem;
  color: #dedede;
}

.closed-order__body__top {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}

.closed-order__body__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding-left: 0.5rem;
}

.order--place {
  font-family: "kalameh";
}

/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-direction: column;
}

.profile__img {
  width: 35%;
  max-width: 130px;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  padding: 0.2rem;
}

.profile__img img {
  width: 100%;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.user__name {
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

#edit-account {
  background: #ffffff40;
  border: none;
  font-family: "kalameh";
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  color: #fdfdfd;
  font-size: 0.8rem;
  cursor: pointer;
}

.customer-history {
  padding: 0.8rem;
  margin-top: 2rem;
  background: #ffffff1c;
  border-radius: 0.7rem;
}

.customer-history__title {
  border-bottom: 1px solid #ffffff1f;
  padding-bottom: 0.4rem;
  text-align: center;
}

.customer-history__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0 0;
}

.orders-count,
.orders-total-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orders-count span:nth-child(2),
.orders-total-price span:nth-child(2) {
  font-size: 0.85rem;
}

.orders-count__value,
.orders-total-price span:first-child {
  font-size: 1.1rem;
  color: #fdfdfd;
  font-weight: bold;
  line-height: 1;
  font-family: "kalameh";
}

.orders-count__value {
  font-size: 1.3rem;
  color: #00ff58;
}

.user-orders {
  margin-top: 3rem;
}

/* waiter modal */
.waiter-modal-wrapper,
.modal-wrapper {
  position: relative;
  background: #0000001c;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 60;
  backdrop-filter: blur(9px);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.waiter-modal,
.modal {
  width: 82%;
  max-width: 315px;
  background: #353535;
  border-radius: 2rem;
  border: 2px solid #ffffff38;
  padding: 1rem;
  color: rgb(255, 255, 255);
  transition: all 0.4s ease-in-out;
  position: fixed;

  top: 60%;
  right: 50%;
  transform: translate(50%, -50%);
}

.show-modal .waiter-modal,
.show-modal .modal {
  transform: translate(50%, calc(-50% - 50px));
}

.waiter-modal__title,
.modal__title {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1rem;
}

.map-location__title {
  font-size: 0.8rem;
}

.waiter-modal__desc,
.modal__desc {
  margin: 0.2rem 0 1.5rem;
  font-size: 0.9rem;
  color: #d5d5d5;
}

.waiter-modal__buttons,
.modal__buttons {
  display: flex;
  align-items: center;
  margin: 1.7rem 0 0.2rem;
}

.waiter-modal__buttons button:first-child {
  width: 65%;
}

.waiter-modal__buttons button:last-child {
  width: 35%;
}

.waiter-modal__buttons button {
  font-size: 0.9rem;
}

.waiter-modal__request-type .order-recieve-type-input,
.modal__request-type .order-recieve-type-input {
  display: none;
}

.waiter-modal__request-types,
.modal__request-types {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.order-type-details {
  width: 100%;
  margin-top: 0.8rem;
}

.order-type-description-box {
  padding: 0.8rem 1rem;
  border: 3px solid #ffffff1a;
  border-radius: 0.8rem;
  background: #414141;
}

.detail-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.order-type-description-box__title span:nth-child(2) {
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 0.1rem;
}

.order-type-description-box__title span:first-child {
  font-size: 0.8rem;
  color: #c4c4c4;
}

.order-type-description-box__button {
  background: none;
  border: none;
  color: #ebebeb;
  font-family: "kalameh";
  color: #ff9900;
  cursor: pointer;
  font-size: 0.8rem;
}

.order-type-description-box__description {
  font-size: 0.8rem;
  color: #c3c3c3;
}

.create-address {
  padding: 1rem;
  background: #ffffff12;
  border-radius: 0.8rem;
  margin-top: 1rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #ffffff14;
  color: #d7d7d7;
  font-size: 0.9rem;
  gap: 0.2rem;
  cursor: pointer;
}

.create-address svg {
  width: 36px;
  height: 36px;
  background: #ffc48021;
  border-radius: 50%;
  flex-shrink: 0;
  fill: #ff6c00;
}

.map-location {
  position: relative;
}

.auto-detect-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 2rem;
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 10px;
}

.map-location__inner {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

#address-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* مارکر مرکز نقشه */
.map-center-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 1000;
  pointer-events: none;
  font-size: 40px;
  color: #e74c3c;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* استایل‌های فرم آدرس */
.address-form {
  padding: 20px 0;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #eaeaea;
  font-size: 0.7rem;
}

.form-group label .required {
  color: #e74c3c;
  margin-right: 3px;
}

.form-group label .optional {
  color: #95a5a6;
  font-size: 12px;
  font-weight: normal;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #3498db;
}

.form-control::placeholder {
  color: #bdc3c7;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.map-location {
  position: relative;
}

/* دکمه یافتن خودکار */
.auto-detect-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  margin: 15px 0;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 2rem;
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 10px;
}

.leaflet-control-attribution {
  display: none;
}

.auto-detect-btn svg {
  width: 26px;
  height: 26px;
}

.auto-detect-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.auto-detect-btn svg {
  animation: pulse 2s ease-in-out infinite;
}

.twine-form-row {
  flex-direction: row-reverse;
  gap: 1rem;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* انیمیشن برای تغییر مراحل */
.address-step {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 430px) {
  .order-ready-icon {
    width: 100px;
  }
}

@media (min-width: 480px) {
  body {
    display: flex;
    justify-content: center;
    background: #000000;
  }

  #menu-all-wrapper {
    max-width: 480px;
    position: relative;
    border-right: 3px solid #3f3f3f;
    border-left: 3px solid #3f3f3f;
    background: #202020;
  }

  .bottom-navbar {
    max-width: 480px;
    right: 50%;
    transform: translateX(50%);
  }

  .bottom-navbar {
    border-right: 3px solid #2e2e2e;
    border-left: 3px solid #2e2e2e;
    border-top: 4px solid #202020;
  }

  .sector {
    width: 480px;
  }

  .login-modal-wrapper {
    max-width: 480px;
    width: 100%;
    transform: translateX(-50%);
    right: unset;
    left: 50%;
  }
}

.address-item {
  padding: 0.5rem 0.9rem;
  background: #ffffff12;
  border-radius: 0.8rem;
  margin-top: 0.7rem;
  /* height: 90px; */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #ffffff14;
  color: #d7d7d7;
  font-size: 0.9rem;
  gap: 0.2rem;
  cursor: pointer;
}

.addresses-list {
  display: flex;
  flex-direction: column;
}

.change-address-modal-wrapper .modal,
.add-address-modal-wrapper .modal {
  max-height: 75vh;
  overflow-y: auto;
}

.change-address-modal-wrapper .modal .modal__close,
.add-address-modal-wrapper .modal .modal__close {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 23px;
  right: unset;
  left: 22px;
  cursor: pointer;
}

.address-item__address {
  font-size: 0.73rem;
  color: #b9b9b9;
}

.empty-address {
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #9f9f9f;
  text-align: center;
}

.success-order-timer {
  text-align: center;
  color: #8f8f8f;
  font-size: 0.8rem;
  margin-top: -0.7rem;
  margin-bottom: 0.7rem;
}

.bottom-actions {
  display: flex;
  position: fixed;
  bottom: 0;
  /* background: linear-gradient(0deg, black, transparent); */
  width: 100%;
  max-width: 480px;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: 9;
}

.bottom-actions__buttons {
  display: flex;
  width: 100%;
  gap: 0.6rem;
  height: 60px;
  backdrop-filter: blur(3px);
  align-items: center;
}

.bottom-actions button {
  background: #ff6c00;
  border: none;
  padding: 0.5rem;
  font-family: "peyda";
  border-radius: 0.7rem;
  width: 50%;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

#view-orders-button {
  background: #606060;
  width: 50%;
}

.waiter-modal-float {
  position: absolute;
  left: 20px;
  bottom: 60px;
  background: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  flex-direction: column;
  box-shadow: 0 0 28px 5px #0000007d;
}

.waiter-modal-float:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.waiter-modal-float img {
  width: 28px;
}

.waiter-button-text {
  font-size: 0.7rem;
}

.no-buttons .bottom-actions__buttons {
  display: none;
}

.no-buttons .waiter-modal-float {
  bottom: 10px;
}

.only-cart-button #orders-nav {
  width: 100%;
}

.only-cart-button #view-orders-button {
  display: none;
}

.only-open-orders-button #orders-nav {
  display: none;
}

.only-open-orders-button #view-orders-button {
  width: 100%;
}

/* Hide login button by default */
#login-button {
  display: none;
  background: #606060;
}

.only-cart-button #login-button,
.only-open-orders-button #login-button {
  display: none;
}

/* 1. Only Login Button */
.only-login-button #orders-nav,
.only-login-button #view-orders-button {
  display: none;
}

.only-login-button #login-button {
  display: flex;
  width: 100%;
}

/* 2. Cart and Login Buttons */
.cart-and-login-buttons #view-orders-button {
  display: none;
}

.cart-and-login-buttons #orders-nav {
  display: flex;
  width: 50%;
}

.cart-and-login-buttons #login-button {
  display: flex;
  width: 50%;
}

.open-orders__title,
.orders__title {
  font-size: 0.92rem;
  font-weight: normal;
  color: #d1d1d1;
  margin-bottom: -0.8rem;
  padding: 0 0.5rem;
}

.orders__title {
  margin-bottom: 0.6rem;
}

.open-order {
  display: flex;
  padding: 0.7rem 0.7rem;
  background: #3e3e3e;
  border-radius: 0.9rem;
  gap: 0.8rem;
  cursor: pointer;
  flex-direction: column;
  font-size: 0.8rem;
  border: 2px solid #ffffff21;
  border-bottom: 4px solid #ffffff30;
  box-shadow: 3px 3px 18px -8px #000;
}

.open-order__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.open-order__top__right {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: bold;
}

.open-order__top__left {
  font-weight: bold;
  color: #59c1ff;
  display: flex;
  align-items: center;
}

.open-order__top__left::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: #59c1ff;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  margin-left: 0.3rem;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.8);
  }
}

.open-order__status-container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff1d;
  padding-top: 0.7rem;
}

.open-order__status-container__left {
  display: flex;
  gap: 0.2rem;
  color: #8d8d8d;
  font-size: 0.7rem;
}

.open-order__status-container__left svg {
  fill: #8d8d8d;
  width: 12px;
  height: 12px;
}

.open-order__price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff1d;
  padding-top: 0.7rem;
}

.open-order__price-container__right {
  /* font-weight: bold; */
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.open-order__price-container__price {
  display: flex;
  gap: 0.1rem;
}

.open-order__price-container__price-value {
  letter-spacing: 1px;
}

.open-order__price-container__price svg {
  width: 16px;
  height: 16px;
  margin-top: -1px;
}

.open-order-not-payed .open-order__price-container__price-title {
  font-weight: bold;
  color: #ff3737;
  text-shadow: 1px 1px #290000;
}

.open-order__price-container__left {
  background: #ed6400;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  text-shadow: 1px 1px #00000036;
}

.open-order__order-type {
  max-width: 150px;
  line-height: 1.2;
}

.status-text-pending {
  color: #ff8b00;
}

.status-text-pending::before {
  background: #ff8b00;
}

.status-text-preparing::before {
  background: #00c2ff;
}

.status-text-preparing {
  color: #00c2ff;
}

.status-text-preparing::before {
  background: #00c2ff;
}

.status-text-delivered {
  color: #26c17d;
}

.status-text-delivered::before {
  background: #26c17d;
}

.status-text-cancelled {
  color: #ff2328;
}

#logout-button {
  display: flex;
  gap: 0.3rem;
  background: none;
  color: #fdfdfd;
  border: none;
  background: #ffffff1c;
  padding: 0.3rem 0.8rem;
  font-family: "peyda";
  fill: #fdfdfd;
  cursor: pointer;
  border-radius: 0.8rem;
}

#logout-button svg {
  width: 18px;
  height: 18px;
}

.no-orders-container {
  text-align: center;
  padding: 2rem;
  color: #989898;
  justify-content: center;
}

.my-account-go-to-all-orders {
  background: #ffffff1c;
  margin-top: 1rem;
}

.restaurant-website-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 1rem;
  background: #3e3e3e;
  border-radius: 3rem;
  color: #e0e0e0;
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* #pay-order{
  display: none;
} */

.confirm-waiter-request-bill-on-table-modal {
  position: fixed;
  top: 0;
  right: 0;
  background: #00000061;
  left: 0;
  bottom: 0;
  backdrop-filter: blur(4px);
}

.confirm-waiter-request-bill-on-table-modal__inner {
  position: relative;
  background: #4c4c4c;
  top: 30%;
  width: 80%;
  max-width: 400px;
  right: 50%;
  transform: translate(50%, 0);
  padding: 2rem 1.3rem 1.2rem;
  border-radius: 1rem;
  border: 2px solid #626262;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.confirm-waiter-request-bill-on-table-modal__inner img{
  width: 40%;
    filter: invert(0.9);
}

.confirm-waiter-request-bill-on-table-modal__buttons {
  display: flex;
  width: 100%;
  gap: 0.6rem;
}

.confirm-waiter-request-bill-on-table-modal__confirm-button {
  background: var(--primary-color);
  color: #FFF;
  width: 65%;
}

.confirm-waiter-request-bill-on-table-modal__cancel-button{
  width: 35%;
}