@charset "ISO-8859-1";
h1 {
	color: silver;
}

h2 {
	color: silver;
}

h6 {
	color: silver;
}

.hide {
	display: none;
}

.container {
	border: 5px solid black;
}

.round_guage {
	width: 180px; 
	height: 180px;
	line-height: 180px
	float: center;
	background-image: url('images/guage_plate_180.png');
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.guage_group1 {
	clear:both;
	display: grid;
	grid-template-columns: 180px 180px 180px 180px;
}

.guage_group2 {
	clear:both;
	display: grid;
	grid-template-columns: 180px 180px 180px 180px;
}

.status_group {
	clear: both;
	width: 100%;
	width: 90px; 
	height: 157px;
	padding-top: 14px;
	padding-left: 73px;
	padding-right: 17px;
	padding-bottom: 9px;
	justify-content: center;
	background-image: url('images/guage_plate_180_status.png');
}

.led {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 80%;
	position: relative;
	height: 30px;
	width: 30px;
}

.led::after {
	border-right: 3px solid rgba(255, 255, 255, 0.6);
	border-radius: 100%;
	content: ' ';
	position: absolute;
	top: 3px;
	left: 0px;
	width: 23px;
	height: 23px;
}

.led.red {
  background-color: #c0392b;
  box-shadow: 0 0 20px 5px #c0392b;
}

.led.yellow {
  background-color: #f1c40f;
  box-shadow: 0 0 20px 5px #f1c40f;
}

.led.green {
	background-color: #2ecc71;
	box-shadow: 0 0 20px 5px #2ecc71;
}

.blink0 {
	animation: blink 0.5s linear infinite;
}
.blink1 {
	animation: blink 1s linear infinite;
}  

.blink2 {
	animation: blink 2s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0.4;
    }
    25% {
        opacity: 1.0;
    }
    50% {
        opacity: 1.0;
    }
    75% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.4;
    }
}

.state_group {
	display: grid;
	grid-template-columns: 30px 30px 60px 1fr;
	grid-template-rows: 30px 30px 30px 30px 30px 30px;
	column-gap: 10px;
	background-image: url('images/guage_plate_180_state.png');
}

.state_led {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 80%;
	position: relative;
	height: 30px;
	width: 30px;
	grid-column: 2;
}

.state_led::after {
	border-right: 3px solid rgba(255, 255, 255, 0.6);
	border-radius: 100%;
	content: ' ';
	position: absolute;
	top: 3px;
	left: 0px;
	width: 23px;
	height: 23px;
}

.state_label {
	grid-column: 3;
	padding-left: 5px;
	vertical-align: middle;
	line-height: 30px;
	font-size: 14px;
	font-family: Tahoma, Verdana, Helvetica, sans-serif;
	font-style: normal;
	font-variant: small-caps;
	color: #cad1dd;
	font-weight: 900;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 20%
}
.state_header {
	grid-column: 1 / span 4;
}
.state_footer {
	grid-column: 1 / span 4;
}

#state_group_value {
	display: none;
}
#state_group:hover #state_group_value {
	display: block;
}



.state_led.green {
  background-color: #2ecc71;
  box-shadow: 0 0 20px 5px #2ecc71;
}

.state_led.blue {
  background-color: midnightblue;
  box-shadow: 0 0 20px 5px midnightblue;
}