#messagesOverlay {
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(48, 48, 48, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.messagesBlock {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    min-height: 150px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.messageTitle {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    padding: 2px 16px;
    text-transform: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid #eee;
}

.messagesBody {
    font-weight: 100;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.messagesBody > div {
    margin: 10px 0
}

.messagesButtonsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 10px;
}

.errorDiv {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 100;
    color: #adadad;
}