.flex-container-centered {
    display: flex;
    justify-content: center;
    text-align: left;
    height: 500px;
}

#chat-zone {
    min-width: 300px;
    /*        max-width: 800px;*/
    width:100%;
    /*background-color: #ecf0f1;*/
    height: 100%;
    padding: 22px;

}
#chat-text-zone {
    flex-grow: 2;
    border-bottom: 1px solid lightgray;
    margin-bottom: 12px;
    padding: 1em;
    overflow-y: scroll;
    /*background:linear-gradient(transparent 150px, red);*/
}
#chat-edit-zone {
    display: flex;
    flex-direction: row;
    align-items:center;
    flex-shrink: 0;
}

#chat-edit-zone textarea {

    border-radius: 5px;
    width: 100%;
    border:0px solid rgba(0,0,0,0);
    height: 44px;
    box-shadow: 0 2px 8px 0 #bdc3c7;
    resize: none;
}

.gvbtn {
    width: 40px;
    height: 40px;
    border-radius: 45px;
    background-color: #BAB8BA;
    color: black;
    margin: 4px;
    padding: 11px;
    box-shadow: 0 4px 8px 0 #bdc3c7
}
.gvbtn:hover {
    color: white;
    box-shadow: 0 2px 4px 0 #bdc3c7
}

.flex-2-col-grow {
    flex: 1 0 auto;
    padding-right: 8px;
}
.flex-2-col-shrink {
    flex: 0 1 auto;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 14px;
}

.flex-right {
    justify-content: flex-end;
    color: whitesmoke;
}

.flex-left {
    align-content: flex-start;
    color: whitesmoke;
}

.bubble {
    padding: 8px;
    border-radius: 5px;
    max-width: 80%;
    box-shadow: 0 4px 8px 0 #bdc3c7

}

.deleted {
    box-sizing: border-box;
    padding-top: 0px;
    padding-bottom: 4px;
    height: 1.5em;
    width: 2em;
    overflow: hidden;
    opacity: 0.4;
    transition: all 0.7s;
}

.deleted:hover, .deleted:active {
    height:auto;
    width: auto;
    opacity: 1;
    padding: 8px;
}


.bubble-header {
    /*text-decoration: underline;*/
    font-weight: bold;
    color: #555;
    text-overflow: ellipsis;
}
.bubble-header-date {
    /*text-decoration: underline;*/
    font-weight: normal;
    color: #555;
}

.bubble-header-reply {
    margin-right: 4px;
}

.bubble-header-reply:hover {
    color: white;
}

.bubble-left {
    background-color: #0dccc0;
}
.bubble-right {
    background-color: #fe7c60;
}

.bubble-reply {
    font-size: 0.7em;
    margin-left: 20px;
    padding-left: 2px;
    color: #327584;
    border-left: 2px solid #327584;
}