body {
	position: relative;

	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	min-height: 100vh;
	padding-bottom: 95px;
}

.title {
	margin: 20px 0;
}

.logged-in-menu svg {
	margin-right: 5px;
}

.pointer {
	cursor: pointer;
}

header {
	margin-bottom: 20px;
}
header nav .header-title {
	margin-right: 5px;

	white-space: nowrap;
}
header nav .menu-body {
	right: 0;
	left: auto;
}

.page-top {
	position: fixed;
	z-index: 2;
	right: 0;
	bottom: 0;

	display: inline-block;

	margin: 0 20px 20px 0;

	text-align: right;
}
.page-top svg {
	font-size: 3em;

	color: #6c757d;
	border: #6c757d 1px solid;
	border-radius: 5px;
}

.container {
	padding-bottom: 47px;
}

footer {
	position: fixed;
	z-index: 1;
	bottom: 0;
	left: 0;

	width: 100%;
}
footer .copyright {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;

	height: 47px;
	padding: 13px 0;

	background-color: #e1c667;
}
footer .copyright p {
	font-size: 14px;

	margin: 0;

	color: #272a29;
}

.loader {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	opacity: 0.5;
	background-color: #000;
}

.loader img {
	position: relative;
	top: 50%;
	left: 50%;

	width: 100px;
	height: 100px;

	-webkit-transform: translateY(-50%) translateX(-50%);
	        transform: translateY(-50%) translateX(-50%);
}

.modal-lg {
	max-width: 1000px;
}

.note-editable ul,
.note-editable ol {
	margin: 10px 0;
	padding-left: 40px;
}
.note-editable ul li,
.note-editable ol li {
	margin-left: 30px;
	padding-left: 10px;
}
.note-editable ul li {
	list-style-type: initial;
}
.note-editable ol li {
	list-style-type: decimal;
}

.note-editor .note-toolbar .note-para .note-dropdown-menu > div + div,
.note-popover .popover-content .note-para .note-dropdown-menu > div + div {
	margin-left: 4px !important;
}
