

:root {
  --primary-100:#892CDC;
  --primary-200:#BC6FF1;
  --primary-300:#fdf6fd;
  --accent-100:#D9ACF5;
  --accent-200:#fff4ff;
  --text-100:#b6acac;
  --text-200:#948f8f;
  --bg-100:#a1a1a1;
  --bg-200:#c9cacc;
  --bg-300:#dddfe0;
  --colorfontetd: #383838 ;
    
}

:root.checked {
  --primary-100: #892CDC;
  --primary-200: #BC6FF1;
  --primary-300: #fdf6fd;
  --accent-100: #D9ACF5;
  --accent-200: #fff4ff;
  --text-100: #EEEEEE;
  --text-200: #FDEBED;
  --bg-100: #222831;
  --bg-200: #393E46;
  --bg-300: #454e59;
  --colorfontetd: #fff4ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

  body {
  /*
   background-image: url('../img/login_fundo.jpg');
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   font-family: Arial, sans-serif;
   background-attachment: fixed; /* Para manter a imagem fixa 
   
   font-family: Arial, sans-serif;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   background-color:  var(--bg-100);
   color:var(--text-100);
   margin: 0;
   padding: 0;
   min-height: 95vh; /* Ocupar pelo menos a altura da janela 
   position: relative; /* Importante para o rodapé não ficar sobrescrito pelo conteúdo 
   */


   justify-content: center;
   align-items: center;
   min-height: 100vh;
   background: var(--bg-300);
   transition: 0.3s ease-in-out;
   position: relative; /* Adicione isso */
  }

  /* Criando uma camada sobreposta com desfoque */
body::before {
  content: "";
  position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit; /* Herda a imagem de fundo do body */
  filter: blur(5px); /* Aplica o desfoque de 20 pixels */
  z-index: -1; /* Coloca a camada embaixo de todo o conteúdo da página */
}


section{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url('../img/fundo_login.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  /*animation: animateBg 5s linear infinite;*/
}

@keyframes animateBg {
  100% {
    filter: hue-rotate(360deg);
  }
}

  .login {
  position: relative;
  width: 400px;
  background: transparent;
  border: 2px solid rgb(255, 255, 255, .5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #fff;
  }

  h2 {
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .input-box {
    position: relative;
    width: 310px;
    margin: 30px 0;
    border-bottom: 2px solid #fff;
  }

  .input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform:translateY(-50%);
    font-size: 1em;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }

  .dropdown a{
    color: #fff;
  }

  .input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #fff;
    padding: 0 35px 0 5px;
  }

  .input-box textarea {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #fff;
    padding: 0 35px 0 5px;
  }

  .input-box input:focus~label,
  .input-box input:valid~label {
    top: -5px;
  }

  .input-box .icon {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    line-height: 57px;
  }

  .remember-forgot {
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: space-between;
  }

  .remember-forgo {
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
  }

  .remember-forgot label input {
    margin-right: 3px;
  }

  .remember-forgot a {
    color: #fff;
    text-decoration: none;
  }

  .remember-forgot a:hover {
    text-decoration: underline;
  }

  .btn-entrar {
  width: 100%;
  height: 40px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1em;
  color: #000;
  font-weight: 500;
  }

  .registrar {
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
  }

  .registrar p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .registrar p a:hover {
    text-decoration: underline;
  }

  .btn-entrar:hover {
    background-color: var(--primary-200);
    color: var(--text-100);
  }

  .btn-entrar:active {
    background-color: #432f6b;
    color: #9c72f0;
  }

  .alert {
    width: 290px;
  }


  .politica {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    color: #fff;
  }

  .politica p {
    line-height: 1.6;
  }

  .mobile-menu {
    display: none;
  }


  .fotoperfil {
    width:70px; 
    height: 70px; 
    object-fit: cover; 
    margin-left: 0px; 
    border-style: solid; 
    border-color: #404494;  
    background: #60639b;
    border-radius: 50%;
  }

  .footer-login {
    background-color: var(--colorfontetd);
    text-align: center;
    color: var(--accent-200);
    padding: 20px;
    text-align: center;
    position:absolute;
    width: 100%;
    bottom: -50px;
    left: 0;
    font-size: 13px;
  }

  .footer {
    padding: 10px;
    text-align: center;
    color: var(--colorfontetd);
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: var(--bg-200);
    font-size: 12px;
  }

  .paginafooter{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }

  .paginafooter a{
    color: var(--colorfontetd);
    text-decoration: none;
    font-size: 15px;
  }


  .footer-login p {
  margin: auto;
  }

  .menu-bar {
    background-color: var(--bg-200);
    margin-bottom: 25px;
  }

  .menu-bar .nav-link {
    color: var(--text-100);
  }

  .nav-item a:hover {
    color: var(--primary-200);
  }

  .menu-bar a:focus-within {
    color: #c091d6;
  }

  .menu-bar .activee {
    color: #892CDC;
} 

  .logo-menu {
    width:100px;
    height: 100px;
    margin-left: 20px;
  }

  .dropdown-menu {
    background-color: var(--bg-100);
  }

  .dropdown-menu li a:hover {
    background-color: #553f8100;
    color: var(--accent-100);
  }

  .container {
    max-width: 100%;
    background-color: var(--bg-200);
    min-height: 500px;
    padding: 5px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    flex: 1;
  position: relative;
  margin-top: 150px;
  margin-bottom: 100px;
    /*box-shadow: 1px 5px 10px 10px rgba(0, 0, 0, 0.5);*/
  }

  .btn-cadastra {
    background-color: var(--primary-200);
    color: #D6C6E1;
  }

  .btn-cadastra:hover, .btn-cadastra:hover:active {
    background-color: var(--primary-100);
    color: #513364;
  }

  .titulo {
    margin-left: auto;
  }

  .modal-content {
    background-color: var(--bg-100);
  }

  .modal-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .form-container {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;
}
.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container input[type="datetime-local"],
.form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-container input[type="file"] {
    display: flex;
    margin-bottom: 10px;
}
.form-container .upload-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}
.form-container .submit-btn {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.cadastra-usuario {
  margin-left: 25px;
  margin-top: 25px;
}

.usurios-row {
  margin-top: 50px;
}

.usuarios {
margin: auto;
padding: 10px;
}

.usuario-card {
  min-width: 200px;
  margin-top: 50px;
}

.card-title {
  color: var(--bg-200);
  background-color: var(--primary-200);
  text-align: center;
  border-radius: 25px;
  padding: 5px;
}

.usuarios .card {
  background-color: var(--bg-100);
  margin: auto;
  min-height: 600px;
  color: var(--text-200);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.usuarios .card:hover {
transform: scale(1.05);
box-shadow: 1px 2px 5px 5px rgba(0, 0, 0, 0.3);
}

.thumbnail{
  display: none;
  max-width: 150px;
  max-height: 150px;
  margin: auto;
  border-radius: 10px;
  border: var(--primary-200) solid 5px;
  background-color: var(--primary-200);
}

.card b {
  color: var(--text-100);
  font-weight: unset;
}

.usuarios .card img {
  width: 100%;
  height: 250px;
}

.card {
  background-color: var(--bg-100);
  max-width: 400px;
  margin: auto;
  margin-top: 50px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.01);
  box-shadow: 1px 2px 5px 5px rgba(0, 0, 0, 0.3);
}

.offcanvas {
  background-color: var(--bg-100);
}

.perfil-form {
  padding: 20px;
}

.area-fotoperfil {
  width: 200px;
  margin: auto;
  margin-top: 25px;
}

.foto-perfil {
  width: 200px;
  height: 200px;
  border-radius: 5px;
}

.btn-atual {
  background-color: var(--primary-100);
  color: var(--text-100);
}

.btn-atual:hover, .btn-atual:hover:active {
  background-color: var(--primary-200);
  border: solid 1px var(--primary-100);
}

.btn-buscartiquete {
  width: 100%;
  height: 50px;
  display: inline-block;
  border: none;
  border-radius: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin-top: -4px;
}

.btn-gastoseganhos {
  margin-top: 25px;
  color: #ffffff;
}

.container-form {
  position: relative;
  width: 300px;
  margin: auto;
  background: transparent;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  color: #fff;
  margin-bottom: 25px;
}

.input-box input[type="date"] {
  color: #fff;
  padding: 10px;
}

.input-box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Inverte as cores do ícone (de preto para branco) */
}

 /* Estilo do rótulo do checkbox */
 .custom-checkbox-label {
  position: relative;
  padding-left: 30px; /* Espaço para o rótulo personalizado */
  cursor: pointer;
}

/* Estilo do checkbox real (input[type="checkbox"]) */
.custom-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0; /* Tornar o checkbox real invisível */
  cursor: pointer;
}

/* Estilo do ícone personalizado quando o checkbox está marcado */
.custom-checkbox-label .custom-checkbox-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #944cd8; /* Cor de fundo quando marcado */
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Estilo do ícone dentro do checkbox quando marcado */
.custom-checkbox-label .custom-checkbox-icon::after {
  content: "\2713"; /* Código do caractere de marca de seleção (✓) */
  font-size: 16px;
  color: white; /* Cor do ícone quando marcado */
  position: absolute;
  top: -3px;
  left: 3px;
  display: none; /* Inicialmente oculto */
}

/* Estilo do ícone personalizado quando o checkbox não está marcado (vazio) */
.custom-checkbox-label .custom-checkbox-icon-empty {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff; /* Cor de fundo quando não marcado */
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Estilo do ícone dentro do checkbox quando não marcado (vazio) */
.custom-checkbox-label .custom-checkbox-icon-empty::after {
  content: "";
}

/* Quando o checkbox está marcado, exiba o ícone marcado */
.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox-icon::after {
  display: block;
}

.table {
  color: #fff;
  margin-top: 25px;
}

.filtro {
  margin-top: 25px;
}

.filtro label {
  font-size: 25px;
  margin-top: 5px;
  margin-right: 10px;
}

.grafico {
  max-width: 500px;
  margin: auto;
  color: #fff;
  background: #1a1919;
  border-radius: 10px;
  padding: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.painel-carteira{
  min-width: 300px;
  height: 100px;
  text-align: center;
  border-radius: 15px;
  margin-top: 25px;
  color: #fff;
  padding: 10px;
}

.painel-carteira h5 {
  font-size: 15px;
}

.painel-carteira h4 {
  font-size: 30px;
}

.painel-carteira span {
  position: absolute;
  margin: auto;
  margin-left: -150px;
  margin-top: -20px;
  font-size: 50px;
}

.desp-apagar{
  background-color: #831710;
}

.desp-paga{
  background-color: #742f0f;
}

.rece-apagar{
  background-color: #5b8310;
}

.rece-paga{
  background-color: #5bb407;
}

.desp-paga-ano{
  background-color: #831710;
}

.rece-paga-ano{
  background-color: #5bb407;
}

.front, .back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
}

.mensagem {
  color: #fff;
}

.tabela-mensagem {
  width: 300px;
  min-height: 50px;
  margin: auto;
  font-size: 20px;
  background-color: #1a1919;
  margin-bottom: 10px;
  border-radius: 10px;
}

.tabela-mensagem p {
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.tabela-mensagem .mansage {
  width: 300px;
}

.botao {
margin: auto;
width: 150px;
}

.botao button {
  border: none;
  border-radius: 10px;
  padding: 5px 20px 5px 5px;
  background-color: #c52424;
  color: #fff;
}

.botao i {
  position: absolute;
  font-size: 25px;
  margin-top: 2px;
}

.quantidademensagem {
  font-size: 15px;
  font-style: none;
  font-weight: lighter;
  margin-right: -10px;
  position: absolute;
  background-color: #d31c1c;
  padding: 2px;
  border-radius: 5px;
  min-width: 20px;
}

.bell a{
  font-size: 30px;
  color: #fff;
}

.logo {
  width: 100px;
  margin-left: 10px;
}

.alerta {
  width: 300px;
  margin: auto;
  margin-top: 50px;
}

.selo-pro {
  color: #2079ff;
  font-size: 70px;
  position: absolute;
  margin: auto;
  margin-top: 145px;
  margin-left: -40px;
}

.painel-ano{
  margin-bottom: 25px;
  background-color: #1a1919;
  width: 95%;
  border-radius: 15px;
  max-width: 900px;
  margin-top: 140px;
}

.painel-ano .painel-carteira{
  min-width: 300px;
  height: 100px;
  text-align: center;
  border-radius: 15px;
  margin-top: 10px;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.container-busca {
  position: relative;
  --size-button: 40px;
  color: white;
}

.input {
  padding-left: var(--size-button);
  height: var(--size-button);
  font-size: 15px;
  border: none;
  color: #fff;
  outline: none;
  width: var(--size-button);
  transition: all ease 0.3s;
  background-color: #191A1E;
  box-shadow: 1.5px 1.5px 3px #0e0e0e, -1.5px -1.5px 3px rgb(95 94 94 / 25%), inset 0px 0px 0px #0e0e0e, inset 0px -0px 0px #5f5e5e;
  border-radius: 50px;
  cursor: pointer;
}

.input:focus,
.input:not(:invalid) {
  width: 200px;
  cursor: text;
  box-shadow: 0px 0px 0px #0e0e0e, 0px 0px 0px rgb(95 94 94 / 25%), inset 1.5px 1.5px 3px #0e0e0e, inset -1.5px -1.5px 3px #5f5e5e;
}

.input:focus + .icon,
.input:not(:invalid) + .icon {
  pointer-events: all;
  cursor: pointer;
}

.container-busca .icon {
  position: absolute;
  width: var(--size-button);
  height: var(--size-button);
  top: 0;
  left: 0;
  padding: 8px;
  pointer-events: none;
}

.container-busca .icon svg {
  width: 100%;
  height: 100%;
}

.btn-deletar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  cursor: pointer;
  transition-duration: .3s;
  overflow: hidden;
  position: relative;
  margin: auto;
}

.svgIcon {
  width: 12px;
  transition-duration: .3s;
}

.svgIcon path {
  fill: white;
}

.btn-deletar:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: .3s;
  background-color: rgb(255, 69, 69);
  align-items: center;
}

.btn-deletar:hover .svgIcon {
  width: 50px;
  transition-duration: .3s;
  transform: translateY(60%);
}

.btn-deletar::before {
  position: absolute;
  top: -20px;
  content: "Delete";
  color: white;
  transition-duration: .3s;
  font-size: 2px;
}

.btn-deletar:hover::before {
  font-size: 13px;
  opacity: 1;
  transform: translateY(30px);
  transition-duration: .3s;
}

/* Adicione estilos para o modal */
.modal-calendario {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
}

.modal-content-calendario {
  background-color: var(--bg-100);
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #404494;
  border-radius: 15px;
  width: 50%;
  text-align: center;
}

.modal-content-calendario form{
  margin-top: 50px;
}

.modal-content-calendario input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.close {
  float: right;
  font-size: 15px;
  font-weight: bold;
  margin-top: -5px;
}

.close:hover,
.close:focus {
  color: #919191;
  text-decoration: none;
  cursor: pointer;
}

.btn-calendario {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  gap: 8px;
  height: 40px;
  width: 201px;
  border: none;
  background: #FF342B;
  border-radius: 20px;
  cursor: pointer;
  margin: auto;
  margin-bottom: 25px;
}

.lable-calendario {
  line-height: 22px;
  font-size: 17px;
  color: #fff;
  font-family: sans-serif;
  letter-spacing: 1px;
}

.btn-calendario:hover {
  background: #e52e26;
}

.btn-calendario:hover .svg-icon {
  animation: slope 1s linear infinite;
}

@keyframes slope {
  0% {
  }

  50% {
    transform: rotate(10deg);
  }

  100% {
  }
}

.btn-registrardespesa {
  position: relative;
  font-size: 1.2em;
  padding: 0.7em 1.4em;
  background-color: #BF0426;
  text-decoration: none;
  border: none;
  border-radius: 0.5em;
  color: #DEDEDE;
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  float: right;
  left: -25px;
}

.btn-registrardespesa::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--bg-200) 0%, var(--bg-200) 50%, rgba(150,4,31,1) 50%, rgba(191,4,38,1) 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.btn-registrardespesa:hover::before {
  width: 1.6em;
  height: 1.6em;
}

.btn-registrardespesa:active {
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
}

.btn-registrarreceita {
  position: relative;
  font-size: 1.2em;
  padding: 0.7em 1.4em;
  background-color: #1cb109;
  text-decoration: none;
  border: none;
  border-radius: 0.5em;
  color: #DEDEDE;
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  float: right;
  left: -25px;
}

.btn-registrarreceita::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--bg-200) 0%, var(--bg-200) 50%, rgb(4, 150, 11) 50%, rgb(4, 191, 29) 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.btn-registrarreceita:hover::before {
  width: 1.6em;
  height: 1.6em;
}

.btn-registrarreceita:active {
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
}

.form-ticket {
  margin-top: 25px;
  margin-bottom: 25px;
}

.form-ticket .input-box {
  width: 90%;
  margin: auto;
}

.form-ticket .label-ticket{
  color: #fff;
  margin-left: 30px;
  margin-top: 20px;
}

.form-ticket textarea {
  border-radius: 10px;
  background: #222831;
  box-shadow: inset 11px 11px 22px #1c2128,
              inset -11px -11px 22px #282f3a;
}

.form-ticket .btn-ticket {
  color: #fff;
  padding: 10px;
  background-color: #484ab6;
}

.btn-enviar {
  font-family: inherit;
  font-size: 18px;
  background: linear-gradient(to bottom, #4dc7d9 0%,#66a6ff 100%);
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  margin: auto;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  padding: 0em;
  background: linear-gradient(to bottom, #5bd9ec 0%,#97c3ff 100%);
  cursor: pointer;
}

.btn-enviar:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-enviar span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

.btn-enviar:hover span {
  scale: 0;
  font-size: 0%;
  opacity: 0;
  transition: all 0.5s;
}

.btn-enviar svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

.btn-enviar .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.btn-enviar:hover .svg-wrapper {
  background-color: rgba(43, 169, 228, 0.897);
  width: 54px;
  height: 54px;
}

.btn-enviar:hover svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
  transform: rotate(45deg);
}

.btnform {
  margin: auto;
  text-align: center;
  align-items: center;
  align-content: center;
 display: flex;
 margin-top: 20px;
}

.alerta-ticket {
  width: 300px;
  margin: auto;
  margin-top: 25px;
}

.pago-icon {
  color: #1cb109;
}

.ticket {
  background-color: #2d2f33;
  width: 90%;
  margin: auto;
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
}

.ticket:hover {
  background-color: #242629;
}

.ticket a {
  text-decoration: none;
}

.ticket h5 {
  color: #ffffff;
}

.ticket .assunto {
  color: #ffffff;
}

.ticket .menssagem {
  color: #fff;
  margin: auto;
  text-align: center;
  padding: 20px;
  background-color: #191A1E;
  border-radius: 10px;
}

.ticket .statusaberto {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #72259e;
}

.ticket .statusatendido {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #4d9144;
}

.ticket .statusaguardandoresposta {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #c9870e;
}

.ticket .statusrespondido {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #4d9144;
}

.ticket .statuencerrado {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #4d9144;
}

.ticket-cabecalho .statusaberto {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #72259e;
}

.ticket-cabecalho .statusatendido {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #4d9144;
}

.ticket-cabecalho .statusaguardandoresposta {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #c9870e;
}

.ticket-cabecalho .statusrespondido {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #4d9144;
}

.ticket-cabecalho .statuencerrado {
  color: #fff;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 100px;
  min-width: 300px;
  text-align: center;
  background-color: #4d9144;
}

.ticket-cabecalho {
  margin-top: 25px;
  margin-bottom: 25px;
}

.ticket-cabecalho .number-ticket {
  text-align: center;
  padding: 10px;
  background-color: #555555;
  width: 300px;
  float: right;
  margin-right: 10px;
  border-radius: 10px;
  color: #b6b6b6;
}

.ticket-cabecalho .problema-ticket {
  text-align: center;
}

.ticket-cabecalho .collapse {
  background-color: #191A1E;
  padding: 10px;
  max-width: 1000px;
  margin: auto;
  margin-top: 25px;
  border-radius: 10px;
  color: #fff;
}

.ticket-cabecalho .assunto-ticket {
  margin-top: 50px;
  margin-bottom: 50px;
  color: #918f8f;
  margin-left: 10px;
}

.card-send {
  max-width: 500px;
  background-color: #8a8a8a;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
}

.card-send textarea{
  width: 100%;
  height: 150px;
  max-height: 150px;
  margin: auto;
  border-radius: 10px;
  padding: 10px;
}

.card-send button{
  margin: auto;
}

.emoji{
  font-size: 20px;
  text-decoration: none;
  margin: auto;
  cursor: pointer;
  margin-left: 10px;
}

.emojiPanel {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  background-color: #4b4b4b85;
  border-radius: 10px;
}

.emojiPanel button {
  font-size: 20px;
  padding: 5px;
  margin: 5px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: 0.3s ease-in-out;
}

.emojiPanel button:hover{
  transform: scale(1.1);
}

.mensagem-ticket{
  width: 100%;
  margin-top: 25px;
  background-color: #191A1E;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
}

.data-send{
  font-size: 10px;
  margin-top: -15px;
}

.mensagem-usuario{
  min-height: 150px;
  padding: 5px;
}

.mensagem-usuario .mensagem{
  float: right;
  padding: 10px;
  background-color: #1c2128;
  border-radius: 10px;
  max-width: 50%;
  margin-top: 25px;
  margin-right: -120px;
}

.titulo-usuario{
  margin-top: 10px;
  margin-right: 10px;
  float: right;
}

.titulo-usuario img{
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #3d4146;
  border-radius: 50%;
  margin-left: -55px;
}

.mensagem-admin{
  min-height: 150px;
  padding: 5px;
}

.mensagem-admin .mensagem{
  padding: 10px;
  float: left;
  margin-top: -50px;
  margin-left: 10px;
  background-color: #1c2128;
  border-radius: 10px;
  max-width: 50%;
}

.titulo-admin{
  margin-top: 10px;
  margin-left: 55px;
}

.titulo-admin img{
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #3d4146;
  border-radius: 50%;
  margin-left: -55px;
}

.usuarios-admin {
  max-width: 230px;
  text-align: start;
  color: #fff;
}

.painel-admin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.usuarios-admin b {
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  color: #0e0e0e;
  margin-left: 10px;
}

.usuarios-admin .contas-ativas {
  padding: 10px;
  background-color: #191A1E;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.usuarios-admin .contas-ativas b {
  margin-left: 40px;
}

.usuarios-admin .contas-inativas {
  padding: 10px;
  background-color: #191A1E;
  margin-top: -20px;
}

.usuarios-admin .contas-inativas b {
  margin-left: 10px;
}

.usuarios-admin .total-contas {
  padding: 10px;
  background-color: #191A1E;
  margin-top: -20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.usuarios-admin .total-contas b {
  margin-left: 28px;
}

/* Adicione o CSS para a animação de loading */

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 28, 28, 0.637);
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Estilo da barra de progresso */
#progress-container {
  width: 100%;
  background-color: #f0f0f0;
  height: 5px;
}

#progress-bar {
  width: 0;
  height: 100%;
  background-color: #3498db;
}

#cidadeInput {
  border: 1px solid #ccc;
  padding: 5px;
  font-size: 14px;
  width: 200px;
}

.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #73C0FC;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 20px;
  left: 2px;
  bottom: 2px;
  z-index: 2;
  background-color: #e8e8e8;
  transition: .4s;
}

.sun svg {
  position: absolute;
  top: 6px;
  left: 36px;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.moon svg {
  fill: #73C0FC;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  width: 24px;
  height: 24px;
}

/* .switch:hover */.sun svg {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
 
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* .switch:hover */.moon svg {
  animation: tilt 5s linear infinite;
}

@keyframes tilt {
 
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.input:checked + .slider {
  background-color: #183153;
}

.input:focus + .slider {
  box-shadow: 0 0 1px #183153;
}

.input:checked + .slider:before {
  transform: translateX(30px);
}

td  {
  color: var(--colorfontetd);
}

th {
  color: var(--colorfontetd);
}

/* Barra de rolagem para navegadores WebKit (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px; /* Largura da barra de rolagem */
  display: none;
}

::-webkit-scrollbar-thumb {
  background-color: #3498db; /* Cor do indicador de rolagem */
  border-radius: 6px; /* Borda arredondada do indicador de rolagem */
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Cor de fundo da barra de rolagem */
}

/* Barra de rolagem para o Firefox */
::-moz-scrollbar {
  width: 12px; /* Largura da barra de rolagem */
  display: none;
}

::-moz-scrollbar-thumb {
  background-color: #3498db; /* Cor do indicador de rolagem */
  border-radius: 6px; /* Borda arredondada do indicador de rolagem */
}

::-moz-scrollbar-track {
  background-color: #f1f1f1; /* Cor de fundo da barra de rolagem */
}

.deletar {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}

.dispositivo {
  background-color: var(--bg-100);
  max-width: 90%;
  padding: 50px;
  color: var(--colorfontetd);
  border-radius: 20px;
  margin: auto;
  margin-top: 50px;
}

.dispositivo .maplogin iframe {
  border-radius: 10px;
  max-width: 100%;
  height: 100px;
}

.dispositivosconectados {
  color: var(--colorfontetd);
  margin-top: 10px;
}
.dispositivosconectados a {
  text-decoration: none;
  color: var(--colorfontetd);
}

.perfil-nav {
  min-width: 100px;
}

.perfil-nav li {
  margin-top: 0px;
}

.perfil-nav .estilo-nav {
  margin-top: 25px;
  text-align: center;
}

.menu-bar {
  position: fixed;
  top: 0;
  max-width: 100%;
  width: 100%;
  z-index: 1000;
  transition: height 0.5s ease, box-shadow 0.5s ease; /* Adiciona uma transição suave para a mudança de altura e sombra */
}

.menu-bar-transition {
  transition: height 0.5s ease, box-shadow 0.5s ease; /* Adiciona uma transição suave para a mudança de altura e sombra */
}

.container-status {
  margin-top: 0;
}

.bg-confirm {
  background-color: var(--bg-100);
  color: var(--colorfontetd);
  border-radius: 10px;
}

.bg-confirm .btn {
  margin-left: 10px;
}

.senha {
  max-width: 500px;
  margin: auto;
  color: var(--colorfontetd);
  margin-top: 50px;
}

.senha .inputsenha {
  margin-top: 20px;
  display:block;
  text-align: center;
}

.senha input {
  width: 90%;
  padding: 10px;
  border-radius: 10px;
  border: none;
}