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

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

/* ChatPro Main Panel */ 
.cp-style2{
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Slide Contact List */
.cp-style2 ul{
    margin-bottom: 0;
    list-style-type: none;
}
.cp-style2 ul li .cp-list{
    display: flex;
    position: fixed;
    padding: 0;
    right: -143px;
    width: 185px;
    font-size: 20px;
    text-align: left;
    text-decoration: none;
    list-style-type: none;
}
.cp-style2 ul li .cp-list:hover{
    text-decoration: none;
    cursor: pointer;
}

/* Chat Image Profile */
.cp-style2 .cp-list .cp-image{
    position: relative;
    border-radius: 10px 0 0 10px;
}
.cp-style2 .cp-list .cp-image img{
    display: block;
    padding: 8px;
    width: 40px;
    height: 40px;
}
.cp-style2 .cp-list .cp-content{
    padding-top: 4px;
    padding-left: 25px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: -15px;
    width: 100%;
    line-height: 25px;
}
.cp-style2 .cp-list:hover .cp-content{
    border-radius: 15px 0 0 15px;
    box-shadow: 0px 0px 10px #ccc;
}
.cp-style2 .cp-content h2{
    font-size: 14px;
    font-weight: bold;
    line-height: 3px;
    padding-top: 5px;
}
.cp-style2 .cp-content p{
    padding-top: 5px;
    font-size: 11px;
    line-height: 0px;
    margin-bottom: 13px;
}

/* CSS For Each Slide From Top */
.cp-style2 ul li .cp-1{
    top: 95px;
}
.cp-style2 ul li .cp-2{
    top: 137px;
}
.cp-style2 ul li .cp-3{
    top: 179px;
}
.cp-style2 ul li .cp-4{
    top: 221px;
}
.cp-style2 ul li .cp-5{
    top: 263px;
}
.cp-style2 ul li .cp-6{
    top: 305px;
}
.cp-style2 ul li .cp-7{
    top: 347px;
}
.cp-style2 ul li .cp-8{
    top: 389px;
}
.cp-style2 ul li .cp-9{
    top: 431px;
}
.cp-style2 ul li .cp-10{
    top: 473px;
}

/* Common CSS */
.cp-style2 ul li .cp-list,
.cp-style2 .cp-list:hover .cp-image,
.cp-style2 .cp-list .cp-content,
.cp-style2 .cp-user-info h2,
.cp-style2 .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;
}

/* Media Css for Smaller Device */
@media(min-width: 576px){

    .cp-style2 ul li .cp-list:hover{
        right: 0;
    }
}