/* Box Follow Me */
:root {
    --md-admonition-icon--affiliate: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5 15H7v-2h10zm-9-3v-3h2v3zm3 0v-3h2v3zm3 0v-3h2v3zm3-4H7V8.5L12 6l5 2.5z"/></svg>')
  }
  .md-typeset .admonition.affiliate,
  .md-typeset details.affiliate {
    border-color: rgb(158, 158, 158);
     /* unvisited link */
     a:link {
      color: red;
    }
    /* visited link */
    a:visited {
      color: green;
    }
    /* mouse over link */
    a:hover {
      color: hotpink;
    }
    /* selected link */
    a:active {
      color: blue;
    }
  }
  .md-typeset .affiliate > .admonition-title,
  .md-typeset .affiliate > summary {
    background-color: rgba(92,92,92);
    color: #ffffff;
  }
  .md-typeset .affiliate > .admonition-title::before,
  .md-typeset .affiliate > summary::before {
    background-color: hotpink;
    -webkit-mask-image: var(--md-admonition-icon--affiliate);
            mask-image: var(--md-admonition-icon--affiliate);
  }
  /* Box Follow Me */