html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	font-family: "Segoe UI", "Helvetica Neue", -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	margin: 0px;
	font-weight:normal;
	font-size: 16px;
	line-height: 1.5;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: var(--text-color);
	background-color: #f8f8f8;
	cursor: default;
	position: relative;
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

div.systemcontent {
    position: fixed;
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
	align-items: center;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
	background: url("/dummybg.png") repeat-x;
}

div.blocker {
	position: fixed;
	left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
	pointer-events: none;
	background: linear-gradient(135deg,rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 60%);
}