body {
	background-color: #0c1745;
	margin: 0;
	padding: 0;
}

#console {
	font-family: 'Roboto Mono', monospace;
	color: #fff;
	width: 80%;
	margin-left: 40px;
	margin-right: auto;
	margin-top: 40px;
	padding-bottom: 40px;
	font-size: calc(10px + 0.5vh);
}

a {
	color: #0bc;
	text-decoration: none;
	cursor: hand;
}

#a {
	color: #0f0;
}

#c {
	color: #0bc;
}

#b {
	color: #ff0096;
}

#k {
	animation: change 2s;
}

#g {
	color: #5A6878;
}



#op {
	color: #888888
}

@keyframes change {
	0% {
		color: #0f0;
	}

	50% {
		color: #0f0;
	}

	99% {
		color: black;
	}
}


/* input[type=text] {
	font-family: 'Roboto Mono', monospace;
	border: none;
	padding-top: 3px;
	padding-bottom: 5px;
	background-color: #5A6878;
	background: transparent;
	color: #fff;
	min-width: 550px;
	border-bottom: 1px dashed #0bc;
} */

a[class=node] {
	border-bottom: 1px dashed #0bc;
	display: inline-block;
	width: 96%;
	padding-bottom: 5px;
}

a[class=node] span:first-child {
	text-transform: uppercase;
}

span.node-percent {
	color: white;
}

.copylink {
	color: #0bc;
	font-size: 15px;
	display: inline-block;
	max-width: 2%;
}

span.cmd {
	word-break: break-all;
	white-space: nowrap;
}

#quantnode {
	height: 100%;
}

.container {
	display: flex;
	height: 100vh;
	flex-direction: row;
	justify-content: space-between;
}

.left-panel {
	height: 100%;
	overflow: scroll;
	scroll-behavior: smooth;
}

.right-panel img {
	height: 100%;
}

span.addr {
	display: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

@media screen and (min-width: 1025px) {
	#console {
		text-align: justify;
		min-width: 380px;
	}
}

@media screen and (max-width: 1024px) {
	input[type=text] {
		display: none;
	}

	.copylink {
		font-size: calc(10px + 3vw);
	}

	.right-panel img {
		display: none !important;
	}

	.container {
		padding: 20px;
	}

	a.node {
		width: 93%;
	}

	a.node>* {
		font-size: calc(10px + 3vw);
	}

	#console {
		margin-left: 15px;
		margin-right: auto;
		margin-top: 15px;
		padding-bottom: 15px;
		font-size: calc(10px + 1vw);
		max-width: calc(100% - 15px);
		width: calc(100% - 15px);
	}

	span.cmd {
		word-break: break-all;
		white-space: nowrap;
		font-size: calc(10px + 0.3vw);
	}

	body.safari span.cmd {
		font-size: calc(20px + 2vw);
	}

	body.safari #console {
		font-size: calc(20px + 2vw);
	}
}

@media (max-aspect-ratio: 13/10) {
	.right-panel img {
		display: none !important;
	}
}