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

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

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

/* WhatsChat Main Panel */  
.wc-style3 {
    display: block;
    position: fixed;
    top: 40%;
    left: 0; /* Changed from right: 0; */
    bottom: 0;
    width: 280px;
    height: 355px;
    letter-spacing: 0.1px;
    border-radius: 0 7px 5px 0;
    box-shadow: 2px 0px 5px rgba(68, 68, 68, 0.59); /* Changed shadow direction */
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 99;
}

/* WhatsChat Floating Button */
.wc-style3 .wc-button {
    position: absolute;
    margin-top: -13.5px;
    top: 50%;
    bottom: -24px;
    left: 280px; /* Changed from right: 280px; */
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 32px;
    text-align: center;
    border-radius: 0 6px 6px 0;
    box-shadow: 2px 0px 3px rgba(68, 68, 68, 0.59); /* Changed shadow direction */
    cursor: pointer;
}
.wc-style3 .wc-button i{
	padding: 0px 10px 10px 12px;
	font-size: 30px;
	cursor: pointer;	
}

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

/* Panel Body Content */
.wc-style3 .wc-body{
	padding: 13px 0;	
	height: 300px;
	overflow: auto;
}
.wc-style3 .wc-body ul{
	padding-left: 0;
	list-style-type: none; 
}
.wc-style3 .wc-body .wc-list{
	padding: 0 10px;
	margin-bottom: 5px;	
	list-style-type: none;
}
.wc-style3 .wc-body .wc-list:hover{
    text-decoration: none;
    cursor: pointer;
}


/* User Contact Profile */
.wc-style3 .wc-list .d-flex{
    display: flex;
    padding: 5px 5px;
    border-radius: 5px;
    border-left: 2px solid #fff;
}
.wc-style3 .wc-list .wc-img-cont{
	position: relative;
}
.wc-style3 .wc-list .wc-user-img{
	height: 50px;
	width: 50px;
	border-radius: 50%;
	vertical-align: middle;
}
.wc-style3 .wc-list .wc-status-icon{
	position: absolute;
	height: 10px;
	width: 10px;
	bottom: 0px;
    right: 0px;
    border-radius: 50%;
}
.wc-style3 .wc-list .wc-user-info{
	margin-top: 0;
	margin-bottom: auto;
	margin-left: 15px;
}
.wc-style3 .wc-user-info span{
	font-size: 14px;
	font-weight: bold;
	line-height: 30px;
}
.wc-style3 .wc-user-info p{
	margin-top: 0px;
	margin-bottom: 0;
	font-size: 11px;
	line-height: 18px;
}
.wc-style3 .wc-list .wc-chat-icon{
	position: absolute;
	margin-top: 15px;
	right: 13px;
}
.wc-style3 .wc-list .wc-chat-icon i{
	display: none;
	font-size: 25px;
}
.wc-style3 .wc-list li:hover .wc-chat-icon i{
	display: block;
}

/* Common CSS */
.wc-style3 .wc-list:hover .d-flex,
.wc-style3 .wc-list li:hover{
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}