/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */



.carousel-control-prev,
.carousel-control-next {
	position: absolute;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 15%;
	color: #fff;
	text-align: center;
	opacity: 0.5;
}

.carousel-control-prev {
	left: 0;
}

.carousel-control-next {
	right: 0;
	left: inherit !important
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: transparent no-repeat center center;
	background-size: 100% 100%;
}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-item-caption {
	padding: 8px 0;
	overflow: auto;
	height: 150px;
}

.carousel-indicators li {
	border-radius: 12px !important;
	width: 12px !important;
	height: 12px !important;
	margin: 0 3px !important;


}

.carousel-inner .item>img {
	width: 100%;
}

.carousel-item a {
	color: inherit;
}
.carousel-fade .carousel-item {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter: alpha(opacity=00);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	transition-duration: .6s;
	transition-property: opacity;
}

.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter: alpha(opacity=00);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
	transform: translateX(0);
	transform: translate3d(0, 0, 0);
}





@media screen and (min-width:768px){
  .carousel-control-prev, .carousel-control-next {
    width: 5% !important;
		text-align: center !important;
  }
  .carousel-control-prev-icon, .carousel-control-next-icon {
    width: 60px;
    height: 60px;
		position: relative !important;
  }


	.carousel-item-caption,  .white-background .carousel-item-caption {
		position: relative;
		width: 100%;
		height: 100%;
		background-color: rgba(255,255,255,0.8);
		top: 0;
		left: 0;
		padding: 30px;
	}

	.dark-background .carousel-item-caption  {
		background-color: rgba(0,0,0,0.8);
		color: #fff;
	}
	.no-background .carousel-item-caption {
		background-color: transparent;
	}

	.carousel-item-caption .caption-text {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 0 20px 10px;
	}
	.carousel-item-caption-container .container {
		height: 100%;
	}
	.carousel-item-caption-container .container > div {
		height: 100%;
	}
	.carousel-item-caption-container {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}
}


.carousel-pause-button {
	display: none;
}
