hr.dotted {
  border: 0;
  border-top: 2px dotted black;
  height: 0;
  color: #888;
  margin-bottom: 2px;
}


/* Estilo base para os botões */
.btns {
  display: flex; /* Adiciona flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-decoration: none; /* Remover sublinhado dos links */
  text-align: center;
  height: 40px;
  margin-left: 8px;
  min-width: 115px;
}

.btn-small {
  display: flex; /* Adiciona flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  border-radius: 4px;
  border: none;
  font-size: 11px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-decoration: none; /* Remover sublinhado dos links */
  text-align: center;
  height: 26px;
  width: 40px;
}

/* Estilo do contêiner de botões */
.button-container {
  display: flex;
  justify-content: flex-end; /* Alinha os botões à direita */
  align-items: center;
  margin-left: auto; /* Move o contêiner para a direita */
}

/* Estilo do contêiner de botões */
.button-container-left {
  display: flex;
  align-items: center;
}

/* Estilo do contêiner de botões */
.button-container-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Botão de atenção */
.btn-attention {
  background-color: #d38329;
}

.btn-attention:hover {
  background-color: #a86921;
}

/* Botão de voltar */
.btn-return {
  background-color: #323435; 
}

.btn-return:hover {
  background-color: #262629;
}

/* Botão de confirmação (Salvar) */
.btn-edit {
  background-color: #0093dd; /* Azul escuro */

}

.btn-edit:hover {
  background-color:  #5dc9ff;
}


/* Botão de filtragem  (Salvar) */
.btn-filter {
  background-color: #87a6a8;
}

.btn-filter:hover {
  background-color: #739092;
}

/* Botão de exportar e outros */
.btn-default {
  background-color: rgba(255, 255, 255, 0.4);
}

.btn-default:hover {
  background-color: rgba(255, 255, 255, 0.3);
}


/* Botão de confirmação (Salvar) */
.btn-confirm {
  background-color: #0093dd; /* Verde médio */
}

.btn-confirm:hover {
  background-color: #5dc9ff;
}

/* Botão de ativar */
.btn-activate {
  background-color: #0093dd; /* Verde médio */
}

.btn-activate:hover {
  background-color: #5dc9ff;
}

/* Botão de inserir */
.btn-insert {
  background-color: #0093dd; /* Verde médio */
}

.btn-insert:hover {
  background-color: #5dc9ff;
}
/* Botão de inserir */

.btn-add-document {
  background-color: #0093dd; /* Verde médio */
}

.btn-add-document:hover {
  background-color: #5dc9ff;
}

/* Botão de criar (Salvar) */
.btn-create {
  background-color: #0093dd; /* Verde médio */
}

.btn-create:hover {
  background-color:  #5dc9ff;
}

/* Botão de remoção (Deletar) */
.btn-remove {
  background-color: #c5362c; /* Vermelho médio */
}

.btn-remove:hover {
  background-color: #a52523;
}

/* Botão de remoção (Deletar) */
.btn-remove-document {
  background-color: #c5362c; /* Vermelho médio */
}

.btn-remove-document:hover {
  background-color: #a52523;
}

/* Botão de remoção (Deletar) */
.btn-disable {
  background-color: #c5362c; /* Vermelho médio */
}

.btn-disable:hover {
  background-color: #a52523;
}

/* Botão de inclusão de despesa (Deletar) */
.btn-expense {
  background-color: #8b453f; /* Vermelho médio */
}

.btn-expense:hover {
  background-color: #663531;
}

/* Ajustes de cores para acessibilidade */
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 228, 228, 0.5);
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

hr {
    background-color: rgb(151, 154, 156); 
    height: 2px; 
    border: none; 
}

.new-date-row td {
    border-top: 2px solid black; /* Ajuste a cor da borda conforme necessário */
}

.table-students-rooms {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
  color: rgb(151, 154, 156); /* Cor da fonte para todo o texto da tabela */
}

.table-students-rooms th, .table-students-rooms td {
  border-bottom: 1px dashed #ddd;
  padding: 8px;
  vertical-align: top;
}

.table-students-rooms th {
  background-color: transparent;
}


.table-agreements {
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
    color: rgb(151, 154, 156); /* Cor da fonte branca para todo o texto da tabela */
}

.table-agreements th {
    border-bottom: 1px dashed #ddd;
    padding: 8px;
    vertical-align: top;

}

.table-agreements th {
    background-color: transparent
}

/* Para garantir que o texto dentro das células também seja branco */
.table-agreements td {
    color: white;
    padding-top: 5px;
}


.table-assessments,
.table-orders {
    width: 100%;
    border-collapse: collapse;
    color: white; /* Cor da fonte branca para todo o texto da tabela */
}

.table-assessments th,
.table-orders th,
.table-assessments td, 
.table-orders td {
    border: 0.3px solid #0e0e0f;
    padding: 8px;
    vertical-align: top;
}

.table-assessments th, 
.table-orders th {
    background-color: #171d2e; /* Cor de fundo mais escura para os cabeçalhos */
    
}

/* Para garantir que o texto dentro das células também seja branco */
.table-assessments td 
.table-orders td {
    color: rgb(196, 196, 196);
}

.table-profile-assessments
{
    width: 100%;
    border-collapse: collapse;
    color: whitesmoke; 
    font-size: 14px; 
}

.table-profile-assessments th,
.table-profile-assessments td 
 {
    border-bottom: 0.3px solid black; /* Apenas linha inferior */
    padding: 8px;
    vertical-align: top;
}

.table-profile-assessments th
 {
    background-color: #0a061b; 
    background: linear-gradient(to bottom, #FFFFFF, #cecece); 
    color: black; 
    font-size: 14px;
}

.table-profile-lessons
{
    width: 100%;
    border-collapse: collapse;
    color: whitesmoke; 
    font-size: 14px; 
}

.table-profile-lessons th,
.table-profile-lessons td 
 {
    border-bottom: 0.3px solid #000000;
    padding: 8px;
    vertical-align: top;
}

.table-profile-lessons th
 {
    background-color: #0a061b; 
    background: linear-gradient(to bottom, #ffffff, #cecece);
    color: black; 
    font-size: 14px;
}

.table-profile-notifications
{
    width: 100%;
    border-collapse: collapse;
    color: whitesmoke; 
    font-size: 14px; 
}

.table-profile-notifications th,
.table-profile-notifications td 
 {
    border-bottom: 0.3px solid black; /* Apenas linha inferior */
    padding: 8px;
    vertical-align: top;
}

.table-profile-notifications th
 {
    background-color: #0a061b; 
    background: linear-gradient(to bottom, #ffffff, #cecece);
    color: black; 
    font-size: 14px;
}

.table-profile-financial
{
    width: 100%;
    border-collapse: collapse;
    color: whitesmoke; 
    font-size: 14px; 
}

.table-profile-financial th,
.table-profile-financial td 
 {
    border-bottom: 0.3px solid black; /* Apenas linha inferior */
    padding: 8px;
    vertical-align: top;
}

.table-profile-financial th
 {
    background-color: #0a061b; 
    background: linear-gradient(to bottom, #ffffff, #cecece);
    color: black; 
    font-size: 14px;
}

.table-totals {
    width: 100%;
    border-collapse: collapse;
    color: white; /* Cor da fonte branca para todo o texto da tabela */
}

.table-totals th,
.table-totals td {
    border: 0.3px solid #5d5e5f;
    padding: 8px;
    vertical-align: top;
}

.table-totals th {
    background-color: #0a061b; /* Cor de fundo mais escura para os cabeçalhos */
    border: 0px;
    font-weight:normal;
  }




.button-right {
    display: flex;
    justify-content: flex-end;
}

[data-partner-id] {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
  }
  
  [data-partner-id] span {
    margin-right: 15px;
  }
  
  [data-partner-id] button {
    padding: 5px 10px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .partner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    color: whitesmoke;
    background-color: transparent;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 4px; 
  }
  
  .partner-name {
    flex-grow: 1; 
    margin-right: 10px; 
  }
  

      
.selected-partners-list {
    margin-top: 10px; 
 }

 .add-partner-button {
    margin-top: 5px; 
    padding: 5px 15px;
    background-color: #afb6ca; /* Cor do botão */
    border-radius: 6px;
 }

  .remove-partner-button {
    max-width: 100px;
    padding: 5px 15px; /* Ajuste o padding para diminuir o tamanho do botão */
    background-color: #d9534f; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* Evita que o texto do botão seja quebrado em várias linhas */
    font-size: 12px;
  }
  
  .remove-partner-button:hover {
    background-color: #c9302c; /* Cor do botão ao passar o mouse */
  }
  

  .modality-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    color: whitesmoke;
    background-color: transparent;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 4px; 
  }
  
  .modality-name {
    flex-grow: 1; 
    margin-right: 10px; 
  }
        
.selected-modalities-list {
    margin-top: 10px; 
 }


  .add-modality-button {
    margin-top: 5px; 
    padding: 5px 15px;
    background-color: #afb6ca; /* Cor do botão */
    border-radius: 6px;
 }

  .remove-modality-button {
    max-width: 100px;
    padding: 5px 15px; /* Ajuste o padding para diminuir o tamanho do botão */
    background-color: #d9534f; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* Evita que o texto do botão seja quebrado em várias linhas */
    font-size: 12px;
  }
  
  .remove-modality-button:hover {
    background-color: #c9302c; /* Cor do botão ao passar o mouse */
  }  


  .school-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    color: whitesmoke;
    background-color: transparent;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 4px; 
  }
  
  .school-name {
    flex-grow: 1; 
    margin-right: 10px; 
  }
        
 .selected-schools-list {
    margin-top: 10px; 
 }


  .add-school-button {
    margin-top: 5px; 
    padding: 5px 15px;
    background-color: #afb6ca; /* Cor do botão */
    border-radius: 6px;
 }

  .remove-school-button {
    max-width: 100px;
    padding: 5px 15px; /* Ajuste o padding para diminuir o tamanho do botão */
    background-color: #d9534f; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* Evita que o texto do botão seja quebrado em várias linhas */
    font-size: 12px;
  }
  
  .remove-school-button:hover {
    background-color: #c9302c; /* Cor do botão ao passar o mouse */
  }  


  .athlete-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    color: whitesmoke;
    background-color: transparent;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 4px; 
  }
  
  .athlete-name {
    flex-grow: 1; 
    margin-right: 10px; 
  }
        
.selected-athletes-list {
    margin-top: 10px; 
 }


  .add-athlete-button {
    margin-top: 5px; 
    padding: 5px 15px;
    background-color: #afb6ca; /* Cor do botão */
    border-radius: 6px;
 }

  .remove-athlete-button {
    max-width: 100px;
    padding: 5px 15px; /* Ajuste o padding para diminuir o tamanho do botão */
    background-color: #d9534f; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* Evita que o texto do botão seja quebrado em várias linhas */
    font-size: 12px;
  }
  
  .remove-athlete-button:hover {
    background-color: #c9302c; /* Cor do botão ao passar o mouse */
  }  


  .dropdown-menu {
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.btn-group:hover .dropdown-menu {
    display: flex;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.invalid-email {
  border: 2px solid red;
}

.form-input-display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-input-display label {
  font-size: 1em; /* Ajuste o tamanho conforme necessário */
  color: #bebebe; /* Cor cinza clara para o label */
  margin-bottom: 5px; /* Espaço entre o label e o nome */
}

.name-display {
  font-size: 1.1em; /* Tamanho do texto */
  color: #FFF; /* Cor branca para o texto */
  padding: 2px 0; /* Padding para simular uma linha */
  border-bottom: 1px solid #4e5463; /* Linha inferior para destacar o campo */
  width: 100%; /* Largura total para ocupar a linha */
}

#errorModal .modal-content {
  background-color: #dae1f5;  /* Cor de fundo mais escura para o modal */
  color: #000000;             /* Cor do texto para maior contraste */
  border-bottom-left-radius: 65px;      /* Arredonda o canto superior esquerdo */
  border-bottom-right-radius: 10px;     /* Arredonda o canto superior direito */
  border-top-left-radius: 10px;      /* Arredonda o canto superior esquerdo */
  border-top-right-radius: 65px;     /* Arredonda o canto superior direito */
}


#errorModal .modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999; /* valor extremamente alto para testar */
  overflow: visible; /* garante que nada esteja cortando o modal */
}

#errorModal .close {
  display: none;  /* Oculta o botão de fechar no canto do modal */
}
#errorModal .modal-header,
#errorModal .modal-body,
#errorModal .modal-footer {
  padding: 20px;              /* Espaçamento interno maior para todas as partes do modal */
}

#errorModal .modal-header {
  background-color: #741818;  /* Cor de fundo mais escura para o cabeçalho */
  border-top-left-radius: 8px;      /* Arredonda o canto superior esquerdo */
  border-top-right-radius: 60px;     /* Arredonda o canto superior direito */
}

#errorModal .modal-footer {
  background-color: #741818;  /* Cor de fundo mais escura para o rodapé */
  border-bottom-left-radius: 60px;      /* Arredonda o canto superior esquerdo */
  border-bottom-right-radius: 8px;     /* Arredonda o canto superior direito */
}

#errorModal .close {
  color: #FFFFFF;             /* Cor do botão fechar */
}


#errorModal ul {
  list-style-type: disc; /* ou outro estilo de lista que você preferir */
  padding-left: 20px;   /* Ajusta o recuo para que os marcadores sejam visíveis */
}

#errorModal li {
  margin-bottom: 10px;  /* Espaçamento entre os itens da lista */
  display: list-item;   /* Garante que o estilo de lista seja aplicado */
}

.product-preview-image {
  position: relative;
  width: 100%;  /* Mantém a largura dentro do container pai */
  height: auto; /* Altura automática baseada na imagem */
  display: block; /* Garante que o container se comporte como um bloco */
}

.out-of-stock-label {
  position: absolute;
  top: 0; /* Posiciona no topo do container */
  left: 0; /* Alinha à esquerda do container */
  width: 100%; /* Faz a div cobrir a largura inteira do container */
  height: 100%; /* Faz a div cobrir a altura inteira do container */
  background-color: rgba(255, 0, 0, 0.7); /* Vermelho com transparência */
  color: white; /* Cor do texto */
  display: flex;
  align-items: center; /* Centraliza verticalmente o conteúdo */
  justify-content: center; /* Centraliza horizontalmente o conteúdo */
  font-size: 24px; /* Tamanho do texto */
  font-weight: bold; /* Peso da fonte */
}

.highlighted.out-of-stock {
  text-decoration: line-through;
  color: #888; /* Opcional: Mudar a cor para indicar que não está disponível */
}

.out-of-stock {
  text-decoration: line-through; /* Adiciona o traço sobre o texto */
  color: #888; /* Opcional: altera a cor para indicar indisponibilidade */
}
.price-title.big .out-of-stock {
  text-decoration: line-through;
  color: #888888; /* Assegura que o estilo do preço esgotado seja visível e distinto */
}

.swal2-popup {
  border-radius: 18px; /* Ajuste o valor conforme necessário */
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #21283b; /* Cor de fundo do botão */
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
}

.back-to-top:hover {
  color:rgb(194, 10, 10);
  background-color: #333; /* Cor de fundo ao passar o mouse */
}

.back-to-top i {
  font-size: 20px;
}


.back-to-previous {
  position: fixed;
  bottom: 30px;
  right: 90px;
  background-color: #21283b; /* Cor de fundo do botão */
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
}

.back-to-previous:hover {
  color:rgb(194, 10, 10);
  background-color: #333; /* Cor de fundo ao passar o mouse */
}

.back-to-previous i {
  font-size: 20px;
}


.note-toolbar .dropdown-menu,
.note-toolbar .dropdown-menu .dropdown-item {
    /* Ajuste o z-index se necessário para garantir que o menu fique acima de outros elementos */
    z-index: 2147483647;
}

/* Garanta que o menu não feche ao passar o mouse sobre ele */
.note-toolbar .dropdown-menu.show {
    display: block !important;
}

.note-modal {
  z-index: 3000 !important; /* Aumenta o z-index do modal para que fique acima de outros elementos */
}

.modal-backdrop {
  z-index: 3000 !important; /* Garante que o backdrop do modal fique logo abaixo do modal */
}

.note-toolbar .dropdown-menu {
  z-index: 3000 !important; /* Garante que os dropdowns da barra de ferramentas fiquem visíveis acima do editor */
}


.note-editor {
  z-index: 3020 !important; /* Garante que os dropdowns da barra de ferramentas fiquem visíveis acima do editor */
  background-color: #ffffff; /* Fundo branco para o editor */
  color: #000000; /* Texto preto */
}

.note-editable {
  background-color: #ffffff !important; /* Fundo branco para a área editável */
  color: #000000 !important; /* Texto preto na área editável */
}

.note-toolbar {
  background-color: #f1f1f1; /* Cor de fundo da barra de ferramentas */
}

.note-editable p {
  color: #000000 !important; /* Garante que o texto nos parágrafos seja preto */
}

/* Ajusta o z-index do modal de imagem */
.note-image-dialog {
  z-index: 3020 !important;
}

/* Ajusta o z-index do modal de vídeo */
.note-video-dialog {
  z-index: 3020 !important;
}

.note-modal, .note-image-dialog, .note-video-dialog {
  position: fixed; /* Garante que o modal seja exibido em relação à viewport */
  z-index: 1050 !important; /* Ajusta o z-index para ser maior que a barra superior */
  top: 20px; /* Ajusta a posição vertical do modal */
}

.emoji-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  max-width: 350px;
}

.emoji-button {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.emoji-button:hover {
  background-color: #e0e0e0;
}


.drop-area {
  padding: 20px;
  border: 2px dashed #ddd;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
  height: 140px;
}

.drop-area.dragging {
  border-color: #007bff;
}

.widget-box-item {
  margin-top: 25px;
}

.contract-item {
  background-color: #21283b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contract-name {
  color: white;
}

.contract-actions {
  display: flex;
}

.contract-action {
  line-height: 35px;
}

.contract-select {
  padding-left: 5px;
}

.form-select.active-accordion label {
  padding: 0 6px;
  font-size: .85rem;
  top: -16px;
  left: 12px
}

.form-select.fixed-active-accordion label {
  padding: 0 6px;
  font-size: .85rem;
  top: -16px;
  left: 12px
}

.form-input.fixed-active-accordion label {  
  padding: 0 6px;
  font-size: .85rem;
  top: -16px;
  left: 12px;
}
.switch-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}

.switch-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  /* background: palevioletred;
  padding: 10px; */
}

.switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* min-width: 100px; */ 
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch.small {
  width: 40px;
  height: 20px;
}

.switch.tiny {
  width: 30px;
  height: 15px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.switch-slider.small {
  border-radius: 20px;
}

.switch-slider.tiny {
  border-radius: 15px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.switch-slider.small:before {
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
}

.switch-slider.tiny:before {
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
}

input:checked + .switch-slider {
  background-color: #4caf50;
}

input:checked + .switch-slider:before {
  transform: translateX(26px);
}

input:checked + .switch-slider.small:before {
  transform: translateX(20px);
}

input:checked + .switch-slider.tiny:before {
  transform: translateX(15px);
}

.switch-status {
  font-size: 1.5rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  color: white;
}

.switch-status.small {
  font-size: 1rem;
}

.switch-status.tiny {
  font-size: 0.75rem;
}

.switch-status.off {
  opacity: 0;
  transform: scale(0.8);
}

::selection {
  background-color: #da291c !important; 
}

::-moz-selection{
  background-color: #da291c !important; 
}


.card-revenue {
  background-color: #1d2333; /* Fundo escuro semelhante às caixas ao lado */
  border: none;
  border-radius: 10px;
  color: #fff; /* Texto branco */
}

.card-revenue-header {
  border-radius: 10px;
  font-size: 1.2em; /* Tamanho médio para o header */
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 10px 0; /* Remover padding lateral, mantendo apenas vertical */
}

.card-revenue-body {
  padding: 10px;
  background: linear-gradient(to right, #5ee79a, #d8ddda);
  border-bottom-left-radius: 10px; /* Ajuste para arredondar */
  border-bottom-right-radius: 10px;
}

.card-revenue-body .value {
  font-size: 2.3em; 
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  color: #000000;
  padding: 10px; /* Adicionado para melhorar a aparência */  
}


.card-expense {
  background-color: #1d2333; /* Fundo escuro semelhante às caixas ao lado */
  border: none;
  border-radius: 10px;
  color: #fff; /* Texto branco */
}

.card-expense-header {
  border-radius: 10px;
  font-size: 1.2em; /* Tamanho médio para o header */
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 10px 0; /* Remover padding lateral, mantendo apenas vertical */
}

.card-expense-body {
  padding: 10px;
  background: linear-gradient(to right, #e75e5e, #d8ddda);
  border-bottom-left-radius: 10px; /* Ajuste para arredondar */
  border-bottom-right-radius: 10px;
}

.card-expense-body .value {
  font-size: 2.3em; 
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  color: #000000;
  padding: 10px; /* Adicionado para melhorar a aparência */  
}


.card-positive-result {
  background-color: #1d2333; /* Fundo escuro semelhante às caixas ao lado */
  border: none;
  border-radius: 10px;
  color: #fff; /* Texto branco */
}

.card-positive-result-header {
  border-radius: 10px;
  font-size: 1.2em; /* Tamanho médio para o header */
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 10px 0; /* Remover padding lateral, mantendo apenas vertical */
}

.card-positive-result-body {
  padding: 10px;
  background: linear-gradient(to right, #5e73e7, #d8ddda);
  border-bottom-left-radius: 10px; /* Ajuste para arredondar */
  border-bottom-right-radius: 10px;
}

.card-positive-result-body .value {
  font-size: 2.3em; 
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  color: #000000;
  padding: 10px; /* Adicionado para melhorar a aparência */  
}


.card-negative-result {
  background-color: #1d2333; /* Fundo escuro semelhante às caixas ao lado */
  border: none;
  border-radius: 10px;
  color: #fff; /* Texto branco */
}

.card-negative-result-header {
  border-radius: 10px;
  font-size: 1.2em; /* Tamanho médio para o header */
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 10px 0; /* Remover padding lateral, mantendo apenas vertical */
}

.card-negative-result-body {
  padding: 10px;
  background: linear-gradient(to right, #ca0303, #d8ddda);
  border-bottom-left-radius: 10px; /* Ajuste para arredondar */
  border-bottom-right-radius: 10px;
}

.card-negative-result-body .value {
  font-size: 2.3em; 
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  color: #000000;
  padding: 10px; /* Adicionado para melhorar a aparência */  
}


.card-stock {
  background-color: #171d2e; /* Fundo escuro semelhante às caixas ao lado */
  border: none;
  border-radius: 10px;
  color: #fff; /* Texto branco */
}

.card-stock-header {
  border-radius: 10px;
  font-size: 1.2em; /* Tamanho médio para o header */
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 10px 0; /* Remover padding lateral, mantendo apenas vertical */
}

.card-stock-body {
  padding: 10px;
  background: linear-gradient(to right, #5ee79a, #d8ddda);
  border-bottom-left-radius: 10px; /* Ajuste para arredondar */
  border-bottom-right-radius: 10px;
}

.card-stock-body .value {
  font-size: 2.3em; 
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  color: #000000;
  padding: 10px; /* Adicionado para melhorar a aparência */  
}



.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #343a3a; /* Cor de fundo da barra */
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease-in-out;
}

.card-expense .progress {
  background-color: #d63031; /* Vermelho para despesas */
}

.card-revenue .progress {
  background-color: #146b3b; 
}

.percentage {
  font-size: 1.1em;
  color: #333;
  margin-top: 5px;
  text-align: center;
}

.total-positive-result {
    color: #5e73e7;
    font-weight: bold;
}

.total-negative-result {
    color: #d63031;
    font-weight: bold;
}


.product-card-preview {
  border-radius: 12px;
  background-color: #1d2333;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, .06)
}

.product-card-preview.fixed-height {
  height: 140px
}

.product-card-preview.fixed-height-medium {
  height: 284px
}

.product-card-preview.small .product-card-preview-cover {
  height: 70px
}

.product-card-preview.small .product-card-preview-info .tag-sticker {
  right: 16px
}

.product-card-preview.small .product-card-preview-info .product-short-description .product-short-description-title {
  font-size: .125rem
}

.product-card-preview.small .product-card-preview-info .product-short-description .product-short-description-title.small {
  font-size: .875rem
}

.product-card-preview.small .product-card-preview-info .product-short-description .product-short-description-text {
  font-size: .6875rem
}

.product-card-preview.small .product-card-preview-info .product-short-description .product-short-description-text.regular {
  margin-top: 6px;
  font-size: .75rem
}

.product-card-preview.small .product-card-preview-info .social-links,
.product-card-preview.small .product-card-preview-info .product-stats {
  margin-top: 36px
}

.product-card-preview.small .product-card-preview-info .product-card-preview-social-links-wrap {
  width: 160px;
  margin: 32px auto 0
}

.product-card-preview.landscape {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding-left: 84px;
  position: relative
}

.product-card-preview.landscape .product-card-preview-cover {
  width: 84px;
  height: 100%;
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
  position: absolute;
  top: 0;
  left: 0
}

.product-card-preview.landscape .product-card-preview-info {
  width: 100%;
  padding: 0 28px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.product-card-preview.landscape .product-card-preview-info .product-short-description {
  width: 200px
}

.product-card-preview.landscape .product-card-preview-info .badge-list,
.product-card-preview.landscape .product-card-preview-info .social-links,
.product-card-preview.landscape .product-card-preview-info .product-avatar-list,
.product-card-preview.landscape .product-card-preview-info .product-avatar-list+.product-card-preview-actions,
.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions,
.product-card-preview.landscape .product-card-preview-info .product-card-preview-social-links-wrap,
.product-card-preview.landscape .product-card-preview-info .product-short-description+.product-stats {
  margin-top: 0
}

.product-card-preview.landscape .product-card-preview-info .social-links {
  width: 168px
}

.product-card-preview.landscape .product-card-preview-info .badge-list {
  display: -ms-flexbox;
  display: flex
}

.product-card-preview.landscape .product-card-preview-info .badge-list .badge-item {
  margin-right: 8px
}

.product-card-preview.landscape .product-card-preview-info .badge-list .badge-item:last-child {
  margin-right: 0
}

.product-card-preview.landscape .product-card-preview-info .product-card-preview-social-links-wrap {
  width: 160px;
  margin-left: 8px
}

.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions {
  margin-top: 0
}

.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions .button,
.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions .tag-sticker {
  margin-right: 12px
}

.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions .button:last-child,
.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions .tag-sticker:last-child {
  margin-right: 0
}

.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions .tag-sticker {
  position: static
}

.product-card-preview.landscape .product-card-preview-info .product-card-preview-actions .button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 64px;
  height: 44px
}

.product-card-preview .product-card-preview-cover {
  height: 180px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px
}

.product-card-preview .product-card-preview-info {
  padding: 0 28px 32px;
  position: relative
}

.product-card-preview .product-card-preview-info .tag-sticker {
  position: absolute;
  top: -12px;
  right: 28px
}

.product-card-preview .product-card-preview-info .product-short-description.tiny .product-short-description-title {
  font-size: .875rem
}

.product-card-preview .product-card-preview-info .product-short-description.tiny .product-short-description-text {
  font-size: .6875rem
}

.product-card-preview .product-card-preview-info .product-short-description .product-short-description-title {
  font-size: 1.25rem
}

.product-card-preview .product-card-preview-info .product-short-description .product-short-description-text {
  font-size: .75rem
}

.product-card-preview .product-card-preview-info .product-short-description+.product-stats {
  margin-top: 30px
}

.product-card-preview .product-card-preview-info .product-short-description+.button {
  margin-top: 34px
}

.product-card-preview .product-card-preview-info .badge-list {
  margin-top: 28px
}

.product-card-preview .product-card-preview-info .product-card-preview-stats-slides {
  margin-top: 40px
}

.product-card-preview .product-card-preview-info .product-card-preview-stats-roster {
  position: absolute;
  top: 22px;
  right: 28px
}

.product-card-preview .product-card-preview-info .product-card-preview-text {
  width: 270px;
  margin: -10px auto 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4285714286em;
  text-align: center
}

.product-card-preview .product-card-preview-info .social-links {
  margin-top: 24px
}

.product-card-preview .product-card-preview-info .product-card-preview-social-links-wrap {
  height: 36px;
  margin-top: 20px;
  position: relative
}

.product-card-preview .product-card-preview-info .product-card-preview-social-links-wrap .product-card-preview-social-links {
  padding-top: 4px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.product-card-preview .product-card-preview-info .product-card-preview-social-links-wrap .slider-controls {
  width: 234px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: -40px;
  z-index: 1
}

.product-card-preview .product-card-preview-info .product-avatar-list {
  margin-top: 34px
}

.product-card-preview .product-card-preview-info .product-avatar-list+.product-card-preview-actions {
  margin-top: 36px
}

.product-card-preview .product-card-preview-info .product-card-preview-actions {
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button {
  width: 100%;
  margin-right: 16px
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button:last-child {
  margin-right: 0
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button .button-icon {
  fill: #fff
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button.white .button-icon {
  fill: #616a82
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button.white:hover .button-icon {
  fill: #fff
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button.full {
  width: 100%
}

.product-card-preview .product-card-preview-info .product-card-preview-actions .button.full .button-icon {
  position: relative;
  left: -12px
}

.product-card-preview .product-card-preview-author {
  padding-left: 26px;
  position: relative
}

.product-card-preview .product-card-preview-author .product-card-preview-author-image {
  position: absolute;
  top: 1px;
  left: 0
}

.product-card-preview .product-card-preview-author .product-card-preview-author-title {
  font-size: .625rem;
  font-weight: 500
}

.product-card-preview .product-card-preview-author .product-card-preview-author-text {
  margin-top: 1px;
  font-size: .75rem;
  font-weight: 700
}

.product-card-preview .product-card-preview-author .product-card-preview-author-text a {
  color: #fff;
  font-weight: 700
}

.product-card-preview .product-card-preview-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 65px;
  border-top: 1px solid #2f3749;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: #21283b
}

.product-card-preview .product-card-preview-footer.padded {
  height: auto;
  padding: 16px 28px
}

.product-card-preview .product-card-preview-footer .product-card-preview-footer-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
  border-right: 1px solid #2f3749
}

.product-card-preview .product-card-preview-footer .product-card-preview-footer-action:last-child {
  border-right: none
}

.product-card-preview .product-card-preview-footer .product-card-preview-footer-action.full {
  width: 100%;
  padding: 0 28px
}

.product-card-preview .product-card-preview-footer .product-card-preview-footer-action.full .button {
  width: 100%
}

.product-card-preview .product-card-preview-footer .product-card-preview-footer-action .button {
  width: 64px;
  height: 44px
}

