.wtotal-firebase-comments {
    display: none;
}

.wtotal-firebase-comments.show {
    display: block;
}

.wtotal-firebase-comments .count {
    font-size: 14px;
    margin: 0 0 15px 0;
}

.wtotal-firebase-comments .single-comment {
    clear: both;
}

.wtotal-firebase-comments .single-comment .image {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    float: left;
    border-radius: 50%;
    background-color: #c9c9c9;
}

.wtotal-firebase-comments .single-comment .data-wrapper {
    float: left;
    width: calc(100% - 65px);
    margin: 0 0 15px 15px;
}

.wtotal-firebase-comments .single-comment .data {
    padding: 10px;
    background-color: #eef2f5;
    font-size: 14px;
    border-radius: 5px;
}

.wtotal-firebase-comments .single-comment .data .username {
    font-weight: bold;
    display: block;
}

.wtotal-firebase-comments .single-comment .meta-data {
    font-size: 12px;
}


.wtotal-firebase-comments-loading {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.wtotal-firebase-comments-loading.hide {
    display: none;
}

.wtotal-firebase-comments-loading .double-bounce1,
.wtotal-firebase-comments-loading .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.wtotal-firebase-comments-loading .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% { 
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}