@charset "utf-8";
/* CSS Document */

/* slidehshow */

.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* Next & previous buttons */
.prev_slide, .next_slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 15px;
}

/* Position the "next button" to the right */
.next_slide {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev_slide:hover, .next_slide:hover {
  background-color: #717171;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  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 {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

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

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

/* Button */
.switch-button {
	cursor: pointer;
	background-color: #bbb;
	border: none;
	border-radius: 50px;
	color: black;
	font-family: inherit;
	text-transform: uppercase;
	width: 200px;
	margin: 20px auto 0px;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	display: block;
	font-size: inherit;
	transition: background-color 0.6s ease;
}
.switch-button:hover {
	background-color: #717171;
}