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

body,
.k-widget,
.k-listview,
.k-dropdown {
  font-family: "Conso", sans-serif !important;
}

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);
}
.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%;
}

/* --- FODD CARD --- */
.card {
  width: 270px;
  height: 460px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.card .card-image {
  position: relative;
  width: 270px;
  height: 140px;
}
.card .card-image img {
  object-fit: cover;
}
.card .card-image button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--secondary-colorful);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4px 6px;
  gap: 10px;
  color: var(--white);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}
.card .card-image button span {
  width: 20px;
  height: 20px;
  background: transparent;
  background-repeat: no-repeat;
  background-image: url("../images/info-button-icon.png");
}
.card .card-body {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card .card-body .food-name {
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
  padding-bottom: 20px;
}
.card .card-body .customize {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card .card-body .customize p {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.4;
  padding-bottom: 5px;
}
.card .card-body .customize .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-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.card .card-body .customize .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.card .card-body .customize .checkbox-container input:checked ~ .custom-checkbox {
  background-color: var(--secondary-colorful);
}
.card .card-body .customize .checkbox-container input:checked ~ .custom-checkbox::after {
  display: block;
}
.card .card-body .customize .checkbox-container .custom-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid var(--light-beige);
}
.card .card-body .customize .checkbox-container .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
}
.card .card-body .customize .checkbox-container:hover input ~ .custom-checkbox {
  background-color: var(--secondary);
}
.card .card-body .portion-size {
  width: 100%;
  height: 40px;
}
.card .card-body .portion-size select {
  width: inherit;
  height: inherit;
  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%;
}
.card .card-body .portion-size select option {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.card .card-body .card-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
  gap: 10px;
}
.card .card-body .card-bottom .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);
}
.card .card-body .card-bottom .quantity-container button {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  width: 40px;
  height: inherit;
}
.card .card-body .card-bottom .quantity-container span {
  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;
}
.card .card-body .card-bottom button.add-to-cart-btn {
  width: 125px;
  height: 45px;
  background: var(--primary-gradient);
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
.card .card-body .card-bottom button.cancel-btn {
  width: 125px;
  height: 45px;
  background: #e9e2db;
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--black);
}

/* --- MAIN DASHBOARD ---*/
.dashboard {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 80px);
}
.dashboard .main {
  width: 80%;
  display: flex;
  flex-direction: column;
  background: var(--light-beige);
  flex-grow: 1;
}
.dashboard .main .main-top {
  position: relative;
  display: flex;
  flex-direction: row;
  background: var(--white);
  padding-left: 80px;
  height: 80px;
}
.dashboard .main .main-top .main-top-days {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 25px;
  flex-grow: 1;
  position: absolute;
  width: 711px;
  height: 80px;
  left: 90px;
  top: 10px;
}
.dashboard .main .main-top .main-top-days .main-top-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 20px;
  gap: 4px;
  width: 123px;
  min-height: 58px;
  background: var(--white);
  box-shadow: 0px 4px 40px rgba(106, 92, 77, 0.2);
}
.dashboard .main .main-top .main-top-days .main-top-card .day {
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
}
.dashboard .main .main-top .main-top-days .main-top-card .date {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--black);
  opacity: 0.6;
  white-space: nowrap;
}
.dashboard .main .main-top .main-top-days .main-top-card .cart-tag {
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 140%;
  background: var(--secondary-colorful);
  color: var(--white);
  text-transform: uppercase;
  padding: 2px 6px;
}
.dashboard .main .main-top .main-top-days .main-top-card.in-cart {
  height: 85px;
}
.dashboard .main .main-top .main-top-days .main-top-card.day-active {
  border-bottom: 3px solid var(--secondary-colorful);
}
.dashboard .main .main-top .main-top-days .main-top-card.day-active .day {
  color: var(--secondary-colorful);
}
.dashboard .main .main-bottom {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.dashboard .main .main-bottom .mobile-categories-dropdown {
  display: none;
}
.dashboard .main .main-bottom .top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 10px;
  gap: 20px;
  width: 100%;
  height: 40px;
  padding-top: 80px;
  padding-left: 90px;
  padding-right: 30px;
}
.dashboard .main .main-bottom .top-container .categories {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  width: 868px;
  flex-wrap: wrap;
}
.dashboard .main .main-bottom .top-container .categories p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.6;
}
.dashboard .main .main-bottom .top-container .categories p.category-active {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 1;
}
.dashboard .main .main-bottom .top-container .categories p.category-active a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  content: "";
  height: 5px;
  background: #c18f75;
}
.dashboard .main .main-bottom .top-container .address-dropdown {
  width: 300px;
  height: 40px;
  background: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  gap: 20px;
}
.dashboard .main .main-bottom .top-container .address-dropdown select {
  width: inherit;
  height: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  background: transparent;
  background-image: url("../images/dropdown.png");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 45%;
}
.dashboard .main .main-bottom .top-container .address-dropdown select option {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .main .main-bottom .cards-container {
  padding: 20px 90px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1;
  max-height: calc(100vh - 300px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dashboard .main .main-bottom .cards-container div.food-box {
  width: 100%;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box {
  width: 100%;
  display: flex;
  gap: 20px;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card {
  width: 270px;
  display: flex;
  flex-direction: column;
  background: white;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-image {
  position: relative;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-image button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--secondary-colorful);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4px 6px;
  gap: 10px;
  color: var(--white);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-image button span {
  width: 20px;
  height: 20px;
  background: transparent url(/../design/images/info-button-icon.png) no-repeat;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body {
  background: white;
  padding: 20px;
  flex-grow: 1;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize p {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.4;
  padding-bottom: 5px;
  margin: 20px 0;
  margin-bottom: 0;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container input:checked ~ .custom-checkbox {
  background-color: var(--secondary-colorful);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container input:checked ~ .custom-checkbox::after {
  display: block;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container .custom-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid var(--light-beige);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .customize .checkbox-container:hover input ~ .custom-checkbox {
  background-color: var(--secondary);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .portion-size {
  width: 100%;
  height: 40px;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .portion-size select {
  width: inherit;
  height: inherit;
  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 url("/../design/images/dropdown.png") no-repeat;
  background-position-x: 95%;
  background-position-y: 45%;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-body .portion-size select option {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 10px;
  gap: 10px;
  height: 80px;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-bottom .quantity-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 45px;
  width: 95px;
  background: var(--white);
  border: 1px solid var(--light-beige);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-bottom .quantity-container button {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  width: 40px;
  height: inherit;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-bottom .quantity-container span {
  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;
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-bottom button.add-to-cart-btn {
  width: 125px;
  height: 45px;
  background: var(--primary-gradient);
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
.dashboard .main .main-bottom .cards-container div.food-box div.food-cards-box div.food-card div.card-bottom button.cancel-btn {
  width: 125px;
  height: 45px;
  background: #e9e2db;
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--black);
}
.dashboard .main .main-bottom .cards-container .category-name {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .main .main-bottom .cards-container .cards {
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
}
.dashboard .main .main-bottom .bottom-gradient {
  position: absolute;
  width: 100%;
  height: 150px;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(233, 226, 219, 0) 0%, #e9e2db 100%);
}
.dashboard .main .main-bottom .cards-container::-webkit-scrollbar {
  display: none;
}
.dashboard .cart {
  position: relative;
  width: max(20%, 300px) !important;
  height: inherit;
}
.dashboard .cart .cart-list {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  background: #fbf4ee;
  max-height: 60vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dashboard .cart .cart-list .cart-item-container {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  height: fit-content;
}
.dashboard .cart .cart-list .cart-item-container .cart-item-day {
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--secondary);
  padding-left: 10px;
}
.dashboard .cart .cart-list .cart-item-container .cart-item {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.dashboard .cart .cart-list .cart-item-container .cart-item .category {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--black);
  opacity: 0.6;
  text-transform: uppercase;
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px 0;
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container .item-left {
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container .item-left .item-name {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container .item-left .food-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container .item-right {
  flex-direction: row;
  align-items: center;
  width: 75px;
  gap: 3px;
  display: inline-flex;
  white-space: nowrap;
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container .item-right .price {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-list .cart-item-container .cart-item .item-container .item-right .quantity {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-list::-webkit-scrollbar {
  display: none;
}
.dashboard .cart .cart-summary {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  right: 0px;
  bottom: 0px;
  background: #e4dad0;
  padding: 20px;
}
.dashboard .cart .cart-summary .cart-summary-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard .cart .cart-summary .order-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboard .cart .cart-summary .order-row p {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-summary .order-row .order-value {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-summary .available-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboard .cart .cart-summary .available-row p {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-summary .available-row .available-value {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-summary .discount-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboard .cart .cart-summary .discount-row .discount-name {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-summary .discount-row .discount-percentage {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  padding-right: 10px;
}
.dashboard .cart .cart-summary .discount-row .discount-value {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-summary .discount-row:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.dashboard .cart .cart-summary .delivery-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboard .cart .cart-summary .delivery-row p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-summary .delivery-row .delivery-multiplier {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
  padding-right: 10px;
}
.dashboard .cart .cart-summary .delivery-row .delivery-fee {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-summary .delivery-row:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.dashboard .cart .cart-summary .coupon-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--white);
  padding: 10px;
}
.dashboard .cart .cart-summary .coupon-row p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-summary .coupon-row .coupon-code {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: var(--black);
  padding-right: 10px;
}
.dashboard .cart .cart-summary .coupon-row .add-coupon-btn {
  width: 20px;
  height: 20px;
  background: var(--light-beige);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: var(--black);
}
.dashboard .cart .cart-summary .coupon-row:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.dashboard .cart .cart-summary .summary-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}
.dashboard .cart .cart-summary .summary-row p {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.dashboard .cart .cart-summary .summary-row .summary-value {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--black);
}
.dashboard .cart .cart-summary .cart-btn-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboard .cart .cart-summary .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);
}
.dashboard .cart .cart-summary .cart-btn-row .summary-pay-btn {
  width: 192px;
  height: 56px;
  background: var(--primary-gradient);
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.dashboard .mobile-cart-btn {
  display: none;
}
.dashboard .mobile-cart-overlay {
  display: none;
}
.dashboard .mobile-cart-details {
  display: none;
}

.dashboard::-webkit-scrollbar {
  display: none;
}

/* --- MAIN POPUP --- */
.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: 642px;
  height: 710px;
}
.popup-bg .popup-container .popup-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.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;
  gap: 20px;
  padding: 20px 30px;
  background: var(--white);
}
.popup-bg .popup-container .popup-bottom .popup-food-name {
  font-family: "Conso";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--primary);
}
.popup-bg .popup-container .popup-bottom .popup-data-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.popup-bg .popup-container .popup-bottom .popup-data-container .data-col {
  display: flex;
  flex-direction: column;
  width: 280px;
  gap: 8px;
}
.popup-bg .popup-container .popup-bottom .popup-data-container .data-col .data-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.popup-bg .popup-container .popup-bottom .popup-data-container .data-col .data-row .data-name {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}
.popup-bg .popup-container .popup-bottom .popup-data-container .data-col .data-row .data-value {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--primary);
}

/* --- 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;
    transition: all ease 0.2s !important;
  }
  .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;
    transition: ease-in 1s;
  }
  /* --- MOBILE MAIN DASHBOARD ---*/
  .dashboard {
    height: calc(100vh - 18px);
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: hidden;
  }
  .dashboard h2.category-name {
    font-size: 1.2rem !important;
  }
  .dashboard div.cards-container {
    max-height: initial !important;
    margin-bottom: 10px !important;
    font-size: 0.8rem !important;
  }
  .dashboard .main {
    width: 100%;
    height: calc(100vh - 68px);
  }
  .dashboard .main .main-top {
    padding-left: 0;
    overflow-x: scroll;
    height: 100px;
    background: rgb(233, 226, 219);
    background: linear-gradient(0deg, rgb(233, 226, 219) 0%, rgb(233, 226, 219) 20%, rgb(255, 255, 255) 20%);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .dashboard .main .main-top .main-top-days {
    padding-left: 0;
    left: 20px;
  }
  .dashboard .main .main-top .main-top-days .main-top-card {
    gap: 2px;
  }
  .dashboard .main .main-top .main-top-days .main-top-card p {
    margin-bottom: -4px;
  }
  .dashboard .main .main-top::-webkit-scrollbar {
    display: none;
  }
  .dashboard .main .main-bottom {
    height: calc(100vh - 68px - 100px);
  }
  .dashboard .main .main-bottom .top-container {
    padding: 10px 20px;
    height: 60px;
  }
  .dashboard .main .main-bottom .top-container .categories {
    display: none;
  }
  .dashboard .main .main-bottom .top-container .mobile-categories-dropdown {
    width: 108px;
    height: 40px;
    background: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    gap: 20px;
  }
  .dashboard .main .main-bottom .top-container .mobile-categories-dropdown select {
    width: inherit;
    height: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
    padding: 10px 40px 10px 14px;
    background: transparent;
    background-image: url("../images/dropdown.png");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 45%;
  }
  .dashboard .main .main-bottom .top-container .mobile-categories-dropdown select option {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
  }
  .dashboard .main .main-bottom .top-container .address-dropdown {
    width: 228px;
    overflow: hidden;
  }
  .dashboard .main .main-bottom .top-container .address-dropdown select {
    padding: 10px 40px 10px 14px;
    background-position-x: 90%;
  }
  .dashboard .main .main-bottom .cards-container {
    padding: 10px 20px;
    height: 100%;
  }
  .dashboard .main .main-bottom .cards-container .card-body {
    padding-bottom: 0 !important;
  }
  .dashboard .main .main-bottom .cards-container .card-body .portion-size {
    height: fit-content !important;
  }
  .dashboard .main .main-bottom .cards-container .card-bottom {
    height: 70px !important;
    padding: 0 20px;
  }
  .dashboard .main .main-bottom .bottom-gradient {
    display: none;
  }
  .dashboard .cart {
    position: absolute;
    top: 68px;
    right: 0;
    width: 90vw;
    height: calc(100vh - 68px);
    z-index: 10;
  }
  .dashboard .cart .cart-list {
    height: calc(100% - 344px);
  }
  .dashboard .cart .cart-item-container {
    height: fit-content;
  }
  .dashboard .cart .cart-summary {
    height: 344px;
  }
  .dashboard .cart .cart-btn-row {
    justify-content: center;
  }
  .dashboard .cart .cart-btn-row .summary-cart-btn {
    display: none;
  }
  .dashboard .cart .cart-btn-row .summary-pay-btn {
    width: 100% !important;
  }
  .dashboard .mobile-cart-btn {
    display: flex;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 56px;
    height: 56px;
    background-color: var(--secondary-colorful);
    background-image: url("../images/mobile-cart-btn.png");
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
    border-radius: 999px;
  }
  .dashboard .mobile-cart-details {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--primary);
  }
  .dashboard .mobile-cart-details a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
  }
  .dashboard .mobile-cart-details .details-arrow {
    display: flex;
    background-image: url("../images/mobile-details-arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 8px;
    height: 5px;
  }
  .dashboard .mobile-cart-overlay {
    display: block;
    position: absolute;
    top: 68px;
    background-color: var(--primary);
    opacity: 0.4;
    z-index: 1;
    width: 100vw;
    height: calc(100vh - 68px);
  }
  .dashboard::-webkit-scrollbar {
    display: none;
  }
  /* --- MOBILE MAIN POPUP --- */
  .popup-bg .popup-container {
    width: 90%;
    height: fit-content;
  }
  .popup-bg .popup-container h2 {
    font-family: "Conso";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    padding-bottom: 20px;
  }
  .popup-bg .popup-container .popup-bottom {
    gap: 0;
    padding: 16px 20px;
  }
  .popup-bg .popup-container .popup-bottom .popup-data-container {
    flex-direction: column;
  }
  .popup-bg .popup-container .popup-bottom .popup-data-container .data-col {
    width: 100%;
  }
}

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