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

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

/* Click To ChatPro Main Panel */
.cp-style10{
    position: fixed;
    bottom: 20px;
    right: 20px;
    letter-spacing: 0.1px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 9999;
}

/* Click To ChatPro Floating Button */
.cp-style10 .cp-button{
    display: inline-block;
    padding: 0 1px 0 0;
    width: 50px;
    height: 50px;
    font-size: 30px;    
    line-height: 44px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100%;
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.3);
    cursor: pointer;
}
.cp-style10 .cp-button:hover{
    box-shadow: 0px 0px 10px rgba(12, 12, 12, 0.5);
}

/*  Click To ChatPro Modal Window */
.cp-style10 .cp-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: 630px;
    min-width: 275px;
    border-radius: 5px;
    visibility: hidden;
    box-shadow: 0 0 10px rgba(43, 43, 43, 0.41);
    z-index: 2000;

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.cp-style10 .cp-show{
    visibility: visible;
}
.cp-style10 .cp-overlay{
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1000;
}
.cp-style10 .cp-show ~ .cp-overlay{
    opacity: 1;
    visibility: visible;
    background-color: #0000007a;
} 
.cp-style10 .cp-modal .cp-content{
    position: relative;
    margin: 0 auto;
    border-radius: 10px;
}

/* Modal Panel */
/* Floating Panel Container */
.cp-style10 .cp-panel{
    padding: 15px 10px;
    border-radius: 10px;
}
.cp-style10 .cp-panel .cp-list{
    display: inline-flex;
    padding: 7px 5px;
    width: 100%;
    cursor: pointer;
}
.cp-style10 .cp-panel .cp-list:hover{
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #0000002e;
}
.cp-style10 .cp-panel .cp-list,
.cp-style10 .cp-panel .cp-list:hover{
    -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-style10 .cp-list .cp-image{    
    display: flex;
    width: 60px;
    text-align: center;
    justify-content: center;
}
.cp-style10 .cp-image img{
    position: absolute;
    margin-top: 3px;
    width: 10%;
}
.cp-style10 .cp-image img,
.cp-style10 .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;
}
.cp-style10 .cp-panel .cp-info{
    padding-left: 0;
}
.cp-style10 .cp-panel h2{
    padding-top: 0; 
      margin-bottom: 0;
      font-size: 15px;
      font-weight: 700;
      line-height: 18px;
}
.cp-style10 .cp-panel p{
      margin-bottom: 0;
      font-size: 12px;
}

/* 3D Flip Vertical with Animations */
.cp-flip-y.cp-modal{
    width: 200px;
    border-radius: 10px;
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    -ms-perspective: 1300px;
    -o-perspective: 1300px;
    perspective: 1300px;
}
.cp-flip-y .cp-content{
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    
    -webkit-transform: rotateX(-70deg);
    -moz-transform: rotateX(-70deg);
    -ms-transform: rotateX(-70deg);
    -o-transform: rotateX(-70deg);
    transform: rotateX(-70deg);

    opacity: 0;
}
.cp-show.cp-flip-y .cp-content{
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
}

/* Common CSS */
.cp-style10,
.cp-style10 .cp-button:hover,
.cp-flip-y .cp-content{
    -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;
}