:root {
  --md-admonition-icon--complete: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M280 64h40c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128c0-35.3 28.7-64 64-64h49.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64h9.6zM64 112c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h256c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16h-16v24c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24v-24H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"></path></svg>')
}


/* This takes care of the complete admonition. */

.md-typeset .admonition.complete,
.md-typeset details.complete {
  border-color: #ff9100;
}
.md-typeset .complete > .admonition-title,
.md-typeset .complete > summary {
  background-color: #ff91001a;
  /* display: none */
}
.md-typeset .complete > .admonition-title::before,
.md-typeset .complete > summary::before {
  background-color: #ff9100;
  -webkit-mask-image: var(--md-admonition-icon--complete);
          mask-image: var(--md-admonition-icon--complete);
}


/* This takes care of the verify admonition. */
:root{
  --md-admonition-icon--verify: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7l233.4-233.3c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>')
}

.md-typeset .admonition.verify,
.md-typeset details.verify {
  border-color: #00bfa5;
}
.md-typeset .verify > .admonition-title,
.md-typeset .verify > summary {
  background-color: #00bfa51a;
  /* display: none */
}
.md-typeset .verify > .admonition-title::before,
.md-typeset .verify > summary::before {
  background-color: #00bfa5;
  -webkit-mask-image: var(--md-admonition-icon--verify);
          mask-image: var(--md-admonition-icon--verify);
}
