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

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

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

/* WhatsChat Main Panel */
.wc-style8{
	font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.wc-style8 .wc-panel{
  	position: fixed;
  	bottom: 15px;
  	right: 15px;
  	height: 30px;
}

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

/* WhatsChat Panel Grid */
.wc-style8 .wc-panel ul{
	position: absolute;
    display: grid;
	right: -300px;
	top: -250px;
    left: auto;
    height: 100%;
    width: 500px;
    list-style: none;
    text-align: right;
    transform: translateY(-50%);
}
.wc-style8 .wc-panel ul li{
  	display: inline-block;
    padding: 30px;
  	margin-right: 55px;
    margin-top: 0;
}

/* User List Profile */
.wc-style8 .wc-panel .wc-list{
  	display: flex;
    position: absolute;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
}
.wc-style8 .wc-list .wc-img-cont{
	position: relative;
}
.wc-style8 .wc-list .wc-user-img{
    display: block;
    margin-top: 1px;
    width: 50px;
    height: 50px;
	border-radius: 20%;
}
.wc-style8 .wc-list:hover .wc-user-img{
    border-radius: 50%;
}
.wc-style8 .wc-list .wc-status-icon{
	position: absolute;
	height: 12px;
    width: 12px;
    bottom: 2px;
    right: 5px;
    border-radius: 50%;
}
.wc-style8 .wc-list .wc-user-info{
	padding-left: 15px;
	padding-right: 25px;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: -20px;
	width: 150px;
	border-radius: 10px;
    text-align: right;
    box-shadow: 0px 0px 10px #ccc;
}
.wc-style8 .wc-user-info strong{
	font-size: 14px;
    font-weight: bold;
}
.wc-style8 .wc-user-info p{
	margin-top: -10px;
	margin-bottom: -1px;
	font-size: 11px;
	line-height: 30px;
}

/* Scal Transition Effect */
.wc-style8 .wc-panel .scale-transition{ 
	transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important; 
}
.wc-style8 .wc-panel .scale-transition.scale-out{
  	transform: scale(0);
  	transition: transform 0.2s !important;
}
.wc-style8 .wc-panel .scale-transition.scale-in{ 
	transform: scale(1); 
}

/* Common CSS */
.wc-style8 .wc-panel .wc-list,
.wc-style8 .wc-list .wc-user-img,
.wc-style8 .wc-list:hover .wc-user-img,
.wc-style8 .wc-list .wc-user-info,
.wc-style8 .wc-user-info strong,
.wc-style8 .wc-user-info p{
	-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;
}