.status-messages {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.status-messages * {
    box-sizing: border-box;
}

.status-messages__message {
    background: #285C76;
    color: #fff;
    display: flex;
    font-size: 14px;
    justify-content: center;
    line-height: 1.3;
    padding: 4px;
    text-align: center;
    width: 100%;
}

.status-messages__message--red-hover:hover {
    background: #e25945 !important;
    cursor: pointer;
}

.status-messages__message:not(:first-child) {
    padding-top: 2px;
}

.status-messages__message:not(:last-child) {
    padding-bottom: 2px;
}

.status-messages__message-content {
    border: 1px dashed #fff;
    padding: 6px 8px;
    width: 100%;
}

.status-messages__message-content a {
    color: #fff;
    text-decoration: underline;
}
