.message-block {
    position: fixed;
    left: 50%;
    transform: translate(-50%,0);
    bottom: 15px;
    width: 1000px;
    max-width: calc(100vw - 30px);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
.message-block__text {
    font-size: 13px;
}
.message-block__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media screen and (min-width: 768px) {
    .message-block {
        flex-direction: row;
    }
}