/*======================================================

Project: WhatsChat - WhatsApp Chat Widget jQuery Plugin
Author: Black Theme
Released On: 4, Sep 2019
@version: 1.0

========================================================*/

/* WhatsChat Main Panel */ 
.wc-style6{
	font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* WhatsChat Floating Button */
.wc-style6 .wc-button{
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 20px;
	right: 20px;
	border: 1px solid #fff;
	border-radius: 50px;
	text-align: center;
	box-shadow: 0 0 10px rgba(12, 12, 12, 0.3);	
	cursor: pointer;
}
.wc-style6 .wc-button:hover{
	box-shadow: 0px 0px 10px rgba(12, 12, 12, 0.5);
}
.wc-style6 .wc-button i{
	margin-top: 13px;
	font-size: 25px;
}

/* The popup chat - hidden by default */
.wc-style6 .wc-panel{
  	display: none;
  	position: fixed;
  	width: 300px;
  	bottom: 85px;
	right: 30px;
	border-radius: 10px;
  	box-shadow: 0px 3px 7px rgba(12, 12, 12, 0.18);
  	z-index: 9;
}

/* Panel Header Content */
.wc-style6 .wc-panel .wc-header{
	padding: 15px;
	border-radius: 8px;
	text-align: center;
}
.wc-style6 .wc-header p{
	margin-bottom: 0;
	font-size: 12px;
	line-height: 20px;
}
.wc-style6 .wc-header strong{
	font-size: 15px;
	line-height: 20px;
}

/* Panel Body Content */
.wc-style6 .wc-body{
	display: flex;
	flex-wrap: wrap;    
	padding-bottom: 10px;
    justify-content: center;
}
.wc-style6 .wc-body .wc-list{
	display: flex;
	flex-direction: column;
	padding: 15px 0 0;
	width: 50%;
	align-items: center;
	text-align: center;
	cursor: pointer;
}
.wc-style6 .wc-list .wc-img-cont{
    position: relative;
    padding: 5px;
    height: 50px;
    width: 50px;
    margin-bottom: 4px;
    border-radius: 50%;
	overflow: hidden;
    transition: transform 200ms ease-in-out;
}
.wc-style6 .wc-list:hover .wc-img-cont{
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.wc-style6 .wc-img-cont .wc-user-img{
    display: block;
    margin: 0 auto;
	max-width: 100%;
    height: 100%;
}
.wc-style6 .wc-user-info span{
	font-size: 14px;
	font-weight: bold;
	line-height: 35px;
}
.wc-style6 .wc-user-info p{
	margin-top: -5px;
	margin-bottom: 0;
	font-size: 11px;
	line-height: 10px;
}