<!-- Code by Fedyaeva -->
<style>
.uc-moz,.uc-opera,.uc-landscape{position:fixed;top:0;left:0;width:100%;height:100%;z-index:10000}.button--close{cursor:pointer}@media screen and (orientation:landscape){.uc-landscape{display:block}}@media screen and (orientation:portrait){.uc-landscape{display:none}}@media screen and (min-width:980px){.uc-landscape{display:none}}
.uc-sticky{position:fixed;top:0;left:0;width:100%;z-index:100;will-change:transform;transition:transform 0.3s ease-in;transform:translateY(-100%)}.uc-sticky.show{transform:translateY(0)}.uc-sticky.hide{transform:translateY(-100%)}
</style>
<script>
document.addEventListener('DOMContentLoaded',(event)=>{let sBrowser,sUsrAg=navigator.userAgent;let mozBlock=document.querySelector('.uc-moz');let Opera = (navigator.userAgent.match(/Opera|OPR\//) ? true : false);let opBlock=document.querySelector('.uc-opera');let landBlock=document.querySelector('.uc-landscape');let buttonClose=document.querySelectorAll('.button--close')
mozBlock.style.display="none";opBlock.style.display="none";if(sUsrAg.indexOf("Firefox")>-1){mozBlock.style.display="block"}else if(Opera){opBlock.style.display="block"}
buttonClose.forEach(e=>{e.addEventListener('click',(evt)=>{mozBlock.style.display="none";opBlock.style.display="none";landBlock.style.display="none"})});let stickyBlock=document.querySelector('.uc-sticky');let stopBlock=document.querySelector('.uc-stop');const scrollD=450;let elementOffset;window.addEventListener('scroll',function(e){let top=window.pageYOffset;let distance,height,slide;elementOffset=stopBlock.offsetTop;distance=elementOffset-top;height=stickyBlock.clientHeight;slide=height-distance;if(top>=scrollD){stickyBlock.classList.add('show');stickyBlock.classList.remove('hide')}else{stickyBlock.classList.remove('show');stickyBlock.classList.add('hide')}
if(distance<=height){stickyBlock.classList.remove('show');stickyBlock.classList.add('hide')}})})
</script>