.reveal-modal-bg { 
    position: fixed; 
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
    top: 0;
    left: 0; 
}

.reveal-modal {
    visibility: hidden;
    top: 100px; 
    left: 50%;
    margin-left: -300px;
    width: 520px;
    z-index: 101;
    background: #FFF url(modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    padding: 30px 40px 34px;
    border-radius: 5px; /* Usar la propiedad estÃ¡ndar */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* Usar la propiedad estÃ¡ndar */
}

@media screen and (max-width: 500px) {
    .reveal-modal {
        visibility: hidden;
        top: 100px;
        left: 0;
        margin-left: 0;
        width: 70%;
        margin: 0 auto;
        z-index: 101;
        background: #FFF url(modal-gloss.png) no-repeat -200px -80px;
        position: absolute;
        padding: 30px 40px 34px;
        border-radius: 5px; /* Usar la propiedad estÃ¡ndar */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* Usar la propiedad estÃ¡ndar */
    }

    .reveal-modal.small { width: 200px; margin-left: -140px; }
    .reveal-modal.medium { width: 400px; margin-left: -240px; }
    .reveal-modal.large { width: 600px; margin-left: -340px; }
    .reveal-modal.xlarge { width: 800px; margin-left: -440px; }

    .reveal-modal .close-reveal-modal {
        font-size: 22px;
        line-height: 0.5;
        position: absolute;
        top: 8px;
        right: 11px;
        color: #aaa;
        text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6); /* Corrigido 'rbga' a 'rgba' */
        font-weight: bold;
        cursor: pointer;
    }
}
.layoutRow {
width: 100%;
}
#redesociales{
position:fixed;/*width:159px;*/right:0;top:15px;


z-index: 1;
}
body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
} 
.layoutRow {
width: 100%;
}
#textoMax{
position:fixed;width:109px;left:0;top:15px;

}
#textoMax ul li{
display:inline;
}
 .font-button
        {
            background-color: #041A4C;
            height: 30px;
            width: 30px;
            display: inline-block;
            color: #CCC; 
            text-align: center;
            line-height: 30px;
            font-size: 13pt;
            cursor: pointer;
        }
/* tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    font-size:15px;
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -25px;
    opacity: 0;
    transition: opacity 0.3s;
    line-height:12pt;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -40px;
    border-width: 5px;
    border-style: solid;
    border-color:  transparent transparent #fff transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
	color: #fff;
    /*opacity: 0;*/
}