GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //proc/self/root/home/parhudrw/anqa.it/wp-content/themes/essentials/inc/scss/elements/_sidebar.scss
/**
 * Sidebar
 */
.pix-sidebar {
    position: fixed;
    width: 360px;
    right: -380px;
    top: 0;
    padding: 10px;
    z-index: 99999999;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    .sidebar-inner {
        background: #fff;
        border-radius: 6px;
        height: 100%;
        display: inline-block;
        position: relative;
        width:100%;
        overflow: hidden;
    }
    .sidebar-content {
        -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    .pix-close-sidebar {
        -webkit-transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        i {
            font-size: 22px;
        }
    }
    &.opened {
        right: 0;
        opacity: 1;
        pointer-events: auto;
        .sidebar-content {
            -webkit-transform: translateY(0px);
                    transform: translateY(0px);
        }
    }
}

@media (max-width: 992px) {
    .pix-sidebar {
        width: 100vw;
        right: -100vh;
    }
}