.app-content:has(> .content-wrapper-right) {
    position: relative;
}

.content-wrapper-right {
    background-color: var(--bs-body-bg);
}

@media only screen and (max-width: 1440px) {

    .content-wrapper-right {
        position: absolute;
        right: calc(-1 * var(--right-content-width));
        width: var(--right-content-width);
        height: 100%;
        top: 0;
        z-index: 1000;
        display: none;

        &.show {
            display: block;
            right: 0;
        }
    }
}