:root {
  --bg: #fef4e0;
  --primary-title: #275f22;
  --secondary-title: #aab41f;
  --description: #131313;
  --price: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bg);
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 1rem 0 3rem 0;
  min-width: 32rem;
  height: auto;
  text-align: center;
  background-image: url("../assets/wave.svg");
  /* filter: brightness(0.4); */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}

.back-to-menu {
  display: none;
  position: fixed;
  align-items: center;
  left: 10px;
  padding: 10px;
  border: none;
  /* border: 1px solid var(--primary-title); */
  background-color: white;
  font-weight: 700;
  font-family: inherit;
  outline: 0;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
}

.linea-clientes {
  margin: 10px 0 0 0;
}

.back-to-menu span {
  display: inline-block;
  width: 23px;
  height: 18px;
  background-image: url("../assets/back.svg");
  background-repeat: no-repeat;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
  width: 10rem;
  margin: 0 auto;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
  transition: all 0.3s ease-in-out;
}

header img {
  height: 10rem;
  width: 10rem;
  align-self: center;
  transition: all 0.5s ease;
}

main {
  width: 100%;
  height: auto;
  min-width: 32rem;
}

.main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-menu h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.imagenes {
  width: 30rem;
  height: 30rem;
  margin-top: -2rem;
}

hr {
  display: block;
  width: 90%;
  border: 0;
  height: 2px;
  margin: 2rem auto;
  text-align: center;
  background-image: linear-gradient(left, #ece2d1, #e9d7b9, #ece2d1);
  background-image: -webkit-gradient(
    linear,
    100% 0%,
    0% 0%,
    from(#ece2d1),
    to(#ece2d1),
    color-stop(0.5, #e9d7b9)
  );
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.btn {
  outline: 0;
  border: 0;
  font-weight: 700;
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-size: 2.4rem;
  color: #fff;
  font-family: inherit;
}

.btn:hover {
  cursor: pointer;
}

.see-menu {
  background-color: var(--primary-title);
}

.factura {
  margin-top: 1.5rem;
  background-color: var(--secondary-title);
}

.factura a {
  text-decoration: none;
  color: white;
}

.main-menu img {
  height: 30rem;
  width: 30rem;
  border-radius: 50%;
  margin: 20px;
}

#menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  min-width: 32rem;
  /* background-color: var(--primary-title); */
  transition: display 0.2s ease-in;
  will-change: display;
}

#menu select {
  outline: 0;
  font-size: 1.4rem;
  padding: 1rem;
}

#items {
  margin-top: 2rem;
  width: 90%;
  /* opacity: 0; */
  transition: all 0.4s ease-in;
  padding-bottom: 2rem;
  /* will-change: opacity; */
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu-item--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.5rem;
}

.menu-item--header .title {
  font-size: 2rem;
  color: var(--secondary-title);
  text-transform: uppercase;
}

.menu-item--header .price {
  font-size: 1.8rem;
  font-weight: 700;
}

.menu-items .description {
  font-size: 1.6rem;
  color: var(--description);
}

.category {
  /* text-align: center; */
  font-size: 2.6rem;
  color: var(--primary-title);
}

.extras {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-title);
  margin-top: 2rem;
}

.snacks {
  padding-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.belmont {
  margin-top: 5.5rem;
}

.belmont-desc {
  font-size: 1.3rem;
}

.guarniciones {
  font-size: 1.6rem;
}

.isv {
  /* float: right; */
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  font-size: 1.2rem;
  text-decoration: underline;
}

.isv p {
}

footer {
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

footer a {
  padding: 10px;
}

footer img {
  height: 50px;
  width: 50px;
}

footer h3 {
  font-size: 2rem;
  font-weight: 700;
}

footer p {
  font-size: 1.6rem;
  font-style: oblique;
}

/* FACTURA */

main form {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
}

form label {
  font-size: 2.2rem;
  padding: 10px 0;
}

label span {
  font-size: 1.2rem;
}

form input {
  height: 40px;
  font-size: 2rem;
  padding: 5px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  outline: 0;
}

.valid {
  border-color: var(--secondary-title);
}
.invalid {
  border-color: rgb(223, 126, 126);
}

input[type="submit"] {
  margin: 2rem 0 2rem 0;
  height: 50px;
  border: none;
  background-color: var(--primary-title);
  color: white;
  border-radius: 5px;
  outline: 0;
}

textarea {
  width: 100%;
  max-width: 100%;
  font-size: 2rem;
  padding: 5px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.error,
.success {
  display: none;
  padding: 10px;
  margin: 10px 0 40px 0;
  font-size: 1.4rem;
  font-weight: 700;
  /* line-height: 30px; */
  height: 50px;
  border: none;
  text-align: center;
  background-color: rgb(223, 126, 126);
  color: white;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.success {
  transition: all 0.3s ease-in-out;
  background-color: var(--secondary-title);
}

.back-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 4.5rem;
  height: 4.5em;
  opacity: 0;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
}

.back-top img {
  width: 2.5rem;
  height: 2.5rem;
}

/* ADMIN */

.contenedor.main {
  flex-direction: column;
  margin: 0 auto;
}
.contenedor.main h1 {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.4rem;
}


.modal-cargando {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  will-change: display, opacity;

  -webkit-transition: display 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: display 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);
    z-index: 100;
}

.modal-cargando.visible {
  display: flex;
  opacity: 1;

  -webkit-transition: opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.cargando {
  width: 90%;
  max-width: 40rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--bg);
  border-radius: 5px;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid var(--primary-title);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}


.sinSolicitudes {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  text-align: center;

  opacity: 0;

  will-change: transform, opacity, display;

  -webkit-transform: scale(1.15);
  transform: scale(1.15);

  -webkit-transition: -webkit-transform 0.1s
      cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: transform 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.sinSolicitudes.visible {
  opacity: 1;

  -webkit-transform: scale(1);
  transform: scale(1);

  -webkit-transition: -webkit-transform 0.3s
      cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: transform 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.sinSolicitudes h2 {
  margin-top: 20%;
}

.sinSolicitudes img {
  width: 60%;
  height: 60%;
}

.cliente {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  text-align: left;
  width: 100%;
}

.cliente h2 {
  font-size: 2rem;
}

.cliente p {
  font-size: 1.8rem;
}

.btns {
  margin-top: 10px;
  align-self: flex-end;
}

.botones {
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: 1.8rem;
  outline: 0;
  color: white;
  font-weight: bold;
  margin-left: 5px;
}

.btn_seleccionar {
  background-color: var(--secondary-title);
}
.btn_eliminar {
  background-color: var(--primary-title);
}

.modal {
  width: 100vw;
  height: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.46);

  opacity: 0;

  will-change: transform, opacity, display;

  -webkit-transform: scale(1.15);
  transform: scale(1.15);

  -webkit-transition: -webkit-transform 0.1s
      cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: transform 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.modal.visible,
#enviar.visible,
.back-top.visible {
  opacity: 1;
  display: block;

  -webkit-transform: scale(1);
  transform: scale(1);

  -webkit-transition: -webkit-transform 0.3s
      cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: transform 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.back-top.visible {
  display: flex;
}

.modal.visible {
  height: 100vh;
}

.interno {
  position: relative;
  width: 90%;
  height: 100%;
  margin: 10px auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
  border-radius: 5px;
}

.interno.aceptacion {
  display: flex;
  position: relative;
  top: 30%;
  padding: 0;
  justify-content: center;
  height: 30vh;
  margin: 0 auto;
}

.interno.aceptacion h2 {
  font-size: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.btn_aceptacion {
  position: relative;
  width: 100%;
  display: flex;
}

.btn_eliminar.aceptacion,
.btn_seleccionar.aceptacion {
  width: 45%;
}

select {
  width: 60%;
  padding: 5px;
  border-radius: 5px;
  outline: 0;
  font-size: 2rem;
}

.input {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin: 2rem 0;
}

#cant {
  font-size: 2rem;
  width: 30%;
  padding: 5px;
  outline: 0;
  border-radius: 5px;
}

#cant:focus {
  border-color: var(--secondary-title);
}

#detalle {
  width: 100%;
  height: auto;
  min-width: 32rem;
  padding: 0 10px;
}

#detalle h2 {
  font-size: 2.4rem;
  color: var(--description);
  text-decoration: underline;
}

#agregar,
#enviar {
  outline: 0;
  border: 0;
  width: 50%;
  margin: 0 auto 2rem auto;
  font-weight: 700;
  padding: 5px;
  border-radius: 5px;
  font-size: 2rem;
  color: #fff;
  background-color: var(--primary-title);
}

#enviar {
  width: 70%;
  margin-top: 2rem;
  display: none;
  background-color: var(--secondary-title);

  opacity: 0;

  will-change: transform, opacity, display;

  -webkit-transform: scale(1.15);
  transform: scale(1.15);

  -webkit-transition: -webkit-transform 0.1s
      cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);

  transition: transform 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    opacity 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946),
    display 0.1s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.contenedor {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  color: var(--description);
}

.eliminar,
.cerrar {
  font-weight: 700;
  color: white;
  background-color: var(--secondary-title);
  height: 2.4rem;
  width: 2.4rem;
  text-align: center;
  line-height: 2.4rem;
  border-radius: 5px;
}

.eliminar {
  margin-left: 1.5rem;
}

.cerrar {
  position: absolute;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  right: 1rem;
  top: 1rem;
}

.nombre {
  font-size: 1.8rem;
}

.cantidad {
  font-size: 1.8rem;
  font-weight: 700;
}
