.js file
var doc = document.getElementById('doc');
.html file
<div class="doc">
<div class="doc__background-ribbon"></div>
<div class="doc__text-editor hidden"></div>
</div>
getElementById will not work on this, either use getElementsByClassName() or switch the .doc attribute to a #doc attribute.