/*  
Description: Styles for the product results pages on the Revel Outdoors website
Author: Jamie Wightman
Author URI: http://jamiewightman.com/
*/

.productHolder {
    width: 100%;
    margin-top: 20px; 
    margin-bottom: 10px; 
    float: left;
}

.productHolder h2 {
    border: 1px solid #999999;
    margin: 0px;
    margin-top: 0px;
    text-align: center;
    background-color: #cccccc;
}

.productList {
    float: left;
    text-align: center;
    width: 95%;
    height: 350px;
    margin: 8px;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.productListImage {
    margin: 0px;
    margin-top: 5px;
    width: 100%; 
    text-align: center;
    height: 225px;
    white-space: nowrap;
}

.productListImage img {
    width: 90%;
    max-width: 225px;
    max-height: 225px;
    vertical-align: middle;
}

.productListDetail {
    height: 120px;
    width: 100%;
}

.productListDetail h4 {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 25px;
    padding: 10px;
    font-weight: bold;
    font-size: 1.4em;
    text-align: left;
}

.productListDetail h4 a {
    color: #06038D;
    text-decoration: none;	
}

.productListDetail h4 a:hover{
    color: #06038D;
    text-decoration: underline;	
}

.productListDetail p {
    margin: 0px;
    font-size: 1.6em;
    color: #333333;
    padding-left: 10px;
}


.pagination {
    float: left;
    width: 100%;
}

.pagination p {
    margin: 0px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.2em;
    text-align: center;
}

.pagination a {
    text-decoration: none; 
}

.paginationHolder {
    float: left;
}

.paginationHolderRight {
    float: left;
}

.pageNumber {
    float: right; 
    margin-right: 5px;
    margin-top: 3px;
    padding: 3px;
    width: 20px; 
    text-align: center;
    font-size: 1.2em;
    border: 1px solid #cccccc; 
}

.selectedPage {
    color: #ffffff;
    background-color: #06038D;
}

.resultsFilter {
    width: 100%;
    float: left;
}

.resultsFilter h3 {
    background-color: #cccccc;
    color: #333333;
    margin: 0px;
    padding: 10px;
}
    
.filterItem {
    float: left;
    padding: 0px;
}

.resultsFilter p {
    color: #666666;
    font-size: 1.4em;
    text-align: center;
}

.resultsFilter select {
    color: #333333;
}

@media only screen and (min-width: 580px) {
    .productList {
        width: 47%;
    }
}

@media only screen and (min-width: 760px) {
    .paginationHolderRight {
        float: right;
        margin-right: 10px;
    }
    
    .productList {
        width: 31%;
    }
    
}