.c-chat-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.c-chat-inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
	box-sizing: border-box;
}

.c-chat-scroller {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px;
    box-sizing: border-box;
	transform: translateZ(0);
}

.c-chat-toolbar {
    width: 100%;
	flex-shrink: 0;
}

.c-chat-input-container {
	background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
    margin: 12px;
    padding: 4px;
    box-sizing: border-box;
    border-radius: 16px;
    display: flex;
    border: 1px solid;
	border-color: rgba(0, 0, 0, 0.12);
	align-items: flex-end;
}

.c-chat-page {
	position: relative;
	box-sizing: border-box;
}

.c-chat-input {
    width: 100%;
    border: 0;
    background-color: transparent;
    outline: 0;
    padding: 10px 16px;
    font-size: 16px;
    resize: none;
    height: 40px;
    min-height: 40px;
    max-height: 150px;
    font-family: Product;
    box-sizing: border-box;
	overflow: hidden;
}
.c-chat-input.scollable {
    overflow-y: auto;
}

.c-chat-send {
	box-shadow: none;
    flex-shrink: 0;
	background-color: #6200ee;
    background-color: var(--mdc-theme-primary, #6200ee);
}

.c-chat-send:hover, .c-chat-send:active , .c-chat-send:focus {
	box-shadow: none;
}

.c-chat-bubble {
	display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.c-chat-bubble.c-chat-bubble-reply {
    align-items: flex-start;
}

.c-chat-bubble-author {
	font-size: 16px;
    margin: 4px 0;
    display: flex;
    align-items: center;
    font-family: 'Product';
}

.c-chat-bubble-author span {
    margin: 0px 12px;
}

.c-chat-bubble-author-image {
    background-color: #ccc;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}

.c-chat-bubble-content {
	background-color: #6200ee;
    background-color: var(--mdc-theme-primary, #6200ee);
    color: #fff;
    margin: 2px 23px;
    border-radius: 8px;
	max-width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
	position: relative;
	box-sizing: border-box;
}

.c-chat-bubble-reply .c-chat-bubble-content {
	background-color: #dcdcdc;
	color: rgba(0, 0, 0, 0.87);
}


.c-chat-bubble-content--first .c-chat-bubble-content {
    border-top-right-radius: 0;
}

.c-chat-bubble-content--first.c-chat-bubble-reply .c-chat-bubble-content {
    border-top-left-radius: 0;
    border-top-right-radius: 8px;
}

.c-chat-bubble-content--first::before {
    content: '';
    position: absolute;
    margin: 38px 16px;
    left: unset!important;
    border-color: transparent;
    border-style: solid;
    border-width: 4px;
    border-right-color: transparent;
	border-left-color: #6200ee;
    border-left-color: var(--mdc-theme-primary, #6200ee);
	border-top-color: #6200ee;
    border-top-color: var(--mdc-theme-primary, #6200ee);

}

.c-chat-bubble-content--first.c-chat-bubble-reply::before {
    border-left-color: transparent;
	border-right-color: #dcdcdc;
	border-top-color: #dcdcdc;
}


.c-chat-bubble-time {
    font-size: 12px;
    margin: 4px 24px 16px;
    color: #000;
    color: var(--mdc-theme-text-secondary-on-background, #000);
}

/*CONTENTS STYLES*/
.c-chat-bubble-content {
    padding: 10px 14px;
    font-size: 16px;
}
.c-chat-bubble-content a {
	color: inherit;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.c-chat-bubble-content img, .c-chat-bubble-content video {
    width: 100%;
	margin-top: 12px;
	background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
	border-radius: 4px;
}
