* {box-sizing:border-box}

/* Slideshow container */ 
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
    /*opacity: 0;
    z-index: 1;*/
}

/*.showing{
	opacity: 1;
	z-index: 2;
}*/

/*#slides{
    max-width: 70vw;
    position: relative;
    margin: auto;
	position: relative;
	height: 150px;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}*/

/*.slide{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;

	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}*/

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

.animate-left {
    position: relative;
	animation-name: animateleft;
    animation-duration: 0.8;
}

@keyframes fade{
  from {opacity: .4};
  to {opacity: 1};
}

@keyframes animateleft { 
	from { left :-500px; opacity:0.5 }
	to { left:0; opacity:1 }
}