/* Sticky announcement bar */
.site-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #000;         /* Black */
    color: #fff;              /* White */
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    transform: translateY(0);
    transition: transform .25s ease, opacity .25s ease;
}

/* Hide animation */
.site-announcement.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.site-announcement__content {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-announcement__content .text a {
    color: white;
}

.site-announcement__dismiss {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}

body.has-announcement {
    padding-top: 46px; /* Adjust so site does not hide under the bar */
}
