/* ==============================================================================
/* ====== DEFAULT LIST STYLES (SMALL, MEDIUM, & LARGE)
/* ============================================================================= */

.product-container { display: block; }

.product-container.list {
    padding: 0;
}

.product-container.list a.view-all {
    display: block;
    text-align: center;
    background: #333;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 0;
    color: #fff;
    margin: 0;
    border: 1px solid #333;
}

.product-container.list a.view-all:hover {
    background: #666;
}

.product-container li.product { list-style: none; }

.product-container .small-list li.product {
	border-bottom: 1px solid #DDD;
	clear:both;
	display: block;
	float: none;
	height: 60px;
	padding: 0;
    z-index: 1;
}

.product-container .small-list {
    margin-bottom: 0;
}

.product-container .small-list li.product:hover {
	overflow: visible;
}

.product-container .small-list li.product:last-child {
	border: 0;
}

.product-container .small-list li.product a {
	background: #FFF;
	display: block;
	height: 100%;
	padding: 10px;
	overflow: hidden;
}

.product-container .small-list li.product a:hover {
	background: #FAFAFA;
	overflow: visible;
}

.product-container .small-list li.product a span {
	display: block;
    line-height: 21px;
	padding: 0 5px;
}

.product-container .small-list li.product .image {
    float: left;
    height: 49px;
    padding-left: 0;
    width: 30%;
}

.product-container .small-list li.product .image img {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	padding-left: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.product-container .small-list li.product a:hover .image img {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
	border: 5px solid #FFF;
	margin-top: -105%;
    margin-bottom: -105%;
    z-index: 100;
}

.product-container .small-list li.product .name {
    color: #222;
    float: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 70%;
}

.product-container .small-list li.product .price { 
    float: none;
    overflow: hidden;
    padding: 0 5px;
    width: inherit;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {

    .product-container.list {
        width: 100%;
    }

}