/* general css-properties for carousel */
.carousel {
	position: relative;
	line-height: 1.2em;
	display: inline-block;
}

.carousel .carousel-inner {
	overflow: hidden;
	position: relative;
	background-color: #fff;
}

/*decrease slide speed - if change, you have also to change the value of emulateTransitionEnd(value) in bootstrap-carousel.js*/
/*default value was 0.6*/
.carousel-inner .item {
	position: relative;
	display: none;
	-webkit-transition: 0.8s ease-in-out left;
	-moz-transition: 0.8s ease-in-out left;
	-o-transition: 0.8s ease-in-out left;
	transition: 0.8s ease-in-out left;
}

.carousel-inner .active,.carousel-inner .next,.carousel-inner .prev {
	display: block;
}

.carousel-inner .item img {
	display: block;
	line-height: 1;
}

.carousel-inner .active {
	left: 0;
}

.carousel-inner .next,.carousel-inner .prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.carousel-inner .next {
	left: 100%;
}

.carousel-inner .prev {
	left: -100%;
}

.carousel-inner .next.left,.carousel-inner .prev.right {
	left: 0;
}

.carousel-inner .active.left {
	left: -100%;
}

.carousel-inner .active.right {
	left: 100%;
}

/* css-styling for carousel */
.carousel-control,.carousel-control:focus {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 60px;
	margin-top: -30px;
	font-size: 50px;
	font-weight: 100;
	line-height: 50px;
	color: #4D4D4D;
	text-align: center;
	background: #424242;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	border-radius: 23px;
}

.carousel-control.right {
	right: 15px;
	left: auto;
}

.carousel .carousel-control:hover {
	border-color: #d0d0d0;
	text-decoration: none;
	color: #f21c0a;
	text-shadow: 0 0 2px rgba(255, 0, 0, 0.75);
}

.carousel .carousel-control.left,.carousel .carousel-control.right {
	background: #fff;
	border-color: #e7e7e7;
	border-style: solid;
	opacity: 1;
	text-align: center;
	outline: 0;
	z-index: 1;
	text-decoration: none;
}

.carousel .carousel-control.right {
	border-radius: 0 5px 5px 0;
	border-width: 1px 1px 1px 0;
	right: -25px;
	box-shadow: 2px 0 2px 0 #e7e7e7;
}

.carousel .carousel-control.left {
	border-radius: 5px 0 0 5px;
	border-width: 1px 0 1px 1px;
	left: -25px;
	box-shadow: -2px 0 2px 0 #e7e7e7;
}

.carousel .dots {
	display: block;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0px;
	z-index: 10;
}

.carousel .sliderdot, .sliderdot_active {
	border-radius: 10px 10px 10px 10px;
	height: 7px;
	width: 7px;
	margin: 0;
	background-color: #D0D0D0;
}

.carousel .sliderdot_active {
	background-color: #F21C0A;
}

/* STYLE FOR STOREFRONT-SLIDER */
.carousel.storefront {
	width: 550px;
	padding: 0 20px;
	margin: 15px 25px 15px 25px;
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 5px;
	vertical-align: top;
}

.carousel.storefront .item {
	height: 130px;
	width: 100%;
	padding: 20px 0;
	overflow: hidden;
	color: #4d4d4d;
	z-index: 100;
	font-size: 11pt;
	line-height: 14pt;
}

.carousel.storefront .carousel-image {
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.15);
	float: left;
	margin: 0 15px 0 10px;
}

.carousel.storefront h4 {
	margin: 0 0 10px 10px;
	font-size: 11pt;
}

.carousel.storefront p {
	line-height: 1.3em;
	padding: 0px;
	margin: 0px;
	font-size: 10pt;
}

.carousel.storefront .button {
	margin-top: 5px;
}

/* STYLE FOR BRANDS-SLIDER AND EXCLUSIVE-CATALOGS-SLIDER */
.carousel.brandslider {
	width: 900px;
	margin: 15px 35px;
	vertical-align: top;
	text-align: center;
}

.carousel.brandslider .item {
	height: 85px;
	width: 100%;
	padding: 20px 0;
	overflow: hidden;
	color: #4d4d4d;
	z-index: 100;
	font-size: 11pt;
	line-height: 14pt;
}

.brandslider .carousel-inner .item a {
	/*with inline-table the slider can break if the display names are too long*/
	/*alternative inline-block with no break, but no top orientation of the elements*/
	display: inline-table;
	width: 150px;
	text-align: center;
	font-size: 12px;
	margin: 0 20px 0 0;
}

.carousel-inner .item a img {
	display: inline-block;
	max-width: 105px;
	max-height: 51px;
}