/* Sun Editor Custom Style */

/* Default google fonts */
@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&family=Inter:wght@400;500;600;700&family=Noto+Sans:wght@400;500;700&family=Noto+Sans+Mono:wght@400;500&family=Noto+Serif:wght@400;700&family=Playfair+Display:wght@400;600;700&family=Poppins:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&family=Rubik:wght@400;500;700&family=Urbanist:wght@400;500;600;700&display=swap');

sun-editor {
  display: block;
}

/* Undo PIPE's header stuff inside the menus of SunEditor */
.sun-editor * {
  color: inherit;
}

/* Overrides */
.sun-editor.sun-editor-carrier-wrapper.sun-editor-common {
  /* Do not show "Default" in the fonts lists */
  .se-menu-tray {
    .se-list-font-family {
      .se-list-inner {
        ul.se-list-basic {
          li:first-child, li:first-child + li {
            display: none;
          }
        }
      }
    }
  }
}

.sun-editor {
  /* UI Font */
  --se-main-font-family: var(--font-family-body);

  /* Default Font/FontSize */
  .se-wrapper-wysiwyg.sun-editor-editable {
    font-family: 'Inter';
    font-size: 14px;
    scrollbar-width: thin;
  }
  /* Max Height on Editor */
  .se-wrapper {
    min-height: 400px;
    max-height: 600px;
  }
  /* Center Modals */
  .se-modal-area .se-modal-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

