* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
body {
    background-color: black;
}
#app {
    width: 100vw;
    height: 100vh;
    position: absolute;
}
canvas {
    display: block;
}
button {
    background: transparent;
    border: none;
    cursor: pointer;
}
.controls {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9000;
    cursor: pointer;
    background: rgba(0,0,30, .2);
    /* border-radius: 40px; */
    padding: 20px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.controls:hover {
    cursor: pointer;
}
.controls button {
    padding: 10px;
    width: 100px;
    height: auto;
}
@media screen and (max-width: 500px){
    .controls button {
        padding: 5px;
    }
}
.controls button img {
    width: 100%;
    height: auto;
    mix-blend-mode: screen;
}

button.restart {
    margin-right: 20px;
}


.controls button.play-pause.paused #pause_btn {
    display: none;
}
.controls button.play-pause:not(.paused) #play_btn {
    display: none;
}

.progress-container {
    position: relative;
    width: 80%;
    height: 30px;
    margin: 20px auto;
    cursor: pointer;
    border: 2px solid #aabbff;
    background: #000000;
    border-radius: 20px;
    box-shadow: 
        inset 0 0 1px rgba(5, 95, 179, 0.8),
        inset 0 0 4px rgba(5, 95, 179, 0.8),
        inset 0 0 8px rgba(5, 95, 179, 0.8),
        inset 0 0 16px rgba(5, 95, 179, 0.8);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: transparent;
    border-radius: 5px;
    /* border: 2px solid #ddddff; */
    /* box-shadow: 
        inset 0 0 1px rgba(21, 132, 236, 0.8),
        inset 0 0 4px rgba(21,132,236,.8),
        inset 0 0 8px rgba(21,132,236,.8),
        inset 0 0 16px rgba(21,132,236,.8); */
}

.scrubber {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 60px;
    height: 60px;
    background-image: url('/images//icons/neon-UI-scrubber.png');
    background-size: contain;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    mix-blend-mode: screen;
}
.scrubber::before {
    position: absolute;
    display: block;
    top: 50%;
    left: 0px;
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.scrubber .currentTime {
    font-family: 'Roboto', sans-serif;
    color: #dfeded;
    color: transparent;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
}
.loader {
  --fade-duration: .4s;
  --post-load-delay: 1s;
  
  align-items: center;
  background-color: hsla(0, 0%, 0%, .7);
  bottom: 0;
  color: #dfeded;
  display: flex;
  font-size: 2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition:
    opacity var(--fade-duration) var(--post-load-delay),
    z-index 0s calc(var(--fade-duration) + var(--post-load-delay));
  z-index: -1;
}

.loader--loading {
  opacity: 1;
  pointer-events: none;
  z-index: 10000;
}