Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.audio-seeker {
  height: 5px;
  width: 100%;
  position: relative;
  border-radius: 0 0 4px 4px;
  background-color: var(--black_5);
 
  &__wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 4px 4px;
 
    &_video {
      border-radius: 0 0 4px;
    }
  }
 
  &__progress {
    height: 100%;
    z-index: 2;
    position: relative;
    background-color: rgb(var(--accent_color-raw) / 80%);
    transition: background-color 80ms ease;
  }
 
  &::before {
    inset: -5px;
    content: '';
    display: block;
    position: absolute;
  }
 
  &:hover &__progress {
    background-color: var(--accent_color);
  }
 
  &__buffer {
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    position: absolute;
    background-color: var(--black_5);
  }
}