/*************************************************************************** */
/**   Author: Josip Vinković (https://www.linkedin.com/in/josipvinkovic)  ** */
/**   Company: Altoden (https://www.altoden.hr)                           ** */
/*************************************************************************** */

.carousel {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel .indicators {
  z-index: 10123;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 0;
  padding: 0;
}

.carousel .indicators li {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid white;
  border-radius: 100%;
  }

.carousel .indicators .active {
  background-color: white;
}

.carousel .images {
  width: 100%;
  height: 100%;
  position: absolute;
}

.carousel .images img {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute; 
  top: 0; 
  left: 0; 
  object-fit: cover;
}

.carousel .overlay {
  width: 100%;
  height: 100%;
  z-index: 55;
  position: absolute;  
  opacity: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%,rgba(0,0,0,0.3) 100%);
}

.carousel .overlay:hover {  
  opacity: 1;
}

.carousel .arrow-container {
  width: 20%;
  height: 100%;
  position: absolute;
}

.arrow-container-prev {
  left: 0;
}

.arrow-container-next {
  right: 0;
}

.arrow-container .arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 12px;
  z-index: 10;
}

.arrow-prev {
  left: 20px;
  position: absolute;
  top:50%;
  transform: translateY(-50%) rotate(135deg);
}
 
.arrow-next{
  right: 20px;
  position: absolute;
  top:50%;
  transform: translateY(-50%) rotate(-45deg);
}