/* PRIMEIRA DIV DEPOIS DO MENU*/
div#container {

    display: flex;
    flex-direction: row;

    height: 100%;
    width: 100%;

}

@media (max-width: 476px){

    #emCima{
        height: 70px;
    }
    div#container {

        display: flex;
        flex-direction: column;
    }

    section#menu{
        display: none;
    }



}



.visor {
    height: 100%;
    width: 60%;
    overflow-y: scroll;
}

@media (max-width: 476px){

    .visor {
        width: 100%;
    }

}




#caixa {
    width: 100%;
    height: 90%;
}

@media (max-width: 476px){

   
    
}


section#menu {

    position: relative;
    height: 100%;
    width: 20%;
    background-color: coral;

    outline: 0.5px solid coral;

    .info {
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        outline: 0.5px solid coral;

        & p {
            font-size: 25px;
            color: black;
            /* Cor de texto para o título do menu (preto) */
        }
    }

    .form-group {

        height: 10%;
        width: 100%;

        position: relative;

        .searchInput {

            height: 28px;
            width: 80%;

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

        }
    }


    .menu-list {

        height: 80%;
        width: 100%;

        ul>li {
            list-style-type: none;
        }

        p {
            cursor: pointer;
        }

        p>span {
            color: #fafafa;
            text-decoration: none;

            height: 30px;
            line-height: 30px;

            font-size: 16px !important;

        }
    }




    .id-bloco {

        position: absolute;
        bottom: 0;

        p{
            color: white;
        }

        height: 5%;
        width: 100%;

        background-color: black;
    }

}


section.result-group {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-around;

}

div.result {

    display: inline-block;
    width: 150px;
    height: 150px;

    position: relative;

    border-radius: 5px;
    outline: 1px solid #66AAEA;
    margin: 10px;
    background-color: #ECECEC;

    div {
        color: black;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

    }

}

section#earnings {

    height: 100%;
    width: 20%;
    background-color: coral;






    .earn-box {


        background-color: white;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        position: relative;
        margin: 10px auto;

        height: 10%;
        width: 80%;

        padding: 20px;


        border-radius: 5px;
        outline: 1px solid #66AAEA;


        div {
    
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

        }

    }

}


@media (max-width: 476px){

    section#earnings {

        height: 40%;
        width: 100%;

        position: relative;

        p {
            margin-top: 17px;
            margin-bottom: 1rem;
        }
    }
}


.logout {
    position: absolute;
    bottom: 10px;
    right: 10px;


    background-color: black;

    a {
        color: white;
        text-decoration: none;
        padding: 5px;
    }
}