html {
    scroll-behavior: smooth;
}
body{
    min-height: 100svh;
}
.wrapper{
     min-height: 100svh;
}

/* body::-webkit-scrollbar {
    width: 10px;
    max-height: 10px;
    background-color: #010304;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(0, 161, 241);
    box-shadow: inset 0 0 6px rgba(0, 161, 241, 0.5);
    border-radius: 5px;
} */
.text-gray {
    color: rgb(196, 196, 196);
}
*{
    margin: 0;
    padding:  0;
  
    box-sizing: border-box;
    font-family: 'SourceSansPro', sans-serif;
}
.card_indices{
    border-radius: 15px !important;
}
.cursor-pointer{
    cursor: pointer !important;
}
.font-popp{
    font-family: 'Poppins' !important;

}
.bg-theme-sec{
    background-color: #FFAD4E !important;
}
.text-theme-sec{
    color: #FFAD4E !important;
}
.text-right{
    text-align: right !important;
}

.text-success-alt{
    color: #28a745 !important
}
.title_login{
    font-weight: bold !important;
    font-family: "Open Sans", serif;
}
.text-sm{
    font-size: 13px !important;
}
.title-card{
    font-weight: 900 !important;
    font-family: 'SourceSansPro', sans-serif;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    background-color: #FFFFFF;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 15px;
}


.title-action{
    font-weight: bold;
}

.bg-theme:hover{
    /* background: #0193db; */
    color: white;
    transition: 0.3s;
}

.bg-default{
    background-color: #ededed;
    border: 1px solid #ced4da;
}



table tr:last-child td {
    border-bottom: none !important;
}


.bg-default:hover{
    background-color: #e6e3e3;
    transition: 0.3s;
}

body{
    background-color: #f4f4fa;
    overflow-x: hidden; 
}


.table td {
    font-size: 12px !important; 
}

.nav-link.dropdown-toggle::after {
    content: none;
}


.dropdown-toggle::after {
    content: none;
}

.btn_partner{
    text-decoration: none;
    color: #303030;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid black;
    padding: 10px 20px;
    background-color: white;
    -webkit-box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
-moz-box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
box-shadow: 7px 14px 17px -7px rgba(0,0,0,0.75);
}

.status-bubble {
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    border: 3px solid #ccc; /* Borda cinza clara por padrão */
    background-color: #ccc; 
    transition:  border-color 0.3s, border 0.3s;
    opacity: 0.6; /* Fica um pouco transparente por padrão */
    background-color: #00bf63 !important;
  }
  
  /* Efeito quando o status for 'ativo' (verde) */
  .status-bubble.active {
    border-color:  #00bf63 !important;
   
    opacity: 1; /* Retorna a opacidade ao normal quando está ativo */
  }

  .status-bubble.close {
     border-color: #64748b; 
  }

  .status-bubble.after-hours {
     border-color: #002aff; 
  }

  .status-bubble.pre-market {
    border-color: #f4b840; 
 }



.font11{
    font-size: 11px !important;
}
.btn_assinatura{
    animation: pulse 1.8s infinite; 
}

.btn_partner:hover {
    transition: 0.5s;
    transform: scale(1.03);
    /* animation: pulse 1.8s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.backcover_mobile{
    background-color: rgba(0,0,0,0.65);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
   
}


.menu_mobile_sidebar{
    background-color: #fafafa;
    width: 0;
    height: 100vh;
   
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: width 0.2s ease-in-out;
}
.menu_mobile_sidebar.open{
    width: 80%;
    
}



.btn_close_mobile_sidebar{
    width:  20%;
    padding: 20px 10px;
    cursor: pointer;
    height: 100vh;
}

@media screen and (max-width: 1090px){
    #header_desktop{
        display: none !important;
    }
    #header_mobile{
        display: block !important;
    }
}
.tooltip-target,
.tooltip-target-left{
    position: relative;
    cursor: pointer;
}

.bg-card-init {
    background-color: #0f172a;
}



.text-dark-init{
    color: #0F172A;
}

.text-dark-init:hover{
    color: #131e38;
    animation: pulse 1.8s infinite;
}

.text-bold{
    font-family: 'SourceSansPro';
    font-weight: 700;
}

.tooltip-target:hover::after {
    content: attr(data-tooltip); /* Conteúdo do tooltip */
    position: absolute;
    bottom: 100%; /* Coloca o tooltip acima do elemento */
    left: 30%;
    transform: translateX(0%); /* Centraliza o tooltip */
    background-color: rgba(204, 204, 204, 0.9);
    color: attr(data-tooltip-color color, black);
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    font-weight: 900 !important;
    transition: opacity 0.3s ease;
    z-index: 100; /* Garante que o tooltip fique visível */
    /* max-width: 600px !important; */
  }

  .tooltip-target-left:hover::after {
    content: attr(data-tooltip); /* Conteúdo do tooltip */
    position: absolute;
    bottom: 100%; /* Coloca o tooltip acima do elemento */
    right: 30%;
    transform: translateX(0%); /* Centraliza o tooltip */
    background-color: rgba(204, 204, 204, 0.9);
    color: attr(data-tooltip-color color, black);
    padding: 5px 10px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    font-weight: 900 !important;
    transition: opacity 0.3s ease;
    z-index: 100; /* Garante que o tooltip fique visível */
    /* max-width: 1550px !important; */
  }
  
  /* Inicialmente o tooltip fica invisível */
  .tooltip-target::after,
  .tooltip-target-left::after {
    visibility: hidden;
    opacity: 0;
    content: "";
    transition: visibility 0s 0.3s, opacity 0.3s linear;
  }

  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;

  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
  }

  .bg-everest{
    width: 100%; /* Ajusta a largura conforme necessário */
    height: 180px; /* Defina a altura da div */
    background-image: url('../images/everest.png');
    background-size: cover; /* Faz a imagem cobrir toda a div */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Não repete a imagem */
  }

  .bg-overlay{
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 4px 8px;
  }

  .form-check-input:checked {
    background-color: #00A1F1 !important; /* Verde */
    border-color: #00A1F1 !important;
}

.area_relogio_login{
    width: 100%;
    height: 100%;
    max-width: 509px; 
    max-height: 509px;
}

.area_relogio_dash{
    width: 100%;
    height: 100%;
    max-width: 379px; 
    max-height: 379px;
}

.custom_modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}
.cursor{
    cursor: pointer;
}

.custom_card_modal{
    max-width: 768px;
    min-height: 450px;
    width: 100%;
    padding: 23px;
    color: #f5f5f5;
    background-color: #0F172A;
    border-radius: 25px;
    -webkit-box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
    box-shadow: 2px -1px 19px 0px rgba(0,0,0,0.75);
   
}

.email_login,
.senha_login,
.email_login:-webkit-autofill{
    width: 100%;
    height: 46px;
    border-radius: 9px;
    border: 1px solid #f5f5f5;
    padding-left: 8px;
    caret-color: #f5f5f5;
    color: #f5f5f5;
    background-color: transparent;
}
.email_login:focus{
    outline: 0;
}

.input_light{
    border: 1px solid #adadad;
    caret-color: gray;
    color: gray;
}

.input_light:focus{
    border: 1px solid rgb(0, 161, 241) !important;
    outline: 0;
}
.float-label{
    position: relative;
    left: 12px;
    top: 34px;
    pointer-events: none;
    transition: 0.3s;
    
    padding-left: 8px;
    padding-right: 5px;
    font-size: 16px;
    border-radius: 5px;
}
.float-label.light{
    color:#6C75A5
}

.float-label.active{
    background-color: #0F172A;
    font-size: 13px;
    top: 12px;
}

.float-label.light.active{
    background-color: #FFFFFF;
    font-size: 13px;
    top: 12px;
}

a.text-theme:hover{
    color: #0070a3;
}
.eye_input{
    position: relative;
    left: 92%;
    bottom: 30px;
    cursor: pointer;
}

.area_toast{
    position: fixed;
    pointer-events: none;
    transition: 0.6s;
    bottom: 10%;
    right: 25px;
    z-index: 1000;
    max-width: 100%;
    overflow: hidden;
    display: none;
    border-radius: 6px;
    -webkit-box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
    -moz-box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
    box-shadow: 3px 14px 39px 17px rgba(0,0,0,0.19);
        
}
 
.custom_toast{
    color: white;
    background-color: red;
    padding: 8px 9px;
    border-radius: 6px;
    min-width: 180px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
}
.slide-in {
    right: -100%; 
    animation: slideRightToLeft 3s ease-out forwards; 
}

.select2-selection__rendered {
    line-height: 38px !important;
    
}
.select2-container .select2-selection--single {
    height: 38px !important;
    width: 100% !important;
}

.select2.select2-container.select2-container--default{
     width: 100% !important;
}
.select2-selection__arrow {
    height: 38px !important;
    
}
.select2-search__field{
    outline: 0;
    border: 0;
}

.select2.select2-container .selection{
    min-height: 38px !important;
    
}

.select2-dropdown {
    z-index: 2;
  }


.select2-container--open .select2-dropdown,
 .select2-dropdown--above{
    z-index: 1051 !important;
    font-size: 14px !important;
   
}


/* Definindo a animação */
@keyframes slideRightToLeft {
    0% {
        right: -50%; 
    }
 
    50%{
        right: 10%;
    }
    80%{
        right: 9%;
    }
    85%{
        right: 10%;
    }
    100% {
       
        right: -100%; 
    }
}

.bg-success-toast{
    background-color: #16B44E;
    
}
.bg-error-toast{
    background-color: #F53D3D;
  
}
.bg-warning-toast{
    background-color:  #FFAD4E;
   
}

.fi:before{
    color: transparent !important;
}


.pill-notice{
    border-radius: 50%;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img_perfil {
   
    object-fit: cover;  /* Garante que a imagem preencha sem distorcer */
    object-position: center; /* Centraliza a imagem */
    
}



@media (max-width: 900px) {
  .stack-table thead {
    display: none;
  }
  .stack-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
  }
  .stack-table tbody td {
    display: block;
    text-align: right;
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #dee2e6;
  }
  .stack-table tbody td::before {
    content: attr(data-stack-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 1rem;
    font-weight: 600;
    text-align: left;
    
  }
  .stack-table tbody td:last-child {
    border-bottom: none;
  }
}

.pagamento-pendente {
    position: relative;
    outline: 2px solid rgba(255, 193, 7, 0.5); /* amarelo suave */
    border-radius: 8px;
    animation: pulseOutline 2s infinite ease-in-out;
    text-decoration: none;
}

@keyframes pulseOutline {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 8px 4px rgba(255, 193, 7, 0.2);
        transform: scale(1.01);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
        transform: scale(1);
    }
}