/* --- CSS RESET --- */
/* desing / dashboard aa */
/* --- DASHBOARD --- */
.dashboard-container {
  width: 100vw;
  height: calc(100vh - 80px);
  display: block;
}
.dashboard-container .mobile-link-dropdown {
  display: none;
}
.dashboard-container .sub-header-container {
  width: inherit;
  height: 7vh;
  padding-left: 20px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.dashboard-container .sub-header-container .nav-links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  list-style-type: none;
  gap: 30px;
}
.dashboard-container .sub-header-container .nav-links .nav-link {
  float: left;
}
.dashboard-container .sub-header-container .nav-links .nav-link.nav-active {
  position: relative;
}
.dashboard-container .sub-header-container .nav-links .nav-link.nav-active a {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard-container .sub-header-container .nav-links .nav-link.nav-active a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 40px;
  margin: 0 auto;
  width: 100%;
  content: "";
  height: 3px;
  background: var(--secondary-colorful);
}
.dashboard-container .sub-header-container .nav-links a {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}

/* --- FINANCES  --- */
.finances-container {
  width: inherit;
  height: calc(93vh - 80px);
  background-color: var(--light-beige);
  position: absolute;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.finances-container .order-cards-container {
  padding: 30px 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.finances-container .order-cards-container .order-cards-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
}
.finances-container .order-cards-container .order-cards-row .order-card {
  max-width: 417px;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background-color: var(--white);
}
.finances-container .order-cards-container .order-cards-row .order-card h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
  padding-bottom: 10px;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 30px;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item {
  display: flex;
  flex-direction: row;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item.top {
  justify-content: space-between;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item.top p {
  max-width: 75%;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item.top span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
  max-width: 25%;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item.bottom {
  justify-content: flex-start;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item.bottom span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .order-cards-container .order-cards-row .order-card .order-items-block .order-item-row .order-item p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .order-cards-container .order-cards-row .order-card .order-value-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-value-block .order-value-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.finances-container .order-cards-container .order-cards-row .order-card .order-value-block .order-value-row.top {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.finances-container .order-cards-container .order-cards-row .order-card .order-value-block .order-value-row.bottom {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .order-cards-container .order-cards-row .order-card .order-value-block::after {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--light-beige);
}
.finances-container .payment-cards-container {
  padding: 30px 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.finances-container .payment-cards-container .payment-cards-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
}
.finances-container .payment-cards-container .payment-cards-row .payment-card {
  width: 417px;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background-color: var(--white);
}
.finances-container .payment-cards-container .payment-cards-row .payment-card h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
  padding-bottom: 10px;
}
.finances-container .payment-cards-container .payment-cards-row .payment-card p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .payment-cards-container .payment-cards-row .payment-card span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .payment-cards-container .payment-cards-row .payment-card .payment-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
}
.finances-container .payment-cards-container .payment-cards-row .payment-card .payment-recorder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 20px;
}
.finances-container .payment-cards-container .payment-cards-row .payment-card .payment-value {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.finances-container .payment-cards-container .payment-cards-row .payment-card .payment-value::after {
  position: absolute;
  top: -10px;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--light-beige);
}
.finances-container .receipt-cards-container {
  padding: 30px 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.finances-container .receipt-cards-container .k-listview {
  background: transparent;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
  background: transparent;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card {
  width: 417px;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background-color: var(--white);
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .card-top {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .card-top button {
  height: 22px;
  width: 22px;
  background-image: url("../images/receipt-download.png");
  background-repeat: no-repeat;
  background-position: center;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .receipt-status {
  padding-top: 10px;
  padding-bottom: 20px;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .receipt-status p {
  padding: 6px 10px;
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  color: var(--white);
  text-transform: uppercase;
  width: fit-content;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .receipt-status.canceled p {
  background: #a7a7a7;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .receipt-status.paid p {
  background: #23a677;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .receipt-status.pending p {
  background: #a62323;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .card-bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.finances-container .receipt-cards-container .k-listview .receipt-cards-row .receipt-card .card-bottom::after {
  position: absolute;
  top: -10px;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--light-beige);
}

.finances-container::-webkit-scrollbar {
  display: none;
}

/* --- ORDERS --- */
.orders-container {
  width: inherit;
  height: calc(100vh - 80px - 7vh);
  background-color: var(--light-beige);
  position: absolute;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.orders-container .current-order-cards-container {
  padding: 30px 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.orders-container .current-order-cards-container .current-order-cards-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card {
  width: 417px;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background-color: var(--white);
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card span {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-top {
  display: flex;
  flex-direction: column;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-top span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.4;
  padding-bottom: 10px;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item {
  display: flex;
  flex-direction: column;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .top-row p {
  max-width: 75%;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .middle-row {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .bottom-row {
  padding-top: 10px;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .bottom-row a {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: var(--primary);
  text-decoration: underline;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}

.order-container::-webkit-scrollbar {
  display: none;
}

.popup-bg {
  position: absolute;
  top: 0;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.692);
}
.popup-bg .popup-container {
  display: block;
  width: 564px;
  height: 627px;
}
.popup-bg .popup-container .popup-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 376px;
}
.popup-bg .popup-container .popup-top img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.popup-bg .popup-container .popup-top .popup-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background-color: var(--secondary-colorful);
  background-image: url("../images/popup-close.png");
  background-repeat: no-repeat;
  background-position: center;
}
.popup-bg .popup-container .popup-bottom {
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  background: var(--white);
}
.popup-bg .popup-container .popup-bottom .popup-food-name {
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--primary);
  padding-bottom: 6px;
}
.popup-bg .popup-container .popup-bottom .customize-text {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.4;
  padding-bottom: 10px;
}
.popup-bg .popup-container .popup-bottom .options-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.popup-bg .popup-container .popup-bottom .options-row.bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10px;
}
.popup-bg .popup-container .popup-bottom .options-row.bottom .portion-size {
  max-width: 388px;
}
.popup-bg .popup-container .popup-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.popup-bg .popup-container .popup-btns button {
  width: 135px;
  height: 45px;
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  background: var(--primary-gradient);
}
.popup-bg .popup-container .popup-btns a {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.4;
}
.popup-bg .popup-container .quantity-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  width: 95px;
  height: 45px;
  background: var(--white);
  border: 1px solid var(--light-beige);
}
.popup-bg .popup-container .quantity-container button {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  width: 40px;
  height: inherit;
}
.popup-bg .popup-container .quantity-container span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-bg .popup-container .portion-size {
  width: 100%;
  height: 45px;
}
.popup-bg .popup-container .portion-size select {
  width: inherit;
  height: inherit;
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  border: 1px solid var(--light-beige);
  padding: 5px 15px;
  background: transparent;
  background-image: url("../images/dropdown.png");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 45%;
}
.popup-bg .popup-container .portion-size select option {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.popup-bg .popup-container .checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.popup-bg .popup-container .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.popup-bg .popup-container .checkbox-container input:checked ~ .custom-checkbox {
  background-color: var(--secondary-colorful);
}
.popup-bg .popup-container .checkbox-container input:checked ~ .custom-checkbox::after {
  display: block;
}
.popup-bg .popup-container .checkbox-container .custom-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid var(--light-beige);
}
.popup-bg .popup-container .checkbox-container .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
}
.popup-bg .popup-container .checkbox-container:hover input ~ .custom-checkbox {
  background-color: var(--secondary);
}

/* --- FAQ --- */
.faq-bg {
  width: 100vw;
  height: 91.5vh;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background-color: var(--light-beige);
  position: absolute;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.faq-bg .faq-container {
  width: 560px;
  height: fit-content;
  padding: 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-bg .faq-container h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
  padding-bottom: 16px;
}
.faq-bg .faq-container p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: var(--primary);
}
.faq-bg .faq-container span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.faq-bg .faq-container .faq-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 282px;
  width: 100%;
}
.faq-bg .faq-container .faq-img img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.faq-bg .faq-container .contact-phone {
  padding-top: 20px;
}

.faq-bg::-webkit-scrollbar {
  display: none;
}

/* --- THANK YOU --- */
.thank-you-bg {
  width: 100vw;
  height: 91.5vh;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background-color: var(--light-beige);
  position: absolute;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.thank-you-bg .thank-you-container {
  width: 642px;
  height: 614px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  padding-top: 0;
}
.thank-you-bg .thank-you-container .thank-you-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 383px;
}
.thank-you-bg .thank-you-container .thank-you-img img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.thank-you-bg .thank-you-container h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  color: var(--primary);
}
.thank-you-bg .thank-you-container p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
  padding-bottom: 10px;
  max-width: 472px;
  text-align: center;
}
.thank-you-bg .thank-you-container button {
  width: 161px;
  height: 56px;
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  background: var(--primary-gradient);
}

/* --- DASHBOARD CART --- */
.cart-bg {
  width: 100vw;
  height: 91.5vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 25px;
  padding: 1.75% 15%;
  background-color: var(--light-beige);
  position: absolute;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cart-bg .cart-list-container {
  width: 857px;
  height: fit-content;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--white);
}
.cart-bg .cart-list-container .cart-content.mobile {
  display: none !important;
}
.cart-bg .cart-list-container .cart-item-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.cart-bg .cart-list-container .cart-item-container h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--secondary);
}
.cart-bg .cart-list-container .cart-item-container .cart-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-items-category {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.6;
  text-transform: uppercase;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-items-category.mobile {
  display: none;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .mobile-top {
  width: 80%;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .mobile-bottom {
  width: 20%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.name {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.name p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.name span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.quantity .quantity-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  width: 95px;
  height: 45px;
  background: var(--white);
  border: 1px solid var(--light-beige);
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.quantity .quantity-container button {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  width: 40px;
  height: inherit;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.quantity .quantity-container span {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.customize a {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  text-decoration: underline;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.price p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.btn .cart-item-delete-btn {
  width: 20px;
  height: 20px;
  background-image: url("../images/delete-btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--light-beige);
  border: 1px solid #d7d2cd;
  border-radius: 999px;
}
.cart-bg .cart-summary-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 415px;
  height: fit-content;
  background: var(--white);
  padding: 30px 20px;
}
.cart-bg .cart-summary-container h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--primary);
  padding-bottom: 16px;
}
.cart-bg .cart-summary-container .order-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cart-bg .cart-summary-container .order-row p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .order-row .order-value {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-summary-container .available-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cart-bg .cart-summary-container .available-row p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .available-row .available-value {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-summary-container .discount-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cart-bg .cart-summary-container .discount-row .discount-name {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .discount-row .discount-percentage {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  padding-right: 10px;
}
.cart-bg .cart-summary-container .discount-row .discount-value {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-summary-container .discount-row:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.cart-bg .cart-summary-container .delivery-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cart-bg .cart-summary-container .delivery-row p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .delivery-row .delivery-multiplier {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  padding-right: 10px;
}
.cart-bg .cart-summary-container .delivery-row .delivery-fee {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-summary-container .delivery-row:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.cart-bg .cart-summary-container .coupon-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid #e0e0e0;
  padding: 10px;
}
.cart-bg .cart-summary-container .coupon-row div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-bg .cart-summary-container .coupon-row p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .coupon-row .coupon-code {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: var(--black);
  padding-right: 10px;
}
.cart-bg .cart-summary-container .coupon-row .add-coupon-btn {
  width: 20px;
  height: 20px;
  background: var(--light-beige);
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: var(--black);
}
.cart-bg .cart-summary-container .coupon-row:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.cart-bg .cart-summary-container .summary-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}
.cart-bg .cart-summary-container .summary-row p {
  font-family: "Conso";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .summary-row .summary-value {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.cart-bg .cart-summary-container .cart-btn-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cart-bg .cart-summary-container .cart-btn-row .summary-cart-btn {
  width: 102px;
  height: 56px;
  border: 2px solid rgba(12, 28, 24, 0.3);
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--primary);
}
.cart-bg .cart-summary-container .cart-btn-row .summary-pay-btn {
  width: 100%;
  height: 56px;
  background: var(--primary-gradient);
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.cart-bg .cart-summary-container .mobile-details-btn {
  display: none;
}

.cart-bg::-webkit-scrollbar {
  display: none;
}

/* --- MOBILE VIEW --- */
@media only screen and (max-width: 1240px) {
  /* --- MOBILE DASHBOARD --- */
  .dashboard-container {
    height: calc(100vh - 68px);
  }
  .dashboard-container .sub-header-container {
    padding: 20px 10px;
  }
  .dashboard-container .sub-header-container .nav-links {
    display: none;
  }
  .dashboard-container .sub-header-container .mobile-link-dropdown {
    width: 229px;
    height: 40px;
    background: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid var(--light-beige);
  }
  .dashboard-container .sub-header-container .mobile-link-dropdown select {
    width: inherit;
    height: inherit;
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
    padding: 10px 14px 10px 14px;
    background: transparent;
    background-image: url("../images/dropdown.png");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 50%;
  }
  .dashboard-container .sub-header-container .mobile-link-dropdown select option {
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
  }
  /* --- MOBILE THANK YOU --- */
  .thank-you-bg .thank-you-container {
    width: 352px;
    height: 412.12px;
    padding-top: 0;
    gap: 10px;
  }
  .thank-you-bg .thank-you-container h2 {
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
  }
  .thank-you-bg .thank-you-container .thank-you-img {
    height: 230px;
    width: inherit;
  }
  /* --- MOBILE FAQ --- */
  .faq-bg {
    padding: 0;
  }
  .faq-bg .faq-container {
    width: inherit;
    background: inherit;
    padding: 40px 27px;
  }
  .faq-bg .faq-container .faq-img {
    height: 191px;
  }
  /* --- MOBILE FINANCES --- */
  .finances-container {
    height: calc(93vh - 68px) !important;
  }
  .finances-container .receipt-cards-container {
    padding: 20px;
  }
  .finances-container .receipt-cards-container .receipt-cards-row {
    flex-direction: column;
    gap: 20px;
  }
  .finances-container .receipt-cards-container .receipt-cards-row .receipt-card {
    width: 100%;
  }
  .finances-container .payment-cards-container {
    padding: 20px;
  }
  .finances-container .payment-cards-container .payment-cards-row {
    flex-direction: column;
    gap: 20px;
  }
  .finances-container .payment-cards-container .payment-cards-row .payment-card {
    width: 100%;
  }
  .finances-container .order-cards-container {
    padding: 20px;
  }
  .finances-container .order-cards-container .order-cards-row {
    flex-direction: column;
    gap: 20px;
  }
  .finances-container .order-cards-container .order-cards-row .order-card {
    width: 100%;
  }
  /* --- MOBILE ORDERS --- */
  .orders-container {
    height: calc(93vh - 68px) !important;
  }
  .orders-container .current-order-cards-container {
    padding: 20px;
  }
  .popup-bg {
    width: 100vw;
    height: 100vh;
  }
  .popup-bg .popup-container {
    width: 90%;
  }
  .popup-bg .popup-container .popup-top {
    height: 190px;
  }
  .popup-bg .popup-container .options-row {
    flex-direction: column !important;
    gap: 5px !important;
  }
  .popup-bg .popup-container .quantity-container {
    display: none;
  }
  .popup-bg .popup-container .popup-btns {
    display: none;
  }
  .popup-bg .popup-container .mobile-popup-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .popup-bg .popup-container .mobile-popup-bottom .mobile-options {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .popup-bg .popup-container .mobile-popup-bottom .mobile-options .quantity-container {
    display: flex;
  }
  .popup-bg .popup-container .mobile-popup-bottom .mobile-options .update-btn {
    width: 60%;
    height: 45px;
    font-family: "Conso";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--white);
    background: var(--primary-gradient);
  }
  .popup-bg .popup-container .mobile-popup-bottom a {
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
    opacity: 0.4;
  }
  /* --- MOBILE CART --- */
  .cart-bg {
    height: calc(100vh - 68px);
    padding: 0;
    flex-direction: column;
  }
  .cart-bg .cart-list-container {
    width: 100%;
    background: var(--light-beige);
    top: 0;
    padding: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .cart-bg .cart-list-container .cart-items-category.desktop {
    display: none;
  }
  .cart-bg .cart-list-container .cart-items-category.mobile {
    display: flex !important;
  }
  .cart-bg .cart-list-container .cart-item-cols {
    flex-direction: column !important;
    gap: 10px;
  }
  .cart-bg .cart-list-container .cart-item-cols .cart-item-col.name {
    padding-top: 5px;
    width: 100% !important;
  }
  .cart-bg .cart-list-container .cart-item-cols .mobile-top {
    width: 100% !important;
  }
  .cart-bg .cart-list-container .cart-item-cols .mobile-bottom {
    width: 100% !important;
    padding-bottom: 10px;
  }
  .cart-bg .cart-list-container::-webkit-scrollbar {
    display: none;
  }
  .cart-bg .cart-summary-container {
    background: #e4dad0;
    width: 100%;
    height: fit-content;
  }
  .cart-bg .cart-summary-container .cart-summary-sub {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .cart-bg .cart-summary-container .mobile-details-btn {
    display: flex;
  }
  .cart-bg .cart-summary-container .mobile-details-btn a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
  }
  .cart-bg .cart-summary-container .mobile-details-btn span {
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--primary);
  }
  .cart-bg .cart-summary-container .mobile-details-btn .details-arrow {
    display: flex;
    background-image: url("../images/mobile-details-arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 8px;
    height: 5px;
  }
}
.mobile-header-nav .navbar .nav-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: absolute !important;
  bottom: 300px !important;
}

.fr-btn {
  background: var(--primary-gradient);
  border: 3px solid rgba(12, 28, 24, 0.3);
  padding: 0 5px 0 5px;
  color: var(--white);
  font-style: normal;
}

.tip-custom-input {
  background: white;
  padding: 0 10px;
  border: 1px solid #CCCCCC;
  height: 34px;
}

.loyalty-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
  align-items: center;
}

.loyalty-btn {
  min-width: 120px;
  padding: 8px 16px;
  font-size: 1em;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  cursor: pointer;
}

.loyalty-btn[disabled], .loyalty-btn.disabled {
  opacity: 0.5;
  background: #eee !important;
  color: #888 !important;
  cursor: not-allowed !important;
  box-shadow: none;
  border: 1px solid #ccc;
}

.k-switch-on .k-switch-track {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

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