.painel {
    position: fixed;
    width: 350px;
    height: 100vh;
    background-color: var(--bs-white);
    z-index: 1101;
    right: -400px;
    top: 0px;
    /*box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;*/
    display: none;
    overflow-y: auto;
    box-shadow: 0 1px 9px -3px rgb(0 0 0 / 25%);
}

.painel-overlay {
    position: fixed;
    z-index: 1100;
    background: rgba(0,0,0,0.2);
    width: 100%!important;
    height: 100vh!important;
    display: none;
    top: 0px;
}

.painel-btn-close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 26px;
    height: 26px;
    background-image: url("cancel.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    cursor: pointer;
    border-radius: 50px;
    z-index: 99;
}

.painel-btn-close:hover {
    background-color: var(--bs-light);
}

.painel-inside {
    height: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .painel {
        width: 100%!important;
        max-width: 100%!important;
    }
    .painel-mobile {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}