.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 999;
  }
  
  .popup-content {
    background-color: rgba(0, 0, 0, 0) ;
    width: 75%; /* Default width for desktop */
    
    
    padding-top: 40px;
    border-radius: 5px;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @media screen and (max-width: 768px) {
    .popup-content {
      width: 90%; /* Full width for mobile devices */
      max-width: none; /* No max width for mobile devices */
      margin: 10% auto; /* Adjusted margin for mobile devices */
    }
  }
  

  .social-popup-content {
    background-color: #17171700;
    width: 20%; /* Default width for desktop */
    
    
    padding-top: 60px;
    border-radius: 5px;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @media screen and (max-width: 768px) {
    .social-popup-content {
      width: 90%; /* Full width for mobile devices */
      max-width: none; /* No max width for mobile devices */
      margin: 10% auto; /* Adjusted margin for mobile devices */
    }
  }
  
  .close {
    position: absolute;
    top: -5px;
    right: 15px;
    cursor: pointer;
  }
  
  .close:hover {
    color: red;
  }


  /* Style to make video responsive */
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (change to 75% for 4:3 aspect ratio) */
    overflow: hidden;
    max-width: 100%;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .youtube-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }



  /* For reels


   /* Style to make video responsive */


  .s-youtube-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .s-youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .s-youtube-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

 



  
  
  