.notification-box {
    z-index: 1;
    position: absolute;
    height: 7vh;
    width: 17vh;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: 500ms cubic-bezier(0.42, 1.28, 0.65, 1);
    opacity: 0;
}

.notification-text {
    height: 100%;
    margin: 0;
    width: 70%;
    font-size: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    padding-right: 8px;
}

.notification-icon {
    color: #fff;
    height: 100%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}