:root {
    --md-admonition-icon--code-braces: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3a2 2 0 00-2 2v4a2 2 0 01-2 2H3v2h1a2 2 0 012 2v4a2 2 0 002 2h2v-2H8v-5a2 2 0 00-2-2 2 2 0 002-2V5h2V3m6 0a2 2 0 012 2v4a2 2 0 002 2h1v2h-1a2 2 0 00-2 2v4a2 2 0 01-2 2h-2v-2h2v-5a2 2 0 012-2 2 2 0 01-2-2V5h-2V3h2z"/></svg>')
  }
  .md-typeset .admonition.code-braces,
  .md-typeset details.code-braces {
    border-color: rgb(255, 128, 0);
  }
  .md-typeset .code-braces > .admonition-title,
  .md-typeset .code-braces > summary {
    background-color: rgba(119, 119, 119, 0.1);
  }
  .md-typeset .code-braces > .admonition-title::before,
  .md-typeset .code-braces > summary::before {
    background-color: rgb(255, 128, 0);
    -webkit-mask-image: var(--md-admonition-icon--code-braces);
            mask-image: var(--md-admonition-icon--code-braces);
  }

/* Wave animation credit: https://jarv.is/notes/css-waving-hand-emoji/ */

  .wave {
  animation-name: wave-animation;  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;        /* Change to speed up or slow down */
  animation-iteration-count: infinite;  /* Never stop waving :) */
  transform-origin: 70% 70%;       /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate(14.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
   20% { transform: rotate(-8.0deg) }
   30% { transform: rotate(14.0deg) }
   40% { transform: rotate(-4.0deg) }
   50% { transform: rotate(10.0deg) }
   60% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
  100% { transform: rotate( 0.0deg) }
}
