/* ########## VISTA PARA ESCRITORIO ########## */

header {
    top: 0vh;
    background-color:rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    color: #ffffff;
    text-align: center;
    padding: 0 15% 0 15%;
    display: flex;
    height: 7vh;
    align-items: center;
    z-index: 9;
    position: relative;
}

    #logotipo{
        flex: 1px;
        margin-top: 0px;
        text-align: left;
        padding: 0px 0px 0px 0px;
        height: 57px;
    }

    #menu {
        width: auto;
        z-index: 9;
        display: flex;
        justify-content: flex-end;
        text-align: right;
        padding: 6px 10px;
        gap: 0px;
        border-radius: 50em;
        /* Liquid Glass */
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(14px) saturate(150%);
        -webkit-backdrop-filter: blur(14px) saturate(150%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.25),
            inset 0 1px 1px rgba(255, 255, 255, 0.35);
    }


                     #usuarios-online {
                        font-size: 14px;
                        margin:  5px 0px 0px 0px;
                        line-height: 0.3;
                        display: block;
                        align-items: center;
                        font-family: poppins;
                        width: 65px;
                    }

                        #usuarios-online img {
                            margin: -5px 0 0 0;
                            display: inline-block;
                            align-items: center;
                            font-family: poppins;
                            transform: none;
                            }


                    #menu img {
                        width: 20px;
                        padding:5px;
                        flex: 1;
                        transform: scale(1);
                        transition: transform 0.5s ;
                        vertical-align: middle;
                        }

                            #menu img:hover{
                                transform: scale(1.3);
                                transition: transform 0.5s ;
                                }

#mensaje_principal {
    height: 50px;
    text-align: center;
    margin: auto;
    color: #000000;
    line-height: 0.2;
    font-size: 14.5px;
    font-family: poppins;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #000000;
    padding: 1px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    display: none;
}

/* ########## VISTA PARA SMARTPHONE ########## */

@media (max-width: 768px) {

header {
    top: 0px;
    color: #ffffff;
    text-align: center;
    padding: 0 5% 0 5%;
    display: flex;
    height: 6vh;
    align-items: center;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.0);
    z-index: 9;
    }
    
        #logotipo {
            flex: 1px;
            margin-top: 0px;
            text-align: left;
            padding: 0px 0px 0px 0px;
            height: 57px;
            z-index: 9;
            }

        #menu {
            text-align: right;
            z-index: 9;
            }
        
#mensaje_principal {
    display: none;
    position: relative;
    color: white;
    top:10px;
    border-radius: 50em;
    width: 90%;
    /* Liquid Glass */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);
}
    
}