/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */

// Source: https://css-tricks.com/inclusively-hidden/
.ams-visually-hidden:not(:active, :focus) {
  block-size: 1px;
  clip-path: inset(50%);
  inline-size: 1px;
  overflow: hidden;
  position: absolute;
  -webkit-user-select: none;

  /* Safari support is added with the prefixed property. */
  /* stylelint-disable-next-line plugin/use-baseline */
  user-select: none;
  white-space: nowrap;
}
