/* =========================================================
   LiveFitFlow
   Top Announcement Bar
   ========================================================= */

.lff-topbar {
    width: 100%;

    background: #062b18;
    color: #ffffff;

    font-size: 12px;
    line-height: 1.4;
}

.lff-topbar__inner {
    width: min(100% - 40px, 1280px);

    min-height: 34px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.lff-topbar__announcement {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    white-space: nowrap;
}

.lff-topbar__announcement:hover {
    color: #ffffff;
}

.lff-topbar__bolt {
    color: #9be15d;

    font-size: 13px;
    line-height: 1;
}

.lff-topbar__right {
    display: flex;
    align-items: center;

    gap: 22px;
}

.lff-topbar__update {
    opacity: 0.9;

    white-space: nowrap;
}

.lff-topbar__socials {
    display: flex;
    align-items: center;

    gap: 12px;
}

.lff-social-link {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    opacity: 0.9;

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.lff-social-link:hover {
    color: #ffffff;

    opacity: 1;

    transform: translateY(-1px);
}

.lff-social-link svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.lff-social-link:nth-child(2) svg path:first-child {
    fill: none;
}

.lff-social-link:nth-child(2) svg path:last-child {
    fill: currentColor;
    stroke: none;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 768px) {

    .lff-topbar__inner {
        width: min(100% - 28px, 1280px);

        min-height: 32px;
    }

    .lff-topbar__right {
        gap: 12px;
    }

    .lff-topbar__update {
        display: none;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 480px) {

    .lff-topbar {
        font-size: 11px;
    }

    .lff-topbar__inner {
        width: min(100% - 24px, 1280px);

        min-height: 31px;
    }

    .lff-topbar__announcement {
        max-width: 100%;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .lff-topbar__socials {
        display: none;
    }

}