@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --primaria: rgba(216, 37, 53, 1);
    --secundaria: rgba(156, 58, 118, 1);
}
body, html{
font-family: "Poppins", sans-serif;
background-color:#f6f6fe;
}
.loading__circle {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display:none;
background-color: rgba(255, 255, 255, 0.7);
justify-content: center;
align-items: center;
z-index: 9999;
}
.loading__circle-spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid var(--primaria);
border-radius: 50%;
width: 50px;
height: 50px;
animation: loading__circle-spin 0.6s linear infinite;
}
@keyframes loading__circle-spin {
  to {
    transform: rotate(360deg);
  }
}
button#btnSubmit{
background: linear-gradient(90deg,var(--secundaria) 0%, var(--primaria) 100%);
}
button#btnSubmit:hover{
background: linear-gradient(-90deg,var(--secundaria) 0%, var(--primaria) 100%);
}
.toast{
opacity: 0;
background-color: rgb(255, 255, 255);
border: 0;
box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 3px;
padding: 20px;
transition: all 0.3s linear;
margin-bottom:15px;
transform:translateX(100%);
}
.toast .content{
display: flex;
align-items: flex-start;
position: relative;
width: 340px;
}
.toast .content .icon{
width: 24px;
height: 24px;
color: #06d6a0;
margin-right: 15px;
}
.toast .content .icon svg{
width:100%;
height:100%;
}
.toast .content .text{
width: calc(100% - 39px);
padding-right: 12px;
}
.toast .content .text h2, .toast-confirm h2{
color: #30333c;
font-weight: 600;
font-size: 16px;
margin: 0 0 5px;
line-height: 1;
}
.toast .content .text p, .toast-confirm p{
font-size: 15px;
color: #30333c;
margin: 0;
}
.toast .content .close-toast{
position: absolute;
top:0;
right:0;
cursor: pointer;
}
.toast .content .close-toast i{
font-size: 16px;
color: #30333c;
}
#toast-container{
position: fixed;
top: 75px;
right: 20px;
z-index: 9999;
}
#toast-container.confirm{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(13, 13, 13, 0.2);
top: 0;
left: 0;
right: auto;
}
.toast-confirm {
opacity: 0;
background-color: rgb(255, 255, 255);
border: 0;
box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 3px;
padding: 20px;
transition: none !important;
margin-bottom:15px;
transform:none !important;
text-align: center;
}
.toast-confirm.error { border-color: #e3342f; }
.toast-confirm.success { border-color: #38c172; }
.toast-confirm .actions {
margin-top: 10px;
display: flex;
justify-content: center;
gap: 8px;
}
.toast-confirm .icon{
font-size: 28px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 10px;
color: #555;
}
button.btn-action-table{
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: var(--primaria);
background-color: rgba(216, 37, 53, 0.1);
font-size: 14px;
border: 1px solid var(--primaria);
transition:all .2s linear;
}
button.btn-action-table:hover{
background-color: var(--primaria);
color:#fff;
}
input[type="checkbox"] + label{
width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
padding-top: 2px;
color: #fff;
transition: all .2s linear;
cursor: pointer;
margin: 0 auto;
}
input[type="checkbox"]:checked + label{
border-color:#38c172;
background-color: #38c172;
}
.modal h2{
font-weight: 700;
color: #777;
font-size: 18px;
margin: 0 0 15px;
}
.modal .top-form-empresa h2{
margin:0;
}
.input-brisk{
display: flex;
flex-direction: column;
margin: 0 0 15px;
position: relative;
width: 100%;
}
.input-brisk input{
width: 100%;
background-color: #f5f5ff;
border-radius: 50px;
padding: 5px 15px;
font-size: 14px;
height: 46px;
outline: none;
box-shadow: none;
color: #000;
}
.modal .acoes-modal{
display: flex;
align-items: center;
justify-content: center;
padding: 10px 15px 30px;
gap: 15px;
}
button.btn-acao-modal{
background-color: #7c4296;
color: #fff;
font-size: 14px;
text-transform: uppercase;
border-radius: 15px;
padding: 8px 24px;
transition: all .2s linear;
}
button.btn-acao-modal:hover{
background-color: #713a8a;
}
.top-form-empresa .inputs-radio{
display: flex;
align-items: center;
gap: 10px;
}
.top-form-empresa .inputs-radio label{
border-radius:20px;
background-color: #f5f5ff;
border:1px solid #ccc;
color:#555;
font-size: 12px;
text-transform: uppercase;
transition: all .2s linear;
cursor: pointer;
padding: 4px 10px;
}
.top-form-empresa .inputs-radio input:checked + label{
background-color: #d5ede0;
border-color:#33ae67;
color:#33ae67;
}
.select2.select2-container{
width:100% !important;
}
.select2-search.select2-search--dropdown {
display: block;
width: 100%;
}
.input-brisk label{
font-size: 14px;
font-weight: 500;
color: #555;
padding: 0 12px 3px;
display: block;
width: 100%;
}
.input-brisk input:read-only{
color: #555;
pointer-events: none;
}
.input-brisk .select2-search.select2-search--dropdown input.select2-search__field{
background-color: #fff;
border-radius: 10px;
height: 38px;
margin: 0 0 5px;
color: #555;
border: 1px solid #ccc;
font-size: 14px;
padding: 5px 10px;
}
#contratacao-list .select2-search.select2-search--dropdown input.select2-search__field, #meses-list .select2-search.select2-search--dropdown input.select2-search__field, #estados-list .select2-search.select2-search--dropdown input.select2-search__field, .nivel-wrapper .select2-search.select2-search--dropdown input.select2-search__field, #form-contrato .input-brisk .select2-search.select2-search--dropdown input.select2-search__field, #form-movimentacao .input-brisk .select2-search.select2-search--dropdown input.select2-search__field, #form-planilha .input-brisk .select2-search.select2-search--dropdown input.select2-search__field{
display: none !important;
}
.select2-hidden-accessible{
display: none;
}
.select2-selection__rendered{
width: 100%;
line-height: 150%;
transition: box-shadow .15s ease,border-color .15s ease;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-clip: padding-box;
display: flex;
align-items: center;
flex-wrap:wrap;
padding:5px 15px;
font-size:14px;
border-radius: 50px;
background-color: #f5f5ff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(91,91,95,0.6)'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E");
background-repeat:no-repeat;
background-size:20px;
background-position:center right 12px;
cursor:pointer;
height:46px;
}
section#form .card-form .input-contato .input .select2-selection__rendered{
border:0;
height:auto;
color: #000;
font-size: 14px;
padding:5px;
font-weight:normal;
background-size:28px;
}
.select2-selection[aria-expanded="true"] .select2-selection__rendered{
border-color:var(--primaria);
}
.select2-selection__rendered li{
height: 100%;
display: flex;
align-items: center;
}
.select2-selection__rendered li.select2-selection__choice{
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
background-color: var(--primaria);
color: #fff;
padding: 0 10px 3px 6px;
border-radius: 20px;
height: 22px;
line-height: 1;
font-size: 13px;
}
.select2-selection__rendered li.select2-selection__choice .select2-selection__choice__remove{
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
line-height: 1;
width: 14px;
height: 14px;
padding-bottom: 1px;
cursor: pointer;
}
.select2 + .select2-container{
width:100%;
z-index:99;
transform: translatey(7px);
}
.select2-dropdown{
width: 100% !important;
display: flex;
border: 0;
border-radius: .5rem;
background-color: #f5f5ff;
overflow: hidden;
box-shadow: 0 0 15px rgba(13, 13, 13, 0.1);
padding: 10px 10px;
flex-wrap: wrap;
}
.select2-dropdown .select2-results{
overflow: auto;
max-height: 240px;
}
.select2-dropdown .select2-results, .select2-dropdown .select2-results ul{
width:100%;
}
.select2-dropdown .select2-results ul li{
padding: 10px 15px;
font-size: 13px;
cursor: pointer;
font-weight: 400;
border-radius: 0.5rem;
background-color: transparent;
margin-bottom: 3px;
}
.select2-dropdown .select2-results ul li.select2-results__option.select2-results__option--highlighted{
background-color: var(--primaria);
color:#fff;
font-weight:500
}
.select2-dropdown .select2-results ul li.select2-results__option[aria-selected="true"]{
background-color: var(--primaria);
color:#fff;
opacity:0.4;
pointer-events:none;
}
.select2-selection__placeholder{
color: #000;
opacity: 0.4;
}
table tr th{
font-weight: 600;
}
input[type="radio"]:checked + .label-filter.label-pendente{
background-color: #7c4297;
color:#FFF;
}
input[type="radio"]:checked + .label-filter.label-analise{
background-color: #f48915;
color:#FFF;
}
input[type="radio"]:checked + .label-filter.label-aprovada{
background-color: #33af66;
color:#FFF;
}
input[type="radio"]:checked + .label-filter.label-reprovada{
background-color: #dc2430;
color:#FFF;
}
button.btn-action-table.btn-analise{
background-color: #d5eee2;
color: #2bad63;
border-color: #2bad63;
}
button.btn-action-table.btn-analise:hover{
background-color: #2bad63;
color:#fff;
}
button.btn-action-table.btn-download{
background-color: #e6daea;
color: #7c4297;
border-color: #7c4297;
}
button.btn-action-table.btn-download:hover{
background-color: #7c4297;
color:#fff;
}

@media(max-width:1600px){
aside{
width:260px !important;
}
aside + main{
width:calc(100% - 260px) !important;
}
button#btnAddMenu{
padding: 10px 20px;
font-size: 12px;
}
table{
min-width:1900px;
}
table.operadoras{
min-width: auto;
width:100%;
}







}