/*******************************************
 * Slider container
 ******************************************/

* {box-sizing: border-box;}

#slider {
  position: relative;
  width: 100%;
  margin: auto;
  margin-bottom: 1em;
}

#slider .slide {
  display: none;
}

#slider .slide img {
  max-height: 400px; /* Skeleton is Mobile first */
  vertical-align: middle;
}

#slider .slide .caption {
  color: #f2f2f2;
  background-color: rgb(0,0,0,.5);
  padding: 20px 12px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}


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

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


/* The dots/bullets/indicators */
#slider-trace {
  text-align: center; 
}
#slider-trace .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

#slider-trace .active {
  background-color: #717171;
}


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

