.scroll::-webkit-scrollbar {
  width: 10px;
  background-color: beige;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #2fad66;
}

::selection {
  background-color: #6fc695;
  color: beige;
}

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

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
}

body ul {
  list-style: none;
  padding: 0;
}

body .micro-screen {
  display: none;
}

body footer a:hover {
  color: rgb(0, 0, 0) !important;
}

body #company-sec .box-content span::selection {
  background-color: #ab8287;
  color: #f8f4eb;
}

body #company-sec .box-content h2::selection {
  background-color: #ab8287;
  color: #f8f4eb;
}

body #company-sec .box-content h3::selection {
  background-color: #ab8287;
  color: #f8f4eb;
}

body #company-sec .box-content p::selection {
  background-color: #ab8287;
  color: #f8f4eb;
}

body #company-sec .box-content img::selection {
  background-color: #ab8287;
  color: #f8f4eb;
}

body .modal-dialog {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

body .modal-dialog .modal-content .modal-header {
  border: none;
}

body .modal-dialog .modal-content .modal-header .row {
  width: 100%;
}

body .modal-dialog .modal-content .modal-header .row .btn-close-modal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

body .modal-dialog .modal-content .modal-header .row .btn-close-modal .btn-close {
  padding: 0;
  margin: 0;
  font-size: 1.8rem;
}

body .modal-dialog .modal-content .modal-header .row .btn-close-modal .btn-close:hover {
  color: #ffffff;
}

body .modal-dialog .modal-content .modal-header .row .menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: 0;
  align-items: center;
  flex-direction: row;
}

body .modal-dialog .modal-content .modal-header .row .menu-list ul {
  margin: 0;
  display: grid;
  grid-template-columns: auto auto auto;
  list-style: none;
  column-gap: 30px;
}

body .modal-dialog .modal-content .modal-header .row .menu-list ul li a {
  cursor: pointer;
  color: #234833;
  text-decoration: none;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario h2 {
  text-transform: inherit;
  font-size: 2rem;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 0.7em;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario h2::after {
  content: '';
  display: block;
  width: 80%;
  height: 2px;
  background-color: #234833;
  margin: 0 auto;
  margin-top: 0.1em;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario form label {
  color: #ff2727;
  font-size: 0.88rem;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario form .input-group {
  background-color: #f7f7f7;
  border-radius: 50px;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .input-group-text {
  background-color: transparent;
  border: none;
  border-bottom: 3px solid #2fad66;
  border-radius: 0px 23px;
  padding-right: 0;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .input-group-text
  i {
  font-size: 2rem;
  color: #2fad66;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .form-control {
  background-color: transparent;
  border: none;
  border-radius: 0px 50px 50px 0px;
  border-right: 3px solid #2fad66;
  border-bottom: 3px solid #2fad66;
  padding-left: 1em;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .form-control:focus {
  box-shadow: 1px 4px 14px 5px rgba(154, 215, 255, 0.5);
  border-radius: 0px 50px 50px 0px;
  background-color: #ffffff;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario .box-btn-entrar {
  height: auto;
  margin-top: 0.7em;
  margin-left: auto;
  height: auto;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario .box-btn-entrar a {
  margin-top: 15px;
  margin-right: 5px;
  font-style: italic;
  color: #2fad66;
  cursor: pointer;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  .box-btn-logins {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 15px;
}

body .modal-dialog .modal-content .modal-body .row .box-formulario .box-btn-entrar input,
body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  button {
  transition: 0.4s;
  background: #00ab55;
  border: 1px solid #00ab55;
  color: #fff;
  padding: 10px 15px;
  min-width: 100px;
  width: auto;
  border-radius: 50px;
  font-weight: 100;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  input:hover {
  background: #15693f;
  border: 1px solid #15693f;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  input:disabled {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}

body
  .modal-dialog
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  button:disabled {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}

body .modal-retornos .modal-content {
  height: auto;
  min-height: 300px;
  border-radius: 16px;
  background-image: inherit;
}

body .modal-retornos .modal-content .modal-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px;
}

body .modal-retornos .modal-content .modal-body .row {
  width: 95%;
}

body .modal-retornos .modal-content .modal-body .row .box-conteudo-retorno {
  padding: 1.5em;
}

body .modal-retornos .modal-content .modal-body .row .box-conteudo-retorno .box-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

body
  .modal-retornos
  .modal-content
  .modal-body
  .row
  .box-conteudo-retorno
  .box-content
  h6 {
  margin: 0;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #000;
  letter-spacing: 0.02rem;
}

body
  .modal-retornos
  .modal-content
  .modal-body
  .row
  .box-conteudo-retorno
  .box-content
  p {
  text-align: center;
  margin-top: 1em;
  color: red;
}

body
  .modal-retornos
  .modal-content
  .modal-body
  .row
  .box-conteudo-retorno
  .box-content
  .sub {
  font-size: 0.8rem;
  height: 75px;
  color: #949393;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
}

body .modal-retornos .modal-content .modal-body .row .box-conteudo-retorno .box-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1em;
}

body .modal-retornos .modal-erro {
  background: linear-gradient(137.33deg, #ffffff 50%, #ff9c9c 179.23%);
}

body .modal-retornos .modal-erro .box-content h6 span {
  color: #fc2525;
}

body .modal-retornos .modal-erro .box-btn button {
  width: 130px;
  background: transparent;
  border: 3px solid #fc2525;
  color: #fc2525;
  border-radius: 3px;
}

body .modal-retornos .modal-sucesso {
  background: linear-gradient(330.29deg, #abffa9 -37.83%, #ffffff 42.22%);
}

body .modal-retornos .modal-sucesso .box-content h6 span {
  color: #00ab55;
}

body .modal-retornos .modal-sucesso .box-btn button {
  width: 130px;
  background: transparent;
  border: 3px solid #2fad66;
  color: #2fad66;
  border-radius: 3px;
}

body #modalLogar .box-btn-entrar {
  margin-top: 1.3em;
  text-align: end;
}

body #recuperarSenha .modal-content {
  background-image: url('../img/modais/large/background-recuperar.png');
}

body
  #recuperarSenha
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .input-group-text {
  border-bottom: 3px solid #599938;
}

body
  #recuperarSenha
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .input-group-text
  i {
  color: #599938;
}

body
  #recuperarSenha
  .modal-content
  .modal-body
  .row
  .box-formulario
  form
  .input-group
  .form-control {
  border-right: 3px solid #599938;
  border-bottom: 3px solid #599938;
}

body
  #recuperarSenha
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  input {
  background: #599938;
  border: 1px solid #599938;
}

body
  #recuperarSenha
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  input:hover {
  background: #3e642a;
  border: 1px solid #3e642a;
}

body
  #recuperarSenha
  .modal-content
  .modal-body
  .row
  .box-formulario
  .box-btn-entrar
  input:disabled {
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
}

/*# sourceMappingURL=style-glob.css.map */
