@media (max-width: 769px) {

    .onlydesktop {
        display: none !important;
    }
}

@media (min-width: 769px) {

    .onlymobile {
        display: none !important;
    }
}

.onlytable {
    display: none !important;
}

/* Mostrar solo en tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .onlytable {
        display: block !important;
    }
}
