/* Gutenberg */
/* Post title */
.editor-post-title__block .editor-post-title__input,
.editor-post-title__block .editor-post-title__input:focus {
  color: var(--theme-color-text_dark);
  min-height: 1em;
}

/* Width of the blocks for different content width's */
.wp-block:not([data-align="wide"]):not([data-align="full"]) {
  max-width: var(--theme-var-content);
}
body.sidebar_position_hide.narrow_content .wp-block:not([data-align="wide"]):not([data-align="full"]) {
  max-width: var(--theme-var-content_narrow);
}
body.sidebar_position_hide.expand_content .wp-block:not([data-align="wide"]):not([data-align="full"]) {
  max-width: var(--theme-var-page);
}
body.post-type-cpt_layouts .wp-block:not([data-align="wide"]):not([data-align="full"]) {
  max-width: 96% !important;
}

body:not(.sidebar_position_hide) .wp-block[data-align="wide"],
body:not(.sidebar_position_hide) .wp-block[data-align="full"] {
  max-width: var(--theme-var-content);
}

body.sidebar_position_hide.narrow_content .wp-block[data-align="wide"] {
  max-width: var(--theme-var-page);
}
body.sidebar_position_hide.normal_content .wp-block[data-align="wide"] {
  max-width: var(--theme-var-page);
}
body.sidebar_position_hide.expand_content .wp-block[data-align="wide"] {
  max-width: var(--theme-var-page);
}

/* Align left and right inside narrow content without sidebars */
body.sidebar_position_hide.narrow_content .wp-block[data-align="left"]:not([data-type="core/image"]) .is-style-alignfar, body.sidebar_position_hide.narrow_content
.wp-block[data-align="right"]:not([data-type="core/image"]) .is-style-alignfar {
  max-width: calc( ( var(--theme-var-page) - var(--theme-var-content_narrow) ) / 2 - var(--theme-var-grid_gap) );
}

body.sidebar_position_hide.narrow_content .wp-block[data-align="left"] .is-style-alignfar {
  float: left;
  margin: 1em 2em 1em calc( ( var(--theme-var-page) - var(--theme-var-content_narrow) ) / -2 );
}

body.sidebar_position_hide.narrow_content .wp-block[data-align="right"] .is-style-alignfar {
  float: right;
  margin: 1em calc( ( var(--theme-var-page) - var(--theme-var-content_narrow) ) / -2 ) 1em 2em;
}

/* Align left and right inside normal content without sidebars */
body.sidebar_position_hide.normal_content .wp-block[data-align="left"] .is-style-alignfar {
  float: left;
  margin: 1em 2em 1em calc( ( var(--theme-var-page) - var(--theme-var-content) ) / -2 );
}

body.sidebar_position_hide.normal_content .wp-block[data-align="right"] .is-style-alignfar {
  float: right;
  margin: 1em calc( ( var(--theme-var-page) - var(--theme-var-content) ) / -2 ) 1em 2em;
}

/* Sidebar holder for the editor */
body.edit-post-visual-editor:not(.post-type-cpt_layouts):not(.sidebar_position_hide) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}

.editor-post-sidebar-holder {
  width: var(--theme-var-sidebar);
  margin-left: var(--theme-var-sidebar_gap);
  background-color: var(--theme-color-alter_bg_color);
  min-height: 75vh;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.editor-post-sidebar-holder:before {
  content: 'Sidebar';
  display: inline-block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 3em;
  line-height: 1em;
  font-weight: bold;
  color: var(--theme-color-alter_light);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar_position_hide .editor-post-sidebar-holder, body.post-type-cpt_layouts .editor-post-sidebar-holder {
  display: none;
}

/*# sourceMappingURL=gutenberg.css.map */
