label {
    margin-bottom: 0 !important;
    padding: 0 !important;
}
.header {
    height: 50px;
    background-color:#FFFFFF;
    position: relative;
    z-index: 1;
    border-bottom-width: 0px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0,0,0,0.20);
}
.header .header-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: #da1c5f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header .header-left {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: left;
    align-items: center;
}
.header .image-icon img {
    height: 23px;
}
.header .image-icon img.small {
    height: 16px;
}
.header .image-icon img:hover {
    cursor: pointer;
}
.header .header-right {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: right;
    align-items: center;
}
.header .header-right .image-icon {
    margin-left: 15px;
}
.messages-container {
    width: 100%;
    margin-top: 0px;
    height: calc(100% - 110px);
    background-color:#f0f0f0;
    overflow-y: scroll;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}
.messages-container .message-date-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}
.messages-container .message-date {
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,0.20);
    background-color: #ffffff;
    color: #000000;
    font-size: 0.90rem;
    font-weight: 400;
    text-align: center;
}
.messages-container .message {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 10px;
    border-width: 1px;
    border-color:rgba(0,0,0,0.15);
    /* border-style: solid; */
    max-width: calc(100% - 40px);
}
.messages-container .my-message {
    float:right;
    margin-right: 10px;
    /* background-color: #bf29ff; */
    /* background: linear-gradient(90deg,rgba(191, 41, 255, 1) 0%, rgba(172, 75, 214, 1) 100%); */
    background-color: #6dcf8e;
}
.messages-container .other-message {
    float:left;
    margin-left: 10px;
    /* background-color:#ff4d55; */
    /* background: linear-gradient(177deg, #fb6340, #da1c5f); */
    background-color: #FFFFFF;
}
.messages-container .message .message-text {
    font-size: 0.95rem;
    font-weight: 400;
    max-width: 100%;
    overflow-wrap: break-word;
}
.messages-container .my-message .message-text {
    /* color: #FFFFFF; */
    color: #3f3f3f;
}
.messages-container .other-message .message-text {
    /* color: #FFFFFF; */
    color: #3f3f3f;
}
.messages-container .message .message-text a {
    /* color: #FFFFFF; */
    color: #3f3f3f;
}
.messages-container .message .message-time {
    width: 100%;
    text-align: right;
    font-size: 0.70rem;
    margin-top: 5px;
    font-weight: 400;
}
.messages-container .other-message .message-time {
    /* color:#ddf030; */
    color: #575757;
}
.messages-container .my-message .message-time {
    /* color:#e8fc26; */
    color: #575757;
}
.message-input-container {
    height: 60px;
    z-index: 1;
    /* background-color: #ffffff; */
    background-color: #eaeaea;
    border-top-width: 0px;
    border-top-color: rgba(0,0,0,0.20);
    border-top-style: groove;
}
.message-input-container .message-attachment-container {
    float: left;
    width: 15px;
    height: calc(100% - 36px);
    margin-top: 18px;
    margin-left: 10px;
}
.message-input-container .message-attachment-container img {
    height: 100%;
    cursor: pointer;
}
.message-input-container .message-input-wrapper {
    float: left;
    width: calc(100% - 20px);
    height: calc(100% - 14px);
    margin-left: 10px;
    margin-top: 7px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,0.20);
    border-radius: 20px;
    /* background-color: inherit; */
    /* background-color: #efefef; */
    background-color: #ffffff;
    overflow: hidden;
}
.message-input-container .message-input {
    float: left;
    width: calc(100% - 40px);
    height: 100%;
    padding-left: 15px;
    padding-right: 0px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.message-input-container .message-input input[type=search]{
    font-size: 0.90rem;
    height: 100%;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    outline: none;
    border-width: 0px;
    color: #656565;
    background-color: inherit;
}
.message-input-container .message-send {
    float: right;
    /* width: 50px; */
    height: calc(100% - 10px);
    margin-right: 7px;
    margin-top: 5px;
}
.message-input-container .message-send button {
    height: 100%;
    width: 100%;
    color:#FFFFFF;
    background-color:#f50ab2;
    border-color: #f50ab2;
    border-width: 0px;
    border-radius: 50%;
    outline: none;
    font-size: 0.80rem;
    cursor: pointer;
}
.message-input-container .message-send button img {
    cursor: pointer;
    width: 21px
}
.image-transfer-progress {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color:#FFFFFF;
    z-index: 2;

    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0,0,0,0.20);
}
.image-transfer-progress .image-progress-text {
    font-size: 0.90rem;
    font-weight: 400;
    /* color: #656565; */
    color: #fb6340;
}
.media-options-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
    background-color:#FFFFFF;
    z-index: 3;
    display: flex;
    align-items: center;

    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0,0,0,0.20);
}
.media-options-container .image-icon {
    margin-right: 30px;
}
.media-options-container .image-icon img {
    height: 25px;
}
.media-options-container .image-icon img.small {
    height: 18px;
}
.media-options-container .image-icon img:hover {
    cursor: pointer;
}
#canvasImage {
    width: 400px;
    height: 0px;
    display:none;
}
.message-image {
    max-width: 160px;
}
.full-image-view{
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.80);
    position: fixed;
    z-index: 99999998 !important;
    top: 0;
    left: 0;
    border-radius: 0px;
}
.full-image-view .full-image-close {
    display:block;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-width: 0px;
    border-color:#FFFFFF;
    border-style:solid;
    text-align: center;
    color:#FFFFFF;
    background-color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}
.full-image-view .full-image-close img {
    width: 100%;
}
.full-image-view .full-image {
    position: absolute;
    width: 100%;
    height: calc(100% - 60px);
    text-align: center;
    z-index: 99999999 !important;
    top: 60px;
}
.full-image-view .full-image img {
    max-width: 95%;
    max-height: 95%;
}
.audio-record-view {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 10px 20px 10px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.10);
}
.audio-record-view .audio-mic-image {
    text-align: center;
}
.audio-record-view .audio-mic-image img {
    width: 25px;
}
.audio-record-view .audio-recording-container {
    margin-top: 10px;
    text-align: center;
}
.audio-record-view .audio-recording-container img {
    width: 80px;
}
.audio-record-view .audio-recording-actions-container {
    text-align: center;
    margin-top: 20px;
}
.audio-record-view .audio-recording-actions-container button {
    width: 80px;
    font-size: 0.80rem;
}
.audio-record-view .audio-review-container {
    margin-top: 20px;
}
.container-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-width: 1px;
    border-color:#FF0000;
    border-style:solid;
    position: relative;
    margin-top: 5px;
}
.container-close .icon {
    color:#FF0000;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media(min-width: 800px){
    .media-options-container,
    .image-transfer-progress {
        width: 800px;
        left: calc((100% - 800px) / 2);
        border-left: 1px solid rgba(0,0,0,0.10);
        border-right: 1px solid rgba(0,0,0,0.10);
    }
    .audio-record-view {
        width: 50%;
        left: calc(50% / 2);
    }
}