@keyframes xpl_admin_bar_pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.5;
    }
}
#wpadminbar {
    position: fixed !important;
    transform: translateY(-20px);
    animation: xpl_admin_bar_pulse 10s ease-in-out infinite;
    transition: transform 0.5s;
    will-change: transform;
}
@media screen and (max-width: 782px) {
    #wpadminbar {
        transform: translateY(-35px);
        min-width: auto !important;
    }
}
#wpadminbar:hover {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}
#wpadminbar.open {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}
body.logged-in.admin-bar{
    margin-top: -32px;
}

body:not(.logged-in) .d-none-loginonly{
    display: none!important;
}