/* ============================================================
   FIRMA DEL SITIO
   Firma UNO DISEÑO base
   ============================================================ */

#footer_bas.fds-signature {
    position: relative;
    width: 100%;
    height: 20px;
    background: var(--fds-bar-color, #1D232C);
    overflow: visible;
}

#footer_bas.fds-signature #copy {
    position: absolute;
    left: 8px;
    width: calc(100% - 90px);
    height: 20px;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--fds-text-color, #435069);
    font-weight: 700;
    text-transform: uppercase;
}

#footer_bas.fds-signature .powered {
    color: var(--fds-powered-color, #6d6969);
}

#footer_bas.fds-signature #unodiseno {
    position: absolute;
    width: 76px;
    height: 73px;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

/* Tooltip */
#footer_bas.fds-signature .tooltip_made {
    cursor: help;
}

#footer_bas.fds-signature .tooltip_made::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 46px;
    bottom: 5px;
    width: auto;
    min-width: 100px;
    max-width: 220px;
    padding: 6px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: #333333;
    background: linear-gradient(to bottom, #FFFFFF, #B7B7B7);
    border-radius: 20px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
    z-index: 9999;
}

#footer_bas.fds-signature .tooltip_made:hover::after,
#footer_bas.fds-signature .tooltip_made:focus::after {
    opacity: 1;
    visibility: visible;
}

#footer_bas.fds-signature .tooltip_made:hover,
#footer_bas.fds-signature .tooltip_made:focus {
    z-index: 100000;
    outline: none;
}

@media screen and (max-width: 560px) {
    #footer_bas.fds-signature .limit-text {
        width: 300px;
        overflow: hidden;
        height: 11px;
    }

    #footer_bas.fds-signature .tooltip_made::after {
        right: 38px;
        min-width: 150px;
        max-width: 190px;
        padding: 4px 12px;
        font-size: 12px;
    }
}

/*
============================================================
ACÁ VA EL CÓDIGO DE LA FIRMA DE CLOUD
============================================================

Cuando definamos la firma CLOUDS, aquí puedes agregar por ejemplo:

#footer_bas.fds-signature[data-signature="clouds"] { ... }
#footer_bas.fds-signature[data-signature="clouds"] #copy { ... }
#footer_bas.fds-signature[data-signature="clouds"] #clouds_brand { ... }

Por ahora no tocar esta zona.
*/