.purchase-notifications-card {
    position: fixed;
    right: 64px;
    bottom: 32px;
    z-index: 80888;

    @media (max-width: $screen-sm-max) {
        display: none !important;
    }

    .rtl & {
        right: auto;
        left: 64px;
    }

    .purchase-notification {
        width: 355px;
        min-height: 130px;
        transition: transform 375ms cubic-bezier(0.7, 0, 0.3, 1);
        transform: translateY(2000px);

        &.active {
            transform: translateY(0);
        }

        &__image {
            width: 94px;
            min-width: 94px;
            height: 94px;
            border-radius: 6px;

            img {
                border-radius: 6px;
            }
        }

        &-time {
            color: var(--gray-500);
        }

        &__progress {
            position: relative;
            width: 100%;
            height: 2px;
            background-color: var(--gray-200);
            margin-bottom: 12px;

            &-bar {
                position: absolute;
                left: 0;
                height: 2px;
                width: 0;
                background-color: var(--primary);
                transition: all 0.3s ease;
            }
        }
    }
}
