/* Fontes */
@font-face {
  font-family: Roboto;
  src: local(Roboto), url(assets/fonts/Roboto/Roboto-Regular.ttf)
}
@font-face {
  font-family: Inter;
  src: local(Inter), url(assets/fonts/Inter/static/Inter-Regular.ttf)
}
@font-face {
  font-family: Hind Siliguri;
  src: local(Hind Siliguri), url(assets/fonts/Inter/static/HindSiliguri-Regular.ttf)
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto;
}
.flag {
  width: 18px;
}
.input-moeda{
  height: 80px;
  border-radius: 5px;
  color: #fff;
  margin: 0 0 4% 0;
  border-color: #977ADC;
}
.input-moeda, legend {
  padding: 0 10px;
}
.flagOptionsUnit-mobile{
  height: 54px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
}
.flagOptions {
  width: 100%;
  /* padding: 5px 0; */

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.flagOptionsUnit {
  font-size: 14px;
  cursor: pointer;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.flagOptionsUnit img {
  margin: 0 5px;
}
.flagOptionsUnit label {
  cursor: pointer;
}
body {
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-color: #000000 !important;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}
/* Botões */
.btn {
  width: 100%;
  height: 40px;
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
}
.btn-primary {
  cursor: pointer;

  background: #A464F5;
  border-radius: 5px;
  border: none;
  outline: none;
}
.btn-secondary {
  margin: 0 0 3% 0;

  background: transparent;
  border-radius: 5px;
  border: 1px solid #977ADC;
  outline: none;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.btn-disable {
  outline: none;
  background: transparent;

  cursor: wait;

  display: flex;
  align-items: center;
  justify-content: center;
}
/* Tela de login */
.theme {
  width: 100%;
}
.corpo {
  width: 100vw;
  min-height: 100vh;

  display: flex;
  flex-direction: row;

  background: url(./assets/img/molina-login-1.svg);
  background-size: cover;
}
.img-molina-login {
  width: 70%;
  max-height: 100vh;
}
.img-molina-register {
  width: 60%;
  min-height: 100vh;

  background: url(./assets/img/molina-register.svg);
  background-size: cover;
}
/* .molina-login {
  width: 100%;
} */
.login {
  /* min-height: 100vh; */
  width: 40%;
  margin: 0 0 0 8%;

  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
}
.form-login {
  width: 90%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-login-form {
  width: 80%;
}
.quantidade-de-cada-categoria {
  display: none;
}
.title {
  display: flex;
  /* flex-direction: row; */
  align-items: center;
  justify-content: center;
}
.drg-login {
  width: 60%;
  padding: 40px 0 30px 0;
}
.bemVindo {
  width: 100%;
  margin:  0 0 3% 0;

  display: flex;
  align-items: center;
  justify-content: center;
}
.bemVindo h1 {
  color: #FFF;
  font-size: 1rem;
}
.input-usuario-ou-email {
  height: 50px;
  border-radius: 5px;
  color: #fff;
  margin: 0 0 4% 0;
}
.input-usuario-ou-email, legend {
  padding: 0 10px;
  border-color: #977ADC;
}
.input-form {
  width: 100%;
  height: 26px;
  padding: 10px;
  background-color: transparent;
  outline: none;
  border: none;
  color: #fff;
}
.olvidado-mi-contrasena {
  width: 100%;
  margin: 4% 0;

  display: flex;
  align-items: center;
  justify-content: center;
}
.olvidado-mi-contrasena h1 {
  color: #977ADC;
  font-size: 1rem;
}
.link-Register {
  text-decoration: none;
}

/* Tela de Cadastro */
.criar-senha {
  max-width: 100%;
  color: #06bb1e;
  font-size: 12px;
  margin: 0 0 3% 0;
}

.check-termo {
  max-width: 100%;
  color: #FFFFFF;
  ;
  font-weight: 200;
  font-family: Roboto;
  font-size: 16px;
  margin: 0 0 2% 0;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.checkbox-termo {
  margin: 0 1% 0 0;
}
.btn-voltar-login {
  width: 100%;
  margin: 2% 0 0 0;
}
.page-not-found {
  width: 80%;
  min-height: 100vh;
  color: #FFFFFF;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Estilo de notificações de interação com banco de dados */
.notification {
  width: 80%;
  height: 60px;
  border-radius: 5px;
  margin: 0 0 20px 0;

  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: #c4dbcb;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.is-sucess {
  background: #027011;
}
.is-danger {
  background: #790808;
}

/* Icone fazer logout */
.logout-um {
  width: 100%;
  min-height: 100vh;

  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}
.iconLogout {
  width: 30px;
  background: transparent;
  border-radius: 50%;
}
.container img {
  margin: 0 20px 0 0;
}
.container a {
  text-decoration: none;
}
.container span {
  font-family: Roboto;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
}
/* Menu Dashboard */
.menu-externo {
  width: 20%;
  min-height: 100vh;
  position: fixed;

  background: #0F131B;
}
.menu-interno {
  width: 100%;
  min-height: 100vh;
}
.menu-logo {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}
.show-icons {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.link-icon {
  width: 100%;
  text-decoration: none !important;
}
.icon {
  margin: 0 15px 0 0;
}
.alinha-icones {
  width: 100%;
  min-height: 50px;
  padding: 0 0 0 10%;
  
  border-top: 1px solid #575658;
  border-left: none;
  border-right: none;

  color: #FFFFFF;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.last {  
  border-bottom: 1px solid #575658;
}
.user-registered {
  position: absolute;
  bottom: 0;
  margin: 0 0 30px 0;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.img-user-registered {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#divLogarMobile {
  display: none;
}
/* Efeito pulsar */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.8);
    /* -webkit-filter: brightness(100%); */
  }
  100% {
    -webkit-transform: scale(1.1);
    /* -webkit-filter: brightness(200%); */
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
    /* filter: brightness(100%); */
  }
  100% {
    transform: scale(1.1);
    /* filter: brightness(200%); */
  }
}
.online {
  width: 15px;
  height: 15px;
  background: #06bb1e;
  border-radius: 50%;
  margin: 0 0 0 8px;

  animation: pulse 0.7s infinite;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.online .onlineText {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}
.online .onlineText::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.online:hover .onlineText {
  visibility: visible;
  opacity: 1;
}
.offline {
  width: 15px;
  height: 15px;
  background: #bb0c06;
  border-radius: 50%;
  margin: 0 0 0 8px;
  
  animation: pulse 0.7s infinite;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.offline .onlineText {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}
.offline .onlineText::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.offline:hover .onlineText {
  visibility: visible;
  opacity: 1;
}

.name-user-registered {
  margin: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.name-user-registered span {
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
}
.name-user-registered a {
  background: #EF2323;
  padding: 3px 15px;
  border-radius: 20px;

  text-decoration: none;

  font-family: Roboto;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
}
.name-user-registered a:hover {
  background: #EF2323;
  padding: 3px 15px;
  border-radius: 20px;

  text-decoration: none;

  font-family: Roboto;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
}

/* Corpo logado */
.corpo-logado {
  width: 80%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: absolute;
  right: 0;
}
/* .div-branca {} */
.div-amarela {
  margin-top: 20px;
  width: 100%;
  min-height: 40px;
  color: #FFFFFF;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.div-amarela p {
  font-family: Hind Siliguri;
  font-size: 20px;
  font-weight: 500;

  margin: 0;
}
.div-amarela-mostra-mes {
  border-radius: 5px;
  width: 250px;
  min-height: 46px;

  border: 1px solid #977ADC;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.user-name {
  width: 100%;
  height: 85px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-bottom: 2px solid #1A132F;
}

.name {
  width: 105px;
  height: 63px;
  background-color: #1A1230;
  border-radius: 50px;

  display: flex;
  justify-content: center;
  align-items: center;
  
  position: absolute;
  right: 0;
  margin: 0 15px 0 0;
}

.molina-login-user-name {
  width: 42px;
  height: 28px;
  border-radius: 25%;
}
.Vector {
  width: 42px;
  height: 28px;
}

.name-dashboard {
  margin-left: 30px;
  width: 100%;
  height: 10px;

  display: flex;
  align-items: center;
}
.name-dashboard span {
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  padding: 0 0 0 20px;
  color: #fff;
}

.card-container {
  width: 100%;
  margin: 27px 0 0 0;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.card {
  border-color:#977ADC !important;
  width: 100%;
  height: 111px;
  margin: 40px;

  color: #fff;
  background: #0F131B !important;
  border-radius: 5px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  
  font-family: Inter;
  font-weight: 600;
  font-size: 30px;
}
.text-top-left {
  width: 90%;
  font-size: 20px;
  padding: 0 0 0 px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.text-top-left img {
  width: 31px;
}
.text-bottom-left {
  width: 90%;
  padding: 0 0 0 25px;
}
.ingressos-seta{
  background: #317C16;
  border-radius: 50%;
}
.ingressos-vermelha{
  background: #E33A41;
  border-radius: 50%;
}
.div-marron {
  width: 100%;
  margin: 0px 0 0 0;
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
}

.text-div-marron {
  max-width: 470px;
  width: 90%;
  padding: 5px;
  margin: 2 0 0 0;
  margin-top: auto;
  
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  color: #FFF;
  
  border-radius: 25px;
  background: #0F131B;
  
  display: flex;
  align-items: center;
  
  padding-left: 20px; /* Adiciona espaço à esquerda do texto */
  justify-content: flex-start; /* Alinha o texto à esquerda */
}

.wrap-div-grafico {
  width: 90%;
  height: auto;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.div-grafico {
  width: 100%;
  margin: 5px 0 0 0;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.div-ingresos {
  width: 249px;
  height: 249px;
}
.div-egresos {
  width: 249px;
  height: 249px;
}
.chart-icons {
  height: 200px;
  margin: 25px -25px 0 -35px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.chart-icons img {
  width: 23px;
  height: 17px;
}
.ingressos-details {
  width: 65%;
  height: 230px;
  margin: 25px 0 0 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  font-family: Hind Siliguri;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}
.wrap-chart-icons {
  width: 100%;
  height: 40px;

  display: flex;
  flex-direction: row;
  align-items: center;
}
.label-chart-icons {
  margin: 0 0 0 20px;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  
  font-size: 13px;
}
.label-chart-icons span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.registro {
  width: 379px;
  height: 121px;
  margin: 20px 0 20px 0;
  border-radius: 25px;
  background: rgba(15, 19, 27, 1);

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;

}
.btn-mais-modal {
  border-radius: 50%;
  background: transparent;
  border: none;
  outline: 0;
  cursor: pointer;
}

.menos {
  transition: 0.3s;
  border: none;
  outline: 0;
}

.menos:hover {
  border-radius: 50%;
  box-shadow: rgba(83, 82, 82, 0.815) 0px 5px 15px;
}

.modal-header-incrementado {
  border-bottom: 1px solid rgb(241, 241, 241);
}

.background {
  background: rgba(15, 19, 27, 1);
}

*::-webkit-scrollbar {
  display: none;
}

/* Estilo para o botão "Salir" */
.salir-container {
  background-color: transparent;
}
.salir {
  color: red; /* Cor do texto */
  background: none; /* Sem fundo */
  border: none;
}
.salir:hover {
  cursor: pointer;
}

/* Estilo para o botão "Guardar" */
.guardar-container {
  background-color: transparent;
}
.guardar {
  color: green; /* Cor do texto */
  background: none; /* Sem fundo */
  border: none;
}
.guardar:hover {
  cursor: pointer;
}

/* Estilo para o container em volta do título */
.modal-title-container {
  border-radius: 5px; /* Borda arredondada */
  justify-content: center;
  width: 200px; /* Ajuste a largura do container */
  border: 3px solid green; /* Cor da borda e espessura */
  padding: 5px 10px; /* Ajuste o espaçamento interno */
  display: flex; /* Para que o container ajuste ao tamanho do título */
  color: #FFF;
}
/* Estilo para os containers */

/* Estilo para a área de entrada de texto */
.input-area {
  background-color: transparent;
  width: 336px; /* Largura total */
  height: 46.1px; /* Altura */
  border: none; /* Sem borda */
  resize: vertical; /* Redimensionamento vertical permitido */
}
.custom-container1 {
  width: 336px; /* Largura total */
  height: 46.1px; /* Altura */
  background-color: transparent; /* Remova o fundo branco */
  border-radius: 10px; /* Bordas arredondadas */
  border: 2px solid #ffffff; /* Borda branca */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
}
.custom-container2 {
  width: 236px; /* Largura total */
  height: 46.1px; /* Altura */
  background-color: transparent; /* Remova o fundo branco */
  border-radius: 10px; /* Bordas arredondadas */
  border: 2px solid #ffffff; /* Borda branca */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
}
.custom-container3 {
  width: 336px; /* Largura total */
  height: 46.1px; /* Altura */
  background-color: transparent; /* Remova o fundo branco */
  border-radius: 10px; /* Bordas arredondadas */
  border: 2px solid #ffffff; /* Borda branca */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
}
.custom-container4 {
  width: 236px; /* Largura total */
  height: 46.1px; /* Altura */
  background-color: transparent; /* Remova o fundo branco */
  border-radius: 10px; /* Bordas arredondadas */
  border: 2px solid #ffffff; /* Borda branca */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
}
.custom-container5 {
  background-color: transparent; /* Remova o fundo branco */
  border-radius: 10px; /* Bordas arredondadas */
  border: 2px solid #ffffff; /* Borda branca */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
}
.custom-container6 {
  background-color: transparent; /* Remova o fundo branco */
  border-radius: 10px; /* Bordas arredondadas */
  border: 2px solid #ffffff; /* Borda branca */
  padding: 10px; /* Espaçamento interno */
  margin-bottom: 10px; /* Espaçamento inferior */
}
.input-modal {
  background-color: transparent !important;
  height: 46px !important;
}
.label-modal {
  font-family: Roboto;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}
.wrap-select-modal {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 15px 0 0 0;
}
.modal-dialog {
  max-width: 653px !important;
}

/* ToggleButton */
.wrap-toggleButton {
  width: 90%;

  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  color: #fff;

  display: flex;
  flex-direction: row;
  align-items: center;

  margin: 15px 0 0 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 14px;

  margin: 0 20px 0 0;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: rgba(49, 124, 22, 1);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgba(49, 124, 22, 1);
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Estiliza mensagem de cadastro de ingreso/egreso */
#successSnackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #078326;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#successSnackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#dangerSnackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #8f0a0a;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#dangerSnackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#successSnackbarEgresso {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #078326;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#successSnackbarEgresso.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 2.5s;
  animation: fadein 0.5s, fadeout 2.5s;
}
#dangerSnackbarEgresso {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #8f0a0a;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#dangerSnackbarEgresso.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 2.5s;
  animation: fadein 0.5s, fadeout 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

#myProgress {
  width: 100%;
  height: 20px;
  position: relative;
  background-color: #ddd;
  margin: 20px 0 0 0;

  border-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
}

#myBar {
  background-color: #4CAF50;
  width: 10px;
  height: 30px;
  position: absolute;

  border-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
}

.sem-registro {
  width: 70%;
  height: 50px;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilo para mobile */
@media screen and (max-width: 600px) {
  .img-molina-login {
    display: none;
  }
  .login {
    width: 100%;

    justify-content: center;
  }
  .input-moeda legend {
    font-size: 13px;
    padding: 0 10px;
  }
  .input-moeda{
    height: 120px;
  }
  .flagOptionsUnit-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 95px;
  }
  .flagOptionsUnit {
    font-size: 12px;
  }
  .check-termo {
    font-size: 11px;
    margin: 7% 0 0 0;
  }
  .btn {
    font-size: 12px;
    margin: 8% 0;
  }
  .notification {
    font-size: 12px;
    padding: 0 12px;
  }

  /* Estilo para área de logado */
  .menu-externo {
    display: none;
  }
  /* Menu retratil */
  #divLogarMobile {
    display: contents;
  }
  #check {
    display: none;
  }
  #dashicons-menu {
    color: #fff;
  }
  #check:checked ~ .barra {
    -webkit-transform: translate(100%);
       -moz-transform: translate(100%);
        -ms-transform: translate(100%);
         -o-transform: translate(100%);
            transform: translate(100%);
  }
  .div-amarela {
    margin-top: 70px;
  }
  .menu-icon {
    color: #fff;
    font-size: 22px;
    transition: 0.5s;
  }
  .icone {
    margin: 5% 0 0 10%;
    position: fixed;
    z-index: 2;
  }  
  .barra {
    width: 100%;
    min-height: 100vh;
    position: fixed;
    background: #0F131B;
    padding-top: 10px;
    left: -100%;
    -webkit-transition: all .25s linear;
       -moz-transition: all .25s linear;
        -ms-transition: all .25s linear;
         -o-transition: all .25s linear;
            transition: all .25s linear;
  }
  .barra, nav a {
    top: 30px;
    color: rgb(224, 221, 221);
    text-decoration: none;
    z-index: 1;
  }
  #divMenuMobile {
    padding: 10px;
    align-content: space-between;
  }
  /* Fim efeito menu retratil */
  .user-registered {
    margin: 0 0 40px 0;
  }
  .drg-login {
    width: 30%;
  }
  .corpo-logado {
    width: 100%;
  }
  .user-name {
    width: 100%;
    height: 55px;
    position: fixed;
    top: 0;
    background: #0F131B;
    z-index: 1;
  }
  .name {
    width: 90px;
    height: 40px;
  }
  .card-container {
    flex-direction: column;
  }
  .div-marron {
    margin: 0;
    justify-content: center;
    padding-left: 0;
  }
  .text-div-marron {
    width: 90%;
    border-radius: 5px;
  }
  .card {
    width: 90%;
    margin: 10px 0;
  }
  .wrap-div-grafico {
    flex-direction: column;
  }
  .sem-registro {
    width: 90%;
    margin: 10% 0 0 0;
  }
  .registro {
    width: 90%;
    height: 70px;
  }
  .menos {
    width: 50px;
  }
  .modal-title-container {
    width: 110px;
  }
  
  #successSnackbar {
    height: 56px;
    margin-left: 0;
    left: auto;
    padding: 16px;
  }
  #dangerSnackbar {
    height: 56px;
    margin-left: 0;
    left: auto;
    padding: 16px;
  }
  
  #successSnackbarEgresso {
    height: 56px;
    margin-left: 0;
    left: auto;
    padding: 16px;
  }
  #dangerSnackbarEgresso {
    height: 56px;
    margin-left: 0;
    left: auto;
    padding: 16px;
  }
}