:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
body {
  font-family: "Helvetica", "Arial", sans-serif;
  line-height: 1.1;
  color: #444;
  /* @media @tablet-up {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
  } */
}
strong {
  font-weight: bold;
  color: #222;
}
em {
  font-family: "OpenSans", "Helvetica", "Arial", sans-serif;
  font-style: italic;
}
ul {
  list-style: initial;
}
ol {
  list-style: decimal;
}
h1 {
  font-weight: bold;
  color: #222;
  font-size: 2.1875rem;
}
h2 {
  font-size: 1.8125rem;
  border-bottom: solid 1px #999999;
  margin: 1.8125rem 0 0 0;
  color: #222;
}
h3 {
  font-weight: bold;
  padding-top: 20px;
  font-size: 1.25rem;
  border-bottom: double 3px #000;
}
.enable__is-dark-mode h3 {
  border-color: #ededed;
}
h4 {
  font-weight: 500;
  padding: 20px 0;
  font-size: 1.25rem;
}
a {
  color: #A76000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  scroll-margin-top: 100px;
}
.heading__deeplink {
  color: inherit;
  text-decoration: none;
}
.heading__deeplink:focus::after,
.heading__deeplink:hover::after {
  color: #666;
  content: "#";
  display: inline-block;
  font-size: 0.7em;
  margin-left: 4px;
  text-decoration: none;
  transform: translateY(-0.25rem);
}
ul,
ol {
  padding-left: 1.2rem;
  margin-left: 1.2rem;
}
ul table,
ol table {
  margin-top: 1.5rem;
}
ul {
  list-style: disc;
}
ul,
ol,
p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
table li {
  margin-bottom: 1.5rem;
}
.enable-quote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.centered-block {
  margin: 0 auto;
  display: block;
}
.example h1 {
  text-align: center;
}
.example main {
  max-width: 1024px;
  margin: 0 auto;
}
.example .example-nav {
  text-align: center;
}
.example .example-nav ul li {
  display: inline-block;
  list-style: none;
}
.example .notes {
  border: dashed #9c6f39 3px;
  padding: 1em;
  background-color: #ffffee;
  margin: 2em auto;
  max-width: calc(1024px - 2em);
}
.example .notes h2 {
  margin: 0;
  border-bottom: none;
}
input,
select {
  font-size: 1em;
}
.enable-example {
  padding: 1em;
  border: solid 1px black;
  margin: 3em 0;
  border-left: solid 5px black;
  font-family: "Helvetica", "Arial", sans-serif;
}
.enable__is-dark-mode .enable-example {
  border-color: #aaa;
}
.enable-example--no-border {
  border: none;
}
.enable-example:has(video),
.enable-example:has(iframe) {
  padding: 0;
  border: none;
  /* margin: 0 -@mobile-page-padding;

        @media @desktop {
            margin: 0 -@page-padding;
        } */
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.mobile {
  display: none !important;
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .mobile {
    display: inherit !important;
  }
}
.tablet {
  display: none !important;
}
@media only screen and (min-width: 720px) and (max-width: 959px) {
  .tablet {
    display: inherit !important;
  }
}
.desktop {
  display: none !important;
}
@media only screen and (min-width: 960px) {
  .desktop {
    display: inherit !important;
  }
}
.mobile-and-tablet {
  display: none !important;
}
@media only screen and (min-width: 1px) and (max-width: 959px) {
  .mobile-and-tablet {
    display: inherit !important;
  }
}
.bookmarklet {
  border: solid 1px black;
  border-radius: 14px;
  padding: 7px;
  margin: 1em auto;
  color: white;
  font-weight: bold;
  max-width: 15em;
  width: 50%;
  background-color: #4c6874;
  display: block;
  text-align: center;
  text-decoration: none;
  text-shadow: 2px 2px 2px black;
}
.list--no-decoration,
.list--inline {
  list-style: none;
  margin-left: 0;
}
.list--inline {
  margin-left: -5px;
}
.list--inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.break--with-space {
  content: "A" !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}
/* z-index overrides */
.enable-flyout {
  z-index: 10001 !important;
}
.enable-flyout__overlay-screen {
  z-index: 10000 !important;
}
.enable-flyout__open-menu-button {
  z-index: 10002 !important;
}
.play-pause-anim__checkbox-container {
  z-index: 9999 !important;
}
@media only screen and (min-width: 960px) {
  .play-pause-anim__checkbox-container {
    z-index: 10002 !important;
    transform: translateZ(2px);
  }
}
.enable-flyout__body--is-open .play-pause-anim__checkbox-container {
  z-index: 0 !important;
}
code {
  font-family: "ModeSeven", "Consolas", monospace;
  background-color: #eee;
  border-radius: 3px;
  padding: 3px;
  word-wrap: break-word;
}
a code {
  background-color: #f6f6f6;
}
.enable__is-dark-mode code {
  color: #0a0;
  background-color: #000;
}
.center {
  text-align: center;
}
.margin-bottom {
  margin-bottom: 40px;
}
.compliance-table {
  width: 450px;
  max-width: 100%;
}
.has-multi-tables .compliance-table {
  vertical-align: top;
}
@media only screen and (min-width: 960px) {
  .has-multi-tables .compliance-table {
    display: inline-block;
  }
  .has-multi-tables .compliance-table:not(:last-child) {
    margin-right: 20px;
  }
}
.compliance-table,
.comparison-table {
  margin: 1em auto 3em auto;
}
.compliance-table th,
.comparison-table th,
.compliance-table td,
.comparison-table td {
  text-align: center;
  vertical-align: middle;
}
.compliance-table th a,
.comparison-table th a {
  color: #ccccff;
}
.enable__is-dark-mode .compliance-table th a,
.enable__is-dark-mode .comparison-table th a {
  color: #000088;
}
.compliance-table tr,
.comparison-table tr {
  background: none !important;
}
.compliance-table td,
.comparison-table td {
  border: solid 1px black;
}
.enable__is-dark-mode .compliance-table td,
.enable__is-dark-mode .comparison-table td {
  border: solid 1px #ededed;
}
.compliance-table__icon,
.comparison-table__icon {
  width: 20px;
}
.has-multi-tables {
  text-align: center;
}
.has-multi-tables::after {
  content: "";
  clear: both;
  display: table;
}
.meter-demo-container {
  align-items: center;
  column-gap: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  text-wrap: nowrap;
  width: fit-content;
}
.screen-reader-table tr td {
  width: calc((100% - 125px) / 5);
}
.screen-reader-table tr td:first-child {
  width: 125px;
}
iframe:focus {
  outline: solid 2px var(--focus-color) !important;
  outline-offset: -2px;
}
iframe:focus:not(:focus-visible) {
  outline: none !important;
}
iframe:focus-visible {
  outline: solid 2px var(--focus-color) !important;
  outline-offset: -2px;
}
.enable__is-dark-mode main {
  color: #ededed;
}
.enable__is-dark-mode body {
  background: #333;
  color: #ededed;
}
.enable__is-dark-mode strong {
  color: #ededed;
}
.enable__is-dark-mode h1 {
  color: #ededed;
}
.enable__is-dark-mode h2 {
  color: #ededed;
}
.enable__is-dark-mode p {
  color: #ededed;
}
.enable__is-dark-mode a {
  color: #FF9F1C;
}
.enable__is-dark-mode .enable-quote {
  background: #222;
  border-left: 10px solid #555;
}
.enable__is-dark-mode input,
.enable__is-dark-mode textarea,
.enable__is-dark-mode select {
  background: #121212;
  color: #ededed;
  border-color: #ededed;
}
.enable__is-dark-mode input[type="submit"] {
  background: #343434;
  color: #ededed;
}
img,
svg {
  max-width: 100%;
}
/*# sourceMappingURL=defaults.css.map */