.cr-chat {
    z-index: 99999;
    position: fixed;
    right: 0;
    bottom: 60px;
}
.cr-chat__button {
    cursor: pointer;
    box-shadow: 0 1px 10px #777;
    margin: 15px 15px 15px 5px;
    // background: #0074b0;
    background-color: #000;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    width: 48px;
    height: 48px;
    text-align: center;
    padding: 11px;
    line-height: 1;
}

.cr-chat__button:hover {
    opacity: 0.7;
    box-shadow: 0 1px 5px #999;
}

.cr-chat__message {
    display: none;
    cursor: pointer;    
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: -100px;
    text-align: left;
    border-radius: 3px;
    background: rgba(255,255,255,.6);
    padding: 7px;
    box-shadow: 0 1px 10px #777;
}