/*@media screen and (min-width: 76.25em) {
    .md-sidebar--primary {
    display: none;
    }
    .md-sidebar--secondary {
        order: 0;
    }
}*/

/* Emoji Animation */
@keyframes embounce {
  0%, 40%, 80%, 100% {
    transform: scale(1);
  }
  20%, 60% {
    transform: scale(1.08);
  }
}

/* REPLACEMENT HEADER DIV CLASS */
.replacehd {
  font-size: 1.5625em;
  font-weight: 300;
  letter-spacing: -0.01em;
  display: block;
}

.wfcheck {
  animation: embounce 1000ms infinite;
  color:rgb(12, 150, 0);
}
.wfnocheck {
  animation: embounce 1000ms infinite;
  color:rgb(222, 0, 0);
}

/* Assignment Block Style */
.md-typeset .admonition,
.md-typeset details {
  border-left-width: 5px;
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
  border-top-width: 0.1px;
}

:root {
    --md-admonition-icon--wfassign: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V7h10m0 6H7v-2h10m-3 6H7v-2h7M12 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>');
}

.md-typeset .admonition.wfassign,
.md-typeset details.wfassign {
  border-color: rgb(255, 0, 179);
}

.md-typeset .wfassign > .admonition-title,
.md-typeset .wfassign > summary {
  background-color: rgb(100, 0, 72);
  color: #FFFFFF
  
}

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