/***LEDs***/


.light-led {
  width:26px;
  height:26px;
	/*position: absolute;*/
	/*left: 2em;*/
	border-radius:50%
}

.light-led span {
    display: block;
    -webkit-transition: top 0.2s;
    -moz-transition: top 0.2s;
    -ms-transition: top 0.2s;
    -o-transition: top 0.2s;
    transition: top 0.2s;
}

.light-led-red.lights-up {
    /*bottom: -5em;*/
    /*border-top: 0.1em solid rgba(237, 28, 36, 0.2);*/
    /*border-bottom: 0.1em solid rgba(255, 255, 255, 0.25);*/
    /*-webkit-box-shadow: 0 0 3em rgb(237, 28, 36);*/
    /*-moz-box-shadow: 0 0 3em rgb(237, 28, 36);*/
    box-shadow: 0 0 26px rgb(237, 28, 36);
}

/*.light-led-red {*/
    /*-webkit-box-shadow: none;*/
    /*-moz-box-shadow: none;*/
    /*box-shadow: none;*/
/*}*/

.light-led-border {
  width:26px;
  height:26px;
  /*background:rgba(0,0,0,.6);*/
  border-radius:50%;
}
 
.lights-up .light-led-border {
  background:transparent;
	/*border: 0.2em solid black;*/
	/*border-radius: 1.3em;*/
}

/*.light-led-red */
.lights-up .light-led-light {
    /*background: rgb(237, 28, 36);*/
    /*border: 0.1em solid rgb(161, 30, 45);*/
}

.lights-up .light-led-light {
	border-radius: 1.1em;
	-webkit-box-shadow: 0 0 0.5em rgba(255,255,255,0.5) inset;
	-moz-box-shadow: 0 0 0.5em rgba(255,255,255,0.5) inset;
	box-shadow: 0 0 0.5em rgba(255,255,255,0.5) inset;
}

.light-led-glow{
	width: 0px;
	height: 0px;
}
.lights-up .light-led-glow {
	width: 26px;
	height: 26px;
	position: relative;
	border-radius: 1em;
}

/*
	top: 0.3em;
	left: 0.7em;
* /
.lights-up .light-led-glow:before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	position: absolute;
	background: rgba(255,255,255,0.2);
	border-radius: 0.3em;
	-webkit-box-shadow: 0 0 1em rgba(255,255,255,0.75);
	-moz-box-shadow: 0 0 1em rgba(255,255,255,0.75);
	box-shadow: 0 0 1em rgba(255,255,255,0.75);
}

.lights-up .light-led-glow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -4px;
	left: -4px;
	opacity: 0.2;
	filter: alpha(opacity=20);
	border: 1em solid #fff;
	border-color: transparent #fff transparent #fff;
	border-radius: 1em;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
/**/

/*.light-led:after {*/
/*	display: block;*/
/*	width: 100%;*/
/*	position: absolute;*/
/*	left: 0;*/
/*	color: #666;*/
/*	font-family: arial, verdana, sans-serif;*/
/*	font-weight: bold;*/
/*	text-align: center;*/
/*	text-shadow: 0 0.1em rgba(0,0,0,0.7);*/
/*}*/
.light-base{
  opacity:0.6;
}
.lights-up .light-base{
  opacity:1;
}



.led.red,
.led.red.off {
  -webkit-box-shadow: 0px 0px 15px rgba(90, 90, 90, 0.6) inset;
  -khtml-box-shadow: 0px 0px 15px rgba(90, 90, 90, 0.6) inset;
  -moz-box-shadow: 0px 0px 15px rgba(90, 90, 90, 0.6) inset;
  -ms-box-shadow: 0px 0px 15px rgba(90, 90, 90, 0.6) inset;
  -o-box-shadow: 0px 0px 15px rgba(90, 90, 90, 0.6) inset;
  box-shadow: 0px 0px 15px rgba(90, 90, 90, 0.6) inset;
  background-color: #570000;
  transition: all 0.1s linear;
}


.lights-up .led.red,
.led.red.on{
  background-color: #f00000;
  -webkit-box-shadow: 0px 0px 15px rgba(230, 230, 230, 0.6) inset, 0px 0px 15px rgba(240, 0, 0, 0.9);
  -khtml-box-shadow: 0px 0px 15px rgba(230, 230, 230, 0.6) inset, 0px 0px 15px rgba(240, 0, 0, 0.9);
  -moz-box-shadow: 0px 0px 15px rgba(230, 230, 230, 0.6) inset, 0px 0px 15px rgba(240, 0, 0, 0.9);
  -ms-box-shadow: 0px 0px 15px rgba(230, 230, 230, 0.6) inset, 0px 0px 15px rgba(240, 0, 0, 0.9);
  -o-box-shadow: 0px 0px 15px rgba(230, 230, 230, 0.6) inset, 0px 0px 15px rgba(240, 0, 0, 0.9);
  box-shadow: 0px 0px 15px rgba(230, 230, 230, 0.6) inset, 0px 0px 15px rgba(240, 0, 0, 0.9);
}

