#wpsc .carousel-item {
	text-align: center;
	padding-bottom: 10px;
}
#wpsc .carousel-item .carousel-thumb {
	padding: 10px;
}
#wpsc .carousel-item .carousel-title {
	font-size: 12px;
	line-height: 14px;
}
#wpsc .carousel-item.current-carousel-item {
	background: rgba(0,0,0,0.05);
}
#wpsc .carousel-item:after {
    content: '\A';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.05);
    opacity: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
}
#wpsc .carousel-item:hover:after {
	opacity: 1;
	cursor: pointer;
	pointer-events: none;
}
#wpsc .carousel-item a {
	text-decoration: initial;
	color: inherit;
}
/* PREV - NEXT */
.owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  background: initial !important;
  color: #999 !important;
  display:inline-block;
    transform:scale(1,3); /* W3C */
    -webkit-transform:scale(1,3); /* Safari and Chrome */
    -moz-transform:scale(1,3); /* Firefox */
    -ms-transform:scale(1,3); /* IE 9 */
    -o-transform:scale(1,3); /* Opera */

}
 .owl-theme .owl-controls .owl-buttons div:hover {
	color: #000 !important;
 }
.owl-theme .owl-controls .owl-buttons .owl-prev{
  left: -45px;
  top: 55px; 
}
 
.owl-theme .owl-controls .owl-buttons .owl-next{
  right: -45px;
  top: 55px;
}