
span.state-indicator:after { content: 'desktop';display:none; }

@media all and (max-width: 1200px) {
    span.state-indicator:after  { content: 'small-desktop'; display:none;}
}

/* tablet */
@media all and (max-width: 1024px) {
    span.state-indicator:after  { content: 'tablet';   display:none;}
}

/* mobile phone */
@media all and (max-width: 768px) {
   span.state-indicator:after  { content: 'mobile'; display:none;}
}