.site-alert {
    position: relative;
    background-color: #FFD785;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0 0;
    text-align: center;
    font-size: 16px;
    color: #212529;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bb-dark-theme .site-alert {
    border: 1px solid #121212;
    background-color: #E49D04;
}

.site-alert-close {
    font-size: 30px;
    opacity: 0.8;
    line-height: 0;
    position: absolute;
    right: 15px;
    top: 49%;
    cursor: pointer;
}

@media screen and (max-width: 570px) {
    .site-alert {
        padding-right: 35px;
    }

    .site-alert-close {
        right: 10px;
    }
}

