/* Variables used live in videos.css */
.layout-container {
	max-width: 980px;
	margin: 0 auto;
	position: relative;
	min-height: 100vh;
}

.layout-wrapper {
	display: flex;
	justify-content: flex-end;
}

.sidebar-container {
	position: absolute;
	width: 220px;
	/* Width + Gap */
	left: -244px;
	top: 0;
	height: 100%;
}

.sidebar {
	position: sticky;
	/* Localnav Height + Top Spacing (Adjustable) */
	top: calc(52px + 0px);
	/* 100vh + value for top */
	max-height: calc(100vh - 52px);
	overflow-y: auto;
	border-right: 1px solid var(--df-sidenav-border-color);
	/* padding-right: 0.25em; */
}

@media only screen and (max-width: 1500px) {
	.sidebar {
		border-right: 0;
		padding-right: 0;
	}
}

.sidebar::-webkit-scrollbar {
	display: none;
}

.sidebar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* Controls per viewport of sidenav */
.co-container .fo-container {
	display: block;
	visibility: visible;
}
.co-container .mo-container {
	display: none;
	visibility: hidden;
}

@media only screen and (max-width: 1500px) {
	.co-container .fo-container {
		display: none;
		visibility: hidden;
	}
	.co-container .mo-container {
		display: block;
		visibility: visible;
	}
}
