.player__ui {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  gap: 15px;
  .ui__row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
  }
  .pause, .sound, .fullscreen {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    img {
      display: block;
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }
  .pause {

  }
  .timeline {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .3);
    .line {
      width: 3%;
      background: rgba(255, 0, 0, 0.58);
      height: 100%;
    }
  }
  .sound {

  }
  .fullscreen {

  }
}


