/* Isso é para honrar e glorificar a Deus */
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    text-decoration: none;
}
body{
    overflow-x: hidden;
    background-color: #f4f4fe;
}
:root {
    --roxo: #7f61ff;
    --gray: #8983a9;
    --dark-blue: #312452;
    --green: #3bd398;
    --red: #ff5e7d;
    --yellow: #ffc966;
    --blue: #559de7;
    
}

/* main */
.container{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-width: 100vw;
    background-color: #f4f4fe;
    display: flex;
    flex-direction: row;
}
.sidebar{
    width: 20%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
}
.sidebar .iten:first-child{
    margin-top: 15px;
}
.sidebar .iten{
    display: flex;
    flex-direction: row;
    height: 35px;
    width: 180px;
    align-items: center;
    font-size: 14px;
    margin: 7px;
    border-radius: 5px;
    color: #928db6;
    cursor: pointer;
}
.sidebar .iten span{
    color: #b6ade6;
    margin-left: 5px;
    margin-right: 10px;
}
.sidebar .active{
    font-weight: 700;
    color: var(--roxo);
    background-color: #e1e2f6;
}
.sidebar .iten:hover{
    opacity: 90%;
}
.main{
    height: 100%;
    width: 80%;
    margin-left: 20%;
    display: flex;
    flex-direction: column;
}
.painel{
    width: 97%;
    height: auto;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    align-items: center;
    /* justify-content: space-around; */
    flex-wrap: wrap;
}

/* grid layout */
.row{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Botões */
.btn{
    background-color: var(--roxo);
    margin-top: 15px;
    color: white;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
}
.nova-lista{
    width: 95px;
    height: 30px;
    padding-left: 15px;
    cursor: pointer;
}
.show-results{
    width: 130px;
    height: 30px;
    justify-content: space-around;
}

/* cards */
.card{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}
.geral{
    width: 280px;
    height: 50vh;
    align-items: center;
    margin-bottom: 30px;
}
.geral p:first-child{
    margin-top: 10%;
}
.geral div{
    font-size: 12px;
    margin-top: 2px;
    color: var(--gray);
}
.geral canvas{
    margin-top: 10%;
}
.geral .show-results{
    margin-top: auto;
    margin-bottom: 10%;
}
.large{
    width: 100%;
}
.large .row{
    justify-content: space-around;
}
.large .column-center{
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
}
.large .column p:first-child{
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 5px;
}
.large .column p:last-child{
    color: var(--dark-blue);
}
.column-center span{
    margin-bottom: 3%;
    margin-left: 100px;
    color: var(--dark-blue);
    width: 390px;   
    /* background-color: blue; */
}
.column-center span p:first-child{
    border-radius: 10px;
    width: 50px;
    text-align: center;
    margin-right: 15px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.column-center span p:last-child{
    margin-left: auto;
    color: var(--gray);
    font-size: 14px;
}

/* #ids */
#icone{
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: white;
    margin-right: 5px;
    font-size: 12px;
}
#dados{
    height: 25px;
    width: 80%;
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
}
#dados p:first-child{
    border-radius: 10px;
    width: 50px;
    text-align: center;
    margin-right: 15px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
#dados p:last-child{
    margin-left: auto;
    color: var(--gray);
    font-size: 14px;
}

/* Modal */
.modal{
    display: none;
    background-color: rgb(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 2;
    align-items: center;
    justify-content: center;
}
.modal .card-modal{
    width: 70vw;
    height: 90vh;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}
.modal .card-modal span:first-child{
    margin-left: auto;
    margin-right: 15px;
    margin-top: 15px;
    opacity: 75%;
    font-size: 28px;
    cursor: pointer;
}
.modal .card-modal .row{
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.modal .card-modal .row .lable{
    display: flex;
    flex-direction: row; 
    align-items: center;
    width: 180px;
    height: 35px;
    color: var(--blue);
    font-size: 14px;
    justify-content: center;
    border-radius: 10px;
    margin: 7px;
    cursor: pointer;
}
.modal .card-modal .row .active{
    background-color: #f0f2fe;
}
.modal .card-modal .row .lable span{
    font-size: 22px; 
    margin:0; 
    color: var(--blue);
    margin-right: 5px;
}
.modal .card-modal .painel{
    height: 65%;
    border: 3px dashed var(--blue);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: initial;
}
.modal .card-modal .painel span{
    margin: 0;
    margin-top: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 2px solid var(--blue);
    color: var(--blue);
}
.modal .card-modal .painel #title{
    margin-top: 25px;
    font-size: 24px;
    color: var(--gray);
}
.modal .card-modal .painel #description{
    margin-top: 15px;
    font-size: 12px;
    opacity: 95%;
    color: var(--gray);
}
.modal .card-modal .painel button{
    margin-top: 50px;
    width: 240px;
    height: 45px;
    background-color: #0397f9;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}


.loading-container {
    height: 100vh;
    width: 100vw;
    background-color: rgb(231, 212, 240);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.spinner {
    height: 14rem;
    width: 14rem;
    border: 20px solid rgb(133, 106, 214);
    border-left: 20px solid rgb(96, 47, 153);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin infinite 1.5s linear;
}

.spinner-text {
    position: absolute;
    font-size: 14px;
    color: rgb(54, 54, 54);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: sans-serif;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}