.img-loader {
	position: fixed;
	left: calc(100% - 2px);
	opacity: 0.01;
	top: calc(100% - 2px);
	width: 2px;
	height: 2px;
	overflow: hidden;
	/* left: 0; */
	/* top: 0; */
	/* width: 200px; */
	/* height: 200px; */
	/* opacity: 1; */
}

ptools_debug_panel {
	display: flex;
	background: #000000b3;
	padding: 20px;
	color: white;
	/* max-height: 90px; */
	overflow-y: scroll;
	position: absolute;
	top: 0px;
	right: 0;
	max-width: 900px;
	max-height: 300px;
	z-index: 200;
	/* flex-direction: column; */
	/* justify-content: flex-end; */
	pointer-events: none;
}

ptools_debug_console {
	display: flex;
	/* background: red; */
	flex-direction: column;
}

ptools_debug_console_row {
	display: block;
	margin-bottom: 10px;
	font-family: monospace;
}

ptools_debug_console num {
	margin-right: 0.5rem;
	font-size: 1rem;
	color: gray;
}

dev_messages {
	display: flex;
	z-index: 100;
	position: fixed;
	top: 0px;
	left: 5px;
	flex-direction: column;
	pointer-events: none;
	color: white;
}

dev_message {
	display: flex;
	padding: 20px;
	font-size: 16px;
	font-family: Arial;
	background: #000000e0;
	margin: 5px 0px;
	min-width: 300px;
}

/* Status panels */

status_messages {
	display: flex;
	pointer-events: none;
	/* margin-top: -10px; */
	flex-direction: column;
	background: #000000ad;
	background: #00000096;
	/* margin: calc(var(--gap)*-1); */
	/* margin-top:0; */
	/* margin-bottom:0; */
	/* gap: var(--gap); */
	/* padding: var(--gap); */
	font-family: 'Play';
	/* position: absolute; */
	/* z-index: 1; */
	/* left: 0; */
	/* right: 0; */
	/* width: 100%; */
	max-height: 7rem;
	overflow: hidden;
	justify-content: flex-start;
}

status_messages status_message {
	display: flex;
	/* margin-bottom: 0; */
	/* margin-top: 0; */
	/* margin-left: 0; */
	border-radius: 0;
	/* background: #a3a37d !important; */
	background: transparent;
	/* padding: 0 ; */
	/* font-style: italic; */
	font-family: 'Play';
	font-size: 1rem;
	width: 100% !important;
	align-items: flex-end;
	flex-shrink: 0;
}

status_messages status_message_wrap {
	display: flex;
	margin: 0.5rem var(--gap);
}

status_messages status_message_text {
	display: flex;
	/* margin: var(--gap); */
	/* margin-bottom: 0; */
	font-size: 1.2rem;
}
status_messages status_message_time {
	/* margin-top: var(--gap); */
	padding-top: 0.25rem;
	/* margin-left: var(--gap); */
	font-size: 0.8rem;
	margin-right: 1rem;
}

[nointeract] {
	opacity: 0.3;
}

.graphene_button,
[graphene_button] {
	border: 1px solid #06af08;
}

.graphene_button,
[graphene_button] {
	/* border: 1px solid #06af08 !important; */
	/* border-color: #071607 !important; */
	/* background-color: #003d00; */
	/* background-color: black; */
	border-color: transparent;
	/* border: none; */
	/* border-right: 3px solid #06af08 !important; */
	border-left: 7px solid #06af08 !important;
	/* border-left: 7px solid #b0b0b0 !important; */
	outline: 1px solid rgba(0, 0, 0, 0.34);
}

.time_formatted {
	--time-col-width: 1.5em;
	--time-delimiter-width: 0.43em;
	--time-delimiter-line-height: 0.72em;
	--time-line-height: 0.85em;
	/* display: flex; */
	justify-content: center;
	display: grid;
	grid-template-columns: 1fr var(--time-delimiter-width) 1fr;		
	line-height: var(--time-line-height);
}

.time_formatted_minutes {
	display: flex;
	justify-content: flex-end;
	min-width: var(--time-col-width);
}

.time_formatted_delimiter {
	display: flex;
	justify-content: center;
	min-width: var(--time-delimiter-width);
	line-height: var(--time-delimiter-line-height);
}

.time_formatted_seconds {
	display: flex;
	min-width: var(--time-col-width);
}


loading_pane {
	display: none;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: #333333;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
	transition-duration: 0.3s;
	width: 100% !important;
	height: 100% !important;

}