@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'sans-serif';
}
:root {
  --dark: #34495E;
  --ligth: #ffffff;
  --success: #0ABF30;
  --error: #E24D4C;
  --warning: #E9BD0C;
  --info: #3498DB;
  --notificacoes: #252A34;
}
html {
  font-size: 14px;
  /* Define o tamanho base do navegador */
}
/* ========== TELA DE LOGIN (INICIO) ===========*/
body {
  background-color: #1B1F27;
  font-family: "open sans", "Helvetica", "sans-serif";
  overflow: hidden;
}
.area-login {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #181920;
  width: 355px;
  height: 450px;
  padding: 40px;
  border-radius: 10px;
}
.login form {
  display: flex;
  flex-direction: column;
}
.login input {
  margin-top: 10px;
  background-color: #252a34;
  color: #CBD0F7;
  border: none;
  height: 45px;
  width: 300px;
  outline: none;
  border-radius: 8px;
  padding-left: 10px;
}
.login img {
  width: 250px;
  height: auto;
}
.input::placeholder {
  color: #CBD0F7;
  font-size: 14px;
}
form [type="submit"] {
  display: block;
  background-color: #5568fe;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  width: 300px;
  cursor: pointer;
}
label {
  color: #C6CAF7;
  align-items: right;
  margin-right: 250px;
}
form .label_senha {
  color: #666e7e;
  align-items: center;
  font-size: 12px;
  width: 150px;
  margin-left: 250px;
  margin-top: 10px;
  cursor: pointer;
}
/* ========== TELA DE LOGIN (FIM) ===========*/
/* ==========  MASTER (INICIO) =========*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  height: 100vh;
}
nav.menu-lateral {
  width: 60px;
  height: 100%;
  background-color: #1B1F27;
  padding: 40px 0 40px 1%;
  box-shadow: 3px 0 0 #5568fe;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: 0.5s;
  z-index: 999;
}
nav.menu-lateral.expandir {
  width: 15rem;
}
.btn-expandir {
  width: 100%;
  padding-left: 10px;
}
.btn-expandir i {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  margin-left: -5px;
}
li:hover {
  background: #5568fe;
}
li {
  transition: 0.1s;
}
.ativo {
  background-color: #5568fe;
}
ul {
  height: 100%;
  list-style-type: none;
}
.item-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.2rem;
  display: flex;
  line-height: 2rem;
}
.txt-link {
  margin-left: 50px;
  transition: 0.5s;
  opacity: 0;
}
nav.menu-lateral.expandir .txt-link {
  margin-left: 2rem;
  opacity: 1;
}
.icon i {
  font-size: 1.2rem;
}
/* ========= MASTER (FIM) ==========*/
/*===== ALERT PADRÃO (INICIO) =====*/
.notifications {
  position: fixed;
  top: 30px;
  right: 20px ;
  z-index: 9999;
}
.notifications :where(.toast, .column) {
  display: flex;
  align-items: center;
}
.notifications .toast {
  width: 400px;
  position: relative;
  overflow: hidden;
  list-style: none;
  border-radius: 4px;
  padding: 16px 17px;
  margin-bottom: 10px;
  background-color: var(--notificacoes);
  justify-content: space-between;
  animation: show_toast 0.3s ease forwards;
  color: #C6CAF7;
  z-index: 9999;
}
#avisos_modal {
  border-radius: 8px;
  padding: 20px;
}
@keyframes show_toast {
  0% {
    transform: translateX(100%);
  }
  40% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-10px);
  }
}
.toast::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  bottom: 0px;
  left: 0px;
  animation: progress 5s linear forwards;
}
@keyframes progress {
  100% {
    width: 0%;
  }
}
.toast.success::before {
  background-color: var(--success);
}
.toast.error::before {
  background-color: var(--error);
}
.toast.warning::before {
  background-color: var(--warning);
}
.toast.info::before {
  background-color: var(--info);
}
.toast .column i {
  font-size: 1.75rem;
}
.toast.success .column i {
  color: var(--success);
}
.toast.error .column i {
  color: var(--error);
}
.toast.warning .column i {
  color: var(--warning);
}
.toast.info .column i {
  color: var(--info);
}
.toast .column span {
  font-size: 1.07rem;
  margin-left: 12px;
}
.toast i:last-child {
  color: #AEB0D7;
  cursor: pointer;
}
.toast i:last-child:hover {
  color: var(--dark);
}
/*===== ALERT PADRÃO (  FIM ) =====*/
/* ==========CABEÇALHO CADASTROS (INICIO) ============= */
.container {
  display: flex;
  justify-content: center;
  align-items: normal;
  width: 100%;
  height: 100vh;
  background-color: #363636;
}
.form_box {
  display: flex;
  flex-direction: column;
  background-color: #e6e6e6;
  border-radius: 8px;
  margin-left: 80px;
  width: 90%;
  height: 95%;
  margin-top: 18px;
}
h2 {
  display: block;
  margin-left: 32px;
  margin-top: 20px;
  font-size: 24px;
  color: #404040;
  font-family: "open sans", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  size: 30px;
  font-weight: 100px;
  font-style: 'normal';
  line-height: 33px;
  padding: 10px;
}
.form_box form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 30px;
}
.form_box input {
  width: calc(50% -8px);
  height: 36px;
  border: 0;
  border-bottom: 2px solid #aaaaaa;
  margin-bottom: 20px;
  font-size: 16px;
  margin-right: 14px;
  outline: none;
  transition: all 0.3s ease-out;
  border-radius: 0;
  padding-top: 15px;
  background-color: #e6e6e6;
}
.form_box textarea {
  width: 90%;
  height: 60px;
  border: 0;
  border-bottom: 2px solid #aaaaaa;
  margin-bottom: 8px;
  font-size: 16px;
  margin-right: 14px;
  outline: none;
  transition: all 0.3s ease-out;
  border-radius: 0;
  padding-top: 30px;
  background-color: #e6e6e6;
}
.form_box select {
  background-color: #e6e6e6;
  border-radius: 4px ;
  border: 2px solid #aaaaaa;
  outline: none;
  transition: all 0.3s ease-out;
}
.form_box input:focus {
  border-bottom: 2px solid #5568fe;
}
.form_box textarea:focus {
  border-bottom: 2px solid #5568fe;
}
.label-float {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  position: relative;
  margin-right: 20px;
}
.label-float label {
  color: #181818;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 13px;
  transition: all 0.3s ease-out;
}
.form_box input:focus + label,
.form_box input:valid + label,
.form_box textarea:focus + label,
.form_box textarea:valid + label,
.form_box select:focus + label,
.form_box select:valid + label {
  font-size: 13px;
  margin-top: 0;
  color: #181818;
}
.label-float [type="submit"][name='btn_salvar'] {
  background-color: #30be14;
  color: #fff;
  padding: 5px 5px;
  border: 1px solid #30be14;
  cursor: pointer;
  font-size: 15px;
  width: 120px;
  height: 36px;
  transition: all, 0.3s ease;
  border-radius: 8px;
  margin-bottom: 0px;
}
.label-float [type="submit"][name='btn_salvar']:hover {
  background-color: #fff;
  color: #30be14;
}
.label-float [type="submit"][name='btn_cancelar'] {
  background-color: #ff7300;
  color: #fff;
  padding: 5px 5px;
  border: 1px solid #ff7300;
  cursor: pointer;
  font-size: 15px;
  width: 120px;
  height: 36px;
  transition: all, 0.3s ease;
  border-radius: 8px;
  margin-bottom: 0px;
}
.label-float [type="submit"][name='btn_cancelar']:hover {
  background-color: #fff;
  color: #ff7300;
}
.fechar {
  position: absolute;
  top: 10px;
  right: 50px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 0;
  background-color: #bb1600;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
.label-float #btn_fechar {
  background-color: #bb1600;
  color: #fff;
  padding: 5px 5px;
  border: 1px solid #BB1600;
  cursor: pointer;
  font-size: 15px;
  width: 120px;
  height: 36px;
  transition: all, 0.3s ease;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}
.label-float #btn_fechar:hover {
  background-color: #fff;
  color: #BB1600;
}
.content-table {
  border-collapse: collapse;
  font-size: 0.9em;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-left: 30px;
  margin-right: 30px;
  transition: all, 0.3s ease;
}
.content-table thead tr {
  background-color: #5568fe;
  color: #ffffff;
  text-align: left;
}
.content-table th,
.content-table tr {
  padding: 12px 15px;
}
.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}
.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #5568fe;
}
.content-table tbody tr.active-row {
  color: #363636;
}
.content-table tbody tr:nth-of-type(even):hover {
  background-color: #d6dafa;
  cursor: pointer;
}
.content-table tbody tr:hover {
  background-color: #d6dafa;
  cursor: pointer;
}
#div_cadastro {
  background-color: #14161A;
  margin-left: 5%;
  margin-right: 2%;
  height: 100px;
  padding: 10px;
}
#div_contagem {
  background-color: #14161A;
  margin-left: 5%;
  margin-right: 2%;
  height: 110px;
  padding: 10px;
  border: none;
  box-shadow: none;
}
#table {
  height: 55vh;
}
#div_table_cadastro {
  background-color: #14161A;
  height: 72vh;
  margin-left: -0.5%;
  margin-right: -0.5%;
  border: none;
  box-shadow: none;
}
#div_contagem_historico {
  background-color: #1B1F27;
  height: 50vh;
  margin-left: 5%;
  margin-right: 2%;
  border: none;
  box-shadow: none;
}
/*
#div_invent_coletores{
    background-color: #14161A;
    margin-top: -14px;
    margin-left: -4%;
    height: 75vh;
    width: 93vh;
    border: none;
    box-shadow: none;
}

#div_importacao{
    background-color: #1B1F27;
    height: 100vh;
    border: none;
    box-shadow: none;
}


#div_historico_importacao{
    background-color: #14161A;
    margin-top: -25px;
    margin-left: -3%;
    height: 75vh;
    width: 93vh;
    border: none;
    box-shadow: none;
    overflow-y: auto;
}
*/
#statusList {
  list-style-type: none;
  /* Remove os marcadores padrão da lista */
  padding: 0;
  margin: 0;
}
.field {
  padding-left: 10px;
}
.level {
  padding-top: 1px;
}
.modal {
  display: none;
  /* O modal fica oculto por padrão */
  z-index: 1000;
}
.modal.is-active {
  display: flex;
  /* O modal é exibido ao adicionar a classe 'is-active' */
}
.modal-content {
  max-height: calc(100vh - 40px);
  /* Define a altura máxima do modal com margem */
  overflow-y: auto;
  /* Permite rolagem vertical apenas no conteúdo do modal */
  overflow-x: auto;
  /* Permite rolagem vertical apenas no conteúdo do modal */
}
.modal .box {
  overflow: hidden;
  /* Evita que o conteúdo da box cause uma rolagem desnecessária */
  background-color: #14161A;
}
table {
  font-size: 0.75rem;
  border-collapse: collapse;
}
.table-container {
  padding: 0;
  max-width: 100%;
  overflow-x: auto;
  /* Scroll horizontal, caso necessário */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #0011ff #3a3e75;
  border-radius: 4px;
}
.input {
  background-color: #14161A !important;
  color: white !important;
}
.input_cadastro {
  background-color: #252a34;
  color: #CBD0F7;
  border: none;
  height: 45px;
  width: 300px;
  outline: none;
  border-radius: 8px;
  padding-left: 10px;
  font-size: 1.2rem;
}
tr:hover {
  background-color: #070238;
  /* Cor de fundo quando o mouse está sobre a linha */
  z-index: 9999;
}
label {
  font-size: 14px;
  color: #CBD0F7;
}
.field {
  position: relative;
  /* Define o contexto para elementos com position: absolute */
}
.field.positioned {
  position: absolute;
  top: 10px;
  left: 450px;
  z-index: 10;
  /* Ajuste conforme necessário */
}
.custom-field label {
  margin-right: 0.5rem;
  /* Ajuste o espaço entre o rótulo e o campo de entrada */
}
.btn-editar i {
  color: #c7e866;
}
.btn-editar:hover i {
  color: #bdc702;
}
.btn-deletar i {
  color: #FF6685;
}
.btn-deletar:hover i {
  color: red;
}
.btn-colaborador i {
  color: #c7e866;
}
.btn-colaborador:hover i {
  color: #bdc702;
}
.btn_parametros_importacao {
  color: red;
}
th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  font-size: 12px;
}
th {
  background-color: #f2f2f2;
  position: sticky;
  top: 0;
  z-index: 1;
}
tbody {
  display: block;
  max-height: 42rem;
  /* Altura fixa do tbody */
  overflow-y: auto;
  /* Scroll apenas no tbody */
}
tr {
  display: table;
  width: 100%;
  table-layout: fixed;
  /* Para manter o layout da tabela */
}
thead tr {
  display: table;
  width: 100%;
  table-layout: fixed;
  /* Garante que o thead e tbody tenham o mesmo layout */
}
.table th,
.table td {
  white-space: nowrap;
  /* Evita quebra de texto no cabeçalho */
  text-align: center;
  /* Centraliza o texto */
}
/* Ajuste do botão de edição */
.btn-editar {
  padding: 5px;
  font-size: 0.8rem;
}
/* Estilização do Scroll */
.table-container::-webkit-scrollbar {
  width: 2px;
}
.table-container::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.table-container::-webkit-scrollbar-thumb {
  background-color: #5568FE;
  /* Cor principal do Bulma */
  border-radius: 8px;
  /* Borda arredondada */
}
.table-container::-webkit-scrollbar-thumb:hover {
  background-color: #5568FE;
  /* Cor um pouco mais escura para o hover */
  z-index: 9999;
}
#deleteConfirmationModal {
  z-index: 1002;
}
/* Estilizando o container de upload */
.file-upload {
  display: inline-block;
  position: relative;
  font-size: 16px;
}
/* Ocultando o input real */
.file-upload input[type="file"] {
  display: none;
}
/* Estilizando o botão */
.file-upload-label {
  background-color: #4CAF50;
  /* Cor do botão */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
/* Efeito hover no botão */
.file-upload-label:hover {
  background-color: #45a049;
}
/* Estilizando o ícone */
.file-upload-label .icon {
  margin-right: 8px;
  vertical-align: middle;
}
/* Exibindo o nome do arquivo selecionado */
.file-name {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  font-weight: normal;
}
