#productsPage .products {
    display: flex;
    flex-wrap: wrap;
}

#productsPage .products.closed {
    filter: grayscale(0.8);
}

#productsPage .special-edition-title-wrapper {
    display: flex;
    align-items: center;
}

#productsPage .special-edition-title-wrapper h2 {
    font-size: 20px;
}

#productsPage .special-edition-title-wrapper img {
    margin: 0 5px 0 0;
}

#productsPage .products .product {
    width: 100%;
    margin: 40px 0 30px;
    text-align: center;
}

#productsPage .products .product .title-wrapper {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    height: 80px;
    color: #b5181d;
    background: transparent url("../img/ribbon-white-2.png") no-repeat center;
    background-size: contain;
}

#productsPage .products .product .title {
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 19px;
    /*padding: 0 20px;*/
}

#productsPage .products .product .title a {
    color: #b5181d;
}

#productsPage .products .product .image {
    height: 200px;
    width: 200px;
    max-width: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

#productsPage .products .product .image .image-link {
    display: block;
    height: 100%;
    width: 100%;
    content: '';
}

#productsPage .products .product .like-wrapper {
    margin: 4px 0 2px;
}

#productsPage .products .product .like-wrapper a {
    display: inline-block;
    width: 33px;
    height: 29px;
    margin: 0 3px 0 0;
    background: transparent url("../img/like.png") no-repeat top;
}

#productsPage .products .product .like-wrapper a.liked {
    background-position: bottom;
}

#productsPage .products .product .like-wrapper span {
    font-size: 20px;
}

#productsPage .products .product .points {
    font-size: 21px;
}

#productsPage .products .product .points img {
    width: 25px;
    margin: 0 0 4px 3px;
    vertical-align: middle;
}

/* categories */
#productsPage .categories {
    margin: 30px 0 10px;
}

#productsPage .categories h3 {
    margin-bottom: 10px;
}

#productsPage .categories .category {
    margin-bottom: 10px;
    vertical-align: middle;
}

#productsPage .categories #productCategoriesSearch {
    padding: 6px 17px;
    background: #fff;
    color: #a21c26;
    font-size: 16px;
    vertical-align: middle;
}

@media (max-width: 332px) {
    #productsPage .products .product .title {
        width: 60%;
    }
}

@media (min-width: 333px) {
    #productsPage .products .product .title {
        width: 55%;
    }
}

@media (min-width: 480px) {
    #productsPage .products .product {
        width: 49%;
    }

    #productsPage .products .product:nth-child(2n+1) {
        margin-right: 1%;
    }

    #productsPage .products .product:nth-child(2n+2) {
        margin-left: 1%;
    }

    #productsPage .special-edition-title-wrapper h2 {
        font-size: 30px;
    }

    #productsPage .products .product .title {
        width: 50%;
    }

    #productsPage .categories .category {
        display: inline-block;
        margin: 0 10px 0 0;
    }

    #productsPage .categories .category:last-child {
        margin-right: 0;
    }
}

@media (min-width: 575px) {
    #productsPage .products .product .title {
        width: 70%;
    }
}

@media (min-width: 768px) {
    #productsPage .products .product {
        width: 32%;
    }

    #productsPage .products .product:nth-child(2n+1),
    #productsPage .products .product:nth-child(2n+2) {
        margin-right: 0;
        margin-left: 0;
    }

    #productsPage .products .product:nth-child(3n+2) {
        margin-right: 2%;
        margin-left: 2%;
    }

    #productsPage .special-edition-title-wrapper h2 {
        font-size: 40px;
    }

    #productsPage .products .product .title {
        width: 70%;
    }
}

@media (min-width: 992px) {
    #productsPage .products .product .title a:hover {
        text-decoration: underline;
    }

    #productsPage .products .product .title {
        width: 65%;
    }

    #productsPage .products .product .image {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    #productsPage .products .product .image:hover {
        opacity: 0.85;
    }

    #productsPage .products.closed .product .image {
        opacity: 1;
    }
}