The Page builder has changed the page width. Again I'd ask you you to place this CSS with the new widths as per the new Sitebuilder, please remove the old rules. previously:
.eds-bpm-main{
max-width: 1080px;
margin-left: auto;
margin-right: auto;
}
/* from 1199px to 980px */
@media only screen and (min-width: 980px) and (max-width: 1199px) {
.eds-bpm-main {
max-width: 810px !important;
}
}
/* from 979px to 600px */
@media only screen and (min-width: 600px) and (max-width: 979px) {
.eds-bpm-main {
max-width: 540px !important;
}
}
/* 599px and less */
@media only screen and (max-width: 599px) {
.eds-bpm-main {
max-width: 270px !important;
}
}
Please let me know if it work ok.