For mobile phone support, you may want the privacy manager window to be able to scroll. This helps for older versions of iPhone and when a site being viewed in landscape mode. To do this, you can add the custom CSS below to the custom CSS section of the privacy manager.
@media screen and (max-width: 500px), screen and (max-height: 500px) {
.sp_message_container .sp_message {
margin: initial;
max-height: initial;
width: initial;
height: initial;
overflow: scroll;
max-width: initial;
}
.sp_message .sp_message_panel {
margin-top: 30px;
}
}