.content_inlay {
    position: absolute;
    top: var(--height-top-bar);
    bottom: var(--height-bottom-bar);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    background-color: white;

    z-index: 5;
}
.landscape .content_inlay {
    top: calc(var(--height-top-bar) + var(--height-menu-landscape-bar));
}





.content_inlay.top-bar {
    top: 0;
    bottom: unset;
    height: var(--height-top-bar);
    display: flex;
    
	flex-direction: row;
    justify-content: end;
    align-items: center;
} 





.content_inlay.bottom-bar {
    top: unset;
    height: var(--height-bottom-bar);
    bottom: 0;
    
	flex-direction: row;
	justify-content: end;
    align-items: center;

}
.landscape .content_inlay.bottom-bar {
	display: none;
}





.content_inlay.middle-layer {
    overflow-y: auto;
}










div#content_inlay_main {
    overflow: hidden;
}





.content_inlay_sections {
    min-height: var(--height-content-inlay-middle-sections);
    overflow: auto;
    padding: 0px;
    border: 0px solid lightgrey;
}

