/* SLIDESHOW.CSS VISAMINERA.CL - derechos reservdos 
20181228 GVL
*/

* {box-sizing: border-box;}

.slideshow-container img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  max-height:400px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text_sld {
/*  color: #f2f2f2;*/  
  color: #ffffff;
  background-color:#adadad;
  font-size: 22px;
  font-weight:normal;
  padding: 5px 5px;
  position: absolute;
  bottom: 100px;
  /*top: 150px;*/
  left:180px;
  width: 80%;
  text-align: center;
}

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

/* The dots/bullets/indicators */
.dot {
  height: 2px;
  width: 2px;
  margin: 0 2px;
  background-color: #0000ff; /*bbbbbb=grey, 0000ff=blue*/
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active_sld {
  background-color: #717171;
}

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

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

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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

