
/***INICIO ESTILO BÁSICO DE PÁGINA***/

    html {
        min-height: 100vh;
        font-family: sans-serif;
        user-select: none;
    }

    body {
        min-height: 100%;
    }

    .clb { clear: both ; }

/***FIN ESTILO BÁSICO DE PÁGINA***/

/***INICIO ELEMENTO "SIN CONEXIÓN"***/
#no-connection{
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-image: url(/src/img/no-connection.png);
    border: 1px solid #999;
    border-radius: 5px;
    padding: 5px;
    position: fixed;
    bottom: 5px;
    left: 5px;
    display: none;
    z-index: 9999;
}
/***FIN ELEMENTO "SIN CONEXIÓN"***/

/***INICIO ESTILO BÁSICO DE ALERTAS***/

    #alerts {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999;
    }
    
    #alerts div {
        /*font-family: sans-serif;*/
        color: white;
        font-size: 16px;
        font-weight: bold;
        line-height: 16px;
        background-color: white;
        padding: 10px;
    }
    
    #alerts .alert-warn {
        background-color: #d78d00 ;
    }

    #alerts .alert-error {
        background-color: #9e2727 ;
    }

    #alerts .alert-info {
        background-color: #197c4a;
    }

/***FIN ESTILO BÁSICO DE ALERTAS***/


/***INICIO ESTILO DE CABEZERA BÁSICA***/

    .site-header{
        padding: 20px;
        position: relative;
        display: inline-block;
        margin-bottom: 30px;
    }

    .site-logo {
        width: 90px;
        height: 90px;
        display: inline-block ;
        float: left;
    }

    .site-logo img {
        width: 100%;
        height: 100%;
    }

    .site-name {
        font-family: sans-serif;
        font-size: 45px;
        line-height: 90px;
        margin-left: 20px;
        float: left;
    }

/***FIN ESTILO DE CABECERA BÁSICO***/


/***INICIO DE ESTILO DE ARTÍCULOS***/
    div#articles-box {
        backdrop-filter: blur(6px);
        padding: 40px 0;
    }

    .atitle {
        font-family: themefont2;
        font-size: 28px;
        font-weight: bold;
        text-align: center;
        color: #555;
        margin-bottom: 40px;
    }
    
/***FIN ESTILO DE ARTÍCULOS***/

.login-auth-wrapper {
    width: 100%;
    height: 100%;
    background-color: #333333aa;
    position: fixed;
    top: 0;
    left: 0;
}

.login-auth {
    max-width: 300px;
    padding: 20px;
    background-color: darkgray;
    border: 3px solid #444;
    border-radius: 5px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-auth-ok, .login-auth-cancel {
    width: calc(50% - 39px);
    font-size: 1.2em;
    font-weight: bold;
    border: 3px solid;
    border-radius: 2px;
    padding: 5px 10px;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
}

.login-auth-ok {
    color: seagreen;
}

.login-auth-cancel {
    color: indianred;
}

.login-auth div {
    text-align: center;
}