.filter-product {
	
}

	.filter-product .carousel {
		overflow: hidden;
	}
	
		.filter-product .carousel:hover {
			overflow: visible;
		}

	.filter-product .filter-tabs {
		border-bottom: 1px solid #e5e5e5;
		list-style: none;
		padding: 0px 75px 0px 0px;
		margin: 45px 0px 40px 0px;
	}
	
		.filter-product .filter-tabs ul {
			list-style: none;
			margin: 0px;
			padding: 0px;
		}
	
		.filter-product .filter-tabs ul > li {
		  float: left;
		  margin-bottom: -1px;
		}
		
			.filter-product .filter-tabs ul > li > a {
			  margin: 10px 1px 0px 0px;
			  padding: 10px 20px;
			  position: relative;
			  display: block;
			  font-size: 16px;
			  background: #f2f2f2;
			  color: #333333;
			  border-radius: 4px 4px 0 0;
			  line-height: 1.42857143;
			}
			
			.filter-product .filter-tabs ul > li > a:hover {
			  background: #0088cc;
			  color: #fff;
			}
			
			.filter-product .filter-tabs ul > li.active > a,
			.filter-product .filter-tabs ul > li.active > a:hover,
			.filter-product .filter-tabs ul > li.active > a:focus {
			  background: #0088cc;
			  color: #fff;
			  font-weight: bold;
			}

.tab-content {
	position: relative;
}
				
	.tab-content .prev-button, 
	.tab-content .next-button {
		width: 32px;
		height: 32px;
		border-radius:         4px;
		-moz-border-radius:    4px;
		-webkit-border-radius: 4px;
		background: #fff; /* Old browsers */
		border: 1px solid #eaeaea;
		color: #888;
		line-height: 30px;
		text-align: center;
		transition: all 0.2s ease-in;
		-webkit-transition: all 0.2s ease-in;
		-moz-transition: all 0.2s ease-in;
		position: absolute;
		top: -87px;		
		right: 0;
	}
		
		.tab-content .prev-button {
			right: 42px;
		}
		
		.tab-content .prev-button:hover, 
		.tab-content .next-button:hover {
			background: #0088cc;
			border-color: #0088cc;
			color: #fff;
		}
		
		.tab-content .prev-button span:before, 
		.tab-content .next-button span:before {
			content: "\f104";
			display: inline-block;
		    font: normal normal normal 14px/1 FontAwesome;
		    font-size: inherit;
		    text-rendering: auto;
		    -webkit-font-smoothing: antialiased;
		    -moz-osx-font-smoothing: grayscale;
		}
		
			.tab-content .next-button span:before {
				content: "\f105";
			}
			
@media (max-width: 767px) {
	.responsive .filter-product .filter-tabs ul > li > a {
		font-size: 14px;
		padding-left: 10px;
		padding-right: 10px;
	}
}