.chat-form-wrapper{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
}
.chat-form-container{
    position: absolute;
    width: 300px;
    bottom: 0;
    right: 0;
    background-color: white;    
}

.chat-form{
   position: relative;
   width: 100%;  
   display: flex;  
   flex-flow: column nowrap;
   pointer-events: all;
   border-top-left-radius: 1rem;
   overflow: hidden;
   box-shadow: -1px -1px 3px grey;
}
    .chat-form__header{
        display: flex;        
        color: white;
        cursor: pointer;
        width: 100%;
        padding: .8rem;             
    }
        .chat-form__header__title{
            display: flex;               
            color: white;
            flex: 1 1 auto;
            padding: .2rem;
        }
        .chat-form__header__button{
           height:32px;
           width: 32px;
           align-self: center;  
           flex: 1 1 auto;      
        }
    .chat-form__content{
        width: 100%;
        padding: .8rem;
    }
        .chat-form__content form{
            width: 100%;
        }

    .chat-form__button{
        background-color: transparent;
        padding: .3rem;
        border: none;
        outline: none;
        box-shadow: none;
        margin-bottom: 0;
    }
    .chat-form__button.chat-form__button--error{
        color: rgba(195, 36, 8, 0.76)!important;
    }
    .chat-form__button:disabled{
        opacity: .5;
    }
    .chat-form__button:focus,.chat-form__button:active{
        outline: none;
        box-shadow: none;
    }

.chat-wrapper{
    max-height: 500px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid gray;
    border-radius: 1rem;
}
.chat-wrapper.chat-wrapper--admin{
    max-height: 700px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.chat-container{
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

.message-row{
    display: flex;
    width: 100%;
    margin: 1rem 0;
    flex-flow: row wrap;
    border-radius: 1rem;    
    padding: 1rem 1rem 0rem 1rem;
    background-color: #0000000a;
}
    .message-row__name{        
        align-self: start;        
        display: flex;
        justify-content: center;
    }
        .message-row__name__item{
            text-align: center;
            border-radius: 50%;
            width: 64px;
            height: 64px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
            .message-row__name__item__text{
                font-size: 1rem;                
            }
    .message-row__content{
        padding-left:1rem;
        padding-right:.5rem;
        /* padding-top:.5rem; */
        padding-bottom:.5rem;
        align-self: center;
        flex: 1 1 auto;
    }
        .message-row__content__answer{
            padding-left:1rem;
            font-style: italic;                    
        }

    .message-row__content__answer-form{
        position: relative;
        overflow: hidden;
    }

    .message-row__content__answer-form--hidden{
        height: 0;
    }