:root {
    --dark-bg: #1a1836;
    --dark-bg-card: #0b0a1d;
    --transparent-bg: rgba(21, 21, 21, 0.5);
    --green-bg: rgb(70, 130, 70);
    --gray-bg: #a7a7a7;
    --light-bg: #f5f5f5;
    --text-color: #02b3e6;
    --text-color-dark: #333;
    --hover-menu: #d7d7d7;
    --text-color-light: #fff;
    --link-color: rgb(49, 130, 171);
    --link-color-hover: rgb(171, 49, 49);
    --btn-bg-hover: rgb(229 229 229);
    --gradient-dark: linear-gradient(0deg, rgba(2, 0, 36, 1) 10%, rgba(28, 28, 28, 1) 47%, rgba(0, 0, 0, 1) 94%);
    --comment-group-bg: #f1f1f1;
}
* {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 11pt;
    border-collapse: collapse;
    line-height: 1;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; 
    object-fit: cover;
    outline: none;
    line-height: 1.3;
    /* background-color: var(--dark-bg); */
}
body {
    background-color: var(--dark-bg);
    color: var(--text-color);
}
button{
    cursor: pointer;
    color: var(--text-color);
    border: none;
}
form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
label{
    display: block;
    width: max-content;
}
input, select, textarea{
    background-color: var(--dark-bg-card);
    border: 0.5px solid var(--transparent-bg);
    padding: 10px;
    font-size: 12pt;
    border-radius: 10px;
    color: var(--text-color);
    width: 100%;
}
.row{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
a{
    color: var(--link-color);
}
a:hover{
    color: var(--link-color-hover);
}
.mb-5{
    margin-bottom: 5px;
}
.text-bolder{
    font-weight: 900;
}
.text-bold{
    font-weight: 700;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.max-content{
    width: max-content;
}
.txsz-24{
    font-size: 24px;
}
.txsz-18{
    font-size: 18px;
}
.w-80{
    width: 80px;
}
.w-150{
    width: 150px;
}
.w-200{
    width: 200px;
}
.w-md{
 max-width: 768px !important;
}
.line-h-1{
    line-height: 1;
}
.mrg-0{
    margin: 0;
}
#response1, #response2, .alert-success-group {
    display: none;
    background-color: #a5ff99;
    color: #097f00;
    padding: 10px;
    border-radius: 10px;
    width: max-content;
}
#error1, #error2, .alert-error-group {
    display: none;
    background-color: #ff8989;
    color: #b00000;
    padding: 10px;
    border-radius: 10px;
    width: max-content;
}
.container{
    max-width: 480px;
    height: 100vh;
    margin: auto;
    overflow: auto;
    text-align: justify;
    position: relative;
}
.container::-webkit-scrollbar, .btn-group::-webkit-scrollbar {
    display: none;
}

.container, .btn-group {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.header{
    background-color: var(--dark-bg);
    max-width: 100%;
    height: 50px;
    z-index: 99999;
    display: flex;
    position: relative;
}
section{
    display: flex;
    align-items: center;
}
.right-section, .left-section{
    width: max-content;
    justify-content: center;
    padding: 0 10px;
}
.right-section button, .left-section button{
   width: 50px;
   background-color: transparent;
   border: none;
}
.right-section button:hover, .left-section button:hover{
   background-color: var(--dark-bg-card);
}
.right-section .mdi{
    font-size: 30px;
}
.center-section{
    justify-content: center;
    text-align: center;
    
}
.center-section p{
    text-align: center;
    font-size: 20px;
}
.content-all{
    width: 100%;
    background-color: var(--dark-bg);
}
.content{
    padding: 15px;
}
.user-identity{
    border: 3px solid var(--text-color);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.user-identity p{
    text-align: center;
}
.comission-group{
    display: flex;
    justify-content: space-between;
}
.card-group{
    background-color: var(--dark-bg-card);
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    /* border: 1px solid var(--text-color); */
}
.btn-group{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}
.btn-link{
    background: var(--gradient-dark);
    border-radius: 10px;
    height: 50px;
    padding: 17px 10px;
    color: var(--text-color);
    text-align: center;
    width: max-content;
}
.btn-submit{
    background: var(--text-color);
    border-radius: 10px;
    /* height: 50px; */
    padding: 10px;
    color: var(--dark-bg-card);
    text-align: center;
}
small a{
    font-size: 12px;
    color: var(--green-bg);
}
@keyframes abrirMenu {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fecharMenu {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.menuGroup {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: max-content;
    background-color: #333;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

.menu-list{
    padding: 13px;
    font-size: 14pt;
    background-color: var(--dark-bg-card);
}
.menu-list:hover{
    background-color: var(--dark-bg);
}
.mensal-table, .table-group table{
    background-color: var(--light-bg);
     color: var(--dark-bg-card);
}
.table-group{
    width: 100%;
}
table{
    width: 100%;
}
tr{
    border-bottom: 1px var(--dark-bg-card) solid;
}
th,td{
    width: max-content;
    text-align: left;
    padding: 3px;
}
.dados-requisicao{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.action-btn-group{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.btn-group{
    overflow-y: auto;
}
.list-meses{
    display: flex;
    flex-direction: column;
}
.list-meses a{
    display: flex;
    justify-content: space-between;
}
.header-logo-marker{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.contrato-group{
    background-color: var(--light-bg);
    padding: 15px;
    color: var(--dark-bg-card);
}
.assin-flex-row{
    display: flex;
    flex-direction: row;
}
.myLink{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow: auto;
}
.myLink button{
    width: 100px;
    padding: 5px;
    background-color: transparent;
}
.myLink::-webkit-scrollbar, .btn-group::-webkit-scrollbar {
    display: none;
}
.cabecalho-group{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.cabecalho-group .enpresa{
    display: flex;
    flex-direction: column;
    border: 2px solid var(--text-color);
    width: max-content;
    padding: 8px;
    border-radius: 10px;
}
.cabecalho-group .recibo{
    display: flex;
    flex-direction: column;
    width: max-content;
    padding: 8px;
    border-radius: 10px;
}
.footer-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}




div.line{
    border-bottom: 1px solid var(--text-color);
    width: 100%;
}
.modal{
    display: flex;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: var(--dark-bg);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.modal-comiss{
    flex-direction: column;
    padding: 20px;
}
.modal-comiss .input-group{
    display: flex;
    flex-direction: row;
}
.modal-comiss .input-group input{
    border-radius: 0;
}
.modal-comiss .input-group button{
    border-radius: 0;
    width: max-content;
    padding: 6px;
}
.modal-comiss .btn-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 22px;
    background-color: transparent;
}
.modal-comiss .btn-close:hover{
    background-color: #b00000;
}
/* Estilos para a impressão */
@media print {
    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
    }
    caption,thead{
        color: #333;
    }
    .all-info#printDiv {
      padding: 10px;
      border: 1px solid #000;
      background-color: #fff;
    }
    
    hr, .noprint{
      display: none;
    }
    h1 {
      font-size: 18px;
      color: #333;
      margin-bottom: 10px;
    }
  
   li, p {
      font-size: 14px;
      color: #000;
      text-align: justify;
    }
    table td{
        color: #333 !important;
    }
    p.assinaturas{
        text-align: center;
    }
    .recibo-group{
        padding: 50px;
    }
}
/* RESPONSIVIDADE */
/* @media screen and (max-width: 1180px) {
    .container .content {max-width: 1025px;margin: auto;justify-content: center;}
	.left-group{
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .container .content {
        max-width: 100%;
        
    }
    .business-page .content{
        flex-direction: column;
        max-width: 100%;
        margin: auto;
    }
    .business-page .content .left-business-group{
        width: 100%;
    }
    .content-center{
        width: 480px;
    }
    .right-group{
        
    }
	.left-group{
        display: none;
    }
    .user-left-group{
        width: 300px;
    }
    .container .chat-page{
        grid-template-columns: 300px 1fr;

    }
    .grid-business-user{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .grid-business-user img {
        width: 120px;
        height: 120px;
    }
    .user-follow{
        width: max-content;
    }
    .info-produto-principal{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {
    .search-group{
        display: none;
    }
    .right-group{
        display:none;
    }
    .send-post-group{
        flex-direction: column;
        width: 100%;
        height: 77vh;
        overflow: auto;
        margin-top: 70px;
    }
    form{
        width: 100%;
    }
    .page-cover-group{
        padding: 15px;
    }
    .info-user-group{
        display: flex;
        flex-direction: column-reverse;
    }
    .cover-img, .cover-text{
        padding: 5px;
    }
    .content-center{
        width: 100%;
    }
    
    .info-user-group h1{
        font-size: 20pt;
    }
    .cover-produto img{
        width: 100%;
        height: 100%;
    }
}
@media screen and (max-width: 600px) {
    .users-chat ul li a span{
        display: none;
    }
    .user-left-group{
        width: max-content;
        padding: 10px 0;
    }
    .container .chat-page {
        grid-template-columns: 68px 1fr;
    }
} */
@media screen and (max-width: 480px) {
    .assin-flex-row{
        flex-direction: column;
    }
} 
@media screen and (max-width: 380px) {
    .row{
        flex-direction: column;
    }
    .input-group{
        flex-direction: column;
    }
    .w-150, .w-200, .w-80{
        width: 100%;
    }
}