body {
  background-color: hsl(0, 0%, 11%);
}

.tp-dfwv {
    display: none;
}

#audio-control {
  cursor:pointer;
  padding-bottom: env(safe-area-inset-bottom);
  display: inline;
  z-index:100;
  bottom:20px;  
  left: 20px;
  position: absolute;
  z-index: 14;
}
#audio-control img {
    width: 55px;
    height: auto;
    transition: 0.3s;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
#audio-control #muted {
    z-index: 1;
}
#audio-control #unmuted {
    display: none;
    z-index: 2;
}
#audio-control #unmuted.show {
    display: block;
}
    

@media (max-width: 800px) {
    #audio-control {
        bottom: 40px;
    }
    #audio-control img {
        width: 40px;
    }
}