
/* MODS CSS */

/* Must be adusted for each SlideShow on page */

.technologySlideShowWorksOpen
{
  margin: auto;
  display: block;
  width: 80%;
  height: 80%;
  min-height: 529px;
  max-height: 530px;
  object-fit: contain;
  background-color: #4F4F4F;
  box-shadow: 0px 0px 25px #000000;
  border:2px solid #4F4F4F;
}

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


/* END --> Must be adusted for each SlideShow on page */





/* STANDARD CSS */

* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

/* Position the image slideShowContainer (needed to position the left and right arslideShowRows) */
.slideShowContainer {
  margin: auto;
  display: block;

/*
  width: 500px;
  height: 650px; */

}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.slideShowPrev,
.slideShowNext {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

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

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

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

/* Container for image text */
.caption-slideShowContainer {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.slideShowRow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six slideShowColumns side by side */
.slideShowColumn {
  display: inline-block;
  width: 7.5%;
  height: 7.5%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.slideShowActive {
  border:1px solid blue;
  opacity: 1;
}

.demo:hover {
  opacity: 0.85;
}
