Hi There,
Please find this CSS:
.x-nav-wrap.mobile.collapse.in {
display: block;
position: absolute;
width: 100vw;
height: 100vh;
background-color: rgba(0,0,0,0.9);
text-align: center;
z-index: -999;
}
And update to this:
.x-nav-wrap.mobile.collapse.in {
display: block;
position: absolute;
width: 100vw;
height: 100vh;
text-align: center;
z-index: -999;
}
After that add the following CSS:
.x-nav-wrap.mobile {
background-color: rgba(0,0,0,0.9);
transition: none;
}
Hope it helps 🙂