html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.dashboard {
    float: left;
    width: calc(100% - 800px);
    margin-left: 30px;
}

@media (min-width: 1400px) {
    .dashboard {
        float: left;
        width: calc(100% - 910px);
        margin-left: 30px;
    }
}

@media (max-width: 1200px) {
    .dashboard {
        float: left;
        width: calc(100% - 670px);
        margin-left: 30px;
    }
}

@media (max-width: 1000px) {
    .dashboard {
        float: left;
        width: calc(100% - 100px);
        margin-left: 30px;
    }
}