Hi all,
I have had problems with the positioning of the feedback (Tutor) on Safari on IOS.
By a change in the less file like the one below the feedback gets centered on IOS as well.
.............
.tutor {
position: fixed;
top: 50%;
width: 100%;
// centered on Safari IOS
display: -webkit-flex; /* Safari */
-webkit-align-items: center; /* Safari 7.0+ */
display: flex;
align-items: center;
// Safari
........
Might help someone with the same problems.
/ Martin