<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">img {
  filter: blur(0);
  -webkit-filter: blur(0);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.modal-content {
  border-radius: 7px !important;
}

.tooltip_titulo {
  position: relative;
  display: inline-block;
  width: 100%;
}
.tooltip_titulo .tooltip_icone {
  font-size: 16px;
  color: #6d6767;
}
.tooltip_titulo .tooltip_texto {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s linear, opacity 0.1s linear;
  width: 96%;
  background-color: #333333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 0;
  font-size: 16px;
}
.tooltip_titulo .tooltip_texto::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #333333 transparent;
}
.tooltip_titulo:hover .tooltip_texto {
  visibility: visible;
  opacity: 1;
}

.tooltip_titulo_footer {
  position: relative;
  display: inline-block;
  width: 100%;
}
.tooltip_titulo_footer .tooltip_icone_footer {
  font-size: 16px;
  color: #ffffff;
}
.tooltip_titulo_footer .tooltip_texto_footer {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s linear, opacity 0.1s linear;
  width: 340px;
  top: -50px;
  background-color: #333333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  left: 0;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .tooltip_titulo_footer .tooltip_texto_footer {
    width: 200%;
    top: -70px;
  }
}
.tooltip_titulo_footer .tooltip_texto_footer::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
}
.tooltip_titulo_footer:hover .tooltip_texto_footer {
  visibility: visible;
  opacity: 1;
}

.icone-fechar {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  transition: all ease 0.2s;
}
.icone-fechar:hover {
  filter: contrast(0.5);
}
.icone-fechar::before, .icone-fechar::after {
  position: absolute;
  right: 25px;
  top: 0;
  content: " ";
  height: 50px;
  width: 4px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.85);
}
@media only screen and (max-width: 576px) {
  .icone-fechar::before, .icone-fechar::after {
    height: 40px !important;
    right: 20px !important;
  }
}
.icone-fechar::before {
  transform: rotate(45deg);
}
.icone-fechar::after {
  transform: rotate(-45deg);
}

@font-face {
  font-family: Neo Sans;
  src: url("../fonts/Neo-Sans-Std-Regular.otf") format("opentype");
}
@font-face {
  font-family: Neo Sans Bold;
  src: url("../fonts/Neo-Sans-Std-Bold.otf") format("opentype");
}
@font-face {
  font-family: Neo Sans Light;
  src: url("../fonts/Neo-Sans-Std-Light.otf") format("opentype");
}
html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Neo Sans" !important;
}

.corFundo {
  background-color: #f5f5f5;
}

.header {
  height: 100%;
}

.header-mobile {
  background-color: white;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  z-index: 2;
}

.menuHeader-mobile {
  display: none;
}

.menuHeader-desktop {
  /* display: flex; */
  /* justify-content: center; */
  /* align-items:center; */
  background: white;
  height: 100%;
  /* background: #00675A; */
  /* color:white; */
}

.logoMenuHeader-desktop {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logoMenuHeader-desktop img {
  max-width: 100%;
}

.itensMenuHeader-desktop {
  height: 10%;
  background: whitesmoke;
  border-bottom: 3px solid #d4d4d4;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.itensMenuHeader-desktop:hover {
  background-color: #d4d4d4;
}

@media only screen and (max-width: 767px) {
  .corFundo {
    background-color: #f7f7f7;
  }

  .header {
    background-color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
  }

  .menuHeader-mobile {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    height: 60px;
    bottom: 0;
    box-shadow: 0 0px 3px 0px #333;
  }

  .menuHeader-desktop {
    display: none;
  }

  .fa-plus {
    color: green;
  }

  .fa-minus {
    color: red;
  }
}
@media only screen and (max-width: 500px) {
  .logoMenuSup {
    display: flex;
    justify-content: center;
    background-color: white;
    height: auto;
    padding-top: 18px;
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
  }
  .logoMenuSup .logoMenuSup_img {
    width: 60% !important;
  }

  .topoMenuSup {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #00675A;
    color: white;
    height: auto;
    padding: 5px;
  }

  .topoMenuSup-despesas {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #c4343e;
    color: white;
    height: auto;
    padding: 5px;
  }
}
@media only screen and (min-width: 501px) and (max-width: 768px) {
  .logoMenuSup {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: white;
    height: auto;
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .logoMenuSup .logoMenuSup_img {
    width: 30% !important;
  }

  .topoMenuSup {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #00675A;
    color: white;
    height: auto;
    padding: 5px;
  }

  .topoMenuSup-despesas {
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #c4343e;
    color: white;
    height: auto;
    padding: 5px;
  }
}
.topoMenuSup {
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: #00675A;
  color: white;
  height: auto;
  padding: 5px;
}

.topoMenuSup-despesas {
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: #c4343e;
  color: white;
  height: auto;
  padding: 5px;
}

.logoMenuSup {
  display: flex;
  justify-content: center;
  background-color: white;
  height: auto;
  padding-top: 18px;
  padding-bottom: 24px;
}
.logoMenuSup .logoMenuSup_img {
  width: 15%;
}

.fa, .fas {
  padding-right: 10px;
}

.item-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-menu_sub {
  width: auto;
}

.item-menu_esq {
  width: 25%;
}

.item-menu_meio {
  width: 50%;
}

.item-menu_dir {
  width: 25%;
}

.img-menu {
  width: 50px;
  height: auto;
  padding: 10px;
  filter: contrast(0.1);
}

.img-menu:hover {
  filter: contrast(0.3);
}

.img-menu-meio {
  width: 60px;
  height: auto;
  padding: 10px;
}

.img-menu-sair {
  width: 48px;
  height: auto;
  padding: 10px;
  filter: contrast(0.1);
}

.img-menu-sair:hover {
  filter: contrast(0.3);
}

.textoItemMenu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iconeItemMenu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.home {
  height: 100%;
}

.tutorial_uso {
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.tutorial_uso_fechar {
  position: absolute;
  top: 30px;
  right: 15px;
}
.tutorial_uso_fechar .icone-fechar {
  padding: 15px 25px !important;
}
.tutorial_uso .row_video {
  padding: 100px;
}
@media only screen and (max-width: 991px) {
  .tutorial_uso .row_video {
    padding: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .tutorial_uso .row_video {
    padding: 30px;
  }
}
.tutorial_uso .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.tutorial_uso .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tutorial_uso_open {
  opacity: 1;
  visibility: visible;
}

.containerImagemHome {
  height: 100%;
  background-image: url("../img/img-transparent.png");
  background-size: 130% auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -webkit-transition: background-image 1s;
  background-position: right 35%;
  background-repeat: no-repeat;
  background-color: #004a46;
}
.containerImagemHome .texto-home {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-end;
  font-size: 36px;
  text-align: center;
  color: white;
  font-family: Neo Sans Bold;
  padding-bottom: 15%;
  width: 90%;
}
.containerImagemHome .btn-home {
  display: none;
}

.link-home {
  text-decoration: none;
}
.link-home button {
  border: 2px solid rgba(88, 89, 91, 0.9);
}

.containerImgHome {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 55%;
  position: absolute;
  top: 35%;
}

.containerLogoHome {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.botao-home-desktop, .botao-home-desktop-howto {
  display: flex;
  justify-content: center;
  width: 100%;
}

.botao-home-desktop {
  position: absolute;
  top: 60%;
}

.botao-home-desktop-howto {
  position: absolute;
  top: 70%;
}

.link-home {
  position: absolute;
  z-index: 2;
}

.btn-home {
  color: #fff !important;
  background-color: #FFB612 !important;
  border-color: #FFB612 !important;
  font-weight: bold !important;
  font-size: 150% !important;
  font-family: Neo Sans Bold !important;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px 20px 50px;
  text-decoration: none;
}

@media only screen and (max-width: 400px) {
  .botao-desktop {
    display: none;
  }

  .containerImagemHome {
    background-size: 130% auto;
    background-repeat: no-repeat;
    background-position: right 35%;
    background-repeat: no-repeat;
    background-color: linear-gradient(transparent, #004a46);
    display: block;
    height: 65%;
  }
  .containerImagemHome .texto-home {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 88%;
    font-size: 26px;
    text-align: center;
    color: white;
    text-shadow: none;
    width: auto;
    padding-bottom: 5%;
  }

  .containerImgHome {
    width: 65%;
    height: auto;
  }

  .containerLogoHome {
    height: 35%;
    text-align: center;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .containerBotaoHome {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
  }
  .containerBotaoHome .link-home {
    margin-bottom: -35px;
    position: absolute;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .containerBotaoHome .btn-home {
    color: #fff !important;
    background-color: #FFB612 !important;
    border-color: #FFB612 !important;
    font-weight: bold !important;
    font-size: 165% !important;
    font-family: Neo Sans Bold !important;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px 15px 40px;
  }
  .containerBotaoHome button:hover {
    background-color: #f7ad05 !important;
    border-color: #d69400 !important;
  }

  .botao-home-desktop {
    display: none;
  }
}
@media only screen and (min-width: 401px) and (max-width: 767px) {
  .botao-desktop {
    display: none;
  }

  .containerImagemHome {
    display: block;
    height: 65%;
    background-size: 130% auto;
    background-repeat: no-repeat;
    background-position: right 35%;
    background-repeat: no-repeat;
    background-color: linear-gradient(transparent, #004a46);
  }
  .containerImagemHome .texto-home {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 88%;
    font-size: 32px;
    text-align: center;
    color: white;
    text-shadow: none;
    width: auto;
    padding-bottom: 3%;
  }

  .containerImgHome {
    width: 45%;
    height: auto;
    position: absolute;
    top: 33%;
  }

  .containerLogoHome {
    height: 35%;
    text-align: center;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .containerBotaoHome {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
  }
  .containerBotaoHome .link-home {
    margin-bottom: -35px;
    position: absolute;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .containerBotaoHome .btn-home {
    color: #fff !important;
    background-color: #FFB612 !important;
    border-color: #FFB612 !important;
    font-weight: bold !important;
    font-size: 165% !important;
    font-family: Neo Sans Bold !important;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px 15px 40px;
  }
  .containerBotaoHome button:hover {
    background-color: #f7ad05 !important;
    border-color: #d69400 !important;
  }

  .botao-home-desktop {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .botao-home-desktop-howto {
    top: 35px;
  }
  .botao-home-desktop-howto button {
    background-color: transparent !important;
    color: #58595b !important;
    border-color: transparent !important;
    font-size: 16px !important;
    border-bottom: 2px solid rgba(88, 89, 91, 0.9) !important;
    border-radius: 0;
    font-family: Neo Sans Bold !important;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
  }
  .botao-home-desktop-howto button:hover {
    background-color: #ececec !important;
    border-color: #e8e8e8 !important;
  }
}
.conteudo-login {
  width: 100%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titulo-login {
  font-size: 28px;
  margin: 5%;
  text-align: center;
}

.titulo-cadastro {
  font-size: 28px;
  margin-top: 5%;
  text-align: center;
  width: 100%;
  height: auto;
}

.formulario-cadastro {
  width: 60%;
  margin-bottom: 30px;
}

.form-login, .form-cadastro {
  padding: 2%;
  margin-top: 2.5%;
  font-size: 14px !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.form-login .formulario-desktop, .form-cadastro .formulario-desktop {
  width: 40%;
}
.form-login .form-control, .form-cadastro .form-control {
  border-color: #e6e8ea;
  padding: 6%;
}
.form-login .form-text-aviso, .form-cadastro .form-text-aviso, .form-login .form-text-sucesso, .form-cadastro .form-text-sucesso {
  text-align: center;
  background: #ff605c;
  border: 1.5px solid #e53c37;
  color: #ffffff !important;
  padding: 0.2%;
  margin: 0 !important;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.form-login .form-text-sucesso, .form-cadastro .form-text-sucesso {
  background: #009581;
  border: 1.5px solid #006c67;
}
.form-login .form-text-cep, .form-cadastro .form-text-cep {
  text-align: center;
  /* margin-top: 2%; */
  background: #006c67;
  color: white !important;
  padding: 1%;
  margin: 0 !important;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.form-login .form-group-cadastro-crm, .form-cadastro .form-group-cadastro-crm {
  display: flex;
  justify-content: space-between;
}
.form-login .container-senha, .form-cadastro .container-senha {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  width: 100%;
}
.form-login .container-senha .input-senha, .form-cadastro .container-senha .input-senha {
  width: 100%;
  outline: none;
}
.form-login .container-senha .icone-olho, .form-cadastro .container-senha .icone-olho {
  padding: 10px;
  background: #e8e8e8;
  color: #495057;
  min-width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25em;
  font-size: 17px;
  border-top: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  cursor: pointer;
}
.form-login .crmCadastro, .form-cadastro .crmCadastro {
  width: 69%;
}
.form-login .selectCadastro, .form-cadastro .selectCadastro {
  padding: 0 0 0 4% !important;
  border-color: #e6e8ea;
  color: #6d767e;
  width: 30%;
  background-color: white;
}
.form-login .selectCadastro .opcaoCadastro, .form-cadastro .selectCadastro .opcaoCadastro {
  padding: 6px;
}
.form-login .btn-primary, .form-cadastro .btn-primary {
  background-color: #009581 !important;
  width: 100% !important;
  margin: 1%;
  border-radius: 10px;
  padding: 10px 0 10px 0;
  border-color: #009581;
}
.form-login .btn-secondary, .form-cadastro .btn-secondary {
  background-color: #f7b624 !important;
  width: 100% !important;
  margin: 1%;
  border-radius: 10px;
  padding: 10px 0 10px 0;
  border-color: #f7b624;
}
.form-login .btn-secondary:hover, .form-cadastro .btn-secondary:hover {
  border-color: #f7b624 !important;
}
.form-login .esqueciSenha, .form-cadastro .esqueciSenha {
  margin-top: 5%;
  text-align: center;
}
.form-login .esqueciSenha a, .form-cadastro .esqueciSenha a {
  color: grey !important;
}

.form-cadastro {
  margin-bottom: 5%;
}
.form-cadastro .form-group label {
  padding-left: 1% !important;
}
.form-cadastro .form-group .form-control {
  padding: 5%;
}
.form-cadastro .form-group .senhaCadastro {
  margin-bottom: 10%;
}

@media only screen and (max-width: 767px) {
  .titulo-cadastro {
    margin-top: 10%;
  }

  .formulario-cadastro {
    width: 100%;
    margin-bottom: 60px;
  }

  .form-login, .form-cadastro {
    padding: 10%;
    font-size: 14px !important;
  }
  .form-login .formulario-desktop, .form-cadastro .formulario-desktop {
    width: 100%;
  }
  .form-login .form-control, .form-cadastro .form-control {
    border-color: #e6e8ea;
    padding: 8% 8% 8% 4%;
  }
  .form-login .form-text-aviso, .form-cadastro .form-text-aviso, .form-login .form-text-sucesso, .form-cadastro .form-text-sucesso {
    text-align: center;
    background: #ff605c;
    border: 1.5px solid #e53c37;
    color: #ffffff !important;
    padding: 0.5%;
    margin: 0 !important;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  .form-login .form-text-sucesso, .form-cadastro .form-text-sucesso {
    background: #009581;
    border: 1.5px solid #006c67;
  }
  .form-login .form-text-cep, .form-cadastro .form-text-cep {
    text-align: center;
    /* margin-top: 2%; */
    background: #006c67 !important;
    color: white !important;
    padding: 2%;
    margin: 0 !important;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  .form-login .form-group-cadastro-crm, .form-cadastro .form-group-cadastro-crm {
    display: flex;
    justify-content: space-between;
  }
  .form-login .crmCadastro, .form-cadastro .crmCadastro {
    width: 60%;
  }
  .form-login .selectCadastro, .form-cadastro .selectCadastro {
    padding: 0 0 0 4% !important;
    border-color: #e6e8ea;
    color: #6d767e;
    width: 39%;
    background-color: white;
  }
  .form-login .selectCadastro .opcaoCadastro, .form-cadastro .selectCadastro .opcaoCadastro {
    padding: 6px;
  }
  .form-login .btn-primary, .form-cadastro .btn-primary {
    background-color: #009581 !important;
    width: 100% !important;
    margin: 1%;
    border-radius: 10px;
    padding: 15px 0 15px 0;
    border-color: #009581;
  }
  .form-login .btn-secondary, .form-cadastro .btn-secondary {
    background-color: #f7b624 !important;
    width: 100% !important;
    margin: 1%;
    border-radius: 10px;
    padding: 15px 0 15px 0;
    border-color: #f7b624;
  }
  .form-login .esqueciSenha, .form-cadastro .esqueciSenha {
    margin-top: 5%;
    text-align: center;
  }
  .form-login .esqueciSenha a, .form-cadastro .esqueciSenha a {
    color: grey !important;
  }

  .form-cadastro {
    margin-top: 10%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .tituloTopo {
    padding: 5%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: white;
  }
  .dashboard .valorDaConsulta {
    height: 350px;
    background-image: linear-gradient(to top right, #5eafa4, #00675a);
    padding: 10%;
  }
  .dashboard .valorDaConsulta .titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
  }
  .dashboard .valorDaConsulta .titulo .textoValor {
    font-size: 18px;
    font-family: Neo Sans Light;
  }
  .dashboard .valorDaConsulta .titulo .valorPrinc {
    font-size: 45px;
    font-weight: bold;
  }
  .dashboard .valorDaConsulta .tabela {
    display: flex;
    background-color: white;
    border-radius: 15px;
    margin-top: 10px;
    padding: 15px 0px 15px 10px;
    color: #58595b;
  }
  .dashboard .botoes {
    margin-top: 5%;
  }
  .dashboard .botoes .btnDash {
    width: 100%;
    margin-bottom: 15px;
    padding: 20px;
    color: white;
    font-family: Neo Sans Bold;
    border-radius: 15px;
  }
  .dashboard .botoes .btn-calculos {
    background-color: #00998f !important;
    border-color: #00998f !important;
  }
  .dashboard .botoes .btn-lancamentos {
    background-color: #ffbf01 !important;
    border-color: #ffbf01 !important;
  }
  .dashboard .anuncio {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dashboard .anuncio .titulo {
    text-align: center;
  }
  .dashboard .anuncio .anuncioContainer {
    margin-top: 1%;
    width: 100%;
    height: auto;
    margin-bottom: 75px;
    border: 2px solid #b4b4b4;
    display: flex;
    justify-content: center;
  }
  .dashboard .anuncio .anuncioContainer img {
    max-width: 100%;
  }

  .menu-desktop {
    width: 100%;
  }
  .menu-desktop .topo {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .menu-desktop .topo .topo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .menu-desktop .topo .img {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  .menu-desktop .topo .container-img-perfil {
    width: 100px;
    height: 95px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid orange;
  }
  .menu-desktop .topo .img-perfil {
    width: 100%;
    min-height: 100%;
  }
  .menu-desktop .topo .texto {
    width: 50%;
    height: 100%;
    padding: 10%;
    margin-left: 5%;
  }
  .menu-desktop .topo .nome {
    font-size: 26px;
    font-weight: bold;
    display: inline-block;
    word-break: break-word;
  }
  .menu-desktop .topo-esconder {
    display: none;
  }
  .menu-desktop .menu {
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  .dashboard .tituloTopo {
    padding: 5%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: white;
  }
  .dashboard .valorDaConsulta {
    height: 300px;
  }
  .dashboard .valorDaConsulta .titulo .textoValor {
    font-size: 14px;
  }
  .dashboard .valorDaConsulta .titulo .valorPrinc {
    font-size: 35px;
  }
  .dashboard .valorDaConsulta .tabela {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .dashboard .tituloTopo {
    padding: 5%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: white;
  }
  .dashboard .valorDaConsulta {
    height: 350px;
    background-image: linear-gradient(to top right, #5eafa4, #00675a);
    padding: 3%;
  }
  .dashboard .valorDaConsulta .titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
  }
  .dashboard .valorDaConsulta .titulo .textoValor {
    font-size: 18px;
    font-family: Neo Sans Light;
  }
  .dashboard .valorDaConsulta .titulo .valorPrinc {
    font-size: 45px;
    font-weight: bold;
  }
  .dashboard .valorDaConsulta .tabela {
    display: flex;
    background-color: white;
    border-radius: 15px;
    margin-top: 10px;
    padding: 15px 0px 15px 10px;
    color: #58595b;
  }
  .dashboard .botoes {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .dashboard .botoes .btnDash {
    width: 100%;
    margin-bottom: 15px;
    padding: 20px;
    color: white;
    font-family: Neo Sans Bold;
    border-radius: 15px;
  }
  .dashboard .botoes .btn-calculos-container {
    display: flex;
    justify-content: center;
  }
  .dashboard .botoes .btn-calculos-container .btn-calculos {
    background-color: #00998f !important;
    border-color: #00998f !important;
    width: 70%;
  }
  .dashboard .botoes .btn-lancamentos-container {
    display: flex;
    justify-content: center;
  }
  .dashboard .botoes .btn-lancamentos-container .btn-lancamentos {
    background-color: #ffbf01 !important;
    border-color: #ffbf01 !important;
    width: 70%;
  }
  .dashboard .anuncio {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dashboard .anuncio .titulo {
    text-align: center;
  }
  .dashboard .anuncio .anuncioContainer {
    margin-top: 1%;
    height: auto;
    width: 80%;
    margin-bottom: 35px;
    border: 2px solid #b4b4b4;
    display: flex;
    justify-content: center;
  }
  .dashboard .anuncio .anuncioContainer img {
    max-width: 100%;
  }

  .menu-desktop {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .menu-desktop .topo {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .menu-desktop .topo .topo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10% 0 10% 0;
  }
  .menu-desktop .topo .img {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  .menu-desktop .topo .container-img-perfil {
    width: 100px;
    height: 95px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid orange;
  }
  .menu-desktop .topo .img-perfil {
    width: 100%;
    min-height: 100%;
  }
  .menu-desktop .topo .texto {
    width: 50%;
    height: 100%;
    padding: 10%;
    margin-left: 5%;
  }
  .menu-desktop .topo .nome {
    font-size: 26px;
    font-weight: bold;
    word-break: break-word;
  }
  .menu-desktop .menu {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 4%;
  }
  .menu-desktop .menu .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 40%;
    background: white;
    padding: 15px;
    border-left: 1px solid #f1f1f1;
    text-decoration: none;
    color: #212529;
    border-top: 1px solid #5d5d5d;
    border-bottom: 1px solid #5d5d5d;
  }
  .menu-desktop .menu .menu-item_esq {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-left: 1px solid #5d5d5d;
  }
  .menu-desktop .menu .menu-item_dir {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-right: 1px solid #5d5d5d;
  }
  .menu-desktop .menu .menu-item_ativo {
    background-color: #00a398;
    color: white;
  }
  .menu-desktop .menu .menu-item_ativo_despesas {
    background-color: #e53c37;
    color: white;
  }
  .menu-desktop .menu .menu-item:hover {
    background: #efefef;
    transition: 0.3s;
  }
  .menu-desktop .menu .menu-item_ativo:hover {
    background: #008a80;
    transition: 0.3s;
  }
  .menu-desktop .menu .menu-item_ativo_despesas:hover {
    background: #f2524e;
    transition: 0.3s;
  }
}
@media only screen and (min-width: 1381px) {
  .dashboard {
    width: 50%;
    margin-left: 25%;
    border-left: 10px solid #e8e8e8;
    border-right: 10px solid #e8e8e8;
  }
  .dashboard .tituloTopo {
    padding: 5%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: white;
  }
}
.despesas {
  margin-bottom: 0% !important;
}

.container-receitas .titulo {
  padding: 5%;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.container-receitas .titulo-2 {
  padding-top: 5%;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.container-receitas .titulo-receitas, .container-receitas .titulo-despesas {
  padding: 10px 0% 10px 5%;
  font-size: 18px;
  font-family: Neo Sans Bold;
  color: #007b6f;
}
.container-receitas .titulo-despesas {
  color: #c4343e;
}
.container-receitas .aviso-area-associado {
  width: 90%;
  display: flex;
  justify-content: center;
  background: #e53c37;
  padding: 5%;
  margin-left: 5%;
  margin-bottom: 5%;
  border-radius: 0.25em;
  color: white;
  font-size: 20px;
  flex-direction: column;
  align-items: center;
  border: 3px solid #c4343e;
}
.container-receitas .aviso-area-associado_receitas {
  background: #009581 !important;
  border: 3px solid #00675a !important;
  margin-bottom: 0 !important;
}
.container-receitas .botao-aviso-associado {
  margin-top: 5%;
  border-radius: 0.25em;
  background: #f5f5f5;
  font-weight: bold;
  border: 0.5px solid #333333;
  /* color: white; */
  padding: 10px 40px 10px 40px;
  transition: 0.1s;
  text-decoration: none;
  color: #333333;
  box-shadow: 0px 4px #333333;
  text-align: center;
}
.container-receitas .botao-aviso-associado:hover {
  margin-top: 5%;
  border-radius: 0.25em;
  background: #e7e7e7;
  font-weight: bold;
  /* color: white; */
  padding: 10px 40px 10px 40px;
  transition: 0.2s;
  box-shadow: none;
}
.container-receitas .dropdown-despesas {
  padding: 15px 5% 15px 5%;
  font-family: Neo Sans Bold;
  color: #363439;
  display: flex;
  justify-content: space-between;
}
.container-receitas .dropdown-button {
  width: 20px;
  filter: contrast(0.1);
}
.container-receitas .subtitulo-receitas {
  padding: 0px 5% 10px 5%;
  color: #6d6d6d;
  text-align: center;
  padding-bottom: 5%;
}
.container-receitas .subtitulo-despesas {
  padding-top: 1%;
  padding-bottom: 1%;
  color: #6d6d6d;
  display: flex;
  justify-content: center;
  text-align: center;
}
.container-receitas .botao-receitas {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px 0;
  font-family: Neo Sans Bold;
}
.container-receitas .botao-receitas .btn-primary {
  background-color: #009581 !important;
  width: 60%;
  margin: 1%;
  border-radius: 10px;
  padding: 10px 5px 10px 5px;
  border-color: #009581;
}
.container-receitas .botao-receitas .btn-danger {
  background-color: #e53c37 !important;
  width: 60% !important;
  margin: 1%;
  border-radius: 10px;
  padding: 10px 0 10px 0;
  border-color: #e53c37;
}
.container-receitas .botao-receitas .btn-despesas {
  width: 100% !important;
}
.container-receitas .botao-receitas .btn-deducoes {
  width: 100% !important;
}
.container-receitas .botao-despesas-toogle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: Neo Sans Bold;
}
.container-receitas .botao-despesas-toogle .container-toogle {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
}
.container-receitas .botao-despesas-toogle .container-toogle form {
  width: 100%;
  padding: 10px 0 10px 0;
}
.container-receitas .container-btn-deducoes {
  width: 45%;
}
.container-receitas .receitas {
  padding: 0 !important;
  margin-bottom: 10px;
  background-color: white;
}
.container-receitas .receitas .linha {
  margin: 0;
  width: 100%;
  padding: 0;
}
.container-receitas .receitas .item-receitas {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px 20px 40px;
  color: #6d6d6d;
}
.container-receitas .receitas .item-receitas .coluna-receitas {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.container-receitas .receitas .item-receitas .no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container-receitas .receitas .item-receitas .coluna-despesas {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.container-receitas .receitas .overlay {
  position: absolute;
  left: 100%;
  right: 0;
  overflow: hidden;
  width: 0;
  transition: 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  visibility: hidden;
  cursor: pointer;
  font-family: Neo Sans Bold;
}
.container-receitas .receitas .overlay_editar {
  background-color: #009581;
  height: 33.3333%;
  top: 0;
  border-top-left-radius: 15px;
}
.container-receitas .receitas .overlay_excluir {
  background-color: #e53c37;
  height: 33.3333%;
  top: 33.3333%;
}
.container-receitas .receitas .overlay_fechar {
  background-color: grey;
  height: 33.3333%;
  bottom: 0;
  border-bottom-left-radius: 15px;
}
.container-receitas .receitas .item-receitas:hover {
  background-color: rgba(128, 128, 128, 0.1);
  transition: 0.3s;
}
.container-receitas .receitas .item-receitas:hover .overlay {
  width: 50%;
  left: 50%;
  visibility: visible;
}
.container-receitas .receitas .botoes-item-mobile {
  display: none;
}
.container-receitas .receitas .botoes-item-mobile .botao {
  text-align: center;
  display: flex;
  width: 33.33333%;
  color: white;
  align-items: center;
  justify-content: center;
  padding: 3%;
  font-family: Neo Sans Bold;
  float: left;
}
.container-receitas .receitas .botoes-item-mobile .botao_editar {
  background-color: #009581;
}
.container-receitas .receitas .botoes-item-mobile .botao_remover {
  background-color: #e53c37;
}
.container-receitas .receitas .botoes-item-mobile .botao_fechar {
  background-color: grey;
}
.container-receitas .receitas .percentual {
  padding: 10px 0px 10px 0px;
  text-align: center;
}
.container-receitas .receitas .total-retornos, .container-receitas .receitas .container-geral {
  background: #009581;
  color: white;
  display: flex;
  justify-content: center;
  padding: 20px 0 20px 0;
  font-family: Neo Sans Bold;
}
.container-receitas .receitas .total-retornos_deducoes {
  background: #00675A;
  margin-bottom: 60px !important;
  display: flex;
  justify-content: space-around;
  margin-bottom: 10%;
  padding: 20px 20px 20px 0;
}
.container-receitas .receitas .total-retornos .item-deducoes, .container-receitas .receitas .container-geral .item-deducoes {
  width: 45%;
  white-space: nowrap;
  text-align: center;
}
.container-receitas .receitas .total-retornos_item {
  width: 50%;
  white-space: nowrap;
  text-align: center;
}
.container-receitas .receitas .total-retornos_item_2 {
  width: 50%;
  white-space: nowrap;
  text-align: center;
}
.container-receitas .receitas .container-geral {
  flex-direction: column;
  align-items: center;
  background: #00806f;
  font-family: Neo Sans;
}
.container-receitas .receitas .container-geral .quebraLinha {
  white-space: normal;
}
.container-receitas .receitas .container-geral_percentual {
  background: #ffffff;
  color: #6d6d6d;
}
.container-receitas .receitas .container-geral_percentual:hover {
  background-color: rgba(128, 128, 128, 0.1);
  transition: 0.3s;
}
.container-receitas .receitas .container-geral_receitaBruta {
  background: #009581;
  font-family: Neo Sans Bold;
}
.container-receitas .receitas .container-geral_receitaLiquida {
  background: #00675a;
  font-family: Neo Sans Bold;
}
.container-receitas .receitas .container-geral_receitaLiquidaCons {
  background: #00675a;
  font-family: Neo Sans Bold;
}
.container-receitas .receitas .container-geral_outrasDespesas {
  background: white;
  color: #6d6d6d;
}
.container-receitas .receitas .container-geral_totalDespesas {
  background: #c4343e;
  font-family: Neo Sans Bold;
  margin-bottom: 10px;
}
.container-receitas .receitas .container-geral_totalOutrasDespesas {
  background: #f7f7f7;
  font-family: Neo Sans Bold;
  color: grey;
}
.container-receitas .receitas .container-geral_totalOutrasDespesas div {
  white-space: normal;
}
.container-receitas .receitas .container-geral_deducoes {
  background: #ffffff;
  padding: 5px 0px 5px 0px;
  color: #766d6d;
}
.container-receitas .receitas .container-geral_deducoes:hover {
  background-color: rgba(128, 128, 128, 0.1);
  transition: 0.3s;
}
.container-receitas .receitas .container-geral_linha {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  padding: 10px 0 10px 10%;
}
.container-receitas .receitas .container-geral_linha_item {
  width: 40%;
}
.container-receitas .receitas .container-geral_linha_inss {
  display: flex;
  align-items: center;
}
.container-receitas .receitas .container-geral_linha_meio {
  background-color: #009581;
}
.container-receitas .receitas .botoes-deducoes {
  display: flex;
  justify-content: space-around;
}
.container-receitas .receitas .total-itens-despesas {
  background-color: #f7f7f7;
  color: grey;
  display: flex;
  justify-content: center;
  padding: 20px 0 20px 2%;
  font-family: Neo Sans Bold;
}
.container-receitas .receitas .total-despesas {
  background-color: #c4343e;
  color: white;
  display: flex;
  justify-content: center;
  padding: 20px 0 20px 5%;
  font-family: Neo Sans Bold;
  margin-bottom: 10%;
}
.container-receitas .botoes-despesas {
  display: flex;
  justify-content: space-around;
  padding-bottom: 5%;
}
.container-receitas .botoes-despesas .botao-receitas {
  width: 45% !important;
}
.container-receitas .botoes-despesas .botao-receitas .btn-danger {
  width: 30% !important;
}
.container-receitas .btn-simplificado {
  background-color: #c2363f !important;
  width: 100% !important;
  margin: 1%;
  border-radius: 10px;
  padding: 15px 0 15px 0;
  border: #c2363f;
  color: white;
}
.container-receitas .btn-detalhado {
  background-color: #e53c37 !important;
  width: 100% !important;
  margin: 1%;
  border-radius: 10px;
  padding: 15px 0 15px 0;
  border: #e53c37;
  color: white;
}
.container-receitas .btn-detalhado:hover, .container-receitas .btn-simplificado:hover {
  color: white;
}
.container-receitas .titulo-modal, .container-receitas .titulo-modal-despesas {
  color: white;
  background-color: #009581;
}
.container-receitas .titulo-modal span, .container-receitas .titulo-modal-despesas span {
  color: white;
}
.container-receitas .titulo-modal-despesas {
  background-color: #ea5752 !important;
}
.container-receitas .form-lancadas, .container-receitas .form-despesas {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.container-receitas .form-lancadas label, .container-receitas .form-despesas label {
  margin-bottom: 0 !important;
  width: 55%;
}
.container-receitas .form-lancadas .form-control, .container-receitas .form-despesas .form-control {
  width: 80%;
}
.container-receitas .form-group-radio {
  display: block;
  width: 80%;
}
.container-receitas .form-group-radio .container-input {
  display: flex;
  align-items: center;
  width: 45%;
  float: left;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ced4da;
}
.container-receitas .form-group-radio .container-input_sim {
  margin-right: 10%;
}
.container-receitas .form-group-radio .container-input .input {
  width: 20%;
  text-align: center;
}
.container-receitas .form-group-radio .container-input .labelInput {
  width: 80%;
  text-align: center;
}
.container-receitas .form-retornos {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.container-receitas .form-retornos label {
  margin-bottom: 0 !important;
}
.container-receitas .form-retornos .form-control {
  width: 50%;
}
.container-receitas .form-outras-despesas {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.container-receitas .form-outras-despesas label {
  margin-bottom: 0 !important;
  padding-bottom: 10px;
}
.container-receitas .form-outras-despesas .form-control {
  width: 100%;
}
.container-receitas .form-outras-despesas .alerta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.container-receitas .form-outras-despesas .alerta .check-outras-despesas {
  width: 12%;
  margin-right: 3%;
}
.container-receitas .form-outras-despesas .alerta .texto-alerta {
  width: 85%;
}
.container-receitas .btn-salvar {
  background-color: #009581 !important;
  width: 100%;
  margin: 1%;
  border-radius: 10px;
  border-color: #009581;
  color: white;
  padding: 10px 0 10px 0;
}
.container-receitas .btn-salvar:hover, .container-receitas .btn-fechar:hover {
  color: white;
}
.container-receitas .btn-fechar {
  background-color: #ea5d58 !important;
  width: 100% !important;
  margin: 1%;
  border-radius: 10px;
  padding: 10px 0 10px 0;
  color: white;
  border-color: #ea5d58;
}
.container-receitas .modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
@media (max-width: 768px) {
  .container-receitas .modal-dialog {
    min-height: calc(100vh - 20px);
  }
  .container-receitas .aviso-area-associado {
    margin-top: 100px;
    margin-bottom: 180px;
  }
  .container-receitas .aviso-area-associado_receitas {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

.formOpcoesReceitas, .formOpcoesSalarios, .formOpcoesOutrasDespesas {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opcaoReceitas, .opcaoDespesas {
  width: 45%;
  padding: 10px;
  text-align: center;
  background: #e8e8e8;
}
.opcaoReceitas_esq, .opcaoDespesas_esq {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0;
  color: #5d5d5d;
  border-bottom-right-radius: 0;
}
.opcaoReceitas_dir, .opcaoDespesas_dir {
  color: #5d5d5d;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.esconder {
  display: none !important;
}

.radioReceitas:checked + .opcaoReceitas {
  /* target next sibling (+) label */
  color: white;
  background-color: #009581;
  transition: 0.4s;
}

.radioReceitas:checked + .opcaoDespesas {
  /* target next sibling (+) label */
  color: white;
  background-color: #e53c37;
  transition: 0.4s;
}

.conteudo-toggle {
  display: none;
}

.seta-dropdown {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.seta-dropdown-cima {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

@media only screen and (min-width: 768px) {
  .container-receitas .titulo, .container-receitas .titulo-2 {
    padding: 2%;
    background-color: white;
    color: #444546;
    padding-bottom: 0;
  }
  .container-receitas .titulo-receitas, .container-receitas .titulo-despesas {
    padding: 10px 0% 10px 0%;
    font-size: 18px;
    font-family: Neo Sans Bold;
    color: #007b6f;
    text-align: center;
  }
  .container-receitas .titulo-despesas {
    color: #c4343e;
  }
  .container-receitas .dropdown-despesas {
    padding: 20px 25% 20px 25%;
  }
  .container-receitas .dropdown-button {
    width: 20px;
  }
  .container-receitas .subtitulo-receitas {
    padding-bottom: 0;
  }
  .container-receitas .subtitulo-despesas {
    background-color: white;
    padding-top: 2%;
  }
  .container-receitas .botao-receitas .btn-primary {
    background-color: #009581 !important;
    width: 30%;
    margin: 1%;
    border-radius: 10px;
    padding: 10px 5px 10px 5px;
    border-color: #009581;
  }
  .container-receitas .botao-receitas .btn-primary_v2 {
    background-color: #e53c37 !important;
    width: 30%;
    margin: 1%;
    border-radius: 10px;
    padding: 10px 5px 10px 5px;
    border-color: #e53c37;
    color: white;
  }
  .container-receitas .botao-receitas .btn-danger {
    width: 30% !important;
  }
  .container-receitas .botao-despesas-toogle .container-toogle {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
  }
  .container-receitas .botao-despesas-toogle .container-toogle form {
    width: 35%;
    padding: 10px 0 10px 0;
  }
  .container-receitas .receitas {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background-color: white;
  }
  .container-receitas .receitas .espaco-topo {
    margin-top: 1% !important;
    margin-bottom: 1% !important;
  }
  .container-receitas .receitas .linha {
    margin: 0;
    width: 100%;
    padding: 0;
  }
  .container-receitas .receitas .percentual {
    padding: 10px 0 10px 5%;
  }
  .container-receitas .receitas .item-receitas {
    background: whitesmoke;
    cursor: pointer;
    color: #545454;
    display: flex;
    justify-content: space-evenly;
  }
  .container-receitas .receitas .item-receitas .coluna-receitas {
    width: 10%;
    white-space: nowrap;
  }
  .container-receitas .receitas .item-receitas .coluna-receitas_linha {
    white-space: nowrap;
  }
  .container-receitas .receitas .total-retornos_deducoes {
    margin-bottom: 0;
  }
  .container-receitas .receitas .total-retornos .item-deducoes, .container-receitas .receitas .container-geral .item-deducoes {
    width: 10%;
    white-space: nowrap;
  }
  .container-receitas .receitas .overlay {
    position: absolute;
    left: 100%;
    right: 0;
    overflow: hidden;
    width: 0;
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    visibility: hidden;
    cursor: pointer;
  }
  .container-receitas .receitas .overlay_editar {
    background-color: #009581;
    height: 50%;
    top: 0;
    border-top-left-radius: 15px;
  }
  .container-receitas .receitas .overlay_excluir {
    background-color: #e53c37;
    height: 50%;
    bottom: 0;
    border-bottom-left-radius: 15px;
    top: 50%;
  }
  .container-receitas .receitas .overlay_fechar {
    display: none;
  }
  .container-receitas .receitas .item-receitas:hover {
    background-color: rgba(128, 128, 128, 0.1);
    transition: 0.3s;
  }
  .container-receitas .receitas .item-receitas:hover .overlay {
    width: 15%;
    left: 85%;
    visibility: visible;
  }
  .container-receitas .receitas .total-retornos, .container-receitas .receitas .container-geral {
    display: flex;
    justify-content: space-evenly;
  }
  .container-receitas .receitas .total-retornos_item {
    width: 10%;
    white-space: nowrap;
  }
  .container-receitas .receitas .container-geral .quebraLinha {
    white-space: nowrap;
  }
  .container-receitas .receitas .container-geral_receitaLiquida {
    margin-bottom: 0;
  }
  .container-receitas .receitas .container-geral_receitaLiquidaCons {
    margin-bottom: 0;
  }
  .container-receitas .receitas .container-geral_totalDespesas {
    margin-bottom: 0;
  }
  .container-receitas .receitas .container-geral_totalOutrasDespesas div {
    white-space: nowrap;
  }
  .container-receitas .receitas .container-geral_linha {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px 0 10px 0;
  }
  .container-receitas .receitas .container-geral_linha_item {
    width: 10%;
    white-space: nowrap;
  }
  .container-receitas .receitas .container-geral_linha_inss {
    display: flex;
    align-items: center;
  }
  .container-receitas .receitas .container-geral_linha_meio {
    background-color: #009581;
  }
  .container-receitas .receitas .containerReceitaBruta {
    padding: 20px 0 20px 0;
  }
  .container-receitas .receitas .botoes-deducoes {
    display: flex;
    justify-content: center;
  }
  .container-receitas .receitas .botoes-deducoes .botao-percentual {
    width: 15%;
    margin-right: 1%;
  }
  .container-receitas .receitas .total-itens-despesas {
    background-color: #f7f7f7;
    color: grey;
    display: flex;
    justify-content: center;
    padding: 20px 0 20px 23%;
    font-family: Neo Sans Bold;
  }
  .container-receitas .receitas .botoes-item-mobile .botao {
    padding: 1%;
    cursor: pointer;
  }
  .container-receitas .botoes-despesas {
    padding-bottom: 2% !important;
    background-color: white;
    display: flex;
    justify-content: center;
  }
  .container-receitas .botoes-despesas .botao-receitas {
    width: 25% !important;
    padding-right: 2%;
  }

  .form-outras-despesas {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
  }
  .form-outras-despesas label {
    margin-bottom: 0 !important;
    padding-bottom: 10px;
  }
  .form-outras-despesas .form-control {
    width: 100%;
  }
  .form-outras-despesas .alerta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form-outras-despesas .alerta .check-outras-despesas {
    width: 5% !important;
    margin-right: 5% !important;
  }
  .form-outras-despesas .alerta .texto-alerta {
    width: 80%;
  }
}
@media only screen and (min-width: 1381px) {
  .container-receitas {
    width: 50%;
    margin-left: 25%;
    border-left: 10px solid #e8e8e8;
    border-right: 10px solid #e8e8e8;
  }
  .container-receitas .dropdown-button {
    width: 2.5%;
  }
}
.corpo-loader {
  background: #f5f5f5;
  overflow-y: hidden;
  overflow-x: hidden;
}
.corpo-loader .container-loader {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Safari */
}
.corpo-loader .container-loader .loader {
  border: 8px solid #00675A;
  border-radius: 50%;
  border-top: 8px solid #009581;
  border-left: 8px solid #009581;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.botoes_rodape_calc_limp {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .botoes_rodape_calc_limp {
    flex-direction: column;
    margin-bottom: 70px;
  }
}

.btnRodape__calcular, .btnRodape__limpar {
  border-radius: 10px;
  padding: 10px 0 10px 0;
  color: white !important;
  display: block;
  margin: 20px auto;
  max-width: 200px;
  font-family: Neo Sans Bold;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  min-width: 210px;
}
@media only screen and (max-width: 767px) {
  .btnRodape__calcular, .btnRodape__limpar {
    margin: 5px auto;
  }
}

.btnRodape__calcular {
  background-color: #006c67;
  border: 2px solid #006c67;
}
.btnRodape__calcular:hover {
  color: white;
  text-decoration: none;
  background-color: #00806f !important;
  border-color: #00806f !important;
}

.btnRodape__limpar {
  border: 2px solid #e53c37;
  background-color: #e53c37 !important;
}
.btnRodape__limpar:hover {
  color: white;
  text-decoration: none;
  background-color: #e24b46 !important;
  border-color: #e24b46 !important;
}

/*# sourceMappingURL=theme.css.map */
</pre></body></html>