body {
    margin: 0;
    background-color: black;
    /* overflow-y: hidden; */
    height: 100vh;
    -webkit-user-select: none;
    user-select: none;    
    overflow: auto;
  }
  #feed {
    /* height: 100vh; */
    /* width: 100vw; */
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    /* overflow-y: scroll; */
    /* scroll-snap-type: y mandatory; */
  }
  .feed-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 100vw; */
    overflow-y: hidden;
    margin-bottom: 10px;
    scroll-snap-align: start;
  }
  .feed-item .feed-item-thumbnail {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  #video-container {
    /* max-width: 100%;
    max-height: 100%; */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: hidden;
    -webkit-user-select: none;
    user-select: none;    
    z-index: 2147483647;
  }
  video {
    width: 100%;
    display: block;
  }
  #audio-buttons {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2147483647;
  }
  .wimyx-audio-indicators {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2147483647;
  }
  #wimyx-on {    
    width: 90px;
    display: flex;
  }
  #wimyx-off {
    width: 90px;
    display: none;
  }
  /* #video-controls {
    display: block;
    position: absolute;
    top: 140px;
    bottom: 0;
    width: 100%;
    z-index: 2147483647;
  }
  #video-controls #play-button {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */
  .play-button {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .play-button img {
    width: 100%;
    object-fit: contain;
  }
  #next-poster {
    width: 100%;
    margin-top: 10px;
  }
  
  #instructions {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    /* height: 60px; */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: apple-system, Arial, sans-serif;
    font-size: 16px;
    padding: 95px 15px 15px 15px;
    text-align: center;
    z-index: 2147483647;
  }