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


html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 30px;
	padding-bottom: 30px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3) !important;

}

.mySlides img {
  /* width: 100%;
  height: 100%; */
	max-height: 90vh;
	max-width: 90vw;
}


/* Caption text */
.caption-container {
  text-align: center;
  width: 100%;
/*  background-color: black;*/
  color: white;
  position: absolute;
  top: -50px;
}

/* The Close Button */
.close {
  color: white;
  display: block;
  position: absolute;
  top: 10px;
  right: 25px;
  padding: 10px;
  font-size: 35px;
  font-weight: bold;
  z-index: 10;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}


.nextandprev {
	top: 50%;

}



/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
/*  transition: 0.6s ease;*/
  user-select: none;
  -webkit-user-select: none;
	background-color: rgba(0, 0, 0, 0.4);
  text-decoration: none;;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}
.prev {
	left: 0;
	border-radius: 0 5px 5px 0;

}

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




@media screen and (max-width: 510px) {
	.close {
  		top: 50px;
		right: 15px;
	}
}
	
	
@media screen and (max-width: 850px) {
	
.mySlides img {
	max-height: 80vh;
	max-width: 80vw;
}
}








