.main-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	min-height: 100%;
	align-items: stretch;
	--nav-offset: 230px;
	--workbar-offset: 77px;
}

.nav .hodor {
	width: var(--nav-offset);
	height: 100%;
}
.nav .naver {
	width: var(--nav-offset);
	position: fixed;
	top: 0; left: 0; bottom: 0;
	z-index: 96;
	background-color: #F8F8F8;
	overflow-y: scroll;
	-ms-overflow-style: none;
  scrollbar-width: none;
	::-webkit-scrollbar {
		display: none;
	}
}

/* Hide scrollbar for IE, Edge and Firefox */
main {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	position: relative;
	overflow: clip;
	place-items: stretch;
}

.main-main {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-items: stretch;
	scrollbar-gutter: auto;
	flex: 1 1 auto;
	overflow: clip;
}

.hodbar {
	/* height: var(--workbar-offset); */
	width: 100%;
}
.topbar {
	height: var(--workbar-offset);
	position: fixed;
	top: 0; left: var(--nav-offset); right: 0;
	padding-left: 2rem;
	/* background: white; */
	z-index: 9;
}

.workbar {
	position: sticky;
	top: 0;
	height: var(--workbar-offset);
	padding: 0 2rem;
	margin-top: 1rem;
	background-color: white;
	z-index: 90;
	box-shadow: 0px 2px 2px #F8F8F8;
}
.topbar h1,
.workbar h1 {
	font-size: 23px;
	line-height: 25px;
}
.topbar .preheader,
.workbar .preheader {
	font-size: 14px;
	line-height: 14px;
}

.content {
	padding: 1rem 2rem;
}