.fbm-banner {
    width: 100%;
    left: 0;
    z-index: 999999;
    box-sizing: border-box;
}

.fbm-fixed {
    position: fixed;
}

.fbm-sticky {
    position: sticky;
}

.fbm-top {
    top: 0;
}

.fbm-bottom {
    bottom: 0;
}

.fbm-inner {

    max-width: 1400px;
    margin: 0 auto;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    min-height: inherit;
    box-sizing: border-box;
}

.fbm-content {

    width: 100%;
    text-align: center;
    line-height: 1.5;
}

.fbm-content > *:first-child {
    margin-top: 0;
}

.fbm-content > *:last-child {
    margin-bottom: 0;
}

.fbm-content a {
    color: inherit;
    text-decoration: underline;
}

.fbm-close {

    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);

    background: transparent;
    border: none;

    color: inherit;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    padding: 0;
}

@media (max-width: 768px) {

    .fbm-inner {

        padding: 16px 40px 16px 12px;
    }

}