<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.disable-device {
    display: block;
}
.visible-device {
    display: none;
}

@media screen and (max-width: 414px) {
    .disable-device {
        display: none;
    }
    .visible-device {
        display: block;
    }
}</pre></body></html>