

#commercialSlideshow body {
  margin: 0;
}

#commercialSlideshow * {
  box-sizing: border-box;
}

#commercialSlideshow .size{
  width:60%;
  height:60%;
}

#commercialSlideshow img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
#commercialSlideshow .container {
  position: relative;
}

/* Hide the images by default */
#commercialSlideshow .mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
#commercialSlideshow .cursor {
  cursor: pointer;
}

/* Next & previous buttons */
#commercialSlideshow .prev,
#commercialSlideshow .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #002129;
  font-weight: bold;
  font-size: 50px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-text-stroke: 3px white;
  transition: background-color 0.5s ease;
}
#commercialSlideshow .prev:hover,
#commercialSlideshow .next:hover{
  color:white;
  text-decoration:none;
}

/* Position the "next button" to the right */
#commercialSlideshow .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#commercialSlideshow .prev:hover,
#commercialSlideshow .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
#commercialSlideshow .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
#commercialSlideshow .caption-container {
  text-align: center;
  background-color: #002129;
  padding: 0px 16px;
  color: white;
  font-size:30px;
}

#commercialSlideshow .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
#commercialSlideshow .column {
  float: left;
  width: 12.5%;
}

/* Add a transparency effect for thumnbail images */
#commercialSlideshow .demo {
  opacity: 0.6;
}

#commercialSlideshow .active,
#commercialSlideshow .demo:hover {
  opacity: 1;
}
@media all and (max-width: 992px) {
  #commercialSlideshow .size{width:90%; height: 90%;}

}	