 {box-sizing: border-box;}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  /* padding: 16px 20px; */
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  padding: 0px;
 /*  width: 280px; */
}

/* The popup chat - hidden by default */
.form-popupcb {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-containercb {
  max-width:400px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.form-containercb textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-containercb textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-containercb .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-containercb .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-containercb .btn:hover, .open-button:hover {
  opacity: 1;
}

.form-containercb  .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.initial-message-bubble {
    cursor: pointer;
    position: relative;
    border: 1px solid #eaf0f6;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    border-radius: 4px;
    width: 240px;
    padding: 24px 16px 16px;
}

.cbContainer {
  border: 1px solid #dedede;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 8px 5px;
  margin: 10px 0;
  width: 100%;
}

.darker {
  border-color: #fbe6da;
  background-color: #fef4eb;
}

.cbContainer::after {
  content: "";
  clear: both;
  display: table;
}

.cbContainer img {
  float: left;
  max-width: 60px;
  width: 100%;
  margin-right: 20px;
  border-radius: 50%;
}

.cbContainer img.right {
  float: right;
  margin-left: 20px;
  margin-right:0;
}

.cbImage{
    float: left;
    width: 12%;
}

.cbImage1{
    float: left;
    width: 15%;
}

.cbText{
	float:left;
	/* color:blue; */
	padding:2px;
	width: 80%;
	overflow-wrap: break-word;
}

.cbText1{
	float:left;
	/* color:blue; */
	padding:2px;
	width: 80%;
	overflow-wrap: break-word;
	text-align: right;
}

.cbText a{
	color: blue;
	text-decoration: underline;
}
