.result-table {
	margin: 10px auto;
	width: 612px;
}
.result-row {
	height: 16px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.result-row:last-child:after {
	content: "Testing...";
	font-family: monospace;
	text-align: center;
	display: block;
	width: 100%;
	margin-left: 50px;
	margin-right: 50px;

	animation-duration: 4s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: placeHolderShimmer;
	animation-timing-function: linear;
	background-color: #f6f7f8;
	background: linear-gradient(to right,lightyellow 8%,#bbb 18%,lightyellow 33%);
	background-size: 800px 104px;
}
.result-row.last:last-child:after {
	content: "";
}

@keyframes placeHolderShimmer {
	0% {
			background-position: -800px 0
	}

	100% {
			background-position: 800px 0
	}
}
#progressbar.loading span {

}


.result-row div {
	display: inline-block;
}

.result-row div.mid-line.break,
.result-row div.mid-line {
	display: none;
}

.result-row-text {
	width: 40px;
	height: 16px;
	font-family: monospace;
	padding: 0px 5px;
	vertical-align: top;
}

.result-row-text.left {
	text-align: right;
	vertical-align: text-top;
}


@media (max-width: 700px) {
	.result-table {
		width: 356px;
	}
	.result-row {
		height: 32px;
	}
	.result-row div.mid-line.break {
		display: block;
		width: 0px;
		height: 0px;
	}
	.result-row div.mid-line {
		display: inline-block;
	}
}

.result-box {
	width: 12px;
	height: 12px;
	border-width: 2px;
	background-color: lightgrey;
	border-style: outset;
}

.result-box.open {
	background-color: red;
	border-color: red;
}

.result-box.closed {
	background-color: blue;
	border-color: blue;
}

.result-box.stealth {
	background-color: #0f0;
	border-color: #0f0;
}

.result-totals {
	display: table;
	border: 1px solid black;
	padding: 2px;
	width: 150px;
	margin: 10px auto;
}

.result-totals .row {
	display: table-row;
}

.result-totals .row div {
	display: table-cell;
	padding: 2px 4px;
}

.result-totals .result-box {
	display: inline-block;
}

.result-totals .header {
	font-weight: bold;
}

.result-totals .value {
	text-align: right;
	font-family: monospace;
}

.result-key {
	width: 300px;
	margin: 10px auto;
	box-sizing: border-box;
}

.result-key>div {
	display: inline-block;
	margin-right: 8px;
}

.result-key .result-box {
	display: inline-block;
	margin-right: 4px;
}

.custom-scan-table {
	width: 510px;
	margin: 10px auto;
	display: table;
	border-collapse: collapse;
	border: 2px solid darkgrey;
	background-color: #eee;
}

.custom-scan-row {
	border-bottom: 1px solid lightgrey;
	width: 500px;
	display: table-row;
}

.custom-scan-row:hover {
	background-color: lightyellow;
}

.custom-scan-table>div:first-child {
	border-top: 1px solid lightgrey;
}

.custom-scan-row>div {
	display: table-cell;
	padding: 0.5em 0.2em;
}

.custom-scan-state {
	text-transform: capitalize;
}

.custom-scan-port-number {
	text-align: right;
}

.custom-scan-result .result-box {
	margin-left: auto;
	margin-right: auto;
}

.custom-scan-table .disclaimer {
	display: table-caption;
	caption-side: bottom;
	text-align: right;
}