/* Theme */
:root>* {
  --md-primary-fg-color: #3E9C36;
  --md-primary-fg-color--dark: #3A3A3A;
  --md-primary-fg-color--light: #E6E6E6;
}

/* Custom admonitions */
:root {
  --md-admonition-icon--legal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 10a3.04 3.04 0 0 1 3-3 3.04 3.04 0 0 1 3 3 3.04 3.04 0 0 1-3 3 3.04 3.04 0 0 1-3-3m3 9 4 1v-3.08A7.54 7.54 0 0 1 12 18a7.54 7.54 0 0 1-4-1.08V20m4-16a5.78 5.78 0 0 0-4.24 1.74A5.78 5.78 0 0 0 6 10a5.78 5.78 0 0 0 1.76 4.23A5.78 5.78 0 0 0 12 16a5.78 5.78 0 0 0 4.24-1.77A5.78 5.78 0 0 0 18 10a5.78 5.78 0 0 0-1.76-4.26A5.78 5.78 0 0 0 12 4m8 6a8 8 0 0 1-.57 2.8A7.8 7.8 0 0 1 18 15.28V23l-6-2-6 2v-7.72A7.9 7.9 0 0 1 4 10a7.68 7.68 0 0 1 2.33-5.64A7.73 7.73 0 0 1 12 2a7.73 7.73 0 0 1 5.67 2.36A7.68 7.68 0 0 1 20 10"/></svg>')
}

.md-typeset .admonition.legal,
.md-typeset details.legal {
  border-color: rgb(255, 185, 59);
}

.md-typeset .legal>.admonition-title,
.md-typeset .legal>summary {
  background-color: rgba(255, 185, 59, 0.1);
}

.md-typeset .legal>.admonition-title::before,
.md-typeset .legal>summary::before {
  background-color: rgb(255, 185, 59);
  -webkit-mask-image: var(--md-admonition-icon--legal);
  mask-image: var(--md-admonition-icon--legal);
}

:root {
  --md-admonition-icon--requirements: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10H3v2h11zm0-4H3v2h11zM3 16h7v-2H3zm18.5-4.5L23 13l-7 7-4.5-4.5L13 14l3 3z"/></svg>')
}

.md-typeset .admonition.requirements,
.md-typeset details.requirements {
  border-color: rgb(59, 144, 255);
}

.md-typeset .requirements>.admonition-title,
.md-typeset .requirements>summary {
  background-color: rgba(59, 144, 255, 0.1);
}

.md-typeset .requirements>.admonition-title::before,
.md-typeset .requirements>summary::before {
  background-color: rgb(59, 144, 255);
  -webkit-mask-image: var(--md-admonition-icon--requirements);
  mask-image: var(--md-admonition-icon--requirements);
}