/* app.css*/
/*
* {
    box-shadow: inset 0px 0px 3px rgba(255, 0, 0, 1);
    box-sizing: border-box;
} 
*/


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primaria-azul: #0063C1;
    --azul-sombra: #0064c1ea;
    --azul-claro: #2d8febea;
    --tab-color: #0B6EFD;
    --blue-bubble: #2196f3;
    --dark: #212529b0;
    --black: #000000;
    --tercearia: #5e85cd;
    /* --red-light:#e91e63; */
    --red-light: #c71ee9;

    --loading-span-background: #373d3f;
}

.navbar-nav {
    --bs-nav-link-padding-y: 0rem !important; 
}

/*PESONALIZAÇÃO DE CURSORES*/
/* body {
    cursor: url(../images/cursor.png), auto;
}

a,
button,
[role="button"],
div button[data-bs-toggle="tooltip"],
.btn,
.material-symbols-rounded,
.notes .note {
    cursor: url(../images/pointer.png), pointer;
}

input,
textarea {
    cursor: url(../images/text-cursor.png), text;
} */

/* Custom Class */
.nav-link {
    color: rgb(255 255 255 / 85%);
}

.bg-tercearia {
    background-color: var(--tercearia) !important;
    border-color: var(--tercearia) !important;
}

.margin-bottom-5-important {
    margin-bottom: 5rem !important;
}

.fs-6 {
    font-size: .92rem !important;
}

.text-7 {
    font-size: .7rem;
}

.text-75 {
    font-size: .75rem;
}

.text-8 {
    font-size: .8rem;
}

.text-85 {
    font-size: .85rem;
}

.text-9 {
    font-size: .9rem;
}

.text-95 {
    font-size: .95rem;
}
.text-98 {
    font-size: .98rem;
}

.w-85 {
    width: 85% !important;
}

.pend-12 {
    padding-right: 12%;

    @media (max-width: 884px) {
        padding-right: 5%;
    }
}

.tags {
    display: inline-flex;
    height: 1.2rem;
}

.no-select {
    user-select: none;
}

.selected-plan-contas-color {
    --bs-bg-opacity: 1;
    background-color: #0d6efd4f !important;
}

.brevemente {
    filter: grayscale(1) !important;
    cursor: no-drop !important;
}


.mirror-y {
    transform: scaleY(-1);
}

.mirror-x {
    transform: scaleX(-1);
}




/* Estilos gerais */
ul.filter-doc {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.filter-item-doc {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    /* Espaço para o tracejado à esquerda */
}

/* Níveis da árvore */
.tree-level-0 {
    padding-left: 10px;
}

.tree-level-1 {
    padding-left: 30px;
    /* Aumenta o espaçamento à esquerda para acomodar o tracejado */
}

.tree-level-2 {
    padding-left: 30px;
}

.tree-level-3 {
    padding-left: 30px;
}

.tree-level-4 {
    padding-left: 30px;
}

/* Linhas para criar o efeito de árvore */
.tree-level-1::before {
    top: 0;
}

.tree-level-2::before {
    top: -14px;
}

.tree-level-3::before {
    top: -13.4px;
}

.tree-level-4::before {
    top: -13px;
}

.tree-level-1::before,
.tree-level-2::before,
.tree-level-3::before,
.tree-level-4::before {
    content: '';
    position: absolute;
    left: 18px;
    width: 10px;
    border-left: 1px dotted #0d6efd;
    border-bottom: 1px dotted #0d6efd;
    height: 100%;

    /* Garante que o tracejado siga todo o comprimento */
}

.tree-level-0::before {
    display: none;
    /* Remove o tracejado para o primeiro nível */
}

.tree-level-1::before {
    height: 52%;
}

.tree-level-2::before,
.tree-level-3::before,
.tree-level-4::before {
    height: 100%;
}





/*--------- REMOVER FUNDO NO  AUTOCOMPLETE DOS INPUTS ---------*/

/* Chrome, Safari and Opera */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

/* Firefox */
input:-moz-autofill,
input:-moz-autofill-preview {
    background: transparent !important;
}

/* Internet Explorer, Edge */
input:-ms-input-placeholder {
    background: transparent !important;
}

li a:hover {
    border-radius: 6px !important;
}

.form-control:focus {
    border-color: var(--azul-sombra);
    box-shadow: 0 0 0 .05rem inset var(--azul-sombra) !important;
}

/*--------- FIM REMOVER FUNDO NO  AUTOCOMPLETE DOS INPUTS ---------*/

.contrat-blue {
    filter: contrast(100%) !important;
}

.outline-none:focus {
    outline: none !important;
}

.round-10 {
    border-radius: 10px !important;

}

.round-20 {
    border-radius: 20px !important;
}

.tab-notifications {
    top: 6.5rem;
    left: 1rem;
    width: 98%
}

/*==========================================
    INICIO | NAV BAR
==========================================*/

.spiner-wrapper {
    position: fixed;
    overflow: hidden;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;

    .spinner-border {
        width: 3rem;
        height: 3rem;
    }

}

#lin_loader,
#info_empty_cab_lanc {
    transition: all .3s ease-in-out;
}

.badge-notificacoes {
    margin: 0 0 1rem 3rem !important;
}

.titulo_row_down .uil {
    display: none;
}

/*Titulos abaixo do icon*/
.nav-item .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    user-select: none;
}

/*Titulos abaixo do icon*/

.btn_suporte:hover {
    background-color: #fff !important;
    color: var(--dark) !important;
}



#navbarCollapse,
.poppins {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
}

.navbar {
    padding: 0 0 !important;
}

.navbar-brand,
.nunito {
    font-family: 'Nunito', sans-serif;
}
.dm-sans {
    font-family: 'DM Sans', sans-serif;
}

.navbar-brand span {
    font-weight: bold;
}

.badge-brand {
    font-size: .6rem;
}
.icon-top-menu{
    font-size: 20px;
}



.navbar-collapse i {
    font-size: 1.2rem;
    margin-right: 5px;
}

.fft-6 {
    font-size: 1rem !important;

}

.hvr-link:hover .hvr-underline {
    text-decoration: underline !important;
    background-color: transparent !important;
}

.navegador .nav-item:hover {
    text-decoration: none;
    background-color: var(--dark);
}

.dropdown-menu {
    font-size: .8rem !important;
}

.menu-titulos-nav,
.menu-titulos-nav-mobile {
    font-size: 9px;
    /* display: none; */
}

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

.dropdown-toggle::after {
    display: none !important;
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-45 {
    transform: rotate(-45deg);
}


/*==========================================
    INICIO | CAROSEL                        
==========================================*/

.c-img {
    height: 150%;
    object-fit: cover;
    filter: brightness(0.8);
}

.p-promo {
    width: 600px;
}

.carousel-item h1,
.carousel-item p {
    color: rgb(14, 59, 176);
}

.carousel-caption {
    bottom: 0.8rem;
    background: #ffffffeb;
    padding-right: 2rem;
    border-radius: 2rem;
    position: absolute;
    width: 84%;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0;
    /* Remova o 8% aqui para centralização */
    max-width: 70%;
}



.plan_sign_account {
    max-width: 360px;
    min-height: 450px;
    transition: transform 0.3s ease;
}

.plan_sign_account:hover {
    transform: scale(1.05);
}

.bg-gradient-1 {
    background: linear-gradient(120deg, purple, rgb(36, 36, 145));

}

/*==========================================
    INICIO | LOGIN OPTIONS
==========================================*/
.plan_student {
    position: relative;
    background-image: url(../images/home/girl-with-bag.jpg);
    background-size: cover;
    /* Ajusta a imagem de fundo para cobrir todo o elemento */
    background-position: center;
    /* Centraliza a imagem de fundo */
}

.plan_pro {
    position: relative;
    background-image: url(../images/home/man-with-cup.jpg);
    background-size: cover;
    /* Ajusta a imagem de fundo para cobrir todo o elemento */
    background-position: center;
    /* Centraliza a imagem de fundo */
}

.plan_enterprise {
    position: relative;
    background-image: url(../images/home/girl-computer.jpg);
    background-size: cover;
    /* Ajusta a imagem de fundo para cobrir todo o elemento */
    background-position: center;
    /* Centraliza a imagem de fundo */
}

.plan_sign_account {
    position: relative;
    color: #fff !important;

}

.plan_student::before {
    content: '';
    border-radius: 15px !important;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #3d28e0, #2a12e6, #4234aa, #996DCC);
    opacity: .6;
    transition: .3s linear;
    /* clip-path: circle(18% at 99% 1%); */
    clip-path: circle(100%);

    z-index: -1;
}

.plan_pro::before {
    content: '';
    border-radius: 15px !important;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ca3507, #a32802, #853118, #cc8d6d);
    opacity: .6;
    transition: .3s linear;
    /* clip-path: circle(18% at 99% 1%); */
    clip-path: circle(100%);

    z-index: -1;
}

.plan_enterprise::before {
    content: '';
    border-radius: 15px !important;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #03b38a, #04745a, #2f967e, #50e0be);
    opacity: .6;
    transition: .3s linear;
    /* clip-path: circle(18% at 99% 1%); */
    clip-path: circle(100%);

    z-index: -1;
}

.detail-info {
    margin-top: 8rem !important;
}






/*------------- LOGIN Animations ---------------*/
.form-control {
    border-color: #adacac;
}

.form-floating>label {
    padding: 0 8px;
    transition: all 0.3s ease;
    transform: scale(1);
    /* default scale */
    opacity: .35;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    outline: none;
    box-shadow: none;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    transform: translateY(-50%) scale(0.9);
    /* scale when input is focused or not empty */
    color: #86B7FE;
    opacity: 1;

}


/*==========================================
    PRICING
==========================================*/








/*==========================================
    DASHBOARD
==========================================*/
#mobile_nav_footer_menu,
#menu_list_mobile_container {
    display: none;
}

#dropdwn-mobile-nav.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: initial !important;
    right: 0 !important;
    margin-top: var(--bs-dropdown-spacer);
}






.dash-top-bg,
.btn-bg-bobble {
    width: 100%;
    height: 255%;
    /* background: linear-gradient(var(--azul-sombra), var(--red-light); */
    /* background: radial-gradient(#0064c1ea, #1c066d, #0c0230); */
    background-image: url(../images/dashboard/pattern.svg);
    background-size: 35%;
    /* Ajuste o tamanho da imagem conforme necessário */
    background-position: center;
    opacity: .15;
}

.pattern_svg {
    position: relative;
    height: 255%;
    overflow: hidden;
    /* Para garantir que o pseudo-elemento não saia dos limites do elemento pai */
}

.pattern_svg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dashboard/pattern.svg);
    background-size: 35%;
    /* Ajuste o tamanho da imagem conforme necessário */
    background-position: center;
    opacity: 0.15;
    /* Define a opacidade do background */
    z-index: -1;
    /* Coloca o pseudo-elemento atrás do conteúdo do elemento pai */
}

.bg-card-glassmorphism-1 {
    /* box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5); */
    border-radius: 15px;
    /* background: rgba(255, 255, 255, 0.1 ); */
    background: linear-gradient(120deg, #fd6952, #6c006d, #920097, #bd5256);
    border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(5px) !important;
}

.bg-card-glassmorphism-2 {
    /* box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5); */
    border-radius: 15px;
    /* background: rgba(255, 255, 255, 0.1 ); */
    background: linear-gradient(120deg, #778eff, #190997, #4234aa, #9133ff);

    border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(5px) !important;
}

.btn>.move-left {
    transition: margin-left .2s ease-in-out;
}

.btn:hover>.move-left {
    margin-left: .8rem !important;
}



/*==========================================
   PLANO DE CONTAS
==========================================*/
.escala-9 {
    transform: scale(.95);
}

.contentor-main .row>* {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.box-pesquisa {
    display: flex;
    height: 42px;
    padding: 0 15px;
    background-color: #f7f7f7f5;
    border-radius: 20px;
    align-items: center;
    width: 100%;
    max-width: 700px;

}

.box-pesquisa input {
    width: 100%;
    outline: none;
    border: none;
    font-weight: 500;
    transition: .5s ease-in-out;
    background: transparent;
    text-indent: 10px;
}

.box-pesquisa i {
    font-size: 1.5rem;
    padding-left: 5px;

}

.box-pesquisa #mic {
    display: block;
}


.fa-microphone {
    color: var(--primaria-azul);
    text-shadow: 0 0 30px var(--azul-sombra);
    height: 2.28rem;
    padding: .35rem .38rem .35rem .35rem;
}

.plano-contas {
    font-size: .8rem;
    font-family: 'Nunito', sans-serif;

}


/*==========================================
   COMPONENTES
==========================================*/

.btn-srll-up,
#btn-open-close-side-bar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px #0000003f;
}

#btn-open-close-side-bar {
    margin-top: 9rem;
    width: 40px;
    height: 35px;
    /* z-index: 999 !important; */
}

.position-inicial-btn-aside {
    right: 32.5%;
}
/* .position-inicial-btn-aside {
    right: 0;
} */

.position-final-btn-aside,
.position-final-btn-scrll-up {
    right: 0;
}

.position-inicial-btn-scrll-up {
    right: 35%
}

.btn-srll-up-dply-none {
    display: none !important;
    transition: display 1s ease-in-out;

}

.btn-srll-up i {
    font-size: 2rem;
    padding-bottom: 6px;
}

.reverse-row {
    transform: scaleX(-1);
}

/*==========================================
   CONTENT-ASIDE -  PLANO DE CONTAS
==========================================*/
/*==========================================
   Show-hide aside-bar /MOBAILE
==========================================*/

.custom-tooltip {
    --bs-tooltip-bg: black;
    --bs-tooltip-color: #fff;
}


.left-150 {
    position: absolute;
    left: 150% !important;
}

.left-0 {
    position: absolute;
    left: 10% !important;
}

.blurer-active {
    display: block !important;
    /* filter: blur(5px); */
    position: absolute;
    left: 0 !important;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.689)
}

/*==========================================
   CONTENT
==========================================*/


.btn-switch-active-left {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 8px;
    transition: left .2s ease-in-out;
}

.btn-switch-active-right {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    border-radius: 8px;
    transition: left .2s ease-in-out;
}

.btn-switch-icon-msg-active,
.btn-switch-icon-headphones-active {
    color: #fff !important;
}



.aside-header-title {
    transform: scale(.8);
    user-select: none;
}

#btn-open-close-side-bar,
.position-inicial-btn-aside,
.position-final-btn-aside,
.row-pesquisa-conta,
.content-section,
.content-aside,
.btn-srll-up {
    transition: all .3s ease-in-out;
}

.bg-wihte-down {
    /* background-color: #EFEFEF; */
    background-color: #fff;
}

.m-hover,
.m-hover-sm {
    transition: .1s ease-in-out;
    font-family: 'nunito', sans-serif !important;
}

.m-hover:hover {
    background-color: #c9c9c985;
    color: var(--primaria-azul);
}

.m-hover-sm:hover {
    background-color: #c9c9c93c !important;
}

.bx-shadow {
    box-shadow: 0 1px 2px #1d21243c !important;
    z-index: 8;
}

.bx-shadow-balancete {
    box-shadow: 8px 2px 1px #1d21243c !important;
    z-index: 999;
}

.content_explanation {
    font-family: 'nunito', sans-serif !important;
    /* padding: 0 2rem; */
}

/*SWITCH EACH TAB*/

.tab-size-fixed {
    border-bottom: .2rem solid transparent !important;
}

.active-tab {
    border-bottom: .2rem solid var(--tab-color) !important;
    transition: ease .2s;
}

.active-tab-submenu {
    border-bottom: .2rem solid var(--bs-primary-text-emphasis) !important;
    transition: ease .2s;
}



.shape-msg {
    border-radius: 0 15px 15px 15px !important;
}

.shape-msg-response {
    border-radius: 15px 0 15px 15px !important;
}

.input_msg_container {
    border-radius: 15px;

}

#chat_input {
    min-height: 1rem !important;
    max-height: 3em !important;
    resize: none;
}

.outgoing {
    display: flex;
    justify-content: end;
    gap: 1rem;

}

.shape-msg,
.outgoing,
.incoming {
    font-size: .85rem;
}

.incoming {
    display: flex;
    gap: 1rem;
    margin-right: .25rem !important;
}

/* .chatbox .chat p {
    white-space: pre-wrap;
} */

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da !important;
}

#btn_send:disabled {
    opacity: 0.2;
}

/*==========================================
    lançaemntos
==========================================*/

.mundial-img-bg {
    position: relative;
    overflow: hidden;
    height: 80%;
    width: 100%;
    min-height: 73vh;
}

.mundial-img-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url(../images/flags/mundial-country.jpg); */
    background-size: 80%;
    background-position: center;
    opacity: 0.5;
    /* Define a opacidade desejada */
    z-index: 1;
}

.mundial-img-bg>* {
    position: relative;
    z-index: 2;
}

.table-bg-transparent {
    /* --bs-table-bg: rgba(255, 255, 255, 0.8) !important ; */
    /* Fundo branco com 80% de opacidade */

    --bs-table-bg: rgba(var(--bs-body-bg-rgb), 0.75) !important
}

.table-center-vertical td,
.table-center-vertical tr {
    vertical-align: middle;
    text-align: center;
}

.table-center-vertical img {
    display: block;
    margin: 0 auto;
}





/*==========================================
ANIMAÇÕES DO CHATBOT
==========================================*/


.loading span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 3px;
    background: var(--loading-span-background) !important;
}

.loading span {
    animation: bounce .6s cubic-bezier(0.6, 0.1, 1, 0.4);
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.loading span:nth-child(1) {
    animation-delay: .1s;
}

.loading span:nth-child(2) {
    animation-delay: .2s;
}

.loading span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes bounce {
    to {
        transform: translateY(12px);
    }
}


/*==========================================
    VOICE CHAT
==========================================*/
.chatbox-2 {
    margin-right: 2rem;
}

.circle {
    background-color: transparent;
    /* Vermelho */
    min-width: 50px;
    min-height: 50px;
    max-width: 150px;
    max-height: 150px;

    border-radius: 50%;
    transition: all 0.1s ease-out;

    /* Adiciona duas bordas simulando o efeito da Cortana */
    box-shadow: 0 0 0 12px #15A0E8, 0 0 0 25px #9BDBF6;
}



/* Adiciona uma animação de deformação ao círculo */
.audio-visualizer.deform .circle {
    transform: scale(1.1);
    transition: transform 0.2s ease-out;
}



/*==========================================
  NOTAS DIMANICAS
==========================================*/
.button-box-cloud-info,
.btn-violet,
.btn-violet-pill,
.btn-violet-rounded,
.btn-violet-lft-rgt-top {
    position: relative;
    z-index: 1;
}

.button-box-cloud-info::before,
.btn-violet::before,
.btn-violet-pill::before,
.btn-violet-rounded::before,
.btn-violet-lft-rgt-top::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(120deg, #5e57b3, #2b2b57);
    ;
    z-index: -1;
}
.border-violet-lft-rgt-top {

    border: 2px solid #5e57b3,;
      border-radius: 20px
}

.bgc-violet {
    background: linear-gradient(120deg, rgb(94, 87, 179), rgb(43 43 87));
}

.button-box-cloud-info::before {
    border-radius: 10px;
}

.btn-violet-pill::before {
    border-radius: 50px;

}

.btn-violet-rounded::before {
    border-radius: 8px;
}

.btn-violet-lft-rgt-top::before {
    border-radius: 8px 8px 0 0;
}

/*------------------------------------*/
.note {
    display: flex;
    width: 100%;
    /* align-items: center; */
    /* justify-content: center; */
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 6px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
    /* border: solid 1px red; */
    border-radius: 10px;
    /* min-width: 200px; */

}

.title-note {
    max-width: 350px !important;
}

.area-note {
    min-height: 200px !important;
}


.note.expanded {
    width: 30%;
    /* background: #fff; */
    position: fixed;
    top: 35%;
    z-index: 999;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1); */
    opacity: 1;
    /* min-width: 500px; */

}

.note textarea {
    display: none;
}

.note.expanded textarea {
    display: block;
}

.note button {
    display: none;
}

.note.expanded button {
    display: block;
}

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

.backdrop.show {
    display: block;
}




/*==========================================
   LANÇAMENTOS
==========================================*/
.img-sharp {
    filter: contrast(100%);
}



/*==========================================
   BALANCETE
==========================================*/

#graficoPie {
    min-width: 260px;
    /* Largura mínima */
    min-height: 400px;
    /* Altura mínima */

    display: flex;
    justify-content: center;
}

.apexcharts-legend-text {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}





/*==========================================
   PERFIL
==========================================*/

#avatar_profile {
    width: 40px;
    height: 40px;
}

.fs-3-edited{
    font-size: 1.75rem !important
}
.avatar_profile_nome {
    display: none;
}

.op-5-placeholder::placeholder {
    opacity: 0.5;
    /* Ajuste a opacidade conforme necessário */
}

#mobile_nav_footer_menu .material-symbols-rounded {
    /* background-color: #ffc00033; */
    padding: .14rem .7rem;
    border-radius: .45rem;
}

#mobile_nav_footer_menu .fa-solid {
    /* background-color: #ffc00033; */
    padding: .25rem .7rem !important;
    border-radius: .45rem;
}

.icone-2FA-laptop {
    font-size: 9rem;
}

.icone-2FA-phone {
    font-size: 8rem;
}



/*==========================================
    MEDIA QUERYS
==========================================*/
@media (max-width: 1100px) {
    .menu-titulos {
        display: none;
    }
}

@media (max-width: 1051px) {

    /*==========================================
    NAV BAR
==========================================*/
    .perfil-dropmenu {
        left: -200% !important;
    }




    /*==========================================
    PLANO DE CONTAS
==========================================*/
    /* .menu-titulos {
        display: none;
    } */

    .box-pesquisa {
        max-width: 600px;
    }


}


@media (max-width:992px) {
    /*==========================================
    DASHBOARD
    ==========================================*/

    .card_inicial_greetings {
        left: 5% !important
    }

    #mobile_nav_footer_menu {
        display: block;
    }

    .position-inicial-btn-aside {
        right: 0;

    }

    .position-final-btn-aside {
        right: 90%;
    }

    #bx_inpt_and_btn {
        width: 89.8% !important;

    }

    #bx_like_post_share,
    #bx_inpt_and_btn {
        width: 89.8% !important;

    }
}

/*TABLETS MAIOR RESOLUÇÃO*/
@media (max-width: 884px) {
    .navbar-brand {
        font-size: 1.1rem !important;
    }

    .badge-brand {
        font-size: .6rem;
    }

    .dash-top-bg,
    .pattern_svg::before {
        background-size: 80%;
        /* Ajuste o tamanho da imagem conforme necessário */
    }


    .box-pesquisa {
        max-width: 490px;
    }

    .atalhos {
        display: none !important;
    }

    .options_log {
        gap: 1rem !important;
    }

    .plan_sign_account {
        max-width: 360px;
        min-height: 300px;
    }

    .ms-no-mobile-auto-important {
        margin-left: auto !important;
    }

    .tab-notifications {
        width: 98%
    }

    #btn_add_note {
        margin-right: 3rem;
    }

    .position-inicial-btn-scrll-up {
        right: 0;
    }
}

/*SMART-PHONES*/
@media (max-width: 767px) {
    .carousel-caption {
        width: 97%;
        left: 0;
        margin: 20px 1%;
        transform: none;
        max-width: 97%;
    }

    .carousel-item h1 {
        font-size: calc(1.325rem + .9vw) !important;
    }

    .navbar {
        padding: .5rem !important;
    }

    .navegador .nav-item:hover {
        background-color: transparent;
    }

    .menu-titulos-nav {
        font-size: 14px;
        display: inline-flex;
    }


    .btn_suporte {
        margin: 1rem 0 !important;
        width: 9rem !important;
        padding-bottom: 1.2rem;
        justify-content: space-between;
        /* height: 2.5rem !important; */
    }

    .badge-notificacoes {
        margin: 1rem 0 0 8.8rem !important;
    }

    /*Titulos abaixo do icon*/
    .nav-item .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: initial;
        gap: .8rem;
    }

    /*Titulos abaixo do icon*/

    .nav-link {
        padding-bottom: 1rem;
    }

    .navbar-collapse i {
        font-size: 1.5rem;
        margin-right: 5px;
    }

    .titulo_row_down .uil {
        display: inline;
    }

    .titulo_row_down {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: .2rem;
    }



    .dropdown-item::after {
        transform: rotate(90deg);
    }

    .c-img {
        height: 100%;
    }

    .indent {
        text-indent: 10px;
    }

    /*==========================================
    DASHBOARD
    ==========================================*/

    .avatar_profile_nome {
        display: inline;
    }

    .bg-card-glassmorphism {
        transform: scale(.96) !important;
        font-size: .8rem !important;
    }

    /*==========================================
   PLANO DE CONTAS
==========================================*/

    .box-pesquisa {
        max-width: 350px;
    }

    .plano-contas {
        font-size: .8rem;
    }

    .bloco-linhas-lancamentos .form-control {
        font-size: .85rem !important;
    }


    .btn-srll-up {
        width: 60px;
        height: 60px;
    }

    .btn-srll-up i {
        padding-top: .5rem;
        font-size: 2rem;
        padding-left: 0;
    }


    .position-inicial-btn-aside {
        right: 0;

    }

    .position-final-btn-aside {
        right: 90%;
    }

    #bx_like_post_share,
    #bx_inpt_and_btn {
        width: 88.8% !important;

    }

    .chatbox-2 {
        margin-right: 2.2rem;
    }


    .note.expanded {
        top: 30%;

        width: 80%;

    }

    .title-note {
        max-width: 250px !important;
    }

    /*==========================================
    LANÇAMENTOS
    ==========================================*/
    #btn_novo,
    #btn_rascunho,
    #btn_estornar,
    #btn_cancelar,
    #btn_opcoes_lanc,
    #btn_gravar,
    #btn_limpar_tudo {
        font-size: .75rem !important;

        span {
            font-size: 1rem !important;
        }

    }

    #coluna_titulo {
        font-size: .95rem;
    }

    #container_b_linhas_lancamentos {
        margin-top: 5.1rem !important;
    }

    .mundial-img-bg {
        min-height: 64.2vh !important;
    }



    /*==========================================
    Forum
==========================================*/

    .main_msg_chat_box aside {
        display: none;
    }

    /*============================
    perfil
    ============================*/
    .fs-3-edited{
        font-size: 2.5rem !important
    }

    .icone-2FA-laptop {
        font-size: 6rem;
    }
    
    .icone-2FA-phone {
        font-size: 6rem;
    }

}