<style>
.t533__descr a {
position: relative;
color: transparent !important;
display: inline-block;
height: 35px;
width: 35px;
top: 15px;
}
.t533__descr a:before {
content: "";
background-image: url(https://static.tildacdn.com/tild3634-3939-4534-b532-303733613163/3616606.svg);
background-size: cover;
width: 35px;
height: 35px;
position: absolute;
left: 0;
border-radius:50%;
}
a.playcard:before {
box-shadow: 0px 0px 0px 8px #fff;
}
.t533__textwrapper {
padding-bottom:45px;
}
</style>
<audio id='soundplay'></audio>
<script>
(function() {
let audio = document.getElementById("soundplay");
function play(ev) {ev.preventDefault();
let playbtn = document.querySelectorAll('.t533__descr a');
playbtn.forEach(element => element.classList.remove('playcard'));
ev.currentTarget.classList.add('playcard');
let audioData = ev.currentTarget.href;audio.src = audioData;audio.play();
}
function onLoaded() {
let hrefs = document.querySelectorAll('a[href^="https://dl.dropboxusercontent.com/');
hrefs.forEach(href=>{href.addEventListener("click", play);})
}
if (document.readyState === "complete" || (document.readyState !== "loading" && !document.documentElement.doScroll)) {
onLoaded();} else {document.addEventListener("DOMContentLoaded", onLoaded);}
})();
</script>