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

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-style4{
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 9999;
}

/* Floating Chat Button */
.cp-style4 .cp-toggle-1{
    position: fixed;
    margin: auto;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.3);
    cursor: pointer;
    z-index: 1;
}
.cp-style4 .cp-toggle-1:hover{
    box-shadow: 0px 0px 10px rgba(12, 12, 12, 0.5);
}

/* Floating Chat Close Button */
.cp-style4 .cp-toggle-2{
    display: none;
    position: fixed;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 61px;
    width: 61px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;    
}
.cp-style4 .fa-comments-o{
    font-size: 30px;
    margin-top: 9px;
    transition: 0.7s;
}
.cp-style4 .fa-times{
    font-size: 25px;
    margin-top: 18px;
}

/* Floating Chat Panel */
.cp-style4 .cp-menu{
    position: fixed;
    margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100px;
    width: 100px;
    transform: scale(0);
    border-radius: 50%;
    border: 1px solid #fff;
    transition: 0.7s;
    z-index: 1;    
}
.cp-style4 .cp-list{
    display: flex;
    position: absolute;
    padding: 3px;
    border-radius: 50%;
    border: 1px solid transparent;
}
.cp-style4 .cp-list:hover{
    border: 1px solid #fff;
    -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;
}
.cp-style4 .cp-list img{
    width: 9px;
}

/* CSS for all chat icon one by one */
.cp-style4 a:nth-child(1){
    top: 4px;
    left: 41px;
}
.cp-style4 a:nth-child(2){
    top: 11px;
    left: 62px;
}
.cp-style4 a:nth-child(3){
    top: 29px;
    left: 75px;
}
.cp-style4 a:nth-child(4){
    top: 50px;
    left: 75px;
}
.cp-style4 a:nth-child(5){
    top: 68px;
    left: 62px;
}
.cp-style4 a:nth-child(6){
    top: 77px;
    left: 40px;
}
.cp-style4 a:nth-child(7){
    top: 68px;
    left: 19px;
}
.cp-style4 a:nth-child(8){
    top: 50px;
    left: 6px;
}
.cp-style4 a:nth-child(9){
    top: 29px;
    left: 6px;
}
.cp-style4 a:nth-child(10){
    top: 11px;
    left: 20px;
}

/* Overlay Background Effect */
.cp-overlay{
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.cp-overlay-show{
    opacity: 1;
    visibility: visible;
    background-color: #0000007a;
}


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

    .cp-style4 .cp-list img{
        width: 9px;
        height: 9px;
    }
}