.product-grid-wrapper, .category-grid-wrapper
{
	width: 33%;
	padding: 30px;
	display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: .3s all;
}

#productsGrid, #catGrid
{
	/*max-height: 500px;*/
	overflow: auto;
}

.product-grid
{
	margin: 0 auto;
	background-color: #FFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0,0,0, .50);

}

.product-grid hr
{
	clear: both;
}

.product-grid-wrapper:hover, .category-grid-wrapper:hover
{
	cursor: pointer;
	background-color: #FFF;
	padding: 10px;

}

.category-grid-wrapper img
{
	max-height: 300px;
}

.product-grid-background
{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .25);
	overflow: scroll;
	padding: 3% 40px;
	z-index: 1000;
	display: none;
}

.filter-product-selection
{
	display: inline-block;
	float: right;
}

#categorySelect
{
	font-size: 14px;
}


.close-grid
{
	position: absolute;
    top: 0px;
    right: 0px;
    font-size: 24px;
    padding: 10px;
    background-color: #000;
    line-height: .9em;
    color: #FFF;
    font-weight: 900;
    cursor: pointer;
}

.search-wrapper
{
	float: right;
    margin-right: 50px;
    position: relative;
}

.search-init
{
	position: absolute;
    top: 0px;
    height: 100%;
    line-height: 32.5px;
    right: 0px;
    background: #e1e1e1;
    padding: 0px 10px;
    font-size: 15px;
    cursor: pointer;
}

.filter-by-name
{
    
    padding: 6px 15px;
    line-height: 1.7em;
    display: inline-block;
    border: 1px solid #e2e2e2
}

.search-init
{
    margin: 0px;
    border-radius: 0px;
    border: none;
    border: 1px solid #e2e2e2;
    box-shadow: none;
}

.reset_products
{
	padding: 10px 20px;
    background-color: #e1e1e1;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

.btn
{
	margin: 10px 0px;
    padding: 12px 30px;
    background-color: #FFF;
    display: table;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s all;
}



.btn:hover
{
	background-color: #f2f2f2;
}

@media screen and (max-width: 767px)
{
    .product-grid-wrapper, .category-grid-wrapper
    {
        width: 100%;
        padding: 15px;
    }

    .filter-product-selection
    {
        float: none;
        padding: 15px 0px;
    }
}