@import url('https://fonts.googleapis.com/css2?family=Montserrat: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{
    --color-primary: #0a78de;
    --color-emphasis: #fff;
    --color-bg: #fff;
    --color-opacity: #0a78de1f;
    --color-font: #67738e;
    --color-border: #e3e8ee;
    --color-shadow: #d5d5d5;
}
html{
    overflow-x: hidden;
}
body{
    background: var(--color-primary);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
body *{
    font-family: Montserrat;
}

.velocimetro{
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
}
.velocimetro:after{
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    position: absolute;
    bottom: -10px;
}
.velocimetro > div{
    width: 70%;
    position: absolute;
    bottom: 0;
    height: 4px;
    background: linear-gradient(to right,var(--color-primary) 50%,#fff 50%);
}

input:disabled,
select:disabled{
    opacity: .7;
}

input[name="letra"]{
    text-transform: uppercase;
}

input[type=range]{
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background-color: #3071a9;
    outline: none;
    padding: 0 !important;
}
input[type=range]::-webkit-slider-thumb{
    -webkit-appearance: none;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
    background: var(--color-primary);
}
input[type=range]::-ms-range-thumb{
    -webkit-appearance: none;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
    background: var(--color-primary);
}
input[type=range]::-moz-range-thumb{
    -webkit-appearance: none;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
    background: var(--color-primary);
}
.range-info{
    
}
.range-info span{
    margin: 0 !important;
    line-height: 13px;
}
.range-info small{
    line-height: 15px;
}

.select-theme{
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 5px 10px;
    color: #ffffff;
    transition: .3s;
}
.select-theme span{
    white-space: nowrap;
    font-size: 12px;
    width: 0;
    overflow: hidden;
    transition: .3s;
}
.select-theme svg{
    min-width: 16px;
    margin-left: 10px;
}
.select-theme:hover{
    background: var(--color-opacity);
}
.select-theme:hover span{
    width: 80px;
}

#btn-suporte{
    background: var(--color-primary);
    color: #fff;
    position: fixed;
    bottom: 10px;
    right: 20px;
    border: 0;
    padding: 14px;
    border-radius: 50%;
    z-index: 2;
}
#btn-suporte svg{
    width: 20px;
    height: 20px;
}

.bg-warning.text-warning.rounded,
.bg-danger.text-danger.rounded,
.bg-success.text-success.rounded{
    font-weight: 600;
    font-size: 14px;
}
/****************** Geral ******************/
.truncate-1{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
input[type="date"]::-webkit-calendar-picker-indicator{
    /*filter: invert(1);*/
}
.cursor-pointer{
    cursor: pointer;
}
.flex-1{
    flex: 1;
}

.modal-1{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.modal-1 > div:first-child{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
}
.modal-1 h4{
    text-align: center;
    margin-bottom: 20px;
}
.modal-1 > div:last-child{
    position: relative;
    background: var(--color-bg);
    color: var(--color-font);
    border-radius: 10px;
    z-index: 999;
    padding: 20px;
    width: 100%;
    max-width: 590px;
    margin: 20px;
    box-shadow: 0 0 16px -4px var(--color-shadow);
}
.modal-1.modal-produto > div:last-child{
    max-width: 990px;
}
.modal-1 > div:last-child > button{
    background: 0;
    border: 0;
    color: var(--color-font);
    position: absolute;
    top: 5px;
    right: 5px;
}
.modal-1 > div:last-child > div{
    max-height: calc(100vh - 60px);
    /*overflow-y: auto;*/
}
.modal-1 input,
.modal-1 select{
    display: block;
    width: 100%;
    background: 0;
    color: var(--color-font);
    border: 1px solid var(--color-border);
    outline: none !important;
    border-radius: 7px;
    padding: 8px 15px;
    margin-top: 3px;
}
.modal-1 input::placeholder,
.modal-1 select::placeholder{
    color: var(--color-font);
}
.modal-1 select option{
    color: var(--color-bg);
    color: var(--color-font);
}

.modal-1.avaliacao .img{
    height: auto;
}
.modal-1.avaliacao img{
    width: 100%;
}

[class*="status-"]{
    display: flex;
    align-items: center;
    font-weight: 600;
}
[class*="status-"]::before{
    content: '';
    border-radius: 10px;
    width: 7px;
    min-width: 7px;
    height: 7px;
    margin-right: 10px;
    display: block;
}
.card-1.receber h3{
    color: #00dd00 !important;
}
.card-1.receber h6 span{
    background: #00dd001f !important;
}
.card-1.receber h6 span svg{
    fill: #00dd00 !important;
}

.card-1.pagar h3{
    color: #FF0000 !important;
}
.card-1.pagar h6 span{
    background: #FF00001f !important;
}
.card-1.pagar h6 span svg{
    fill: #FF0000 !important;
}

.card-1.warning h3{
    color: #ffc107 !important;
}
.card-1.warning h6 span{
    background: #ffc1071f !important;
}
.card-1.warning h6 span svg{
    fill: #ffc107 !important;
}

.status-1{
    color: #00bfff;
}
.status-1::before{
    background: #00bfff;
}
.status-0{
    color: #ffa500;
}
.status-0::before{
    background: #ffa500;
}
.status-3{
    color: #0069ff;
}
.status-3::before{
    background: #0069ff;
}
.status-4{
    color: #960083;
}
.status-4::before{
    background: #960083;
}
.status-5{
    color: #808080;
}
.status-5::before{
    background: #808080;
}
.status-1{
    color: #00a500;
}
.status-1::before{
    background: #00a500;
}
.status-7{
    color: #FF0000;
}
.status-7::before{
    background: #FF0000;
}

.comentario_interno{
    background: transparent;
    border: 0;
    outline: none !important;
}
.comentario_interno .comentario{
    position: relative;
    display: none;
    justify-content: center;

}
.comentario_interno:hover .comentario{
    display: flex;
}
.comentario_interno .comentario .texto{
    position: absolute;
    top: 100%;
    background: #fff;
    width: 300px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,.3);
    border-radius: 10px;
    padding: 15px;
    z-index: 5;
}
.comentario_interno .comentario textarea{
    width: 100%;
    border: 0;
    outline: none;
}
.comentario_interno svg{
    width: 20px;
    height: 20px;
}

a{
    text-decoration: none;
    color: var(--color-font);
}
.btn-1{
    display: inline-block;
    text-decoration: none;
    border: 0;
    background: var(--color-primary);
    color: var(--color-emphasis) !important;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}
.btn-2{
    display: inline-block;
    text-decoration: none;
    border: 0;
    background: transparent;
    color: var(--color-primary) !important;
    outline: 1px solid var(--color-primary);
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 16px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}
.btn-2:hover{
    background: var(--color-primary) !important;
    color: var(--color-emphasis) !important;
}
.btn-2[disabled]{
    color: #67738e !important;
    outline: 1px solid #67738e;
    background: #67738e21 !important;
}
.voltar{
    color: var(--color-font);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}
.voltar svg{
    stroke: var(--color-font);
    width: 10px;
    height: 10px;
    margin-right: 4px;
    margin-top: 1px;
}
[id*="pesquisa-"]{
    position: relative;
}
[id*="pesquisa-"] ul{
    position: absolute;
    top: calc(100% + 5px);
    left: 12px;
    right: 12px;
    background: var(--color-bg);
    padding: 0;
    overflow: hidden;
    z-index: 9;
}
[id*="pesquisa-"] ul li{
    list-style: none;
    padding: 5px 15px;
    cursor: pointer;
    border-right: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}
[id*="pesquisa-"] ul li:first-child{
    border-top: 1px solid var(--color-border);
    border-radius: 7px 7px 0 0;
}
[id*="pesquisa-"] ul li:last-child{
    border-bottom: 1px solid var(--color-border);
    border-radius: 0 0 7px 7px;
}
[id*="pesquisa-"] ul li:hover{
    background: var(--color-shadow);
}

.pointer{
    cursor: pointer;
}

.dica{
    border: 0;
    background: 0;
    position: absolute;
    left: 100%;
    top: calc(50% - 13.5px);
}
.dica svg{
    color: #636363;
    width: 25px;
    height: 25px;
}
.dica div{
    display: none;
    position: absolute;
    left: 100%;
    bottom: 0;
    color: #bababa;
    background: #2f2f2f;
    border: 1px solid #4a4a4a;
    border-radius: 7px;
    padding: 10px;
    width: 300px;
}
.dica:hover div{
    display: block;
}
@media(max-width: 900px){
    .dica div{
        width: 200px;
    }
}
@media(max-width: 768px){
    .select-theme{
        background: 0 !important;
        padding: 0;
    }
    .select-theme span{
        display: none;
    }
    
    .exemplo{
        margin: 20px 0;
    }
    
    .dica{
        padding: 0;
    }
    .dica div{
        right: 100%;
        left: auto;
        width: 300px;
        max-width: calc(100vw - 100px);
    }
}
/****************** Aside ******************/
aside{
    background: var(--color-bg);
    border-right: 1px solid var(--color-border);
    width: 200px;
    max-height: 100vh;
    min-height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 999;
}
aside.empresas{
    left: auto;
    right: 0;
}
aside > div{
    background: var(--color-bg);
    padding: 20px 10px 0 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
aside > div img{
    width: 90%;
}
aside > div img.icon{
    display: none;
    width: 100% !important;
}
aside.menu-desk-close > div img.icon{
    display: block;
}
aside.menu-desk-close > div img:not(.icon){
    display: none;
}
aside > div svg{
    display: none;
    fill: var(--color-font);
    min-width: 20px;
    cursor: pointer;
}
aside > div svg:first-child{
    position: absolute;
    right: 0;
}
aside > a{
    margin: 3px;
}
aside ul{
    padding: 20px 5px;
    flex: 1;
}
aside ul li{
    list-style-type: none;
    margin-bottom: 3px;
    transition: .3s;
}
aside a{
    display: flex;
    align-items: center;
    color: var(--color-font);
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
}
aside label{
    display: flex;
    align-items: center;
    color: var(--color-font);
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
    align-items: center;
    /*gap: 10px;*/
    cursor: pointer;
}
aside label.selected{
    background: var(--color-primary);
    color: var(--color-emphasis);
}
aside a:hover,
aside a.selected{
    background: var(--color-primary);
    color: var(--color-emphasis);
}
aside a svg{
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 10px;
    fill: var(--color-font);
}
aside a:hover svg,
aside a.selected svg{
    fill: var(--color-emphasis);
}
aside .div{
    background: #787878;
    width: 100%;
    height: 1px;
    margin: 29px 0;
}
aside{
    transition: .3s;
    overflow-x: hidden;
    white-space: nowrap;
}
aside:not(.open){
    left: -200px;
}
aside.empresas:not(.open){
    left: auto;
    right: -200px;
}
aside:not(.open) a svg{
    margin-right: 16px;
}
aside:not(.open) > div img{
    display: none !important;
}
aside:not(.open) > div > svg:last-child{
    display: inline-block;
}
aside.open > div svg{
    display: inline-block;
}
aside.open > div svg:last-child{
    display: none;
}
.close-aside{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 998;
}
.close-aside.open{
    display: block;
}
/****************** Main ******************/
main{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 0;
    transition: .3s;
}
footer{
    background: var(--color-bg);
    color: var(--color-font);
    text-align: center;
    padding: 10px;
}
footer > *{
    opacity: .8;
}
.texto-atualizacao {
    font-size: 10px;
    color: #fff; 
    font-style: italic; 
    display: block;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}

.bg-1{
    background: var(--color-bg);
    padding: 10px;
    flex: 1;
    border-radius: 20px 20px 0 0;
    padding-top: 30px;
    color: var(--color-primary);
}
.bg-1 #formulario{
    color: var(--color-font);
}
main h2 .btn-1,header .btn-1{
    white-space: nowrap;
    font-size: 12px;
}
header{
    padding: 10px 20px;
    position: sticky;
    top: 0;
    background: var(--color-primary);
    color: #fff;
    z-index: 99;
}
header .saldo{
    font-size: 20px;
    white-space: nowrap;
}
header .saldo small{
    display: block;
    font-size: 12px;
}
header .img{
    padding: 0;
    background: #bec8cf;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid var(--color-primary);
}
header .img > div{
    width: 100%;
    height: 100%;
    border: 2px solid #e7f0f8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
header .img img{
    width: 100%;
}
header .img svg{
    width: 20px;
    height: 20px;
}
header form{
    display: flex;
    background: #f1f6f9;
    box-shadow: 0 0 16px -4px var(--color-shadow);
    border-radius: 100px;
    margin: 0;
    overflow: hidden;
}
header button,main header input{
    background: 0;
    border: 0;
    outline: none !important;
}
header > button:first-child{
    margin-right: 20px;
}
header button svg{
    fill: #fff;
}
header input{
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
    padding-left: 0;
}

main .list-dash{
    display: flex;
    flex-wrap: wrap;
}
main .list-dash .card{
    width: 100%;
    max-width: 200px;
    margin: 10px;
    padding: 25px;
}
main .list-dash .card .status{
    font-size: 14px;
    line-height: 14px;
}
/****************** Formulario ******************/
.formulario form label > span{
    color: var(--color-font);
    margin-bottom: 5px;
    display: block;
}
.formulario form input,
.formulario form textarea,
.formulario form select,
tr input:not([type="checkbox"]){
    width: 100%;
    outline: none !important;
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 5px 10px;
    border-radius: 7px;
    color: var(--color-font);
}
tr input:not([type="checkbox"]){
    background: #fff !important;
    padding: 14px !important;
    max-width: 100px !important;
    color: #67738e !important;
}
.formulario form select{
    color: var(--color-font);
    padding-bottom: 6px;
    min-height: 35.6px;
}
.formulario form select option{
    color: #000;
}
.formulario form label{
    position: relative;
}
.formulario form .prefixo-money{
    position: absolute;
    left: 12px;
    bottom: 0;
    margin: 0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--color-border);
    font-size: 12px;
}
.formulario form .money{
    padding-left: 46px;
}
.formulario form .sufixo-porcent{
    position: absolute;
    right: 12px;
    bottom: 0;
    margin: 0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--color-border);
    font-size: 12px;
}
.formulario form .porcent{
    padding-right: 46px;
}
.formulario form .sufixo-site{
    position: absolute;
    left: 12px;
    bottom: 0;
    margin: 0;
    width: 56px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--color-border);
    font-size: 12px;
}
.formulario form .site{
    padding-left: 66px;
}

table{
    width: 100%;
}
.table{
    background: var(--color-opacity);
    padding: 20px;
    border-radius: 10px;
    /*border: 1px solid var(--color-border);*/
    overflow: auto;
}
.table *{
    color: var(--color-font);
}
table th{
    padding: 10px 15px;
    border-bottom: 1px solid var(--color-bg);
    font-weight: 600;
}
table td{
    padding: 10px 15px;
}
table td .img{
    padding: 0;
    background: #e1e7eb;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 70px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
table td .img.img-small{
    width: 30px;
    min-width: 30px;
    height: 30px;
}
table td .img.img-small svg{
    width: 15px;
    height: 15px;
}
table td .img svg{
    fill: var(--color-font);
    width: 30px;
    height: 30px;
}
table td .img img{
    width: 100%;
}
table td span{
    display: inline-block;
}
table td button,
table td a,
table td label{
    padding: 6px;
    border: 0;
    background: 0;
    color: var(--color-font);
    display: inline-block;
    cursor: pointer;
}
table td label input[name="file"]{
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}
table td button svg,
table td a svg,
table td label svg{
    width: 20px;
    height: 20px;
}
table td .editar svg{
    fill: #00bdea;
}
table td .download svg{
    fill: #33b062;
}
table td .editar{
    position: relative;
}
table td .editar small{
    position: absolute;
    top: -2px;
    right: -2px;
    width: 15px;
    height: 15px;
    border-radius: 30px;
    background: var(--color-primary);
    color: var(--color-emphasis);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}
table td .excluir svg{
    fill: #f30707;
}
table tr{
    border-bottom: 1px solid var(--color-bg);
}
table tr.nova{
    background: #8ce19663;
}
table tr:last-child{
    border-bottom: 0;
}
th .todos{
    margin-bottom: 4px;
}

table.modelo td,
table.modelo th{
    border: .5px solid var(--color-font);
}
/****************** Músicas ******************/
.page-enviar-musica h5{
    max-width: 246px;
}
.dropdown{
    padding: 30px;
    border: 2px dashed #acd0f7;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 55px;
}
.dropdown.selected{
    background: #acd0f747;
}
.dropdown small{
    display: block;
    color: var(--color-font);
    line-height: 16px;
    margin-top: 15px;
}
.dropdown input{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}
.modal-new-project{
    position: fixed;
    top: 0;
    left: 200px;
    width: calc(100vw - 200px);
    height: 100vh;
    padding: 20px;
}
.modal-new-project > div{
    width: 100%;
    max-width: 400px;
    background: #0a1f34ed;
    padding: 20px;
    color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 70px;
}
.modal-new-project input,
.modal-new-project textarea{
    outline: none !important;
    background: transparent;
    border: 1px solid #55657e;
    border-radius: 5px;
    width: 100%;
    color: #eee;
    padding: 10px 15px;
}
.modal-new-project ::placeholder{
    color: var(--color-font);
}
.modal-new-project button{
    border: 0;
    border-radius: 7px;
    padding: 7px 15px;
    background: #51ff98;
    color: #0a1f34;
}
.modal-new-project button.btn-cancelar{
    background: #a30000;
    color: #fff;
}
/****************** Switch ******************/
/* Estilo iOS */
.switch__container {
    width: 40px;
}

.switch {
    visibility: hidden;
    position: absolute;
    margin-left: -9999px;
}

.switch + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.switch--shadow + label {
    padding: 1px;
    width: 35px;
    height: 20px;
    background-color: #dddddd;
    border-radius: 15px;
}
.switch--shadow + label:before,
.switch--shadow + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
}
.switch--shadow + label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 15px;
    transition: background 0.4s;
}
.switch--shadow + label:after {
    width: 18px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}
.switch--shadow:checked + label:before {
    background-color: #8ce196;
}
.switch--shadow:checked + label:after {
    transform: translateX(15px);
}
/****************** Circulos ******************/
.circle-danger,.circle-gray,.circle-green{
    display: inline-block;
    
    width: 10px;
    min-width: 10px;
    height: 10px;
    border-radius: 10px;
}
.circle-danger{
    background: #ee3143;
}
.circle-gray{
    background: #68767e;
}
.circle-green{
    background: #008850;
}

.pesquisa input,
.pesquisa select{
    width: 100%;
    border-radius: 100px;
    outline: none;
    background: var(--color-bg);
    color: var(--color-font);
    border: 1px solid var(--color-border);
    padding: 8px 15px;
    min-height: 42px;
}
.pesquisa input::placeholder{
    color: var(--color-font);
}

@media(max-width: 767px){
    header > button,header .px-5{
        /*display: none !important;*/
    }
    main{
        padding: 0px;
    }
    .modal-new-project{
        left: 49px;
        width: auto;
        right: 10px;
    }
}

.vazio{
    text-align: center;
    color: var(--color-font);
    opacity: .7;
    padding-top: 30px;
}

.pagination{
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.pagination button{
    background: 0;
    border: 1px solid var(--color-border);
    color: var(--color-font);
    padding: 1px 10px;
}
.pagination button:disabled{
    background: var(--color-opacity);
}
.pagination button:first-child{
    border-radius: 50px 0 0 50px;
}
.pagination button:last-child{
    border-radius: 0 50px 50px 0;
}

.cards-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}
.cards-2 small{
    background: #fff;
    color: var(--color-primary);
    padding: 5px 10px;
    display: inline-block;
    border-radius: 100px;
    font-weight: 600;
    font-size: 11px;
    margin-bottom: 5px;
    text-align: center;
}
.cards-2 h2{
    color: #fff;
}
.cards-2 h3, .cards-2 h4{
    margin: 0;
}
.cards-2 h4{
    font-size: 17px;
}
.cards-2 .card-2{
    background: #fff;
    color: var(--color-primary);
    border-radius: 10px;
    padding: 10px;
    font-size: 85%;
    max-width: 200px;
}
.cards{
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px 0;
}
.cards .plano{
    width: 100%;
}
.cards .plano > div.selected{
    outline: 1px solid var(--color-primary);
}
.cards .plano h5{
    color: var(--color-primary);
    font-weight: 800;
}
.cards .plano h4 small{
    font-size: 14px;
}
.cards .plano ul{
    padding: 0;
}
.cards .plano li{
    list-style: none;
}
.cards .row-2{
    min-width: 185px;
    display: flex;
    flex-direction: column;
}
.cards .card-1{
    display: block;
    text-decoration: none !important;
    width: 100%;
    border-radius: 12px;
    padding: 20px;
    min-width: 250px;
    border-radius: 10px;
    background: var(--color-opacity);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards .card-1:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.cards .card-1 .venda{
    color: var(--color-primary);
}
.cards .card-1 .comissao{
    color: #ff8000;
}
.card-1 a{
    color: var(--color-primary);
}
.card-1 h6{
    color: var(--color-primary);
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}
.card-1 h6 span{
    display: flex;
    border-radius: 50px;
    margin-right: 10px;
}
.card-1 h6 small{
    opacity: .7;
    font-size: 12px;
}
.card-1 h6 span svg{
    fill: var(--color-primary);
    width: 30px;
    height: 30px;
}
.card-1 h3{
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 18px !important;
    font-weight: 700 !important;
}
.preview{
    background: #f1f6f9;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preview svg{
    fill: var(--color-font);
    width: 30px;
    height: 30px;
}
.preview img{
    width: 100%;
}

.grafico{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transform: rotate(90deg);
    margin: 0 auto 30px;
}
.grafico > div{
    width: 150px;
    height: 150px;
    background: var(--color-bg);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-90deg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 800;
}

.progress-1{
    background: #cfe0ea;
    border-radius: 20px;
    overflow: hidden;
}
.progress-1 > div{
    background: var(--color-primary);
    border-radius: 20px;
    text-align: center;
}
.progress-1 > div small{
    color: #fff;
    padding: 0 10px;
    white-space: nowrap;
}

.consultores,.situacoes{
    background: #596789db;
    color: #fff;
    right: 0;
    position: absolute;
    border-radius: 10px;
    z-index: 6;
    overflow: hidden;
}
.situacoes{
    background: #ffffffdb;
    top: calc(100% + 12px);
    left: 0;
    right: auto;
}
.consultores > div,.situacoes > div{
    max-height: 250px;
    overflow-y: auto;
}

.consultores > div::-webkit-scrollbar{
    width: 11px;
}
.consultores > div::-webkit-scrollbar-track{
    background: #6c7998;
}
.consultores > div::-webkit-scrollbar-thumb{
    background-color: #808eb1;
    border-radius: 20px;
    border: 3px solid #6c7998;
}

.situacoes > div::-webkit-scrollbar{
    width: 11px;
}
.situacoes > div::-webkit-scrollbar-track{
    background: #fff;
}
.situacoes > div::-webkit-scrollbar-thumb{
    background-color: #e9ebf1;
    border-radius: 20px;
    border: 3px solid #fff;
}

.consultores > div > div,.situacoes > div > div{
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 20px;
}
.consultores > div > div:hover,.situacoes > div > div:hover{
    cursor: pointer;
    background: #596789db;
}
.situacoes > div > div:hover{
    background: #e9ebf1db;
}
.consultores > div .img,.situacoes > div .img{
    margin-right: 10px;
}

.periodos{
    display: flex;
    margin: 10px 0 30px;
}
.periodos > div{
    outline: 1px solid var(--color-border);
    width: 100%;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
.periodos > div.selected{
    background: var(--color-primary);
    color: var(--color-emphasis);
}
.mensagens{
    margin-bottom: 152px;
}
.mensagens .mensagem{
    margin-bottom: 1rem;
}
.mensagens .mensagem > div{
    display: inline-block !important;
    width: auto !important;
}
.mensagens .mensagem.you{
    display: flex;
    justify-content: end;
}
.mensagens .mensagem.you > div{
    background: var(--color-primary);
    color: var(--color-emphasis);
}
.mensagens .mensagem.you small,
.mensagens .mensagem.you a{
    color: #fff;
}
.mensagens .mensagem a{
    text-decoration: underline;
}
.mensagens .mensagem b{
    margin-right: 20px;
}

input[type="checkbox"]{
    width: 15px !important;
    height: 15px !important;
    margin-top: 0.2em;
    vertical-align: top;
    background-color: #fff !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #0a78de !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    print-color-adjust: exact;
    border-radius: 0.25em;
}
input[type="checkbox"]:checked{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
    background-color: #0a78de !important;
    border-color: #0a78de !important;
}

.layout-proup{
    display: flex;
}
.layout-proup > label{
    margin-top: 5px;
    cursor: pointer;
}
.layout-proup > label:first-child{
    margin-right: 15px;
}
.layout-proup input{
    width: auto !important;
}
.layout-proup svg{
    display: block;
    width: 100%;
    max-width: 121px;
    margin-bottom: 5px;
}
.layout-proup svg.selected{
    outline: 2px solid var(--color-primary);
}
.layout-proup svg.selected .cls-2{
    fill: #adcdfe;
}

.color{
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 2px solid var(--color-font);
}
.color input{
    padding: 0 !important;
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    position: absolute;
}
.exemplo{
    border: 1px solid var(--color-border);
    border-radius: 7px;
    overflow: hidden;
    min-height: 400px;
}

#galeria{
    border: 1px solid var(--color-border);
    border-radius: 7px;
    padding: 10px;
}
#galeria .imgs{
    border: 1px solid var(--color-border);
    min-height: 192px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}
#galeria .imgs .img{
    background: var(--color-opacity);
    position: relative;
    margin: 10px;
    cursor: pointer;
}
#galeria .imgs .img.plus{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#galeria .imgs .img.plus svg{
    width: 30px;
    height: 30px;
}
#galeria .imgs .img > div > div{
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#galeria .imgs .img > div > div.selected{
    outline: 2px solid var(--color-primary);
    border: 1px solid #fff;
}
#galeria .imgs .img img{
    width: 100%;
}
#galeria .imgs .img button{
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color-bg);
    box-shadow: 0 0 6px 1px var(--color-shadow);
}
#galeria input[type="file"]{
    border: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    height: 0;
    width: 0;
}
#galeria .vazio{
    padding: 20px;
    height: 192px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

button.copy{
    background: 0;
    border: 0;
    outline: none !important;
    cursor: pointer;
    color: var(--color-font);
}

.planos{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}
.planos > div{
    margin: 20px;
    padding: 20px;
    box-shadow: 0 0 10px 2px var(--color-shadow);
    border-radius: 10px;
    min-width: calc(33.3333333% - 40px);
    text-align: center;
}
.planos h2{
    color: var(--color-primary);
    border: 0;
    font-size: 29px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 8px;
    text-align: center;
}
.planos h5{
    text-align: center;
}
.planos h5 small{
    color: #868686;
    font-size: 11px;
}
.planos ul{
    padding: 0;
}
.planos li{
    list-style: none;
    font-size: 13px;
}

.load{
    animation: load 1.5s infinite;
    animation-timing-function: linear;
    transform: rotate(0deg);
    width: 30px;
    height: 30px;
    fill: var(--color-primary);
}
@keyframes load{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/************** gráfico **************/
.line-charts-wds text{
    fill: var(--color-font);
    font-family: monospace !important;
}
.line-charts-wds line{
    stroke: var(--color-primary);
    stroke-linecap: round;
    stroke-miterlimit: 10;
}
#container-line-charts-wds-1 .line-charts-wds line{
    stroke: #00dd00;
}
#container-line-charts-wds-0 .line-charts-wds line{
    stroke: #FF0000 ;
}
.line-charts-wds-div{
    stroke: var(--color-border) !important;
    stroke-width: .9;
}
.line-charts-wds-mark{
    stroke: var(--color-border) !important;
}
.line-charts-wds circle{
    fill: var(--color-primary);
    stroke: var(--color-bg);
    stroke-width: 2px;
}
#container-line-charts-wds-1 .line-charts-wds circle{
    fill: #00dd00;
}
#container-line-charts-wds-0 .line-charts-wds circle{
    fill: #FF0000;
}
#line-charts-wds{
    position: relative;
}
#line-charts-wds .view{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.view-info{
    position: absolute;
    background: var(--color-bg);
    box-shadow: 0 0 5px 3px var(--color-shadow);
    padding: 10px;
    border-radius: 5px;
    transition: .3s;
}

@media(max-width: 768px){
    .cards .card-1{
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    .cards .card-1{
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    main h2 button{
        display: none;
    }
    main h2 .px-5{
        display: none;
    }
    main h2 .img{
        margin-left: 10px;
    }
    /*.table{
        background: 0;
        padding: 0;
        border-radius: 0;
        border: 0;
    }
    .table tr{
        background: var(--color-opacity);
        padding: 5px;
        border-radius: 10px;
        display: block;
        margin-top: 20px;
        border: 0;
        overflow-x: auto;
        width: 100%;
    }
    .table tr td{
        display: block;
    }
    .table tr td b{
        margin-bottom: 5px;
    }
    .table tr th{
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 0;
        border-top: 1px solid var(--color-bg);
    }
    .table tr th:first-child{
        border: 0;
    }
    .hide-phone{
        display: none !important;
    }*/
    .comentario_interno .comentario .texto{
        left: 0;
        width: calc(100vw - 168px);
    }
    .cards .card-1{
        overflow-x: auto;
    }
    .cards .row-2{
        width: 100%;
    }
}
@media(min-width: 768px){
    aside.menu-desk-close{
        overflow: visible;
        width: 49px;
    }
    aside.menu-desk-close > div{
        height: 75.08px;
        width: 48px;
        justify-content: start;
        align-items: center;
        overflow: hidden;
    }
    aside.menu-desk-close > div img{
        width: 98px;
    }
    aside.menu-desk-close ul{
        width: 49px;
    }
    aside.menu-desk-close ul li,
    aside.menu-desk-close > a{
        width: 39px;
        overflow: hidden;
        transition: .3s;
    }
    aside.menu-desk-close ul li:hover{
        width: 200px;
    }
    aside.menu-desk-close ul li a{
        white-space: nowrap;
    }
}

.contrato > div{
    width: 100% !important;
}
.contrato > div > div{
    margin: 0 !important;
    outline: none !important;
    width: 100% !important;
}
.nicEdit-button-undefined,
.contrato > div > div{
    background: #fff !important;
    border-radius: 0.25rem 0.25rem 0 0;
}
.nicEdit-button-undefined{
    border: 0 !important;
}
.contrato > div:not([unselectable="on"]){
    border-radius: 0 0 0.25rem 0.25rem;
}
.contrato > div:not([unselectable="on"]) > div{
    padding: 10px;
    min-height: 164px !important;
}
.nicEdit-pane{
    padding: 0 !important;
}
.contrato .nicEdit-panel > div:nth-child(12),
.contrato .nicEdit-panel > div:nth-child(13),
.contrato .nicEdit-panel > div:nth-child(14),
.contrato .nicEdit-panel > div:nth-child(15),
.contrato .nicEdit-panel > div:nth-child(16),
.contrato .nicEdit-panel > div:nth-child(17),
.contrato .nicEdit-panel > div:nth-child(18),
.contrato .nicEdit-panel > div:nth-child(19),
.contrato .nicEdit-panel > div:nth-child(20),
.contrato .nicEdit-panel > div:nth-child(21){
    display: none;
}

.code{
    color: var(--color-font) !important;
    background: var(--color-opacity);
    padding: 4px;
    border-radius: 4px;
    display: inline-block !important;
    margin: 4px 2px;
}
body.imprimir *,
label .contrato *{
    color: #000 !important;
}
#qr-code img{
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

@media(min-width: 768px){
    .table.rede thead{
        display: none;
    }
    .table.rede{
        background: 0;
        padding: 0;
        border-radius: 0;
        border: 0;
    }
    .table.rede #listagem{
        display: flex;
        flex-wrap: wrap;
    }
    .table.rede tr{
        background: var(--color-bg);
        padding: 5px;
        border-radius: 10px;
        display: block;
        margin: 20px 10px 0;
        width: calc(20% - 20px);
        border: 0;
        overflow-x: auto;
        border: 1px solid var(--color-border) !important;
    }
    .table.rede tr td{
        display: block;
    }
    .table.rede tr td b{
        margin-bottom: 5px;
    }
    .table.rede tr th{
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 0;
        border-top: 1px solid var(--color-border);
    }
    .table.rede tr th:first-child{
        border: 0;
    }
    .table.rede b.d-block.d-md-none{
        display: block !important;
    }
}
@media(max-width: 1400px){
    .table.rede tr{
        width: calc(25% - 20px);
    }
}
@media(max-width: 1100px){
    .table.rede tr{
        width: calc(33.333333% - 20px);
    }
}

.listagem-modo{
    display: flex;
    justify-content: end;
    align-items: center;
}
.listagem-modo span{
    cursor: pointer;
    margin-left: 10px;
}
.listagem-modo .selected svg{
    fill: var(--color-primary);
}
@media(max-width: 768px){
    .table.rede tr{
        width: 100% !important;
        margin: 20px 0 0 0;
    }
    .listagem-modo{
        display: none;
    }
}
body .table.rede tr.ocupado{
    border: 1px solid red !important;
}
body .table tr.ocupado{
    background: #ff000033 !important;
}
body .table tr.livre{
    background: #0fff0042 !important;
}
body .table tr.warning{
    background: #ffeb3b8f !important;
}
body .table tr.manutencao{
    background: #ffb30042 !important;
}

.logs tr a{
    padding: 0;
    font-weight: 700;
}

.qr-code-pix{
    max-width: 600px;
    margin: 0 auto;
}
.qr-code-pix img{
    width: 100%;
}
.qr-code-pix .copia{
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 0 7px 0 0;
}
.qr-code-pix .copia svg{
    cursor: pointer;
}
.qr-code-pix .copia svg path{
    fill: var(--color-primary) !important;
}
.qr-code-pix img{
    max-width: 200px;
    margin: 0 auto;
    display: block;
}
.qr-code-pix .copia{
    margin: 15px 0;
}
.qr-code-pix .copia input{
    width: 100%;
    padding: 10px;
    background: 0 !important;
    margin: 0 !important;
    border: 0;
    outline: none !important;
}
.qr-code-pix button.copy{
    background: 0;
    border: 0;
    outline: none !important;
    cursor: pointer;
}
.qr-code-pix button.copy svg{
    fill: var(--color-primary) !important;
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 5px !important;
}

.filtros{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    
}
.filtros select,
.filtros input{
    background: var(--color-bg);
    color: var(--color-font);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 10px 15px;
    outline: none !important;
}
.filtros select{
    padding: 12px 15px;
}
.filtros input{
    width: 100%;
    min-width: 0px;
}
#personalizado{
    color: var(--color-font);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
}

aside label input[type="checkbox"]{
    margin: 0;
    border: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
}
.legendas ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}
.legendas ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.legend-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}
.legend-text {
    font-size: 12px;
    color: #444;
    font-weight: 500;
}
.titulo-secao {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 20px 0;
}

.titulo-secao::before,
.titulo-secao::after {
    content: "";
    flex: 1;
    border-top: 2px solid var(--color-primary);
    margin: 0 10px;
}

.card-header {
    margin-bottom: 15px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card-cancelamentos .badge {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #ff4444;
    color: white;
}

.card-body {
    /*text-align: center;*/
}

.card-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 10px 0;
}

.text-muted {
    font-size: 12px;
    color: #ff5e5e !important;
}
.mini-texto {
    display: block;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #ff5e5e;
    color: white;
}
.card-icon svg {
    fill: var(--color-primary) !important;
}

#top table{
    background: var(--color-opacity);
    border-radius: 10px;
    overflow: hidden;
}
#top table tr{
    color: var(--color-font);
    border-color: var(--color-bg);
}
#top table h4{
    margin: 0;
}
#top table tr.primeiro{
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}
#top table .primeiro h4{
    font-size: 34px;
}
#top table td{
    padding: 10px;
    font-size:14px;
}