delinea
Hi
The issue is coming from this code
components/com_baforms/assets/css/ba-style.css
.calendar {
animation: calendar-open .6s cubic-bezier(.25,.98,.26,.99) both;
-webkit-animation: calendar-open .6s cubic-bezier(.25,.98,.26,.99) both;
background: transparent !important;
border: 1px solid transparent !important;
left: 50% !important;
position: fixed !important;
top:5% !important;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
width: 426px !important;
}
Replace it with
.calendar {
animation: calendar-open .6s cubic-bezier(.25,.98,.26,.99) both;
-webkit-animation: calendar-open .6s cubic-bezier(.25,.98,.26,.99) both;
background: transparent ;
border: 1px solid transparent;
left: 50% ;
position: fixed ;
top:5%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
width: 426px;
}
now add this code in custom.css
.header-right .calendar {
top: inherit;
left: inherit;
position: inherit;
transform: translateX(0%);
-webkit-transform: none;
animation: none;
}