
  html {
    font-family: "OPEN-SANS-DEFAULT", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    
    color: #333333;
    overflow-x: hidden;
  }
  
  @media screen and (min-width: 1600px) {
    html {
      font-size: 1vw;
    }
  }

  body {
    width: 100%;
    max-width: 75em;
    min-height: 100vh;
    
    -webkit-box-sizing: border-box;
    
    box-sizing: border-box;
    margin: 0em auto;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  
  main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative
  }

  .dashboard main {
    margin-bottom: 2em;
  }
  
  .dashboard aside {
    display: none;
    padding: 1em;
  }
  
  @media screen and (min-width: 768px) {
    .dashboard {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
    }
    
    .dashboard main {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
      flex: 1 0 0;
    }
    
    .dashboard aside {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 12em;
      flex: 0 0 12em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 1em 0em;
    }
  }
  
  @media screen and (min-width: 900px) {
    .dashboard aside {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 14em;
      flex: 0 0 14em;
      
      margin-right: 1em;
    }
  }
