.product-item {
    animation: animateElement linear 1s;
    animation-iteration-count: 1;
}

.FilterCollection {
    user-select: none;
    cursor: pointer;
}

.FilterCollection:hover {
    font-weight: 700;
}

@keyframes animateElement {
    0% {
        opacity: 0;
        transform: translate(0px, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}
