﻿@import url("https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap");
body {
}

.Comment_Container {
    max-width: max-content;
    height: 100%;
    margin: auto;
    display: table;
}

.Comment_header {
    background: #0088ff;
    color: #fff;
    height: 50px;
    display: table-row;
    line-height: 34px;
    text-align: left;
}

.Comment_h1 {
    padding: 2px 5px;
}

.Comment_chats {
    /*background: #ece5dd;*/
    background: rgba(0, 0, 0, 0.05);
    display: block;
    max-height: 500px;
    overflow-y: scroll;
}

.Comment_chat-bubble {
    margin: 6px 10px;
    padding: 4px 8px;
    display: block;
    position: relative;
    max-width: 80%;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    clear: both;
}

.Comment_msg-in {
    background: #fff;
    text-align: left;
    float: left;
    white-space: pre-wrap;
}

.Comment_msg-out {
    background: #e1e3df;
    text-align: left;
    float: right;
    white-space: pre-wrap;
}

.Comment_msg-in::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: -6px;
    top: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
}

.Comment_msg-in::after {
    content: attr(data-time);
    font-size: 12px;
    color: #8a8a8a;
    position: relative;
    margin: 4px;
    float: right;
    bottom: -6px;
    right: -8px;
}

.Comment_msg-out::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: -6px;
    top: 0;
    border: 10px solid transparent;
    border-top-color: #dcf8c6;
}

.Comment_msg-out::after {
    content: attr(data-time);
    font-size: 12px;
    color: #8a8a8a;
    position: relative;
    margin: 4px;
    margin-right: 25px;
    float: right;
    bottom: -6px;
    right: -8px;
}

.btn-link:hover {
    color: #004080;
    text-decoration: none !important;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: none !important;
}

.accordion-btn {
    position: relative;
}

    .accordion-btn:before {
        position: absolute;
        content: "+";
        right: 20px;
        top: 0px;
        font-size: 30PX;
        font-weight: 800;
    }

    .accordion-btn[aria-expanded="true"]:before {
        content: "-";
    }
