   * {box-sizing:border-box}

   /* BASE STYLES */
/* Inserting this collapsed row between two flex items will make 
 * the flex item that comes after it break to a new row */
.flex-break {
  flex-basis: 100%;
  height: 0;
}

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

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

.slideshow-img {
    
    min-width:100%;
    max-width:100%;
    max-height: 563px;
}

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

/* 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.8);
}

/* Caption text */
.caption {
  color: #f2f2f2;
  background-color:#7DBD7D;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 0px;
  width: 80%;
  text-align: center;
/*    z-index:99999;*/
}

.caption-text {
    float:left;
    width:80%;
    height:auto;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
/*  z-index:99999;*/
}
.slideshow-arrow-left {
    width:10%;
    font-size:250%;
    font-weight:bold;
    float:left;
    cursor:pointer;
    padding:2px !important;
}
.slideshow-arrow-right {
    width:10%;
    
    font-size:250%;
    font-weight:bold;
    float:right;
    cursor:pointer;
    padding:2px !important;
}
/* The dots/bullets/indicators */
.slideshowDot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
 
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: inline-block;
  transition: background-color 0.6s ease;
/*    z-index:99999;*/
}

.slideshowDot .filled {
  
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}


/* Fading animation */
.fade {
    	-webkit-transition: opacity 2s;
	transition: opacity 2s;
 
}

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

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