html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media print and (max-width: 767px) {
    .row {
        display: flex;
        flex-direction: row;
    }

    .col-md-3 {
        flex-basis: 25%;
    }

    .col-md-1 {
        flex-basis: 8.33%;
    }

    .col-md-8 {
        flex-basis: 66.67%;
    }

    .col-md-6 {
        flex-basis: 50%;
    }
}

    html {
        position: relative;
        min-height: 100%;
    }

/*body {
  margin-bottom: 60px;
}*/