@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Gothic+A1:wght@400;500;700&family=Montserrat:wght@400;500;600&family=Quicksand:wght@400;500;600;700&display=swap');


*,
body {
    margin: 0;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {

    background-color: #FF006B;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff006aaf;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}


.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
    flex-direction: row;
}

.container-dashboard {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    font-size: 16px;
    background-color: #EEE;
    padding: 30px 30px 40px 23px;
}

.navbar {
    top: 0;
    left: 0;
    /* gap: 40px; */
    width: 190px;
    height: 100vh;
    padding: 30px;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff;
    display: inline-flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
}

.menu{
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar img {
    width: auto;
    height: 40px;
}

.navbar ul {
    padding: 0;
}

.navbar ul li {
    gap: 8px;
    color: #777;
    display: flex;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
}

.navbar ul li:hover {
    color: #FF006B;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .titulo {
    color: #777;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: start;
}

header .box-account {
    width: auto;
    display: flex;
    gap: 10px;
   /*  align-items: center; */
    justify-content: end;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: normal;
}

@media screen and (max-width: 800px) {
    .navbar {
        display: none;
        overflow: hidden;
    }

    .navbar-burguer {
        visibility: visible !important;
    }

    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .navbar ul li {
        display: block;
    }

    .navbar.open {
        display: inline-flex;
        position: absolute;
        width: 50vw;
    }

    header .box-account p {
        display: none;

    }
}

.navbar-burguer {
    background: #FF006B;
    color: #fff;
    height: fit-content;
    width: fit-content;
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    padding: 10px;
    visibility: hidden;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.5s ease;
}

.navbar.open {
    transform: translateX(0);
}

.navbar.open+.navbar-burguer .material-symbols-outlined {
    color: #FF006B;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}



.filtroData {
    width: 242px;
    height: 30px;
    display: flex;
    background: #fff;
    align-items: center;
    padding: 0 12px 0 0;
    margin: 32px 0 40px 0;
    justify-content: space-between;
    border-radius: 3px 12px 0px 12px;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
}

.filtroData .calendario {
    padding: 8px;
    height: 100%;
    display: flex;
    color: #FF006B;
    cursor: pointer;
    align-items: center;
    background: #F7F7F7;
    border-radius: 3px 0 0px 12px;
}

.box-dash {
    width: 100%;
    height: 130px;
    padding: 10px;
    display: flex;
    min-width: 230px;
    overflow: hidden;
    background: #FFF;
    box-sizing: border-box;
    flex-direction: column;
    border-radius: 5px 20px;
    transition: height 0.5s ease;
    border-bottom: 1px solid #FF006B;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
}

.box-dash .titulo {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
}

.box-dash .titulo .txt-titulo {
    gap: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.expand {
    width: 50%;
    color: #777;
    text-align: end;
    cursor: pointer;
    font-size: 22px !important;
}

.expand:hover {
    color: #FF006B;
}

.box-dash .titulo p {
    font-size: 14px;
}


.box-dash .fa-pix {
    font-size: 16px !important;
}

.box-dash .valor-dash {
    font-size: 42px;
}

.mensagem {
    color: #111;
    margin-top: 50px;
    font-weight: 600;
    text-align: center;
    font-size: 16px !important;
}

.box-dash .infos-dash {
    display: flex;
    align-items: center;
}

.grid-transacoes .box-dash .infos-dash {
    align-items: end;
}

.box-dash .info-esquerda {
    width: 100%;
    font-size: 14px;
    text-align: start;
}

.box-dash .info-direita {
    width: 100%;
    font-size: 14px;
    text-align: end;
}

.grid-container {
    display: grid;
    gap: 15px 60px;
    margin-bottom: 15px;
    justify-content: space-between;
    transition: height 0.5s ease !important;
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 3 - 60px), 1fr));
}


@media (max-width: 1200px) {
    .grid-container {
        gap: 15px 30px;
        grid-template-columns: repeat(auto-fit, minmax(calc(100% / 2 - 30px), 1fr));
    }
}

@media (max-width: 760px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
}

.container-solicitacoes {
    width: 100%;
    border: none;
    padding: 10px;
    min-width: 250px;
    overflow: hidden;
    margin: 15px 0 !important;
    background: #F7F7F7 !important;
    border-radius: 5px 20px !important;
    transition: height 0.5s ease !important;
}

.container-solicitacoes .titulo-solicitacoes {
    display: flex;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    transition: height 0.5s ease !important;
}

.grid-transacoes .box-dash {
    border: none;
    height: max-content;
    transition: height 0.5s ease !important;
}

.conteudo-oculto {
    visibility: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.submit-date {
    border: none;
    width: 300px;
    display: flex;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    color: #FEFEFE;
    font-weight: 600;
    padding: 10px 0px;
    align-items: center;
    line-height: normal;
    background: #FF006B;
    justify-content: center;
    border-radius: 3px 12px;
    font-family: Montserrat;
    text-transform: uppercase;
}

.submit-date:hover {
    opacity: 0.8;
}

.confirm-modal {
    width: 80px;
    margin: 0;
}

/* ====================== */

.fields{
    margin-bottom: 5vh;
    /* margin-top: 1vh; */
}

.fields input{
    margin-top: 2vh;

}

.fields textarea{
    margin-top: 2vh;

}

.containerAll{
    /* background-color: #111; */
    width: 80%;
    height: 100%;
    margin: 0 auto;
}

.titleCreate {
    text-align: center;
}

.titleCreate h2 {
    font-family: 'Quicksand', sans-serif;
    color: #777;
    
}

.buttonCreate{
    text-align: center;
    padding-top: 8vh;
}

.buttonCreate button{
    border-radius: 10px;
    width: 30%;
    height: 5vh;
}

.input-container {
    position: relative;
}

.sla {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #888; /* Cor do ícone */
    cursor: pointer; /* Opcional: cursor ao passar por cima */
}

.uk-input {
    padding-right: 30px; /* Ajuste conforme necessário para acomodar o ícone */
}

a{
    text-decoration: none;
}

/* =================== */

.container-calc{
    margin: 0 auto; 
    text-align: center;
    /* border: solid 1px black; */
    border-radius: 10px;
    padding: 10px 10px 80px 10px ;
    box-shadow: rgba(0, 0, 0, 0.3) 5px 5px 15px;
    max-height: max-content;
}

.input-taxa {
    padding-right: 15px;
    width: 100%;
    height: 60px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: end;
    border: none;
    text-decoration: none;
    font-size: 20px;
}

.input-taxa:focus {
    outline: none;
  }

  .input-taxa2 {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* === */

.radio-group1 {
    display: flex;
    /* gap: 20px; */ /* Espaçamento entre os inputs */
    justify-content:space-around;
  

  }
  
  .radio-group1 label {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .radio-group1 input[type="radio"] {
    display: none; /* Oculta o input de rádio padrão */
  }
  
  .radio-group1 label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px; /* Largura do botão */
    height: 50px; /* Altura do botão */
    border-radius: 10px; /* Cantos arredondados */
    background-color: #f0f0f0; /* Cor de fundo */
    color: #333; /* Cor do texto */
    font-size: 16px; /* Tamanho da fonte */
    border: 2px solid #ccc; /* Borda padrão */
    transition: all 0.3s ease;
  }
  
  /* Estilo quando selecionado */
  .radio-group1 input[type="radio"]:checked + span {
    background-color: #FF006B; /* Cor de fundo ao selecionar */
    color: #fff; /* Cor do texto ao selecionar */
    border-color: #FF006B; /* Cor da borda ao selecionar */
  }
  
  /* Estilo ao passar o mouse */
  .radio-group1 label:hover span {
    background-color: #e0e0e0; /* Cor de fundo ao passar o mouse */
  }

  /* == */

  .radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    /* gap: 20px; */ /* Espaçamento entre os itens */
  }
  
  .radio-group label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-bottom: 10px;
  }
  
  .radio-group input[type="radio"] {
    display: none; /* Oculta o input de rádio padrão */
  }
  
  .radio-group label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px; /* Largura do botão */
    height: 50px; /* Altura do botão */
    border-radius: 10px; /* Cantos arredondados */
    background-color: #f0f0f0; /* Cor de fundo */
    color: #333; /* Cor do texto */
    font-size: 16px; /* Tamanho da fonte */
    border: 2px solid #ccc; /* Borda padrão */
    transition: all 0.3s ease;
  }
  
  /* Estilo quando selecionado */
  .radio-group input[type="radio"]:checked + span {
    background-color: #FF006B; /* Cor de fundo ao selecionar */
    color: #fff; /* Cor do texto ao selecionar */
    border-color: #FF006B; /* Cor da borda ao selecionar */
  }
  
  /* Estilo ao passar o mouse */
  .radio-group label:hover span {
    background-color: #e0e0e0; /* Cor de fundo ao passar o mouse */
  }

  /* ==== */

  #parcelas {
  width: 100%; /* Largura do select */
  height: 50px; /* Altura do select */
  border-radius: 10px; /* Cantos arredondados */
  background-color: #f0f0f0; /* Cor de fundo */
  color: #333; /* Cor do texto */
  font-size: 16px; /* Tamanho da fonte */
  border: 2px solid #ccc; /* Borda padrão */
  padding: 5px 10px; /* Espaçamento interno */
  cursor: pointer; /* Cursor de ponteiro para interação */
  transition: all 0.3s ease; /* Transição suave */
  /* Remove o estilo padrão do navegador */
}

/* Adiciona uma seta customizada */
#parcelas::after {
  content: ''; /* Seta personalizada */
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  margin-left: -20px; /* Ajusta a posição */
}

/* Estilo ao passar o mouse */
#parcelas:hover {
  background-color: #e0e0e0; /* Cor de fundo ao passar o mouse */
}

/* Estilo ao selecionar o campo */
#parcelas:focus {
  outline: none; /* Remove o contorno padrão */
  border-color: #FF006B; /* Cor da borda ao focar */
  background-color: #fff; /* Fundo branco ao focar */
}

.testinho{
width: 60%;

}

#dataFundacao, #cpfCnpj, #razaoSocial, #nomeFantasia, #situacao {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    
}

/* scrollbar */

.full_screen {
    list-style: none;
    margin: 0;
}

.full_screen li {
    position: relative;
    display: inline-block;
}

#fullscreen-icon {
    font-size: 24px;
    cursor: pointer;
}

/* Tooltip container */
.full_screen li:hover::after {
    content: "Tela cheia";
    /* Tooltip text */
    position: absolute;
    top: 100%;
    /* Position below the icon */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Small triangle below the tooltip */
.full_screen li:hover::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    z-index: 10;
}

/* ===== aaa ===== */

/* ========== */
.item {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
}

.property {
    margin: 5px 0;
}

button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #FF006B;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}


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

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

.container-input {
    margin-bottom: 15px;
}

.radio-group label {
    margin-right: 10px;
}

header {
    display: flex;
    justify-content: space-between;

}



/* ================== */

.titleCreata {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    background-color: #FF006B;
    padding: 15px;

}

.titleCreata h2 {
    margin: 0;
    font-size: 25px;
    text-align: right;
}

.nome h2 {
    color: #fff;
    align-items: center;

}

.container-input>label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}


.radio-group label {
    font-weight: normal;
    margin-right: 10px;
}



.container-input {
    margin-bottom: 15px;
}


input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #2c2a2b;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}


input[type="radio"]:checked {
    background-color: #FF006B;
    border-color: #ff69b4;
}


input[type="radio"]:active {
    transform: scale(1.2);
}