:root {
  --outgoing-chat-bg: #1f5389;
  --incoming-chat-bg: #22609f;
  --incoming-chat-border: #444654;
  --incoming-text-color: #fff;
  --outgoing-text-color: #d8b051;
  --outgoing-chat-border: #444654;
	--nav-color: #1F5488;
}

.chat-container .chat.outgoing {
  background: var(--outgoing-chat-bg);
  border: none;
}

.qa {
  color: rgb(182, 75, 75);
}


/* Reponsive Media Query */
@media screen and (max-width: 600px) {

    .chat-container .chat.outgoing,
    .chat-container .chat.incoming {
        border: none;
    }
    
}