/* product_list.css - for lists of products... duh */

html {
	background: url("../img/textures/product_list_bro.jpg") repeat scroll 0 0 #303030;
}

body div#content {
    background: url("../img/textures/product_list_bro.jpg") repeat scroll 0 0 #303030;
}

#product_list {
	margin: 138px 0 120px 50%;
	position: relative;
	left: -479px;
}

.list_block {
	position: relative;
	width: 958px;
}

.list_block #geometric {
	position: absolute;
	top: -128px;
	left: -135px;
}

.copy {
	width: 208px;
	color: #949494;
	position: absolute;
}

#content .copy h2 {
    color: #dcdcdc;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: 0px;
    text-shadow: 0 2px 0 rgba(4,5,5,0.75);
    padding-top: 80px;
    margin-bottom: 10px;
    line-height: 1em;
    -webkit-mask-image: url(../img/textures/product_h1_repeat.png);
    -moz-mask-image: url(../img/textures/product_h1_repeat.png);
    mask-image: url(../img/textures/product_h1_repeat.png);
}

.list_block .header {
	position: absolute;
	top: 42px;
}

div.hr {
	height: 3px;
	background: url("../img/product_list/divider.png") repeat scroll center;
    -moz-box-shadow:  0 2px 0 rgba(4,5,5,0.35);
    -webkit-box-shadow: 0 2px 0 rgba(4,5,5,0.35);
    box-shadow: 0 2px 0 rgba(4,5,5,0.35);
}
div.hr hr {
	display: none;
}

.text {
    font-family: proxima-nova-extra-condensed,sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 2px 0 rgba(4,5,5,0.75);
    line-height: 24px;
    font-weight: bold;
}

.products {
	width: 705px;
	position: relative;
	left: 266px;
	margin-top: 50px;
	list-style-type: none;
}

.products li {
    display: inline;
    display: inline-block;
    width: 232px;
    min-height: 200px;
    text-align: center;
    position: relative;
    padding: 15px 0;
    vertical-align: top;
}

.products li .info {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 60px;
    display: none;
}

.products li a:hover .info {
    opacity: 1;
    text-decoration: none;
    display: block;
}

.products li img {
    z-index: 1;
    max-width: 220px;
}

.products .info img {
    padding-bottom: 5px;
}

.products li a .info,
.products li a .product_img,
.products li a .gray {
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}


.products li a:hover .product_img {
    opacity: .1;
}

.products li h5 {
    color: #e6e6e1;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 2px 0 rgba(4,5,5,0.75);
    -webkit-mask-image: url(../img/textures/product_h1_repeat.png);
    -moz-mask-image: url(../img/textures/product_h1_repeat.png);
    mask-image: url(../img/textures/product_h1_repeat.png);
    width: 100%;
    margin-bottom: 8px;
}

.products li a {
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.products li .btn {
    width: 114px;
    margin: 0 auto;
    /*display: none;*/
    padding-left: 0;
    padding-right: 0;
}

/*.products li a:hover .btn {
    opacity: 1;
    text-decoration: none;
    display: block;
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}*/

.products li .gray {
    background: url("../img/product_list/product_hover.png") repeat-y scroll center;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 0;
    left: 0;
    display: none;
}

.products li a:hover .gray {
    opacity: 1;
    text-decoration: none;
    display: block;
}

/*.products li a:hover h5 {
    opacity: 1;
    text-decoration: none;
    display: block;
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}
*/


