.caixa {
    height: 90%;
    width: 100%;
    position: relative;
    color: black;

    overflow-y: scroll;

}

.caixa::-webkit-scrollbar{

    display: none;
}

#container {

    display: flex;
    flex-direction: row;

    height: 100%;
    width: 100%;

}




.visor {
    height: 100%;
    width: 60%;
}

.sair {
    position: absolute;
    bottom: 0;
    right: 0;

    border-radius: 20px;
    background-color: aqua;

    a {
        color: white;
        text-decoration: none;
        padding: 10px;

    }
}


div#produto_dados {

    display: flex;
    flex-direction: row;
    

    section:nth-child(1) {
        width: 50%;

    }

    section:nth-child(2) {

        width: 50%;
    }

}

form {
    display: flex;
    flex-direction: column;
    position: relative;



    .reset-btn {

        position: absolute;
        bottom: 0;
        right: 0;

    }

    label {
        color: black;
    }
}





/*  Imagens */
#mainImageConatiner {
    margin: auto;

    position: relative;

    width: 50%;
    background-color: aqua;


    #mainImage {
        position: relative;


        height: 100%;
        width: 100%;

    }


}



#small-img-group {

    display: flex;
    flex-direction: row;

    margin: auto;
    width: 50%;

    background-color: aqua;

    .small-img {
        width: 25%;
        position: relative;

        img {


            width: 100%;
        }
    }

    .small-img:nth-child(1) {

        background-color: red;


    }

    .small-img:nth-child(2) {

        background-color: black;


    }


    .small-img:nth-child(3) {

        background-color: green;


    }


    .small-img:nth-child(4) {

        background-color: aqua;


    }



}














section#earnings {

    height: 100%;
    width: 20%;
    background-color: coral;


}


.logout {
    position: absolute;
    bottom: 10px;
    right: 10px;


    background-color: black;

    a {
        color: white;
        text-decoration: none;
        padding: 5px;
    }
}