  /* Story highlights */

  #block-instagramhighlights {
    padding: 16px 16px 0 16px;
  }
  
  .highlights .highlight-title {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
  }

  .highlights .highlights {
    padding: 15px 0;
  }
  
  .highlights .highlights-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .highlights .highlights-container::-webkit-scrollbar {
    display: none;
  }
  
  .highlights .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .highlights .highlight-image, 
  .highlights .highlight-video {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;

  }
  @media (max-width: 376px) {
    #block-instagramhighlights {
      padding: 12px 12px 0 12px;
      margin-bottom: -8px;
    }
    .highlights .highlight-image, 
    .highlights .highlight-video{
      width: 60px;
      height: 60px;
    }
  }
  
  /* Story modal */
  .story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000;
    touch-action: none;
  }
  
  .story-modal .story-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
    z-index: 1001;
  }
  
  .story-modal .progress-bars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
  }
  
  .story-modal .progress-bar {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .story-modal .progress-fill {
    height: 100%;
    width: 0%;
    background-color: white;
    transition: width linear;
  }
  
  .story-modal .story-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .story-modal .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .story-modal .user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f09433;
  }
  
  .story-modal .username {
    color: white;
    font-weight: bold;
    font-size: 12px;
  }
  
  .story-modal .time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
  }
  
  .story-modal .story-actions {
    display: flex;
    gap: 15px;
  }
  
  .story-modal .action-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
  }
  
  .story-modal .action-btn.close-btn {
    margin-right: 10px;
  }
  
  .story-modal .story-view {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .story-modal .story-nav {
    position: absolute;
    bottom: 0;
    width: 30%;
    height: 90%;
    z-index: 2;
    cursor: pointer;
  }
  
  .story-modal .left-nav {
    left: 0;
  }
  
  .story-modal .right-nav {
    right: 0;
  }
  
  .story-modal #modal-media-container {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 60px; */
  }
  
  .story-modal #modal-media-container img,
  .story-modal #modal-media-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .story-modal .story-content {
    position: absolute;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    width: 100%;
    padding: 12px;
    text-align: center;
  }

  .story-modal .story-btn-group {
    position: absolute;
    bottom: -50px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .story-modal .story-content .share-btn {
    border: none;
    font-size: 0;
    background: url("../images/share.png") no-repeat;
    background-color: transparent;
    height: 24px;
    width: 24px;
    filter: invert(1);
  }

  .story-modal .story-content .story-btn{
    position: relative;
    color: #fff;
    border: none;
    width: fit-content;
    margin: 0;
    background-color: #307fe2;
    text-decoration: none;
    padding: 8px 30px 8px 20px;
    font-size: 14px;
    font-weight: 200;
    cursor: pointer;
  }

  .story-modal .story-content .story-btn::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url("../images/arrow-right-white.png") no-repeat;
    width: 12px;
    height: 12px;
  }
