.wrapperUser {
    border: 1px solid #000;
    border-radius: 8px;
    width: fit-content;
    padding: .5em;
    padding-right: 1.5em;
    background-color: #efefef;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 1em;
    left:1em;
    right: 1em;
    z-index: 402;
    max-height: 40vh;
    overflow-y: scroll;
}

.wrapperUser > div{
    display: flex;
    flex-direction: column;
    gap: .2em;

}
.wrapperUser > div >a{
    background-color: #e1e1e1;

    width: 100%;
    padding: .3em .6em;
    border-radius: .3em;
    color: black;
}

.wrapperUser > div > a:hover{
    background-color: #c8c8c8;
}

.close-btn, .show-btn {
    font-size: 2.5em;
    background: none;
    border: none;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    right: 0px;
    top:0px;
    color: red;
    line-height: .8;
}

.show-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #28a745;
    color: white;
    font-size: 1.8em;
    border: none;
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 402;
    width: 2em;
    height: 2em;
}

.wrapperUser.closed {
    display: none;
}

.wrapperUser.open {
    display: block;
}

.active{
    background-color: rgb(29 187 171 / 36%) !important;
}