/* v13 route isolation: `/` is a real homepage, `/n2` is the practice app. */
body.route-home #homePanel,
body.route-home #homePanel.hidden {
  display: block !important;
}

body.route-home #practiceWorkspace,
body.route-home #practiceWorkspace.hidden,
body.route-home #collectionsBar,
body.route-home #collectionsBar.hidden,
body.route-home .dashboard-grid,
body.route-home .dashboard-grid.hidden,
body.route-home .panel-grid,
body.route-home .panel-grid.hidden,
body.route-home .topbar,
body.route-home .topbar.hidden {
  display: none !important;
}

body.route-home .main {
  padding-top: 24px;
}

body.route-n2 #homePanel,
body.route-n2 #homePanel.hidden {
  display: none !important;
}

body.route-n2 #practiceWorkspace:not(.hidden) {
  display: grid !important;
}

body.route-n2 #collectionsBar:not(.hidden) {
  display: flex !important;
}

body.route-n2 .dashboard-grid:not(.hidden) {
  display: grid !important;
}

body.route-n2 .panel-grid:not(.hidden) {
  display: grid !important;
}

body.route-home .nav-item[data-panel="home"],
body.route-home .mobile-tab[data-panel="home"] {
  background: #f1f6ff;
  color: #0068ff;
}

@media (max-width: 760px) {
  body.route-home .main {
    padding: 12px 10px 86px;
  }
}
