.ld-status-tip{
    margin-left: .5em;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid #466b9b;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: .8em;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0 0 0;
    position: relative;
    color: #466b9b;
    box-shadow: 0 0 1px #466b9b;
	float: right;
}
button[aria-label="Info zu den Lektionen"] {
	margin-top: 6px;
}

.ld-status-tip::after{
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  min-width: 220px;
  max-width: 320px;
  background: #476b9b;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
  z-index: 999999;
}

.ld-status-tip::before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 2px);
  border: 8px solid transparent;
  border-top-color: #222;
  opacity: 0;
  transition: opacity .12s ease;
  pointer-events: none;
}

.ld-status-tip:hover::after,
.ld-status-tip:hover::before,
.ld-status-tip:focus::after,
.ld-status-tip:focus::before,
.ld-status-tip.is-open::after,
.ld-status-tip.is-open::before{
  opacity: 1;
}
#zf-kursfortschritt + .ld-status-tip {
	position: absolute;
    top: 23px;
    right: 116px;
}