body {
	font-family: 'Roboto', serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;

	padding: 0px;
	margin: 0px;

	background: #1c1c1c;

	overflow: hidden;

	scrollbar-color: #ffffff7b #aaaaaa4b;
  	scrollbar-width: thin;

  	user-select: none;

  	box-sizing: border-box;
}

h1 {
	font-size: 50px;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0px;
	margin: 0px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	position: absolute;

	top: 0px;
	left: 0px;

	padding: 0px;
	margin: 0px;

	width: 100%;
	height: 100%;

	min-width: 375px;
	min-height: 375px;
}

.appViewHolder {
	
	
}

.appView {
	display: block;
	position: relative;

	flex-grow: 1;

	width: 100%;

	background: #1c1c1c;

	overflow-y: hidden;
	overflow-x: hidden;
}

.startUpHolder {
	display: -webkit-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-box-align: stretch;
	-webkit-box-orient: vertical;
	-webkit-box-pack: center;

	text-align: center;

	top: 0px;
	left: 0px;

	width: 100%;
	height: 100%;

	overflow: show;
}


.logo {
	position: relative;
	display: block;

	max-height: 512px;
	max-width: 512px;
	min-width: 100px;
	min-height: 100px;

	object-fit: contain;

	width: 80%;
	height: auto;

	margin-left: auto;
	margin-right: auto;
}

.loadingBar {
	border: solid;
	border-radius: 3px;
	border-color: #FF6600;

	min-width: 100px;
	max-width: 512px;
	min-height: 25px;
	max-height: 25px;

	height: 25px;
	width: 80%;

	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;

	overflow: hidden;
}

.loadingBarInner {
	display: block;
	position: relative;

	top: 0px;
	left: 0px;

	height: 100%;
	width: 0px;

	background: #ffffff;
}

.clickable {
	cursor: pointer;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.5);
}