#products-list {
    background: #fff;
    margin: 10px 0;
    padding: 20px;
    border-radius: 3px;
    position: relative;
    width: 100%;
}

    #products-list.loading::after {
        content: 'Carregando';
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: .5;
        border-radius: 3px;
    }

    #products-list .product-category {
        display: flex;
        flex-direction: column;
    }

        #products-list .product-category .category-name {
            font-size: 20px;
            padding-bottom: 8px;
            margin: 20px 0;
            border-bottom: 1px solid;
            padding:10px;
        }

        #products-list .product-category .products {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

            #products-list .product-category .products .product .product-info {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 15px;
            }

            #products-list .product-category .products .product {
                display: flex;
                flex-direction: column-reverse;
                position: relative;
                width: 230px;
                height: 300px;
                border-radius: 3px;
                box-shadow: 0 0 10px rgba(0, 0, 0, .1);
                margin: 10px;
                justify-content: space-between;
            }

                #products-list .product-category .products .product .product-info .product-name {
                    font-size: 12px;
                }

                #products-list .product-category .products .product .product-info .product-description {
                    font-size: 10px;
                    padding: 5px 0;
                    max-height: 52px;
                    overflow: hidden;
                    margin-bottom: 5px;
                }

                #products-list .product-category .products .product .product-info .product-price {
                    font-size: 12px;
                }

                #products-list .product-category .products .product .product-photo {
                    position: relative;
                    background-size: cover;
                    background-position: center center;
                    background-repeat: no-repeat;
                    border-radius: 3px;
                    flex: 1;
                }

    #products-list .product-empty {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #products-list .product-empty i {
            font-size: 30px;
        }

        #products-list .product-empty span {
            font-size: 18px;
        }

    #products-list .product-category .products .product button.product-add-button {
        position: absolute;
        right: 5px;
        bottom: 5px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
        opacity: .9;
        outline: none;
    }

        #products-list .product-category .products .product button.product-add-button:hover {
            opacity: 1;
        }

    #products-list .product

    #products-list .product .swiper-container {
        width: 100%;
        height: 100%;
    }

    #products-list .product .swiper-button-next:after,
    #products-list .product .swiper-button-prev:after {
        font-size: 30px;
        color: #fff;
    }

    #products-list .product .product-photo {
        width: 100%;
        height: 100%;
        position: relative;
    }

        #products-list .product .product-photo .photo-button-next,
        #products-list .product .product-photo .photo-button-prev {
            position: absolute;
            font-size: 30px;
            top: 50%;
            z-index: 1;
            text-shadow: 0 1px 1px rgba(0,0,0,.8);
            top: 0;
            height: 100%;
            display: flex;
            align-items: center;
            width: 40px;
            justify-content: center;
        }

        #products-list .product .product-photo .photo-button-next {
            right: 0;
        }

        #products-list .product .product-photo .photo-button-prev {
            left: 0;
        }

        #products-list .product .product-photo .swiper-slide {
            background-size: cover;
            width: 100% !important;
        }


@media only screen and (max-width: 640px) {
    #products-list {
        padding-left: 5px;
        padding-right: 5px;
    }

        #products-list .product-category .products .product {
            display: flex;
            flex-direction: row;
            position: relative;
            width: 100%;
            max-height: 125px;
            border-radius: 3px;
            box-shadow: 0 0 10px rgba(0, 0, 0, .1);
            margin: 5px 0;
            justify-content: space-between;
        }

            #products-list .product-category .products .product .product-info {
                flex: 2;
            }

                #products-list .product-category .products .product .product-info .product-description {
                    font-size: 12px;
                    padding: 15px 0 10px 0;
                    max-height: 52px;
                    overflow: hidden;
                    margin-bottom: 5px;
                }

                #products-list .product-category .products .product .product-info .product-price {
                    font-size: 12px;
                }

        #products-list .product-empty {
            flex-direction: column;
        }

            #products-list .product-empty i {
                font-size: 40px;
            }

            #products-list .product-empty span {
                text-align: center;
                padding: 20px;
            }

        #products-list .product-category .products .product button.product-add-button {
            display: none;
        }

        #products-list .product .product-photo .photo-button-next,
        #products-list .product .product-photo .photo-button-prev {
            font-size: 18px;
            width: 20px;
        }
}
