
/* 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;
}

/* NOTE: Ideally, the height should be 100%, but wasn't working in the context used probably due to
   flex layout, so using 32px for now until a solution is found... */
.vertical-divider {
  background-color: #aaa;
  display: inline-block;
  height: 32px;
  margin: 8px 12px;
  width: 1px;
}

.vAccordion-custom v-pane v-pane-header {
  margin: 0;
  padding: 20px;
}

.vAccordion-custom v-pane v-pane-header::after,
.vAccordion-custom v-pane v-pane-header::before {
  right: 20px;
}

.color-list-dark {
  background-color: rgba(0, 0, 0, 0.05);
}

.color-list-light {
  background-color: rgba(255, 255, 255, 0.05);
}


