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

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-style7{
    letter-spacing: 0.1px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 9999;
}
.cp-style7 .cp-panel{
    position: fixed;
    bottom: 0;
    right: 1em;
    height: 70px;
}
.cp-style7 .cp-panel .cp-button i{
    font-size: 30px;
}

/* Click To ChatPro Chat List */
.cp-style7 .cp-panel ul{
    position: absolute;
    list-style: none;
    text-align: right;
    transform: translateY(-50%);
}
.cp-style7 .cp-panel ul li{
    display: inline-block;
    margin-right: 50px;
}
.cp-style7 .cp-panel .cp-list{
    display: inline-block;
    position: absolute;
    padding: 11px;
    text-align: center;
    line-height: 0px;
    border-radius: 100%;
    cursor: pointer;
}
.cp-style7 .cp-panel .cp-list img{
    width: 22px;
}

/* Chat Pro Column List */
.cp-style7 .cp-panel .cp-left-menu{
    display: none;
    right: 55px;
    left: auto;
    top: -17px;
    height: 0;
    width: 310px;
}
.cp-style7 .cp-panel .cp-top-menu{
    display: none;
    right: 48px;
    top: -267px;    
    height: 0;
    width: 0;
}
.cp-style7 .cp-panel .cp-top-menu li{
    padding-bottom: 47px;
}

/* Click To ChatPro Floating Button */
.cp-style7 .cp-panel .cp-button{
    display: inline-block;
    padding: 8px 7px;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.3);
}
.cp-style7 .cp-panel .cp-button:hover{
    box-shadow: 0px 0px 10px rgba(12, 12, 12, 0.5);
}
.cp-style7 .cp-panel .cp-button img{
    width: 33px;
    cursor: pointer;
}

/* Common CSS */
.cp-style7 .cp-panel .cp-button,
.cp-style7 .cp-panel .cp-button:hover,
.cp-style7 .cp-panel .cp-list,
.cp-style7 .cp-panel .cp-list:hover img{
    -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;
}

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

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px){
    
    /* Common CSS */
    .cp-style7 .cp-panel .cp-list i,
    .cp-style7 .cp-panel .cp-list .tooltiptext{
        display: none;
    }
}

/* Large devices (laptops/desktops, 768px and up) */
@media screen and (min-width: 768px){

    .cp-style7 .cp-panel .cp-list:hover i{
        display: block;
    }

    /* Tooltip On Profile Hover */
    .cp-style7 .cp-panel .cp-list .tooltiptext{
        visibility: hidden;
        position: absolute;
        padding: 5px;
        width: 95px;
        bottom: 115%;
        left: -28px;
        font-size: 12px;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        background-color: #000;
        height: 25px;
        line-height: 15px;
        z-index: 1;     
    }
    .cp-style7 .cp-panel .cp-list .tooltiptext::after{
        content: "";
        position: absolute;
        margin-left: -5px;
        top: 100%;
        left: 50%;
        border-width: 5px;
        border-style: solid;
        border-color: black transparent transparent transparent;
    }
    .cp-style7 .cp-panel .cp-list:hover .tooltiptext{
        visibility: visible;
    }

    /* Common CSS */
    .cp-style7 .cp-panel .cp-list:hover i,
    .cp-style7 .cp-panel .cp-list:hover .tooltiptext{
        -webkit-animation: wc-fadein 1s;
        -moz-animation: wc-fadein 1s;
        -ms-animation: wc-fadein 1s;
        -o-animation: wc-fadein 1s;
        animation: wc-fadein 1s;
    }
}

@keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-webkit-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-moz-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-ms-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
@-o-keyframes wc-fadein{
    from{ opacity: 0; }
    to { opacity: 1; }
}
