* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(0, 0, 49);
}

body {
  width: 210mm;
  height: 297mm;
  padding: 10px;
  /*margin: 10mm;*/
}

button {
  cursor: pointer;
}

.caixa {
  width: 100%;
  height: 100%;
}

.supImg img,
.infImg img {
  width: 100%;
}

.cardapio {
  width: 100%;
  height: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#dataAtt {
  color: orangered;
  font-weight: bold;
  width: 100%;
  text-align: right;
  margin-top: 20px;
  padding-right: 50px;
}

.itens {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.itens div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 21px;
}

.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  color: orangered;
  font-weight: bold;
  margin: 5px;
  font-size: 28px;
}

#msAlteracoes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  color: red;
  z-index: 0;
  padding-right: 50px;
}

.informativo {
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  font-weight: normal;
}

.pop {
  margin: 40px 0 0 0;
  width: 360px;
  display: grid;
  grid-template-columns: 1fr 50px;
  flex-flow: column;
  align-items: center;
  position: fixed;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
  background-color: #111c29e5;
  gap: 5px;
}

.pop input,
.pop select {
  padding: 5px;
  border-radius: 8px;
  border: transparent;
  width: 100%;
}

.pop h1 {
  color: white;
  margin: 10px 0;
  text-align: center;
  grid-column: 1 / -1;
}

.pop button {
  background-color: rgb(21, 177, 21);
  color: white;
  padding: 5px;
  width: 100px;
  border: none;
  border-radius: 12px;
  margin: 20px 0;
  grid-column: 1 / -1;
  justify-self: center;
}

.pop p {
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 0.8rem;
  grid-column: 1 / -1;
}

.pop img {
  justify-self: center;
}

.pop p img {
  width: 20px;
  margin: 0 10px;
}

@media (min-width: 360px) and (max-width: 430px) {
  body {
    width: 360px;
    padding: 10px;
    margin: 0 auto;
  }
}

@media print {
  .pular {
    break-after: page;
    page-break-after: always;
  }

  .pop {
    display: none;
  }

  #noPrint {
    display: none;
  }

  @page {
    /* margin-top: 0.2cm;
    margin-bottom: 0.2cm; */
    margin: 0;
  }
}
