.form-service {
    width: 100%;
    background-color: #ecccbd;
    padding: 15px;
}

.chat {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 300px;
    z-index: 1040;
    margin-bottom: -400px;
    transition: margin 0.5s linear;
}

.addition {
    padding: 0 5px;
    border-bottom: 1px solid #1c223e;
    background-color: #ecccbd;
    height: auto;
    display: none;
}

.float-chat {
    width: 100%;
    height: 50px;
    color: #FFF;
    text-align: center;
    position: relative;
    background-color: #1c223e;
    border-radius: 10px 10px 0 0;
    /* border: 3px solid #ecccbd;*/
}

.float-chat span {
    display: inline-block;
    margin-top: 10px;

}
.float-chat span.before-connect{
    clip-path: inset(0 2ch 0 0);
    animation: l 1s steps(4) infinite;
}

.result {
    height: 300px;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    overflow: auto;
    color: #1c223e;
    display: flex;
    flex-direction: column;
}

.form-body {
    /*  margin-bottom:-270px;*/
    position: relative;
    width: 100%;
    height: 100%;
    transition: margin 0.5s linear;
}

.row-input .input-group input {
    background-color: #ccc;
}

.chat.show {
    margin-bottom: 0;
}

.svg-icon {
    width: 30px;
    text-align: right;
    background-color: #FFF;
    padding: 4px 0 10px 0;
    border: 0;
}

.field-input {
    width: calc(100% - 30px);
    padding: 7px;
    border: 1px solid #ecccbd;
    border-right: 0;
    border-top: 0;
}

.field-input:focus {
    outline: none;
}

.form-body .row {
    align-items: center !important;
}

.input-group span {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #ecccbd;
    border-left: 0;
    border-top: 0;
    background-color: #ccc;
}

.text-result {
    color: #1f2645;
    margin: 10px;
    font-size: 1.1rem;
    display: flex;
}

@keyframes l {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}

.node-mess {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.node-mess.right .row-name,
.node-mess.right .row-name,
.node-mess.right .text-result {
    justify-content: end;
}

.row-name {
    display: flex;
    flex-direction: row;
}

.row-name-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 20px;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}