@keyframes spNotification {
    from {
        bottom: -150px;
    }
    to {
        bottom: 20px;
    }
}
@-webkit-keyframes spNotification {
    from {
        bottom: -150px;
    }
    to {
        bottom: 20px;
    }
}
.sp-fomo-notifications {
    position: relative;
}
.notification-card {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    -webkit-animation-name: spNotification;
    animation-name: spNotification;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    opacity: 1;
    transition: .4s;
}
.notification-card>a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 12px;
    padding-right: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #E6E6E6;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
.product-icon-wrapper img {
    max-width: 72px;
    border-radius: 5px;
}
.notification-card .notification-content {
    line-height: 22px;
}
.notification-card .purchaser-name {
    color: #071F42;
    font-size: 13px;
    font-weight: 600;
    display: flex;
}
.notification-card .purchaser-name span,
.notification-card .purchaser-name i {
    font-weight: 400;
    color: #707A89;
}
.notification-card .product-name {
    color: #071F42;
    font-size: 14px;
    font-weight: 600;
}
.notification-card .product-name span {
    font-weight: 500;
}
.notification-card .purchase-time {
    color: #707A89;
    font-size: 12px;
    font-weight: 500;
}
.sp-fomo-notifications:hover button.close-notification {
    opacity: 1;
}
button.close-notification {
    position: absolute;
    top: -16px;
    right: 0;
    opacity: 0;
    padding: 4px;
}
button.close-notification svg path {
    stroke: #071F42;
}
button.close-notification:hover svg path {
    stroke: #ff0000;
}
