.filter_pagination{
    text-align: center;
}
@media screen and (max-width: 890px) {
    .iamsidebar {
        width: 80vw;
        position: fixed;
        top: 15%;
        right: 5%;
        z-index: 999;
        height: 80vh;
        background-color: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(110%);
        transition: transform .3s ease;
    }
}
@media screen and (max-width: 890px) {
    .iamsidebar.active {
        transform: translateX(0);
    }
}
@media screen and (max-width: 450px) {
    .podborwidjet {
        width: 100%;
        float: none;
        height: auto;
        margin: 0 0 20px 0;
    }
}
#toogle-side-btn {
    display: block;
    position: fixed;
    right: 35px;
    top: 50%;
    z-index: 123456;

    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right top;

    padding: 5px 10px;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
    border: 1px solid #C41D3A;
    color: #C41D3A;
    border-bottom: none;
}

#toogle-side-btn {
    display: none;
    transition: right .3s ease, transform .3s ease;
translateX(90%) translateY(0)
}
#toogle-side-btn.active {
    transition: right .3s ease, transform .3s ease;
translateX(275px) translateY(0)
}
@media screen and (max-width: 880px){
    #toogle-side-btn.active {
        right: calc(80vw + 50px);
    }
    #toogle-side-btn{
        display: unset;
    }
}
