/**
 * Themify Icons - Mapeo a Font Awesome
 * Mapea las clases de Themify Icons a Font Awesome para compatibilidad
 * 
 * @author Equipo DeportiX
 * @date 13/11/2025
 */

/* Mapeo de iconos Themify a Font Awesome para compatibilidad */
[class^="ti-"], [class*=" ti-"] {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mapeo de iconos Themify a Font Awesome */
.ti-email:before { content: "\f0e0"; } /* fa-envelope */
.ti-lock:before { content: "\f023"; } /* fa-lock */
.ti-key:before { content: "\f084"; } /* fa-key */
.ti-check-box:before { content: "\f14a"; } /* fa-check-square */
.ti-alert:before { content: "\f071"; } /* fa-exclamation-triangle */
.ti-desktop:before { content: "\f390"; } /* fa-desktop-alt */
.ti-mobile:before { content: "\f3cd"; } /* fa-mobile-alt */
.ti-bookmark:before { content: "\f02e"; } /* fa-bookmark */
.ti-shield:before { content: "\f3ed"; } /* fa-shield-alt */
.ti-reload:before { content: "\f021"; } /* fa-sync */
.ti-help-alt:before { content: "\f059"; } /* fa-question-circle */
.ti-eye:before { content: "\f06e"; } /* fa-eye */
.ti-eye-off:before { content: "\f070"; } /* fa-eye-slash */

