#main #body {
  overflow-x: hidden;
}
@media (min-width: 992px) {
  #main #body .hidden-elements-device[data-device-hidden*='"desktop":true'] {
    display: none;
  }
  #main #body header[data-device-hidden*='"desktop":true'],
  #main #body footer[data-device-hidden*='"desktop":true'] {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #main #body .hidden-elements-device[data-device-hidden*='"tablet":true'] {
    display: none;
  }
  #main #body header[data-device-hidden*='"tablet":true'],
  #main #body footer[data-device-hidden*='"tablet":true'] {
    display: none;
  }
}
@media (max-width: 767px) {
  #main #body .hidden-elements-device[data-device-hidden*='"phone":true'] {
    display: none;
  }
  #main #body header[data-device-hidden*='"phone":true'],
  #main #body footer[data-device-hidden*='"phone":true'] {
    display: none;
  }
}
