.carousel-indicators li{
  cursor: default;
  border: none;
  opacity: 0.7;
}
.carousel-indicators{
  bottom: 10px;
}
.carousel-indicators .active, .carousel-indicators li{
  width: 55px;
  background-color: white;
  height: 3px;
  margin-right: 20px;
  border: none;
}
.carousel-indicators .active{
  position: relative;
  top: 19px;
  opacity: 1;
}
.carousel-indicators div{
  background-color: #2196f3;
  width: 0%;
  height: 100%;
  display: none;
}
.carousel-indicators .active div{
  display: block;
  animation-name: carousel-indicator-animation;
  animation-duration: 5.7s;
}
.last_carousel{
  margin-right: 0;
}
.carousel .carousel-inner .item div {
  width: 100%;
  height: 450px;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: cover;
  background-color: white;
}

@media all and (max-width: 2000px) {
  .carousel .carousel-inner .item div {
    height: 357px;
  }
}

.carousel .carousel-inner .item.loaded img{
  display: none;
}
.carousel .carousel-inner .item img{
  margin-top: 100px;
}
.carousel .carousel-inner .item span:not(:first-child){
  margin-top: 20px;
}
.carousel .carousel-inner .item span:first-child{
  width: 75%;
}
.carousel .carousel-inner .item span:nth-child(2){
  width: calc(75% - 100px);
}
.carousel .carousel-inner .item span:nth-child(3){
  width: calc(75% - 200px);
}
.carousel-control {
  background-image: none !important; 
  color: white; 
  opacity: 1;
}
.carousel-control.desktop > img {
  width: 40px;
  top: 40%;
  position: absolute;
  opacity: 0.5
}
.carousel-control.desktop > img:hover{
  opacity: 1;
}
@keyframes carousel-indicator-animation{
  from {width: 0%}
  to   {width: 100%}
}
@keyframes placeHolderShimmer{
  0%{
      background-position: -468px 0
  }
  100%{
      background-position: 468px 0
  }
}
@media screen and (min-width: 768px) and (max-width: 991px){
  .right.carousel-control.desktop img{
    right: 50px;
  }
  .carousel-indicators{
    width: 93%;
    left: 0%;
    margin-left: 4.5%;
  }
  .tab_mobile{
    top: 0px;
  }
}
@media screen and (min-width: 1024px){
  #topCarousel{
    display: block !important;
  }
}