
body {
	background: #191919;
}

div.logdata {
	float: left;
	width: 45%;
}
div.logdata > textarea {
	padding: 5px;
	background: black;
	color: lightgray;
	font: 12px monospace;
	border-radius: 3px;
	border: 1px solid #282828;
	box-shadow: inset 0px 0px 1px #777;
	width: 110%;
	height: 8200px;
}

div.content {
	margin: 10px;
}

div.main {
	width: 100%;
	height: 100%;
	/*position: relative*/
}
div.timediff {
	padding: 5px;
	background: black;
	font: 12px monospace;
	border-radius: 3px;
	border: 1px solid #282828;
	box-shadow: inset 0px 0px 1px #777;
	float: right;
	width: 45%;
	overflow: hidden;
}

div.line.diff:not(.skipped):hover {
	border-radius: 3px;
	box-shadow: 0px 0px 9px 1px gold;
	cursor: pointer;
}
div.line.diff.skipped,
div.line.diff * {
	pointer-events: none;
}

div.contentBar {
	position: fixed;
	width: 8px;
	left: 51%;
	top: 8px;
	border: 2px solid #000;
	border-radius: 3px;
}
div.contentLocation {
	z-index: 2;
	display: none;/*initial*/
	position: fixed;
	width: 14px;
	left: calc(51% - 3px);
	background: none;
	border: 2px solid hsla(51, 100%, 50%, 0.75);
	border-radius: 5px;
}

div.tooltip {
	z-index: 10;
	display: none; /*initial*/
	font-family: sans-serif;
	font-size: 10px;
	text-align: right;
	position: absolute;
	background-color: #000;
	color: gold;
	border: 3px solid #585858;
	border-radius: 5px;
	padding: 2px 3px;
}
.with-triangle {
	position: relative;
}
.with-triangle:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
}
.with-triangle.right:after {
	top: 2.5px;
	right: -9px;
	bottom: auto;
	left: auto;
	border-width: 5px 0 5px 6px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0) #585858;
}