.chat_section{
	position: fixed;
	bottom: 0px;
	right: 0px;
	width: 350px;
	z-index: 1;
}
.chat_section input,
.chat_section textarea{
	display: block;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #e4e4e4;
    padding: 5px;
}
.innerwrapper {
	padding: 0px;
    border: 1px solid #f62459;
    border-radius: 10px;
    border-bottom: 0;

}
.headerboxwrapper{
	background-color: #f62459;
    padding: 5px 20px;
    color: #fff;
    text-transform: capitalize;
    border-radius: 10px 10px 0 0;
}
.sub_header p{
	color: #fff;
    font-size: 12px;
    line-height: normal;
}
.contentContainer{
	padding: 15px;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
}
.contentContainer_inner{
	border: 1px solid #e4e4e4;
    border-radius: 3px;
	padding: 25px 15px;
}
.top_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.top_header .close{
	font-size: 15px;
}

.formsubmit {
    width: 100%;
    background-color: #f62459;
    border: 1px solid #f62459;
    padding: 6px;
    color: #fff;
    letter-spacing: 0.05em;
}

.formsubmit:hover {
    background-color:#f14771;
}
.offline_online_text{
	font-size: 16px;
    letter-spacing: 0.5px; 
}
.headerboxwrapper:hover{
	cursor:pointer;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 	font-size: 12px;
}
::-moz-placeholder { /* Firefox 19+ */
 	font-size: 12px;
}
:-ms-input-placeholder { /* IE 10+ */
	font-size: 12px;
}
:-moz-placeholder { /* Firefox 18- */
	font-size: 12px;
}



@media(max-width: 425px){
	.chat_section{
	    width: 95%;
	    margin: 0 auto;
    	left: 0;
	}
    .contentContainer{
    	display: none;
    }
    .sub_header{
    	display: none;
    }

   
/*	@keyframes pulse {
	  from {
	    transform: scale(1);
	  }

	  50% {
	    transform: scale(1.05);
	  }

	  to {
	    transform: scale(1);
	  }
	}

	.pulse {
	  animation: pulse 1s infinite;
	}
*/

}