/* print controls */
@page {
  margin: 2mm;
  size: portrait;
}

@media print {
  /* hide theme switch button on print */
  .theme-switch {
    display: none;
  }
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

/* blur content on demo scans */
.blur-content {
  filter: blur(5px);
  -webkit-filter: blur(5px);

  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

u {
  font-style: italic;
}

/* Hide checkboxes in reports */
.ivu-checkbox-wrapper {
  display: none;
}

/* Footer */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

footer span {
  padding: 3px;
}

footer span:not(:last-child)::after {
  content: " |";
}

@media (max-width: 768px) {
  footer {
    /* margin-right: 100px; */
  }

  .fixed-bottom {
    font-size: 0.8em;
    text-align: center;
    /* bottom: 6px; */
    /* align-items: flex-start;
    flex-direction: column; */
  }
}

@media (max-width: 576px) {
  footer span:not(:last-child)::after {
    content: " ";
  }

  .fixed-bottom {
    text-align: left;
    /* bottom: 6px; */
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .my-md-6 {
    margin: auto 30vw auto 5%;
  }
}
