.rowMessage{
    background-color: var(--color-suite-tertiary-S360);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    .container_icon_back{
        padding: 10px;
        align-self: center;

        .icon_back {
            font-variation-settings:
                'FILL' 1,
                'wght' 400,
                'GRAD' 0,
                'opsz' 24;
            color: var(--icon_back-color);
            font-size: calc(var(--font-size-normal-S360) * 3);
            cursor: pointer;
            transition: filter 0.3s ease, color 0.3s ease;
            position: relative;
            z-index: 10000;

            &:hover {
                filter: brightness(0.8) saturate(1.5);
            }
        }
    }
    .container_message{
        height: 100%;
        width: 100%;
        display: flex;
        gap: 4px;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        .icon-message_check{
            font-variation-settings:
            'FILL' 1,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
            color: #007E23;
        }
        .icon-message_warning{
            font-variation-settings:
            'FILL' 1,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
            color: #D1A33C;
        }

        .text_message{
            font-weight: bold;
            font-size: calc(var(--font-size-normal-S360) + 2);
            color: var(--color-text-S360);
            margin-right: 60px;
        @media only screen and (max-width: 500px){
            width: 100%;
            margin-right: 0;
        }
        }
    }
}

