body {
	font-family: Arial, Helvetica, sans-serif;
}

/*Loader animation*/
#loader {	
  width: 150px;
  height: 150px;

  border: 16px solid #f3f3f3; /*White circle background*/  
  border-radius: 50%;
 
 /*border-top: 16px solid #3498db;*/
 border-top: 16px solid #8B3131;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.flex-loader{
  display: flex;
  /*justify-content: center;*/	
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  font-size: 2em; 
  font-weight: bold;
}



.backImage{
	background-image:url("../img/temp_probe/temp_background.jpg");
	background-repeat:no-repeat;

}
    

.sensor_block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;	
}

.div_sensor{
	width: 300px;
	margin-top: 200px;	
	margin-bottom: 10px;	
	color:white;
	overflow: auto;
	box-sizing: border-box;
	box-shadow: 2px 2px 12px 1px rgba(40,40,40,0.5); 
}

.div_text{	
	padding: 30px 0;
	color: white;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

.div_2rowTxt{
	padding: 20px 0;
	color: white;
	font-size: 30px;
	font-weight: bold;
	text-align: center;	
}



.update_txt {
  /*float: right;  */
  overflow: auto;
  text-shadow: 2px 2px 5px white;
  margin-top: 100px;	
  /*margin-right: 5px;  */
}

/*Report button CSS*/
a:link, a:visited {
  background-color: DarkBlue;
  color: white;
  padding: 14px 25px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: Blue;
}

img{
	margin: 5px;	
}

/* Responsive web setting*/
/* HD desktop*/
@media (min-width: 1920px) {
  body {
    width: 50%;
	margin-left: 3em;	
  }
}

/* Large desktop :1170px~1919px. */
@media (min-width: 1170px) and (max-width: 1919px) {
  body {
    width: 50%;
	margin-left: 3em;	
  }		
}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
  body {
    width: 90%;
	margin-left: 3em;	
  }		
}


/* Tablet desktop :768px. */

@media (min-width: 768px) and (max-width: 991px) {
  body {
    width: 90%;
	margin-left: 2em;	
  }				
}

/* small mobile :320px. */

@media (max-width: 767px) {
  body {
    width: 90%;
	margin-left: 1em;	
  }	

}


/* Large Mobile :480px. */

@media only screen and (min-width: 480px) and (max-width: 767px) {
  body {
    width: 90%;
	margin-left: 1em;	
  }	

}


