:root {
  --unreleased-color: rgb(201, 107, 255);
  --unreleased-color-fd: rgba(176, 40, 255, .15);
}

.md-typeset .unreleased-block>summary:after {
  background-color: var(--unreleased-color)
}

.md-typeset .unreleased-block>summary:before {
  background-color: var(--unreleased-color);
  mask-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.66 11.2c-.23-.3-.51-.56-.77-.82-.67-.6-1.43-1.03-2.07-1.66C13.33 7.26 13 4.85 13.95 3c-.95.23-1.78.75-2.49 1.32-2.59 2.08-3.61 5.75-2.39 8.9.04.1.08.2.08.33 0 .22-.15.42-.35.5-.23.1-.47.04-.66-.12a.6.6 0 0 1-.14-.17c-1.13-1.43-1.31-3.48-.55-5.12C5.78 10 4.87 12.3 5 14.47c.06.5.12 1 .29 1.5.14.6.41 1.2.71 1.73 1.08 1.73 2.95 2.97 4.96 3.22 2.14.27 4.43-.12 6.07-1.6 1.83-1.66 2.47-4.32 1.53-6.6l-.13-.26c-.21-.46-.77-1.26-.77-1.26m-3.16 6.3c-.28.24-.74.5-1.1.6-1.12.4-2.24-.16-2.9-.82 1.19-.28 1.9-1.16 2.11-2.05.17-.8-.15-1.46-.28-2.23-.12-.74-.1-1.37.17-2.06.19.38.39.76.63 1.06.77 1 1.98 1.44 2.24 2.8.04.14.06.28.06.43.03.82-.33 1.72-.93 2.27" /></svg>');
  -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.66 11.2c-.23-.3-.51-.56-.77-.82-.67-.6-1.43-1.03-2.07-1.66C13.33 7.26 13 4.85 13.95 3c-.95.23-1.78.75-2.49 1.32-2.59 2.08-3.61 5.75-2.39 8.9.04.1.08.2.08.33 0 .22-.15.42-.35.5-.23.1-.47.04-.66-.12a.6.6 0 0 1-.14-.17c-1.13-1.43-1.31-3.48-.55-5.12C5.78 10 4.87 12.3 5 14.47c.06.5.12 1 .29 1.5.14.6.41 1.2.71 1.73 1.08 1.73 2.95 2.97 4.96 3.22 2.14.27 4.43-.12 6.07-1.6 1.83-1.66 2.47-4.32 1.53-6.6l-.13-.26c-.21-.46-.77-1.26-.77-1.26m-3.16 6.3c-.28.24-.74.5-1.1.6-1.12.4-2.24-.16-2.9-.82 1.19-.28 1.9-1.16 2.11-2.05.17-.8-.15-1.46-.28-2.23-.12-.74-.1-1.37.17-2.06.19.38.39.76.63 1.06.77 1 1.98 1.44 2.24 2.8.04.14.06.28.06.43.03.82-.33 1.72-.93 2.27" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;}

.md-typeset details.unreleased-block>summary {
  background-color: var(--unreleased-color-fd)
}

.md-typeset details.unreleased-block {
  border-color: var(--unreleased-color);
  /* border-style: dashed; */
  border-width: thin;
  /* border-left: 4px solid #f39c12; */
  border-top-style: dashed;
}

/* details.unreleased-block[open] summary::before {
  content: "⚪";
} */
details.unreleased-block[open],
details.unreleased-block:not([open])
{
  /* transition: all 0.5s ease-in-out; */
  /* box-shadow: inset 0px -1px 0px #eaeaea; */
  animation: 3s ease-in-out 0s normal none running scale;
}
details.unreleased-block:not([open]) summary::before,
details.unreleased-block:not([open]) summary::after {
  content: "🟡";
}


.copy-target {
  cursor: pointer;
  position: relative;
  /* background-color: #f9f9f9; */
  padding: .5em;
  border-radius: 7px;
  transition: background-color 0.5s ease;
}

.copy-target:hover {
  background-color: #333333;
}

.copy-target::after {
  content: "← 📋 Cliquer pour copier";
  position: absolute;
  /* top: -1.5em; */
  /* left: 0; */
  right: 3%;
  font-size: .75em;
  color: #d4d4d4;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.copy-target:hover::after {
  opacity: 1;
}
