.fullscreen {
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.9);
	position:fixed;
	top: 0;
	left: 0;
	z-index: 200;
	display: none;
}


.slideshow-container, .slideshow-containerFS{
  max-width: 100%;
  position: relative;
  margin: auto;
  text-align:left;
	background-color: rgba(255, 255, 255, 0.04);
	border-radius: 0 0 30px 30px;
	overflow: hidden;
}

.slideshow-containerFS{
	height: 100%;
}

.slides, .slidesFS{
  max-width: 100%;
  display: none;;
}

.slidesFS{
	height: 85%;
}

.sliderImg, .sliderImgFS{
	height: clamp(260px, 46vw, 560px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.sliderImgFS{
	background-size: contain;
	height: 100%;
}

.previews {
	height: auto;
	text-align: center;
	overflow: auto;
	padding: 14px 12px 16px;
	background: rgba(8, 24, 32, 0.6);
	white-space: nowrap;
}

/* The dots/bullets/indicators */
.sliderPreview, .sliderPreviewFS{
	cursor: pointer;
	height: 72px;
	width: 72px;
	margin: 0 4px;
	background-color: rgba(0,0,0,0.3);
	border-radius: 14px;
	display: inline-block;
	transition: background-color 0.6s ease;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.sliderPreviewFS{
	height: 100%;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: 58px;
	height: 58px;
	padding: 0;
	margin-top: -29px;
	color: white;
	font-weight: bold;
	font-size: 26px;
	transition: 0.6s;
	border-radius: 999px;
	user-select: none;
	background-color: rgba(8, 24, 32, 0.42);
	text-align: center;
	line-height: 58px;
}

/* Position the "next button" to the right */
.next {
	right: 16px;
}

.prev {
	left: 16px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background: rgba(0,0,0,0.5);
}

/* Caption text */
.slidesInfo {
	color: white;
	font-size: 15px;
	position: absolute;
	bottom: 16px;
	right: 16px;
	padding: 10px 14px;
	border: solid 1px rgba(255,255,255,0.22);
	cursor: pointer;
	background: rgba(8, 24, 32, 0.82);
	border-radius: 999px;
  transition: 0.6s;
  user-select: none;
}

.slidesInfo:hover {
	background: var(--lightColor);
}

.numbertext {
  color: #f2f2f2;
	font-size: 13px;
  position: absolute;
	top: 12px;
  width: 100%;
  text-align: center;
}


.active, .sliderPreview:hover, .sliderPreviewFS:hover {
  background-color: rgba(255,255,255,0.6);
}

@media only screen and (max-width: 720px) {
	.prev, .next {
		width: 46px;
		height: 46px;
		line-height: 46px;
		margin-top: -23px;
	}

	.prev {
		left: 10px;
	}

	.next {
		right: 10px;
	}

	.sliderPreview, .sliderPreviewFS {
		height: 58px;
		width: 58px;
	}
}

/* Fading animation 
.fade {
  /*-webkit-animation-name: fade;
  -webkit-animation-duration: 0.5s;
  animation-name: fade;
  animation-duration: 0.2s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

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

/* On smaller screens, decrease text size 
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
*/