document.addEventListener('DOMContentLoaded', function () { const css = ` .fixSlideButtons .fa.fa-chevron-left.arrow.prev { transform: unset !important; left: 15px; } .fixSlideButtons .fa.fa-chevron-right.arrow.next { transform: unset !important; right: 15px !important; } .fixRow .row { margin-left: 0px !important; margin-right: 0px !important; } .menuIcons { margin: 0px 0px 0px 5px !important; } .fixFormWidth .form-control { width: 100%; } .fixModuleTitle div.component-header { font-size: 2em !important; } `; const style = document.createElement('style'); style.textContent = css; document.head.appendChild(style); });