﻿.supremo {
    background: #fff;
    box-sizing: border-box;
    width: 300px;
    margin: 50px auto;
    border: 1px solid #c3c3c3 !important;
}

.contenido {
    margin: 0 auto;
    box-sizing: border-box;
    padding: 5px 0px;
}

.caja b {
    margin-top: 20px;
    font-size: 1em;
    font-weight: normal;
}

.caja {
    margin: 5px auto !important;
    width: 100%;
    box-sizing: border-box;
}

.etiqueta {
    width: 240px;
    box-sizing: border-box;
    display: inline-block;
    text-align: left;
    margin: 5px auto 5px auto;
    padding-left: 3px;
    color: #81878b;
    font-size: 11pt;
}

.botonera {
    text-align: center;
}

.entrada {
    box-sizing: border-box;
    display: block;
    margin: 0px;
    box-sizing: border-box;
}

    .entrada input[type="text"] {
        height: 25px;
        width: 250px;
    }


    /*Campos entrada [input,select, checkbox]*/
    .entrada input[type="text"],
    .entrada input[type="password"] {
        padding: 5px;
        width: 100%;
        margin: 5px 0px;
        box-sizing: border-box;
        border-radius: 3px;
        color: #484b4d;
        border: 1px solid #a1a7ae;
        background-color: #fff;
        font-size: 14px !important;
        margin-left: 0px !important;
        height: 35px;
        line-height: 35px;
        border: 1px solid var(--inputBorder);
        transition: ease-out .1s;
        outline: none;
    }

        .entrada input[type="text"]:focus,
        .entrada input[type="password"]:focus {
            outline: none;
            border: 1px solid var(--FocusColor);
            box-shadow: var(--sombraFocus);
            content: '';
        }

        .entrada input[type="text"]:hover,
        .entrada input[type="password"]:hover {
            outline: none;
            border: 1px solid var(--FocusColor);
            content: '';
        }


/* Alerta validaciones */
.alertaInactiva {
    padding: 0px;
    height: 1px;
    text-align: center;
}

.alertaActiva {
    padding: 5px;
    min-height: 25px;
    color: #af0505;
    background-color: #fdeeee;
    border-bottom: 1px solid #e7b2b2;
    border-top: 1px solid #e7b2b2;
    font-size: 13px;
}

.alertaOK {
    padding: 5px;
    min-height: 25px;
    color: #1a621a;
    background-color: #e5f5dc;
    border-bottom: 1px solid #2b772b;
    border-top: 1px solid #2b772b;
    font-size: 13px;
    font-weight: bold;
}

.alertaIndicacion {
    padding: 5px;
    min-height: 25px;
    color: #957e00;
    background-color: #faf7df;
    border-bottom: 1px solid #bfaf2b;
    border-top: 1px solid #bfaf2b;
    font-size: 13px;
    font-weight: normal;
}



@media screen and (max-height: 600px) {
    .supremo {
        margin: 60px auto;
    }
}

@media screen and (max-width: 640px) {
    .supremo {
        width: 100% !important;
        margin: 30px 0 0 0;
    }

    .botonera {
        text-align: center;
    }
}
