@charset "UTF-8";
:root {
	--color-white: #ffffff;
	--color-white-rgb: 255, 255, 255;
	--color-default: #333333;
	--color-default-rgb: 51, 51, 51;
	--color-success: #198754;
	--color-success-rgb: 25, 135, 84;
	--color-danger: #ff3347;
	--color-danger-rgb: 220, 53, 69;

	--color-primary: #11a1fd;
	--color-primary-rgb: 17, 161, 253;

	--color-secondary: #f27d16;
	--color-secondary-rgb: 242, 125, 22;

	--font-default: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
		"Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	/*font-family: var(--font-default);*/
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.15;
	color: var(--color-default);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	display: flex;
	justify-content: stretch;
	min-height: 100%;
	align-items: stretch;
	background: #f2f7f8;
}

a {
	color: var(--color-secondary);
}
a:hover {
	filter: brightness(1.2);
}

.d-none {
	display: none !important;
}
.d-block {
	display: block !important;
}

span.progress {
	display: inline-block;
	height: 0.55em;
	width: 10em;
	background: rgba(var(--color-default-rgb), 0.1);
	border-radius: 15px;
}
span.progress::after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
}
span.progress > span {
	display: block;
	height: 100%;
	background: #0cb97d;
	border-radius: 15px;
	max-width: 100% !important;
}
span.progress.danger > span {
	background: var(--color-danger);
}

body > nav {
	position: relative;
	/*background: rgba(var(--color-default-rgb), 0.1);*/
	background: #131d30;
	width: 16em;
	min-width: 16em;
	color: rgba(var(--color-white-rgb), 0.7);
}
body > nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
body > nav li {
	display: block;
}

body > nav li > a {
	display: block;
	/*color: var(--color-white);*/
	color: #91a0aa;
	padding: 0.75em 1em;
	text-decoration: none;
	font-weight: 400;
	transition: all 0.1s ease;
}

body > nav li > a:hover {
	/*color: var(--color-white);
	background: rgba(var(--color-secondary-rgb), 0.5);*/
	background-color: #19253a;
	color: rgb(204, 204, 204);
}
body > nav li a.active {
	background-color: #19253a;
	filter: brightness(1.2);
}

.quick-menu {
}
.quick-menu::after {
	content: "";
	display: block;
	margin: 1em 1em;
	border-bottom: 1px solid #91a0aa90;
}

.quick-menu h2 a,
.quick-menu h3 a {
	display: block;
	text-decoration: none;
	padding: 0rem 1rem;
	font-weight: 600 !important;
	color: var(--color-primary);
}
.quick-menu h3 {
	font-size: 1em;
}
.quick-menu ul ul > li > a {
	padding-left: 2rem;
}

.quick-menu h2 span.divider-line {
	width: calc(100% - 2rem);
	left: 1rem;
}
.quick-menu article {
	padding-bottom: 0.5em;
}
/*
.quick-menu article > *,
.quick-menu article > div > * {
	padding: 0 1rem;
}
*/
.quick-menu article > div,
.quick-menu article > div > ul {
	padding: 0;
}
.quick-menu table.values {
	padding: 0;
}
.quick-menu table.values th:first-child,
.quick-menu table.values td:first-child {
	padding-left: 1em;
}
.quick-menu table.values th:last-child,
.quick-menu table.values td:last-child {
	padding-right: 1em;
}
.quick-menu table.values tr .progress {
	left: 1em;
	width: calc(100% - 2em);
}
.quick-menu table.values tr:hover {
	background: rgba(var(--color-secondary-rgb), 0.5);
}
.quick-menu table.values th,
.quick-menu table.values td {
	padding-bottom: 1.2em;
}
.quick-menu table.values span.progress {
	height: 0.5em;
	background: rgba(var(--color-white-rgb), 0.2);
}

#nav-container {
	/*position: sticky;*/
	position: fixed;
	top: 50px;
	width: 16rem;
	max-height: calc( 100vh - 50px );
	overflow-x: hidden;
	overflow-y: auto;
}

body > section {
	flex-grow: 1;
	padding: 2em;
}

table.values {
	border-collapse: collapse;
	width: 100%;
}
table.values tr {
	position: relative;
}
table.values tr .progress {
	position: absolute;
	left: 0;
	bottom: 0.5em;
	width: 100%;
}
table.values tr:hover {
	background: rgba(var(--color-secondary-rgb), 0.1);
	filter: brightness(1.2);
}
table.values tr th a {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
table.values th,
table.values td {
	padding: 0.5em;
	padding-bottom: 1.5em;
}
table.values th:first-child,
table.values td:first-child {
	padding-left: 0;
}
table.values th:last-child,
table.values td:last-child {
	padding-right: 0;
}
table.values th {
	text-align: left;
}
table.values td {
	text-align: right;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: -1em;
}
.flex > article {
	flex-grow: 1;
	min-width: 20em;
	padding: 1em;
}

#home {
	position: absolute;
	left: 4rem;
	top: 0.2rem;
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 2.5em;
	text-decoration: none;
	font-weight: bold;
	color: var(--color-primary);
	/*margin-bottom: 1.5rem;*/
	/*background: url("sauron-eye.e13c532d3e55.png") no-repeat center top;
	background-size: contain;
	width: 100%;
	height: 6em;*/
}
#home img {
	margin-right: 10px;
}
#home::after {
	content: "beta";
	position: absolute;
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 500;
	color: #fff;
	background: #07c180;
	padding: 0.1rem 0.4rem;
	border-radius: 1rem;
	right: -1.5rem;
	top: -0.1rem;
}
a.anchor {
	position: absolute;
	display: block;
	margin-top: calc( -50px - 1rem );
}
.server-details article {
	padding-top: 1em;
	padding-bottom: 1em;
}
.server-details canvas {
	display: block;
	width: 100% !important;
	max-width: 100%;
	height: 80%;
	max-height: 80%;
}

.loading {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle cx='50' cy='50' r='0' fill='none' stroke='%23333333' stroke-width='2'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='1s' values='0;40' keyTimes='0;1' keySplines='0 0.2 0.8 1' calcMode='spline' begin='0s'%3E%3C/animate%3E%3Canimate attributeName='opacity' repeatCount='indefinite' dur='1s' values='1;0' keyTimes='0;1' keySplines='0.2 0 0.8 1' calcMode='spline' begin='0s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='50' cy='50' r='0' fill='none' stroke='%23333333' stroke-width='2'%3E%3Canimate attributeName='r' repeatCount='indefinite' dur='1s' values='0;40' keyTimes='0;1' keySplines='0 0.2 0.8 1' calcMode='spline' begin='-0.5s'%3E%3C/animate%3E%3Canimate attributeName='opacity' repeatCount='indefinite' dur='1s' values='1;0' keyTimes='0;1' keySplines='0.2 0 0.8 1' calcMode='spline' begin='-0.5s'%3E%3C/animate%3E%3C/circle%3E%3C/svg%3E")
		no-repeat center center;
}
.server-details canvas.loading {
	background-color: rgba(var(--color-default-rgb), 0.1);
}
.card {
	border-radius: 0.2rem;
	background: white;
	box-shadow: 2px 2px 6px #00000020;
	padding: 1em;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin: -1.5rem;
	padding: 1rem;
}
.col-3 {
	flex-grow: inherit !important;
	width: 25%;
	display: flex;
	flex-direction: column;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: -1em;
}
.row > article {
	padding: 0.5rem;
}

table th p {
	margin: 0px;
	font-weight: 500;
	font-size: 17px;
	color: #223345;
}
table td p {
	margin: 0px;
	font-size: 15px;
}
.card h2 a {
	text-decoration: none;
	color: var(--color-primary);
	font-weight: 500;
}
.card h2 {
	position: relative;
}
body > section .card h2 {
	margin-top: 0.3rem;
	margin-bottom: 3rem;
}
.card .divider-line {
	position: absolute;
	left: -1rem;
	bottom: -1rem;
	width: calc(100% + 2rem);
	display: block;
	height: 1px;
	background: #c2c4c580;
}
.status .updated {
	color: #07c180 !important;
	font-weight: 600;
	line-height: 1;
}
.status .error {
	color: #ff9931 !important;
	font-weight: 600;
	line-height: 1;
}
.status .updated span,
.status .error span {
	font-size: 18px !important;
	line-height: 1;
}
.d-flex {
	display: flex;
}
.flex-column {
	flex-direction: column;
}
.justify-content-between {
	justify-content: space-between;
}
.status p {
	margin: 0.3rem 0rem;
}
.text-end:not(.quick-menu .text-end),
.text-end:not(.quick-menu .text-end) > * {
	text-align: right;
}
.ln-1,
.ln-1 > * {
	line-height: 1.4;
}
.mb-4 {
	margin-bottom: 2rem;
}

.quick-menu .col-3 {
	width: 100%;
}
.quick-menu .card {
	background: inherit;
	box-shadow: none;
}
.quick-menu .status .d-flex {
	padding: 0rem 1rem;
	flex-direction: column;
}
.quick-menu .status p:not(.updated):not(.error) {
	font-size: 14px;
}
.quick-menu table th,
.quick-menu table th p {
	color: #fff;
}
.quick-menu table th {
	font-weight: 400;
	font-size: 15px;
	padding-bottom: 5px;
}
.quick-menu table td {
	font-size: 15px;
}

.flex-wrap {
	flex-wrap: wrap;
}
.h-100 {
	height: 100%;
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track {
	background: #e3e3e330;
}

::-webkit-scrollbar-thumb {
	background: #717379;
	border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.interval-selector {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	/*background: rgba(var(--color-white-rgb), 0.5);
	backdrop-filter: blur(5px);
	border: 2px solid #cdd9df;
	border-radius: 2px;*/
	padding: 0.5em;
}
.interval-selector button {
	border-radius: 3px;
	background: #223345;
	color: white;
	padding: 0.5rem 1.5rem;
	font-weight: 500;
	cursor: pointer;
	border: 1px solid #c2c4c580
}
.interval-selector button.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
}
.interval-selector button:disabled {
	opacity: 0.5;
}
table th {
	word-break: break-word;
}
table td {
	white-space: nowrap;
}
#mobile-menu {
	height: 50px;
	background: #223345;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 99;
}
#toggler {
	content: url("../core/icons8-menu.91e1cabd10aa.svg");
	width: 30px;
	margin: 10px;
	cursor: pointer;
	user-select: none;
}
.d-none {
	display: none;
}
nav {
	margin-top: 50px;
}
section {
	margin-top: 50px;
}
@media (min-width: 320px) {
	.col-3:not(.quick-menu .col-3) {
		width: 100%;
	}
}

@media (min-width: 768px) {
	.col-3:not(.quick-menu .col-3) {
		width: 100%;
	}
}

@media (min-width: 992px) {
	.col-3:not(.quick-menu .col-3) {
		width: 50%;
	}
}

@media (min-width: 1200px) {
	.col-3:not(.quick-menu .col-3) {
		width: 50%;
	}
}

@media (min-width: 1400px) {
	.col-3:not(.quick-menu .col-3) {
		width: 33.3333%;
	}
}
@media (min-width: 1700px) {
	.col-3:not(.quick-menu .col-3) {
		width: 25%;
	}
}
@media (max-width: 767px) {
	section {
		padding: 1em !important;
	}
}
.danger {
	animation: pulse 1.5s infinite;
}
.danger .progress > span {
	background: var(--color-danger);
}
@keyframes pulse {
	0% {
		background: rgba(255, 0, 0, 0.17);
	}
	50% {
		background: rgba(255, 0, 0, 0.3);
	}
	100% {
		background: rgba(255, 0, 0, 0.17);
	}
}

#home .eye-closed {
	position: absolute;
	clip-path: inset(0 0 100% 0);
	animation: wink 15s infinite;
	animation-delay: 5s;
}
@keyframes wink {
	0% {
		clip-path: inset(0 0 100% 0);
	}
	1% {
		clip-path: inset(0 0 0 0);
	}
	2% {
		clip-path: inset(0 0 100% 0);
	}
}

#sideMenu {
	display: none;
}
body > section {
	min-width: 100%;
}
@media (min-width: 768px) {
	#sideMenu {
		display: block;
	}
	body > section {
		min-width: auto;
	}
}
