.achievement-popup {
    width: fit-content;
    height: 80px;
    background: var(--background-dark);
    border: 1px solid var(--foreground);
    padding: 10px;

    display: flex;
    position: fixed;
    bottom: 40px;
    right: 10px;
    align-items: center;
    transition: opacity 0.60s ease-in-out;
    filter:drop-shadow(0 0 6px var(--achishadow))
}
    
.achievement-obtained-popup {
    color: var(--foreground);
    font-weight: bold;
}
        
.achievement-title-popup {
    color: var(--foreground);
    font-weight: normal;
}
    
.achievement-image-popup {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    background:var(--background);
    border: 1px solid var(--foreground);
    background-size: cover;
    background-position: center;
}
    
.achievement-popup.fade-out {
      opacity: 0;
}