/*! Pusha v2.0.0 | MIT License | https://github.com/slavanga/pusha */

body {
    overflow-x: hidden;
}

.pusha-active, .pusha-active body {
    overflow: hidden;
}

.pusha-wrapper, .pusha-push {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-wrapper {
    position: relative;
    z-index: 0;
    /* height: 100%;
  background-color: inherit; */
}

.pusha-panel {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    will-change: transform;
}

.pusha-panel--left {
    width: 260px;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--left.pusha-panel--active~.pusha-push, .pusha-panel--left.pusha-panel--active~.pusha-blocker, .pusha-panel--left.pusha-panel--active~.pusha-wrapper {
    -webkit-transform: translateX(260px);
    transform: translateX(260px);
}

.pusha-panel--left.pusha-panel--active {
    -webkit-transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--right {
    width: 300px;
    height: 100%;
    background: url('../img/bg-blur.jpg') center top no-repeat;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 11;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
    box-shadow: 0 0px 20px rgba(0,0,0,0.5);
}

.pusha-panel--right.pusha-panel--active~.pusha-push, .pusha-panel--right.pusha-panel--active~.pusha-blocker, .pusha-panel--right.pusha-panel--active~.pusha-wrapper {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
}

.pusha-panel--right.pusha-panel--active {
    -webkit-transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--top {
    width: 100%;
    height: 260px;
    background-color: #fff;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 220;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--top.pusha-panel--active {
    -webkit-transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--bottom {
    width: 100%;
    height: 260px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 220;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.05s linear 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--bottom.pusha-panel--active {
    -webkit-transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, -webkit-transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease;
    transition: opacity 0.05s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel--active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none !important;
    transform: none !important;
}

.pusha-panel__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

.pusha-active .pusha-panel__content {
    overflow-y: auto;
    outline-style: none;
    position: relative;
    padding: 10px 15px;
}

.pusha-blocker {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: visibility 0s linear 0.3s, transform 0.3s ease, opacity 0.3s ease;
    transition: visibility 0s linear 0.3s, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-active .pusha-blocker {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.pusha-panel__close{
    color: #fff;
    position: absolute;
    top: 10px;
    right: 5px;
}
img.icon-close{
    width: 20px;
}
