
.menu {
    position: static;
    /* Change position to sticky to enable scrolling */

    display: inline-block;
    vertical-align: top;
    max-height: 100vh;
    overflow-y: auto;
    width: 300px;
    top: 0;
    bottom: 0;
    padding: 30px;
  }

@media screen and (min-width: 769px) {
  .menu {
    position: sticky;
    /* Change position to sticky to enable scrolling */
    /* https://bulma.io/documentation/utilities/responsive-mixins/ */
    /* https://bulma.io/documentation/overview/responsiveness/ */
    display: inline-block;
    vertical-align: top;
    max-height: 100vh;
    overflow-y: auto;
    width: 300px;
    top: 0;
    bottom: 0;
    padding: 30px;
  }
}

.level-left-item {
  flex-shrink: 1;
}

.level-right-item {
  flex-shrink: 0;
}

.level-faq {
  align-items: flex-start;
}

.content .mt-mobile-list {
  margin-top: 0rem;
}

@media (max-width: 768px) {
  .content .mt-mobile-list {
      margin-top: -1.25rem;
  }
}

.how-to-block {
  display: flex;
  justify-content: center;
}

.how-to-image {
  max-width: 600px;
}

div.container.help-centered.extra-selector {
  max-width: 800px;
}