body {
  margin: 0px;
  height: 100vh;
  overflow: hidden;
  font-family: Montserrat,Helvetica,Arial,sans-serif;
}

a {
  text-decoration: none;
}

.container {
  display: flex;
  height: 100%;
  width: 100%;
}

.sideNavWrapper {
  overflow: scroll;
  overflow-x: hidden;
  height: 100%;
  flex: 2;
  background-color: #2a3243;
  transition: 0.2s;
}

.sideNavHeader {
  background-color: #f0f0f0;
  height: calc(1rem + 2vw);
  width: 100%;
  padding: 1em;
  position: relative;
}

  .sideNavHeader img {
    height: calc(1rem + 2vw);
  }

/* .navigation {
} */

  .navigation h3 {
    background-color: #2a3243;
    color: #fff;
    padding:0.5em;
    margin: 0;
    transition: 0.2s;
    cursor: pointer;
  }

  .navigation h3:hover {
    background-color: #303a4d;
  }

  .navigation ul {
    list-style: none;
    padding: 0;
    margin: 0px;
  }

    .navigation ul>li {
      padding: 7px 0px 7px 30px;
      background-color: #303a4d;
      transition: 0.2s;
    }

    .navigation ul>li:hover {
      background-color: #2a3243;
    }

      .navigation ul>li>a {
        color: #fff;
        text-decoration: none;
        display: block;
        width: 100%;
        height: 100%;
      }

#queriesNav, #mutationsNav {
  display: block;
}

.content {
  text-align: left;
  flex: 9;
  padding-left: 2em;
  background-color: #f0f0f0;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 40px;
}

  .content h2 {
    margin: 0;
  }

  .content p>a {
    color: #64b0f2;
  }

.contentHeader {
  width: 100%;
  height: 2.8em;
  background-color: #303a4d;
  margin: 0 0 0 -2em;
  padding: 0.4em 1em 0.4em 2em;
  color: #fff;
  line-height: 2.8em;
}

.contentHeader h1 {
  margin: 0;
}

.contentHeader h2 {
  display: inline-block !important;
}

.contentHeader ul {
    float: right;
    margin-top: 0;
  }

  .contentHeader > ul > li {
    display: inline-block;
    padding: 0 1em 0 1em;
  }

  .contentHeader a {
    color: #fff;
  }

.menu {
  display: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.5em;
  margin-left: -10px;
  margin-right: 10px;
}

.sideNavWrapper::-webkit-scrollbar {
    width: 0.5em;
}

.sideNavWrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px  #2a3243;
    box-shadow: inset 0 0 6px  #2a3243;
}

.sideNavWrapper::-webkit-scrollbar-thumb {
  background-color: #64b0f2;
  outline: 1px solid #2a3243;
}

.sideNavWrapper::-webkit-scrollbar-track-piece {
  background-color: #303a4d;
}

.warning {
  border: 1px solid red;
  border-radius: 40px;
  padding: 5px;
  color: red;
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
  .sideNavWrapper {
    flex: 0;
  }

  .menu {
    display: inline-block;
  }

  .content h2 {
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {
  .sideNavWrapper {
    flex: 2 !important;
  }

  .content {
    flex: 9 !important;
  }
}
