html {
  scroll-behavior: smooth;
}

body {
  /*background-color: #273342;*/
  overflow-x: hidden;

  /* Remove a barra de rolagem horizontal */
  &::-webkit-scrollbar {
    display: inline-block;
  }

  &::-webkit-scrollbar-corner {
    background: none;
    /* Remove a cor do canto da barra de rolagem */
    display: none;
    /* Oculta o canto da barra de rolagem */
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--bg-100);
    /* Cor do indicador de rolagem */
    border-radius: 1px;
    display: inline-block;
    /* Borda arredondada do indicador de rolagem */
  }

  &::-webkit-scrollbar-track {
    display: inline-block;
    /* Cor de fundo da barra de rolagem */
    background-color: var(--menu-100);
  }

  /* Barra de rolagem para o Firefox */
  &::-moz-scrollbar {
    width: 8px;
    /* Largura da barra de rolagem */
  }

  &::-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 */
    display: none;
  }
}

:root {
  --bg-100: #F0F5F9;
  --bg-containe: #bfc7d1;
  --bg-300: #bfc7d1;

  --text-100: #EEEEEE;
  --bg-body: #F0F5F9;
  --menu-100: #bfc7d1;
  --label-100: #2D3748;
  --bg-100: #6d7788;
  --bg-100-hover: #788189;
  --bg-table-100: #bfc7d1;
  --button-novo: #2D3748;
  --active-text: #3c3f44;
  --button-imprimir: #218fe9;
  --button-atulizar-tabela: #4e31b4;
  --button-excel-tabela: #40ad36;
  --button-limpar-data: rgba(255, 0, 0, 0.26);
  --bg-card: #ffffff;
  --bg-card-span: #868686;
  --numerico-logo: 10;
}

:root.checked {
  --bg-containe: #59616e;
  --text-100: #EEEEEE;
  --bg-body: #454e59;
  --menu-100: #292b35;
  --label-100: #EEEEEE;
  --bg-100: #32476b;
  --bg-100-hover: #566080;
  --bg-table-100: #59616e;
  --button-novo: #23304b;
  --active-text: #EEEEEE;
  --button-imprimir: #218fe9;
  --button-atulizar-tabela: #4e31b4;
  --button-excel-tabela: #40ad36;
  --button-limpar-data: rgba(255, 0, 0, 0.26);
  --bg-card: #ffffff;
  --numerico-logo: 0;
}

* {
  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 
   */
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--bg-body);
  color: var(--text-100);

}

.display td {
  color: var(--label-100);
}


section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url('img/login.jpg') no-repeat;
  backdrop-filter: blur(15px);
  background-size: cover;
  background-position: center;
  /*animation: animateBg 5s linear infinite;*/
}

.login {
  position: relative;
  min-width: 500px;
  background: transparent;
  border: 2px solid rgb(255, 255, 255, .5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
}

h2 {
  font-size: 2em;
  color: #fff;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
}

.input-box {
  position: relative;
  width: 310px;
  margin: 30px 0;
  border-bottom: 2px solid #fff;
}

.input-box .departamento {
  width: 100%;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: #fff;
  padding: 0 35px 0 5px;
}

.input-box .departamento option {
  background-color: var(--bg-100);
}


.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.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 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;
}





.nav-bi {
  /*background-color: #2c394a;*/
  background-color: var(--menu-100);
  position: fixed;
  display: flex;
  width: 100%;
  top: 0;
  z-index: 1000;
  opacity: 0;
  list-style: none;
  gap: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.menu,
.menu-mobile {
  background-color: var(--menu-100);
  position: fixed;
  left: 0;
  top: 90px;
  width: 55px;
  height: calc(100dvh - 90px);
  z-index: 100;
  overflow-y: auto;
  transition: 0.2s ease-in-out;
  opacity: 0;
  padding: 20px 0px 0px 0px;

  &:hover {
    width: 220px;
  }
}

.btn-menu-mobile {
  display: none;
}

.container-menu-mobile {
  max-width: 220px;
}

.menu-mobile {
  opacity: 1;
}

.menu.expanded,
.menu-mobile {
  width: 220px;
  transition: 0.0s ease-in-out;
  /* Set the width when the checkbox is checked */

}

.menu ul,
.menu-mobile ul {
  outline: none;
  text-decoration: none;
  list-style-type: none;
  overflow: scroll;

  margin: 0px;
  padding: 0px;
  margin-top: 50px;
}

.menu li,
.menu-mobile li {
  background-color: var(--bg-100-hover);
  border: 1px solid var(--bg-body);
  display: grid;
  z-index: 10000;

  &:hover {
    background-color: var(--bg-100);
  }
}

.menu ul li a,
.menu-mobile ul li a {
  outline: none;
  text-decoration: none;
  color: var(--text-100);
  padding: 10px;
  font-size: 10px;
  flex-wrap: nowrap;
  transition: 0.3s ease-in-out;
  margin-left: -4px;
  z-index: 10000;
  cursor: pointer;
}

.menu ul li .active,
.menu-mobile ul li .active {
  background-color: var(--bg-body);
  color: var(--active-text);
}

.menu .active,
.menu-mobile .active {
  animation: slideInFade 0.5s ease-in-out forwards;
}

@keyframes slideInFade {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu ul li a b,
.menu-mobile ul li a b {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  left: -200px;
  font-size: 15px;
  margin-top: 5px;
  font-weight: normal;
}

.menu:hover ul li a b,
.menu-mobile:hover ul li a b {
  opacity: 1;
  left: 50px;
}

.menu.expanded ul li a b,
.menu-mobile ul li a b {
  opacity: 1;
  left: 50px;
}

.menu ul li a span,
.menu-mobile ul li a span {
  padding: 10px;
  font-size: 20px;
}

.lista-menu-bottom {
  display: flex;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;

  & button {
    outline: none;
    border: none;
    padding: 5px 5px;
    width: 40px;
    margin: auto;
    font-size: 30px;
    color: var(--text-100);
    background-color: transparent;
  }
}

.sub-menu {
  padding: 0px;
  margin-top: -50px;
}

.sub-menu ul li {
  text-align: start;
  border: 1px solid var(--bg-body);
  background-color: var(--menu-100);

  &:hover>a b {
    color: var(--text-100);
  }

  &:hover>a span {
    color: var(--text-100);
  }

  &:hover>.active b {
    color: var(--label-100);
  }

  &:hover>.active span {
    color: var(--label-100);
  }


}

.sub-menu ul li a b {
  margin-left: -50px;
  color: var(--label-100);
}

.sub-menu ul li a span {
  color: var(--label-100);
}

.menu:hover .sub-menu ul li a b {
  position: relative;
  margin-top: 13px;
}

.menu.expanded .sub-menu ul li a b,
.menu-mobile .sub-menu ul li a b {
  position: relative;
  margin-top: 13px;
}

.menu:hover .sub-menu ul li a {
  flex-wrap: nowrap;
  text-wrap: nowrap;
}

hr {
  background-color: var(--label-100);
  color: var(--bg-100);
}

.container {
  border-radius: 10px;
  max-width: calc(100% - 50px);
  min-height: 100vh !important;
  height: 100% !important;
  margin-left: 50px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  padding: 150px 20px 20px 20px;
}

.containe {
  transition: 0.3s ease-in-out;
  opacity: 0;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--bg-containe);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: var(--label-100);
  animation: slide-out-left 0.3s forwards;
  animation: slide-in-right 0.3s forwards;

  & span .fa-solid,
  span .fa-regular {
    color: var(--text-100);
  }
}

.modal-backdrop {
  display: none;
}


@keyframes slide-out-left {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.container.expandeds,
#app.expandeds {
  border-radius: 10px;
  margin: auto;
  max-width: calc(100% - 235px);
  margin-left: 235px;
  margin-right: 0;
  padding: 150px 20px 20px 5px;
  transition: 0.3s ease-in-out;
}


.footer {
  position: relative;
  width: 100%;
  margin: auto;
  margin-right: 0;
  min-height: 50px;
  color: var(--text-100);
  font-size: 13px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px;
  background-color: var(--menu-100);
  opacity: 0;

  &.expandeds {
    width: calc(100% - 220px);
  }
}

#progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Aumenta o valor se necessário para garantir que a barra esteja acima de outros elementos */
}

.progress {
  background-color: transparent;
  border-radius: 0px;
}

#progress-bar {
  z-index: 1000000;
  background-color: var(--bg-100-hover);
  border-radius: 0px !important;
  height: 5px;
}

.spinner-recarregar {
  position: absolute;
  top: 9px;
  right: 2px;
  color: var(--bg-100-hover);
}

@media (width < 1000px) {

  .menu-left {
    display: none;
  }

  .logo-nav {
    display: none;
  }

  .btn-menu-mobile {
    display: inline-block;
    outline: none;
    border: none;
    padding: 10px 20px;
    font-size: 30px;
    background-color: var(--bg-100);
    color: var(--text-100);
    border-radius: 5px;
  }

  .offcanvas-header {
    background-color: var(--menu-100);
    border: none;
  }

  .offcanvas-body {
    border: none;
    background-color: var(--menu-100);
  }

  .btn-close-mobile {
    outline: none;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    background-color: var(--button-novo);
    color: #fff;
    position: absolute;
    margin-bottom: -130px;
    z-index: 1000;
    right: 10px;
  }

  .container-menu-mobile {
    max-width: 220px;
  }

  .container {
    margin: 0;
  }

  .container,
  .container.expandeds {
    border-radius: 10px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 100px;
    margin-left: 0px;
    padding: 150px 5px 5px 5px;
  }

  .footer.expandeds {
    width: 100%;
  }

}


.container .login {
  width: 50%;
  height: 50%;
  margin: 0 auto;
  color: #e4e4e4;
  margin-top: 25px;
}

.form-search {
  display: flex;
  width: 300px;
}

.form-search .btn {
  background: #404494;
  color: #e4e4e4;
}

.container .table {
  color: #e4e4e4;
}


.modal-content {
  background: var(--menu-100);
}

.bnt-info {
  background: #404494;
  color: #e4e4e4;
}

.bnt-info:hover {
  background: #60639b;
  color: #e4e4e4;
}

.bnt-info:focus-within {
  background: #60639b;
  color: #e4e4e4;
}

.card-header .info {
  width: 100%;
  background: #404494;
  color: #e4e4e4;
}

.card-header .info:hover {
  width: 100%;
  background: #60639b;
  color: #e4e4e4;
}

.logo {
  width: 150px;
  height: 50px;
  padding: 5px;
}

.logo-nav {
  width: 200px;
  height: 50px;
  margin-left: 20px;
  margin-top: 10px;
  object-fit: cover;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(6px 6px 20px rgba(0, 0, 0, 0.19));
  filter: brightness(var(--numerico-logo)) invert(1);
  /* Inverter as cores para simular a mudança para preto */
}

.dropdown-menu {
  background-color: var(--menu-100);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  gap: 10px;
  width: 200px;
}

.dropdown-menu li {
  color: #d9dbdf;
  gap: 10px;
  font-size: 16px;
  display: grid;
  padding: 7px 10px;

  & a {
    text-decoration: none;
    color: var(--label-100);
  }
}

.dropdown-menu li:hover {
  background-color: var(--bg-100-hover);
  color: var(--active-text);
}

.busca-filtro {
  width: 80%;
}

.busca-limpa {
  margin-left: 1000px;
}

.login-register {
  color: #e4e4e4;
  margin-top: 25px;
}

.login-register a {
  color: #e4e4e4;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../designer/img/08_FH_540.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(0);
  transition: filter 0.3s ease-in-out;
  z-index: -1;
}


.login-container {
  margin: 10% auto;
  color: #e4e4e4;
  background-color: #9e6c2b;
  border-radius: 10px;
  padding: 20px;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0.8;
  max-width: 600px;
}

.login-container:hover {
  transform: scale(1.02);
  background-color: #9e6c2b;
  box-shadow: 5px 5px 5px #36343181;
  opacity: 1.9;
}

.login-container:focus-within {
  transform: scale(1.02);
  background-color: #9e6c2b;
  box-shadow: 5px 5px 5px #36343181;
  opacity: 1.9;
}

.blur {
  filter: blur(5px);
}

tbody tr {
  transition: background-color 0.3s ease-in-out;
  color: #FFFFFF;
}

tbody tr:hover {
  background-color: #5e5e647e;
}

.cadastrafilial {
  margin-bottom: 25px;
}


form .formnome {
  width: 90%;
  height: 50%;
  margin: 0 auto;
  color: var(--label-100);
}

.formnome label {
  margin-top: 10px;
}


#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modall {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-contentt {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

.modal-contentt,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0.1)
  }

  to {
    transform: scale(1)
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #e4e4e4;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #404494;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

#fotoperfil {
  width: 200px;
  height: 200px;
  display: block;
  /* Garante que a margem automática funcione */
  margin: auto;
  /* Centraliza horizontalmente */
  border-radius: 50%;
  border: 5px solid var(--bg-100);
}

.dadosperfil {
  margin-top: 50px;
  display: grid;
}

.btn-programador {
  margin-top: 20px;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.removefoto {
  margin-top: 10px;
}

.removefoto button {
  position: absolute;
  outline: none;
  border: none;
  padding: 5px 12px 5px 12px;
  border-radius: 50%;
  font-size: 20px;
  background-color: #485e7a8f;
  color: #d9dbdf;
  margin-top: -50px;
  margin-left: 50px;
}

.removefoto button:hover {
  color: #c9caca;
}

.painel {
  background-color: var(--menu-100);
  padding: 5px;
  margin: 5px;
  width: 250px;
  height: 150px;
  border-radius: 10px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
  border: #2e445f solid 1px;

}

.painel:hover {
  background-color: var(--bg-100-hover);
  border: #273342 solid 1px;
}

.painel-valor {
  background-color: #c9caca;
  color: #273342;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  text-align: center;
  margin: auto;
  margin-top: 35px;
}

.painel-valor a {
  color: #273342;
  font-weight: bold;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 1;
}

.ball {
  width: 25px;
  height: 25px;
  background-color: var(--menu-100);
  border-radius: 50%;
  margin: 10px;
  animation: jump 2s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes jump {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-100px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-50px);
  }
}

.ball:nth-child(2) {
  animation-delay: 0.2s;
}

.ball:nth-child(3) {
  animation-delay: 0.4s;
}

.pagination {
  width: 100%;
  max-width: 250px;
}

.pagination .page-link {
  background-color: #2D3748;
  color: #c9caca;
  border-radius: 5px;
  max-width: 250px;
}

.pagination .active {
  background-color: var(--bg-100);
  color: #c9caca;
  border-radius: 5px;
}

.cadastra {
  margin-top: 25px;
}

.foto-perfil {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-left: 20px;
  border-style: solid;
  border-color: #404494;
  background: #60639b;
  border-radius: 50%;
  transition: border-color 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.foto-perfil:hover {
  border-color: #6a6ead;
  filter: blur(0.5px);
}


.tegs-buscas {
  font-size: 25px;
  text-align: center;
  margin-top: 25px;
}

.rows {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: auto;
}

.usuarios {
  margin-bottom: 25px;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  min-width: 350px;
  max-width: 350px;
  position: relative;
  flex: 1;
  /* Isso faz com que cada item ocupe o espaço disponível igualmente */
}

.usuarios:hover {
  transform: scale(1.02);
}

.usuarios .card {
  background-color: var(--menu-100);
  padding: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: box-shadow 0.3s ease-in-out;
  min-width: 300px;
  max-width: 400px;
  max-width: 350px;
}

.usuarios .card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.usuarios .card img {
  width: 250px;
  height: 250px;
  border-radius: 10px;
}

.form-cadastra {
  width: 300px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
}

.btnpermissao {
  position: relative;
  float: right;
}

.usuariogrupo {
  border: none;
  border-radius: 5px;
  padding: 5px 5px 5px 25px;
  max-width: 50%;
  margin: auto;
  margin-top: 10px;
}

.inputgrupousuario {
  margin: auto;
  text-align: center;
}

.inputgrupousuario span {
  position: absolute;
  margin: auto;
  color: var(--text-200);
  margin-top: 15px;
  margin-left: 5px;
}

.deletargrupo {
  position: absolute;
}


/* 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);
  }
}

.selecionapermicao {
  border: none;
  padding: 7px;
  border-radius: 5px;
}

.btnpermissaoenviar {
  position: absolute;
  margin-top: 0px;
  margin-left: 2px;
}

.btncriargrupo {
  margin-top: 10px;
}

.meta {
  background-color: #444343;
  border-radius: 10px;
  display: flex;
  padding: 10px;
  margin-top: 10px;
  transition: 0.3s ease-in-out;
}

.meta:hover {
  transform: scale(1.01);
  background-color: #5a5858;
}

.metagroup {
  text-align: center;
  background-color: #222831;
  max-width: 250px;
  margin: auto;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
}

.metagroup input {
  border: none;
  padding: 10px;
  max-width: 350px;
  border-radius: 10px;
}

.btnenviarmeta {
  margin-top: 25px;
  text-align: center;
}

.btnenviarmeta button {
  width: 400px;
  max-width: 300px;
  padding: 10px;
  font-size: 20px;
}

.datametapv {
  text-align: center;
}

.datametapv select {
  border: none;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.meta .nomefilial {
  width: 100%;
  text-align: center;
}

.meta .datameta {
  width: 100%;
  text-align: center;
}

.meta .valormeta {
  width: 100%;
  text-align: center;
}

.btnmetas {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: var(--bg-100);
  color: #fff;
  font-size: 20px;
  margin-top: 25px;
}

.btnmeta {
  display: flex;
}

.btnmeta .btnmetapv {
  margin-right: 10px;
  margin-top: 10px;
}

.logo-login {
  width: 200px;
  height: 50px;
  margin-left: 50px;
  margin-top: 20px;
  background-size: cover;
  object-fit: cover;
}

.projecao {
  background-color: var(--bg-100);
  margin-top: 10px;
  text-align: center;
  height: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  border-radius: 10px;
  font-size: 20px;
}

.projecao p {
  margin-top: 10px;
}

.btncriarprojecao {
  margin-top: 10px;
}

.meta a {
  text-decoration: none;
  color: #fff;
}

.meta p {
  margin-top: 10px;
}

.backupbanco {
  position: relative;
  display: flex;
  padding: 20px;
}

/* Barra de rolagem para navegadores WebKit (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px;
  /* 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 */
  display: none;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  /* Cor de fundo da barra de rolagem */
  display: none;
}

/* Barra de rolagem para o Firefox */
::-moz-scrollbar {
  width: 8px;
  /* 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 */
  display: none;
}

::-moz-scrollbar-track {
  background-color: #f1f1f1;
  /* Cor de fundo da barra de rolagem */
  display: none;
}

.buscas {
  margin-right: 50px;
}

.informacoeshost {
  max-width: 100%;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-top: 100px;
  margin: auto;
  background-color: #313b4d;
  min-width: 250px;
}

.informacoeshost h5 {
  color: #99a7b9;
  padding: 10px;
}

.alert {
  display: flex;
  position: fixed;
  z-index: 1000;
  margin: auto;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 1s ease-in-out;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.alert.show {
  opacity: 1;
}

.alert.hide {
  opacity: 0;
}

.btn-confirma {
  margin-left: 5px;
  margin-right: 5px;
}

.btn-infohost {
  margin-left: 10px;
}

.checkbox-wrapper-35 .switch {
  display: none;
}

.checkbox-wrapper-35 .switch+label {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 15px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-wrapper-35 .switch+label::before,
.checkbox-wrapper-35 .switch+label::after {
  content: '';
  display: block;
}

.checkbox-wrapper-35 .switch+label::before {
  background-color: #05012c;
  border-radius: 500px;
  height: 15px;
  margin-right: 8px;
  -webkit-transition: background-color 0.125s ease-out;
  transition: background-color 0.125s ease-out;
  width: 25px;
}

.checkbox-wrapper-35 .switch+label::after {
  background-color: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 1px 0 rgba(37, 34, 71, 0.05), 0 2px 2px 0 rgba(37, 34, 71, 0.1), 0 3px 3px 0 rgba(37, 34, 71, 0.05);
  height: 13px;
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transition: -webkit-transform 0.125s ease-out;
  transition: -webkit-transform 0.125s ease-out;
  transition: transform 0.125s ease-out;
  transition: transform 0.125s ease-out, -webkit-transform 0.125s ease-out;
  width: 13px;
}

.checkbox-wrapper-35 .switch+label .switch-x-text {
  display: block;
  margin-right: .3em;
}

.checkbox-wrapper-35 .switch+label .switch-x-toggletext {
  display: block;
  font-weight: bold;
  height: 15px;
  overflow: hidden;
  position: relative;
  width: 25px;
}

.checkbox-wrapper-35 .switch+label .switch-x-unchecked,
.checkbox-wrapper-35 .switch+label .switch-x-checked {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
  transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
  transition: transform 0.125s ease-out, opacity 0.125s ease-out;
  transition: transform 0.125s ease-out, opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
}

.checkbox-wrapper-35 .switch+label .switch-x-unchecked {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.checkbox-wrapper-35 .switch+label .switch-x-checked {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.checkbox-wrapper-35 .switch+label .switch-x-hiddenlabel {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-35 .switch:checked+label::before {
  background-color: #ffb500;
}

.checkbox-wrapper-35 .switch:checked+label::after {
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.checkbox-wrapper-35 .switch:checked+label .switch-x-unchecked {
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.checkbox-wrapper-35 .switch:checked+label .switch-x-checked {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.apibackup {
  max-width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  flex: 1;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 25px;
}

.api {
  background-color: var(--bg-100);
  max-width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 25px;
}

.api h5 {
  margin-top: 20px;
}

.api p {
  background-color: #222831;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  word-wrap: break-word;
  user-select: none;
  cursor: pointer;
  text-align: center;
}

.api p:hover {
  transform: scale(1.02);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}

.api p:active {
  transform: scale(1);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}

.api p i {

  margin-left: 5px;
  margin-top: 5px;
}

.configuracao {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 10px;
}

.ldap {
  max-width: 100%;
  min-width: 300px;
  flex: 1;
  margin-bottom: 25px;
}

.ativaedicaoconfiguracao input {
  color: #fff;
}

.containerflex {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.containerinterno {
  max-width: 100%;
  flex: 1;
}

.containert {
  max-width: 250px;
}

.btn-lock {
  position: relative;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  display: inline-block;
  background: var(--menu-100);
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  padding: 12px 0 0 18px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  left: 0;
}

.btn-lock svg {
  fill: none;
  transform: translate3d(0, 0, 0);
  width: 25px;
  margin-left: -8px;
  margin-top: -11px;
}

.btn-lock svg .bling {
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 3;
  stroke-dashoffset: 15;
  transition: all 0.3s ease;
}

.btn-lock svg .lock {
  stroke: #fff;
  stroke-width: 4;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 48;
  transition: all 0.4s ease;
}

.btn-lock svg .lockb {
  fill: #fff;
  fill-rule: evenodd;
  clip-rule: evenodd;
  transform: rotate(-2deg);
  transform-origin: 14px 20px;
  transition: all 0.2s ease;
}

#inpLock {
  display: none;
}

#inpLock:checked+label {
  background: #ff5b5b;
}

#inpLock:checked+label svg {
  opacity: 1;
}

#inpLock:checked+label svg .bling {
  animation: bling6132 0.3s linear forwards;
  animation-delay: 0.2s;
}

#inpLock:checked+label svg .lock {
  stroke-dasharray: 36;
  animation: locked 0.3s linear forwards;
}

#inpLock:checked+label svg .lockb {
  transform: rotate(0);
  transform-origin: 14px 22px;
}

@keyframes bling6132 {
  50% {
    stroke-dasharray: 3;
    stroke-dashoffset: 12;
  }

  100% {
    stroke-dasharray: 3;
    stroke-dashoffset: 9;
  }
}

@keyframes locked {
  50% {
    transform: translateY(1px);
  }
}

.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);
}

.estilo {
  margin-left: 20px;
}

.autolog {
  background-color: var(--bg-100);
  max-width: 200px;
  padding: 10px;
  margin-left: 200px;
  position: absolute;
  margin-top: -25px;
  border-radius: 10px;
  text-align: center;
}

.autolog label {
  margin-top: 10px;
}

.autolog input {
  background-color: transparent;
  border: none;
  max-width: 50px;
  text-align: center;
  right: 10px;
  color: var(--text-100);
  margin-top: 10px;
  font-size: 25px;
}

.autolog span {
  margin-top: 10px;
  font-size: 25px;
}

.perfil-nav {
  width: 75px;
  margin: auto;
  margin-right: 0;
}

.perfil-nav img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: solid 2px #2e445f;
  object-fit: cover;
}

.menu-tp {
  width: 100%;
  display: flex;
}

.notifica {
  position: absolute;
  right: 100px;
  top: 25px;
  cursor: pointer;

  & .notifica-numero {
    position: absolute;
    font-size: 12px;
    padding: 3px 5px;
    font-weight: bold;
    margin-left: -10px;
    border-radius: 5px;
    background-color: rgba(255, 0, 0, 0.644);
    color: #fff;
    z-index: 100;

  }

  & span {
    font-size: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 3px 3px 5px rgba(0, 0, 0, 0.19);
  }
}

.conteiner-notificar {
  position: absolute;
  width: 300px;
  height: 500px;
  background-color: var(--bg-100-hover);
  right: 10px;
  top: 85px;
  border-radius: 10px;
  border: 2px solid var(--bg-table-100);
  overflow: scroll;
  transition: 0.2s ease;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: none;
  opacity: 0;

  & table {
    width: 100%;
    margin-top: 45px;

    & thead td {
      padding: 10px;
      background-color: var(--active-text);
      color: var(--bg-body);
      position: fixed;
      width: 296px;
      margin-top: -45px;
      border-radius: 10px 10px 0px 0px;
    }

    & .notificacoes {
      background-color: #000;
      width: 100%;
      padding: 100px;

      & .data-notifica {
        font-size: 10px;
        text-align: end;
        width: 70px;
      }


      & tr {
        width: 100%;


        & .titulo-notificacao {
          width: 280px;
        }

        & td {
          width: 100%;
          background-color: var(--button-novo);
          padding: 10px;
          border-top: 1px solid var(--text-100);
          cursor: pointer;
        }
      }
    }
  }

  & .arrow-notificar {
    position: fixed;
    margin-top: -20px;
    width: 0;
    height: 0;
    right: 93px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid var(--bg-100);
  }

}

.estilo-nav {
  margin-top: 20px;
}

.dropstart ul {
  left: 0;
}

.bg-confirm {
  background-color: var(--bg-100);
  color: var(--text-100);
}

.paginas {
  min-width: 400px;
  position: relative;
}

.paginas .formpagina {
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.paginas .formpagina .inputformpagina input {
  padding: 10px 10px 10px 40px;
  border: none;
  outline: none;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
}

.paginas .formpagina .inputformpagina span {
  position: absolute;
  margin-top: 8px;
  margin-left: -5px;
  padding: 5px 5px 5px 5px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 25px;
  background-color: #183153;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.paginas .formpagina .inputformpagina span:hover {
  background-color: #000;
  color: #fff;
}

.paginas .formpagina button {
  width: 200px;
  margin-top: 10px;
}

.paginas .btn-pagina {
  margin-bottom: 10px;
}

.paginas table {
  width: 100%;
}

.paginas thead {
  background-color: #203064;
  height: 50px;
}

.paginas tbody {
  height: 40px;
}

.paginas tbody tr a {
  padding: 5px;
  color: var(--text-100);
  background-color: var(--menu-100);
  border-radius: 10px;
  font-size: 20px;
}

.paginas thead tr td {
  text-align: center;
}

.paginas tbody tr td {
  text-align: center;
  cursor: pointer;
  background-color: var(--bg-100-hover);
  border-bottom: var(--bg-body) 1px solid;
}

.paginas .irpara {
  cursor: default;
  display: grid;
  background-color: var(--menu-100);
}

.paginas .statusativo {
  background-color: #3cbe47;
  display: grid;
}

.paginas .statusdesabilitado {
  background-color: #be3c3c;
  display: grid;
  padding: 10px;
}

/* Hide the default checkbox */
.containerss input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ativardesativarpagina {
  width: 75px;
  margin: auto;
  margin-top: 50px;
}

.containerss {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
}

/* Create a custom checkbox */
.checkmark {
  position: relative;
  height: 70px;
  width: 70px;
  border-radius: 10em;
  background-color: #212121;
  transition: 0.3s;
  box-shadow: 6px 6px 10px #000000,
    -6px -6px 10px #3c3c3c;
}

.checkmark svg {
  width: 45px;
  height: 45px;
  margin-top: 11px;
  margin-left: 12.5px;
  fill: #264d39;
  transition: 0.2s;
}

.checkmark:active {
  box-shadow: 2px 2px 3px #000000,
    -2px -2px 3px #3c3c3c;
}

/* When the checkbox is checked */
.containerss input:checked~.checkmark {
  box-shadow: 4px 4px 6px #000000,
    -4px -4px 6px #3c3c3c;
}

.containerss input:checked~.checkmark svg {
  fill: #00ff7b;
}

.containerss input:checked~.checkmark:active {
  box-shadow: 2px 2px 3px #000000,
    -2px -2px 3px #3c3c3c;
}

.caminhopagina {
  display: grid;
  padding: 10px;
  max-width: 500px;
  margin: auto;
}

.caminhopagina input {
  padding: 10px 10px 10px 40px;
  border-radius: 10px;
  outline: none;
}

.caminhopagina button {
  padding: 10px;
  max-width: 200px;
  margin: auto;
  border-radius: 10px;
  margin-top: 10px;
  border: none;
  background-color: var(--bg-100);
  color: var(--text-100);
}

.caminhopagina span {
  position: absolute;
  color: #000;
}

.caminhopagina .filial {
  margin-top: 8px;
  margin-left: 8px;
  font-size: 25px;
}

.caminhopagina .caminho {
  margin-top: 55px;
  margin-left: 8px;
  font-size: 25px;
}

#checkboxInput {
  display: none;
}

.bookmark {
  cursor: pointer;
  background-color: var(--menu-100);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: absolute;
  margin-left: 5px;
  margin-top: -5px;
}

.svgIcon path {
  stroke-dasharray: 200 0;
  stroke-dashoffset: 0;
  stroke: white;
  fill: #dddddd00;
  transition-delay: 0s;
  transition-duration: 0.5s;
}

#checkboxInput:checked~.svgIcon path {
  fill: white;
  animation: bookmark 0.5s linear;
  transition-delay: 0.5s;
}

@keyframes bookmark {
  0% {
    stroke-dasharray: 0 200;
    stroke-dashoffset: 80;
  }

  100% {
    stroke-dasharray: 200 0;
  }
}


.grupousuario {
  background-color: var(--bg-100);
  width: 250px;
  max-height: 200px;
  margin: auto;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  overflow: scroll;
  transition: 0.3s ease-in-out;

  &::-webkit-scrollbar {
    display: inline-block;
  }

  &::-webkit-scrollbar-corner {
    display: none;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #3498db;
    /* Cor do indicador de rolagem */
    border-radius: 6px;
    display: inline-block;
    /* Borda arredondada do indicador de rolagem */
  }

  &::-webkit-scrollbar-track {
    display: none;
    /* Cor de fundo da barra de rolagem */
    background-color: #000;
  }

  /* Barra de rolagem para o Firefox */
  &::-moz-scrollbar {
    width: 12px;
    /* Largura da barra de rolagem */
  }

  &::-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 */
    display: none;
  }

}

.grupousuario h5 {
  transition: 0.3s ease-in-out;
  cursor: pointer;
  padding: 10px;
}

.grupousuario hr {
  padding: 0px;
  margin: 0;
  margin-top: -8px;
}

.grupousuario h5:hover {
  background-color: var(--menu-100);
}

.permissaogrupo {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 10px;
}

.removeprojecao {
  position: absolute;
  padding: 5px;
  outline: none;
  border: none;
  border-radius: 10px;
  background-color: #c62a2a;
  color: #fff;
  font-size: 25px;
  width: 50px;
  margin-top: -24px;
  right: 15px;
}

.tablelog {
  height: 80vh;
  overflow: scroll;

  &::-webkit-scrollbar {
    display: inline-block;
  }

  &::-webkit-scrollbar-corner {
    display: none;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #3498db;
    /* Cor do indicador de rolagem */
    border-radius: 6px;
    display: inline-block;
    /* Borda arredondada do indicador de rolagem */
  }

  &::-webkit-scrollbar-track {
    display: none;
    /* Cor de fundo da barra de rolagem */
    background-color: #000;
  }

  /* Barra de rolagem para o Firefox */
  &::-moz-scrollbar {
    width: 12px;
    /* Largura da barra de rolagem */
  }

  &::-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 */
    display: none;
  }
}

.imprimirlogs {
  position: absolute;
  margin-top: -40px;
}

.exportarexcel {
  position: absolute;
  margin-top: -40px;
  margin-left: 150px;
}

.pesquisatabela {
  position: absolute;
  margin-top: -40px;
  margin-left: 350px;
  padding: 5px;
  outline: none;
  border-radius: 10px;
  border: none;
}

.dt-container {
  background-color: var(--bg-table-100);
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

.dt-input {
  background-color: var(--bg-table-100) !important;
}

.dt-container #dt-length-1 {
  background-color: var(--bg-100-hover);
}

.pesquisardatatable {
  outline: none;
  border: none;
  padding: 10px 10px 10px 25px;
  border-radius: 10px;
}

.selecione1datatable {
  outline: none;
  border: none;
  padding: 5px 5px 5px 25px;
  border-radius: 10px;
}

.spanpesquisardatatable {
  position: absolute;
  color: #000;
  z-index: 10;
}



.multiple1datatable {
  outline: none;
  border: none;
  padding: 5px 5px 5px 25px;
  border-radius: 10px;
  width: 250px;
  color: #000;
}

.select2,
.selection,
.select2-selection--multiple {
  overflow: scroll;
  height: 45px;
  border-radius: 0px 5px 5px 0px !important;
}


.select2-selection--multiple {
  padding: 0px 0px 0px 25px;
}

/* Estilo do contêiner principal */
.select2-container {
  width: 500px;
  /* Largura do contêiner */
}

/* Estilo do dropdown */
.select2-dropdown {
  border: 1px solid #ccc;
  /* Borda do dropdown */
  background-color: #f9f9f9;
  /* Cor de fundo do dropdown */
}

/* Estilo de cada opção no dropdown */
.select2-results__option {
  padding: 8px;
  /* Espaçamento interno das opções */
  color: #333;
  /* Cor do texto das opções */
}

/* Estilo de cada opção selecionada na área de seleção */
.select2-selection__choice {
  background-color: #424242;
  /* Cor de fundo das opções selecionadas */
  color: #242020;
  /* Cor do texto das opções selecionadas */
  border: 1px solid #232424;
  /* Borda das opções selecionadas */
  padding: 2px 6px;
  /* Espaçamento interno das opções selecionadas */
  margin-right: 5px;
  /* Espaçamento entre as opções selecionadas */
}

/* Adiciona cor de fundo e texto para opções selecionadas */
.select2-results__option.selected-option {
  background-color: #272727;
  /* Cor de fundo das opções selecionadas */
  color: #fff;
  /* Cor do texto das opções selecionadas */
}

.excluir {
  color: #fff;
  font-size: 20px;
  outline: none;
  border: none;
  padding: 5px 10px 5px 10px;
  background-color: transparent;
  border-radius: 5px;
  transition: 0.3s ease-in-out;

  &:hover {
    background-color: #ff424296;
  }
}

#logo,
#login {
  background-color: #333;
  /* Substitua pela cor desejada */
  color: #fff;
  /* Substitua pela cor do texto desejada */
  width: 200px;
  margin: auto;
  margin-bottom: 50px;
}

.tituloimagem {
  position: absolute;
  margin-top: -50px;
  font-size: 11px;
}

.logologin {
  display: flex;
}

.loadingoverlay {
  background-color: var(--bg-body);
  transition: 0.0s ease-in;
}

.loadingoverlay .fa {
  color: var(--label-100);
}

.your-custom-class {
  color: var(--label-100);
  position: absolute;
  height: 50%;
}

.swal2-popup {
  background-color: var(--bg-100);
  color: var(--text-100);
}

.swal2-toast[aria-live="polite"] {
  background-color: var(--bg-100);
  color: var(--text-100);
}

/* Hide the default checkbox */
.containercheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.containercheck {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  border-radius: 50%;
  background-color: white;
  width: 25px;
  margin: auto;
}

/* Create a custom checkbox */
.checkmarks {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  transition: .3s;
  transform: scale(0);
  border-radius: 50%;
}

/* When the checkbox is checked, add a blue background */
.containercheck input:checked~.checkmarks {
  background-color: #20c580;
  transform: scale(1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarks:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containercheck input:checked~.checkmarks:after {
  display: block;
}

.containercheck input:checked~.celebrate {
  display: block;
}

/* Style the checkmark/indicator */
.containercheck .checkmarks:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.30em;
  height: 0.5em;
  border: solid rgb(255, 255, 255);
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

.containercheck .celebrate {
  position: absolute;
  transform-origin: center;
  animation: kfr-celebrate .4s;
  animation-fill-mode: forwards;
  display: none;
  stroke: #20c580;
}

@keyframes kfr-celebrate {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
    display: none;
  }
}

.alterarfoto {
  background-color: var(--menu-100);
  max-width: 350px;
  border-radius: 10px;
  margin: auto;
  text-align: center;
  padding: 10px;
}

#btnAlterarImagem {
  position: absolute;
  background-color: #5b668a86;
  color: #fff;
  font-size: 10px;
  padding: 3px 5px 3px 5px;
  border-radius: 50%;
  outline: none;
  border: none;
  margin-left: 15px;
  margin-top: -20px;
  transition: 0.3s ease-in-out;

  &:hover {
    transform: scale(1.2);
  }
}

#btnEnviar {
  background-color: #5b668a;
  color: #fff;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
  outline: none;
  border: none;
}

#croppie-container {
  margin-top: 10px;
  margin-bottom: 10px;
}

#desativausuario {
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 10px;
  background-color: #bb2929;
  color: #fff;
}

.pagination-container {
  margin-top: 20px;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  background-color: var(--bg-100-hover);
  margin: 10px;
  border: none;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  min-width: 250px;
  max-width: 400px;

  &:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
}

.pagination-button {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  background-color: var(--menu-100);
  border: 1px solid var(--text-100);
  border-radius: 5px;
  color: var(--label-100);
  transition: 0.3s ease-in-out;
}

.pagination-button:hover {
  background-color: var(--bg-100-hover);
}

.pagination-button.active {
  background-color: var(--bg-100-hover);
}

.card-body {
  padding: 10px;
  min-height: 350px;
}

.card-img-top {
  max-width: 200px;
  width: 200px;
  height: 200px;
  display: block;
  /* Garante que a margem automática funcione */
  margin: auto;
  /* Centraliza horizontalmente */
}

.card-informacao {
  min-height: 120px;
  margin-top: 10px;
  padding: 10px;
}

.card-informacao .card-text {
  margin-top: 10px;
}

.btn-editar-usuario {
  outline: none;
  border: none;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  padding: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--menu-100);
  color: #fff;
}

.none {
  position: absolute;
  top: 1000px;
}

.dot-spinner {
  --uib-size: 8.8rem;
  --uib-speed: .9s;
  --uib-color: var(--label-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: '';
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.loading-container {
  margin-top: -390px;
}

.dt-scroll-head {
  border-radius: 10px 10px 0px 0px;
  margin-top: 10px;
  background-color: var(--button-novo);
  color: var(--text-100);
}

.dt-scroll-headInner {
  max-width: 100%;
  width: 100%;
}

.display {
  max-width: 100%;
  width: 100%;
}

.buttons-print,
.buttons-excel {
  display: none !important;
}

.dt-button-collection {
  background-color: var(--bg-body) !important;
  color: var(--label-100);
}

.buttons-colvis {
  margin: 0px 0px 20px 0px !important;
  border-radius: 5px !important;
}

body.dt-print-view * {
  text-align: center;
  margin: 1em;
  color: #000;
}

#event-color {
  width: 20px;
  height: 20px;

}

#voltar {
  outline: none;
  border: none;
  background-color: var(--button-novo);
  color: var(--text-100);
  padding: 10px;
  border-radius: 5px;
}

.input-popup {
  display: grid;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;

  & .input-containe {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    & .inputs {
      display: flex;
      flex: 1;
      flex-wrap: nowrap;
      min-width: 300px;

      & span {
        background-color: var(--button-novo);
        color: #fff;
        padding: 10px;
        border-radius: 5px 0px 0px 5px;
      }

      & input {
        outline: none;
        border: none;
        width: 100%;
        padding: 10px;
        border-radius: 0px 5px 5px 0px;
      }
    }
  }
}

.selects-popup {
  display: grid;
  gap: 10px;
}