/*** base ***/

:root {
	--color-accent: #ED3237;
	--color-text: #1a1a1a;
	--color-link:  #2f2f2f;

	--color-grey: #434343;
	--color-placeholder: #676767;
	--color-lg: #979797;
	--color-light:  #f1f1f1;
	--color-border:  #f5f5f5;
	--color-lbg: #fefefe;
	--color-mid: #e0e0e0;
	--color-error: #993333;
	--color-ok:  #339933;
	--color-white: #fff;
	--color-dark: #272727;
	--rgba-white: rgba(255,255,255,0.7);
	--rgba-dark: rgba(0,0,0,0.7);
}
body, html { 
	margin: 0; 
	padding: 0; 
	width: 100%; 
	min-height: 100%; 
	height: auto; 
	font-size: 16px; 
	font-family: 'Noto Sans Display', sans-serif;
	overscroll-behavior: none;
	background: linear-gradient(to bottom, var(--color-grey) 0%, var(--color-dark) 100%);
	background-attachment: fixed;
}
* { 
	box-sizing: border-box; 
}
*, *::before, *::after {
	box-sizing: border-box;
	/*user-select: none;*/
}
a {
	text-decoration: none;
	color: var(--color-link);
}
h1,h2,h3,h4,h5,h6 {
	color: var(--color-text);
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 26px;
	text-align: center;
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
}
.no-scroll {
	overflow: hidden;
}
.grecaptcha-badge{
	visibility: collapse !important;  
}
input[type="submit"]:disabled {
	filter: grayscale(100%);
	transition: all 0.2 ease-in-out;
}
input, textarea {
	border:  1px solid var(--color-light);
	border-radius: 4px;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--color-text); 
    overflow: hidden;
}
::-webkit-scrollbar-thumb {
    background: var(--color-grey); 
}
:focus{
    outline:none;
}
.btn {
	padding:  5px 15px;
	height: 35px;
	border:  1px solid var(--color-accent);
	background: var(--color-accent);
	color:  var(--color-white);
	text-align: center;
	border-radius:  4px;
	cursor:  pointer;
}
.btn-light {
	background:  var(--color-white);
	color: var(--color-accent);
}
.red, .green {
	border-radius: 3px;
	padding: 2px 5px;
	margin: 0 10px;
	color: #fff;
	background: var(--color-error);
}
.green {
	background: var(--color-ok);
}
/*** layout ***/
#wrapper {
	width: 100%;
	height: 100%;
	max-height: 100vh;
}
#container {
	width: 100%;
	max-width: 1080px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.4);
	height: 100vh;
	margin: 0 auto;
	padding: 25px;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.cont {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 15px;
}
.server {
	width: 100%;
}
#mixed {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
#mixed .server {
	width: auto;
	flex-direction: column;
	align-items: flex-start;
}
#wg, #sub {
	padding: 10px 10px 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#wg > div, #sub > div {
	margin-bottom: 5px;
}
.block {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
}
.status-item {
	background: var(--color-ok);
	margin-right: 1px;
}
.status-item, .simple-item, .ports-item, .disks-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	color: #fff;
}
.status-item.bad {
	background: var(--color-error);
}
.sp  {
	background: transparent !important;
	color: var(--color-text) !important;
}
.disks-item {
	flex-grow: 1;
}
.bar {
	width: calc(100% - 0px);
	height: 25px;
	border: 1px solid #464646;
	background: #c0c0c0;
	position: relative;
	border-radius: 2px;
}
.bar-inner {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 2px;
	background: #339933;
}
.bar span {
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translate(0, -50%);
	text-shadow: 1px 1px 1px #000;
	color: #fff;
}
.bar span.end {
	left: unset;
	right: 5px;
	font-size: 12px;
}
.server-title {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	background: var(--color-border);
	border: 1px solid var(--color-mid);
	padding: 5px 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	transition: all 0.2s ease;
}
#mixed .server-title {
	border-radius: 0;
}
.error .server-title {
	background: var(--color-error);
	color: #fff !important;
	transition: all 0.2s ease;
}
.error .server-title h2 {
	color: #fff !important;
	transition: all 0.2s ease;
}
.server-info {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--color-mid);
	border-top: 0;
	padding: 10px 0 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.server-ping {
	margin-left: 20px;
}
.server-title h2 {
	font-size: 18px;
}
/*** media queries ***/

@media screen and (min-width: 500px) {
	
	
}
@media screen and (min-width: 750px) {
	
}
@media screen and (min-width: 1000px) {
	
}
@media screen and (min-width: 1200px) {
	
}
@media screen and (min-width: 1350px) {
	
}
@media screen and (min-width: 1800px) {
	
}
