button.chatbox-open {
  position: fixed;
  bottom: 8px;
  right: 8px;
  width: max-content;
  height: 40px;
  color: #ffffff;
  background-color: #ea027f;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  margin: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 110px;  
}
.chatbox-popup .chat-o-inner {
    position: relative;
}
.chat-client-num {
  background-color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 8px;
  top: 0px;
}
/* button.chatbox-close {*/
/*	 position: fixed;*/
/*	 bottom: 0;*/
/*	 right: 0;*/
/*	 width: 52px;*/
/*	 height: 52px;*/
/*	 color: #fff;*/
/*	 background-color: #6b50db;*/
/*	 background-position: center center;*/
/*	 background-repeat: no-repeat;*/
/*	 box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);*/
/*	 border: 0;*/
/*	 border-radius: 50%;*/
/*	 cursor: pointer;*/
/*	 display: none;*/
/*	 margin: 16px calc(2 * 16px + 52px) 16px 16px;*/
/*}*/
 #chat_message {
	 box-sizing: border-box;
	 width: 100%;
	 margin: 0;
	 height: calc(16px + 16px / 2);
	 padding: 0 calc(16px / 2);
	 font-family: inherit;
	 font-size: 16px;
	 line-height: calc(16px + 16px / 2);
	 color: #000;
	 background-color: none;
	 border: 0;
	 outline: 0 !important;
	 resize: none;
	 overflow: auto;
	 font-size: 14px;
     line-height: 1.5;
     margin-top: 8px;
     scrollbar-width: thin;
}
#chat_message:disabled {
    background-color: #ffffff;   
}
 textarea::placeholder {
	 color: #888;
}
 .chatbox-popup {
	 display: flex;
	 position: absolute;
	 box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
	 flex-direction: column;
	 display: none;
	 bottom: calc(2 * 16px + 52px);
	 right: 16px;
	 width: 377px;
	 height: auto;
	 background-color: #fff;
	 border-radius: 16px;
}
 .chatbox-popup .chatbox-popup__header {
	 box-sizing: border-box;
	 display: flex;
	 width: 100%;
	 padding: 16px;
	 color: #fff;
	 background-color: #6b50db;
	 align-items: center;
	 justify-content: space-around;
	 border-top-right-radius: 12px;
	 border-top-left-radius: 12px;
}
 .chatbox-popup .chatbox-popup__header .chatbox-popup__avatar {
	 margin-top: -32px;
	 background-color: #6b50db;
	 border: 5px solid rgba(0, 0, 0, 0.1);
	 border-radius: 50%;
}
 .chatbox-popup .chatbox-popup__main {
	 box-sizing: border-box;
	 width: 100%;
	 padding: calc(2 * 8px) 0px;
	 line-height: calc(16px + 16px / 2);
	 color: #888;
	 text-align: center;
	 max-height: 500px;
}
 .chatbox-popup .chatbox-popup__footer {
	 box-sizing: border-box;
	 display: flex;
	 width: 100%;
	 padding: 16px;
	 border-top: 1px solid #ddd;
	 align-items: center;
	 justify-content: space-around;
	 border-bottom-right-radius: 12px;
	 border-bottom-left-radius: 12px;
}
 .chatbox-panel {
	 display: flex;
	 position: absolute;
	 box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
	 flex-direction: column;
	 display: none;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 width: 377px;
	 background-color: #fff;
}
 .chatbox-panel .chatbox-panel__header {
	 box-sizing: border-box;
	 display: flex;
	 width: 100%;
	 padding: 16px;
	 color: #fff;
	 background-color: #6b50db;
	 align-items: center;
	 justify-content: space-around;
	 flex: 0 0 auto;
}
 .chatbox-panel .chatbox-panel__main {
	 box-sizing: border-box;
	 width: 100%;
	 padding: calc(2 * 16px) 16px;
	 line-height: calc(16px + 16px / 2);
	 color: #888;
	 text-align: center;
	 flex: 1 1 auto;
}
 .chatbox-panel .chatbox-panel__footer {
	 box-sizing: border-box;
	 display: flex;
	 width: 100%;
	 padding: 16px;
	 border-top: 1px solid #ddd;
	 align-items: center;
	 justify-content: space-around;
	 flex: 0 0 auto;
}
 
.chatbox-popup p.small-time {
    font-size: 12px;
}
.chatbox-popup .client-msg {
    background-color: #f1f4f7;
    padding: 10px 15px;
    text-align: left;
    font-size: 14px;
    line-height: 1.3;
	color: #000;
	margin-bottom: 15px;
	border-radius: 5px;
}

.chatbox-popup .client-highlight {
    text-align: right;
    background-color: #6b50db;
    float: right;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
}

.client-highlight-outline {
    text-align: right;
    border: 2px solid #6b50db;
    float: right;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.3;
    color: #6b50db;
    margin-bottom: 15px;
    border-radius: 5px;
}

.customer-msg {
    float: right;
    background-color: #249087;
    padding: 10px 15px;
    text-align: left;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
}

.chatbox-popup .chat-aria {
    overflow-y: auto;
    /*max-height: 420px;*/
	padding: 0 15px;
}

.chatbox-popup .btn-custom {
    background-color: #6b50db;
    border-color: #6b50db;
	color: #fff;
}

.chatbox-popup .btn-custom:hover {
    background-color: #6b50db;
    border-color: #6b50db;
	color: #fff;
}

::-webkit-scrollbar {
    width: 1em;
    height: 1em
}
#noTranscript {
  background-color: #2b3990;
  border-color: #2b3990;
  color: #fff;
}
#yesTranscript {
  background-color: #ea027f;
  color: #FFF;
  border-color: #ea027f;
}
#surveyForm #survey-pre-question-list li {
  margin: 0;
  padding: 0;
}
.chat-message.admin, .chat-message.guest {
  font-size: 14px;
  line-height: 1.5;
}
#surveyForm .btn-primary {
  color: #fff;
  background: #ea027f;
}
#surveyForm .btn-primary:hover {
  background: #ea027f;
  color: #ffffff;
}