aside {
    font-family: Bitter;
    background-color: #FFFFFF;
    padding-left: 1em;
    padding-right: 1em;
    border-left: solid 3px var(--cream);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 22.5em;
    z-index: 500;

    display: flex;
    /* esta porrita quebra o conteúdo do aside, manda a 
    imagem lá pra cima.
    justify-content: center;
    */
    flex-direction: column;

    overflow: scroll;
    overflow-x: hidden;

    
    outline: solid 2px #FFFFFF;
}

#asideexitbutton {
    width: 100%;
    height: 2em;
    background-color: #cacaca;
    border-radius: 10px;
    border: 1px solid #d4d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1em auto;
    padding: 1.5em;

    transition: .2s;
}

#asideexitbutton:hover {
    background-color: #a9a9a9;

    transition: .2s;
}

#aside-img{
    float: left;
    margin-bottom: .6em;
    padding: 0;
    width: 100%;
    
}
#aside-img img {
    border: 1px solid var(--cream);
    border-radius: 4px;
    width: 100%;
    position: relative;
}

#aside-remanescent-img-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.aside-remanescent-img img {
    height:100px;
    width: 150px;
    object-fit: cover;
    border: 1px solid var(--cream);
    border-radius: 4px;
}

#asideitemname {
    font-weight: 900;
    font-size: 2.5em;
}

aside h3 {
    font-size: 1.5em;
    text-decoration: underline;
    margin-top: 1em;
}

.separador{
    border: 1px  solid var(--cream);
}

.atributo {
    margin-top: .1em;
}
/*
@media (max-width: 900px){
    #aside{
        width: 90%;
    }
}
*/
#asideadded {
    margin: 1em auto;
}

#openonadm {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}