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

Project:  ChatPro - All in One Chat on Any Social Plateform jQuery Plugin
Author:  Black Theme
Released On:  25, Nov 2019
@version:  1.0
 
==========================================================*/

.cp-style8{
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cp-style8 .cp-panel{
    position: fixed;
    bottom: 24px;
    right: 24px;
    height: 70px;
	z-index:9;
}

/* Click To ChatPro Floating Button */
.cp-style8 .cp-panel .cp-button{
    position: fixed;
    padding: 9px 7px;
    bottom: 20px;
    right: 55px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.3); 
    cursor: pointer;
}
.cp-style8 .cp-panel .cp-button:hover{
    box-shadow: 0px 0px 10px rgba(12, 12, 12, 0.5);
}
.cp-style8 .cp-button i{
    font-size: 30px;
    cursor: pointer;
}

/* Click To ChatPro Panel Grid */
.cp-style8 .cp-panel ul{
    position: absolute;
    display: grid;
    top: auto;
    bottom: 75px;
    right: 184px;
    left: auto;
    height: 100%;
    list-style: none;
    text-align: right;
    transform: translateY(-50%);
}
.cp-style8 .cp-panel ul li{
    display: inline-block;
    padding-bottom: 52px;
}

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

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

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

/* Medium devices (landscape tablets, 0px and 1280px) */
@media all and (max-width: 1280px) and (min-width: 0px){

    .cp-style8 .cp-panel .cp-button {
        bottom: 10px;
        right: 30px;
    }
    .cp-style8 .cp-panel ul {
        bottom: 75px;
        right: 170px;
    }
    .cp-style8 .cp-panel ul li {
        padding-bottom: 50px;
    }
    .cp-style8 .cp-panel .cp-list {
        line-height: 22px;
    }
    .cp-style8 .cp-list .cp-user-img {
        width: 40px;
        height: 40px;
    }
}