@import url('/fontawesome/css/fontawesome.min.css');
@import url('/fontawesome/css/brands.min.css');
:root {
	--stillwater: #71A3B1;
	--thermal: #3F4F52;
	--raffia-ribbon: #CBAE8C;
	--color-c-red: #e63946;
	--color-c-light: #f0efeb;
	--color-c-sky-blue: #a8dadc;
	--color-c-blue: #457b9d;
	--color-c-dark-blue: #1d3557;
	--color-c-green: #8edf34;
	--size-1: 8px;
	--size-2: 10px;
	--size-3: 12px;
	--size-4: 14px;
	--size-5: 15px;
	--size-6: 16px;
	--size-7: 18px;
	--size-8: 19px;
	--size-9: 20px;
	--size-10: 22px;
	--size-11: 24px;
	--size-12: 25px;
	--size-13: 26px;
	--size-14: 30px;
	--font-size-1: 26px;
	--font-size-2: 24px;
	--font-size-3: 22px;
	--font-size-4: 20px;
	--font-size-5: 18px;
	--font-size-6: 16px;
	--font-size-7: 14px;
	--font-size-8: 12px;
}
* {
	outline: none;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}
a, a:visited {
	text-decoration: none !important;
}
html, body {
	font-size: 16px;
	-webkit-overflow-scrolling: touch;
}
body {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif,Arial;
	background-color: #293241;
}
img {
	max-width: 100%;
}
.c-pointer{ cursor: pointer; }
.disabled { opacity: 0.5 !important; cursor: not-allowed !important; }
.opacity-50 { opacity: 0.5 !important; }
.land-section {
	min-height: 100vh;
	background-position: center center;
	background-size: cover;
}
.navbar {
	transition: 0.3s;
	font-size: 1.1em;
	background: var(--thermal);
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	padding: 0.5em;
}
.navbar-links {
	list-style: none;
	padding: 0;
}
.navbar-items {
	cursor: pointer;
	display: inline-block;
	margin: 0 4px;
}
.navbar-items > * {
	transition: 0.2s;
	border-bottom: 2px solid currentColor;
	display: inline-block;
	padding: 5px;
}
.navbar-items, .navbar-items a, .navbar-items a:visited {
	color: white;
}
.navbar-items.active {
	font-weight: bold;
}
.navbar-items.active, .navbar-items:hover > * {
	color: var(--raffia-ribbon) !important;
}

.c-container {
	background: #0d1b2a;
	width: 80%;
	min-height: 100vh;
	position: relative;
	z-index: 0;
	transform: translateX(-50%);
	left: 50%;
	margin-top: 70px;
}

.loader-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	opacity: 0;
	background: rgba(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.loader-container.active {
	opacity: 1;
}

.loader-container.retry {
	background: rgba(0,0,0,0.8);
}

.loader-container > div {
	width: 54px;
	max-height: 100%;
	text-align: center;
	margin: auto;
	height: 54px;
}

.loader-container.retry > div {
	height: unset;
	width: auto;
}

.loader-container img {
	padding: 5px;
	height: 100%;
	max-width: 75px;
	animation-name: loader-spin;
	animation-iteration-count: infinite;
	animation-duration: 2s;
	transition: 0s;
	animation-timing-function: linear;
}

.loader-retry {
	color: #f0f0f0;
	vertical-align: middle;
	line-height: 0;
	cursor: pointer;
}

@-moz-keyframes loader-spin { 0% {-moz-transform: rotate(0deg);} 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes loader-spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } }
@keyframes loader-spin { 0% { -webkit-transform: rotate(0deg); transform:rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

#bots-list > .bot-row {
	margin: var(--size-1) 0;
	padding: var(--size-1);
	width: 33%;
}

.bot-row > * {
	vertical-align: middle;
}

.bot-status {
	width: 25px;
	display: inline-block;
	text-align: center;
}

.alert-text {
	white-space: pre-line;
}

.is-live {
	position: relative;
}

.is-live::before {
	display: none;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	background: var(--color-c-green);
	border-radius: 50%;
}

.is-live.active::before {
	display: block;
	animation-name: live-status;
	animation-iteration-count: infinite;
	animation-duration: 1s;
	transition: 0s;
	animation-timing-function: linear;
}

@-moz-keyframes live-status { 0% {opacity: 0} 50% { opacity: 1 } 100% {opacity: 0} }
@-webkit-keyframes live-status { 0% {opacity: 0} 50% { opacity: 1 } 100% {opacity: 0} }
@keyframes live-status { 0% { opacity: 0 } 50% { opacity: 1 } 100% {opacity: 0} }

footer {
	background-color: var(--color-c-dark-blue);
	color: white;
	padding: var(--size-5);
}

@media only screen and (max-width: 1366px)
{
	#bots-list > .bot-row {
		width: 50%;
	}
}

@media only screen and (max-width: 990px)
{
	html, body {
		font-size: 2vw;
	}
	:root {
		--font-size-1: 23px;
		--font-size-2: 21px;
		--font-size-3: 19px;
		--font-size-4: 17px;
		--font-size-5: 15px;
		--font-size-6: 14px;
		--font-size-7: 13px;
		--font-size-8: 12px;
	}
	#bots-list > .bot-row {
		width: 100%;
	}
}

@media only screen and (max-width: 550px)
{
	:root {
		--font-size-1: 6vw;
		--font-size-2: 5vw;
		--font-size-3: 5vw;
		--font-size-4: 5vw;
		--font-size-5: 3.7vw;
		--font-size-6: 1vw;
		--font-size-7: 1vw;
		--font-size-8: 1vw;
	}
	html, body {
		font-size: 4vw;
	}
	.c-container {
		margin-top: 17vw;
		width: 100%;
	}
	.bot-status {
		width: var(--size-14);
	}
	#bots-list > .bot-row {
		margin: 0;
	}
}