html.pushbar_locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.pushbar_locked .pushbar_main_content.pushbar_blur {
    filter: blur(15px);
}

.pushbar_overlay {
    z-index: -999;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    will-change: opacity;
    transition: opacity 0.5s ease;
    opacity: 0;
    background: #3c3442;
}

html.pushbar_locked .pushbar_overlay {
    opacity: 0.8;
    z-index: 999;
}

[data-pushbar-id] {
    z-index: 3000;
    position: fixed;
    overflow-y: auto;
    will-change: transform;
    transition: transform 0.5s ease;
    background: #fff;
}

[data-pushbar-direction="left"][data-pushbar-id], [data-pushbar-direction="right"][data-pushbar-id] {
    top: 0;
    /* width: 256px; */
    width: 575px;
    max-width: 100%;
    height: 100%;
}

@media screen and (min-width:600px) {
    [data-pushbar-direction="right"][data-pushbar-id] {
        /* box-shadow: rgba(0, 0, 0, 0.247059) 3px 0px 12px 3px; */
        border-left: 1px solid #DFE2E6;
    }
}

@media screen and (max-width:575px) {
    [data-pushbar-direction="left"][data-pushbar-id], [data-pushbar-direction="right"][data-pushbar-id] {
        width: 100%;
    }
}

[data-pushbar-direction="top"][data-pushbar-id], [data-pushbar-direction="bottom"][data-pushbar-id] {
    left: 0;
    width: 100%;
    /* min-height: 150px; */
    height: 100%;
    min-height: 100%;
}

[data-pushbar-direction="left"][data-pushbar-id] {
    left: 0;
    transform: translateZ(0) translateX(-100%);
}

[data-pushbar-direction="right"][data-pushbar-id] {
    right: 0;
    transform: translateZ(0) translateX(100%);
}

[data-pushbar-direction="top"][data-pushbar-id] {
    top: 0;
    transform: translateZ(0) translateY(-100%);
}

[data-pushbar-direction="bottom"][data-pushbar-id] {
    bottom: 0;
    transform: translateZ(0) translateY(100%);
}

[data-pushbar-id].opened {
    display: block;
    transform: translateX(0px) translateY(0px);
}

.pushbar .close {
    position: relative;
    right: 30px;
    top:  17px;
    width: 21px;
    height: 21px;
    display: inline-block;
    vertical-align: text-bottom;
    text-align: center;
    cursor: pointer;
    opacity: 1;
}

.pushbar .close:before, .pushbar .close:after {
    position: absolute;
    content: ' ';
    height: 21px;
    width: 2px;
    background-color: #000;
}

.pushbar .close:before {
    transform: rotate(45deg);
}

.pushbar .close:after {
    transform: rotate(-45deg);
}

.pushbar .close:before, .pushbar .close:after {
    background-color: #171717 !important;
}

.pushbar .close.inverse:before, .pushbar .close.inverse:after {
    background-color: #FFF !important;
}

.pushbar .pushbar-header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    z-index: 1001;
}

.pushbar .pushbar-header .testo {
    position: relative;
    left:  17px;
    top:  17px;
}

.pushbar .pushbar-footer {
    position: sticky !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 74px;
    z-index: 1001;
}

