@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Playfair+Display:ital,wght@1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --montserrat: "Montserrat", sans-serif;
  --lato: "Lato", sans-serif;
  --cor-fonte-1: #41403e;
  --cor-fonte-2: #acacac;
  --cor-fonte-3: #202020;
  --cor-fonte-4: #ececec;
  --cor-fonte-5: #c9c9c9;
  --cor-fonte-6: #dedede;
  --cor-fonte-7: #9d9d9d;
  --cor-fonte-8: #333333;
  --cor-fonte-9: #666666;
  --cor-fonte-10: #8f8e8e;
  --cor-bg-1: #FFFCF6;
  --cor-bg-2: #566B54;
  --cor-bg-3: #122E39;
  --cor-bg-4: #F6F6F6;
  --cor-bg-5: #DADADA;
  --cor-bg-6: #F8F6F1;
  --cof-bg-7: #D7DBE0;
  --altura-header: 183px;
  --max-width-container: 86%;
}

form ::-webkit-input-placeholder {
  /* Edge */
  opacity: 1;
}
form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 1;
}
form ::placeholder {
  opacity: 1;
}

#topo-wishlist {
  background-color: var(--cor-fonte-4);
}
#topo-wishlist .pergunta {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--cor-fonte-7);
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-weight: 500;
}

#lista {
  background-color: var(--cor-fonte-4);
}
#lista .container {
  max-width: 970px !important;
}
#lista table {
  width: 100%;
  padding: 5px;
}
#lista table thead {
  background-color: black;
  height: 50px;
}
#lista table thead th {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#lista table tbody {
  background-color: white;
}
#lista table tbody td {
  text-align: center;
}
#lista table tbody .imagem {
  height: 150px;
}
#lista table tbody .imagem img {
  max-width: 180px;
  max-height: 120px;
  object-fit: cover;
  vertical-align: middle;
}
#lista table tbody .dimensoes {
  font-size: 14px;
  font-weight: 500;
  color: var(--cor-fonte-9);
}
#lista table tbody .quantidade input {
  width: 110px;
  height: 45px;
  border: 1px solid var(--cor-fonte-6);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--cor-fonte-9);
}
#lista table tbody .modelo label {
  font-size: 14px;
  font-weight: 500;
  color: var(--cor-fonte-5);
}

#form-novidades {
  background-color: var(--cor-fonte-4);
  padding-bottom: 90px;
}
#form-novidades .container {
  max-width: 760px !important;
}
#form-novidades .instrucao {
  text-align: center;
  font-size: 16px;
  color: black;
  font-weight: 300;
}
#form-novidades .form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  max-width: 575px;
}
#form-novidades .form input[type=text],
#form-novidades .form input[type=email],
#form-novidades .form input[type=tel],
#form-novidades .form select,
#form-novidades .form textarea {
  border: none;
  border-bottom: 1px solid black;
  color: var(--cor-fonte-7);
  font-size: 18px;
  font-weight: 300;
  background-color: transparent;
  padding: 7px;
  margin: auto auto 50px auto;
  line-height: normal;
  max-width: 270px;
  width: 100%;
}
#form-novidades .form textarea {
  max-width: 100%;
  height: 140px;
}
#form-novidades .form button.botao {
  width: 225px;
}
#form-novidades .form .profissional {
  font-size: 18px;
  font-weight: 300;
  color: var(--cor-fonte-7);
  width: 100%;
  margin-bottom: 50px;
}
#form-novidades .form .profissional label {
  font-size: 18px;
  color: black;
  font-weight: 300;
  margin-left: 45px;
}
#form-novidades .form .novidades {
  font-size: 14px;
  color: black;
  font-weight: 300;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

/* MOBILE */
@media (max-width: 767px) {
  #lista table {
    padding: 1px;
  }
  #lista table thead {
    display: none;
  }
  #lista table tbody {
    display: block;
    padding: 15px 5px;
  }
  #lista table tbody::after {
    content: "";
    display: block;
    clear: both;
  }
  #lista table tbody tr {
    display: block;
    height: auto;
    clear: both;
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--cor-fonte-5);
  }
  #lista table tbody tr:last-child {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0;
  }
  #lista table tbody tr.linha {
    display: none;
  }
  #lista table tbody tr::after {
    content: "";
    display: block;
    clear: both;
  }
  #lista table tbody td {
    display: block;
    float: left;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #lista table tbody .imagem {
    height: 80px;
    width: 50%;
    text-align: left;
  }
  #lista table tbody .imagem img {
    max-width: 120px;
  }
  #lista table tbody .dimensoes {
    width: 50%;
  }
  #lista table tbody .quantidade {
    width: 50%;
  }
  #lista table tbody .quantidade input {
    width: 60px;
  }
  #lista table tbody .modelo {
    clear: both;
    width: 50%;
    text-align: left;
  }
  #lista table tbody .modelo label {
    margin: auto;
  }
  #lista table tbody .remover {
    width: 50%;
  }
}
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) */
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */

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