.pushy-filter {
    --pushy-width: 300px
}
.pushy-filter-close::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pushy-filter .pushy-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 20px;
    position: relative;
    background: #fff;
    border-top: 1px solid #f5f7fa;
}
.pushy-filter .pushy-filter-actions__btns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative
}
.pushy-filter .pushy-filter-actions__btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 40px;
    background: #f5f7fa;
    border: none;
    border-radius: 6px;
    outline: none;
    color: #000;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    text-decoration: none
}
.pushy-filter .pushy-filter-actions__btn a {
  color: #000;
}
.pushy-filter .pushy-filter-actions__btn:hover, 
.pushy-filter .pushy-filter-actions__btn:active {
    background: #f5f7fa;
}
.pushy-filter-actions__btns .btn {
  width: 100%;
}
.pushy-filter-close {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: -34px;
    width: 34px;
    height: 34px;
    background: #f5f7fa;
    border-radius: 0 0 6px;
    color: #808080;
    cursor: pointer;
    transition: all .3s linear;
}
.pushy-filter-close:hover, 
.pushy-filter-close:active {
    background: #f5f7fa;
    color: #000;
}
.pushy-filter {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    -moz-transition: -moz-transform .5s ease-in-out;
    -o-transition: -o-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    -webkit-overflow-scrolling: touch;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transition,transform,visibility;
    z-index: 3100
}
.pushy-filter-main {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(32,54,75,.15);
    z-index: 10
}
.pushy-filter.--loaded {
    opacity: 1;
    visibility: visible
}
.pushy-filter-left {
    --pushy-offset: calc((var(--pushy-width) + 34px) * (-1));
    -webkit-transform: translate3d(var(--pushy-offset),0,0);
    -moz-transform: translate3d(var(--pushy-offset),0,0);
    -ms-transform: translate3d(var(--pushy-offset),0,0);
    -o-transform: translate3d(var(--pushy-offset),0,0);
    transform: translate3d(var(--pushy-offset),0,0)
}
.pushy-filter-body-left .pushy-filter-left {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}
.pushy-filter-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(44, 46, 57, .8);
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: opacity,transition,visibility;
    visibility: hidden;
    z-index: 3000
}
.pushy-filter-overlay.visiblility,.pushy-filter-left.visiblility {
    visibility: visible
}
.pushy-filter-active .pushy-filter-overlay {
    opacity: 1
}
@keyframes pushy-filter-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
@-moz-keyframes pushy-filter-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
@-webkit-keyframes pushy-filter-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
@-o-keyframes pushy-filter-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.pushy-filter .pushy-filter-main__content {
    display: block;
    margin: 0;
    padding: 20px;
    position: relative;
    color: #000;
    height: calc(100vh - (calc(41px + (20px * 2)) - 1px));
    height: calc((var(--vh, 1vh) * 100) - (calc(41px + (20px * 2)) - 1px));
    overflow: auto;
    overflow-x: hidden
}
.pushy-filter .pushy-filter-main__actions {
    display: block;
    margin: 0;
    padding: 20px;
    position: relative;
    background: #fff;
    border-top: 1px solid var(--color-gray-06);
}
.pushy-filter-main__actions-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0;
    position: relative
}
.btn.pushy-filter-main__actions-btn.--clear {
    background: #f5f7fa;
}