@charset "UTF-8";
/*
 * mdn-bcd-collector: style.scss
 * Styling for the web app
 *
 * © Gooborg Studios, Google LLC
 * See the LICENSE file for copyright details
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Roboto:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@500&display=swap");
@keyframes pulse-animation {
  0% {
    filter: saturate(1) brightness(1);
  }
  100% {
    filter: saturate(1.5) brightness(1.5);
  }
}
:root {
  color-scheme: light dark;
}

html {
  background: #111111;
}
@media (prefers-color-scheme: light) {
  html {
    background: white;
  }
}

body {
  font-family: "Roboto", Arial, sans-serif;
  color: white;
}
@media (prefers-color-scheme: light) {
  body {
    color: black;
  }
}
body {
  background: #111 0%; /* Old browsers */
  background: -moz-linear-gradient(15deg, #111 0%, #100216 90%, #260037 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(15deg, #111 0%, #100216 90%, #260037 100%); /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(15deg, #111 0%, #100216 90%, #260037 100%); /* Opera 11.10-11.50 */
  background: linear-gradient(15deg, #111 0%, #100216 90%, #260037 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media (prefers-color-scheme: light) {
  body {
    background: white 0%; /* Old browsers */
    background: -moz-linear-gradient(15deg, white 0%, #faf2ff 90%, #ead4ff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(15deg, white 0%, #faf2ff 90%, #ead4ff 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(15deg, white 0%, #faf2ff 90%, #ead4ff 100%); /* Opera 11.10-11.50 */
    background: linear-gradient(15deg, white 0%, #faf2ff 90%, #ead4ff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 8px;
  padding-top: 2.5em;
  padding-left: max(8px, env(safe-area-inset-left));
  padding-right: max(8px, env(safe-area-inset-right));
}

h1,
h2,
h3 {
  margin-top: 0;
}
h1 code,
h2 code,
h3 code {
  font-size: inherit;
}

a {
  color: #9999ff;
}
@media (prefers-color-scheme: light) {
  a {
    color: blue;
  }
}
a {
  text-shadow: 0 0 0px rgba(153, 153, 255, 0.75);
}
@media (prefers-color-scheme: light) {
  a {
    text-shadow: 0 0 0px rgba(0, 0, 255, 0.75);
  }
}
a {
  transition: color 0.2s, text-shadow 0.2s;
}
a:hover {
  color: #bbbbff;
}
@media (prefers-color-scheme: light) {
  a:hover {
    color: #4444ff;
  }
}
a:hover {
  text-shadow: 0 0 10px rgba(153, 153, 255, 0.75);
}
@media (prefers-color-scheme: light) {
  a:hover {
    text-shadow: 0 0 10px rgba(0, 0, 255, 0.75);
  }
}

code {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
}

button,
select,
input {
  background: #462d67;
}
@media (prefers-color-scheme: light) {
  button,
  select,
  input {
    background: #462d67;
  }
}
button,
select,
input {
  color: white;
}
@media (prefers-color-scheme: light) {
  button,
  select,
  input {
    color: white;
  }
}
button,
select,
input {
  box-shadow: 0 0 0px rgba(70, 45, 103, 0.75);
}
@media (prefers-color-scheme: light) {
  button,
  select,
  input {
    box-shadow: 0 0 0px rgba(70, 45, 103, 0.75);
  }
}
button,
select,
input {
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  transition: background-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
  padding: 8px;
  outline-color: rgba(0, 0, 0, 0);
  outline-style: none;
  outline-width: 0;
}
button:hover, button:hover:focus,
select:hover,
select:hover:focus,
input:hover,
input:hover:focus {
  cursor: pointer;
  background: #5e3d8a;
}
@media (prefers-color-scheme: light) {
  button:hover, button:hover:focus,
  select:hover,
  select:hover:focus,
  input:hover,
  input:hover:focus {
    background: #5e3d8a;
  }
}
button:hover, button:hover:focus,
select:hover,
select:hover:focus,
input:hover,
input:hover:focus {
  box-shadow: 0 0 15px rgba(70, 45, 103, 0.75);
}
@media (prefers-color-scheme: light) {
  button:hover, button:hover:focus,
  select:hover,
  select:hover:focus,
  input:hover,
  input:hover:focus {
    box-shadow: 0 0 15px rgba(70, 45, 103, 0.75);
  }
}
button:focus,
select:focus,
input:focus {
  background: #523579;
}
@media (prefers-color-scheme: light) {
  button:focus,
  select:focus,
  input:focus {
    background: #523579;
  }
}
button:focus,
select:focus,
input:focus {
  box-shadow: 0 0 15px rgba(70, 45, 103, 0.75);
}
@media (prefers-color-scheme: light) {
  button:focus,
  select:focus,
  input:focus {
    box-shadow: 0 0 15px rgba(70, 45, 103, 0.75);
  }
}
button:focus,
select:focus,
input:focus {
  outline-color: #8c42e9;
}
@media (prefers-color-scheme: light) {
  button:focus,
  select:focus,
  input:focus {
    outline-color: #490877;
  }
}
button:focus-visible,
select:focus-visible,
input:focus-visible {
  outline-style: auto;
  outline-width: 1px;
}
button:disabled, button:disabled:hover,
select:disabled,
select:disabled:hover,
input:disabled,
input:disabled:hover {
  cursor: not-allowed;
  background: #636363;
}
@media (prefers-color-scheme: light) {
  button:disabled, button:disabled:hover,
  select:disabled,
  select:disabled:hover,
  input:disabled,
  input:disabled:hover {
    background: #636363;
  }
}
button:disabled, button:disabled:hover,
select:disabled,
select:disabled:hover,
input:disabled,
input:disabled:hover {
  color: #cccccc;
}
@media (prefers-color-scheme: light) {
  button:disabled, button:disabled:hover,
  select:disabled,
  select:disabled:hover,
  input:disabled,
  input:disabled:hover {
    color: #cccccc;
  }
}
button.pulse,
select.pulse,
input.pulse {
  animation-name: pulse-animation;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
button.pulse:hover,
select.pulse:hover,
input.pulse:hover {
  animation-play-state: paused;
}

input {
  text-align: left;
  margin-left: -2px;
}
input::placeholder {
  color: #cccccc;
}
@media (prefers-color-scheme: light) {
  input::placeholder {
    color: #cccccc;
  }
}

nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  background: #260037 0%; /* Old browsers */
  background: -moz-linear-gradient(180deg, #260037 0%, #260037 75%, transparent 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(180deg, #260037 0%, #260037 75%, transparent 100%); /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(180deg, #260037 0%, #260037 75%, transparent 100%); /* Opera 11.10-11.50 */
  background: linear-gradient(180deg, #260037 0%, #260037 75%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media (prefers-color-scheme: light) {
  nav#navbar {
    background: #ead4ff 0%; /* Old browsers */
    background: -moz-linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, transparent 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, transparent 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, transparent 100%); /* Opera 11.10-11.50 */
    background: linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
nav#navbar {
  margin-bottom: 1em;
  padding: 0.5em;
  padding-bottom: 0.75em;
}
@media (prefers-color-scheme: light) {
  nav#navbar {
    background: #260037 0%; /* Old browsers */
    background: -moz-linear-gradient(180deg, #260037 0%, #260037 75%, rgba(255, 255, 255, 0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(180deg, #260037 0%, #260037 75%, rgba(255, 255, 255, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(180deg, #260037 0%, #260037 75%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10-11.50 */
    background: linear-gradient(180deg, #260037 0%, #260037 75%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
@media (prefers-color-scheme: light) and (prefers-color-scheme: light) {
  nav#navbar {
    background: #ead4ff 0%; /* Old browsers */
    background: -moz-linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, rgba(255, 255, 255, 0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, rgba(255, 255, 255, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10-11.50 */
    background: linear-gradient(180deg, #ead4ff 0%, #ead4ff 75%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
nav#navbar a {
  text-decoration: none;
  margin: 0 0.1em;
}
nav#navbar a:first-child {
  margin-left: 0;
}
nav#navbar a:last-child {
  float: right;
  margin-right: 0;
}

footer {
  display: block;
  text-align: center;
  opacity: 0.75;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100vw;
  margin-top: 1em;
  margin-left: min(-8px, env(safe-area-inset-left) * -1);
}
footer > * {
  display: inline-block;
  margin-left: 4px;
}
footer .browserinfo {
  display: block;
  margin: 0;
  padding-bottom: 1em;
}

hr {
  width: calc(100% - max(0px, env(safe-area-inset-left)) - max(0px, env(safe-area-inset-right)));
  margin-left: min(0px, env(safe-area-inset-left) * -1);
}

blockquote {
  background: #191919;
}
@media (prefers-color-scheme: light) {
  blockquote {
    background: #eeeeee;
  }
}
blockquote {
  padding: 0.25em 1em;
  box-shadow: 0 0 10px black;
  border-radius: 8px;
  margin: 1em;
}
blockquote.cautionblock {
  background: #330000;
}
@media (prefers-color-scheme: light) {
  blockquote.cautionblock {
    background: #ffaaaa;
  }
}
blockquote.cautionblock .blockquote-header {
  color: #ffaaaa;
}
@media (prefers-color-scheme: light) {
  blockquote.cautionblock .blockquote-header {
    color: #770000;
  }
}
blockquote.cautionblock .blockquote-header {
  text-shadow: 0 0 10px rgba(255, 170, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  blockquote.cautionblock .blockquote-header {
    text-shadow: 0 0 10px rgba(119, 0, 0, 0.75);
  }
}
blockquote.warningblock {
  background: #333300;
}
@media (prefers-color-scheme: light) {
  blockquote.warningblock {
    background: #ffffaa;
  }
}
blockquote.warningblock .blockquote-header {
  color: #ffffaa;
}
@media (prefers-color-scheme: light) {
  blockquote.warningblock .blockquote-header {
    color: #777700;
  }
}
blockquote.warningblock .blockquote-header {
  text-shadow: 0 0 10px rgba(255, 255, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  blockquote.warningblock .blockquote-header {
    text-shadow: 0 0 10px rgba(119, 119, 0, 0.75);
  }
}
blockquote.tipblock {
  background: #003300;
}
@media (prefers-color-scheme: light) {
  blockquote.tipblock {
    background: #aaffaa;
  }
}
blockquote.tipblock .blockquote-header {
  color: #aaffaa;
}
@media (prefers-color-scheme: light) {
  blockquote.tipblock .blockquote-header {
    color: #007700;
  }
}
blockquote.tipblock .blockquote-header {
  text-shadow: 0 0 10px rgba(170, 255, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  blockquote.tipblock .blockquote-header {
    text-shadow: 0 0 10px rgba(0, 119, 0, 0.75);
  }
}
blockquote.noteblock {
  background: #000033;
}
@media (prefers-color-scheme: light) {
  blockquote.noteblock {
    background: #aaaaff;
  }
}
blockquote.noteblock .blockquote-header {
  color: #aaaaff;
}
@media (prefers-color-scheme: light) {
  blockquote.noteblock .blockquote-header {
    color: #000077;
  }
}
blockquote.noteblock .blockquote-header {
  text-shadow: 0 0 10px rgba(170, 170, 255, 0.75);
}
@media (prefers-color-scheme: light) {
  blockquote.noteblock .blockquote-header {
    text-shadow: 0 0 10px rgba(0, 0, 119, 0.75);
  }
}
blockquote.importantblock {
  background: #330033;
}
@media (prefers-color-scheme: light) {
  blockquote.importantblock {
    background: #ffaaff;
  }
}
blockquote.importantblock .blockquote-header {
  color: #ffaaff;
}
@media (prefers-color-scheme: light) {
  blockquote.importantblock .blockquote-header {
    color: #770077;
  }
}
blockquote.importantblock .blockquote-header {
  text-shadow: 0 0 10px rgba(255, 170, 255, 0.75);
}
@media (prefers-color-scheme: light) {
  blockquote.importantblock .blockquote-header {
    text-shadow: 0 0 10px rgba(119, 0, 119, 0.75);
  }
}

.paper {
  background: #191919;
}
@media (prefers-color-scheme: light) {
  .paper {
    background: #eeeeee;
  }
}
.paper {
  padding: 1em 8px;
  box-shadow: 0 0 10px black;
  border-radius: 8px;
  margin: 1em auto;
}

.error-notice {
  color: #ffaaaa;
}
@media (prefers-color-scheme: light) {
  .error-notice {
    color: #770000;
  }
}
.error-notice {
  text-shadow: 0 0 10px rgba(255, 170, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  .error-notice {
    text-shadow: 0 0 10px rgba(119, 0, 0, 0.75);
  }
}

.warning-notice {
  color: #ffffaa;
}
@media (prefers-color-scheme: light) {
  .warning-notice {
    color: #777700;
  }
}
.warning-notice {
  text-shadow: 0 0 10px rgba(255, 255, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  .warning-notice {
    text-shadow: 0 0 10px rgba(119, 119, 0, 0.75);
  }
}

.success-notice {
  color: #aaffaa;
}
@media (prefers-color-scheme: light) {
  .success-notice {
    color: #007700;
  }
}
.success-notice {
  text-shadow: 0 0 10px rgba(170, 255, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  .success-notice {
    text-shadow: 0 0 10px rgba(0, 119, 0, 0.75);
  }
}

.hidden {
  display: none;
}

.mdi:before {
  /* Ensure that *something* shows up on older browsers */
  content: "�";
}

/* Homepage */
#title {
  color: #8c42e9;
}
@media (prefers-color-scheme: light) {
  #title {
    color: #490877;
  }
}
#title {
  text-shadow: 0 0 20px rgba(140, 66, 233, 0.75);
}
@media (prefers-color-scheme: light) {
  #title {
    text-shadow: 0 0 20px rgba(73, 8, 119, 0.75);
  }
}
#title {
  font-family: Montserrat, sans-serif;
  font-size: 36pt;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.1em;
}
#title img {
  width: 48px;
  height: 48px;
}
#title span {
  display: block;
  font-size: 30pt;
}
#title span a {
  display: inline-block;
}
#title span a:not(:hover) {
  color: inherit;
  text-shadow: inherit;
}
@media screen and (max-width: 600px), screen and (max-device-width: 600px) {
  #title {
    font-size: 30pt;
  }
  #title span {
    font-size: 26pt;
  }
}

#subtitle {
  width: 90%;
  margin: auto;
  font-size: 16pt;
  text-align: center;
}

#run-tests {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  margin-top: 2em;
  padding: 2em;
  text-align: center;
}
@media screen and (max-width: 600px), screen and (max-device-width: 600px) {
  #run-tests {
    padding: 1em;
  }
}
#run-tests #test-entry {
  display: block;
}
#run-tests .browserinfo {
  margin-bottom: 0;
}
#run-tests #unsecure-warning {
  font-size: 125%;
}

#test-selection {
  padding-left: 16px;
  width: 240px;
  max-width: 70%;
}

#supported-browsers {
  text-align: center;
  margin-top: 2em;
  padding-top: 0.5em;
  padding-bottom: 1em;
}

.compat-table {
  margin: auto;
  text-align: center;
}
.compat-table .compat-table-entry {
  display: inline-block;
  margin-right: 16px;
}
.compat-table .compat-table-entry img {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}
.compat-table .compat-table-entry p {
  display: inline-block;
  margin: 0;
  margin-left: 8px;
}
.compat-table .compat-table-separator {
  display: none;
}
@media screen and (max-width: 900px), screen and (max-device-width: 900px) {
  .compat-table .compat-table-separator {
    display: block;
  }
}

#extension-warnings {
  background: #330000;
}
@media (prefers-color-scheme: light) {
  #extension-warnings {
    background: #ffaaaa;
  }
}
#extension-warnings {
  box-shadow: 0 0 40px rgba(51, 0, 0, 0.75);
}
@media (prefers-color-scheme: light) {
  #extension-warnings {
    box-shadow: 0 0 40px rgba(255, 170, 170, 0.75);
  }
}
#extension-warnings {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100vw - 4em - 24px);
  margin: 1em auto;
  text-align: center;
}
#extension-warnings h2,
#extension-warnings #extension-warnings-disable-or-switch {
  text-shadow: 0 0 20px rgba(255, 170, 170, 0.75);
}
@media (prefers-color-scheme: light) {
  #extension-warnings h2,
  #extension-warnings #extension-warnings-disable-or-switch {
    text-shadow: 0 0 20px rgba(119, 0, 0, 0.75);
  }
}
#extension-warnings h2,
#extension-warnings h3,
#extension-warnings #extension-warnings-disable-or-switch {
  color: #ffaaaa;
}
@media (prefers-color-scheme: light) {
  #extension-warnings h2,
  #extension-warnings h3,
  #extension-warnings #extension-warnings-disable-or-switch {
    color: #770000;
  }
}
#extension-warnings h3 {
  margin-bottom: 0;
}
#extension-warnings p {
  margin-top: 0;
}

#known-caveats {
  text-align: center;
  list-style-position: inside;
}
#known-caveats #known-caveats-file-issue {
  color: #ffaaaa;
}
@media (prefers-color-scheme: light) {
  #known-caveats #known-caveats-file-issue {
    color: #770000;
  }
}
#known-caveats #known-caveats-file-issue {
  font-weight: bold;
}

#privacy-notice {
  text-align: center;
}

/* End: Homepage */
#status {
  font-weight: bold;
}

.result {
  margin-bottom: 0.5em;
}
.result summary {
  word-break: break-all;
}
.result .result-value {
  font-weight: bold;
}
.result .result-info {
  display: block;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
.result .result-message {
  font-style: italic;
  margin-top: 0.2em;
}
.result.result-true {
  background: rgba(0, 51, 0, 0.3) 0%; /* Old browsers */
  background: -moz-linear-gradient(to right, rgba(0, 51, 0, 0.3) 0%, rgba(0, 51, 0, 0.3) 75%, transparent 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(to right, rgba(0, 51, 0, 0.3) 0%, rgba(0, 51, 0, 0.3) 75%, transparent 100%); /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(to right, rgba(0, 51, 0, 0.3) 0%, rgba(0, 51, 0, 0.3) 75%, transparent 100%); /* Opera 11.10-11.50 */
  background: linear-gradient(to right, rgba(0, 51, 0, 0.3) 0%, rgba(0, 51, 0, 0.3) 75%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media (prefers-color-scheme: light) {
  .result.result-true {
    background: rgba(170, 255, 170, 0.3) 0%; /* Old browsers */
    background: -moz-linear-gradient(to right, rgba(170, 255, 170, 0.3) 0%, rgba(170, 255, 170, 0.3) 75%, transparent 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(to right, rgba(170, 255, 170, 0.3) 0%, rgba(170, 255, 170, 0.3) 75%, transparent 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(to right, rgba(170, 255, 170, 0.3) 0%, rgba(170, 255, 170, 0.3) 75%, transparent 100%); /* Opera 11.10-11.50 */
    background: linear-gradient(to right, rgba(170, 255, 170, 0.3) 0%, rgba(170, 255, 170, 0.3) 75%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
.result.result-true .result-value {
  color: #aaffaa;
}
@media (prefers-color-scheme: light) {
  .result.result-true .result-value {
    color: #007700;
  }
}
.result.result-true .result-value {
  text-shadow: 0 0 10px rgba(170, 255, 170, 0.5);
}
@media (prefers-color-scheme: light) {
  .result.result-true .result-value {
    text-shadow: 0 0 10px rgba(0, 119, 0, 0.5);
  }
}
.result.result-false {
  background: rgba(51, 0, 0, 0.3) 0%; /* Old browsers */
  background: -moz-linear-gradient(to right, rgba(51, 0, 0, 0.3) 0%, rgba(51, 0, 0, 0.3) 75%, transparent 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(to right, rgba(51, 0, 0, 0.3) 0%, rgba(51, 0, 0, 0.3) 75%, transparent 100%); /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(to right, rgba(51, 0, 0, 0.3) 0%, rgba(51, 0, 0, 0.3) 75%, transparent 100%); /* Opera 11.10-11.50 */
  background: linear-gradient(to right, rgba(51, 0, 0, 0.3) 0%, rgba(51, 0, 0, 0.3) 75%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media (prefers-color-scheme: light) {
  .result.result-false {
    background: rgba(255, 170, 170, 0.3) 0%; /* Old browsers */
    background: -moz-linear-gradient(to right, rgba(255, 170, 170, 0.3) 0%, rgba(255, 170, 170, 0.3) 75%, transparent 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(to right, rgba(255, 170, 170, 0.3) 0%, rgba(255, 170, 170, 0.3) 75%, transparent 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(to right, rgba(255, 170, 170, 0.3) 0%, rgba(255, 170, 170, 0.3) 75%, transparent 100%); /* Opera 11.10-11.50 */
    background: linear-gradient(to right, rgba(255, 170, 170, 0.3) 0%, rgba(255, 170, 170, 0.3) 75%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
.result.result-false .result-value {
  color: #ffaaaa;
}
@media (prefers-color-scheme: light) {
  .result.result-false .result-value {
    color: #770000;
  }
}
.result.result-false .result-value {
  text-shadow: 0 0 10px rgba(255, 170, 170, 0.5);
}
@media (prefers-color-scheme: light) {
  .result.result-false .result-value {
    text-shadow: 0 0 10px rgba(119, 0, 0, 0.5);
  }
}
.result.result-null .result-value {
  color: #cccccc;
}
@media (prefers-color-scheme: light) {
  .result.result-null .result-value {
    color: #cccccc;
  }
}
.result.result-null .result-value {
  text-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
}
@media (prefers-color-scheme: light) {
  .result.result-null .result-value {
    text-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
  }
}