/* WYSIWYG editor */
iframe.cke_wysiwyg_frame {
  padding: 5px;
}

/* Checkerboard Piece custom layout */
.checkerboard-piece {
  display: flex;
  flex-wrap: wrap;
}
.checkerboard-piece .layout-paragraphs-layout-region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .checkerboard-piece .layout-paragraphs-layout-region {
    flex: 0 1 50%;
    max-width: 50%;
  }
}

/* Content width override */
.layout-region--node-main .layout-region__content,
.layout-region--node-footer .layout-region__content {
  max-width: none !important;
}

/* Fix scroll issue with Layout Paragraphs */
html {
  overflow-y: scroll !important;
}

.ui-dialog.ui-widget-content {
  top: 0px !important;
}