/* Click To ChatPro Main Container */
.nsp-cp-style1{
    display: inline-block;
    position: fixed;
    letter-spacing: 0.1px;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 9999;
}
.nsp-cp-right-bottom{
    bottom: 1em;
    right: 1em;
    float: right;
}

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

/* Right Bottom Floating Button */
.nsp-cp-style1 .nsp-cp-button{
    padding: 8px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.3);    
    cursor: pointer;
}
.nsp-cp-style1 .nsp-cp-button:hover{
    box-shadow: 0px 0px 10px rgba(12, 12, 12, 0.5);
    -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;
}
.nsp-cp-style1 .nsp-cp-button .fa-comments-o{
    font-size: 30px;
}
#ChatWidgetDiv{
    -webkit-animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
/* Floating Button Forward Rotation */
.rotateForward{
    animation-name: rotateF;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
}

@keyframes rotateF{
    from{
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

/* Floating Button Backward Rotation */
.rotateBackward{
    animation-name: rotateB;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
}

@keyframes rotateB{
    from{
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
    to{
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}

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

    .nsp-cp-style1 .nsp-cp-panel{
        width: 290px;
    }
}

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

    .nsp-cp-right-bottom {
        bottom: 10px;
        right: 10px;
    }
    .nsp-cp-style1 .nsp-cp-panel {
        margin-bottom: 5px;
    }
    .nsp-cp-style1 .nsp-cp-panel {
        padding: 10px;
    }
    .nsp-cp-style1 .nsp-cp-panel .nsp-cp-list {
        padding: 5px 0;
    }
}