/*
 * JobLik 0.31.10 — neutralize the legacy centered 540px mobile shell.
 * The old min-width:760px rule leaves translateX(-50%) active after width
 * overrides and shifts the full desktop journey half a viewport to the left.
 */
@media (min-width:700px){
 .scw-mobile-welcome,
 .scw-shell{
  top:0!important;
  right:0!important;
  bottom:0!important;
  left:0!important;
  width:100vw!important;
  min-width:100vw!important;
  max-width:100vw!important;
  margin:0!important;
  translate:none!important;
  transform:none!important;
 }
 .scw-main{
  translate:none!important;
  transform:none!important;
 }
}
