#flashivo-bar {
    position: fixed;
    left: 0;
    width: 100%;
    padding: 12px 90px 12px 16px;
    font-size: 14px;
    text-align: center;
    z-index: 99999;
    box-sizing: border-box;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

/* TOP BAR */
#flashivo-bar.top {
    top: 0;
    transform: translateY(-100%);
}

/* BOTTOM BAR */
#flashivo-bar.bottom {
    bottom: 0;
    transform: translateY(100%);
}

/* Visible state */
#flashivo-bar.flashivo-show {
    transform: translateY(0);
    opacity: 1;
}

.flashivo-cta {
    margin-left: 12px;
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

#flashivo-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: inherit;
    cursor: pointer;
}
