/*animation*/
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes zoomIn {
  0% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  50% {
  opacity: 1;
  }
  }
  @keyframes zoomIn {
  0% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  50% {
  opacity: 1;
  }
  } 
  
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes zoomOut {
  0% {
  opacity: 1;
  }
  
  50% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  100% {
  opacity: 0;
  }
  }
  @keyframes zoomOut {
  0% {
  opacity: 1;
  }
  50% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  100% {
  opacity: 0;
  }
  } 
/*animation ends*/

.header_tag{
	position: absolute;bottom: 0;float: left; width: 80%;display:block;
}
@media screen and (max-width: 991px){
	.header_tag{
		display:none;
	}
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

#cf {
  position: fixed;
  bottom: 10px;
  right: 30px;
  overflow: hidden;
  z-index: 998;
  vertical-align: bottom;	
}

#cf img {
  position:fixed;
  bottom: 10px;
  right: 30px;
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease;
}

#cf img.top:hover {
  position:fixed;
  bottom: 10px;
  right: 30px;	
  opacity:0;
}

#chatdiv{
	position: fixed;
	bottom: 30px;
	height: 0px;
	width: 375px;
	background-color: white;
	right: 35px;
	z-index: 90009;
	border-radius: 10px;
  transition:0.5s;
  overflow:hidden;
  /*background: var(--thm-color-2-2);*/
  background:linear-gradient(to bottom,rgba(248,248,248,1) 25%,rgba(180,180,180,1));
}

#chatheader {
  border-radius: 5px 5px 0px 0px;
  padding: 15px;
  /*padding-left:20px;*/
  text-align: left;
  /*color: white;*/
  background: var(--thm-color-1);
  /*background: #800000;*/
  color: rgba(255,255,255,1);
  font-size: 17px;
  width: 100%;
  padding-left: 30px;
  letter-spacing:1px;
  font-weight:400;
  border-bottom:2px solid rgba(0,0,0,0.1);
}

#chatfooter {
  border-radius: 0px 0px 5px 5px;
  position: absolute;
  padding: 5px;
  text-align: center;
  bottom: 0px;
  /*background: var(--very-light-1);*/
  background-color: rgba(60,60,60,1);
  color:rgba(255,255,255,0.9);
  width: 100%;
  font-size: .7em;
}

#chatinput {
  position: absolute;
  padding: 5px;
  text-align: center;
  bottom: 25px;
  /*background: white;*/
  background:rgba(255,255,255,0.95);
  width: 100%;
  font-size: 13px;
}

#input_userchat{
  left:10px;
  float:left;
  /*color:#6a696f; */
  padding: 5px 5px 5px 15px;
  border:none;
  width:80%;
  outline: none;
  font-size:13px;
  color:rgba(0,0,0,0.8);
  letter-spacing:1px;
  background:rgba(255,255,255,0.95);
}
#input_userchat:focus{
  outline:none;
}
#input_userchat::placeholder{
  font-size:13px;
  color:rgba(0,0,0,0.8);
  letter-spacing:1px;
  /*text-transform:lowercase;*/
  /*font-variant:small-caps;*/
}
#btn_sendmessage{
  width: 20px;
  float:right;
  margin-top: 5px;
  margin-right: 20px;
  cursor:pointer;
  background:rgba(255,255,255,0.95);
}

#chatbot-body{
  width:100%;
  padding: 10px 20px 10px 30px;
  height: 480px;
}

#chatbody{
  height: 480px;
  width: 100%;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#chatbody a:hover{
  background: var(--main-font-color);
  border-color: var(--main-font-color);
}

.chatbot-comment{
  padding: 5px 10px 5px 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 0px 10px 10px 10px;
  margin-bottom: 5px;
  text-align: left;
  display: inline-block;
  word-break:break-all;
  left:10px;
  color: rgba(0,0,0,0.8);
  font-size:13px;
  letter-spacing:1px;
  font-weight:400;
}

.user-comment{
  padding: 5px 10px 5px 10px;
  background: var(--thm-color-1-2);
  border-radius: 10px 0px 10px 10px;
  float: right;
  width: auto;
  height:auto;
  overflow:hidden;
  word-break: break-all; 
  display: inline-block;
  hyphens: auto;
  color:rgba(255,255,255,0.98);
  font-size:13px;
  letter-spacing:1px;
  font-weight:400;
}

.optionbuttons{
  margin-bottom:5px;
  left:0;
  width:auto;
  margin-left: 10px;
  padding: 5px 10px 5px 10px;
  border-radius: 20px 20px 20px 20px;
  color:rgba(255,255,255,1);
  font-size:13px;
  letter-spacing:1px;
  font-weight:400;
}
.comment_style{
  position:relative;
  width:100%;
  margin-bottom:20px;
  background-color:red;
}

.plan_feature{
  color: #2cc66d;
  font-weight: bolder;
}