.dim,
.dim a {
	color: darkgray;
	transition: color ease 0.2s;
}
.dim:hover,
.dim:hover a {
	color: initial;
}

.small {
	font-size: 85%;
}

.ok {
	background-color: #cfc;
}
.warn,
.warn-no-pad {
	background-color: #ff9;
}
.ok,
.warn {
	padding: 1px;
	border-radius: 2px;
}

.wide-block {
	overflow-x: auto;
}

table {
	border-collapse: collapse;
	margin: 4px;
}

thead {
	font-weight: bold;
	text-align: center;
}

table.underlined tr {
	border-bottom: 1px solid lightgray;
}

table.wide-padded th:not(:first-child),
table.wide-padded td:not(:first-child) {
	padding: 1px 0 1px 15px;
}

code,
pre {
	background-color: #e7e7e7;
	border-radius: 2px;
}
pre {
	padding: 4px;
	overflow: auto;
}

p,
.p-like,
h2,
h3 {
	margin-left: 8px;
	margin-right: 8px;
}
p,
.p-like {
	margin-top: 16px;
	margin-bottom: 16px;
}

button.a-like {
	background: none;
	border: none;
	padding: 0;
	text-decoration: underline dotted;
	font: inherit;
	cursor: pointer;
	user-select: text;
}

/* =================== */

html {
	min-height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	margin: 0;
	min-height: 100vh;
	align-items: stretch;
}

.header,
.footer {
	width: 100%;
	background-color: #eee;
	box-shadow: 0 0 8px #ccc;
}

.header-content {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	max-width: calc(1280px + 24px);
}

.header-content > * {
	margin: 8px 16px;
}

.header .logo {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}
.header .logo .logo-main {
	font-size: 130%;
}
.header .logo .logo-sub {
	font-size: 80%;
	text-align: center;
	color: #444;
}

.header .lang-switch {
	display: flex;
	align-items: center;
}
.header .lang-switch select {
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	cursor: pointer;
	margin-left: 4px;
}
@-moz-document url-prefix() {
	/* костыль для ФФшного select'а: он рисует справа и слева от элемента лишние отступы */
	.header .lang-switch select {
		margin-left: 0;
		margin-right: -4px;
	}
}
.header .lang-switch select:hover {
	text-decoration: underline;
}
@media (max-width: 479px) {
	.header {
		flex-direction: column;
		align-items: center;
	}
	.header .lang-switch {
		position: absolute;
		top: 10px;
		right: 0;
	}
}

.footer {
	margin-top: 64px;
	padding: 8px 16px;
	box-sizing: border-box;
	font-size: 85%;
	text-align: center;
}

.content {
	position: relative;
	flex-grow: 100;
	margin: 8px auto;
	max-width: 1280px;
	width: 100%;
}

.chart {
	position: relative;
	height: 96px;
	margin: 0 8px;
}

.chart .main-canvas {
	width: 100%;
	height: 100%;
}

.chart .legend {
	position: absolute;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	top: 0;
	font: 9px sans-serif;
	text-shadow: 0 0 4px white;
}
.chart .legend:not(.leftmost) {
	left: 36px;
}
.chart .legend .item {
	display: flex;
	align-items: center;
	padding: 0 4px;
	background: rgba(255, 255, 255, 0.4);
}
.chart .legend .item .example {
	width: 12px;
	height: 1.4px;
	margin-right: 3px;
}

.upper-block {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.changelog-wrap {
	max-width: 256px;
	max-height: 150px;
	overflow-x: auto;
	font-size: 95%;
	box-shadow: inset 0 0 16px #f0f0f0, 0px 0px 3px #f0f0f0;
	border-radius: 3px;
}
.changelog-wrap h4 {
	margin: 3px;
}
.changelog-wrap p {
	margin: 3px 3px 8px 3px;
}
@media (max-width: 639px) {
	.upper-block {
		flex-direction: column;
	}
	.changelog-wrap {
		max-width: initial;
		border-radius: 0;
	}
}


.map-wrap {
	position: relative;
	width: 100%;
	height: 384px;
	background-color: #eee;
}

.node-countries-table thead td:first-of-type {
	text-align: right;
}

.node-countries-table thead td:nth-child(3),
.node-countries-table thead td:nth-child(5),
.node-countries-table thead td:nth-child(7) {
	padding-left: 48px;
}
.node-countries-table thead td.isp {
	padding-left: 10px;
}
.node-countries-table thead td.avg .help {
	margin-right: -20px;
}

.node-countries-table tbody td:not(.name) {
	text-align: right;
}

.node-countries-table tbody tr:last-child {
	border-bottom: none;
}

.node-countries-table tbody tr:last-child td {
	text-align: center;
}


.storj-tx-summary-chart .legend {
	right: 0;
}
.storj-tx-summary-chart .scale-mode-wrap {
	display: flex;
	justify-content: flex-end;
	flex-grow: 1000;
}
.storj-tx-summary-chart .scale-mode-wrap button {
	font: inherit;
	height: auto;
	padding: 1px 2px;
	margin: -2px 1px;
}
.storj-tx-summary-chart .scale-mode-wrap button.active {
	background: lightgray;
}


.pings-chart {
	position: relative;
	height: 40px;
	margin-bottom: 4px;
}

.pings-chart .zoom-canvas {
	position: absolute;
	pointer-events: none;
	left: 0;
	bottom: 0;
	width: 512px;
	height: 64px;
	max-width: 100%;
	/* outline: 1px solid red; */
	z-index: 1;
}
.pings-chart .zoom-canvas.touch {
	height: 96px;
}


input,
button {
	border: 1px solid;
	border-color: #cdc7c2 #cdc7c2 #bfb8b1;
	border-radius: 3px;
	box-sizing: border-box;
	height: 25px;
}
button {
	background: linear-gradient(white 2%, #f6f5f3 4%, #edebe9);
}

.registration-form {
	display: flex;
	flex-direction: column;
	max-width: 256px;
	margin-bottom: 8px;
}
.registration-form .buttons-wrap {
	display: flex;
	flex-wrap: wrap;
}
.registration-form .buttons-wrap button {
	flex-grow: 1;
}
.registration-form input,
.registration-form button {
	margin: 6px 0;
}
.registration-form button:not([type='submit']) {
	border: none;
	background: none;
	color: gray;
}
.registration-form .auth-error {
	color: darkred;
}


.user-dashboard-nodes {
	margin: 0 8px;
}


.check-sanctions-form input[type='submit'] {
	vertical-align: top;
}

.check-sanctions-result-table tr:last-of-type {
	border: none;
}

.check-sanctions-result-table td.sanction {
	max-width: 192px;
	text-align: center;
}


.node-ping-form {
	display: flex;
	flex-direction: row;
	max-width: 620px;
	margin-left: 8px;
	margin-right: 8px;
}

.node-ping-form .node-address-input,
.node-ping-form .node-id-input {
	width: 64px;
}

.node-ping-form > *:not(.node-id-input) {
	margin-left: 8px;
}

.node-ping-form .node-address-input {
	flex-grow: 1;
}

.node-ping-form .node-id-input {
	flex-grow: 3;
}

.remembered-nodes-list {
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 16px;
}

.remembered-nodes-list .item {
	display: flex;
}

.remembered-nodes-list .item .node {
	display: flex;
	overflow: hidden;
}

.remembered-nodes-list .item .node .node-id {
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 4px;
}

.remembered-nodes-list .item .node:hover .node-id {
	overflow: visible;
	background-color: white;
	word-break: break-all;
}

.remembered-nodes-list .item .node .node-address {
	margin: 0 8px;
}

.remembered-nodes-list .item .remove {
	color: darkred;
	text-decoration: none;
	border: none;
	background: none;
	margin: 0;
	padding: 0 8px;
}

.remembered-nodes-list .item .remove:hover {
	/* border: 1px solid darkred; */
	background-color: #fdd;
}

.log-box {
	position: relative;
	white-space: pre-line;
}
.log-box.pending::before {
	content: '⌛';
	position: absolute;
	left: 1px;
	top: 1px;
}

@media (max-width: 479px) {
	.node-ping-form {
		flex-wrap: wrap;
	}

	.node-ping-form .node-id-input {
		width: 100%;
	}

	.node-ping-form > *:not(.node-id-input) {
		margin-top: 4px;
	}

	.node-ping-form .node-address-input {
		margin-left: 0;
	}
}


.node-subnets-summary-wrap {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-around;
}
.node-subnets-summary-wrap table {
	margin-left: 24px;
	margin-right: 24px;
}

.node-subnets-table tbody td {
	text-align: right;
}
.node-subnets-table tbody tr:last-child {
	border-bottom: none;
}

.node-subnet-sizes-table tbody td:last-child {
	text-align: right;
}
.node-subnet-sizes-table tbody tr:last-child td {
	text-align: center;
}
.node-subnet-sizes-table tbody tr:last-child {
	border-bottom: none;
}

.node-ip-types-table tbody td.name {
	max-width: 320px;
}
.node-ip-types-table tbody td.type {
	text-align: center;
}
.node-ip-types-table tbody td.count {
	text-align: right;
}
.node-ip-types-table tbody tr.expanded {
	font-weight: bold;
}
.node-ip-types-table tbody tr:last-child {
	border-bottom: none;
}


button.help {
	background: #eee;
	color: gray;
	border: none;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	padding: 0;
	transition: background-color ease 0.1s, color ease 0.1s;
}
button.help:hover {
	background: #ddd;
	color: black;
}

button.help-line {
	background: none;
	border: none;
	padding: 0;
	text-decoration: underline;
	text-decoration-style: dashed;
	font: inherit;
	cursor: pointer;
	user-select: text;
}

.popup {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.popup .popup-frame {
	position: relative;
	display: inline-block;
	background-color: white;
	border-radius: 2px;
	max-width: min(800px, 90vw);
	max-height: 90vh;
}
.popup .popup-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	background: none;
	border: none;
	transition: transform ease 0.1s;
}
.popup .popup-close:hover {
	transform: scale(1.2);
}
.popup .popup-content {
	padding: 3px 14px; /*10px 16px*/
	box-sizing: border-box;
	overflow-y: auto;
	max-height: 100%;
}


.nodes-count-chart .chart {
	height: 110px;
}
.node-countries-chart {
	height: 192px;
}
.node-countries-chart .legend {
	font-size: 10px;
}


.user-nodes-list-with-form {
	position: relative;
	margin-bottom: 16px;
}

.user-nodes-list {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 32px;
	overflow-x: auto;
}

.user-nodes-list .user-nodes-table thead td {
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}

.user-nodes-list .user-nodes-table .neighbors-title-cell-inner {
	margin: 0 -15px 0 -5px;
}

.user-nodes-list .node {
	/* border-bottom: 1px solid lightgray; */
	margin-bottom: 8px;
}
.user-nodes-list .node td {
	padding: 1px 5px;
}

.user-nodes-list .node .node-id {
	position: relative;
	white-space: nowrap;
	font-weight: bold;
	font-family: monospace;
	font-size: 16px;
}
.user-nodes-list .node .node-id .full {
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.9);
}
.user-nodes-list .node .node-id:not(:hover) .full {
	display: none;
}
.user-nodes-list .node .node-status {
	display: inline-block;
	width: 10px;
	height: 10px;
	line-height: 16px;
	margin: 0 4px 1px 0;
	border-radius: 50%;
	box-sizing: border-box;
	background-color: darkgray;
	transition: transform ease 0.1s;
}
.user-nodes-list .node .node-status:hover {
	transform: scale(1.4, 1.4);
}
.user-nodes-list .node.status-ok .node-status {
	background-color: limegreen;
}
.user-nodes-list .node.status-warn .node-status {
	background-color: yellow;
	border: 1px solid lightgray;
}
.user-nodes-list .node.status-error .node-status {
	background-color: red;
}
.user-nodes-list .node.loading .node-status {
	background-color: transparent;
}
.user-nodes-list .node.loading .node-status::after {
	content: '⌛';
}

.user-nodes-list .node .node-ip {
	min-width: 128px;
	max-width: 196px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}

.user-nodes-list .node .node-neighbors {
	text-align: center;
}

.user-nodes-list .node .node-remove-button {
	color: darkred;
	font-weight: bold;
	opacity: 0.5;
	border: none;
	background: none;
}
.user-nodes-list .node .node-remove-button:hover {
	opacity: 1;
}

.user-nodes-list .ip-info {
	white-space: nowrap;
}
.user-nodes-list .ip-info .help-line {
	overflow: hidden;
	text-overflow: ellipsis;
}
.user-nodes-list .ip-info:hover .help-line {
	overflow: visible;
	position: relative;
	background-color: rgba(255, 255, 255, 0.9);
	padding-right: 2px;
	margin-right: -2px;
}
.user-nodes-list .ip-info:not(:hover) .help-line {
	text-decoration: none;
	max-width: 100%;
}
.user-nodes-list .ip-company-name {
	max-width: 256px;
}
.user-nodes-list .ip-company-name.compact {
	max-width: 192px;
}
.user-nodes-list .ip-as-descr {
	max-width: 192px;
}

table.ip-info-full {
	margin-bottom: 12px;
}
table.ip-info-full th {
	text-align: right;
	vertical-align: top;
	padding-right: 8px;
}

.node-add-form {
	position: absolute;
	display: flex;
	left: 0;
	bottom: -5px;
	box-shadow: 0 0 2px lightgray;
	background-color: rgba(230, 230, 230, 0.8);
	border-radius: 3px;
	overflow: hidden;
}

.node-add-form .buttons-wrap {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
}

.node-add-form .nodes-data {
	margin: 2px;
	width: 75vw;
	max-width: 640px;
	height: 64px;
}

.node-add-form.minimized .submit-button {
	padding-left: 2px;
	padding-right: 2px;
}

.node-add-form:not(:hover) {
	opacity: 0.8;
}
.node-add-form.minimized .submit-button,
.node-add-form.minimized .nodes-data {
	display: none;
}

/*# sourceMappingURL=bundle.271805de.css.map */