#bx-panel {
    position: fixed !important;
    top: 0;
    width: 100% !important;
}

#bx-panel ~ .header  {
    top: 39px;
}


.lx-bold {
    font-weight: 700;
}

.smp_inject_form img {
    display: none;
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    user-select: none;
    animation-name: fall-sway, spin;
    animation-timing-function: linear;
}

@keyframes spin {
    from { rotate: 0deg; }
    to   { rotate: 2deg; }
}
@keyframes fall-sway {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(calc(-1 * var(--sway)), 25vh); }
    50%  { transform: translate(var(--sway), 50vh); }
    75%  { transform: translate(calc(-0.5 * var(--sway)), 75vh); }
    100% { transform: translate(0, 110vh); }
}