#social-proof-box {
    display: flex;
    bottom: -300;
    left: 14px;
    box-shadow: 2px 1px 4px #0000000f;
    position: fixed;
    z-index: 99999;
    background-color: white;
    border: 1px solid #e7e7e7;
    padding: 13px 15px;
    border-radius: 16px;
    
    animation: slideUpDown ease 13s;
    animation-delay:2s;
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
}

#social-proof-box img {
    margin-right: 13px;
    width: 40px;
    height: 40px;
}

#social-proof-box .social-title {
    font-weight: bold;
    color:#333;
}

#social-proof-box .social-description {
    color: #666;
    font-size: 0.9em;
}

#social-proof-box .social-time {
    color: #999;
    font-size: 0.8em;
    display: inline-block;
}

#social-proof-box .green-indicator {
    background-color: #03d931;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;   
}

/* Animation */

@keyframes slideUpDown {
    0% { bottom: -300px; }
    10% { bottom: 14px; }  
    90% { bottom: 14px; }
    100% { bottom: -300px; }
}

@keyframes slideUpDownMobile {
    0% { bottom: -300px; }
    10% { bottom: 0px; }  
    90% { bottom: 0px; }
    100% { bottom: -300px; }
}


/* Mobile */

@media screen and (max-width: 767px) {
    #social-proof-box {
        width: 100%;
        left: 0px;
        animation: slideUpDownMobile ease 10s;
        border-radius: 0;
    }
}