smile-star {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%/50%;
    background: #fbdc34;
    position: fixed;
    top: var(--mouse-y);
    left: var(--mouse-x);
    z-index: 99;
    border: 2px solid #fcdd35;
    box-shadow: 0 0 10px #fbdc34;
    animation: blinker 2s infinite;
    transition: all .4s ease-in-out;
}

@keyframes blinker {
    0%, 90% {
        opacity: .05;
    }

    50% {
        opacity: .9;
    }
}

@media screen and (max-width: 736px) {
    body.is-article-visible lang-panel {
        margin: 15px;
        opacity: .7;
        position: absolute;
    }
}

lang-panel {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: block;
    /* background: rgba(255,255,255,.5); */
    border-radius: 3px;
    padding: 5px;
    transition: all 1s ease-in-out;
}

lang-panel  #Lang {
    padding: 5px;
    text-align: center;
}

lang-panel a.button {
    padding: 10px;
    background-color: rgba(255,255,255,.7);
    text-align: center;
    height: auto;
    line-height: 100%;
    font-weight: bold;
}