.wrap>h2:first-child {
    font-size: 23px;
    background: white;
    font-weight: 400;
    margin: 0;
    padding: 9px 0 4px;
    line-height: 1.3;
    padding: 40px !important;
}

#pluginimg{
	width: 40px;
    background-size: contain;
    height: 40px;
    margin-right: 10px;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-container i {
    color: slategray
}

.tooltiptext.classic {
    visibility: hidden;
    width: 50vw;
    background-color: slategray;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -25vw;
}

.tooltiptext.red {
    visibility: hidden;
    width: 25vw;
    background-color: slategray;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: -75%;
}
.tooltip-container:hover .tooltiptext {
    visibility: visible;
}

/** Chat logs appearance **/

.conversation {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.message {
    display: flex;
    flex-direction: row;
    margin: 5px 0;
}

.message.user {
    margin-left: auto !important;
}

.message-prompt {
    background-color: #eee;
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

.message-source {
    font-weight: bold;
}

.message-source::after {
    content: ":";
}

.user-message .message-prompt {
    background-color: #0078d7;
    color: #fff;
}

.user-message .message-source {
    color: #0078d7;
}

.bot-message .message-prompt {
    background-color: #eee;
    color: #000;
}

.bot-message .message-source {
    color: #000;
}

@media screen and (max-width: 782px){
.fixdisplay{
    display: flex;
}
}
