.alert-new-associate{
    position: absolute;

    right: 270px; 
    bottom: -20px; 
    padding: 30px 20px;
}
.popup-last-bought{
    position: fixed; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 250px;
    padding: 8px 16px;

    border-radius: 0px 50px 0px 50px;
    border: 7px solid #fff;
    box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.3);
    background-color: #f8bd1b;

    opacity: 0;

    animation-name: anim-popup-last-bought;
    animation-delay: 5s;
    animation-duration: 10s;
}
.popup-last-bought .claim img{
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.popup-last-bought .msg{
    color: #003f79;
    text-align: center;
    font-weight: bold;
    font-style: italic;
}
@keyframes anim-popup-last-bought{
    0%{
        bottom: -20px;
        opacity: 0;
    }
    30%{
        bottom: 40px;
        opacity: 1;
    }
    75%{ 
        bottom: 40px;
        opacity: 1;
    }
    100%{
        bottom: 80px;
        opacity: 0;
    }
}