/*************************************** 2023-06-19 *****8*******************************/
/* video-slider.css 																	*/
/* CSS for video slider, see 															*/ 
/* https://www.w3schools.com/howto/howto_js_slideshow.asp, 								*/
/* https://www.w3schools.com/tags/tag_video.asp,										*/
/* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video 						*/
/* modified by Fraser June 2023 														*/
/* Example HTML:

	 <!-- Slideshow container -->
	<div class="slideshow-container">
	  <!-- Full-width images with number and caption text -->
	  <div class="mySlides fade">
		<div class="numbertext">1 / 3</div>
		<video style="width:100%" controls>
		  <source src="1.mp4" type="video/mp4">
		  <p>
			Your browser doesn't support HTML video. Here is a
			<a href="1.mp4">link to the video</a> instead.
		  </p>
		</video> 
	  </div>

	  <div class="mySlides fade">
		<div class="numbertext">2 / 3</div>
		<video style="width:100%" controls>
		  <source src="2.mp4" type="video/mp4">
		  <p>
			Your browser doesn't support HTML video. Here is a
			<a href="2.mp4">link to the video</a> instead.
		  </p>		
		</video> 
	  </div>

	  <div class="mySlides fade">
		<div class="numbertext">3 / 3</div>
		<video style="width:100%" controls>
		  <source src="3.mp4" type="video/mp4">
		  <p>
			Your browser doesn't support HTML video. Here is a
			<a href="3.mp4">link to the video</a> instead.
		  </p>
		</video> 
	  </div>

	  <!-- Next and previous buttons -->
	  <a class="prev" onclick="plusSlides(-1)">&#10094;</a>
	  <a class="next" onclick="plusSlides(1)">&#10095;</a>
	</div>
	<br>
	<!-- Captions -->
	<div class="">
    	<div class="caption text fade">Caption 1</div>
    	<div class="caption text fade">Caption 2</div>
		<div class="caption text fade">Caption 3</div>
	</div> 
	<!-- The dots/circles -->
	<div style="text-align:center">
	  <span class="dot" onclick="currentSlide(1)"></span>
	  <span class="dot" onclick="currentSlide(2)"></span>
	  <span class="dot" onclick="currentSlide(3)"></span>
	</div> 
																						*/
/****************************************************************************************/

* {box-sizing:border-box}

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

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #0f3769; /* white; */
  font-weight: bold;
  font-size: 22px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

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

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7); /* was 0.8 alpha */
  color: rgba(255,255,255,0.9);
}

/* Caption text - modified June 2023 to have them below the video slide container */
.text {
  color: #0f3769;
  font-size: 22px; 
  padding: 8px 0px;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #0f3769; /* #f2f2f2; */
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  right:0;
}

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

.active, .dot:hover {
  background-color: #0f3769 /* #717171; */
}

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

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