* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Schibsted Grotesk", sans-serif;
}
* a {
  text-decoration: none;
}

nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #e76f51;
  padding: 2% 2% 0% 2%;
}
nav ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
nav ul a {
  color: white;
  font-size: 2rem;
  transition: 0.4s;
}
nav ul a:hover {
  color: #264653;
}

.flex {
  display: flex;
}

.navList {
  margin-top: 20px;
  margin-bottom: 0% !important;
}
.navList button {
  width: 120px;
  height: 50px;
  transition: 0.3s;
  border: none;
  border-radius: 10px 10px 0px 0px;
  cursor: pointer;
}
.navList button:hover {
  transform: translateY(-10px);
}
.navList button.active {
  background-color: aqua;
}

@keyframes toBottom {
  to {
    transform: translateY(-200%);
  }
  from {
    transform: translateY(0%);
  }
}
.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.modal .modal-card {
  background-color: white;
  margin: auto;
  border-radius: 5px;
}
.modal .modal-card .modal-header {
  padding: 1rem;
  font-size: 2rem;
  border-radius: 5px 5px 0px 0px;
  background-color: blue;
  color: white;
}
.modal .modal-card .modal-body {
  padding: 1rem;
}
.modal .modal-card .modal-body form {
  width: 100%;
  flex-direction: column;
}
.modal .modal-card .modal-body form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.modal .modal-card .modal-body form div label {
  margin-bottom: 10px;
}
.modal .modal-card .modal-body form div input {
  padding-left: 20px;
  height: 30px;
}
.modal .modal-card .modal-body form button {
  background-color: blueviolet;
  border: none;
  height: 3rem;
  color: whitesmoke;
}
.modal .modal-card .modal-body div {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.modal .modal-card .modal-body div label {
  margin-bottom: 10px;
}
.modal .modal-card .modal-body button {
  background-color: blueviolet;
  border: none;
  height: 3rem;
  color: whitesmoke;
}
.modal .modal-card .modal-footer {
  padding: 1rem;
}

.popover {
  display: none;
  position: absolute;
  background-color: whitesmoke;
  border-radius: 10px;
  padding: 10px;
  top: 10px;
  left: 40px;
}
.popover.show {
  display: flex;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 0.8rem;
  height: 60px;
}
.header button {
  margin: 0%;
  width: 70px;
  cursor: pointer;
  border-radius: 10px;
}

.allPieces {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: 50px 0;
}
.allPieces .produto {
  position: relative;
  margin: 0;
  width: 400px;
  height: 300px;
  color: black;
  text-align: center;
  border: none;
  border: 2px solid #023047;
  transition: 0.6s;
}
.allPieces .produto:hover {
  transform: scale(1.2);
}
.allPieces .produto img {
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

#buildMachine {
  display: flex;
  padding: 10px;
  width: 100%;
  justify-content: space-between;
}
#buildMachine .listarPecas {
  min-width: 300px;
  flex-direction: column;
  position: relative;
}
#buildMachine .listarPecas .inputFollow {
  width: 300px;
  position: fixed;
  background-color: white;
}
#buildMachine .listarPecas .inputFollow #selectPecas {
  width: 100%;
}
#buildMachine .listarPecas .inputFollow #listPecas {
  width: 100%;
  height: 70vh;
  padding: 5%;
  border: 2px solid #000000;
  overflow: auto;
}
#buildMachine .listarPecas .inputFollow #listPecas .produto {
  position: relative;
}
#buildMachine .pecasMontagem {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
  width: 100%;
}
#buildMachine .pecasMontagem .peca {
  width: 350px;
  background-color: #e76f51;
}
#buildMachine .pecasMontagem .peca .dropzone {
  background-color: #000000;
  height: 300px;
  transition: 0.4s;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#buildMachine .pecasMontagem .peca .dropzone.highlight {
  background-color: green;
}
#buildMachine .pecasMontagem .peca .dropzone .produto {
  height: 300px;
  color: white;
  text-align: center;
  border: none;
  position: relative;
}
#buildMachine .pecasMontagem .peca .dropzone .produto img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
#buildMachine .pecasMontagem .peca .dropzone .produto .popover {
  color: black;
}
#buildMachine .pecasMontagem .peca .inputQtd {
  margin: 5px;
}

.produto {
  cursor: pointer;
  width: 100%;
  border: 2px solid blueviolet;
}
.produto img {
  width: 100%;
}

.formLogin {
  margin: auto;
  width: 500px;
  padding: 20px;
  border: 2px solid #e76f51;
  border-radius: 20px;
  margin-top: 30px;
}
.formLogin h1 {
  font-size: 3rem;
}
.formLogin div {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.formLogin div label {
  font-size: 2rem;
}
.formLogin div div.input-inline {
  display: flex;
  flex-direction: row;
}
.formLogin div div.input-inline input {
  width: 90%;
}
.formLogin div div.input-inline button {
  width: 10% !important;
  border-radius: 0px 10px 10px 0px;
  cursor: pointer;
}
.formLogin div input {
  height: 40px;
  font-size: 1.5rem;
  padding: 2px 10px;
}

.buttonOptions {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  gap: 10px;
}
.buttonOptions button {
  cursor: pointer;
  margin: 0;
}
.buttonOptions p {
  background-color: blueviolet;
  color: white;
  transition: 0.5s;
  width: 200px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttonOptions p:hover {
  transform: scale(1.2);
}

button {
  margin: auto;
  width: 200px;
  height: 40px;
  margin: auto;
  background-color: #264653;
  color: white;
  transition: 0.5s;
}
button:hover {
  background-color: #023047;
  transform: scale(1.2);
}

.column {
  flex-direction: column;
}

#dadosCompra {
  border: 3px solid #e76f51;
  width: 50vw;
  margin: auto;
  margin-top: 40px;
  padding: 10px;
  border-radius: 10px;
}
#dadosCompra h2 {
  color: #023047;
  font-size: 2rem;
}
#dadosCompra p {
  font-size: 1.3rem;
  line-height: 40px;
  border-bottom: 2px solid #023047;
}/*# sourceMappingURL=style.css.map */