/************************Chat Box*********************************/
.cBoxBtn{
	width: 70px;
	height: 70px;
	position: fixed;
	bottom: 20px;
	right: 0px;
	background: #009646;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
	z-index: 9999;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: #fff;
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

.cBoxBtn:hover{
	width: 65px;
	height: 65px;
}

.cBox{
	width: 350px;
	height: 400px;
	position: fixed;
	bottom: 40px;
	right: 20px;
	background: #fff;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
	z-index: 999999999999999;
	border-radius: 10px;
	overflow: hidden;
	display: none;
}


.cBoxHead{
	width: 100%;
	height: 50px;
	background: #000000;
	display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    color: #fff;
    padding: 0px 10px;
}
.cBoxHead h3{
	font-size: 20px!important;
    color: #fff;
}
.closeCBox{
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	cursor: pointer;
	margin:0px;
}

.cBoxFoot{
	width: 100%;
	height: 50px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 6px 3px rgba(0,0,0,0.2);
}

.cbTexBox{
	max-width: 80%;
	min-width: 80%;
	max-height: 50px;
	min-height: 50px;
	padding: 10px 10px;
	border: none;
	font-size: 14px;
	outline:none;
}

.cbTexBox::-webkit-scrollbar {
    display: none;
}

.cbTexBox::placeholder {
  color: #aaa;
}

.cbSendBtn{
	width: 20%;
	height:50px;
	background: #000000;
	color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
	margin: 0px;
}


.cBoxBody{
	width: 100%;
	height: 300px;
	overflow-y: scroll;
}

.cBoxBody::-webkit-scrollbar {
    display: none;
}
.chatDiv{
	width: 100%;
	padding: 10px 10px;
}
.cbMsg{
	width: 100%;
	margin-bottom: 15px;
}

.cbName{
	width: 100%;
	display: flex;
    align-items: center;
}

.rMsg .cbName{
    justify-content: flex-start;
}
.rMsg .cbText{
	float: left;
	background: #8a8a8a;
	color: #fff;
	margin: 0px;
}

.uMsg .cbName{
    justify-content: flex-end;
}
.uMsg .cbText{
	float: right;
}


.cbIcon{
	width: 20px;
	height: 20px;
	border-radius: 100%;
	overflow: hidden;
	background: #000;
	display: flex;
	justify-content: center;
	margin-bottom: 1px;
	align-items: center;
}

.cbText{
	min-width: fit-content;
	max-width: 50%;
	padding: 5px;
	border-radius: 5px;
	background: #009646;
	color: #fff;
	margin-top: 5px;
	line-height: normal;
}

.queCtrl{
	width: 100%;
	float: right;
	display: flex;
	justify-content: flex-start;
	margin-top: 5px;

}

.cBQueBtn{
	outline: none;
	background: #eee;
	color: #000;
	border: none;
	padding: 2px 5px;
	border-radius: 2px;
	font-size: 10px;
	cursor:pointer;
	transition: 0.2s ease-in-out;
	margin: 0px;
}
.cBQueBtn:hover{
	background: #aaa;
	color: #fff;
}

.cbToWA{
	width: 100%;
	padding: 10px 10px;
	text-align: center;
}
.cbToWA p{
	margin-bottom: 10px;
}

.goToWappBtn{
	width: fit-content;
	padding: 2px 5px;
	color: #000000;
	background: #fff;
	border: 1px solid #000000;
	border-radius: 2px;
	font-weight: 500;
	transition: 0.2s ease-in-out;
	cursor: pointer
}
.goToWappBtn:hover{
	background: #000000;
	color: #fff!important;
}

@media screen and (max-width:768px) {
	.cBox{
		width: 80%;
	}
	.goToWappBtn{
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
}