.stories-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #000;
  margin: 2px ;
  touch-action: pan-y;
  border: 1px solid black;
  
 
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.story-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  align-items: center;
  justify-content: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
 
}

.story-image {
  width: 100%;
  height:  630px;
  object-fit: contain;
  object-position: center;
  opacity:0.8;
  
}

.story-placeholder {
  height: 300px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 18px;
  
}
.c {
    background-color: transparent;
    border: 1 px solid blue;
    position:relative;
    box-shadow: blue;
    background:transparent;
    border-radius:50%;
    padding: 2px;
    justify-self:center;
   
}
.fa-solid {
    font-size: 16px;
    border: 1px solid green;
    border-radius: 50%;
    padding: 2px;
    color:white;
    margin-top: -100px;
    

}
.story-content {
  padding: 10px;
  background: transparent;
  font-family: sans-serif;
  justify-content: center;
  justify-items:center;
  justify-self: center;
  margin:0px auto;
  float: none;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 

}

.story-content h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  justify-self:center;
  float:none;
}
.hidden {

}
.story-content >p {
  font-size: 16px;
  justify-self:center;
  float:none;
  margin:0px auto;
}
.story-content >.small {
    font-size: 16px;
  justify-self:center;
  float:none;
  margin:0px auto;

}
.progress-container {
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 4px;
  gap: 4px;
  z-index: 5;
}

.progress-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  background: white;
  transition: width linear;
}

.progress-bar.active::before {
  width: 100%;
  transition-duration: 5s;
}

.progress-bar.completed::before {
  width: 100%;
  background: white;
}
