.sidebar-brand-logo-wrap {
    overflow: visible !important;
}

.sidebar-brand-logo-wrap::after {
    display: none !important;
}

.site-logo-star {
    position: absolute;
    z-index: 2;
    display: block;
    background: #fff;
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    pointer-events: none;
}

.site-logo-star.is-top {
    top: -5px;
    right: -3px;
    width: 10px;
    height: 16px;
    animation: siteLogoSparkle 1.8s ease-in-out infinite;
}

.site-logo-star.is-bottom {
    bottom: -3px;
    left: -2px;
    width: 7px;
    height: 11px;
    animation: siteLogoSparkle 1.8s .9s ease-in-out infinite;
}

.site-logo-star.is-top-small {
    top: 4px;
    right: -5px;
    width: 5px;
    height: 8px;
    animation: siteLogoSparkle 1.8s .45s ease-in-out infinite;
}

.site-logo-star.is-bottom-small {
    bottom: 4px;
    left: -5px;
    width: 4px;
    height: 7px;
    animation: siteLogoSparkle 1.8s 1.35s ease-in-out infinite;
}

@keyframes siteLogoSparkle {
    0%, 100% {
        opacity: .22;
        transform: scale(.45) rotate(0deg);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    45%, 55% {
        opacity: 1;
        transform: scale(1.2) rotate(8deg);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 1));
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-logo-star {
        animation: none !important;
        opacity: .9;
    }
}
