/* Custom "experimental" admonition — amber flask icon.
 *
 * Usage in any docstring (mkdocstrings renders docstrings as Markdown):
 *
 *   !!! experimental
 *       This feature is under active development.
 *       The API may change without notice.
 */

:root {
  /* Flask / beaker icon (Material Design "flask" path) */
  --md-admonition-icon--experimental: url('data:image/svg+xml;charset=utf-8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">\
<path d="M5 19a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1c0-.21-.07-.4-.18-.57\
L13 8.35V4h-2v4.35L5.18 18.43C5.07 18.6 5 18.79 5 19zM6 2h12v2H6V2z"/>\
</svg>');
}

/* Border colour */
.md-typeset .admonition.experimental,
.md-typeset details.experimental {
  border-color: rgb(246, 128, 25);
}

/* Title bar background */
.md-typeset .experimental > .admonition-title,
.md-typeset .experimental > summary {
  background-color: rgba(246, 128, 25, .1);
}
.md-typeset .experimental > .admonition-title::before,
.md-typeset .experimental > summary::before {
  background-color: rgb(246, 128, 25);
  -webkit-mask-image: var(--md-admonition-icon--experimental);
          mask-image: var(--md-admonition-icon--experimental);
}
