@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  background-color: #f0f0f0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #402E32;
}

.heading-2 {
  font-size: 3.3rem;
}
@media only screen and (max-width: 76.875em) {
  .heading-2 {
    font-size: 2.3rem;
  }
}

.heading-6 {
  font-size: 1.3rem;
  font-weight: 500;
}

.margin-default {
  margin: 5rem 10rem;
}
@media only screen and (max-width: 76.875em) {
  .margin-default {
    margin: 5rem;
  }
}
@media only screen and (max-width: 53.875em) {
  .margin-default {
    margin: 5rem;
  }
}
@media only screen and (max-width: 48em) {
  .margin-default {
    margin: 5rem 2rem;
  }
}

.hide {
  display: none !important;
}

.errorTxt {
  font-weight: 800;
  font-size: 0.9rem;
  color: rgb(143, 0, 0);
}

.opacity {
  opacity: 10%;
  z-index: -1000;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  background: #00A97A;
  color: #fffefc;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.2s;
}
.btn:hover, .btn:focus {
  transform: scale(1.02);
  box-shadow: 0px 8px 10px -1px rgba(64, 46, 50, 0.2);
}
.btn:active {
  transform: scale(1.01);
  box-shadow: 0px 8px 10px -8px rgba(64, 46, 50, 0.75);
}
.btn--orange {
  background-color: #e29344 !important;
  color: #fffefc;
}

.checkbox__icon {
  display: none;
}
.checkbox__icon:checked ~ .checkbox {
  background-color: #e29344;
  color: #fffefc;
  z-index: -1000;
}
.checkbox__icon:checked ~ .checkbox .checkbox__number--userChoice {
  color: #402E32;
}

.checkbox-container {
  flex: 1;
}

.checkbox {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border: 0.5px solid #7e7e7e;
  border-radius: 0.2rem;
  flex: 0 0 40%;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.checkbox__container {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  position: relative;
}
.checkbox__imgContainer {
  width: 10rem;
  height: 10rem;
  overflow: hidden;
  border-radius: 0.2rem;
}
.checkbox__img {
  width: 100%;
}
.checkbox__details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  gap: 1rem;
}
.checkbox__name {
  font-size: 2.3rem;
}
.checkbox__price {
  font-size: 1.3rem;
}
.checkbox__number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkbox__number--userChoice {
  padding: 0.5rem;
  width: 5rem;
  border: 0.5px solid #402E32;
  border-radius: 0.2rem;
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
}
.checkbox__number--userChoice:focus {
  outline-color: #BD871F;
}
.checkbox__number--currStock {
  font-size: 1.3rem;
  font-weight: 400;
}
.checkbox__userOrder {
  position: absolute;
  right: 0;
  font-size: 1.9rem;
}

.receipt {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fffefc;
  border: 1px solid #7e7e7e;
  border-radius: 5px;
}
.receipt > *:not(:last-child) {
  margin-bottom: 1rem;
}
.receipt__cartContainer {
  width: 80%;
  display: grid;
}
@media only screen and (max-width: 76.875em) {
  .receipt__cartContainer {
    width: 100%;
  }
}
.receipt__cartContainer > * {
  margin-bottom: 0.5rem;
  flex: 1;
}
.receipt__datetime {
  font-size: 1.3rem;
  color: #7e7e7e;
}
.receipt__itemprice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  align-items: center;
  gap: 1rem;
}
.receipt__itemprice--pieces {
  font-size: 1.3rem;
}
.receipt__detailsContainer {
  width: 50%;
}
.receipt__detailsContainer > *:not(:last-child) {
  margin-bottom: 1rem;
}
.receipt__detailsContainer .errorTxt {
  text-align: center;
}
.receipt__totalitems, .receipt__totalprice, .receipt__cashamount, .receipt__cashchange {
  display: flex;
  flex: 1;
  justify-content: space-between;
  font-weight: 500;
}

.grid-container {
  display: grid;
  grid-template-rows: min-content 1fr;
  grid-template-columns: minmax(min-content, 70rem) minmax(32.888rem, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 48em) {
  .grid-container {
    grid-template-rows: repeat(3, min-content 1fr);
    grid-template-columns: 1fr;
  }
}
.grid-container > * {
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grid-container__choices {
  grid-row: 1/-1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 76.875em) {
  .grid-container__choices {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 48em) {
  .grid-container__choices {
    grid-row: 1/2;
  }
}
.grid-container__choices--checkboxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
}
@media only screen and (max-width: 76.875em) {
  .grid-container__choices--checkboxes {
    gap: 0.5rem;
  }
}
.grid-container__choices--choices-data {
  display: flex;
  justify-content: space-around;
  order: -1;
}
@media only screen and (max-width: 48em) {
  .grid-container__choices--choices-data {
    order: 1;
  }
}
@media only screen and (max-width: 48em) {
  .grid-container__cashamount {
    grid-row: 2/3;
  }
}
.grid-container__cashamount .errorTxt {
  font-size: 1.3rem;
}
.grid-container__receipt {
  grid-column: 2/-1;
}
@media only screen and (max-width: 48em) {
  .grid-container__receipt {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}

.message {
  width: 80%;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.message > * {
  margin-bottom: 1rem;
}
.message h1 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 48em) {
  .message h1 {
    font-size: 3.3rem;
  }
}
.message input, .message button {
  display: block;
  width: 80%;
}
.message .errorTxt {
  font-size: 1.6rem;
  font-weight: 700;
  font-variant: small-caps;
}

.navbar {
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  border-bottom: 1px solid rgba(64, 46, 50, 0.2);
}
@media only screen and (max-width: 48em) {
  .navbar {
    flex-direction: column;
    height: 15rem;
    justify-content: center;
  }
}
.navbar__left {
  display: flex;
  align-items: center;
}
.navbar__left--imgContainer {
  width: 8rem;
}
.navbar__left--img {
  display: block;
  width: 100%;
}
.navbar__input {
  height: 3.55rem;
  padding: 1rem 2rem;
  border: none;
  font-family: inherit;
  color: inherit;
  border-radius: 0.5rem;
  flex: 1;
}
.navbar__input:focus {
  outline-color: #e29344;
  font-weight: 500;
}
.navbar__btnexit {
  background-color: #e29344;
}

.app {
  opacity: 0;
  transition: all 0.5s;
}

.message {
  transition: all 0.5s;
}

.logout-timer {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: right;
}

.date-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 48em) {
  .date-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.date-status h3 {
  font-size: 2.8rem;
}
.date-status__datetime {
  font-size: 1.6rem;
  color: #7e7e7e;
  font-weight: 700;
}
.date-status__status {
  font-size: 2.3rem;
  font-weight: 700;
}

.choices-data {
  padding: 2rem 0;
  color: #BD871F;
  font-weight: 500;
}
.choices-data__cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.choices-data__price {
  display: flex;
  align-items: center;
}

.grid-container__cashamount {
  padding: 3rem;
  background-image: linear-gradient(to right bottom, #00A97A, #0b744b);
  border-radius: 0.5rem;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 76.875em) {
  .grid-container__cashamount {
    padding: 3rem;
  }
}
.grid-container__cashamount .inputContainer {
  display: flex;
  gap: 1rem;
  font-weight: 700;
}
.grid-container__cashamount .inputContainer__input {
  padding: 1.5rem 1rem;
  border-radius: 5px;
  flex: 1;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: #402E32;
}
.grid-container__cashamount .inputContainer__input:focus, .grid-container__cashamount .inputContainer__input:active {
  outline-color: #00A97A;
}
.grid-container__cashamount .inputContainer__btn {
  padding: 1.5rem 1rem !important;
}

.grid-container__receipt {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 76.875em) {
  .grid-container__receipt {
    width: 100%;
  }
}
.grid-container__receipt > *:not(:last-child) {
  margin-bottom: 1rem;
}
.grid-container__receipt .btn {
  text-align: center;
}

.copyright {
  font-size: 1.3rem;
  padding: 3rem;
  text-align: center;
}

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