/*****************************
* *	 	   FP SLIDER   	   * *
*****************************/

#fpslider {
	background: #fff;
	border: 1px solid #dbdbdb;
	height: 225px !important;
	margin: 0 auto;
	width: 958px;
	position: relative;
	padding-top: 57px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}

#fpslider:before {
	content: "Featured Products";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: #0055a5;
	font: 30px/52px "Bebas Neue", sans-serif;
	color: #fff;
	text-transform: uppercase;
	text-indent: 15px;
	border-top: 5px solid #004484;
}

/*****************************
* *	 	    WRAPPERS   	   * *
*****************************/

/* This is the 'window' that your .innerwrap is confined to */
#fpslider .outerwrap {
	background-color: #fff;
	position: relative !important;
}

/* This is a big long div that will contain all your featured products */
#fpslider .innerwrap {
	position: absolute !important;
}

/* The block fo each item w/ its details */
#fpslider .item {
	display: block !important;
	float: left !important;
	/* Add line-height to keep everything even */
	line-height: 15px;
	padding: 5px;
	margin-top: 30px;
	position: relative;
}

#fpslider .item:before {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background: #d0d0d0;
	position: absolute;
	left: 0;
	top: 0;
}
#fpslider .item:nth-child(4n+1):before {display: none;}

/* Generic wrapper class*/
#fpslider .wrap {
	overflow: hidden !important;
	height: 100%;
	width: 100%;
}

/*****************************
* *	 	    ARROWS   	   * *
*****************************/

#fpslider .prev_btn,
#fpslider .next_btn {
	display: none; /* need */
	z-index: 999;	
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url(../images/homepage/fps-arrow-sprite.png) no-repeat 0 0;
	width: 29px;
	height: 65px;
}

#fpslider .prev_btn {right: 100%;}
#fpslider .next_btn {left: 100%; background-position: right 0;}

#fpslider .item a {text-decoration: none;}

/* The image container */
#fpslider .item .image {
	/* Change the 100px to whatever the height you need your image to be */
	line-height: 100px;
	height: 100px;
	margin-bottom: 10px;
	text-align: center;
}

/* The actual image - centered horizontally and vertically */
#fpslider .item .image img {
	display: inline-block;
	*display: inline;
	/* Use your best judgement on min-height and max-height */
	max-height: 100%;
	max-width: 90%;
	vertical-align: middle;
	zoom: 1;
}

/*****************************
* *	 	     TEXT   	   * *
*****************************/

/* Product Title */
#fpslider .item .name a {
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: block;
	color: #333;
	overflow: ;
	white-space: wrap;
	width: 90%;
	padding-left: 10px;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 3px;
}

/* Our Price text */
#fpslider .item .pricetext {
	color: #004484;
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 3px;
}

/* Our price */
#fpslider .item .price {
	color: #004484;
	font-size: 17px;
	font-weight: bold;
	padding-left: 10px;
	margin-bottom: 3px;
}

/* Sale price */
#fpslider .item .sale {
	color: #ea3f34;
	padding-left: 10px;
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 3px;
}

#fpslider .item .sale:before {
	content: "Our Price:";
	display: inline-block;
	padding-right: 5px;
	color: #ea3f34;
}


/* Sale text */
#fpslider .item .saletext {
	color: #ea3f34;
	padding-left: 10px;
	font-size: 17px;
	font-weight: bold;
}

/* The description - hidden by default in JS and here */
#fpslider .item .desc {
	display: none;
}

/*****************************
* *        SHOP NOW   	   * *
*****************************/

/* 'Shop Now' button */
#fpslider .button {
	background-color: black;
	border-radius: 5px;
	color: white;
	display: block;
	margin: 5px auto;
	padding: 5px 10px;
	text-decoration: none;
	width: 50%;
}

#fpslider .button:hover {
	background-color: gray;
}



/* 960px */
@media screen and (max-width: 960px) {
	
	#fpslider { height:243px !important;}
	#fpslider .prev_btn {right: 98.2%;}
	#fpslider .next_btn {left: 98.2%;}
	
}

/* 800px */
@media screen and (max-width: 800px) {
	#fpslider { height:279px !important;}
}

/* 720px */
@media screen and (max-width: 720px) {
	
	#fpslider {
		height: 246px !important;
	}
}

/* 560px */
@media screen and (max-width: 560px) {
	
	#fpslider {
		height: 230px !important;
	}
	#fpslider .prev_btn {right: 96.4%;}
	#fpslider .next_btn {left: 96.4%;}
}

/* 480px */
@media screen and (max-width: 480px) {
	
	#fpslider {
		height: 230px !important;
	}
	#fpslider .prev_btn {right: 89%;}
	#fpslider .next_btn {left: 89%;}
}