.web-story {
  border-bottom: 2px solid #A43838;

  background-position: center center;
  /* background-repeat: no-repeat; */
  background-size: contain;
}

.web-story .stories-container {
  display: flex;
  padding: 0 7px;
  justify-content: center;
  gap: 30px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .web-story .stories-container {
    overflow-x: scroll;
  }
}

.web-story .stories-container .content {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.web-story .stories-container .imgContent {
  background: linear-gradient(#dd2a7b, #f58529);
  padding: 3px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}

.web-story .stories-container .imgContent .middleContent {
  background-color: #fff;
  padding: 4px;
  border-radius: 50%;
}

.web-story .stories-container .imgContent .middleContent img {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 300;
  vertical-align: middle;
}

.web-story .stories-container .storyTitle {
  margin: 7px 0;
  color: #A43838;
  font-weight: 600;
}

@media (max-width: 480px) {
  .web-story .stories-container .storyTitle {
    font-size: 12px;
  }
}

.story-full .content .story-btn {
  position: absolute;
  top: 100px;
  left: 130px;

  justify-content: center;
  color: #fff;
  line-height: 2;
  padding: 8px 32px;
  border-radius: 20px;
  z-index: 105;
  background-color: #921A1C;


}

.web-story .story-full {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  opacity: 0;
  z-index: 500;
  pointer-events: none;
  transition: all 100ms ease;
}

.web-story .story-full.active {
  opacity: 1;
  pointer-events: auto;
}

.web-story .story-full .content .close-btn {
  position: fixed;
  top: 32px;
  right: 32px;
  width: 32px;
  cursor: pointer;
}

.web-story .story-full .content .close-btn svg {
  width: 32px;
}

.web-story .story-full .content {
  display: flex;
  align-items: center;
  position: relative;
}

.web-story .story-full .content .story-title {
  position: absolute;
  top: 5px;
  left: 25px;
  /* transform: translateX(-50%); */
  color: #000;
  line-height: 2;
  padding: 8px 32px;
  z-index: 105;
}

.web-story .story-full .img-content {
  height: 80%;
  width: 400px;
  /* border-radius: 10px; */
  /* background-color: #dd2a7b; */
  position: relative;
}

.web-story .story-full .img-content .img-story {
  height: 100%;
  width: 400px;
  border-radius: 10px;
  position: absolute;
  z-index: 100;
  display: flex;
}

.web-story .story-full .img-content .profile {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 105;
  border-radius: 50%;
  margin: 15px 10px;
}

.web-story .story-full .content .right-arrow,
.web-story .story-full .content .left-arrow {
  cursor: pointer;
  /* background-color: #fff; */
  border-radius: 50%;
  padding: 8px;
  margin: 5px 10px;
  justify-content: center;
}

.web-story .story-full .content .right-arrow {
  transform: rotate(180deg);
}

@media (max-width: 700px) {
  .web-story .story-full img {
    width: 65%;
    height: auto;
  }
}

.web-story .myProgress {
  width: 96%;
  z-index: 110;
  position: absolute;
  margin: 5px 2%;
  background-color: #aaa;
  border-radius: 5px;
}

.web-story #myBar {
  width: 1%;
  height: 2px;
  border-radius: 5px;
  background-color: #eee;
}