
/* Used -100px here as a workaround for iOS after spending about 3 hrs trying to identify the problem and fix.
   The problem is that iOS is reporting a smaller viewport width/height than it actually is when using all known
   DOM APIs and sizing mechanism. */
.md-datepicker-calendar-pane[is-mobile] {
  background-color: rgba(0,0,0,0.8);
  border: none;
  box-shadow: none;
  bottom: -100px;
  left: -100px;
  position: fixed;
  right: -100px;
  top: -100px;
}

.md-datepicker-calendar-pane[is-mobile] .md-datepicker-calendar {
  left: 50%;
  position: absolute;
  top: 50%;
}

.md-datepicker-calendar-pane .Close {
  background-color: #f0f0f0;
  border: none;
  font-family: 'Material Icons';
  padding: 8px 24px;
  text-align: right;
  width: 100%;
}

/* Used to convert text styled as headings in non-heading tags to heading text while keeping the styling unchanged.
   The styling of h2 wasn't updated because its usage was found to be largely inconsistent across Reference. */
h2.small {
  font-size: 14px;
}

html.print-dialog .print-dialog-hide {
  display: none !important;
}

