#sifency-offcanvas-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.sifency-offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sifency-offcanvas-panel {
    position: relative;
    width: 350px;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.sifency-offcanvas-content {
    height: 100%;
    overflow-y: auto;
}

#sifency-offcanvas-wrapper.sifency-open {
    visibility: visible;
    pointer-events: auto;
}

#sifency-offcanvas-wrapper.sifency-open .sifency-offcanvas-overlay {
    opacity: 1;
}

#sifency-offcanvas-wrapper.sifency-open .sifency-offcanvas-panel {
    transform: translateX(0);
}

body.sifency-offcanvas-active {
    overflow: hidden;
}