.section-webstories{
  max-width: 1170px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webstoriesTNO{
    width: 100%;
    display: flex;
    height: 130px;
    gap: 20px;
    overflow-x: scroll;
    
  }
  /* ===== Scrollbar CSS ===== */
  /* Firefox */
  .webstoriesTNO {
    scrollbar-width: auto;
    scrollbar-color: #ec3136 #ffffff;
  }

  /* Chrome, Edge, and Safari */
 .webstoriesTNO::-webkit-scrollbar {
    width: 16px;
  }

  @media(max-width: 700px){
    .webstoriesTNO::-webkit-scrollbar-track {
      background: #f7f7f7;
    }
  
   .webstoriesTNO::-webkit-scrollbar-thumb {
      background-color: #1c1c1c45;
      border-radius: 10px;
      border: 7px solid #f7f7f7;
    }

    .webstoriesTNO{
      padding: 0 10px;
    }

    .title-webstories{
      padding: 0px 15px !important;
      margin: 0 10px;
      background-color: var(--red) !important;
    }

    .title-webstories h2{
      font-size: 12px !important;
      line-height: 16px;
      font-family: sans-serif !important;
    }

  }

 .webstoriesTNO::-webkit-scrollbar-track {
    background: #fcfbfb;
  }

 .webstoriesTNO::-webkit-scrollbar-thumb {
    background-color: #1c1c1c45;
    border-radius: 10px;
    border: 7px solid #fcfbfb;
  }

  .title-webstories{
    background-color: #cd150c;
    color: #fff;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 5px;
  }
  
  .title-webstories h2{
    font-size: 20px;
    line-height: 24px;
    font-family: "lato-bold";
    text-transform: uppercase;
    
  }

  .webstoriesContainer {
    display: flex;
    gap: 20px;
  }

  .tno-reels{
    width: 100px;
    height: 100px;
    background-size: cover;
    border-radius: 50%;
    border: 3px solid black;
  }

  .a-stories{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }


  .lightbox {
    display: none !important;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1em;
    background: rgba(0, 0, 0, 0.8);
}
  .lightbox:target {
    display: block !important;
}

.lightbox span {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.lightbox span iframe {
    border-radius: 20px;
    width: 600px;
    height: 630px;
}

  .reels-box{
    display: flex;
    justify-content: center;
  }

 .a-stories>img{
    width:35px !important;
    height:35px
 }