.pushbar1.opened{
display: block;
}

html.pushbar1_locked{
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}


.pushbar1_locked .pushbar1_main_content.pushbar1_blur{
	filter:blur(15px);
}
.pushbar1{
	z-index: 1000;
	position: fixed;
	will-change: transform;
	overflow-y: auto;
	transition:transform 0.5s ease;
	will-change: transform;
	background:#fff;
  	&::-webkit-scrollbar {
        width: 5px;
    }

    &::-webkit-scrollbar-track {
      background:rgba(0,0,0,0.1);
    }

    &::-webkit-scrollbar-thumb {
      background:rgba(0,0,0,0.1);
      border-radius:100px;
    }
}
.pushbar1_overlay{
	z-index: -999;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
    will-change: opacity;
    transition:opacity 0.5s ease;
    opacity:0;
    will-change: opacity;
	background: #3c3442;
}
html.pushbar1_locked .pushbar1_overlay{
	opacity:0.8;
	z-index: 999;
    transition:opacity 0.5s ease;
}


.pushbar1.from_left{
	top: 0;
	left: 0;
	width: 256px;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transform: translateZ(0) translateX(-100%);
}

.pushbar1.from_right{
	top: 0;
	right: 0;
	width: 256px;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transform: translateZ(0) translateX(100%);
}

.pushbar1.from_top{
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	z-index: 11111;
	transform: translateZ(0) translateY(-100%);
}
.pushbar1.from_bottom{
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	transform: translateZ(0) translateY(100%);
}

.pushbar1.opened{
   transform: translateX(0px) translateY(0px);
}
