/*
    static/css/app/st_sidebar.css
  
    left sidebar in "i nostri tour" page
*/
body, html, .row-offcanvas {
    height: 100%;
}
body {
    padding-top: 50px;
}
#sidebar {
    width: inherit;
    min-width: 210px;
    max-width: 210px;
    background-color: #fff;
    float: left;
    height: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}
#result-container {
    min-height: 200px;
    overflow: auto;
}

/*
 * off Canvas sidebar
 * --------------------------------------------------
 */
@media screen and (max-width:768px) {
    .row-offcanvas {
        position: relative;
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        width: calc(100% + 220px);
    }
    .row-offcanvas-left {
        left: -210px;
    }
    .row-offcanvas-left.active {
        left: 0;
    }
    .sidebar-offcanvas {
        position: absolute;
        top: 0;
    }
}