* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Slideshow container */
.slideshow-container {
  position: absolute;
	height: 100%;
	background-color: #185180;
  border-radius: 0.5em;
  overflow: hidden;
 justify-content: center;
	align-items: center;
}

.slideshow-container img {
  display: block;
}



/* Position the image container (needed to position the left and right arrows) */

/* Hide the images by default */
.mySlides {
  display: none;
  border: solid 0;
  overflow: hidden;
}

.row {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

/* Six columns side by side */

.thumbnail 		{
  display: flex;
  width: 13%;
  margin: 0.2rem;
  border: solid 2px;
  border-color: #fff;
  border-radius: 0.25em;
  overflow: hidden;
  object-fit: cover;
}

/*.thumbnail:hover, .thumbnail:active {
	border: solid 2px;
	border-color: orange;
}*/

.thumbnail.active {
  opacity: 1;
}


.thumbnail img {
	display: block;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor 	{
  cursor: pointer;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
	display: flex;
  align-items: center;
  top: 40%;
  width: auto;
  padding: 10px;
  color: #ffffff;
  font-weight: lighter;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 50px;
  user-select: none;
  -webkit-user-select: none;
  margin-left: 10px;
}

/* Position the "next button" to the right */
.next 		{
  right: 5px;
  border-radius: 50px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, 
.next:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Caption text */

.text 		{
    color: #ffffff;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
	
    animation: fadeIn linear 7s;
    -webkit-animation: fadeIn linear 7s;
    -moz-animation: fadeIn linear 7s;
    -o-animation: fadeIn linear 7s;
    -ms-animation: fadeIn linear 7s;
}

/* Number text (1/3 etc) */
.numbertext 	{
  	color: #fff;
  	font-size: 15px;
  	padding: 8px 12px;
  	position: absolute;
  	top: 10px;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
	}

/* Add a transparency effect for thumnbail images */
.demo 			{
  opacity: 0.6;
}

.active,
.demo:hover 	{
  	opacity: 1;
}

.active {
	border: solid 2px;
	border-color: orange; 
}

/*.active {
    border-width: 4px;
}*/


/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

.mySlides img {
	display: block;
  height: 450px;
  margin: auto;
}

.thumbnail img {
	display: block;
 width: 50px;
}

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

	.mySlides img {
	display: block;
  height: 566px;
  margin: auto;
}

.thumbnail 		{
  width: 6%;

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 600px) {


}

} 
