Hi there,
Please add this CSS to Admin > Appearance > Customizer > Custom > CSS
.x-accordion .collapse {
display: block;
height: 0px;
overflow: hidden;
}
.x-accordion .collapse.in {
height: auto;
}
The map isn’t loading correctly if its container has no dimension (display: none). Hence changing it to block with zero height still maintains a dimension due to width.
Thanks!