body {
    margin: 0;
    background-color: black;
    /* overflow-y: hidden; */
    height: 100vh;
  }
  #feed {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
  }
  .feed-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    overflow-y: hidden;
    margin-bottom: 10px;
  }
  .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;
    z-index: 2147483647;
  }
  video {
    width: 100%;
    display: block;
  }
  #audio-buttons {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2147483647;
  }
  #wimyx-on {
    width: 100px;
    display: flex;
  }
  #wimyx-off {
    width: 100px;
    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;
  }
  