@keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
  }
  
  .monitor * {
	  box-sizing: border-box;
  }
  
  body.monitor {
	  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	  font-size: 14px;
	  margin: 0;
	  color: #444;
	  padding-top: 10vh;
  }
  
  .monitor #page {
	  width: 100vw;
	  height: auto;
	  padding: 0 0 2rem;
	  margin: 0;
  }
  @media (min-width: 767px) { 
	  .monitor #page {
		  width: 760px;
		  margin: auto;
	  }
  }  
  
  .monitor #header {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%; 
	  height: 10vh;
	  margin: 0; 
	  padding: 2.5vh 2rem;
	  background: linear-gradient(160deg, rgb(0,255,0) 0%, rgb(85,187,240) 100%);
	  text-align: center;
	  color: #fff;
  }
  .monitor #header h1 {
	  margin: 0;
  }
  @media (min-width: 767px) { 
	  .monitor #header {
		  padding: 1.5rem 2rem;
		  border-radius: 0 0 0.4rem 0.4rem;
	  }
	  
  }	
  
  .monitor h1.preview {
	  float: left;
	  width: 90%;
	  font-size: 2rem;
	  margin: 5%;
	  text-align: center;
  }
  @media (min-width: 767px) { 
	  .monitor h1.preview {
		  font-size: 2rem;
	  }
	  
  }	
  
.monitor #info, .monitor #message {
	position: relative;
	float: left;
	width: 96%; 
	height: auto;
	margin: 2%; 
	padding: 0.25rem; 
	border-radius: 1rem;
	background: linear-gradient(160deg, rgb(0,255,0) 0%, rgb(85,187,240) 100%);
}
.monitor #message {	
	text-align: center;
  }
  .monitor #info {
	margin-bottom: 5rem;
  }
.monitor #info.offline, .monitor #message.offline, .monitor #header.offline {
	background: linear-gradient(160deg, #ffaa00 0%, #ff0000 100%);
  }

  .monitor .content {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 1.25rem;
	border-radius: 0.8rem;
	background: #fff;
	color: #333;
  }
  .monitor #message h2 {
	background: linear-gradient(130deg, rgb(0,255,0) 0%, rgb(85,187,240) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.75rem;
	text-align: left;
    margin: 0;
  }
  .monitor #message.offline h2 {
	background: linear-gradient(160deg, #ffaa00 0%, #ff0000 100%);
	-webkit-background-clip: text;
  }
  .monitor #message hr {
	width: 100%;
	border: 0.5px solid #333;
  }
  .monitor #message span, .monitor #message h3 {
	float: left;
	width: 100%;;
  }
  .monitor #message li.contact {
	list-style: none;
	font-size: 4.25rem;
	width: 6rem;
	height: 6rem;
	margin: 0 1rem 1rem 0;
	color: #fff;
	font-weight: bold;
	
	padding: 0;
	border-radius: 50%;
	background: #ffffff;
	text-align: center;
	display: inline-block;
  }
  .monitor #message li.contact a {
	color: #fff;
	text-decoration: none;
  }
  .monitor #message li.contact a img {
	height: 60%;
	margin: 20%;
	filter: invert(1);
  }
  .monitor #message li.contact.phone {
	background: linear-gradient(160deg, rgb(0,255,0) 0%, rgb(0,200,0) 80%);
  }
  .monitor #message li.contact.mail {
	background: linear-gradient(135deg, rgb(240,85,231) 0%, rgb(85,187,240) 100%);
  }
  .monitor #message.offline li.contact {
	background: linear-gradient(160deg, #ffaa00 0%, #ff0000 100%) !important;
  }
  
  .monitor #message a.cms {
	display: inline-block;
	margin: 1rem 0;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 0.4rem;
	background: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 80%;
	letter-spacing: 1px;
	color: #333;
	background-size: auto 50%;
	background-repeat: no-repeat;
	background-position: 0.75rem center;
	padding-left: 2.25rem;
	background-image: url(images/view.svg);
}
.monitor li.status {
	list-style: none;
	font-size: 3rem;
	width: 4rem;
	height: 4rem;
	margin: 0 1rem 10rem 0;
	color: #fff;
	font-weight: bold;
	float:left;
	text-align: center;
	padding: 0.25rem;
	border-radius: 50%;
	background: #ffffff;
}
.monitor li.status.online {
	color: #00ff00;
}
.monitor li.status.online {
	border: 1px solid #00ff00;
}
.monitor li.status.no_install {
	color: #ff9000;
}
.monitor li.status.offline {
	color: #d9534f;
	border: 1px solid #d43f3a;
	padding: 0.1rem;
}
  

#info li {
	list-style: none;
    margin-top: 0.5rem;
}
  
@media (min-width: 767px) { 
	.monitor li.status {
		margin-bottom: 1rem;
	}
	.monitor #message span, .monitor #message a.cms {
		float: right;
		text-align: right;
		margin: 0 0 2% 0;
	}
}  
