.slideshow {
	font-family: 'Arial', sans-serif;
	text-align: center;
	position: relative;
	width: 600px;
	overflow: hidden;
	background: #1a1a1a;
	margin: 0 auto;
	color: white;
	text-shadow: 1px 1px 1px #000;
	border-radius: 0.3em;
	margin-top: 30px;
}

.slideshow-box {
	background-color: white;
	display: block;
}

.imageslide {
	display: block;
	margin: 0 auto;
	max-width: 600px;
	height: 400px;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.imageslide .slider-content {
	position: absolute;
	max-width: 600px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.imageslide .slider-content img {
	width: 600px;
	height: 400px;
	object-fit: cover;
}

.animate-enter,
.animate-leave {
	-webkit-transition: 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) all;
	-moz-transition: 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) all;
	-ms-transition: 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) all;
	-o-transition: 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) all;
	transition: 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) all;
}

.animate-enter {
	left: 100%;
}

.animate-enter.animate-enter-active {
	left: 0;
}

.animate-leave {
	left: 0;
}

.animate-leave.animate-leave-active {
	margin-left: -100%;
}

.animation {
	-webkit-transition: 1s;
}

.animation.ng-enter {
	opacity: 0;
}

.animation.ng-leave {
	opacity: 1;
}

.animation.ng-enter.ng-enter-active {
	opacity: 1;
}

.animation.ng-leave.ng-leave-active {
	opacity: 0;
}
