/* --- CSS RESET --- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  background: transparent;
  font-family: inherit;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

button,
a {
  cursor: pointer;
  color: inherit;
}

textarea {
  resize: none;
}

button,
textarea,
select {
  appearance: none !important;
  border-radius: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --- GLOBAL VARIABLES --- */
:root {
  --primary: #1b3e3d;
  --light-beige: #e9e2db;
  --secondary: #c18f75;
  --secondary-colorful: #a65023;
  --black: #0c1c18;
  --white: #ffffff;
  --primary-gradient: linear-gradient(82.02deg, #1b3e3d 4.42%, #0c1c18 93.85%);
  --secondary-gradient: linear-gradient(
    268.85deg,
    #c18f75 0.98%,
    #a65023 99.42%
  );
}

@font-face {
  font-family: "Conso";
  src: url(/design/styles/fonts/Conso.ttf);
}
@font-face {
  src: url(/design/styles/fonts/RedHatDisplay.ttf);
}
@font-face {
  font-family: "Abril Fat Face";
  src: url(/design/styles/fonts/AbrilFatFace.ttf);
}
@font-face {
  font-family: "Mulish";
  src: url(/design/styles/fonts/Mulish.ttf);
}
body {
  width: 100vw;
  height: 100vh;
  position: absolute;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hidden {
  display: none !important;
}

/* --- HEADER --- */
header {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  gap: 10px;
  max-width: 100vw;
  height: 80px;
  background: var(--primary);
}
header .navbar {
  display: flex;
  flex-direction: row;
  padding-top: 5px;
  width: 100%;
}
header .navbar .nav-links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-left: 60px;
  gap: 35px;
  list-style-type: none;
}
header .navbar .nav-links .nav-link {
  float: left;
}
header .navbar .nav-links .nav-link.nav-active {
  position: relative;
}
header .navbar .nav-links .nav-link.nav-active a {
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}
header .navbar .nav-links .nav-link.nav-active a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  content: "";
  height: 2px;
  background: #c18f75;
}
header .navbar .nav-links a {
  display: block;
  padding: 8px;
  color: var(--light-beige);
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
header .navbar .nav-items {
  display: flex;
  padding-top: 8px;
  margin-left: auto;
  padding-right: 20px;
  gap: 25px;
}
header .navbar .nav-items .mobile-nav-hamburger {
  display: none;
}
header .navbar .nav-items .profile span {
  margin-left: 10px;
  color: var(--light-beige);
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
header .navbar .nav-items .nav-cart img {
  position: relative;
}
header .navbar .nav-items .nav-cart .cart-items {
  position: absolute;
  bottom: 38px;
  right: 35px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-colorful);
  border-radius: 10px;
}
header .navbar .nav-items .nav-cart .cart-items span {
  color: #e9e2db;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
}

/* --- 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-family: "Red Hat Display";
  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: 190%;
  margin: 0 auto;
  width: 100%;
  content: "";
  height: 3px;
  background: var(--secondary-colorful);
}
.dashboard-container .sub-header-container .nav-links a {
  font-family: "Red Hat Display";
  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;
  flex-wrap: wrap;
}
.finances-container .order-cards-container .order-cards-row .order-card {
  width: 417px;
  height: 388px;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background-color: var(--white);
}
.finances-container .order-cards-container .order-cards-row .order-card .order-card-body {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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;
  padding-bottom: 20px;
}
.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: "Red Hat Display";
  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: "Red Hat Display";
  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::before {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--light-beige);
}
.finances-container .order-cards-container .order-cards-row .order-card .order-value-block::after {
  position: absolute;
  bottom: 10px;
  width: 100%;
  height: 2px;
  content: "";
}
.finances-container .order-cards-container .order-cards-row .order-card-body::-webkit-scrollbar {
  display: none;
}
.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;
  flex-wrap: wrap;
}
.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: "Red Hat Display";
  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: "Red Hat Display";
  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 .receipt-cards-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card {
  width: 417px;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background-color: var(--white);
}
.finances-container .receipt-cards-container .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 .receipt-cards-row .receipt-card p {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card span {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card .card-top {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.finances-container .receipt-cards-container .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 .receipt-cards-row .receipt-card .receipt-status {
  padding-top: 10px;
  padding-bottom: 20px;
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card .receipt-status p {
  padding: 6px 10px;
  font-family: "Red Hat Display";
  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 .receipt-cards-row .receipt-card .receipt-status.canceled p {
  background: #a7a7a7;
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card .receipt-status.paid p {
  background: #23a677;
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card .receipt-status.pending p {
  background: #a62323;
}
.finances-container .receipt-cards-container .receipt-cards-row .receipt-card .card-bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.finances-container .receipt-cards-container .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;
  flex-wrap: wrap;
}
.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: "Red Hat Display";
  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: "Red Hat Display";
  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;
  justify-content: flex-start;
  gap: 20px;
  height: inherit;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.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 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .bottom-row .rating {
  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 .rating .rating-icon {
  object-fit: contain;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-body .card-item .bottom-row a {
  font-family: "Red Hat Display";
  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::-webkit-scrollbar {
  display: none;
}
.orders-container .current-order-cards-container .current-order-cards-row .current-order-card .card-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}
.orders-container .latest-order-cards-container {
  padding: 30px 5%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.orders-container .latest-order-cards-container .latest-order-cards-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card {
  width: 417px;
  height: 411px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: var(--white);
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card h2 {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card p {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card span:not(.k-rating-container) {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-top {
  display: flex;
  flex-direction: column;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-top span {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.4;
  padding-bottom: 10px;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  height: inherit;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item {
  display: flex;
  flex-direction: column;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .top-row p {
  max-width: 75%;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .middle-row {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .bottom-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .bottom-row .rating {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .bottom-row .rating .rating-icon {
  object-fit: contain;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body .card-item .bottom-row a {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: var(--primary);
  text-decoration: underline;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-body::-webkit-scrollbar {
  display: none;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card .card-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}
.orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card::-webkit-scrollbar {
  display: none;
}

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

.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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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);
}

.latest-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);
}
.latest-popup-bg .latest-popup-container {
  display: block;
  width: 564px;
  height: 627px;
}
.latest-popup-bg .latest-popup-container .popup-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 376px;
}
.latest-popup-bg .latest-popup-container .popup-top img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.latest-popup-bg .latest-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;
}
.latest-popup-bg .latest-popup-container .popup-bottom {
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  background: var(--white);
}
.latest-popup-bg .latest-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;
}
.latest-popup-bg .latest-popup-container .popup-bottom .rating {
  padding: 18px 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.latest-popup-bg .latest-popup-container .popup-bottom .rating .rating-icon {
  object-fit: contain;
}
.latest-popup-bg .latest-popup-container .popup-bottom button {
  width: 220px;
  height: 56px;
  margin-top: 20px;
  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);
}
.latest-popup-bg .latest-popup-container .popup-bottom label {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--black);
}
.latest-popup-bg .latest-popup-container .popup-bottom textarea {
  width: 100%;
  height: 105px;
  border: 1px solid var(--light-beige);
}
.latest-popup-bg .latest-popup-container .popup-bottom textarea::placeholder {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}

/* --- 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: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: var(--primary);
}
.faq-bg .faq-container span {
  font-family: "Red Hat Display";
  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: "Red Hat Display";
  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;
  overflow-y: scroll;
  -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: "Red Hat Display";
  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: 55%;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .mobile-bottom {
  width: 45%;
  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;
  width: 50%;
}
.cart-bg .cart-list-container .cart-item-container .cart-items .cart-item .cart-item-cols .cart-item-col.name p {
  font-family: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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 {
  position: sticky;
  bottom: 0;
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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: "Red Hat Display";
  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) {
  .checkbox-container:hover input ~ .custom-checkbox {
    background-color: var(--secondary-colorful) !important;
  }
  /* --- MOBILE HEADER ---*/
  header {
    height: 68px;
    padding: 14.5px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  header .logo img {
    width: 121px;
    height: 39px;
  }
  header .navbar {
    padding: 0;
  }
  header .navbar .nav-links {
    display: none;
  }
  header .navbar .nav-items {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-right: 0;
  }
  header .navbar .nav-items .profile {
    display: none;
  }
  header .navbar .nav-items .nav-cart .cart-items {
    bottom: 30px;
    right: 15px;
  }
  header .navbar .nav-items .mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .navbar .nav-items .mobile-nav .mobile-nav-hamburger {
    display: flex;
    width: 24px;
    height: 21px;
    background-image: url("../images/mobile-hamburger.png");
    background-position: center;
    background-repeat: no-repeat;
  }
  .mobile-header-nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 50px;
    top: 0;
    left: 0;
    height: 100vh;
    width: 90vw;
    z-index: 20;
    background-color: var(--primary);
    padding: 20px 27px;
  }
  .mobile-header-nav .logo img {
    width: 174px;
    height: 56px;
  }
  .mobile-header-nav .navbar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
  }
  .mobile-header-nav .navbar .nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style-type: none;
  }
  .mobile-header-nav .navbar .nav-links .nav-link.nav-active {
    font-family: "Conso";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary);
  }
  .mobile-header-nav .navbar .nav-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .mobile-header-nav-overlay {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 19;
    background-color: var(--light-beige);
    opacity: 0.8;
  }
  /* --- 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: "Red Hat Display";
    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: "Red Hat Display";
    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;
  }
  .orders-container .current-order-cards-container .current-order-cards-row {
    display: flex;
    flex-direction: column;
  }
  .orders-container .current-order-cards-container .current-order-cards-row .current-order-card {
    width: 100%;
  }
  .orders-container .latest-order-cards-container {
    padding: 20px;
  }
  .orders-container .latest-order-cards-container .latest-order-cards-row {
    display: flex;
    flex-direction: column;
  }
  .orders-container .latest-order-cards-container .latest-order-cards-row .latest-order-card {
    width: 100%;
  }
  .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: "Red Hat Display";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
    opacity: 0.4;
  }
  .latest-popup-bg {
    width: 100vw;
    height: 100vh;
  }
  .latest-popup-bg .latest-popup-container {
    width: 90%;
  }
  .latest-popup-bg .latest-popup-container .popup-top {
    height: 190px;
  }
  /* --- MOBILE CART --- */
  .cart-bg {
    height: calc(100vh - 68px);
    padding: 0;
    flex-direction: column;
  }
  .cart-bg .cart-list-container {
    width: 100%;
    background: var(--light-beige);
    position: absolute;
    top: 0;
    padding: 20px;
    height: inherit;
    overflow-y: scroll;
    -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;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .cart-bg .cart-summary-container h2 {
    display: none;
  }
  .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: "Red Hat Display";
    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;
}

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