/* --- Relaunch Top Banner --- */
#hdt-relaunch-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #1a1a2e;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex !important;
    align-items: center;
}

.hdt-rb-track {
    display: inline-block;
    animation: hdt-rb-marquee 30s linear infinite;
    padding-left: 100%;
}

.hdt-rb-content {
    display: inline-block;
    white-space: nowrap;
}

@keyframes hdt-rb-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Push page content down when banner is visible */
body.hdt-rb-active {
    margin-top: 40px !important;
}

/* If WP admin bar is showing, offset further */
body.admin-bar.hdt-rb-active #hdt-relaunch-banner {
    top: 32px;
}

body.admin-bar.hdt-rb-active {
    margin-top: 40px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar.hdt-rb-active #hdt-relaunch-banner {
        top: 46px;
    }

    #hdt-relaunch-banner {
        font-size: 12px;
        height: 36px;
    }

    body.hdt-rb-active {
        margin-top: 36px !important;
    }
}
