/****************************
 * Sidebar
****************************/
.ifs-sidebar {width:34%; padding-right:var(--ifs-gap-container); padding-top:41px;}

.ifs-sidebar-main {width:66%;}
.ifs-sidebar-main__bottom {border-top:1px solid rgba(0, 0, 0, 0.2); padding-top:var(--ifs-spacing-20);}

/* sticky */
@media only screen and (min-width:1024px) {
    .ifs-sidebar-inner {
        position:sticky; top:30px;
        transition:var(--ifs-transition);
    }
    body.scroll-up.scroll-middle .ifs-sidebar-inner {top:calc(30px + var(--ifs-header-height-sticky));}
}

@media only screen and (max-width:1023px) {
    .ifs-sidebar {width:100%; order:2; padding-right:0; padding-top:0;}
    .ifs-sidebar-main {width:100%; order:1;}
    .ifs-sidebar-main__bottom {display:none;}
}