@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-weight: 400;
  color: #959595;
  margin: 0;
}
body * {
  outline: none !important;
}

.desk {
  display: block !important;
}

.mobile {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1900px) {
  .container {
    max-width: 1440px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 90%;
  }
}
img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  opacity: 1;
}

.logado header .container {
  justify-content: space-between;
}

.btns {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
}
.btns .back-button.btn {
  cursor: pointer;
  padding: 10px 50px;
  font-size: 16px;
}

header {
  background: #FAF9F8;
  text-align: center;
  padding: 20px;
}
header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .bottom {
  display: flex;
  position: relative;
}
header .bottom .infos-sair {
  cursor: pointer;
  position: absolute;
  z-index: 9;
  display: none;
  width: 85px;
  right: 0;
  padding-top: 70px;
  top: 0;
}
header .bottom .infos-sair a {
  padding: 10px 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(228, 228, 228, 0.5);
  position: relative;
  display: block;
  width: 100%;
  text-decoration: underline;
}
header .bottom .infos-sair a:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  position: absolute;
  top: -15px;
  left: calc(50% - 15px);
}
header .bottom:hover .infos-sair {
  display: block;
}
header .bottom .text {
  text-align: right;
  margin-right: 10px;
}
header .bottom .text h6 {
  margin: 0;
  color: #5A5A5A;
  font-weight: 300;
  font-size: 16px;
}
header .bottom .text p {
  color: #959595;
  font-size: 14px;
}
header .bottom .wrap-img {
  display: flex;
  align-items: center;
}
header .bottom .wrap-img .img {
  background: #CCCCCC;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5A5A;
  font-size: 20px;
}
header .bottom .wrap-img > img {
  margin-left: 10px;
}

section {
  padding: 15px 0;
}
section:first-child {
  padding-top: 30px;
}
section:last.-child {
  padding-bottom: 30px;
}

select {
  border: 1px solid rgba(91, 91, 91, 0.5);
  border-radius: 5px;
  padding: 10px 20px;
  display: block;
  width: 100%;
}

input {
  border: 1px solid rgba(91, 91, 91, 0.5);
  border-radius: 5px;
  padding: 10px 20px;
  display: block;
  width: 100%;
}

input[type=checkbox] {
  width: auto;
  padding: 0;
}

.btn {
  font-size: 18px;
  border: 2px solid #171717;
  background: #171717;
  color: #ffffff;
  cursor: pointer;
  border-radius: 0;
  padding: 15px 100px;
  line-height: 1;
  border-radius: 10px;
  display: inline-block;
}
.btn:hover {
  color: #171717;
  background: transparent;
}
.btn.red {
  background: #E14949;
  border-color: #E14949;
}
.btn.red:hover {
  background: transparent;
  color: #E14949;
}
.btn.green {
  background: #08C133;
  border-color: #08C133;
}
.btn.green:hover {
  background: transparent;
  color: #08C133;
}

#consult_btn {
  margin-top: 20px;
}

.wrap-modal {
  position: fixed;
  top: 106px;
  left: 0;
  width: 100%;
  height: calc(100% - 106px);
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.85);
}
.wrap-modal.active {
  display: flex;
}
.wrap-modal .upload-modal {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
.wrap-modal .upload-modal a.close {
  position: absolute;
  top: 10px;
  right: 15px;
}
.wrap-modal .upload-modal .arquivo {
  border: 2px dashed #D6D6D6;
  padding: 75px 150px;
  text-align: center;
  color: #707070;
}
.wrap-modal .upload-modal .arquivo input#selectfile {
  border: none;
  background: #373737;
  color: #fff;
}
.wrap-modal .upload-modal .arquivo h4 {
  font-weight: 700;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 99;
  }
  header nav {
    padding: 10px 0 !important;
  }
  main {
    margin-top: 130px !important;
  }
  .navbar-brand img {
    max-width: 100px;
  }
  .btns .back-button.btn {
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    margin-top: 0;
  }
  .btns {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .btn {
    font-size: 16px;
    padding: 5px 50px;
    line-height: 25px;
    margin-top: 30px;
  }
  section {
    padding: 25px 0;
  }
  .desk {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .breadcrumb {
    padding: 5px 0 !important;
    text-align: center;
    justify-content: center;
  }
  .wrap-modal .upload-modal {
    max-width: 90%;
  }
  .wrap-modal .upload-modal .arquivo {
    padding: 25px;
  }
}
#accordion {
  background: #F5F5F5;
  border: none;
}
#accordion .card {
  background: #F5F5F5;
  border: none;
}
#accordion .card:nth-of-type(2n + 1) {
  border-bottom: #DEDEDE 2px solid;
  border-top: #DEDEDE 2px solid;
  background: #F0F0F0;
}
#accordion .card:nth-of-type(2n + 1) .card-header button {
  background: #F0F0F0;
}
#accordion .card .card-header {
  padding: 0;
  margin: 0;
  border: none;
  color: #707070;
}
#accordion .card .card-header#heading button {
  background: #C8B48F;
  border-radius: 10px 10px 0 0;
}
#accordion .card .card-header#heading button span {
  color: #171717;
  font-weight: 600;
}
#accordion .card .card-header button {
  margin: 0 !important;
  width: 100%;
  background: #F5F5F5;
  margin: 0 !important;
  border: none;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
#accordion .card .card-header button span {
  width: 25%;
  text-align: center;
  display: block;
  color: #707070;
}
#accordion .card .card-header button span.little {
  width: auto;
  padding: 0 20px;
}
#accordion .card .card-header h5 {
  border: none;
  padding: 0;
  margin: 0;
}
#accordion .card .card-body {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 20px 50px;
}
#accordion .card .card-body p {
  color: #707070;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 25px;
  min-width: 30%;
}
#accordion .card .card-body p span {
  font-weight: 400;
}
#accordion .card .card-body:before {
  content: "";
  height: 1px;
  width: 90%;
  display: block;
  background: #DFDFDF;
  position: absolute;
  top: 0;
  left: 5%;
}

.adicionar .bottom h5 {
  text-align: center;
  margin-bottom: 15px;
}
.adicionar .bottom .legenda {
  flex-wrap: wrap;
}
.adicionar .bottom .legenda > div {
  width: 30%;
  text-align: center;
  margin: 5px 20px !important;
  display: block;
}
.adicionar hr {
  margin: 30px 0;
}
.adicionar form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.adicionar form label.motivo {
  width: 45%;
}
.adicionar form label.upload {
  width: 45%;
}
.adicionar form label.upload a.btn {
  background: #F2F2F2;
  color: #5B5B5B;
  border: none;
}
.adicionar form label.upload a.btn:hover {
  background: #5B5B5B;
  color: #fff;
}
.adicionar form label.data-de-compra {
  width: 30%;
}
.adicionar form label.local {
  width: 30%;
}
.adicionar form label.selecionar-produtos {
  width: 34%;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
.adicionar form label.selecionar-produtos p {
  font-size: 14px;
  margin-bottom: 15px;
}
.adicionar form label.selecionar-produtos input {
  margin-bottom: 20px;
  margin-right: 10px;
}
.adicionar form label.product-qty {
  width: auto !important;
}
.adicionar form label.product-qty .quantity {
  border: 1px solid rgba(91, 91, 91, 0.25);
  border-radius: 6px;
}
.adicionar form label.product-qty .quantity input.input-qnt {
  border: none;
  display: inline-flex;
  max-width: 35px;
  text-align: center;
  color: #707070;
  font-size: 16px;
  line-height: 22px;
  padding: inherit;
  background: none;
}
.adicionar form label.product-qty .quantity .plus a {
  display: inline-block;
  padding: 10px 15px;
  color: rgba(91, 91, 91, 0.75);
  line-height: 22px;
  font-size: 16px;
}
.adicionar form label.product-qty .quantity .plus a:hover {
  background: rgba(206, 212, 218, 0.2);
  color: inherit;
  text-decoration: none;
}
.adicionar form label.product-name {
  width: 40% !important;
}
.adicionar form .wrap-produtos {
  width: 100%;
}
.adicionar form .wrap-produtos .produto1, .adicionar form .wrap-produtos .produto {
  display: flex;
  flex-wrap: wrap;
}
.adicionar form .wrap-produtos .produto1 > label, .adicionar form .wrap-produtos .produto > label {
  width: 20%;
}
.adicionar form .wrap-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  display: none;
}
.adicionar form .wrap-btn.active {
  display: flex;
}
.adicionar form .wrap-btn a.btn.grey {
  background: #F2F2F2;
  border-color: #F2F2F2;
  color: #707070;
  padding: 10px 40px;
  margin-top: 15px;
}
.adicionar form .wrap-btn a.btn.grey:hover {
  background: #5B5B5B;
  border-color: #5B5B5B;
  color: #fff;
}
.adicionar form .total {
  width: 80%;
  border: 1px solid rgba(91, 91, 91, 0.25);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.adicionar form .total p {
  padding: 10px 40px;
}
.adicionar form .total a.btn.green {
  width: auto;
  padding: 20px 40px;
  font-weight: 700;
}
.adicionar form label {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 15px 0;
}
.adicionar form label p {
  text-align: center;
}

@media (max-width: 768px) {
  .adicionar form .total {
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding: 20px;
  }
  .adicionar form .total a.btn.green {
    margin-top: 10px;
    padding: 15px 25px;
  }
  .adicionar .bottom .legenda > div {
    width: 38%;
    font-size: 14px;
  }
  .adicionar .bottom .legenda > div strong {
    display: block;
  }
  .adicionar hr {
    margin: 20px 0;
  }
  .adicionar form label {
    width: 100% !important;
    margin: 10px 0;
  }
  .adicionar form label.upload a.btn {
    margin-top: 0;
  }
  .adicionar form label.product-name {
    width: 100% !important;
  }
  .adicionar form label.product-qty {
    margin: 15px auto;
  }
  .adicionar form .wrap-btn a.btn.grey {
    width: 100%;
  }
}
.login main {
  padding: 100px 0;
  text-align: center;
}
.login main form.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25%;
  margin: 0 auto;
}
.login main form.login > img {
  margin-bottom: 20px;
}
.login main form.login label {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.login main form.login label input {
  border: 1px solid #D6D6D6;
  border-radius: 5px;
  padding: 15px 10px 15px 50px;
  width: calc(100% - 62px);
}
.login main form.login label > img {
  position: absolute;
  top: 15px;
  left: 20px;
}
.login main form.login label > img.eye {
  left: inherit;
  right: 20px;
  top: 20px;
}
.login main form.login label:nth-of-type(3) {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.login main form.login label:nth-of-type(3) input {
  width: auto;
  margin-right: 10px;
}
.login main form.login .btn {
  margin: 10px 0;
  width: 100%;
}
.login main form.login p a {
  color: #C8B48F;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login main form.login {
    width: 100%;
  }
  .login main {
    padding: 30px 20px;
  }
}
.options main {
  padding: 50px 0;
}
.options main ul.thumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.options main ul.thumbs li {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.options main ul.thumbs li p {
  margin: 10px 0;
  color: #5A5A5A;
}
.options main ul.thumbs li a.btn {
  padding: 10px 50px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .options main ul.thumbs {
    flex-direction: column;
  }
  .options main ul.thumbs li {
    margin: 15px 0;
  }
  .options main ul.thumbs li:first-child {
    margin-top: 0;
  }
}
.consulta section.top {
  color: #707070;
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  display: none;
}
.consulta section.top.active {
  display: block;
}
.consulta section.top h3 {
  font-weight: 700;
}
.consulta section.top form {
  position: relative;
  margin-top: 20px;
  display: flex;
}
.consulta section.top form input, .consulta section.top form select {
  border: 1px solid #D6D6D6;
  border-radius: 10px;
  padding: 15px 35px;
  width: 100%;
}
.consulta section.top form #date_from {
  margin-right: 15px;
}
.consulta section.top form button {
  margin-left: 15px;
  padding: 10px 50px;
}
.consulta section.bottom {
  display: none;
  max-width: 70%;
  margin: 0 auto;
}
.consulta section.bottom.active {
  display: block;
}
.consulta section.bottom .legenda {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.consulta section.bottom .legenda > div {
  margin: 0 20px;
}
.consulta #accordion {
  background: none !important;
}
.consulta #accordion .card {
  border: none !important;
  border-bottom: 2px solid #DEDEDE !important;
}
.consulta #accordion .card .card-header {
  background: none;
  border: none;
}
.consulta #accordion .card:last-child {
  border-bottom: none !important;
}
.consulta .other-options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
.consulta .other-options label {
  width: 250px;
}
.consulta .other-options button.btn.red {
  padding: 15px 40px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #date_from {
    margin-bottom: 12px;
  }
  .consulta .other-options {
    flex-direction: column;
  }
  .consulta section.top h3 {
    font-size: 24px;
  }
  .consulta section.top {
    max-width: 100%;
  }
  .consulta section.top form {
    flex-direction: column;
  }
  .consulta section.top form button {
    margin-left: 0;
    margin-top: 10px;
  }
  .consulta section.bottom {
    max-width: 100%;
  }
  .consulta section.bottom .legenda {
    flex-wrap: wrap;
  }
  #accordion .card .card-header button {
    padding: 5px;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */