.messageWrapper {
    color: #444;
    display: flex;
    gap: 10px;
    min-height: 50px;
    font-size: 10px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: var(--ui-shadow-block);
    padding: 10px 20px;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.messageWrapper__icon {
    display: flex;
    max-width: 35px;
    max-height: 35px;
    min-height: 35px;
    min-width: 35px;
}

.messageWrapper--info .messageWrapper__icon svg {
    fill: rgb(192, 163, 1);
}

.messageWrapper--warning .messageWrapper__icon svg {
    fill: tomato
}

.messageWrapper__text {
    font-size: 1.4em;
}