/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Colors
 */
/**
 * Breakpoints & Media Queries
 */
/**
 * SCSS Variables.
 *
 * Please use variables from this sheet to ensure consistency across the UI.
 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Colors
 */
/**
 * Fonts & basic variables.
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Dimensions.
 */
/**
 * Shadows.
 */
/**
 * Editor widths.
 */
/**
 * Block & Editor UI.
 */
/**
 * Block paddings.
 */
/**
 * React Native specific.
 * These variables do not appear to be used anywhere else.
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Breakpoint mixins
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color);
}
@media (min-resolution: 192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px;
  }
}

/**
 *  Show icon label overrides.
 */
.show-icon-labels .editor-header .edit-post-fullscreen-mode-close.has-icon {
  width: 60px;
}
.show-icon-labels .editor-header .edit-post-fullscreen-mode-close.has-icon svg {
  display: block;
}
.show-icon-labels .editor-header .edit-post-fullscreen-mode-close.has-icon::after {
  content: none;
}

.edit-post-fullscreen-mode-close.components-button {
  display: none;
}
@media (min-width: 782px) {
  .edit-post-fullscreen-mode-close.components-button {
    display: flex;
    align-items: center;
    align-self: stretch;
    border: none;
    background: #1e1e1e;
    color: #fff;
    border-radius: 0;
    height: 61px;
    width: 60px;
    position: relative;
    margin-bottom: -1px;
  }
  .edit-post-fullscreen-mode-close.components-button:active {
    color: #fff;
  }
  .edit-post-fullscreen-mode-close.components-button:focus {
    box-shadow: none;
  }
  .edit-post-fullscreen-mode-close.components-button::before {
    transition: box-shadow 0.1s ease;
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    right: 9px;
    bottom: 10px;
    left: 9px;
    border-radius: 4px;
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
  }
}
@media (min-width: 782px) and (prefers-reduced-motion: reduce) {
  .edit-post-fullscreen-mode-close.components-button::before {
    transition-duration: 0s;
    transition-delay: 0s;
  }
}
@media (min-width: 782px) {
  .edit-post-fullscreen-mode-close.components-button:hover::before {
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #757575;
  }
}
@media (min-width: 782px) {
  .edit-post-fullscreen-mode-close.components-button.has-icon:hover::before {
    box-shadow: none;
  }
}
@media (min-width: 782px) {
  .edit-post-fullscreen-mode-close.components-button:focus::before {
    box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) rgba(255, 255, 255, 0.1), inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  }
}
.edit-post-fullscreen-mode-close.components-button .edit-post-fullscreen-mode-close_site-icon {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  object-fit: cover;
  margin-top: -1px;
}

.edit-post-layout__metaboxes {
  flex-shrink: 0;
  clear: both;
}

.edit-post-layout .components-editor-notices__snackbar {
  position: fixed;
  right: 0;
  bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.is-distraction-free .components-editor-notices__snackbar {
  bottom: 16px;
}

.has-block-breadcrumbs .components-editor-notices__snackbar {
  bottom: 40px;
}

.edit-post-layout .components-editor-notices__snackbar {
  /* Set left position when auto-fold is not on the body element. */
  left: 0;
}
@media (min-width: 783px) {
  .edit-post-layout .components-editor-notices__snackbar {
    left: 160px;
  }
}

.auto-fold .edit-post-layout .components-editor-notices__snackbar {
  /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
}
@media (min-width: 783px) {
  .auto-fold .edit-post-layout .components-editor-notices__snackbar {
    left: 36px;
  }
}
@media (min-width: 961px) {
  .auto-fold .edit-post-layout .components-editor-notices__snackbar {
    left: 160px;
  }
}

/* Sidebar manually collapsed. */
.folded .edit-post-layout .components-editor-notices__snackbar {
  left: 0;
}
@media (min-width: 783px) {
  .folded .edit-post-layout .components-editor-notices__snackbar {
    left: 36px;
  }
}

body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
  left: 0 !important;
}

.edit-post-meta-boxes-area {
  position: relative;
  /**
   * The wordpress default for most meta-box elements is content-box. Some
   * elements such as textarea and input are set to border-box in forms.css.
   * These elements therefore specifically set back to border-box here, while
   * other elements (such as .button) are unaffected by Gutenberg's style
   * because of their higher specificity.
   */
  /* Match width and positioning of the meta boxes. Override default styles. */
  /* Override Default meta box stylings */
}
.edit-post-meta-boxes-area__container,
.edit-post-meta-boxes-area .inside {
  box-sizing: content-box;
}
.edit-post-meta-boxes-area textarea,
.edit-post-meta-boxes-area input {
  box-sizing: border-box;
}
.edit-post-meta-boxes-area .postbox-header {
  border-top: 1px solid #ddd;
  border-bottom: 0;
}
.edit-post-meta-boxes-area #poststuff {
  margin: 0 auto;
  padding-top: 0;
  min-width: auto;
}
.edit-post-meta-boxes-area #poststuff h3.hndle,
.edit-post-meta-boxes-area #poststuff .stuffbox > h3,
.edit-post-meta-boxes-area #poststuff h2.hndle {
  /* WordPress selectors yolo */
  box-sizing: border-box;
  color: inherit;
  font-weight: 600;
  outline: none;
  padding: 0 24px;
  position: relative;
  width: 100%;
}
.edit-post-meta-boxes-area .postbox {
  border: 0;
  color: inherit;
  margin-bottom: 0;
}
.edit-post-meta-boxes-area .postbox > .inside {
  color: inherit;
  padding: 0 24px 24px;
  margin: 0;
}
.edit-post-meta-boxes-area .postbox .handlediv {
  height: 44px;
  width: 44px;
}
.edit-post-meta-boxes-area.is-loading::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: transparent;
  z-index: 1;
}
.edit-post-meta-boxes-area .components-spinner {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 5;
}
.edit-post-meta-boxes-area .is-hidden {
  display: none;
}
.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox] {
  border: 1px solid #757575;
}
.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:checked {
  background: #fff;
  border-color: #757575;
}
.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]::before {
  margin: -3px -4px;
}

.edit-post-meta-boxes-area__clear {
  clear: both;
}

.edit-post-text-editor {
  position: relative;
  width: 100%;
  background-color: #fff;
  flex-grow: 1;
}
.edit-post-text-editor .editor-post-title:not(.is-raw-text),
.edit-post-text-editor .editor-post-title.is-raw-text textarea {
  max-width: none;
  line-height: 1.4;
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: 2.5em;
  font-weight: normal;
  border: 1px solid #949494;
  border-radius: 0;
  padding: 16px;
}
@media (min-width: 600px) {
  .edit-post-text-editor .editor-post-title:not(.is-raw-text),
.edit-post-text-editor .editor-post-title.is-raw-text textarea {
    padding: 24px;
  }
}
.edit-post-text-editor .editor-post-title:not(.is-raw-text):focus,
.edit-post-text-editor .editor-post-title.is-raw-text textarea:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
}

.edit-post-text-editor__body {
  width: 100%;
  padding: 0 12px 12px 12px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .edit-post-text-editor__body {
    padding: 0 24px 24px 24px;
  }
}

.edit-post-text-editor__toolbar {
  position: sticky;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
}
@media (min-width: 600px) {
  .edit-post-text-editor__toolbar {
    padding: 12px;
  }
}
@media (min-width: 960px) {
  .edit-post-text-editor__toolbar {
    padding: 12px 24px;
  }
}
.edit-post-text-editor__toolbar h2 {
  line-height: 36px;
  margin: 0 auto 0 0;
  font-size: 13px;
  color: #1e1e1e;
}

.edit-post-visual-editor {
  position: relative;
  display: flex;
  flex-flow: column;
  background-color: #ddd;
  flex: 1 0 auto;
}
.edit-post-visual-editor:not(.has-inline-canvas) {
  overflow: hidden;
}
.edit-post-visual-editor .components-button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  padding: 6px 12px;
}
.edit-post-visual-editor .components-button.has-icon {
  padding: 6px;
}

.edit-post-visual-editor__content-area {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-grow: 1;
}

.edit-post-welcome-guide,
.edit-template-welcome-guide {
  width: 312px;
}
.edit-post-welcome-guide__image,
.edit-template-welcome-guide__image {
  background: #00a0d2;
  margin: 0 0 16px;
}
.edit-post-welcome-guide__image > img,
.edit-template-welcome-guide__image > img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
.edit-post-welcome-guide__heading,
.edit-template-welcome-guide__heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  margin: 16px 0 16px 0;
  padding: 0 32px;
}
.edit-post-welcome-guide__text,
.edit-template-welcome-guide__text {
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 24px 0;
  padding: 0 32px;
}
.edit-post-welcome-guide__inserter-icon,
.edit-template-welcome-guide__inserter-icon {
  margin: 0 4px;
  vertical-align: text-top;
}

.edit-template-welcome-guide .components-button svg {
  fill: #fff;
}

/**
 * Animations
 */
@keyframes edit-post__fade-in-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.js.block-editor-page {
  background: #fff;
  /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
     Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
}
body.js.block-editor-page #wpcontent {
  padding-left: 0;
}
body.js.block-editor-page #wpbody-content {
  padding-bottom: 0;
}
body.js.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta) {
  display: none;
}
body.js.block-editor-page #wpfooter {
  display: none;
}
body.js.block-editor-page .a11y-speak-region {
  left: -1px;
  top: -1px;
}
body.js.block-editor-page ul#adminmenu a.wp-has-current-submenu::after,
body.js.block-editor-page ul#adminmenu > li.current > a.current::after {
  border-right-color: #fff;
}
body.js.block-editor-page .media-frame select.attachment-filters:last-of-type {
  width: auto;
  max-width: 100%;
}

.block-editor-page #wpwrap {
  overflow-y: auto;
}
@media (min-width: 782px) {
  .block-editor-page #wpwrap {
    overflow-y: initial;
  }
}

.editor-header,
.edit-post-text-editor,
.editor-sidebar,
.editor-post-publish-panel {
  box-sizing: border-box;
}
.editor-header *,
.editor-header *::before,
.editor-header *::after,
.edit-post-text-editor *,
.edit-post-text-editor *::before,
.edit-post-text-editor *::after,
.editor-sidebar *,
.editor-sidebar *::before,
.editor-sidebar *::after,
.editor-post-publish-panel *,
.editor-post-publish-panel *::before,
.editor-post-publish-panel *::after {
  box-sizing: inherit;
}

@media (min-width: 600px) {
  .block-editor__container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100vh - 46px);
  }
}
@media (min-width: 782px) {
  .block-editor__container {
    min-height: calc(100vh - 32px);
  }
  body.is-fullscreen-mode .block-editor__container {
    min-height: 100vh;
  }
}
.block-editor__container img {
  max-width: 100%;
  height: auto;
}

body.admin-color-light {
  --wp-admin-theme-color: #0085ba;
  --wp-admin-theme-color--rgb: 0, 133, 186;
  --wp-admin-theme-color-darker-10: #0073a1;
  --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
  --wp-admin-theme-color-darker-20: #006187;
  --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-light {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-modern {
  --wp-admin-theme-color: #3858e9;
  --wp-admin-theme-color--rgb: 56, 88, 233;
  --wp-admin-theme-color-darker-10: #2145e6;
  --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
  --wp-admin-theme-color-darker-20: #183ad6;
  --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-modern {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-blue {
  --wp-admin-theme-color: #096484;
  --wp-admin-theme-color--rgb: 9, 100, 132;
  --wp-admin-theme-color-darker-10: #07526c;
  --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
  --wp-admin-theme-color-darker-20: #064054;
  --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-blue {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-coffee {
  --wp-admin-theme-color: #46403c;
  --wp-admin-theme-color--rgb: 70, 64, 60;
  --wp-admin-theme-color-darker-10: #383330;
  --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
  --wp-admin-theme-color-darker-20: #2b2724;
  --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-coffee {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-ectoplasm {
  --wp-admin-theme-color: #523f6d;
  --wp-admin-theme-color--rgb: 82, 63, 109;
  --wp-admin-theme-color-darker-10: #46365d;
  --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
  --wp-admin-theme-color-darker-20: #3a2c4d;
  --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-ectoplasm {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-midnight {
  --wp-admin-theme-color: #e14d43;
  --wp-admin-theme-color--rgb: 225, 77, 67;
  --wp-admin-theme-color-darker-10: #dd382d;
  --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
  --wp-admin-theme-color-darker-20: #d02c21;
  --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-midnight {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-ocean {
  --wp-admin-theme-color: #627c83;
  --wp-admin-theme-color--rgb: 98, 124, 131;
  --wp-admin-theme-color-darker-10: #576e74;
  --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
  --wp-admin-theme-color-darker-20: #4c6066;
  --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-ocean {
    --wp-admin-border-width-focus: 1.5px;
  }
}

body.admin-color-sunrise {
  --wp-admin-theme-color: #dd823b;
  --wp-admin-theme-color--rgb: 221, 130, 59;
  --wp-admin-theme-color-darker-10: #d97426;
  --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
  --wp-admin-theme-color-darker-20: #c36922;
  --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
  --wp-admin-border-width-focus: 2px;
}
@media (min-resolution: 192dpi) {
  body.admin-color-sunrise {
    --wp-admin-border-width-focus: 1.5px;
  }
}