.scroll-up-page {
    position: fixed;
    bottom: 75px;
    left: 15px;
    height: 50px;
    width: 50px;
    background: #004d7a;
    box-shadow: 0px 2px 5px 0px #0000008a;
    cursor: pointer;
    z-index: 2;
}
.non-disponibile {
    background-color: #f07c0073;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    text-shadow: 2px -1px 5px black;
}

.scroll-up-page i 
{
    position: absolute;
    top: 50%;
    color: #fff;
    left: 50%;
    transform: translate(-50%,-50%);
}
.cat-info-desc{font-size: 13px; color:#004d7a;}




@media (max-width:600px)
{

    #category_list 
    {
        position: fixed;
        width: 300px;
        margin-top: 0;
        height: 100%;
        background: #fff;
        top: 0;
        padding: 15px;
        display: flex;
        transition: right 0.5s;
        transition-delay: 250ms;
        right: -300px;
        z-index: 5;
        flex-flow: column;
        border-left: solid 1px #e5e5e5;
    }

    #category_list.show_filters 
    {
        right: 0;
        transition: right 0.5s;
        transition-delay: 250ms;
        margin-top: 0;
    }

    .side-sub-cats {
        list-style: none;
        padding: 0;
        overflow: auto;
        height: calc(100vh - 115px);
    }

}