/* Slideshow container */
.image-slider-container {
  max-width: 1000px;
	display: flex;
	flex-direction: row;
	align-items: center;
  position: relative;
  /* margin: auto; */
	/* margin: 20px 0; */
	z-index: 1;
}

/* Hide the images by default */
.image-slider-container .image-slide {
  display: none;

}
.image-slider-container .image-slide img {
	width: 80%;
	height: 70vh;
	object-fit: contain;
}

/* Next & previous buttons */
.image-slider-container .prev, 
.image-slider-container .next {
  cursor: pointer;
  /* position: absolute; */
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: gray;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.image-slider-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.image-slider-container .prev:hover,
.image-slider-container .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.image-slider-container .numbertext {
  color: gray;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.image-slider-container .active {
  background-color: #717171;
}

/* Fading animation */
.image-slider-container .fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.image-slider-container .no-images-info {
	border: 1px solid white;
	border-radius: 5px;
	padding: 10px 20px;
	padding-left: 40px;
}
.image-slider-container .no-images-info {
	background: url('../img/icons/information_mark.svg') no-repeat;
	background-size: 20px;
	background-position: 10px center;
}