#notificationParent {
    /* position: absolute;
    width: 29%;
    height: 100%;
    z-index: 11;
    pointer-events: none;
    display: flex;
    justify-content: center; */
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000000a;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: 850ms;
}

#notificationPop
{    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25rem;
    height: fit-content;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    /* bottom: 6rem; */
    /* left: -25rem; */
    transform:scale(1);
    z-index: 1;
    opacity:0;
    transition: 850ms;
}

.activateNotificationPop
{
    transform:scale(1) !important;
    /* left: 1.8rem !important; */
    opacity:1 !important;
    /* transition:600ms; */
}
.activateNotification{
    pointer-events: all !important;
    opacity:1 !important;
    /* transform:scale(1.1) !important; */
    /* left: 1.8rem !important; */
    /* opacity:1 !important; */
    /* transition:600ms; */
}
#notificationCTA{
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display:flex;
    align-items: center;
    justify-content: flex-end;
    transition: 350ms;
}
#notificationCTA:hover{
    background: rgba(0, 0, 0, 0.5);
    transition: 350ms;
}
#notificationCTA:hover span{
    font-weight: bold;
    transition: 350ms;
}

#notificationLoaderBG{
    width: 95%;
    height: 0.2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 40px;
    margin-bottom: 0.5rem;
}
#notificationLoader{
    width: 100%;
    height: 0.2rem;
    background: #DD782D;
    border-radius: 40px;
    margin-bottom: 0.5rem;
    transition:var(--notificationTime) cubic-bezier(0.5, 0.5, 0.5, 0.5);
}

.activateNotificationLoader{
    width:0% !important;
}