/*==============================================================================
/*
/* divSlider.css
/*
/* styles for sliding div carousel
/*
/*============================================================================*/

.carouselOuter {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.carouselOuter:hover {
	box-shadow: 0 0 0 1px rgba(127, 127, 127, .3) inset;
}

.carousel_container {
	display: flex;
	justify-content: space-around;
	width: 512px;
	height: 228px;
}

.carousel_container:hover {
	/* box-shadow: 0 0 0 1px rgba(127, 127, 127, .3) inset; */
}

.carouselContainer {
	width: 414px; 
	height: 216px;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-around;
	margin-top: 5px;
}

.sliderButton {
	background: transparent;
	border: none;
}

.sliderButton:focus {
  outline: none;
}

.slideContainer {
	display: flex;
	justify-content: space-between;
}

.slide {
	height: 216px;
	width: 410px;
	transition: 2s;
	margin: 2px;
}

.slideDiv {
	height: 200px;
	width: 400px;
	padding: 5px;
}

.carousel__nav {
	display: flex;
	justify-content: center;
}

.carousel__indicator {
	border: 0px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	background: rgba(0,0,0,.3);
	margin: 0 12px;
	cursor: pointer;
	outline: none;
}

.carousel__indicator.currentBlob {
	background: rgba(0,0,0,.75);
}

/* only if screen wide enough */
@media (max-width: 600px) {
	.carouselOuter {
		display: none;
	}
}
