body {
	background:#ccc;
	font-family: "Lato", sans-serif;
}

.keyform {
	right:20px;
}

.armorybox {
	border-radius: 10px;
	background:#bbb;
	padding-top:10px;
	padding: 10px;
	margin: 20px;
	width: 375px;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
}

.attackbox {
	border-radius: 10px;
	background:#bbb;
	padding-top:10px;
	padding: 10px;
	margin: 20px;
	width: 40%;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
}

.warning {
	padding:5px;
	border-radius: 5px;
	border-left: 1rem solid;
	border-color: orange;
	outline-style: solid;
	outline-color: orange;
	background: peachpuff;
}

.error {
	padding:5px;
	border-radius: 5px;
	border-left: 1rem solid;
	border-color: red;
	outline-style: solid;
	outline-color: red;
	background: lavenderblush;
}
span.errorleft {
	width:20px;
	background: red;
	font-weight: bold;
	color: white;
}

.online {
	background-color: green;
}

.offline {
	background-color: grey;
}

.idle {
	background-color: orange;
}

.dot {
	height: 15px;
	width: 15px;
	border-radius:50%;
	display: inline-block;
}

b.star {
	color:goldenrod;
	text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

svg {
	font-weight: bold;
	width: 150px;
	height: 45px;
}

.svgText {
	fill: goldenrod;
}

.svgStroke {
	stroke: black;
	stroke-width: 2px;
	stroke-linejoin: round;
}

.svgOutline {
	fill: white
}

ul.nobullet {
	list-style-type: none;
	margin-left: -30;
	display:inline-block;
}

span.block-wrap {
	padding: 5px;
	display: inline-block;
	overflow-wrap: break-word;
	vertical-align: middle;
}

li.separator {
	border-bottom: 1px solid;
}

.icon {
	vertical-align: middle;
	text-align:center;
	width: 5%;
	font-size:20px;
}

.datetime {
	width: 20%;
	text-align:center;
}

.info {
	width: 65%;
	text-align: left;
}

.filterlist {

	width:375px;
	border-radius:10px;
	background:#bbb;
	padding: 10px;
	margin:20px;
}

.filtericon {
	width:20px;
	text-align:center;
	vertical-align:middle;
	padding:5px;
}

.filterselected {
	background:#333;
	color: #ccc;
}

.tooltip {
	position:relative;
	display:inline-block;
}

.tooltip .tooltiptext {
	visibility:hidden;
	width:120px;
	background-color: #000;
	bottom: 100%;
	left: 50%;
	margin-left: -60px;
	color: #fff;
	text-align:center;
	padding: 5px 0;
	border-radius: 6px;

	position:absolute;
	z-index: 2;
}

.tooltip:hover .tooltiptext {
	visibility:visible;
}

.tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	top:100%;
	left:50%;
	margin-left: -5px;
	border-width: 5px;
	border-style:solid;
	border-color: black transparent transparent transparent;
}

