

/* .cards .col:nth-child(1) .product-card {
    background: linear-gradient(180deg, #D9214C 0%, #C20632 100%) !important;
}

.cards .col:nth-child(2) .product-card {
    background: linear-gradient(180deg, #84E130 0%, #64A828 100%) !important;
}

.cards .col:nth-child(3) .product-card {
    background: linear-gradient(180deg, #FF4524 0%, #D22F12 100%) !important;
}

.cards .col:nth-child(4) .product-card {
    background: linear-gradient(180deg, #B80A27 0%, #960019 100%) !important;
} */

.new-item-drop p {
    user-select: none;
    animation: blink 2.5s infinite ease-in-out;
}

@keyframes blink {
    20%,80% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}