@font-face {
    font-family: 'Calculator';
    src: url('../fonts/Calculator.ttf');
}

.noja .centrar-elementos {
    position: relative;
    display: flex;
    align-items: center;
    height: 417px;
    justify-content: center;
}

.noja .frente_container {
    position: absolute;
    height: auto;
    width: 330px;
    text-align: center;
    top: 0;
    margin-top: 2px;
}

.noja .btn-gray {
    position: absolute;
    background-color: #c7cccf;
    padding: 2px;
    color: #252728;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    font-size: 6px;
    border-radius: 27px;
    width: 27px;
    height: 27px;
    line-height: 24px;
    font-weight: bold;
}

.noja .btn-red {
    position: absolute;
    background-color: #ee5b3e;
    padding: 2px;
    color: #c5c6cb;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    font-size: 22px;
    border-radius: 28px;
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-weight: bold;
}

.noja .btn-green {
    position: absolute;
    background-color: #008559;
    padding: 2px;
    color: #c5c6cb;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    font-size: 22px;
    border-radius: 28px;
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-weight: bold;
}

.noja .led {
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 5px;
    background-color: #a8aab1;
}

.noja .led.rojo {
    background-color: red;
}

.noja .pantalla-noja {
    font-family: 'Calculator';
    position: absolute;
    display: block;
    top: 95px;
    left: 61px;
    color: black;
    font-size: 17px;
    width: 210px;
    height: 156px;
    text-align: left;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.noja .noja-cont-pantalla{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-flow: column;
}

.noja .noja-cont-pantalla .item{
    margin-bottom: 10px;
}

.noja .pantalla-noja.cerrado {
    background-color: #fb060699;
    color: white !important;
}

.noja .pantalla-noja.abierto {
    background-color: #52ce52b5;
}

/* BOTONES */

.noja #btn-mode{
    top: 42px;
    left: 65px;
}

.noja #btn-on{
    top: 43px;
    right: 101px;
}

.noja #btn-off{
    top: 43px;
    right: 57px;
}

.noja #btn-prot{
    top: 366px;
    left: 65px;
}

.noja #btn-ef{
    top: 410px;
    left: 65px;
}

.noja #btn-sef{
    top: 452px;
    left: 65px;
}

.noja #btn-grp{
    top: 365px;
    left: 153px;
}

.noja #btn-ar{
    top: 366px;
    right: 62px;
}

.noja #btn-clp{
    top: 410px;
    right: 62px;
}

.noja #btn-ll{
    top: 452px;
    right: 62px;
}

.noja .btn-gray:active,
.noja .btn-red:active,
.noja .btn-green:active {
    transform: perspective(600px) translateZ(-75px) rotateZ(-0.5deg) rotateX(-10deg);
}

/* LEDS */
#led-noja-local{
    top: 36px;
    left: 63px;
}

#led-noja-remote{
    top: 36px;
    left: 89px;
}

#led-noja-closed{
    top: 36px;
    left: 213px;
}

#led-noja-open{
    top: 36px;
    left: 257px;
}

#led-noja-prot-on{
    top: 360px;
    left: 63px;
}

#led-noja-prot-off{
    top: 360px;
    left: 89px;
}

#led-noja-ef-on{
    top: 403px;
    left: 63px;
}

#led-noja-ef-off{
    top: 403px;
    left: 89px;
}

#led-noja-sef-on{
    top: 446px;
    left: 63px;
}

#led-noja-sef-off{
    top: 446px;
    left: 89px;
}

#led-noja-grp-1{
    top: 360px;
    left: 144px;
}

#led-noja-grp-2{
    top: 360px;
    left: 157px;
}

#led-noja-grp-3{
    top: 360px;
    left: 170px;
}

#led-noja-grp-4{
    top: 360px;
    left: 183px;
}

#led-noja-ar-on{
    top: 360px;
    right: 87px;
}

#led-noja-ar-off{
    top: 360px;
    right: 60px;
}

#led-noja-clp-on{
    top: 402px;
    right: 87px;
}

#led-noja-clp-off{
    top: 402px;
    right: 60px;
}

#led-noja-ll-on{
    top: 446px;
    right: 87px;
}

#led-noja-ll-off{
    top: 446px;
    right: 61px;
}

/* RESPONSIVE FRENTE */

@media (min-width: 1600px) {
    .noja .frente_container {
        transform: scale(1.4) !important;
        top: 105px !important;
    }
}

@media (min-width: 1300px) {
    .noja .frente_container {
        transform: scale(1.25);
        top: 70px;
    }
}

