/* SE IMPORTA LA FUENTE (TIPOGRAFÍA) MONTSERRAT DE GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Open+Sans:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.fuente__naranja {
  color: #fa3d22;
}

/* HEADER */

.header__organizacion {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-items: center;
  height: 120px;
  /*border: 5px black solid; */
  /* border-top: 20px transparent solid;
  border-bottom: 20px transparent solid; */
}

.header__pedido {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  height: 50px;
  /*border: 3px orangered solid;*/
}

/* BODY */

.productos__organizacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*border: 3px red solid;*/
}

.contenedor__main {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: space-around;
  height: 370px;
  width: 60%;
  border: 2px black solid;
}

.finalizar__compra {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 180px;
  height: 70px;
  /*border: 3px purple solid;*/
}

.finalizar__compra .span__1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  font-size: medium;
  font-weight: bold;
}

.btn__finalizar__compra {
  height: 30px;
  width: 180px;
  color: white;
  background-color: #fa3d22;
  border: 2px black solid;
  border-bottom: 4px black solid;
  border-right: 4px black solid;
  font-size: medium;
  font-weight: bold;
  cursor: pointer;
}

.contenedor__main__2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 60%;
  /*border: 2px blue solid;*/
}

.contenedor__main__2 span {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  height: 50px;
  width: 60%;
  /*border: 5px green solid;*/
}

.contenedor__main__2 input {
  color: #fa3d22;
  width: 30%;
}

.carrito__producto {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-around;
  align-items: center;
  height: 50px;
  width: 95%;
  font-size: medium;
  font-weight: bold;
  /*border: 2px purple solid;*/
}

.descripcion__producto {
  text-align: left;
}

.btn__eliminar__producto {
  cursor: pointer;
  background-color: #fa3d22;
  border-radius: 10px;
  border-bottom: 3px black solid;
  border-right: 3px black solid;
  border-top: 1px black solid;
  border-left: 1px black solid;
  width: 40px;
  height: 40px;
}

.descripcion__producto {
  display: flex;
  width: 300px;
  /*border: 3px green solid;*/
}

/* BOTÓN DE INCREMENTO Y DECREMENTO DE PRODUCTOS */

.boton__decremento__incremento {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 25px;
  width: 130px;
  background-color: #fa3d22;
  color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.5);
  border: 1px black solid;
  border-bottom: 3px black solid;
  border-right: 3px black solid;
  cursor: pointer;
}

.boton__decremento__incremento span {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.boton__decremento__incremento span.numero {
  font-size: 20px;
}

/* FOOTER */

.footer__carrito {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
