.carousel-indicators {
 position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
/*  display: none; */
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding-left: 0; 
  margin-right: 5%;
  margin-left: 5%;
}
.carousel-indicators li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid grey;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 6px;
  height: 6px;
  margin: 3;
  background-color: grey;
}
.carousel-caption {
  position: absolute;
  right: 0%;
  bottom: 25px;
  top: 10px;
  left: 53%;
  z-index: 10;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
  background-color: rgba(220,220,220,0.75) !important;
  color: #fff;
  color: black;
  text-align: center;
}
/* looks a little cleaner to skip the icons */
.carousel-control-prev-icon {
  background-image: url("./images/left-arrow.png");
  background-image: url("");
}

.carousel-control-next-icon {
  background-image: url("./images/right-arrow.png");
  background-image: url("");
}

.carousel-control-prev,
.carousel-control-next{
      position: absolute;
      bottom: -90%;
}


