/** GJDS > Responsiveness ######################################################## */
/* ####################################################
A2Z > Media Query indicator, to use used in Javascript
Ref: 
https://davidwalsh.name/device-state-detection-css-media-queries-javascript
*/
/* default state */
.screen-state-indicator {
    position: absolute;
    top: -999em;
    left: -999em;
    z-index: 1;
}
/* small desktop */
@media all and (max-width: 1200px) {
    .screen-state-indicator {
        z-index: 2;
    }
}
/* tablet */
@media all and (max-width: 1024px) {
    .screen-state-indicator {
        z-index: 3;
    }
}
/* mobile phone */
@media all and (max-width: 768px) {
    .screen-state-indicator {
        z-index: 4;
    }
}
/* ####################################################
A2Z > 
*/
#justatest {
/*    color: red;*/
}
