.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;
}
}

td.Active i.fa-check,
td.embeddings i.fa-check {
    color: green;
}

td.Active i.fa-times,
td.embeddings i.fa-times {
    color: red;
}

.green-row {
    background-color: #d8ffda !important;
}

.yellow-row {
    background-color: #fff9d8 !important;
}

.wdgpt-modal {
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.wdgpt-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

.wdgpt-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.wdgpt-close:hover,
.wdgpt-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2271b1;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2271b1;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.wdgpt-legend-color.wdgpt-legend-color-green{
    background-color: #d8ffda;
    padding: 5px;
    margin-right: 5px;
    height: 5px;
    width: 5px;
    border:#949494;
    border-style:  solid;
    border-width: 1px;
}

.wdgpt-legend-color.wdgpt-legend-color-yellow{
    background-color: #fff9d8;
    padding: 5px;
    margin-right: 5px;
    height: 5px;
    width: 5px;
    border:#949494;
    border-style:  solid;
    border-width: 1px;
}

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

#wdgpt-rate-us-notice {
  display: none;
}

#wdgpt_mail_error {
  display: none;
  color: red;
}

#wdgpt_mail_from_error {
  display: none;
  color: red;
}

.wdgpt-database-error {
  color: red;
}

.wdgpt-database-updated {
  color: green;
}

.wdgpt-database-disabled {
  pointer-events: none;
  color: #ccc;
}