.ci-header-alert  {
    background: #ff0000;
    margin: 0;
}

.block-editing .ci-header-alert {
    display: block !important;
}

.ci-header-alert .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #ff0000;
    padding: 18px 20px;
    max-width: 1100px;
    margin: auto;
}

.ci-header-alert .nb-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 500;
    padding-right: 20px;
}

.ci-header-alert .nb-btn-wrapper .nb-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 700;
    padding: 7px 33px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: transparent;
}

.ci-header-alert .nb-btn-wrapper .nb-link:hover,
.ci-header-alert .nb-btn-wrapper .nb-link:focus,
.ci-header-alert .nb-btn-wrapper .nb-link:active {
    color: #ff0000;
    background: #ffffff;
}

@media screen and (max-width: 576px) {
    .ci-header-alert .content-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding-bottom: 20px;
    }

    .ci-header-alert .content-wrapper .title {
        flex-shrink: 1;
    }

    .ci-header-alert .content-wrapper .nb-btn-wrapper {
        width: 100%;
    }

    .ci-header-alert .content-wrapper .nb-btn-wrapper .nb-link {
        width: 100%;
        display: block;
        text-align: center;
        padding: 5px 20px;
    }
}