.astra-off-canvas-sidebar-wrapper {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: .25s ease-in-out;
}


.astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar {
    position: absolute;
    background: #fff;
    height: 100%;
    top: 0;
    left: -100%;
    padding: 35px;
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 40%);
    width: 325px;
    overflow: auto;
    transition: .3s ease-in-out;
}

.astra-off-canvas-sidebar-wrapper .close {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    color: var(--site-black);
    z-index: 1;
    background: var(--site-bg);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.off-canvas-overlay .astra-off-canvas-sidebar-wrapper {
    visibility: visible;
    opacity: 1;
}

.off-canvas-overlay .astra-off-canvas-sidebar-wrapper .astra-off-canvas-sidebar {
    left: 0;
}