#37927
mme000
Participant

It’s a problema related to Safari.
Apparently, Safari doesn’t raise the animationend event when animation-duration is set to 0.
There are two workaround to fix this.

1) Configure Cookie Notice to use an animation.
2) Modify front.css (and front.min.css) of Cookie Notice plugin, this way:

#cookie-notice.cn-animated.cn-effect-none {
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
}