@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300&display=swap')

* {
	padding: 0;
	margin: 0;
}

.nav-height{
	height: 60px;
}

.main-container{
	width: 100vw;
	max-width: 100%;
	height: calc(100vh - 60px);
	margin-top: 60px;
	overflow-y: auto;
	display: flex; 
}

.full-page-container{
	width: 100vw;
	max-width: 100%;
	height: 100vh;
	max-height: 100%;
	display: flex; 
}

.document-container{
	width: calc(100vw - 230px);
	margin-left: 230px;
	font-family: 'Hind', Arial, sans-serif;
}

.pointer{
	cursor:pointer;
}

@media only screen and (max-width: 991px) {
	.document-container{
		width: 100%;
		margin-left: 0px;
		font-family: 'Hind', Arial, sans-serif;
	}
}