.effioBanner {
    color: white;
    font-size: x-large;
    font-weight: bold;
    font-family: Arial, sans-serif;
    width: 100%;
    padding-top: 3px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.effioBannerGrid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0px 12px;
    column-gap: 10px;
}

.effioBanner-left {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 6px;
}

.effioBanner-center {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.effioBanner-right {
    justify-self: end;
    display: flex;
    align-items: center;
}

.effioBanner-link {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,.08);
    white-space: nowrap;
}

.effioBanner-link:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.85);
}

.effioBanner-link--active {
    background: rgba(255,255,255,.28);
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255,255,255,.25) inset;
}

.bannerCloseBtn {
    height: 0.2em;
    width: 0.2em;
}