.notidivparent {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 100ms;
}

.notidiv {
    background-color: black;
    border: 2px solid rgb(204, 180, 180);
    padding: 15px;
    width: 300px;
    border-radius: 5px;
    transform: translateX(120%);
    opacity: 1;
    transition: 100ms;
}

.NotiTitle {
    color: white;
    font-size: 18px;
    margin: 0 0 10px 0;
    font-family: hack;
}

.NotiDescription {
    color: white;
    font-size: 14px;
    margin: 0 0 15px 0;
    font-family: hack;
}

#progressbar {
    width: 100%;
    height: 4px;
    background-color: rgb(255, 255, 255);
    color: white;
    border: none;
}

#progressbar::-webkit-progress-value {
    background-color: white;
}

#progressbar::-webkit-progress-bar {
    background-color: rgb(204, 180, 180);
}

/* Animations */
.slideinobj {
    animation: slideIn 0.3s ease-out forwards;
}

.fadeobj {
    animation: fadeOut 1s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}
