:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
#double-focus-ring-example {
  background-image: linear-gradient(to right, #fffbd5, #b20a2c);
}
#double-focus-ring-example a {
  margin: 5px;
  padding: 10px;
  background: #ffffcc;
  display: inline-block;
  color: #A76000;
}
#double-focus-ring-example *:focus {
  outline: solid 2px var(--focus-color);
  box-shadow: 3px 3px 0 white, -3px -3px 0 white, -3px 3px 0 white, 3px -3px 0 white;
}
#double-focus-ring-example *:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
#double-focus-ring-example *:focus-visible {
  outline: solid 2px var(--focus-color);
  box-shadow: 3px 3px 0 white, -3px -3px 0 white, -3px 3px 0 white, 3px -3px 0 white;
}
.has-kb-instructions__text {
  background-color: black;
  color: white;
  display: block;
  margin: 10px 0 15px 0 !important;
  padding: 4px;
}
.enable__is-dark-mode .has-kb-instructions__text {
  background: #999;
  color: black;
}
.has-kb-instructions__container:has(:focus-visible):focus-within .has-kb-instructions__text {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
  margin: initial;
}
#kb-only-focus-within__example {
  text-align: center;
}
#kb-only-focus-within__example legend {
  font-size: 20/16rem;
  font-weight: bold;
  margin: 0 auto;
}
#kb-only-focus-within__example p {
  margin-bottom: 20px;
}
#kb-only-focus-within__example button[type="submit"] {
  margin: 20px auto;
  display: block;
  font-size: 16/16rem;
  border-radius: 30px;
  padding: 5px 10px;
}
.circleless-radio-buttons {
  display: inline-block;
}
.circleless-radio-buttons label {
  min-width: 100px;
  border: solid 1px #333;
  border-radius: 5px;
  padding: 3px;
  margin-right: 5px;
  float: left;
}
.enable__is-dark-mode .circleless-radio-buttons label {
  border: solid 1px white;
}
.circleless-radio-buttons label::last-child {
  margin-right: none;
}
.circleless-radio-buttons input {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  margin: -1px;
}
.circleless-radio-buttons input + label {
  text-align: center;
}
.circleless-radio-buttons input:focus + label {
  outline: solid 2px var(--focus-color);
  outline-offset: 2px;
}
.circleless-radio-buttons input:checked + label {
  background-color: #333;
  color: #fff;
}
.enable__is-dark-mode .circleless-radio-buttons input:checked + label {
  background-color: #ccc;
  color: #000;
}
/*# sourceMappingURL=focus-styling.css.map */